Overview
ETH Balance
0.004601 ETH
Eth Value
$11.98 (@ $2,604.11/ETH)More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 122 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 15100579 | 949 days ago | IN | 0 ETH | 0.00040251 | ||||
Set Approval For... | 15089126 | 951 days ago | IN | 0 ETH | 0.00101332 | ||||
Mint | 15012821 | 964 days ago | IN | 0 ETH | 0.00200937 | ||||
Mint | 15012769 | 964 days ago | IN | 0 ETH | 0.00234666 | ||||
Transfer From | 14978925 | 970 days ago | IN | 0 ETH | 0.00083031 | ||||
Transfer From | 14978906 | 970 days ago | IN | 0 ETH | 0.0012351 | ||||
Transfer From | 14975162 | 971 days ago | IN | 0 ETH | 0.00165139 | ||||
Mint | 14863989 | 990 days ago | IN | 0 ETH | 0.0009028 | ||||
Mint | 14840770 | 993 days ago | IN | 0 ETH | 0.00199874 | ||||
Mint | 14809310 | 999 days ago | IN | 0 ETH | 0.00186743 | ||||
Set Approval For... | 14722573 | 1012 days ago | IN | 0 ETH | 0.00145615 | ||||
Set Approval For... | 14712894 | 1014 days ago | IN | 0 ETH | 0.00230058 | ||||
Mint | 14702930 | 1016 days ago | IN | 0 ETH | 0.00367275 | ||||
Mint | 14685689 | 1018 days ago | IN | 0 ETH | 0.00372663 | ||||
Mint | 14644465 | 1025 days ago | IN | 0 ETH | 0.00170734 | ||||
Set Approval For... | 14605158 | 1031 days ago | IN | 0 ETH | 0.00240578 | ||||
Mint | 14600953 | 1032 days ago | IN | 0 ETH | 0.00109234 | ||||
Mint | 14600911 | 1032 days ago | IN | 0 ETH | 0.00160567 | ||||
Mint | 14600906 | 1032 days ago | IN | 0 ETH | 0.00154091 | ||||
Mint | 14600900 | 1032 days ago | IN | 0 ETH | 0.00169951 | ||||
Mint | 14600894 | 1032 days ago | IN | 0 ETH | 0.0015983 | ||||
Mint | 14600888 | 1032 days ago | IN | 0 ETH | 0.0018079 | ||||
Mint | 14600885 | 1032 days ago | IN | 0 ETH | 0.00192731 | ||||
Mint | 14600880 | 1032 days ago | IN | 0 ETH | 0.00285225 | ||||
Mint | 14599358 | 1032 days ago | IN | 0 ETH | 0.00137143 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
ozuki
Compiler Version
v0.8.11+commit.d7f03943
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-14 */ // SPDX-License-Identifier: UNLICENSED // File: contracts/interfaces/ILayerZeroUserApplicationConfig.sol pragma solidity >=0.5.0; interface ILayerZeroUserApplicationConfig { // @notice set the configuration of the LayerZero messaging library of the specified version // @param _version - messaging library version // @param _chainId - the chainId for the pending config change // @param _configType - type of configuration. every messaging library has its own convention. // @param _config - configuration in the bytes. can encode arbitrary content. function setConfig( uint16 _version, uint16 _chainId, uint256 _configType, bytes calldata _config ) external; // @notice set the send() LayerZero messaging library version to _version // @param _version - new messaging library version function setSendVersion(uint16 _version) external; // @notice set the lzReceive() LayerZero messaging library version to _version // @param _version - new messaging library version function setReceiveVersion(uint16 _version) external; // @notice Only when the UA needs to resume the message flow in blocking mode and clear the stored payload // @param _srcChainId - the chainId of the source chain // @param _srcAddress - the contract address of the source contract at the source chain function forceResumeReceive(uint16 _srcChainId, bytes calldata _srcAddress) external; } // File: contracts/interfaces/ILayerZeroEndpoint.sol pragma solidity >=0.5.0; interface ILayerZeroEndpoint is ILayerZeroUserApplicationConfig { // @notice send a LayerZero message to the specified address at a LayerZero endpoint. // @param _dstChainId - the destination chain identifier // @param _destination - the address on destination chain (in bytes). address length/format may vary by chains // @param _payload - a custom bytes payload to send to the destination contract // @param _refundAddress - if the source transaction is cheaper than the amount of value passed, refund the additional amount to this address // @param _zroPaymentAddress - the address of the ZRO token holder who would pay for the transaction // @param _adapterParams - parameters for custom functionality. e.g. receive airdropped native gas from the relayer on destination function send( uint16 _dstChainId, bytes calldata _destination, bytes calldata _payload, address payable _refundAddress, address _zroPaymentAddress, bytes calldata _adapterParams ) external payable; // @notice used by the messaging library to publish verified payload // @param _srcChainId - the source chain identifier // @param _srcAddress - the source contract (as bytes) at the source chain // @param _dstAddress - the address on destination chain // @param _nonce - the unbound message ordering nonce // @param _gasLimit - the gas limit for external contract execution // @param _payload - verified payload to send to the destination contract function receivePayload( uint16 _srcChainId, bytes calldata _srcAddress, address _dstAddress, uint64 _nonce, uint256 _gasLimit, bytes calldata _payload ) external; // @notice get the inboundNonce of a receiver from a source chain which could be EVM or non-EVM chain // @param _srcChainId - the source chain identifier // @param _srcAddress - the source chain contract address function getInboundNonce(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (uint64); // @notice get the outboundNonce from this source chain which, consequently, is always an EVM // @param _srcAddress - the source chain contract address function getOutboundNonce(uint16 _dstChainId, address _srcAddress) external view returns (uint64); // @notice gets a quote in source native gas, for the amount that send() requires to pay for message delivery // @param _dstChainId - the destination chain identifier // @param _userApplication - the user app address on this EVM chain // @param _payload - the custom message to send over LayerZero // @param _payInZRO - if false, user app pays the protocol fee in native token // @param _adapterParam - parameters for the adapter service, e.g. send some dust native token to dstChain function estimateFees( uint16 _dstChainId, address _userApplication, bytes calldata _payload, bool _payInZRO, bytes calldata _adapterParam ) external view returns (uint256 nativeFee, uint256 zroFee); // @notice get this Endpoint's immutable source identifier function getChainId() external view returns (uint16); // @notice the interface to retry failed message on this Endpoint destination // @param _srcChainId - the source chain identifier // @param _srcAddress - the source chain contract address // @param _payload - the payload to be retried function retryPayload( uint16 _srcChainId, bytes calldata _srcAddress, bytes calldata _payload ) external; // @notice query if any STORED payload (message blocking) at the endpoint. // @param _srcChainId - the source chain identifier // @param _srcAddress - the source chain contract address function hasStoredPayload(uint16 _srcChainId, bytes calldata _srcAddress) external view returns (bool); // @notice query if the _libraryAddress is valid for sending msgs. // @param _userApplication - the user app address on this EVM chain function getSendLibraryAddress(address _userApplication) external view returns (address); // @notice query if the _libraryAddress is valid for receiving msgs. // @param _userApplication - the user app address on this EVM chain function getReceiveLibraryAddress(address _userApplication) external view returns (address); // @notice query if the non-reentrancy guard for send() is on // @return true if the guard is on. false otherwise function isSendingPayload() external view returns (bool); // @notice query if the non-reentrancy guard for receive() is on // @return true if the guard is on. false otherwise function isReceivingPayload() external view returns (bool); // @notice get the configuration of the LayerZero messaging library of the specified version // @param _version - messaging library version // @param _chainId - the chainId for the pending config change // @param _userApplication - the contract address of the user application // @param _configType - type of configuration. every messaging library has its own convention. function getConfig( uint16 _version, uint16 _chainId, address _userApplication, uint256 _configType ) external view returns (bytes memory); // @notice get the send() LayerZero messaging library version // @param _userApplication - the contract address of the user application function getSendVersion(address _userApplication) external view returns (uint16); // @notice get the lzReceive() LayerZero messaging library version // @param _userApplication - the contract address of the user application function getReceiveVersion(address _userApplication) external view returns (uint16); } // File: contracts/interfaces/ILayerZeroReceiver.sol pragma solidity >=0.5.0; interface ILayerZeroReceiver { // @notice LayerZero endpoint will invoke this function to deliver the message on the destination // @param _srcChainId - the source endpoint identifier // @param _srcAddress - the source sending contract address from the source chain // @param _nonce - the ordered message nonce // @param _payload - the signed payload is the UA bytes has encoded to be sent function lzReceive( uint16 _srcChainId, bytes calldata _srcAddress, uint64 _nonce, bytes calldata _payload ) external; } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @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] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (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; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ 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: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 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://diligence.consensys.net/posts/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.5.11/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 functionCall(target, data, "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" ); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}( data ); return verifyCallResult(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) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(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) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason 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 { // 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 assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer( address indexed from, address indexed to, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval( address indexed owner, address indexed approved, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll( address indexed owner, address indexed operator, bool approved ); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require( owner != address(0), "ERC721: balance query for the zero address" ); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require( owner != address(0), "ERC721: owner query for nonexistent token" ); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require( _exists(tokenId), "ERC721: approved query for nonexistent token" ); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved" ); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved" ); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require( _exists(tokenId), "ERC721: operator query for nonexistent token" ); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require( ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own" ); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received( _msgSender(), from, tokenId, _data ) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert( "ERC721: transfer to non ERC721Receiver implementer" ); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` 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 tokenId ) internal virtual {} } // File: contracts/NonblockingReceiver.sol pragma solidity ^0.8.6; abstract contract NonblockingReceiver is Ownable, ILayerZeroReceiver { ILayerZeroEndpoint internal endpoint; struct FailedMessages { uint256 payloadLength; bytes32 payloadHash; } mapping(uint16 => mapping(bytes => mapping(uint256 => FailedMessages))) public failedMessages; mapping(uint16 => bytes) public trustedRemoteLookup; event MessageFailed( uint16 _srcChainId, bytes _srcAddress, uint64 _nonce, bytes _payload ); function lzReceive( uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload ) external override { require(msg.sender == address(endpoint)); // boilerplate! lzReceive must be called by the endpoint for security require( _srcAddress.length == trustedRemoteLookup[_srcChainId].length && keccak256(_srcAddress) == keccak256(trustedRemoteLookup[_srcChainId]), "NonblockingReceiver: invalid source sending contract" ); // try-catch all errors/exceptions // having failed messages does not block messages passing try this.onLzReceive(_srcChainId, _srcAddress, _nonce, _payload) { // do nothing } catch { // error / exception failedMessages[_srcChainId][_srcAddress][_nonce] = FailedMessages( _payload.length, keccak256(_payload) ); emit MessageFailed(_srcChainId, _srcAddress, _nonce, _payload); } } function onLzReceive( uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload ) public { // only internal transaction require( msg.sender == address(this), "NonblockingReceiver: caller must be Bridge." ); // handle incoming message _LzReceive(_srcChainId, _srcAddress, _nonce, _payload); } // abstract function function _LzReceive( uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload ) internal virtual; function _lzSend( uint16 _dstChainId, bytes memory _payload, address payable _refundAddress, address _zroPaymentAddress, bytes memory _txParam ) internal { endpoint.send{value: msg.value}( _dstChainId, trustedRemoteLookup[_dstChainId], _payload, _refundAddress, _zroPaymentAddress, _txParam ); } function retryMessage( uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes calldata _payload ) external payable { // assert there is message to retry FailedMessages storage failedMsg = failedMessages[_srcChainId][ _srcAddress ][_nonce]; require( failedMsg.payloadHash != bytes32(0), "NonblockingReceiver: no stored message" ); require( _payload.length == failedMsg.payloadLength && keccak256(_payload) == failedMsg.payloadHash, "LayerZero: invalid payload" ); // clear the stored message failedMsg.payloadLength = 0; failedMsg.payloadHash = bytes32(0); // execute the message. revert if it fails again this.onLzReceive(_srcChainId, _srcAddress, _nonce, _payload); } function setTrustedRemote(uint16 _chainId, bytes calldata _trustedRemote) external onlyOwner { trustedRemoteLookup[_chainId] = _trustedRemote; } } // File: contracts/ozuki-eth.sol pragma solidity ^0.8.7; contract ozuki is Ownable, ERC721, NonblockingReceiver { address public _owner; string private baseURI; uint256 nextTokenId = 0; uint256 MAX_MINT_ETHEREUM = 5000; uint256 gasForDestinationLzReceive = 350000; constructor(string memory baseURI_, address _layerZeroEndpoint) ERC721("ozuki", "ozuki") { _owner = msg.sender; endpoint = ILayerZeroEndpoint(_layerZeroEndpoint); baseURI = baseURI_; } // mint function // you can choose to mint 1 or 2 // mint is free, but payments are accepted function mint(uint8 numTokens) external payable { require(numTokens < 3, "ozuki: Max 2 NFTs per transaction"); require( nextTokenId + numTokens <= MAX_MINT_ETHEREUM, "ozuki: Mint exceeds supply" ); _safeMint(msg.sender, ++nextTokenId); if (numTokens == 2) { _safeMint(msg.sender, ++nextTokenId); } } // This function transfers the nft from your address on the // source chain to the same address on the destination chain function traverseChains(uint16 _chainId, uint256 tokenId) public payable { require( msg.sender == ownerOf(tokenId), "You must own the token to traverse" ); require( trustedRemoteLookup[_chainId].length > 0, "This chain is currently unavailable for travel" ); // burn NFT, eliminating it from circulation on src chain _burn(tokenId); // abi.encode() the payload with the values to send bytes memory payload = abi.encode(msg.sender, tokenId); // encode adapterParams to specify more gas for the destination uint16 version = 1; bytes memory adapterParams = abi.encodePacked( version, gasForDestinationLzReceive ); // get the fees we need to pay to LayerZero + Relayer to cover message delivery // you will be refunded for extra gas paid (uint256 messageFee, ) = endpoint.estimateFees( _chainId, address(this), payload, false, adapterParams ); require( msg.value >= messageFee, "ozuki: msg.value not enough to cover messageFee. Send gas for message fees" ); endpoint.send{value: msg.value}( _chainId, // destination chainId trustedRemoteLookup[_chainId], // destination address of nft contract payload, // abi.encoded()'ed bytes payable(msg.sender), // refund address address(0x0), // 'zroPaymentAddress' unused for this adapterParams // txParameters ); } function setBaseURI(string memory URI) external onlyOwner { baseURI = URI; } function donate() external payable { // thank you } // This allows the devs to receive kind donations function withdraw(uint256 amt) external onlyOwner { (bool sent, ) = payable(_owner).call{value: amt}(""); require(sent, "ozuki: Failed to withdraw Ether"); } // just in case this fixed variable limits us from future integrations function setGasForDestinationLzReceive(uint256 newVal) external onlyOwner { gasForDestinationLzReceive = newVal; } // ------------------ // Internal Functions // ------------------ function _LzReceive( uint16 _srcChainId, bytes memory _srcAddress, uint64 _nonce, bytes memory _payload ) internal override { // decode (address toAddr, uint256 tokenId) = abi.decode( _payload, (address, uint256) ); // mint the tokens back into existence on destination chain _safeMint(toAddr, tokenId); } function _baseURI() internal view override returns (string memory) { return baseURI; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"},{"internalType":"address","name":"_layerZeroEndpoint","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"indexed":false,"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"indexed":false,"internalType":"uint64","name":"_nonce","type":"uint64"},{"indexed":false,"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"MessageFailed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"donate","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"},{"internalType":"bytes","name":"","type":"bytes"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"failedMessages","outputs":[{"internalType":"uint256","name":"payloadLength","type":"uint256"},{"internalType":"bytes32","name":"payloadHash","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"lzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"numTokens","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"onLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_srcChainId","type":"uint16"},{"internalType":"bytes","name":"_srcAddress","type":"bytes"},{"internalType":"uint64","name":"_nonce","type":"uint64"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"retryMessage","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newVal","type":"uint256"}],"name":"setGasForDestinationLzReceive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"bytes","name":"_trustedRemote","type":"bytes"}],"name":"setTrustedRemote","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_chainId","type":"uint16"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"traverseChains","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"trustedRemoteLookup","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600c55611388600d5562055730600e553480156200002357600080fd5b5060405162003a5c38038062003a5c83398101604081905262000046916200023e565b604051806040016040528060058152602001646f7a756b6960d81b815250604051806040016040528060058152602001646f7a756b6960d81b8152506200009c620000966200011160201b60201c565b62000115565b8151620000b190600190602085019062000165565b508051620000c790600290602084019062000165565b5050600a8054336001600160a01b031991821617909155600780549091166001600160a01b0384161790555081516200010890600b90602085019062000165565b5050506200036c565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b82805462000173906200032f565b90600052602060002090601f016020900481019282620001975760008555620001e2565b82601f10620001b257805160ff1916838001178555620001e2565b82800160010185558215620001e2579182015b82811115620001e2578251825591602001919060010190620001c5565b50620001f0929150620001f4565b5090565b5b80821115620001f05760008155600101620001f5565b634e487b7160e01b600052604160045260246000fd5b80516001600160a01b03811681146200023957600080fd5b919050565b600080604083850312156200025257600080fd5b82516001600160401b03808211156200026a57600080fd5b818501915085601f8301126200027f57600080fd5b8151818111156200029457620002946200020b565b604051601f8201601f19908116603f01168101908382118183101715620002bf57620002bf6200020b565b81604052828152602093508884848701011115620002dc57600080fd5b600091505b82821015620003005784820184015181830185015290830190620002e1565b82821115620003125760008484830101525b95506200032491505085820162000221565b925050509250929050565b600181811c908216806200034457607f821691505b602082108114156200036657634e487b7160e01b600052602260045260246000fd5b50919050565b6136e0806200037c6000396000f3fe6080604052600436106101c15760003560e01c80637533d788116100f7578063b88d4fde11610095578063e985e9c511610064578063e985e9c514610558578063eb8d72b7146105ae578063ed88c68e146101e6578063f2fde38b146105ce57600080fd5b8063b88d4fde146104f2578063c87b56dd14610512578063cf89fa0314610532578063d1deba1f1461054557600080fd5b8063943fb872116100d1578063943fb8721461047057806395d89b4114610490578063a22cb465146104a5578063b2bdfa7b146104c557600080fd5b80637533d788146103ba5780638da5cb5b146103da5780638ee749121461040557600080fd5b80632e1a7d4d116101645780636352211e1161013e5780636352211e146103445780636ecd23061461036457806370a0823114610377578063715018a6146103a557600080fd5b80632e1a7d4d146102e457806342842e0e1461030457806355f804b31461032457600080fd5b8063081812fc116101a0578063081812fc1461023f578063095ea7b3146102845780631c37a822146102a457806323b872dd146102c457600080fd5b80621d3567146101c657806301ffc9a7146101e857806306fdde031461021d575b600080fd5b3480156101d257600080fd5b506101e66101e1366004612c49565b6105ee565b005b3480156101f457600080fd5b50610208610203366004612cfc565b610832565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b50610232610917565b6040516102149190612d8f565b34801561024b57600080fd5b5061025f61025a366004612da2565b6109a9565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610214565b34801561029057600080fd5b506101e661029f366004612ddd565b610a83565b3480156102b057600080fd5b506101e66102bf366004612c49565b610c10565b3480156102d057600080fd5b506101e66102df366004612e09565b610cab565b3480156102f057600080fd5b506101e66102ff366004612da2565b610d4c565b34801561031057600080fd5b506101e661031f366004612e09565b610e9b565b34801561033057600080fd5b506101e661033f366004612e4a565b610eb6565b34801561035057600080fd5b5061025f61035f366004612da2565b610f4a565b6101e6610372366004612e93565b610ffc565b34801561038357600080fd5b50610397610392366004612eb6565b61114a565b604051908152602001610214565b3480156103b157600080fd5b506101e6611218565b3480156103c657600080fd5b506102326103d5366004612ed3565b6112a5565b3480156103e657600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff1661025f565b34801561041157600080fd5b5061045b610420366004612eee565b600860209081526000938452604080852084518086018401805192815290840195840195909520945292905282529020805460019091015482565b60408051928352602083019190915201610214565b34801561047c57600080fd5b506101e661048b366004612da2565b61133f565b34801561049c57600080fd5b506102326113c5565b3480156104b157600080fd5b506101e66104c0366004612f45565b6113d4565b3480156104d157600080fd5b50600a5461025f9073ffffffffffffffffffffffffffffffffffffffff1681565b3480156104fe57600080fd5b506101e661050d366004612f83565b6113df565b34801561051e57600080fd5b5061023261052d366004612da2565b611481565b6101e6610540366004612fe3565b611591565b6101e6610553366004613048565b611973565b34801561056457600080fd5b506102086105733660046130d4565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156105ba57600080fd5b506101e66105c9366004613102565b611b65565b3480156105da57600080fd5b506101e66105e9366004612eb6565b611c04565b60075473ffffffffffffffffffffffffffffffffffffffff16331461061257600080fd5b61ffff84166000908152600960205260409020805461063090613155565b9050835114801561066f575061ffff841660009081526009602052604090819020905161065d91906131a9565b60405180910390208380519060200120145b610700576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f7560448201527f7263652073656e64696e6720636f6e747261637400000000000000000000000060648201526084015b60405180910390fd5b6040517f1c37a8220000000000000000000000000000000000000000000000000000000081523090631c37a82290610742908790879087908790600401613239565b600060405180830381600087803b15801561075c57600080fd5b505af192505050801561076d575060015b61082c576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff168152602001908152602001600020846040516107b79190613283565b90815260408051918290036020908101832067ffffffffffffffff8716600090815290825291909120835181559201516001909201919091557fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d90610823908690869086908690613239565b60405180910390a15b50505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806108c557507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061091157507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b60606001805461092690613155565b80601f016020809104026020016040519081016040528092919081815260200182805461095290613155565b801561099f5780601f106109745761010080835404028352916020019161099f565b820191906000526020600020905b81548152906001019060200180831161098257829003601f168201915b5050505050905090565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff16610a5a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016106f7565b5060009081526005602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610a8e82610f4a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b4c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016106f7565b3373ffffffffffffffffffffffffffffffffffffffff82161480610b755750610b758133610573565b610c01576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106f7565b610c0b8383611d31565b505050565b333014610c9f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460448201527f206265204272696467652e00000000000000000000000000000000000000000060648201526084016106f7565b61082c84848484611dd1565b610cb53382611dfe565b610d41576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016106f7565b610c0b838383611f6e565b60005473ffffffffffffffffffffffffffffffffffffffff163314610dcd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106f7565b600a5460405160009173ffffffffffffffffffffffffffffffffffffffff169083908381818185875af1925050503d8060008114610e27576040519150601f19603f3d011682016040523d82523d6000602084013e610e2c565b606091505b5050905080610e97576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f6f7a756b693a204661696c656420746f2077697468647261772045746865720060448201526064016106f7565b5050565b610c0b838383604051806020016040528060008152506113df565b60005473ffffffffffffffffffffffffffffffffffffffff163314610f37576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106f7565b8051610e9790600b906020840190612a0c565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff1680610911576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016106f7565b60038160ff161061108f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f6f7a756b693a204d61782032204e46547320706572207472616e73616374696f60448201527f6e0000000000000000000000000000000000000000000000000000000000000060648201526084016106f7565b600d548160ff16600c546110a391906132ce565b111561110b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f6f7a756b693a204d696e74206578636565647320737570706c7900000000000060448201526064016106f7565b61112833600c6000815461111e906132e6565b91829055506121d5565b8060ff16600214156111475761114733600c6000815461111e906132e6565b50565b600073ffffffffffffffffffffffffffffffffffffffff82166111ef576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016106f7565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526004602052604090205490565b60005473ffffffffffffffffffffffffffffffffffffffff163314611299576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106f7565b6112a360006121ef565b565b600960205260009081526040902080546112be90613155565b80601f01602080910402602001604051908101604052809291908181526020018280546112ea90613155565b80156113375780601f1061130c57610100808354040283529160200191611337565b820191906000526020600020905b81548152906001019060200180831161131a57829003601f168201915b505050505081565b60005473ffffffffffffffffffffffffffffffffffffffff1633146113c0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106f7565b600e55565b60606002805461092690613155565b610e97338383612264565b6113e93383611dfe565b611475576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016106f7565b61082c84848484612392565b60008181526003602052604090205460609073ffffffffffffffffffffffffffffffffffffffff16611535576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016106f7565b600061153f612435565b9050600081511161155f576040518060200160405280600081525061158a565b8061156984612444565b60405160200161157a92919061331f565b6040516020818303038152906040525b9392505050565b61159a81610f4a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611654576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f596f75206d757374206f776e2074686520746f6b656e20746f2074726176657260448201527f736500000000000000000000000000000000000000000000000000000000000060648201526084016106f7565b61ffff82166000908152600960205260408120805461167290613155565b905011611701576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f5468697320636861696e2069732063757272656e746c7920756e617661696c6160448201527f626c6520666f722074726176656c00000000000000000000000000000000000060648201526084016106f7565b61170a81612576565b60408051336020820152808201839052815180820383018152606082018352600e547e0100000000000000000000000000000000000000000000000000000000000060808401526082808401919091528351808403909101815260a28301938490526007547f40a7bb1000000000000000000000000000000000000000000000000000000000909452909260019260009173ffffffffffffffffffffffffffffffffffffffff16906340a7bb10906117ce908990309089908790899060a60161334e565b6040805180830381865afa1580156117ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061180e91906133ad565b509050803410156118c7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604a60248201527f6f7a756b693a206d73672e76616c7565206e6f7420656e6f75676820746f206360448201527f6f766572206d6573736167654665652e2053656e642067617320666f72206d6560648201527f7373616765206665657300000000000000000000000000000000000000000000608482015260a4016106f7565b60075461ffff871660009081526009602052604080822090517fc580310000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9093169263c5803100923492611939928c928b913391908b906004016133d1565b6000604051808303818588803b15801561195257600080fd5b505af1158015611966573d6000803e3d6000fd5b5050505050505050505050565b61ffff85166000908152600860205260408082209051611994908790613283565b908152604080516020928190038301902067ffffffffffffffff87166000908152925290206001810154909150611a4d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60448201527f657373616765000000000000000000000000000000000000000000000000000060648201526084016106f7565b805482148015611a77575080600101548383604051611a6d9291906134e9565b6040518091039020145b611add576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4c617965725a65726f3a20696e76616c6964207061796c6f616400000000000060448201526064016106f7565b600080825560018201556040517f1c37a8220000000000000000000000000000000000000000000000000000000081523090631c37a82290611b2b90899089908990899089906004016134f9565b600060405180830381600087803b158015611b4557600080fd5b505af1158015611b59573d6000803e3d6000fd5b50505050505050505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611be6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106f7565b61ffff8316600090815260096020526040902061082c908383612a90565b60005473ffffffffffffffffffffffffffffffffffffffff163314611c85576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106f7565b73ffffffffffffffffffffffffffffffffffffffff8116611d28576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016106f7565b611147816121ef565b600081815260056020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091558190611d8b82610f4a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008082806020019051810190611de89190613579565b91509150611df682826121d5565b505050505050565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff16611eaf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016106f7565b6000611eba83610f4a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f2957508373ffffffffffffffffffffffffffffffffffffffff16611f11846109a9565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f66575073ffffffffffffffffffffffffffffffffffffffff80821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff16611f8e82610f4a565b73ffffffffffffffffffffffffffffffffffffffff1614612031576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016106f7565b73ffffffffffffffffffffffffffffffffffffffff82166120d3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016106f7565b6120de600082611d31565b73ffffffffffffffffffffffffffffffffffffffff831660009081526004602052604081208054600192906121149084906135a7565b909155505073ffffffffffffffffffffffffffffffffffffffff8216600090815260046020526040812080546001929061214f9084906132ce565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610e97828260405180602001604052806000815250612643565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122fa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106f7565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526006602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61239d848484611f6e565b6123a9848484846126e6565b61082c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016106f7565b6060600b805461092690613155565b60608161248457505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156124ae5780612498816132e6565b91506124a79050600a836135ed565b9150612488565b60008167ffffffffffffffff8111156124c9576124c9612b4e565b6040519080825280601f01601f1916602001820160405280156124f3576020820181803683370190505b5090505b8415611f66576125086001836135a7565b9150612515600a86613601565b6125209060306132ce565b60f81b81838151811061253557612535613615565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061256f600a866135ed565b94506124f7565b600061258182610f4a565b905061258e600083611d31565b73ffffffffffffffffffffffffffffffffffffffff811660009081526004602052604081208054600192906125c49084906135a7565b909155505060008281526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001690555183919073ffffffffffffffffffffffffffffffffffffffff8416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b61264d83836128d6565b61265a60008484846126e6565b610c0b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016106f7565b600073ffffffffffffffffffffffffffffffffffffffff84163b156128cb576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a029061275d903390899088908890600401613644565b6020604051808303816000875af19250505080156127b6575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526127b39181019061368d565b60015b612880573d8080156127e4576040519150601f19603f3d011682016040523d82523d6000602084013e6127e9565b606091505b508051612878576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016106f7565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611f66565b506001949350505050565b73ffffffffffffffffffffffffffffffffffffffff8216612953576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106f7565b73ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604081208054600192906129899084906132ce565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612a1890613155565b90600052602060002090601f016020900481019282612a3a5760008555612a80565b82601f10612a5357805160ff1916838001178555612a80565b82800160010185558215612a80579182015b82811115612a80578251825591602001919060010190612a65565b50612a8c929150612b22565b5090565b828054612a9c90613155565b90600052602060002090601f016020900481019282612abe5760008555612a80565b82601f10612af5578280017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00823516178555612a80565b82800160010185558215612a80579182015b82811115612a80578235825591602001919060010190612b07565b5b80821115612a8c5760008155600101612b23565b803561ffff81168114612b4957600080fd5b919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff80841115612b9857612b98612b4e565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715612bde57612bde612b4e565b81604052809350858152868686011115612bf757600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112612c2257600080fd5b61158a83833560208501612b7d565b803567ffffffffffffffff81168114612b4957600080fd5b60008060008060808587031215612c5f57600080fd5b612c6885612b37565b9350602085013567ffffffffffffffff80821115612c8557600080fd5b612c9188838901612c11565b9450612c9f60408801612c31565b93506060870135915080821115612cb557600080fd5b50612cc287828801612c11565b91505092959194509250565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461114757600080fd5b600060208284031215612d0e57600080fd5b813561158a81612cce565b60005b83811015612d34578181015183820152602001612d1c565b8381111561082c5750506000910152565b60008151808452612d5d816020860160208601612d19565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60208152600061158a6020830184612d45565b600060208284031215612db457600080fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff8116811461114757600080fd5b60008060408385031215612df057600080fd5b8235612dfb81612dbb565b946020939093013593505050565b600080600060608486031215612e1e57600080fd5b8335612e2981612dbb565b92506020840135612e3981612dbb565b929592945050506040919091013590565b600060208284031215612e5c57600080fd5b813567ffffffffffffffff811115612e7357600080fd5b8201601f81018413612e8457600080fd5b611f6684823560208401612b7d565b600060208284031215612ea557600080fd5b813560ff8116811461158a57600080fd5b600060208284031215612ec857600080fd5b813561158a81612dbb565b600060208284031215612ee557600080fd5b61158a82612b37565b600080600060608486031215612f0357600080fd5b612f0c84612b37565b9250602084013567ffffffffffffffff811115612f2857600080fd5b612f3486828701612c11565b925050604084013590509250925092565b60008060408385031215612f5857600080fd5b8235612f6381612dbb565b915060208301358015158114612f7857600080fd5b809150509250929050565b60008060008060808587031215612f9957600080fd5b8435612fa481612dbb565b93506020850135612fb481612dbb565b925060408501359150606085013567ffffffffffffffff811115612fd757600080fd5b612cc287828801612c11565b60008060408385031215612ff657600080fd5b612dfb83612b37565b60008083601f84011261301157600080fd5b50813567ffffffffffffffff81111561302957600080fd5b60208301915083602082850101111561304157600080fd5b9250929050565b60008060008060006080868803121561306057600080fd5b61306986612b37565b9450602086013567ffffffffffffffff8082111561308657600080fd5b61309289838a01612c11565b95506130a060408901612c31565b945060608801359150808211156130b657600080fd5b506130c388828901612fff565b969995985093965092949392505050565b600080604083850312156130e757600080fd5b82356130f281612dbb565b91506020830135612f7881612dbb565b60008060006040848603121561311757600080fd5b61312084612b37565b9250602084013567ffffffffffffffff81111561313c57600080fd5b61314886828701612fff565b9497909650939450505050565b600181811c9082168061316957607f821691505b602082108114156131a3577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60008083546131b781613155565b600182811680156131cf57600181146131fe5761322d565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0084168752828701945061322d565b8760005260208060002060005b858110156132245781548a82015290840190820161320b565b50505082870194505b50929695505050505050565b61ffff851681526080602082015260006132566080830186612d45565b67ffffffffffffffff8516604084015282810360608401526132788185612d45565b979650505050505050565b60008251613295818460208701612d19565b9190910192915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600082198211156132e1576132e161329f565b500190565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156133185761331861329f565b5060010190565b60008351613331818460208801612d19565b835190830190613345818360208801612d19565b01949350505050565b61ffff8616815273ffffffffffffffffffffffffffffffffffffffff8516602082015260a06040820152600061338760a0830186612d45565b841515606084015282810360808401526133a18185612d45565b98975050505050505050565b600080604083850312156133c057600080fd5b505080516020909101519092909150565b61ffff871681526000602060c081840152600088546133ef81613155565b8060c087015260e0600180841660008114613411576001811461344457613472565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008516838a015261010089019550613472565b8d6000528660002060005b8581101561346a5781548b820186015290830190880161344f565b8a0184019650505b505050505083810360408501526134898189612d45565b9150506134ae606084018773ffffffffffffffffffffffffffffffffffffffff169052565b73ffffffffffffffffffffffffffffffffffffffff8516608084015282810360a08401526134dc8185612d45565b9998505050505050505050565b8183823760009101908152919050565b61ffff861681526080602082015260006135166080830187612d45565b67ffffffffffffffff8616604084015282810360608401528381528385602083013760006020858301015260207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8601168201019150509695505050505050565b6000806040838503121561358c57600080fd5b825161359781612dbb565b6020939093015192949293505050565b6000828210156135b9576135b961329f565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000826135fc576135fc6135be565b500490565b600082613610576136106135be565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526136836080830184612d45565b9695505050505050565b60006020828403121561369f57600080fd5b815161158a81612cce56fea26469706673582212203e89e31076702afaf3bd2866e6deb417b8c2bf433e06841eba0ba1c7f6186ddd64736f6c634300080b0033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675000000000000000000000000000000000000000000000000000000000000001d68747470733a2f2f6f7a756b692e76657263656c2e6170702f6170692f000000
Deployed Bytecode
0x6080604052600436106101c15760003560e01c80637533d788116100f7578063b88d4fde11610095578063e985e9c511610064578063e985e9c514610558578063eb8d72b7146105ae578063ed88c68e146101e6578063f2fde38b146105ce57600080fd5b8063b88d4fde146104f2578063c87b56dd14610512578063cf89fa0314610532578063d1deba1f1461054557600080fd5b8063943fb872116100d1578063943fb8721461047057806395d89b4114610490578063a22cb465146104a5578063b2bdfa7b146104c557600080fd5b80637533d788146103ba5780638da5cb5b146103da5780638ee749121461040557600080fd5b80632e1a7d4d116101645780636352211e1161013e5780636352211e146103445780636ecd23061461036457806370a0823114610377578063715018a6146103a557600080fd5b80632e1a7d4d146102e457806342842e0e1461030457806355f804b31461032457600080fd5b8063081812fc116101a0578063081812fc1461023f578063095ea7b3146102845780631c37a822146102a457806323b872dd146102c457600080fd5b80621d3567146101c657806301ffc9a7146101e857806306fdde031461021d575b600080fd5b3480156101d257600080fd5b506101e66101e1366004612c49565b6105ee565b005b3480156101f457600080fd5b50610208610203366004612cfc565b610832565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b50610232610917565b6040516102149190612d8f565b34801561024b57600080fd5b5061025f61025a366004612da2565b6109a9565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610214565b34801561029057600080fd5b506101e661029f366004612ddd565b610a83565b3480156102b057600080fd5b506101e66102bf366004612c49565b610c10565b3480156102d057600080fd5b506101e66102df366004612e09565b610cab565b3480156102f057600080fd5b506101e66102ff366004612da2565b610d4c565b34801561031057600080fd5b506101e661031f366004612e09565b610e9b565b34801561033057600080fd5b506101e661033f366004612e4a565b610eb6565b34801561035057600080fd5b5061025f61035f366004612da2565b610f4a565b6101e6610372366004612e93565b610ffc565b34801561038357600080fd5b50610397610392366004612eb6565b61114a565b604051908152602001610214565b3480156103b157600080fd5b506101e6611218565b3480156103c657600080fd5b506102326103d5366004612ed3565b6112a5565b3480156103e657600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff1661025f565b34801561041157600080fd5b5061045b610420366004612eee565b600860209081526000938452604080852084518086018401805192815290840195840195909520945292905282529020805460019091015482565b60408051928352602083019190915201610214565b34801561047c57600080fd5b506101e661048b366004612da2565b61133f565b34801561049c57600080fd5b506102326113c5565b3480156104b157600080fd5b506101e66104c0366004612f45565b6113d4565b3480156104d157600080fd5b50600a5461025f9073ffffffffffffffffffffffffffffffffffffffff1681565b3480156104fe57600080fd5b506101e661050d366004612f83565b6113df565b34801561051e57600080fd5b5061023261052d366004612da2565b611481565b6101e6610540366004612fe3565b611591565b6101e6610553366004613048565b611973565b34801561056457600080fd5b506102086105733660046130d4565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156105ba57600080fd5b506101e66105c9366004613102565b611b65565b3480156105da57600080fd5b506101e66105e9366004612eb6565b611c04565b60075473ffffffffffffffffffffffffffffffffffffffff16331461061257600080fd5b61ffff84166000908152600960205260409020805461063090613155565b9050835114801561066f575061ffff841660009081526009602052604090819020905161065d91906131a9565b60405180910390208380519060200120145b610700576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603460248201527f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f7560448201527f7263652073656e64696e6720636f6e747261637400000000000000000000000060648201526084015b60405180910390fd5b6040517f1c37a8220000000000000000000000000000000000000000000000000000000081523090631c37a82290610742908790879087908790600401613239565b600060405180830381600087803b15801561075c57600080fd5b505af192505050801561076d575060015b61082c576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff168152602001908152602001600020846040516107b79190613283565b90815260408051918290036020908101832067ffffffffffffffff8716600090815290825291909120835181559201516001909201919091557fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d90610823908690869086908690613239565b60405180910390a15b50505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd0000000000000000000000000000000000000000000000000000000014806108c557507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061091157507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b60606001805461092690613155565b80601f016020809104026020016040519081016040528092919081815260200182805461095290613155565b801561099f5780601f106109745761010080835404028352916020019161099f565b820191906000526020600020905b81548152906001019060200180831161098257829003601f168201915b5050505050905090565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff16610a5a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016106f7565b5060009081526005602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610a8e82610f4a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b4c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016106f7565b3373ffffffffffffffffffffffffffffffffffffffff82161480610b755750610b758133610573565b610c01576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106f7565b610c0b8383611d31565b505050565b333014610c9f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460448201527f206265204272696467652e00000000000000000000000000000000000000000060648201526084016106f7565b61082c84848484611dd1565b610cb53382611dfe565b610d41576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016106f7565b610c0b838383611f6e565b60005473ffffffffffffffffffffffffffffffffffffffff163314610dcd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106f7565b600a5460405160009173ffffffffffffffffffffffffffffffffffffffff169083908381818185875af1925050503d8060008114610e27576040519150601f19603f3d011682016040523d82523d6000602084013e610e2c565b606091505b5050905080610e97576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f6f7a756b693a204661696c656420746f2077697468647261772045746865720060448201526064016106f7565b5050565b610c0b838383604051806020016040528060008152506113df565b60005473ffffffffffffffffffffffffffffffffffffffff163314610f37576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106f7565b8051610e9790600b906020840190612a0c565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff1680610911576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016106f7565b60038160ff161061108f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f6f7a756b693a204d61782032204e46547320706572207472616e73616374696f60448201527f6e0000000000000000000000000000000000000000000000000000000000000060648201526084016106f7565b600d548160ff16600c546110a391906132ce565b111561110b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f6f7a756b693a204d696e74206578636565647320737570706c7900000000000060448201526064016106f7565b61112833600c6000815461111e906132e6565b91829055506121d5565b8060ff16600214156111475761114733600c6000815461111e906132e6565b50565b600073ffffffffffffffffffffffffffffffffffffffff82166111ef576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016106f7565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526004602052604090205490565b60005473ffffffffffffffffffffffffffffffffffffffff163314611299576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106f7565b6112a360006121ef565b565b600960205260009081526040902080546112be90613155565b80601f01602080910402602001604051908101604052809291908181526020018280546112ea90613155565b80156113375780601f1061130c57610100808354040283529160200191611337565b820191906000526020600020905b81548152906001019060200180831161131a57829003601f168201915b505050505081565b60005473ffffffffffffffffffffffffffffffffffffffff1633146113c0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106f7565b600e55565b60606002805461092690613155565b610e97338383612264565b6113e93383611dfe565b611475576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016106f7565b61082c84848484612392565b60008181526003602052604090205460609073ffffffffffffffffffffffffffffffffffffffff16611535576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016106f7565b600061153f612435565b9050600081511161155f576040518060200160405280600081525061158a565b8061156984612444565b60405160200161157a92919061331f565b6040516020818303038152906040525b9392505050565b61159a81610f4a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611654576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f596f75206d757374206f776e2074686520746f6b656e20746f2074726176657260448201527f736500000000000000000000000000000000000000000000000000000000000060648201526084016106f7565b61ffff82166000908152600960205260408120805461167290613155565b905011611701576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f5468697320636861696e2069732063757272656e746c7920756e617661696c6160448201527f626c6520666f722074726176656c00000000000000000000000000000000000060648201526084016106f7565b61170a81612576565b60408051336020820152808201839052815180820383018152606082018352600e547e0100000000000000000000000000000000000000000000000000000000000060808401526082808401919091528351808403909101815260a28301938490526007547f40a7bb1000000000000000000000000000000000000000000000000000000000909452909260019260009173ffffffffffffffffffffffffffffffffffffffff16906340a7bb10906117ce908990309089908790899060a60161334e565b6040805180830381865afa1580156117ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061180e91906133ad565b509050803410156118c7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152604a60248201527f6f7a756b693a206d73672e76616c7565206e6f7420656e6f75676820746f206360448201527f6f766572206d6573736167654665652e2053656e642067617320666f72206d6560648201527f7373616765206665657300000000000000000000000000000000000000000000608482015260a4016106f7565b60075461ffff871660009081526009602052604080822090517fc580310000000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9093169263c5803100923492611939928c928b913391908b906004016133d1565b6000604051808303818588803b15801561195257600080fd5b505af1158015611966573d6000803e3d6000fd5b5050505050505050505050565b61ffff85166000908152600860205260408082209051611994908790613283565b908152604080516020928190038301902067ffffffffffffffff87166000908152925290206001810154909150611a4d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60448201527f657373616765000000000000000000000000000000000000000000000000000060648201526084016106f7565b805482148015611a77575080600101548383604051611a6d9291906134e9565b6040518091039020145b611add576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f4c617965725a65726f3a20696e76616c6964207061796c6f616400000000000060448201526064016106f7565b600080825560018201556040517f1c37a8220000000000000000000000000000000000000000000000000000000081523090631c37a82290611b2b90899089908990899089906004016134f9565b600060405180830381600087803b158015611b4557600080fd5b505af1158015611b59573d6000803e3d6000fd5b50505050505050505050565b60005473ffffffffffffffffffffffffffffffffffffffff163314611be6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106f7565b61ffff8316600090815260096020526040902061082c908383612a90565b60005473ffffffffffffffffffffffffffffffffffffffff163314611c85576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106f7565b73ffffffffffffffffffffffffffffffffffffffff8116611d28576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016106f7565b611147816121ef565b600081815260056020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091558190611d8b82610f4a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008082806020019051810190611de89190613579565b91509150611df682826121d5565b505050505050565b60008181526003602052604081205473ffffffffffffffffffffffffffffffffffffffff16611eaf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084016106f7565b6000611eba83610f4a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611f2957508373ffffffffffffffffffffffffffffffffffffffff16611f11846109a9565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f66575073ffffffffffffffffffffffffffffffffffffffff80821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff16611f8e82610f4a565b73ffffffffffffffffffffffffffffffffffffffff1614612031576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016106f7565b73ffffffffffffffffffffffffffffffffffffffff82166120d3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016106f7565b6120de600082611d31565b73ffffffffffffffffffffffffffffffffffffffff831660009081526004602052604081208054600192906121149084906135a7565b909155505073ffffffffffffffffffffffffffffffffffffffff8216600090815260046020526040812080546001929061214f9084906132ce565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff86811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610e97828260405180602001604052806000815250612643565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156122fa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106f7565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526006602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61239d848484611f6e565b6123a9848484846126e6565b61082c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016106f7565b6060600b805461092690613155565b60608161248457505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156124ae5780612498816132e6565b91506124a79050600a836135ed565b9150612488565b60008167ffffffffffffffff8111156124c9576124c9612b4e565b6040519080825280601f01601f1916602001820160405280156124f3576020820181803683370190505b5090505b8415611f66576125086001836135a7565b9150612515600a86613601565b6125209060306132ce565b60f81b81838151811061253557612535613615565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535061256f600a866135ed565b94506124f7565b600061258182610f4a565b905061258e600083611d31565b73ffffffffffffffffffffffffffffffffffffffff811660009081526004602052604081208054600192906125c49084906135a7565b909155505060008281526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001690555183919073ffffffffffffffffffffffffffffffffffffffff8416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b61264d83836128d6565b61265a60008484846126e6565b610c0b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016106f7565b600073ffffffffffffffffffffffffffffffffffffffff84163b156128cb576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a029061275d903390899088908890600401613644565b6020604051808303816000875af19250505080156127b6575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526127b39181019061368d565b60015b612880573d8080156127e4576040519150601f19603f3d011682016040523d82523d6000602084013e6127e9565b606091505b508051612878576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016106f7565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611f66565b506001949350505050565b73ffffffffffffffffffffffffffffffffffffffff8216612953576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106f7565b73ffffffffffffffffffffffffffffffffffffffff821660009081526004602052604081208054600192906129899084906132ce565b909155505060008181526003602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612a1890613155565b90600052602060002090601f016020900481019282612a3a5760008555612a80565b82601f10612a5357805160ff1916838001178555612a80565b82800160010185558215612a80579182015b82811115612a80578251825591602001919060010190612a65565b50612a8c929150612b22565b5090565b828054612a9c90613155565b90600052602060002090601f016020900481019282612abe5760008555612a80565b82601f10612af5578280017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00823516178555612a80565b82800160010185558215612a80579182015b82811115612a80578235825591602001919060010190612b07565b5b80821115612a8c5760008155600101612b23565b803561ffff81168114612b4957600080fd5b919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff80841115612b9857612b98612b4e565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715612bde57612bde612b4e565b81604052809350858152868686011115612bf757600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112612c2257600080fd5b61158a83833560208501612b7d565b803567ffffffffffffffff81168114612b4957600080fd5b60008060008060808587031215612c5f57600080fd5b612c6885612b37565b9350602085013567ffffffffffffffff80821115612c8557600080fd5b612c9188838901612c11565b9450612c9f60408801612c31565b93506060870135915080821115612cb557600080fd5b50612cc287828801612c11565b91505092959194509250565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461114757600080fd5b600060208284031215612d0e57600080fd5b813561158a81612cce565b60005b83811015612d34578181015183820152602001612d1c565b8381111561082c5750506000910152565b60008151808452612d5d816020860160208601612d19565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60208152600061158a6020830184612d45565b600060208284031215612db457600080fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff8116811461114757600080fd5b60008060408385031215612df057600080fd5b8235612dfb81612dbb565b946020939093013593505050565b600080600060608486031215612e1e57600080fd5b8335612e2981612dbb565b92506020840135612e3981612dbb565b929592945050506040919091013590565b600060208284031215612e5c57600080fd5b813567ffffffffffffffff811115612e7357600080fd5b8201601f81018413612e8457600080fd5b611f6684823560208401612b7d565b600060208284031215612ea557600080fd5b813560ff8116811461158a57600080fd5b600060208284031215612ec857600080fd5b813561158a81612dbb565b600060208284031215612ee557600080fd5b61158a82612b37565b600080600060608486031215612f0357600080fd5b612f0c84612b37565b9250602084013567ffffffffffffffff811115612f2857600080fd5b612f3486828701612c11565b925050604084013590509250925092565b60008060408385031215612f5857600080fd5b8235612f6381612dbb565b915060208301358015158114612f7857600080fd5b809150509250929050565b60008060008060808587031215612f9957600080fd5b8435612fa481612dbb565b93506020850135612fb481612dbb565b925060408501359150606085013567ffffffffffffffff811115612fd757600080fd5b612cc287828801612c11565b60008060408385031215612ff657600080fd5b612dfb83612b37565b60008083601f84011261301157600080fd5b50813567ffffffffffffffff81111561302957600080fd5b60208301915083602082850101111561304157600080fd5b9250929050565b60008060008060006080868803121561306057600080fd5b61306986612b37565b9450602086013567ffffffffffffffff8082111561308657600080fd5b61309289838a01612c11565b95506130a060408901612c31565b945060608801359150808211156130b657600080fd5b506130c388828901612fff565b969995985093965092949392505050565b600080604083850312156130e757600080fd5b82356130f281612dbb565b91506020830135612f7881612dbb565b60008060006040848603121561311757600080fd5b61312084612b37565b9250602084013567ffffffffffffffff81111561313c57600080fd5b61314886828701612fff565b9497909650939450505050565b600181811c9082168061316957607f821691505b602082108114156131a3577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b60008083546131b781613155565b600182811680156131cf57600181146131fe5761322d565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0084168752828701945061322d565b8760005260208060002060005b858110156132245781548a82015290840190820161320b565b50505082870194505b50929695505050505050565b61ffff851681526080602082015260006132566080830186612d45565b67ffffffffffffffff8516604084015282810360608401526132788185612d45565b979650505050505050565b60008251613295818460208701612d19565b9190910192915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600082198211156132e1576132e161329f565b500190565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156133185761331861329f565b5060010190565b60008351613331818460208801612d19565b835190830190613345818360208801612d19565b01949350505050565b61ffff8616815273ffffffffffffffffffffffffffffffffffffffff8516602082015260a06040820152600061338760a0830186612d45565b841515606084015282810360808401526133a18185612d45565b98975050505050505050565b600080604083850312156133c057600080fd5b505080516020909101519092909150565b61ffff871681526000602060c081840152600088546133ef81613155565b8060c087015260e0600180841660008114613411576001811461344457613472565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008516838a015261010089019550613472565b8d6000528660002060005b8581101561346a5781548b820186015290830190880161344f565b8a0184019650505b505050505083810360408501526134898189612d45565b9150506134ae606084018773ffffffffffffffffffffffffffffffffffffffff169052565b73ffffffffffffffffffffffffffffffffffffffff8516608084015282810360a08401526134dc8185612d45565b9998505050505050505050565b8183823760009101908152919050565b61ffff861681526080602082015260006135166080830187612d45565b67ffffffffffffffff8616604084015282810360608401528381528385602083013760006020858301015260207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8601168201019150509695505050505050565b6000806040838503121561358c57600080fd5b825161359781612dbb565b6020939093015192949293505050565b6000828210156135b9576135b961329f565b500390565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000826135fc576135fc6135be565b500490565b600082613610576136106135be565b500690565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600073ffffffffffffffffffffffffffffffffffffffff8087168352808616602084015250836040830152608060608301526136836080830184612d45565b9695505050505050565b60006020828403121561369f57600080fd5b815161158a81612cce56fea26469706673582212203e89e31076702afaf3bd2866e6deb417b8c2bf433e06841eba0ba1c7f6186ddd64736f6c634300080b0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675000000000000000000000000000000000000000000000000000000000000001d68747470733a2f2f6f7a756b692e76657263656c2e6170702f6170692f000000
-----Decoded View---------------
Arg [0] : baseURI_ (string): https://ozuki.vercel.app/api/
Arg [1] : _layerZeroEndpoint (address): 0x66A71Dcef29A0fFBDBE3c6a460a3B5BC225Cd675
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000066a71dcef29a0ffbdbe3c6a460a3b5bc225cd675
Arg [2] : 000000000000000000000000000000000000000000000000000000000000001d
Arg [3] : 68747470733a2f2f6f7a756b692e76657263656c2e6170702f6170692f000000
Deployed Bytecode Sourcemap
50169:4071:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46793:1098;;;;;;;;;;-1:-1:-1;46793:1098:0;;;;;:::i;:::-;;:::i;:::-;;32858:355;;;;;;;;;;-1:-1:-1;32858:355:0;;;;;:::i;:::-;;:::i;:::-;;;2749:14:1;;2742:22;2724:41;;2712:2;2697:18;32858:355:0;;;;;;;;34027:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35720:308::-;;;;;;;;;;-1:-1:-1;35720:308:0;;;;;:::i;:::-;;:::i;:::-;;;4079:42:1;4067:55;;;4049:74;;4037:2;4022:18;35720:308:0;3903:226:1;35243:411:0;;;;;;;;;;-1:-1:-1;35243:411:0;;;;;:::i;:::-;;:::i;47899:435::-;;;;;;;;;;-1:-1:-1;47899:435:0;;;;;:::i;:::-;;:::i;36639:376::-;;;;;;;;;;-1:-1:-1;36639:376:0;;;;;:::i;:::-;;:::i;53222:180::-;;;;;;;;;;-1:-1:-1;53222:180:0;;;;;:::i;:::-;;:::i;37086:185::-;;;;;;;;;;-1:-1:-1;37086:185:0;;;;;:::i;:::-;;:::i;52996:90::-;;;;;;;;;;-1:-1:-1;52996:90:0;;;;;:::i;:::-;;:::i;33634:326::-;;;;;;;;;;-1:-1:-1;33634:326:0;;;;;:::i;:::-;;:::i;50757:397::-;;;;;;:::i;:::-;;:::i;33277:295::-;;;;;;;;;;-1:-1:-1;33277:295:0;;;;;:::i;:::-;;:::i;:::-;;;6201:25:1;;;6189:2;6174:18;33277:295:0;6055:177:1;13170:103:0;;;;;;;;;;;;;:::i;46592:51::-;;;;;;;;;;-1:-1:-1;46592:51:0;;;;;:::i;:::-;;:::i;12519:87::-;;;;;;;;;;-1:-1:-1;12565:7:0;12592:6;;;12519:87;;46483:102;;;;;;;;;;-1:-1:-1;46483:102:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7288:25:1;;;7344:2;7329:18;;7322:34;;;;7261:18;46483:102:0;7114:248:1;53486:128:0;;;;;;;;;;-1:-1:-1;53486:128:0;;;;;:::i;:::-;;:::i;34196:104::-;;;;;;;;;;;;;:::i;36100:187::-;;;;;;;;;;-1:-1:-1;36100:187:0;;;;;:::i;:::-;;:::i;50231:21::-;;;;;;;;;;-1:-1:-1;50231:21:0;;;;;;;;37342:365;;;;;;;;;;-1:-1:-1;37342:365:0;;;;;:::i;:::-;;:::i;34371:468::-;;;;;;;;;;-1:-1:-1;34371:468:0;;;;;:::i;:::-;;:::i;51293:1695::-;;;;;;:::i;:::-;;:::i;48994:916::-;;;;;;:::i;:::-;;:::i;36358:214::-;;;;;;;;;;-1:-1:-1;36358:214:0;;;;;:::i;:::-;36529:25;;;;36500:4;36529:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;36358:214;49918:181;;;;;;;;;;-1:-1:-1;49918:181:0;;;;;:::i;:::-;;:::i;13428:238::-;;;;;;;;;;-1:-1:-1;13428:238:0;;;;;:::i;:::-;;:::i;46793:1098::-;46998:8;;;;46976:10;:31;46968:40;;;;;;47133:32;;;;;;;:19;:32;;;;;:39;;;;;:::i;:::-;;;47111:11;:18;:61;:168;;;;-1:-1:-1;47246:32:0;;;;;;;:19;:32;;;;;;;47236:43;;;;47246:32;47236:43;:::i;:::-;;;;;;;;47203:11;47193:22;;;;;;:86;47111:168;47089:270;;;;;;;12242:2:1;47089:270:0;;;12224:21:1;12281:2;12261:18;;;12254:30;12320:34;12300:18;;;12293:62;12391:22;12371:18;;;12364:50;12431:19;;47089:270:0;;;;;;;;;47487:60;;;;;:4;;:16;;:60;;47504:11;;47517;;47530:6;;47538:8;;47487:60;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47483:401;;47694:101;;;;;;;;47727:8;:15;47694:101;;;;47771:8;47761:19;;;;;;47694:101;;;47643:14;:27;47658:11;47643:27;;;;;;;;;;;;;;;47671:11;47643:40;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;:48;;;;;;;;;;;;;;:152;;;;;;;;;;;;;;;47815:57;;;;47829:11;;47842;;47684:6;;47863:8;;47815:57;:::i;:::-;;;;;;;;47483:401;46793:1098;;;;:::o;32858:355::-;33005:4;33047:40;;;33062:25;33047:40;;:105;;-1:-1:-1;33104:48:0;;;33119:33;33104:48;33047:105;:158;;;-1:-1:-1;25619:25:0;25604:40;;;;33169:36;33027:178;32858:355;-1:-1:-1;;32858:355:0:o;34027:100::-;34081:13;34114:5;34107:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34027:100;:::o;35720:308::-;35841:7;39343:16;;;:7;:16;;;;;;:30;:16;35866:110;;;;;;;13504:2:1;35866:110:0;;;13486:21:1;13543:2;13523:18;;;13516:30;13582:34;13562:18;;;13555:62;13653:14;13633:18;;;13626:42;13685:19;;35866:110:0;13302:408:1;35866:110:0;-1:-1:-1;35996:24:0;;;;:15;:24;;;;;;;;;35720:308::o;35243:411::-;35324:13;35340:23;35355:7;35340:14;:23::i;:::-;35324:39;;35388:5;35382:11;;:2;:11;;;;35374:57;;;;;;;13917:2:1;35374:57:0;;;13899:21:1;13956:2;13936:18;;;13929:30;13995:34;13975:18;;;13968:62;14066:3;14046:18;;;14039:31;14087:19;;35374:57:0;13715:397:1;35374:57:0;11302:10;35466:21;;;;;:62;;-1:-1:-1;35491:37:0;35508:5;11302:10;36358:214;:::i;35491:37::-;35444:168;;;;;;;14319:2:1;35444:168:0;;;14301:21:1;14358:2;14338:18;;;14331:30;14397:34;14377:18;;;14370:62;14468:26;14448:18;;;14441:54;14512:19;;35444:168:0;14117:420:1;35444:168:0;35625:21;35634:2;35638:7;35625:8;:21::i;:::-;35313:341;35243:411;;:::o;47899:435::-;48125:10;48147:4;48125:27;48103:120;;;;;;;14744:2:1;48103:120:0;;;14726:21:1;14783:2;14763:18;;;14756:30;14822:34;14802:18;;;14795:62;14893:13;14873:18;;;14866:41;14924:19;;48103:120:0;14542:407:1;48103:120:0;48272:54;48283:11;48296;48309:6;48317:8;48272:10;:54::i;36639:376::-;36848:41;11302:10;36881:7;36848:18;:41::i;:::-;36826:140;;;;;;;15156:2:1;36826:140:0;;;15138:21:1;15195:2;15175:18;;;15168:30;15234:34;15214:18;;;15207:62;15305:19;15285:18;;;15278:47;15342:19;;36826:140:0;14954:413:1;36826:140:0;36979:28;36989:4;36995:2;36999:7;36979:9;:28::i;53222:180::-;12565:7;12592:6;12739:23;12592:6;11302:10;12739:23;12731:68;;;;;;;15574:2:1;12731:68:0;;;15556:21:1;;;15593:18;;;15586:30;15652:34;15632:18;;;15625:62;15704:18;;12731:68:0;15372:356:1;12731:68:0;53307:6:::1;::::0;53299:36:::1;::::0;53284:9:::1;::::0;53307:6:::1;;::::0;53327:3;;53284:9;53299:36;53284:9;53299:36;53327:3;53307:6;53299:36:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53283:52;;;53354:4;53346:48;;;::::0;::::1;::::0;;16145:2:1;53346:48:0::1;::::0;::::1;16127:21:1::0;16184:2;16164:18;;;16157:30;16223:33;16203:18;;;16196:61;16274:18;;53346:48:0::1;15943:355:1::0;53346:48:0::1;53272:130;53222:180:::0;:::o;37086:185::-;37224:39;37241:4;37247:2;37251:7;37224:39;;;;;;;;;;;;:16;:39::i;52996:90::-;12565:7;12592:6;12739:23;12592:6;11302:10;12739:23;12731:68;;;;;;;15574:2:1;12731:68:0;;;15556:21:1;;;15593:18;;;15586:30;15652:34;15632:18;;;15625:62;15704:18;;12731:68:0;15372:356:1;12731:68:0;53065:13;;::::1;::::0;:7:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;33634:326::-:0;33751:7;33792:16;;;:7;:16;;;;;;;;33841:19;33819:110;;;;;;;16505:2:1;33819:110:0;;;16487:21:1;16544:2;16524:18;;;16517:30;16583:34;16563:18;;;16556:62;16654:11;16634:18;;;16627:39;16683:19;;33819:110:0;16303:405:1;50757:397:0;50836:1;50824:9;:13;;;50816:59;;;;;;;16915:2:1;50816:59:0;;;16897:21:1;16954:2;16934:18;;;16927:30;16993:34;16973:18;;;16966:62;17064:3;17044:18;;;17037:31;17085:19;;50816:59:0;16713:397:1;50816:59:0;50935:17;;50922:9;50908:23;;:11;;:23;;;;:::i;:::-;:44;;50886:120;;;;;;;17639:2:1;50886:120:0;;;17621:21:1;17678:2;17658:18;;;17651:30;17717:28;17697:18;;;17690:56;17763:18;;50886:120:0;17437:350:1;50886:120:0;51017:36;51027:10;51041:11;;51039:13;;;;;:::i;:::-;;;;;-1:-1:-1;51017:9:0;:36::i;:::-;51068:9;:14;;51081:1;51068:14;51064:83;;;51099:36;51109:10;51123:11;;51121:13;;;;;:::i;51099:36::-;50757:397;:::o;33277:295::-;33394:7;33441:19;;;33419:111;;;;;;;18194:2:1;33419:111:0;;;18176:21:1;18233:2;18213:18;;;18206:30;18272:34;18252:18;;;18245:62;18343:12;18323:18;;;18316:40;18373:19;;33419:111:0;17992:406:1;33419:111:0;-1:-1:-1;33548:16:0;;;;;;:9;:16;;;;;;;33277:295::o;13170:103::-;12565:7;12592:6;12739:23;12592:6;11302:10;12739:23;12731:68;;;;;;;15574:2:1;12731:68:0;;;15556:21:1;;;15593:18;;;15586:30;15652:34;15632:18;;;15625:62;15704:18;;12731:68:0;15372:356:1;12731:68:0;13235:30:::1;13262:1;13235:18;:30::i;:::-;13170:103::o:0;46592:51::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53486:128::-;12565:7;12592:6;12739:23;12592:6;11302:10;12739:23;12731:68;;;;;;;15574:2:1;12731:68:0;;;15556:21:1;;;15593:18;;;15586:30;15652:34;15632:18;;;15625:62;15704:18;;12731:68:0;15372:356:1;12731:68:0;53571:26:::1;:35:::0;53486:128::o;34196:104::-;34252:13;34285:7;34278:14;;;;;:::i;36100:187::-;36227:52;11302:10;36260:8;36270;36227:18;:52::i;37342:365::-;37531:41;11302:10;37564:7;37531:18;:41::i;:::-;37509:140;;;;;;;15156:2:1;37509:140:0;;;15138:21:1;15195:2;15175:18;;;15168:30;15234:34;15214:18;;;15207:62;15305:19;15285:18;;;15278:47;15342:19;;37509:140:0;14954:413:1;37509:140:0;37660:39;37674:4;37680:2;37684:7;37693:5;37660:13;:39::i;34371:468::-;39319:4;39343:16;;;:7;:16;;;;;;34489:13;;39343:30;:16;34520:113;;;;;;;18605:2:1;34520:113:0;;;18587:21:1;18644:2;18624:18;;;18617:30;18683:34;18663:18;;;18656:62;18754:17;18734:18;;;18727:45;18789:19;;34520:113:0;18403:411:1;34520:113:0;34646:21;34670:10;:8;:10::i;:::-;34646:34;;34735:1;34717:7;34711:21;:25;:120;;;;;;;;;;;;;;;;;34780:7;34789:18;:7;:16;:18::i;:::-;34763:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;34711:120;34691:140;34371:468;-1:-1:-1;;;34371:468:0:o;51293:1695::-;51413:16;51421:7;51413;:16::i;:::-;51399:30;;:10;:30;;;51377:114;;;;;;;19496:2:1;51377:114:0;;;19478:21:1;19535:2;19515:18;;;19508:30;19574:34;19554:18;;;19547:62;19645:4;19625:18;;;19618:32;19667:19;;51377:114:0;19294:398:1;51377:114:0;51524:29;;;51563:1;51524:29;;;:19;:29;;;;;:36;;;;;:::i;:::-;;;:40;51502:136;;;;;;;19899:2:1;51502:136:0;;;19881:21:1;19938:2;19918:18;;;19911:30;19977:34;19957:18;;;19950:62;20048:16;20028:18;;;20021:44;20082:19;;51502:136:0;19697:410:1;51502:136:0;51718:14;51724:7;51718:5;:14::i;:::-;51829:31;;;51840:10;51829:31;;;20286:74:1;20376:18;;;20369:34;;;51829:31:0;;;;;;;;;20259:18:1;;;51829:31:0;;52057:26;;20585:16:1;52004:90:0;;;20569:102:1;20687:11;;;;20680:27;;;;52004:90:0;;;;;;;;;;20723:12:1;;;52004:90:0;;;;52273:8;;:153;;;;51829:31;;51963:1;;-1:-1:-1;;52273:8:0;;;:21;;:153;;52309:8;;52340:4;;51829:31;;-1:-1:-1;;52004:90:0;;52273:153;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52248:178;;;52474:10;52461:9;:23;;52439:147;;;;;;;21868:2:1;52439:147:0;;;21850:21:1;21907:2;21887:18;;;21880:30;21946:34;21926:18;;;21919:62;22017:34;21997:18;;;21990:62;22089:12;22068:19;;;22061:41;22119:19;;52439:147:0;21666:478:1;52439:147:0;52599:8;;52691:29;;;52599:8;52691:29;;;:19;:29;;;;;;52599:381;;;;;:8;;;;;:13;;52620:9;;52599:381;;52645:8;;52774:7;;52830:10;;52599:8;52940:13;;52599:381;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51366:1622;;;;51293:1695;;:::o;48994:916::-;49253:27;;;49218:32;49253:27;;;:14;:27;;;;;;:64;;;;49295:11;;49253:64;:::i;:::-;;;;;;;;;;;;;;;;:72;;;;;;;;;;;49358:21;;;;49253:72;;-1:-1:-1;49336:123:0;;;;;;;23898:2:1;49336:123:0;;;23880:21:1;23937:2;23917:18;;;23910:30;23976:34;23956:18;;;23949:62;24047:8;24027:18;;;24020:36;24073:19;;49336:123:0;23696:402:1;49336:123:0;49511:23;;49492:42;;:107;;;;;49578:9;:21;;;49565:8;;49555:19;;;;;;;:::i;:::-;;;;;;;;:44;49492:107;49470:183;;;;;;;24581:2:1;49470:183:0;;;24563:21:1;24620:2;24600:18;;;24593:30;24659:28;24639:18;;;24632:56;24705:18;;49470:183:0;24379:350:1;49470:183:0;49727:1;49701:27;;;49739:21;;;:34;49842:60;;;;;:4;;:16;;:60;;49859:11;;49872;;49885:6;;49893:8;;;;49842:60;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49162:748;48994:916;;;;;:::o;49918:181::-;12565:7;12592:6;12739:23;12592:6;11302:10;12739:23;12731:68;;;;;;;15574:2:1;12731:68:0;;;15556:21:1;;;15593:18;;;15586:30;15652:34;15632:18;;;15625:62;15704:18;;12731:68:0;15372:356:1;12731:68:0;50045:29:::1;::::0;::::1;;::::0;;;:19:::1;:29;::::0;;;;:46:::1;::::0;50077:14;;50045:46:::1;:::i;13428:238::-:0;12565:7;12592:6;12739:23;12592:6;11302:10;12739:23;12731:68;;;;;;;15574:2:1;12731:68:0;;;15556:21:1;;;15593:18;;;15586:30;15652:34;15632:18;;;15625:62;15704:18;;12731:68:0;15372:356:1;12731:68:0;13531:22:::1;::::0;::::1;13509:110;;;::::0;::::1;::::0;;25718:2:1;13509:110:0::1;::::0;::::1;25700:21:1::0;25757:2;25737:18;;;25730:30;25796:34;25776:18;;;25769:62;25867:8;25847:18;;;25840:36;25893:19;;13509:110:0::1;25516:402:1::0;13509:110:0::1;13630:28;13649:8;13630:18;:28::i;43308:174::-:0;43383:24;;;;:15;:24;;;;;:29;;;;;;;;;;;;;:24;;43437:23;43383:24;43437:14;:23::i;:::-;43428:46;;;;;;;;;;;;43308:174;;:::o;53705:424::-;53901:14;53917:15;53961:8;53936:77;;;;;;;;;;;;:::i;:::-;53900:113;;;;54095:26;54105:6;54113:7;54095:9;:26::i;:::-;53870:259;;53705:424;;;;:::o;39548:452::-;39677:4;39343:16;;;:7;:16;;;;;;:30;:16;39699:110;;;;;;;26450:2:1;39699:110:0;;;26432:21:1;26489:2;26469:18;;;26462:30;26528:34;26508:18;;;26501:62;26599:14;26579:18;;;26572:42;26631:19;;39699:110:0;26248:408:1;39699:110:0;39820:13;39836:23;39851:7;39836:14;:23::i;:::-;39820:39;;39889:5;39878:16;;:7;:16;;;:64;;;;39935:7;39911:31;;:20;39923:7;39911:11;:20::i;:::-;:31;;;39878:64;:113;;;-1:-1:-1;36529:25:0;;;;36500:4;36529:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;39959:32;39870:122;39548:452;-1:-1:-1;;;;39548:452:0:o;42575:615::-;42748:4;42721:31;;:23;42736:7;42721:14;:23::i;:::-;:31;;;42699:122;;;;;;;26863:2:1;42699:122:0;;;26845:21:1;26902:2;26882:18;;;26875:30;26941:34;26921:18;;;26914:62;27012:11;26992:18;;;26985:39;27041:19;;42699:122:0;26661:405:1;42699:122:0;42840:16;;;42832:65;;;;;;;27273:2:1;42832:65:0;;;27255:21:1;27312:2;27292:18;;;27285:30;27351:34;27331:18;;;27324:62;27422:6;27402:18;;;27395:34;27446:19;;42832:65:0;27071:400:1;42832:65:0;43014:29;43031:1;43035:7;43014:8;:29::i;:::-;43056:15;;;;;;;:9;:15;;;;;:20;;43075:1;;43056:15;:20;;43075:1;;43056:20;:::i;:::-;;;;-1:-1:-1;;43087:13:0;;;;;;;:9;:13;;;;;:18;;43104:1;;43087:13;:18;;43104:1;;43087:18;:::i;:::-;;;;-1:-1:-1;;43116:16:0;;;;:7;:16;;;;;;:21;;;;;;;;;;;;;;43155:27;;43116:16;;43155:27;;;;;;;42575:615;;;:::o;40342:110::-;40418:26;40428:2;40432:7;40418:26;;;;;;;;;;;;:9;:26::i;13826:191::-;13900:16;13919:6;;;13936:17;;;;;;;;;;13969:40;;13919:6;;;;;;;13969:40;;13900:16;13969:40;13889:128;13826:191;:::o;43624:315::-;43779:8;43770:17;;:5;:17;;;;43762:55;;;;;;;27808:2:1;43762:55:0;;;27790:21:1;27847:2;27827:18;;;27820:30;27886:27;27866:18;;;27859:55;27931:18;;43762:55:0;27606:349:1;43762:55:0;43828:25;;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;;;;;;;;;;;;43890:41;;2724::1;;;43890::0;;2697:18:1;43890:41:0;;;;;;;43624:315;;;:::o;38589:352::-;38746:28;38756:4;38762:2;38766:7;38746:9;:28::i;:::-;38807:48;38830:4;38836:2;38840:7;38849:5;38807:22;:48::i;:::-;38785:148;;;;;;;28162:2:1;38785:148:0;;;28144:21:1;28201:2;28181:18;;;28174:30;28240:34;28220:18;;;28213:62;28311:20;28291:18;;;28284:48;28349:19;;38785:148:0;27960:414:1;54137:100:0;54189:13;54222:7;54215:14;;;;;:::i;8754:723::-;8810:13;9031:10;9027:53;;-1:-1:-1;;9058:10:0;;;;;;;;;;;;;;;;;;8754:723::o;9027:53::-;9105:5;9090:12;9146:78;9153:9;;9146:78;;9179:8;;;;:::i;:::-;;-1:-1:-1;9202:10:0;;-1:-1:-1;9210:2:0;9202:10;;:::i;:::-;;;9146:78;;;9234:19;9266:6;9256:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9256:17:0;;9234:39;;9284:154;9291:10;;9284:154;;9318:11;9328:1;9318:11;;:::i;:::-;;-1:-1:-1;9387:10:0;9395:2;9387:5;:10;:::i;:::-;9374:24;;:2;:24;:::i;:::-;9361:39;;9344:6;9351;9344:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;9415:11:0;9424:2;9415:11;;:::i;:::-;;;9284:154;;41878:360;41938:13;41954:23;41969:7;41954:14;:23::i;:::-;41938:39;;42079:29;42096:1;42100:7;42079:8;:29::i;:::-;42121:16;;;;;;;:9;:16;;;;;:21;;42141:1;;42121:16;:21;;42141:1;;42121:21;:::i;:::-;;;;-1:-1:-1;;42160:16:0;;;;:7;:16;;;;;;42153:23;;;;;;42194:36;42168:7;;42160:16;42153:23;42194:36;;;;;42160:16;;42194:36;41927:311;41878:360;:::o;40679:321::-;40809:18;40815:2;40819:7;40809:5;:18::i;:::-;40860:54;40891:1;40895:2;40899:7;40908:5;40860:22;:54::i;:::-;40838:154;;;;;;;28162:2:1;40838:154:0;;;28144:21:1;28201:2;28181:18;;;28174:30;28240:34;28220:18;;;28213:62;28311:20;28291:18;;;28284:48;28349:19;;40838:154:0;27960:414:1;44504:980:0;44659:4;44680:13;;;15165:20;15213:8;44676:801;;44733:175;;;;;:36;;;;;;:175;;11302:10;;44827:4;;44854:7;;44884:5;;44733:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44733:175:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44712:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45091:13:0;;45087:320;;45134:108;;;;;28162:2:1;45134:108:0;;;28144:21:1;28201:2;28181:18;;;28174:30;28240:34;28220:18;;;28213:62;28311:20;28291:18;;;28284:48;28349:19;;45134:108:0;27960:414:1;45087:320:0;45357:6;45351:13;45342:6;45338:2;45334:15;45327:38;44712:710;44972:51;;44982:41;44972:51;;-1:-1:-1;44965:58:0;;44676:801;-1:-1:-1;45461:4:0;44504:980;;;;;;:::o;41336:313::-;41416:16;;;41408:61;;;;;;;29972:2:1;41408:61:0;;;29954:21:1;;;29991:18;;;29984:30;30050:34;30030:18;;;30023:62;30102:18;;41408:61:0;29770:356:1;41408:61:0;41540:13;;;;;;;:9;:13;;;;;:18;;41557:1;;41540:13;:18;;41557:1;;41540:18;:::i;:::-;;;;-1:-1:-1;;41569:16:0;;;;:7;:16;;;;;;:21;;;;;;;;;;;;;41608:33;;41569:16;;;41608:33;;41569:16;;41608:33;41336:313;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:159:1;81:20;;141:6;130:18;;120:29;;110:57;;163:1;160;153:12;110:57;14:159;;;:::o;178:184::-;230:77;227:1;220:88;327:4;324:1;317:15;351:4;348:1;341:15;367:690;431:5;461:18;502:2;494:6;491:14;488:40;;;508:18;;:::i;:::-;642:2;636:9;708:2;696:15;;547:66;692:24;;;718:2;688:33;684:42;672:55;;;742:18;;;762:22;;;739:46;736:72;;;788:18;;:::i;:::-;828:10;824:2;817:22;857:6;848:15;;887:6;879;872:22;927:3;918:6;913:3;909:16;906:25;903:45;;;944:1;941;934:12;903:45;994:6;989:3;982:4;974:6;970:17;957:44;1049:1;1042:4;1033:6;1025;1021:19;1017:30;1010:41;;;;367:690;;;;;:::o;1062:220::-;1104:5;1157:3;1150:4;1142:6;1138:17;1134:27;1124:55;;1175:1;1172;1165:12;1124:55;1197:79;1272:3;1263:6;1250:20;1243:4;1235:6;1231:17;1197:79;:::i;1287:171::-;1354:20;;1414:18;1403:30;;1393:41;;1383:69;;1448:1;1445;1438:12;1463:684;1565:6;1573;1581;1589;1642:3;1630:9;1621:7;1617:23;1613:33;1610:53;;;1659:1;1656;1649:12;1610:53;1682:28;1700:9;1682:28;:::i;:::-;1672:38;;1761:2;1750:9;1746:18;1733:32;1784:18;1825:2;1817:6;1814:14;1811:34;;;1841:1;1838;1831:12;1811:34;1864:49;1905:7;1896:6;1885:9;1881:22;1864:49;:::i;:::-;1854:59;;1932:37;1965:2;1954:9;1950:18;1932:37;:::i;:::-;1922:47;;2022:2;2011:9;2007:18;1994:32;1978:48;;2051:2;2041:8;2038:16;2035:36;;;2067:1;2064;2057:12;2035:36;;2090:51;2133:7;2122:8;2111:9;2107:24;2090:51;:::i;:::-;2080:61;;;1463:684;;;;;;;:::o;2152:177::-;2237:66;2230:5;2226:78;2219:5;2216:89;2206:117;;2319:1;2316;2309:12;2334:245;2392:6;2445:2;2433:9;2424:7;2420:23;2416:32;2413:52;;;2461:1;2458;2451:12;2413:52;2500:9;2487:23;2519:30;2543:5;2519:30;:::i;2776:258::-;2848:1;2858:113;2872:6;2869:1;2866:13;2858:113;;;2948:11;;;2942:18;2929:11;;;2922:39;2894:2;2887:10;2858:113;;;2989:6;2986:1;2983:13;2980:48;;;-1:-1:-1;;3024:1:1;3006:16;;2999:27;2776:258::o;3039:317::-;3081:3;3119:5;3113:12;3146:6;3141:3;3134:19;3162:63;3218:6;3211:4;3206:3;3202:14;3195:4;3188:5;3184:16;3162:63;:::i;:::-;3270:2;3258:15;3275:66;3254:88;3245:98;;;;3345:4;3241:109;;3039:317;-1:-1:-1;;3039:317:1:o;3361:220::-;3510:2;3499:9;3492:21;3473:4;3530:45;3571:2;3560:9;3556:18;3548:6;3530:45;:::i;3586:180::-;3645:6;3698:2;3686:9;3677:7;3673:23;3669:32;3666:52;;;3714:1;3711;3704:12;3666:52;-1:-1:-1;3737:23:1;;3586:180;-1:-1:-1;3586:180:1:o;4134:154::-;4220:42;4213:5;4209:54;4202:5;4199:65;4189:93;;4278:1;4275;4268:12;4293:315;4361:6;4369;4422:2;4410:9;4401:7;4397:23;4393:32;4390:52;;;4438:1;4435;4428:12;4390:52;4477:9;4464:23;4496:31;4521:5;4496:31;:::i;:::-;4546:5;4598:2;4583:18;;;;4570:32;;-1:-1:-1;;;4293:315:1:o;4613:456::-;4690:6;4698;4706;4759:2;4747:9;4738:7;4734:23;4730:32;4727:52;;;4775:1;4772;4765:12;4727:52;4814:9;4801:23;4833:31;4858:5;4833:31;:::i;:::-;4883:5;-1:-1:-1;4940:2:1;4925:18;;4912:32;4953:33;4912:32;4953:33;:::i;:::-;4613:456;;5005:7;;-1:-1:-1;;;5059:2:1;5044:18;;;;5031:32;;4613:456::o;5074:450::-;5143:6;5196:2;5184:9;5175:7;5171:23;5167:32;5164:52;;;5212:1;5209;5202:12;5164:52;5252:9;5239:23;5285:18;5277:6;5274:30;5271:50;;;5317:1;5314;5307:12;5271:50;5340:22;;5393:4;5385:13;;5381:27;-1:-1:-1;5371:55:1;;5422:1;5419;5412:12;5371:55;5445:73;5510:7;5505:2;5492:16;5487:2;5483;5479:11;5445:73;:::i;5529:269::-;5586:6;5639:2;5627:9;5618:7;5614:23;5610:32;5607:52;;;5655:1;5652;5645:12;5607:52;5694:9;5681:23;5744:4;5737:5;5733:16;5726:5;5723:27;5713:55;;5764:1;5761;5754:12;5803:247;5862:6;5915:2;5903:9;5894:7;5890:23;5886:32;5883:52;;;5931:1;5928;5921:12;5883:52;5970:9;5957:23;5989:31;6014:5;5989:31;:::i;6237:184::-;6295:6;6348:2;6336:9;6327:7;6323:23;6319:32;6316:52;;;6364:1;6361;6354:12;6316:52;6387:28;6405:9;6387:28;:::i;6649:460::-;6734:6;6742;6750;6803:2;6791:9;6782:7;6778:23;6774:32;6771:52;;;6819:1;6816;6809:12;6771:52;6842:28;6860:9;6842:28;:::i;:::-;6832:38;;6921:2;6910:9;6906:18;6893:32;6948:18;6940:6;6937:30;6934:50;;;6980:1;6977;6970:12;6934:50;7003:49;7044:7;7035:6;7024:9;7020:22;7003:49;:::i;:::-;6993:59;;;7099:2;7088:9;7084:18;7071:32;7061:42;;6649:460;;;;;:::o;7367:416::-;7432:6;7440;7493:2;7481:9;7472:7;7468:23;7464:32;7461:52;;;7509:1;7506;7499:12;7461:52;7548:9;7535:23;7567:31;7592:5;7567:31;:::i;:::-;7617:5;-1:-1:-1;7674:2:1;7659:18;;7646:32;7716:15;;7709:23;7697:36;;7687:64;;7747:1;7744;7737:12;7687:64;7770:7;7760:17;;;7367:416;;;;;:::o;7788:665::-;7883:6;7891;7899;7907;7960:3;7948:9;7939:7;7935:23;7931:33;7928:53;;;7977:1;7974;7967:12;7928:53;8016:9;8003:23;8035:31;8060:5;8035:31;:::i;:::-;8085:5;-1:-1:-1;8142:2:1;8127:18;;8114:32;8155:33;8114:32;8155:33;:::i;:::-;8207:7;-1:-1:-1;8261:2:1;8246:18;;8233:32;;-1:-1:-1;8316:2:1;8301:18;;8288:32;8343:18;8332:30;;8329:50;;;8375:1;8372;8365:12;8329:50;8398:49;8439:7;8430:6;8419:9;8415:22;8398:49;:::i;8458:252::-;8525:6;8533;8586:2;8574:9;8565:7;8561:23;8557:32;8554:52;;;8602:1;8599;8592:12;8554:52;8625:28;8643:9;8625:28;:::i;8715:347::-;8766:8;8776:6;8830:3;8823:4;8815:6;8811:17;8807:27;8797:55;;8848:1;8845;8838:12;8797:55;-1:-1:-1;8871:20:1;;8914:18;8903:30;;8900:50;;;8946:1;8943;8936:12;8900:50;8983:4;8975:6;8971:17;8959:29;;9035:3;9028:4;9019:6;9011;9007:19;9003:30;9000:39;8997:59;;;9052:1;9049;9042:12;8997:59;8715:347;;;;;:::o;9067:773::-;9171:6;9179;9187;9195;9203;9256:3;9244:9;9235:7;9231:23;9227:33;9224:53;;;9273:1;9270;9263:12;9224:53;9296:28;9314:9;9296:28;:::i;:::-;9286:38;;9375:2;9364:9;9360:18;9347:32;9398:18;9439:2;9431:6;9428:14;9425:34;;;9455:1;9452;9445:12;9425:34;9478:49;9519:7;9510:6;9499:9;9495:22;9478:49;:::i;:::-;9468:59;;9546:37;9579:2;9568:9;9564:18;9546:37;:::i;:::-;9536:47;;9636:2;9625:9;9621:18;9608:32;9592:48;;9665:2;9655:8;9652:16;9649:36;;;9681:1;9678;9671:12;9649:36;;9720:60;9772:7;9761:8;9750:9;9746:24;9720:60;:::i;:::-;9067:773;;;;-1:-1:-1;9067:773:1;;-1:-1:-1;9799:8:1;;9694:86;9067:773;-1:-1:-1;;;9067:773:1:o;9845:388::-;9913:6;9921;9974:2;9962:9;9953:7;9949:23;9945:32;9942:52;;;9990:1;9987;9980:12;9942:52;10029:9;10016:23;10048:31;10073:5;10048:31;:::i;:::-;10098:5;-1:-1:-1;10155:2:1;10140:18;;10127:32;10168:33;10127:32;10168:33;:::i;10238:481::-;10316:6;10324;10332;10385:2;10373:9;10364:7;10360:23;10356:32;10353:52;;;10401:1;10398;10391:12;10353:52;10424:28;10442:9;10424:28;:::i;:::-;10414:38;;10503:2;10492:9;10488:18;10475:32;10530:18;10522:6;10519:30;10516:50;;;10562:1;10559;10552:12;10516:50;10601:58;10651:7;10642:6;10631:9;10627:22;10601:58;:::i;:::-;10238:481;;10678:8;;-1:-1:-1;10575:84:1;;-1:-1:-1;;;;10238:481:1:o;10724:437::-;10803:1;10799:12;;;;10846;;;10867:61;;10921:4;10913:6;10909:17;10899:27;;10867:61;10974:2;10966:6;10963:14;10943:18;10940:38;10937:218;;;11011:77;11008:1;11001:88;11112:4;11109:1;11102:15;11140:4;11137:1;11130:15;10937:218;;10724:437;;;:::o;11166:869::-;11292:3;11321:1;11354:6;11348:13;11384:36;11410:9;11384:36;:::i;:::-;11439:1;11456:18;;;11483:162;;;;11659:1;11654:356;;;;11449:561;;11483:162;11531:66;11520:9;11516:82;11511:3;11504:95;11628:6;11623:3;11619:16;11612:23;;11483:162;;11654:356;11685:6;11682:1;11675:17;11715:4;11760:2;11757:1;11747:16;11785:1;11799:165;11813:6;11810:1;11807:13;11799:165;;;11891:14;;11878:11;;;11871:35;11934:16;;;;11828:10;;11799:165;;;11803:3;;;11993:6;11988:3;11984:16;11977:23;;11449:561;-1:-1:-1;12026:3:1;;11166:869;-1:-1:-1;;;;;;11166:869:1:o;12461:557::-;12718:6;12710;12706:19;12695:9;12688:38;12762:3;12757:2;12746:9;12742:18;12735:31;12669:4;12789:46;12830:3;12819:9;12815:19;12807:6;12789:46;:::i;:::-;12883:18;12875:6;12871:31;12866:2;12855:9;12851:18;12844:59;12951:9;12943:6;12939:22;12934:2;12923:9;12919:18;12912:50;12979:33;13005:6;12997;12979:33;:::i;:::-;12971:41;12461:557;-1:-1:-1;;;;;;;12461:557:1:o;13023:274::-;13152:3;13190:6;13184:13;13206:53;13252:6;13247:3;13240:4;13232:6;13228:17;13206:53;:::i;:::-;13275:16;;;;;13023:274;-1:-1:-1;;13023:274:1:o;17115:184::-;17167:77;17164:1;17157:88;17264:4;17261:1;17254:15;17288:4;17285:1;17278:15;17304:128;17344:3;17375:1;17371:6;17368:1;17365:13;17362:39;;;17381:18;;:::i;:::-;-1:-1:-1;17417:9:1;;17304:128::o;17792:195::-;17831:3;17862:66;17855:5;17852:77;17849:103;;;17932:18;;:::i;:::-;-1:-1:-1;17979:1:1;17968:13;;17792:195::o;18819:470::-;18998:3;19036:6;19030:13;19052:53;19098:6;19093:3;19086:4;19078:6;19074:17;19052:53;:::i;:::-;19168:13;;19127:16;;;;19190:57;19168:13;19127:16;19224:4;19212:17;;19190:57;:::i;:::-;19263:20;;18819:470;-1:-1:-1;;;;18819:470:1:o;20746:665::-;21027:6;21019;21015:19;21004:9;20997:38;21083:42;21075:6;21071:55;21066:2;21055:9;21051:18;21044:83;21163:3;21158:2;21147:9;21143:18;21136:31;20978:4;21190:46;21231:3;21220:9;21216:19;21208:6;21190:46;:::i;:::-;21286:6;21279:14;21272:22;21267:2;21256:9;21252:18;21245:50;21344:9;21336:6;21332:22;21326:3;21315:9;21311:19;21304:51;21372:33;21398:6;21390;21372:33;:::i;:::-;21364:41;20746:665;-1:-1:-1;;;;;;;;20746:665:1:o;21416:245::-;21495:6;21503;21556:2;21544:9;21535:7;21531:23;21527:32;21524:52;;;21572:1;21569;21562:12;21524:52;-1:-1:-1;;21595:16:1;;21651:2;21636:18;;;21630:25;21595:16;;21630:25;;-1:-1:-1;21416:245:1:o;22149:1542::-;22495:6;22487;22483:19;22472:9;22465:38;22446:4;22522:2;22560:3;22555:2;22544:9;22540:18;22533:31;22584:1;22617:6;22611:13;22647:36;22673:9;22647:36;:::i;:::-;22720:6;22714:3;22703:9;22699:19;22692:35;22746:3;22768:1;22800:2;22789:9;22785:18;22817:1;22812:180;;;;23006:1;23001:354;;;;22778:577;;22812:180;22875:66;22864:9;22860:82;22855:2;22844:9;22840:18;22833:110;22978:3;22967:9;22963:19;22956:26;;22812:180;;23001:354;23032:6;23029:1;23022:17;23080:2;23077:1;23067:16;23105:1;23119:180;23133:6;23130:1;23127:13;23119:180;;;23226:14;;23202:17;;;23198:26;;23191:50;23269:16;;;;23148:10;;23119:180;;;23323:17;;23319:26;;;-1:-1:-1;;22778:577:1;;;;;;23400:9;23395:3;23391:19;23386:2;23375:9;23371:18;23364:47;23434:30;23460:3;23452:6;23434:30;:::i;:::-;23420:44;;;23473:46;23515:2;23504:9;23500:18;23492:6;3848:42;3837:54;3825:67;;3771:127;23473:46;3848:42;3837:54;;23570:3;23555:19;;3825:67;23624:9;23616:6;23612:22;23606:3;23595:9;23591:19;23584:51;23652:33;23678:6;23670;23652:33;:::i;:::-;23644:41;22149:1542;-1:-1:-1;;;;;;;;;22149:1542:1:o;24103:271::-;24286:6;24278;24273:3;24260:33;24242:3;24312:16;;24337:13;;;24312:16;24103:271;-1:-1:-1;24103:271:1:o;24734:777::-;25001:6;24993;24989:19;24978:9;24971:38;25045:3;25040:2;25029:9;25025:18;25018:31;24952:4;25072:46;25113:3;25102:9;25098:19;25090:6;25072:46;:::i;:::-;25166:18;25158:6;25154:31;25149:2;25138:9;25134:18;25127:59;25234:9;25226:6;25222:22;25217:2;25206:9;25202:18;25195:50;25269:6;25261;25254:22;25323:6;25315;25310:2;25302:6;25298:15;25285:45;25376:1;25371:2;25362:6;25354;25350:19;25346:28;25339:39;25502:2;25432:66;25427:2;25419:6;25415:15;25411:88;25403:6;25399:101;25395:110;25387:118;;;24734:777;;;;;;;;:::o;25923:320::-;26010:6;26018;26071:2;26059:9;26050:7;26046:23;26042:32;26039:52;;;26087:1;26084;26077:12;26039:52;26119:9;26113:16;26138:31;26163:5;26138:31;:::i;:::-;26233:2;26218:18;;;;26212:25;26188:5;;26212:25;;-1:-1:-1;;;25923:320:1:o;27476:125::-;27516:4;27544:1;27541;27538:8;27535:34;;;27549:18;;:::i;:::-;-1:-1:-1;27586:9:1;;27476:125::o;28379:184::-;28431:77;28428:1;28421:88;28528:4;28525:1;28518:15;28552:4;28549:1;28542:15;28568:120;28608:1;28634;28624:35;;28639:18;;:::i;:::-;-1:-1:-1;28673:9:1;;28568:120::o;28693:112::-;28725:1;28751;28741:35;;28756:18;;:::i;:::-;-1:-1:-1;28790:9:1;;28693:112::o;28810:184::-;28862:77;28859:1;28852:88;28959:4;28956:1;28949:15;28983:4;28980:1;28973:15;28999:512;29193:4;29222:42;29303:2;29295:6;29291:15;29280:9;29273:34;29355:2;29347:6;29343:15;29338:2;29327:9;29323:18;29316:43;;29395:6;29390:2;29379:9;29375:18;29368:34;29438:3;29433:2;29422:9;29418:18;29411:31;29459:46;29500:3;29489:9;29485:19;29477:6;29459:46;:::i;:::-;29451:54;28999:512;-1:-1:-1;;;;;;28999:512:1:o;29516:249::-;29585:6;29638:2;29626:9;29617:7;29613:23;29609:32;29606:52;;;29654:1;29651;29644:12;29606:52;29686:9;29680:16;29705:30;29729:5;29705:30;:::i
Swarm Source
ipfs://3e89e31076702afaf3bd2866e6deb417b8c2bf433e06841eba0ba1c7f6186ddd
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.