ERC-721
Overview
Max Total Supply
0 BB Friends
Holders
871
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
5 BB FriendsLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BitBotFriends
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-14 */ /** *Submitted for verification at Etherscan.io on 2022-04-12 */ // SPDX-License-Identifier: GPL-3.0 // 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; } } pragma solidity ^0.8.7; contract BitBotFriends is Ownable, ERC721, NonblockingReceiver { using Strings for uint256; string public baseExtension = ".json"; address public _owner; string private baseURI; uint256 nextTokenId = 0; uint256 MAX_MINT_SUPPLY = 4000; uint256 maxMintAmount = 5; uint256 gasForDestinationLzReceive = 350000; mapping(address => uint256) public claimedNFT; constructor(string memory baseURI_) ERC721("BitBot Friends", "BB Friends") { _owner = msg.sender; endpoint = ILayerZeroEndpoint(0x66A71Dcef29A0fFBDBE3c6a460a3B5BC225Cd675); baseURI = baseURI_; } /** @dev You can mint up to 5 NFTs with a single address. Beware that to not mint to much or the transaction might fail mint is free, but donations are also accepted **/ function mint(uint256 _mintAmount) external payable { require( _mintAmount <= maxMintAmount, "Mint Amount exceeds the Maximum Allowed Mint Amount of 5" ); require(_mintAmount > 0, "Mint Amount needs to be bigger than 0"); require( nextTokenId + _mintAmount - 1 <= MAX_MINT_SUPPLY, "Mint Amount exceeds the Available Mint Amount" ); require( claimedNFT[msg.sender] + _mintAmount <= maxMintAmount, "This address already minted the max amount of allowed NFTs" ); for (uint256 i = 1; i <= _mintAmount; i++) { _safeMint(msg.sender, nextTokenId++); } claimedNFT[msg.sender] = claimedNFT[msg.sender] + _mintAmount; } // 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, "The value of the send Message was not enough to cover the Message Fee. Send more 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 setNextTokenId(uint256 _newNextTokenId) public onlyOwner { nextTokenId = _newNextTokenId; } function setMAX_MINT_SUPPLY(uint256 _newMAX_MINT_SUPPLY) public onlyOwner { MAX_MINT_SUPPLY = _newMAX_MINT_SUPPLY; } function setLayerZeroEndpoint(address _layerZeroEndpoint) public onlyOwner { endpoint = ILayerZeroEndpoint(_layerZeroEndpoint); } function donate() external payable { // thank you } // This allows the devs to receive kind donations function withdraw() external onlyOwner { (bool sent, ) = payable(_owner).call{value: address(this).balance}(""); require(sent); } // 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 tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string( abi.encodePacked( currentBaseURI, tokenId.toString(), baseExtension ) ) : ""; } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimedNFT","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":"uint256","name":"_mintAmount","type":"uint256"}],"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":"address","name":"_layerZeroEndpoint","type":"address"}],"name":"setLayerZeroEndpoint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMAX_MINT_SUPPLY","type":"uint256"}],"name":"setMAX_MINT_SUPPLY","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newNextTokenId","type":"uint256"}],"name":"setNextTokenId","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a09081526200002891600a9190620001a7565b506000600d55610fa0600e556005600f55620557306010553480156200004d57600080fd5b50604051620030103803806200301083398101604081905262000070916200024d565b6040518060400160405280600e81526020016d426974426f7420467269656e647360901b8152506040518060400160405280600a815260200169424220467269656e647360b01b815250620000d4620000ce6200015360201b60201c565b62000157565b8151620000e9906001906020850190620001a7565b508051620000ff906002906020840190620001a7565b5050600b80546001600160a01b03199081163317909155600780549091167366a71dcef29a0ffbdbe3c6a460a3b5bc225cd6751790555080516200014b90600c906020840190620001a7565b50506200037c565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001b59062000329565b90600052602060002090601f016020900481019282620001d9576000855562000224565b82601f10620001f457805160ff191683800117855562000224565b8280016001018555821562000224579182015b828111156200022457825182559160200191906001019062000207565b506200023292915062000236565b5090565b5b8082111562000232576000815560010162000237565b600060208083850312156200026157600080fd5b82516001600160401b03808211156200027957600080fd5b818501915085601f8301126200028e57600080fd5b815181811115620002a357620002a362000366565b604051601f8201601f19908116603f01168101908382118183101715620002ce57620002ce62000366565b816040528281528886848701011115620002e757600080fd5b600093505b828410156200030b5784840186015181850187015292850192620002ec565b828411156200031d5760008684830101525b98975050505050505050565b600181811c908216806200033e57607f821691505b602082108114156200036057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612c84806200038c6000396000f3fe6080604052600436106101f85760003560e01c80638da5cb5b1161010d578063b88d4fde116100a0578063d1deba1f1161006f578063d1deba1f146105ec578063e985e9c5146105ff578063eb8d72b714610648578063ed88c68e1461021d578063f2fde38b1461066857600080fd5b8063b88d4fde14610584578063c6682862146105a4578063c87b56dd146105b9578063cf89fa03146105d957600080fd5b806395d89b41116100dc57806395d89b411461051c578063a0712d6814610531578063a22cb46514610544578063b2bdfa7b1461056457600080fd5b80638da5cb5b146104535780638ee7491214610471578063943fb872146104dc57806395b9783c146104fc57600080fd5b806342842e0e1161019057806370a082311161015f57806370a08231146103be578063715018a6146103de57806374443427146103f35780637533d7881461041357806383e3500f1461043357600080fd5b806342842e0e1461032357806355f804b3146103435780636352211e1461036357806365f980461461038357600080fd5b8063095ea7b3116101cc578063095ea7b3146102ae5780631c37a822146102ce57806323b872dd146102ee5780633ccfd60b1461030e57600080fd5b80621d3567146101fd57806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276575b600080fd5b34801561020957600080fd5b5061021d610218366004612616565b610688565b005b34801561022b57600080fd5b5061023f61023a366004612446565b610882565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b506102696108d4565b60405161024b9190612834565b34801561028257600080fd5b506102966102913660046126aa565b610966565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b5061021d6102c936600461241a565b6109fb565b3480156102da57600080fd5b5061021d6102e9366004612616565b610b11565b3480156102fa57600080fd5b5061021d61030936600461233b565b610b80565b34801561031a57600080fd5b5061021d610bb1565b34801561032f57600080fd5b5061021d61033e36600461233b565b610c3e565b34801561034f57600080fd5b5061021d61035e366004612480565b610c59565b34801561036f57600080fd5b5061029661037e3660046126aa565b610c9a565b34801561038f57600080fd5b506103b061039e3660046122b7565b60116020526000908152604090205481565b60405190815260200161024b565b3480156103ca57600080fd5b506103b06103d93660046122b7565b610d11565b3480156103ea57600080fd5b5061021d610d98565b3480156103ff57600080fd5b5061021d61040e3660046126aa565b610dce565b34801561041f57600080fd5b5061026961042e3660046124c8565b610dfd565b34801561043f57600080fd5b5061021d61044e3660046126aa565b610e97565b34801561045f57600080fd5b506000546001600160a01b0316610296565b34801561047d57600080fd5b506104c761048c366004612535565b600860209081526000938452604080852084518086018401805192815290840195840195909520945292905282529020805460019091015482565b6040805192835260208301919091520161024b565b3480156104e857600080fd5b5061021d6104f73660046126aa565b610ec6565b34801561050857600080fd5b5061021d6105173660046122b7565b610ef5565b34801561052857600080fd5b50610269610f41565b61021d61053f3660046126aa565b610f50565b34801561055057600080fd5b5061021d61055f3660046123e7565b6111a3565b34801561057057600080fd5b50600b54610296906001600160a01b031681565b34801561059057600080fd5b5061021d61059f36600461237c565b6111ae565b3480156105b057600080fd5b506102696111e0565b3480156105c557600080fd5b506102696105d43660046126aa565b6111ed565b61021d6105e736600461268e565b6112cb565b61021d6105fa36600461258b565b6115d0565b34801561060b57600080fd5b5061023f61061a366004612302565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561065457600080fd5b5061021d6106633660046124e3565b61175d565b34801561067457600080fd5b5061021d6106833660046122b7565b6117a5565b6007546001600160a01b0316331461069f57600080fd5b61ffff8416600090815260096020526040902080546106bd90612b61565b905083511480156106fc575061ffff84166000908152600960205260409081902090516106ea91906127ae565b60405180910390208380519060200120145b61076a5760405162461bcd60e51b815260206004820152603460248201527f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f756044820152731c98d9481cd95b991a5b99c818dbdb9d1c9858dd60621b60648201526084015b60405180910390fd5b604051630e1bd41160e11b81523090631c37a822906107939087908790879087906004016129d4565b600060405180830381600087803b1580156107ad57600080fd5b505af19250505080156107be575060015b61087c576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff168152602001908152602001600020846040516108089190612792565b9081526040805191829003602090810183206001600160401b038716600090815290825291909120835181559201516001909201919091557fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d906108739086908690869086906129d4565b60405180910390a15b50505050565b60006001600160e01b031982166380ac58cd60e01b14806108b357506001600160e01b03198216635b5e139f60e01b145b806108ce57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546108e390612b61565b80601f016020809104026020016040519081016040528092919081815260200182805461090f90612b61565b801561095c5780601f106109315761010080835404028352916020019161095c565b820191906000526020600020905b81548152906001019060200180831161093f57829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166109df5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610761565b506000908152600560205260409020546001600160a01b031690565b6000610a0682610c9a565b9050806001600160a01b0316836001600160a01b03161415610a745760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610761565b336001600160a01b0382161480610a905750610a90813361061a565b610b025760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610761565b610b0c838361183d565b505050565b333014610b745760405162461bcd60e51b815260206004820152602b60248201527f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460448201526a10313290213934b233b29760a91b6064820152608401610761565b61087c848484846118ab565b610b8a33826118d8565b610ba65760405162461bcd60e51b8152600401610761906128ce565b610b0c8383836119cf565b6000546001600160a01b03163314610bdb5760405162461bcd60e51b815260040161076190612899565b600b546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610c28576040519150601f19603f3d011682016040523d82523d6000602084013e610c2d565b606091505b5050905080610c3b57600080fd5b50565b610b0c838383604051806020016040528060008152506111ae565b6000546001600160a01b03163314610c835760405162461bcd60e51b815260040161076190612899565b8051610c9690600c90602084019061209f565b5050565b6000818152600360205260408120546001600160a01b0316806108ce5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610761565b60006001600160a01b038216610d7c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610761565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610dc25760405162461bcd60e51b815260040161076190612899565b610dcc6000611b6f565b565b6000546001600160a01b03163314610df85760405162461bcd60e51b815260040161076190612899565b600e55565b60096020526000908152604090208054610e1690612b61565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4290612b61565b8015610e8f5780601f10610e6457610100808354040283529160200191610e8f565b820191906000526020600020905b815481529060010190602001808311610e7257829003601f168201915b505050505081565b6000546001600160a01b03163314610ec15760405162461bcd60e51b815260040161076190612899565b600d55565b6000546001600160a01b03163314610ef05760405162461bcd60e51b815260040161076190612899565b601055565b6000546001600160a01b03163314610f1f5760405162461bcd60e51b815260040161076190612899565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6060600280546108e390612b61565b600f54811115610fc85760405162461bcd60e51b815260206004820152603860248201527f4d696e7420416d6f756e74206578636565647320746865204d6178696d756d2060448201527f416c6c6f776564204d696e7420416d6f756e74206f66203500000000000000006064820152608401610761565b600081116110265760405162461bcd60e51b815260206004820152602560248201527f4d696e7420416d6f756e74206e6565647320746f206265206269676765722074604482015264068616e20360dc1b6064820152608401610761565b600e54600182600d546110399190612af2565b6110439190612b1e565b11156110a75760405162461bcd60e51b815260206004820152602d60248201527f4d696e7420416d6f756e7420657863656564732074686520417661696c61626c60448201526c1948135a5b9d08105b5bdd5b9d609a1b6064820152608401610761565b600f54336000908152601160205260409020546110c5908390612af2565b11156111395760405162461bcd60e51b815260206004820152603a60248201527f54686973206164647265737320616c7265616479206d696e746564207468652060448201527f6d617820616d6f756e74206f6620616c6c6f776564204e4654730000000000006064820152608401610761565b60015b81811161117457600d805461116291339190600061115983612b9c565b91905055611bbf565b8061116c81612b9c565b91505061113c565b5033600090815260116020526040902054611190908290612af2565b3360009081526011602052604090205550565b610c96338383611bd9565b6111b833836118d8565b6111d45760405162461bcd60e51b8152600401610761906128ce565b61087c84848484611ca8565b600a8054610e1690612b61565b6000818152600360205260409020546060906001600160a01b031661126c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610761565b6000611276611cdb565b9050600081511161129657604051806020016040528060008152506112c4565b806112a084611cea565b600a6040516020016112b4939291906127ba565b6040516020818303038152906040525b9392505050565b6112d481610c9a565b6001600160a01b0316336001600160a01b03161461133f5760405162461bcd60e51b815260206004820152602260248201527f596f75206d757374206f776e2074686520746f6b656e20746f20747261766572604482015261736560f01b6064820152608401610761565b61ffff82166000908152600960205260408120805461135d90612b61565b9050116113c35760405162461bcd60e51b815260206004820152602e60248201527f5468697320636861696e2069732063757272656e746c7920756e617661696c6160448201526d189b1948199bdc881d1c985d995b60921b6064820152608401610761565b6113cc81611de7565b60408051336020820152808201839052815180820383018152606082018352601054600160f01b60808401526082808401919091528351808403909101815260a283019384905260075463040a7bb160e41b90945290926001926000916001600160a01b0316906340a7bb109061144f908990309089908790899060a60161291f565b604080518083038186803b15801561146657600080fd5b505afa15801561147a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061149e91906126c3565b5090508034101561154b5760405162461bcd60e51b815260206004820152606560248201527f5468652076616c7565206f66207468652073656e64204d65737361676520776160448201527f73206e6f7420656e6f75676820746f20636f76657220746865204d657373616760648201527f65204665652e2053656e64206d6f72652067617320666f72206d657373616765608482015264206665657360d81b60a482015260c401610761565b60075461ffff8716600090815260096020526040808220905162c5803160e81b81526001600160a01b039093169263c5803100923492611596928c928b913391908b90600401612a12565b6000604051808303818588803b1580156115af57600080fd5b505af11580156115c3573d6000803e3d6000fd5b5050505050505050505050565b61ffff851660009081526008602052604080822090516115f1908790612792565b90815260408051602092819003830190206001600160401b03871660009081529252902060018101549091506116785760405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60448201526565737361676560d01b6064820152608401610761565b8054821480156116a2575080600101548383604051611698929190612782565b6040518091039020145b6116ee5760405162461bcd60e51b815260206004820152601a60248201527f4c617965725a65726f3a20696e76616c6964207061796c6f61640000000000006044820152606401610761565b60008082556001820155604051630e1bd41160e11b81523090631c37a822906117239089908990899089908990600401612973565b600060405180830381600087803b15801561173d57600080fd5b505af1158015611751573d6000803e3d6000fd5b50505050505050505050565b6000546001600160a01b031633146117875760405162461bcd60e51b815260040161076190612899565b61ffff8316600090815260096020526040902061087c908383612123565b6000546001600160a01b031633146117cf5760405162461bcd60e51b815260040161076190612899565b6001600160a01b0381166118345760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610761565b610c3b81611b6f565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061187282610c9a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080828060200190518101906118c291906122d4565b915091506118d08282611bbf565b505050505050565b6000818152600360205260408120546001600160a01b03166119515760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610761565b600061195c83610c9a565b9050806001600160a01b0316846001600160a01b031614806119975750836001600160a01b031661198c84610966565b6001600160a01b0316145b806119c757506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166119e282610c9a565b6001600160a01b031614611a4a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610761565b6001600160a01b038216611aac5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610761565b611ab760008261183d565b6001600160a01b0383166000908152600460205260408120805460019290611ae0908490612b1e565b90915550506001600160a01b0382166000908152600460205260408120805460019290611b0e908490612af2565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610c96828260405180602001604052806000815250611e82565b816001600160a01b0316836001600160a01b03161415611c3b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610761565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611cb38484846119cf565b611cbf84848484611eb5565b61087c5760405162461bcd60e51b815260040161076190612847565b6060600c80546108e390612b61565b606081611d0e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d385780611d2281612b9c565b9150611d319050600a83612b0a565b9150611d12565b6000816001600160401b03811115611d5257611d52612c0d565b6040519080825280601f01601f191660200182016040528015611d7c576020820181803683370190505b5090505b84156119c757611d91600183612b1e565b9150611d9e600a86612bb7565b611da9906030612af2565b60f81b818381518110611dbe57611dbe612bf7565b60200101906001600160f81b031916908160001a905350611de0600a86612b0a565b9450611d80565b6000611df282610c9a565b9050611dff60008361183d565b6001600160a01b0381166000908152600460205260408120805460019290611e28908490612b1e565b909155505060008281526003602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b611e8c8383611fc2565b611e996000848484611eb5565b610b0c5760405162461bcd60e51b815260040161076190612847565b60006001600160a01b0384163b15611fb757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ef99033908990889088906004016127f7565b602060405180830381600087803b158015611f1357600080fd5b505af1925050508015611f43575060408051601f3d908101601f19168201909252611f4091810190612463565b60015b611f9d573d808015611f71576040519150601f19603f3d011682016040523d82523d6000602084013e611f76565b606091505b508051611f955760405162461bcd60e51b815260040161076190612847565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506119c7565b506001949350505050565b6001600160a01b0382166120185760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610761565b6001600160a01b0382166000908152600460205260408120805460019290612041908490612af2565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546120ab90612b61565b90600052602060002090601f0160209004810192826120cd5760008555612113565b82601f106120e657805160ff1916838001178555612113565b82800160010185558215612113579182015b828111156121135782518255916020019190600101906120f8565b5061211f929150612197565b5090565b82805461212f90612b61565b90600052602060002090601f0160209004810192826121515760008555612113565b82601f1061216a5782800160ff19823516178555612113565b82800160010185558215612113579182015b8281111561211357823582559160200191906001019061217c565b5b8082111561211f5760008155600101612198565b60006001600160401b03808411156121c6576121c6612c0d565b604051601f8501601f19908116603f011681019082821181831017156121ee576121ee612c0d565b8160405280935085815286868601111561220757600080fd5b858560208301376000602087830101525050509392505050565b60008083601f84011261223357600080fd5b5081356001600160401b0381111561224a57600080fd5b60208301915083602082850101111561226257600080fd5b9250929050565b600082601f83011261227a57600080fd5b6112c4838335602085016121ac565b803561ffff8116811461229b57600080fd5b919050565b80356001600160401b038116811461229b57600080fd5b6000602082840312156122c957600080fd5b81356112c481612c23565b600080604083850312156122e757600080fd5b82516122f281612c23565b6020939093015192949293505050565b6000806040838503121561231557600080fd5b823561232081612c23565b9150602083013561233081612c23565b809150509250929050565b60008060006060848603121561235057600080fd5b833561235b81612c23565b9250602084013561236b81612c23565b929592945050506040919091013590565b6000806000806080858703121561239257600080fd5b843561239d81612c23565b935060208501356123ad81612c23565b92506040850135915060608501356001600160401b038111156123cf57600080fd5b6123db87828801612269565b91505092959194509250565b600080604083850312156123fa57600080fd5b823561240581612c23565b91506020830135801515811461233057600080fd5b6000806040838503121561242d57600080fd5b823561243881612c23565b946020939093013593505050565b60006020828403121561245857600080fd5b81356112c481612c38565b60006020828403121561247557600080fd5b81516112c481612c38565b60006020828403121561249257600080fd5b81356001600160401b038111156124a857600080fd5b8201601f810184136124b957600080fd5b6119c7848235602084016121ac565b6000602082840312156124da57600080fd5b6112c482612289565b6000806000604084860312156124f857600080fd5b61250184612289565b925060208401356001600160401b0381111561251c57600080fd5b61252886828701612221565b9497909650939450505050565b60008060006060848603121561254a57600080fd5b61255384612289565b925060208401356001600160401b0381111561256e57600080fd5b61257a86828701612269565b925050604084013590509250925092565b6000806000806000608086880312156125a357600080fd5b6125ac86612289565b945060208601356001600160401b03808211156125c857600080fd5b6125d489838a01612269565b95506125e2604089016122a0565b945060608801359150808211156125f857600080fd5b5061260588828901612221565b969995985093965092949392505050565b6000806000806080858703121561262c57600080fd5b61263585612289565b935060208501356001600160401b038082111561265157600080fd5b61265d88838901612269565b945061266b604088016122a0565b9350606087013591508082111561268157600080fd5b506123db87828801612269565b600080604083850312156126a157600080fd5b61243883612289565b6000602082840312156126bc57600080fd5b5035919050565b600080604083850312156126d657600080fd5b505080516020909101519092909150565b600081518084526126ff816020860160208601612b35565b601f01601f19169290920160200192915050565b6000815461272081612b61565b60018281168015612738576001811461274957612778565b60ff19841687528287019450612778565b8560005260208060002060005b8581101561276f5781548a820152908401908201612756565b50505082870194505b5050505092915050565b8183823760009101908152919050565b600082516127a4818460208701612b35565b9190910192915050565b60006112c48284612713565b600084516127cc818460208901612b35565b8451908301906127e0818360208901612b35565b6127ec81830186612713565b979650505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061282a908301846126e7565b9695505050505050565b6020815260006112c460208301846126e7565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b61ffff861681526001600160a01b038516602082015260a06040820181905260009061294d908301866126e7565b8415156060840152828103608084015261296781856126e7565b98975050505050505050565b61ffff8616815260806020820152600061299060808301876126e7565b6001600160401b03861660408401528281036060840152838152838560208301376000602085830101526020601f19601f8601168201019150509695505050505050565b61ffff851681526080602082015260006129f160808301866126e7565b6001600160401b038516604084015282810360608401526127ec81856126e7565b61ffff871681526000602060c08184015260008854612a3081612b61565b8060c087015260e0600180841660008114612a525760018114612a6757612a95565b60ff1985168984015261010089019550612a95565b8d6000528660002060005b85811015612a8d5781548b8201860152908301908801612a72565b8a0184019650505b50505050508381036040850152612aac81896126e7565b915050612ac460608401876001600160a01b03169052565b6001600160a01b038516608084015282810360a0840152612ae581856126e7565b9998505050505050505050565b60008219821115612b0557612b05612bcb565b500190565b600082612b1957612b19612be1565b500490565b600082821015612b3057612b30612bcb565b500390565b60005b83811015612b50578181015183820152602001612b38565b8381111561087c5750506000910152565b600181811c90821680612b7557607f821691505b60208210811415612b9657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612bb057612bb0612bcb565b5060010190565b600082612bc657612bc6612be1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610c3b57600080fd5b6001600160e01b031981168114610c3b57600080fdfea2646970667358221220357ffcc55b35909136d215550cc0847b7e160d478ed6ad6b206a07cdcd552c5464736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d505373717247566f4e553762706477335a446748765841524246374c396b34345a31755875736343343733722f00000000000000000000
Deployed Bytecode
0x6080604052600436106101f85760003560e01c80638da5cb5b1161010d578063b88d4fde116100a0578063d1deba1f1161006f578063d1deba1f146105ec578063e985e9c5146105ff578063eb8d72b714610648578063ed88c68e1461021d578063f2fde38b1461066857600080fd5b8063b88d4fde14610584578063c6682862146105a4578063c87b56dd146105b9578063cf89fa03146105d957600080fd5b806395d89b41116100dc57806395d89b411461051c578063a0712d6814610531578063a22cb46514610544578063b2bdfa7b1461056457600080fd5b80638da5cb5b146104535780638ee7491214610471578063943fb872146104dc57806395b9783c146104fc57600080fd5b806342842e0e1161019057806370a082311161015f57806370a08231146103be578063715018a6146103de57806374443427146103f35780637533d7881461041357806383e3500f1461043357600080fd5b806342842e0e1461032357806355f804b3146103435780636352211e1461036357806365f980461461038357600080fd5b8063095ea7b3116101cc578063095ea7b3146102ae5780631c37a822146102ce57806323b872dd146102ee5780633ccfd60b1461030e57600080fd5b80621d3567146101fd57806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276575b600080fd5b34801561020957600080fd5b5061021d610218366004612616565b610688565b005b34801561022b57600080fd5b5061023f61023a366004612446565b610882565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b506102696108d4565b60405161024b9190612834565b34801561028257600080fd5b506102966102913660046126aa565b610966565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b5061021d6102c936600461241a565b6109fb565b3480156102da57600080fd5b5061021d6102e9366004612616565b610b11565b3480156102fa57600080fd5b5061021d61030936600461233b565b610b80565b34801561031a57600080fd5b5061021d610bb1565b34801561032f57600080fd5b5061021d61033e36600461233b565b610c3e565b34801561034f57600080fd5b5061021d61035e366004612480565b610c59565b34801561036f57600080fd5b5061029661037e3660046126aa565b610c9a565b34801561038f57600080fd5b506103b061039e3660046122b7565b60116020526000908152604090205481565b60405190815260200161024b565b3480156103ca57600080fd5b506103b06103d93660046122b7565b610d11565b3480156103ea57600080fd5b5061021d610d98565b3480156103ff57600080fd5b5061021d61040e3660046126aa565b610dce565b34801561041f57600080fd5b5061026961042e3660046124c8565b610dfd565b34801561043f57600080fd5b5061021d61044e3660046126aa565b610e97565b34801561045f57600080fd5b506000546001600160a01b0316610296565b34801561047d57600080fd5b506104c761048c366004612535565b600860209081526000938452604080852084518086018401805192815290840195840195909520945292905282529020805460019091015482565b6040805192835260208301919091520161024b565b3480156104e857600080fd5b5061021d6104f73660046126aa565b610ec6565b34801561050857600080fd5b5061021d6105173660046122b7565b610ef5565b34801561052857600080fd5b50610269610f41565b61021d61053f3660046126aa565b610f50565b34801561055057600080fd5b5061021d61055f3660046123e7565b6111a3565b34801561057057600080fd5b50600b54610296906001600160a01b031681565b34801561059057600080fd5b5061021d61059f36600461237c565b6111ae565b3480156105b057600080fd5b506102696111e0565b3480156105c557600080fd5b506102696105d43660046126aa565b6111ed565b61021d6105e736600461268e565b6112cb565b61021d6105fa36600461258b565b6115d0565b34801561060b57600080fd5b5061023f61061a366004612302565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561065457600080fd5b5061021d6106633660046124e3565b61175d565b34801561067457600080fd5b5061021d6106833660046122b7565b6117a5565b6007546001600160a01b0316331461069f57600080fd5b61ffff8416600090815260096020526040902080546106bd90612b61565b905083511480156106fc575061ffff84166000908152600960205260409081902090516106ea91906127ae565b60405180910390208380519060200120145b61076a5760405162461bcd60e51b815260206004820152603460248201527f4e6f6e626c6f636b696e6752656365697665723a20696e76616c696420736f756044820152731c98d9481cd95b991a5b99c818dbdb9d1c9858dd60621b60648201526084015b60405180910390fd5b604051630e1bd41160e11b81523090631c37a822906107939087908790879087906004016129d4565b600060405180830381600087803b1580156107ad57600080fd5b505af19250505080156107be575060015b61087c576040518060400160405280825181526020018280519060200120815250600860008661ffff1661ffff168152602001908152602001600020846040516108089190612792565b9081526040805191829003602090810183206001600160401b038716600090815290825291909120835181559201516001909201919091557fe6f254030bcb01ffd20558175c13fcaed6d1520be7becee4c961b65f79243b0d906108739086908690869086906129d4565b60405180910390a15b50505050565b60006001600160e01b031982166380ac58cd60e01b14806108b357506001600160e01b03198216635b5e139f60e01b145b806108ce57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546108e390612b61565b80601f016020809104026020016040519081016040528092919081815260200182805461090f90612b61565b801561095c5780601f106109315761010080835404028352916020019161095c565b820191906000526020600020905b81548152906001019060200180831161093f57829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166109df5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610761565b506000908152600560205260409020546001600160a01b031690565b6000610a0682610c9a565b9050806001600160a01b0316836001600160a01b03161415610a745760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610761565b336001600160a01b0382161480610a905750610a90813361061a565b610b025760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610761565b610b0c838361183d565b505050565b333014610b745760405162461bcd60e51b815260206004820152602b60248201527f4e6f6e626c6f636b696e6752656365697665723a2063616c6c6572206d75737460448201526a10313290213934b233b29760a91b6064820152608401610761565b61087c848484846118ab565b610b8a33826118d8565b610ba65760405162461bcd60e51b8152600401610761906128ce565b610b0c8383836119cf565b6000546001600160a01b03163314610bdb5760405162461bcd60e51b815260040161076190612899565b600b546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610c28576040519150601f19603f3d011682016040523d82523d6000602084013e610c2d565b606091505b5050905080610c3b57600080fd5b50565b610b0c838383604051806020016040528060008152506111ae565b6000546001600160a01b03163314610c835760405162461bcd60e51b815260040161076190612899565b8051610c9690600c90602084019061209f565b5050565b6000818152600360205260408120546001600160a01b0316806108ce5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610761565b60006001600160a01b038216610d7c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610761565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610dc25760405162461bcd60e51b815260040161076190612899565b610dcc6000611b6f565b565b6000546001600160a01b03163314610df85760405162461bcd60e51b815260040161076190612899565b600e55565b60096020526000908152604090208054610e1690612b61565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4290612b61565b8015610e8f5780601f10610e6457610100808354040283529160200191610e8f565b820191906000526020600020905b815481529060010190602001808311610e7257829003601f168201915b505050505081565b6000546001600160a01b03163314610ec15760405162461bcd60e51b815260040161076190612899565b600d55565b6000546001600160a01b03163314610ef05760405162461bcd60e51b815260040161076190612899565b601055565b6000546001600160a01b03163314610f1f5760405162461bcd60e51b815260040161076190612899565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6060600280546108e390612b61565b600f54811115610fc85760405162461bcd60e51b815260206004820152603860248201527f4d696e7420416d6f756e74206578636565647320746865204d6178696d756d2060448201527f416c6c6f776564204d696e7420416d6f756e74206f66203500000000000000006064820152608401610761565b600081116110265760405162461bcd60e51b815260206004820152602560248201527f4d696e7420416d6f756e74206e6565647320746f206265206269676765722074604482015264068616e20360dc1b6064820152608401610761565b600e54600182600d546110399190612af2565b6110439190612b1e565b11156110a75760405162461bcd60e51b815260206004820152602d60248201527f4d696e7420416d6f756e7420657863656564732074686520417661696c61626c60448201526c1948135a5b9d08105b5bdd5b9d609a1b6064820152608401610761565b600f54336000908152601160205260409020546110c5908390612af2565b11156111395760405162461bcd60e51b815260206004820152603a60248201527f54686973206164647265737320616c7265616479206d696e746564207468652060448201527f6d617820616d6f756e74206f6620616c6c6f776564204e4654730000000000006064820152608401610761565b60015b81811161117457600d805461116291339190600061115983612b9c565b91905055611bbf565b8061116c81612b9c565b91505061113c565b5033600090815260116020526040902054611190908290612af2565b3360009081526011602052604090205550565b610c96338383611bd9565b6111b833836118d8565b6111d45760405162461bcd60e51b8152600401610761906128ce565b61087c84848484611ca8565b600a8054610e1690612b61565b6000818152600360205260409020546060906001600160a01b031661126c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610761565b6000611276611cdb565b9050600081511161129657604051806020016040528060008152506112c4565b806112a084611cea565b600a6040516020016112b4939291906127ba565b6040516020818303038152906040525b9392505050565b6112d481610c9a565b6001600160a01b0316336001600160a01b03161461133f5760405162461bcd60e51b815260206004820152602260248201527f596f75206d757374206f776e2074686520746f6b656e20746f20747261766572604482015261736560f01b6064820152608401610761565b61ffff82166000908152600960205260408120805461135d90612b61565b9050116113c35760405162461bcd60e51b815260206004820152602e60248201527f5468697320636861696e2069732063757272656e746c7920756e617661696c6160448201526d189b1948199bdc881d1c985d995b60921b6064820152608401610761565b6113cc81611de7565b60408051336020820152808201839052815180820383018152606082018352601054600160f01b60808401526082808401919091528351808403909101815260a283019384905260075463040a7bb160e41b90945290926001926000916001600160a01b0316906340a7bb109061144f908990309089908790899060a60161291f565b604080518083038186803b15801561146657600080fd5b505afa15801561147a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061149e91906126c3565b5090508034101561154b5760405162461bcd60e51b815260206004820152606560248201527f5468652076616c7565206f66207468652073656e64204d65737361676520776160448201527f73206e6f7420656e6f75676820746f20636f76657220746865204d657373616760648201527f65204665652e2053656e64206d6f72652067617320666f72206d657373616765608482015264206665657360d81b60a482015260c401610761565b60075461ffff8716600090815260096020526040808220905162c5803160e81b81526001600160a01b039093169263c5803100923492611596928c928b913391908b90600401612a12565b6000604051808303818588803b1580156115af57600080fd5b505af11580156115c3573d6000803e3d6000fd5b5050505050505050505050565b61ffff851660009081526008602052604080822090516115f1908790612792565b90815260408051602092819003830190206001600160401b03871660009081529252902060018101549091506116785760405162461bcd60e51b815260206004820152602660248201527f4e6f6e626c6f636b696e6752656365697665723a206e6f2073746f726564206d60448201526565737361676560d01b6064820152608401610761565b8054821480156116a2575080600101548383604051611698929190612782565b6040518091039020145b6116ee5760405162461bcd60e51b815260206004820152601a60248201527f4c617965725a65726f3a20696e76616c6964207061796c6f61640000000000006044820152606401610761565b60008082556001820155604051630e1bd41160e11b81523090631c37a822906117239089908990899089908990600401612973565b600060405180830381600087803b15801561173d57600080fd5b505af1158015611751573d6000803e3d6000fd5b50505050505050505050565b6000546001600160a01b031633146117875760405162461bcd60e51b815260040161076190612899565b61ffff8316600090815260096020526040902061087c908383612123565b6000546001600160a01b031633146117cf5760405162461bcd60e51b815260040161076190612899565b6001600160a01b0381166118345760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610761565b610c3b81611b6f565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061187282610c9a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080828060200190518101906118c291906122d4565b915091506118d08282611bbf565b505050505050565b6000818152600360205260408120546001600160a01b03166119515760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610761565b600061195c83610c9a565b9050806001600160a01b0316846001600160a01b031614806119975750836001600160a01b031661198c84610966565b6001600160a01b0316145b806119c757506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166119e282610c9a565b6001600160a01b031614611a4a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610761565b6001600160a01b038216611aac5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610761565b611ab760008261183d565b6001600160a01b0383166000908152600460205260408120805460019290611ae0908490612b1e565b90915550506001600160a01b0382166000908152600460205260408120805460019290611b0e908490612af2565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610c96828260405180602001604052806000815250611e82565b816001600160a01b0316836001600160a01b03161415611c3b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610761565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611cb38484846119cf565b611cbf84848484611eb5565b61087c5760405162461bcd60e51b815260040161076190612847565b6060600c80546108e390612b61565b606081611d0e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d385780611d2281612b9c565b9150611d319050600a83612b0a565b9150611d12565b6000816001600160401b03811115611d5257611d52612c0d565b6040519080825280601f01601f191660200182016040528015611d7c576020820181803683370190505b5090505b84156119c757611d91600183612b1e565b9150611d9e600a86612bb7565b611da9906030612af2565b60f81b818381518110611dbe57611dbe612bf7565b60200101906001600160f81b031916908160001a905350611de0600a86612b0a565b9450611d80565b6000611df282610c9a565b9050611dff60008361183d565b6001600160a01b0381166000908152600460205260408120805460019290611e28908490612b1e565b909155505060008281526003602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b611e8c8383611fc2565b611e996000848484611eb5565b610b0c5760405162461bcd60e51b815260040161076190612847565b60006001600160a01b0384163b15611fb757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ef99033908990889088906004016127f7565b602060405180830381600087803b158015611f1357600080fd5b505af1925050508015611f43575060408051601f3d908101601f19168201909252611f4091810190612463565b60015b611f9d573d808015611f71576040519150601f19603f3d011682016040523d82523d6000602084013e611f76565b606091505b508051611f955760405162461bcd60e51b815260040161076190612847565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506119c7565b506001949350505050565b6001600160a01b0382166120185760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610761565b6001600160a01b0382166000908152600460205260408120805460019290612041908490612af2565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546120ab90612b61565b90600052602060002090601f0160209004810192826120cd5760008555612113565b82601f106120e657805160ff1916838001178555612113565b82800160010185558215612113579182015b828111156121135782518255916020019190600101906120f8565b5061211f929150612197565b5090565b82805461212f90612b61565b90600052602060002090601f0160209004810192826121515760008555612113565b82601f1061216a5782800160ff19823516178555612113565b82800160010185558215612113579182015b8281111561211357823582559160200191906001019061217c565b5b8082111561211f5760008155600101612198565b60006001600160401b03808411156121c6576121c6612c0d565b604051601f8501601f19908116603f011681019082821181831017156121ee576121ee612c0d565b8160405280935085815286868601111561220757600080fd5b858560208301376000602087830101525050509392505050565b60008083601f84011261223357600080fd5b5081356001600160401b0381111561224a57600080fd5b60208301915083602082850101111561226257600080fd5b9250929050565b600082601f83011261227a57600080fd5b6112c4838335602085016121ac565b803561ffff8116811461229b57600080fd5b919050565b80356001600160401b038116811461229b57600080fd5b6000602082840312156122c957600080fd5b81356112c481612c23565b600080604083850312156122e757600080fd5b82516122f281612c23565b6020939093015192949293505050565b6000806040838503121561231557600080fd5b823561232081612c23565b9150602083013561233081612c23565b809150509250929050565b60008060006060848603121561235057600080fd5b833561235b81612c23565b9250602084013561236b81612c23565b929592945050506040919091013590565b6000806000806080858703121561239257600080fd5b843561239d81612c23565b935060208501356123ad81612c23565b92506040850135915060608501356001600160401b038111156123cf57600080fd5b6123db87828801612269565b91505092959194509250565b600080604083850312156123fa57600080fd5b823561240581612c23565b91506020830135801515811461233057600080fd5b6000806040838503121561242d57600080fd5b823561243881612c23565b946020939093013593505050565b60006020828403121561245857600080fd5b81356112c481612c38565b60006020828403121561247557600080fd5b81516112c481612c38565b60006020828403121561249257600080fd5b81356001600160401b038111156124a857600080fd5b8201601f810184136124b957600080fd5b6119c7848235602084016121ac565b6000602082840312156124da57600080fd5b6112c482612289565b6000806000604084860312156124f857600080fd5b61250184612289565b925060208401356001600160401b0381111561251c57600080fd5b61252886828701612221565b9497909650939450505050565b60008060006060848603121561254a57600080fd5b61255384612289565b925060208401356001600160401b0381111561256e57600080fd5b61257a86828701612269565b925050604084013590509250925092565b6000806000806000608086880312156125a357600080fd5b6125ac86612289565b945060208601356001600160401b03808211156125c857600080fd5b6125d489838a01612269565b95506125e2604089016122a0565b945060608801359150808211156125f857600080fd5b5061260588828901612221565b969995985093965092949392505050565b6000806000806080858703121561262c57600080fd5b61263585612289565b935060208501356001600160401b038082111561265157600080fd5b61265d88838901612269565b945061266b604088016122a0565b9350606087013591508082111561268157600080fd5b506123db87828801612269565b600080604083850312156126a157600080fd5b61243883612289565b6000602082840312156126bc57600080fd5b5035919050565b600080604083850312156126d657600080fd5b505080516020909101519092909150565b600081518084526126ff816020860160208601612b35565b601f01601f19169290920160200192915050565b6000815461272081612b61565b60018281168015612738576001811461274957612778565b60ff19841687528287019450612778565b8560005260208060002060005b8581101561276f5781548a820152908401908201612756565b50505082870194505b5050505092915050565b8183823760009101908152919050565b600082516127a4818460208701612b35565b9190910192915050565b60006112c48284612713565b600084516127cc818460208901612b35565b8451908301906127e0818360208901612b35565b6127ec81830186612713565b979650505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061282a908301846126e7565b9695505050505050565b6020815260006112c460208301846126e7565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b61ffff861681526001600160a01b038516602082015260a06040820181905260009061294d908301866126e7565b8415156060840152828103608084015261296781856126e7565b98975050505050505050565b61ffff8616815260806020820152600061299060808301876126e7565b6001600160401b03861660408401528281036060840152838152838560208301376000602085830101526020601f19601f8601168201019150509695505050505050565b61ffff851681526080602082015260006129f160808301866126e7565b6001600160401b038516604084015282810360608401526127ec81856126e7565b61ffff871681526000602060c08184015260008854612a3081612b61565b8060c087015260e0600180841660008114612a525760018114612a6757612a95565b60ff1985168984015261010089019550612a95565b8d6000528660002060005b85811015612a8d5781548b8201860152908301908801612a72565b8a0184019650505b50505050508381036040850152612aac81896126e7565b915050612ac460608401876001600160a01b03169052565b6001600160a01b038516608084015282810360a0840152612ae581856126e7565b9998505050505050505050565b60008219821115612b0557612b05612bcb565b500190565b600082612b1957612b19612be1565b500490565b600082821015612b3057612b30612bcb565b500390565b60005b83811015612b50578181015183820152602001612b38565b8381111561087c5750506000910152565b600181811c90821680612b7557607f821691505b60208210811415612b9657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612bb057612bb0612bcb565b5060010190565b600082612bc657612bc6612be1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610c3b57600080fd5b6001600160e01b031981168114610c3b57600080fdfea2646970667358221220357ffcc55b35909136d215550cc0847b7e160d478ed6ad6b206a07cdcd552c5464736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d505373717247566f4e553762706477335a446748765841524246374c396b34345a31755875736343343733722f00000000000000000000
-----Decoded View---------------
Arg [0] : baseURI_ (string): ipfs://QmPSsqrGVoNU7bpdw3ZDgHvXARBF7L9k44Z1uXuscC473r/
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d505373717247566f4e553762706477335a446748765841
Arg [3] : 524246374c396b34345a31755875736343343733722f00000000000000000000
Deployed Bytecode Sourcemap
50202:5840:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46862:1098;;;;;;;;;;-1:-1:-1;46862:1098:0;;;;;:::i;:::-;;:::i;:::-;;32927:355;;;;;;;;;;-1:-1:-1;32927:355:0;;;;;:::i;:::-;;:::i;:::-;;;12687:14:1;;12680:22;12662:41;;12650:2;12635:18;32927:355:0;;;;;;;;34096:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35789:308::-;;;;;;;;;;-1:-1:-1;35789:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;11706:32:1;;;11688:51;;11676:2;11661:18;35789:308:0;11542:203:1;35312:411:0;;;;;;;;;;-1:-1:-1;35312:411:0;;;;;:::i;:::-;;:::i;47968:435::-;;;;;;;;;;-1:-1:-1;47968:435:0;;;;;:::i;:::-;;:::i;36708:376::-;;;;;;;;;;-1:-1:-1;36708:376:0;;;;;:::i;:::-;;:::i;54377:152::-;;;;;;;;;;;;;:::i;37155:185::-;;;;;;;;;;-1:-1:-1;37155:185:0;;;;;:::i;:::-;;:::i;53732:90::-;;;;;;;;;;-1:-1:-1;53732:90:0;;;;;:::i;:::-;;:::i;33703:326::-;;;;;;;;;;-1:-1:-1;33703:326:0;;;;;:::i;:::-;;:::i;50566:45::-;;;;;;;;;;-1:-1:-1;50566:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;27397:25:1;;;27385:2;27370:18;50566:45:0;27251:177:1;33346:295:0;;;;;;;;;;-1:-1:-1;33346:295:0;;;;;:::i;:::-;;:::i;13239:103::-;;;;;;;;;;;;;:::i;53956:130::-;;;;;;;;;;-1:-1:-1;53956:130:0;;;;;:::i;:::-;;:::i;46661:51::-;;;;;;;;;;-1:-1:-1;46661:51:0;;;;;:::i;:::-;;:::i;53830:114::-;;;;;;;;;;-1:-1:-1;53830:114:0;;;;;:::i;:::-;;:::i;12588:87::-;;;;;;;;;;-1:-1:-1;12634:7:0;12661:6;-1:-1:-1;;;;;12661:6:0;12588:87;;46552:102;;;;;;;;;;-1:-1:-1;46552:102:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27607:25:1;;;27663:2;27648:18;;27641:34;;;;27580:18;46552:102:0;27433:248:1;54613:128:0;;;;;;;;;;-1:-1:-1;54613:128:0;;;;;:::i;:::-;;:::i;54098:143::-;;;;;;;;;;-1:-1:-1;54098:143:0;;;;;:::i;:::-;;:::i;34265:104::-;;;;;;;;;;;;;:::i;51068:795::-;;;;;;:::i;:::-;;:::i;36169:187::-;;;;;;;;;;-1:-1:-1;36169:187:0;;;;;:::i;:::-;;:::i;50356:21::-;;;;;;;;;;-1:-1:-1;50356:21:0;;;;-1:-1:-1;;;;;50356:21:0;;;37411:365;;;;;;;;;;-1:-1:-1;37411:365:0;;;;;:::i;:::-;;:::i;50306:37::-;;;;;;;;;;;;;:::i;55264:642::-;;;;;;;;;;-1:-1:-1;55264:642:0;;;;;:::i;:::-;;:::i;52002:1722::-;;;;;;:::i;:::-;;:::i;49063:916::-;;;;;;:::i;:::-;;:::i;36427:214::-;;;;;;;;;;-1:-1:-1;36427:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;36598:25:0;;;36569:4;36598:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;36427:214;49987:181;;;;;;;;;;-1:-1:-1;49987:181:0;;;;;:::i;:::-;;:::i;13497:238::-;;;;;;;;;;-1:-1:-1;13497:238:0;;;;;:::i;:::-;;:::i;46862:1098::-;47067:8;;-1:-1:-1;;;;;47067:8:0;47045:10;:31;47037:40;;;;;;47202:32;;;;;;;:19;:32;;;;;:39;;;;;:::i;:::-;;;47180:11;:18;:61;:168;;;;-1:-1:-1;47315:32:0;;;;;;;:19;:32;;;;;;;47305:43;;;;47315:32;47305:43;:::i;:::-;;;;;;;;47272:11;47262:22;;;;;;:86;47180:168;47158:270;;;;-1:-1:-1;;;47158:270:0;;20718:2:1;47158:270:0;;;20700:21:1;20757:2;20737:18;;;20730:30;20796:34;20776:18;;;20769:62;-1:-1:-1;;;20847:18:1;;;20840:50;20907:19;;47158:270:0;;;;;;;;;47556:60;;-1:-1:-1;;;47556:60:0;;:4;;:16;;:60;;47573:11;;47586;;47599:6;;47607:8;;47556:60;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47552:401;;47763:101;;;;;;;;47796:8;:15;47763:101;;;;47840:8;47830:19;;;;;;47763:101;;;47712:14;:27;47727:11;47712:27;;;;;;;;;;;;;;;47740:11;47712:40;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;47712:48:0;;;;;;;;;;;;;:152;;;;;;;;;;;;;;;47884:57;;;;47898:11;;47911;;47753:6;;47932:8;;47884:57;:::i;:::-;;;;;;;;47552:401;46862:1098;;;;:::o;32927:355::-;33074:4;-1:-1:-1;;;;;;33116:40:0;;-1:-1:-1;;;33116:40:0;;:105;;-1:-1:-1;;;;;;;33173:48:0;;-1:-1:-1;;;33173:48:0;33116:105;:158;;;-1:-1:-1;;;;;;;;;;25673:40:0;;;33238:36;33096:178;32927:355;-1:-1:-1;;32927:355:0:o;34096:100::-;34150:13;34183:5;34176:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34096:100;:::o;35789:308::-;35910:7;39412:16;;;:7;:16;;;;;;-1:-1:-1;;;;;39412:16:0;35935:110;;;;-1:-1:-1;;;35935:110:0;;19944:2:1;35935:110:0;;;19926:21:1;19983:2;19963:18;;;19956:30;20022:34;20002:18;;;19995:62;-1:-1:-1;;;20073:18:1;;;20066:42;20125:19;;35935:110:0;19742:408:1;35935:110:0;-1:-1:-1;36065:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;36065:24:0;;35789:308::o;35312:411::-;35393:13;35409:23;35424:7;35409:14;:23::i;:::-;35393:39;;35457:5;-1:-1:-1;;;;;35451:11:0;:2;-1:-1:-1;;;;;35451:11:0;;;35443:57;;;;-1:-1:-1;;;35443:57:0;;21965:2:1;35443:57:0;;;21947:21:1;22004:2;21984:18;;;21977:30;22043:34;22023:18;;;22016:62;-1:-1:-1;;;22094:18:1;;;22087:31;22135:19;;35443:57:0;21763:397:1;35443:57:0;11371:10;-1:-1:-1;;;;;35535:21:0;;;;:62;;-1:-1:-1;35560:37:0;35577:5;11371:10;36427:214;:::i;35560:37::-;35513:168;;;;-1:-1:-1;;;35513:168:0;;17498:2:1;35513:168:0;;;17480:21:1;17537:2;17517:18;;;17510:30;17576:34;17556:18;;;17549:62;17647:26;17627:18;;;17620:54;17691:19;;35513:168:0;17296:420:1;35513:168:0;35694:21;35703:2;35707:7;35694:8;:21::i;:::-;35382:341;35312:411;;:::o;47968:435::-;48194:10;48216:4;48194:27;48172:120;;;;-1:-1:-1;;;48172:120:0;;19171:2:1;48172:120:0;;;19153:21:1;19210:2;19190:18;;;19183:30;19249:34;19229:18;;;19222:62;-1:-1:-1;;;19300:18:1;;;19293:41;19351:19;;48172:120:0;18969:407:1;48172:120:0;48341:54;48352:11;48365;48378:6;48386:8;48341:10;:54::i;36708:376::-;36917:41;11371:10;36950:7;36917:18;:41::i;:::-;36895:140;;;;-1:-1:-1;;;36895:140:0;;;;;;;:::i;:::-;37048:28;37058:4;37064:2;37068:7;37048:9;:28::i;54377:152::-;12634:7;12661:6;-1:-1:-1;;;;;12661:6:0;11371:10;12808:23;12800:68;;;;-1:-1:-1;;;12800:68:0;;;;;;;:::i;:::-;54451:6:::1;::::0;54443:54:::1;::::0;54428:9:::1;::::0;-1:-1:-1;;;;;54451:6:0::1;::::0;54471:21:::1;::::0;54428:9;54443:54;54428:9;54443:54;54471:21;54451:6;54443:54:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54427:70;;;54516:4;54508:13;;;::::0;::::1;;54416:113;54377:152::o:0;37155:185::-;37293:39;37310:4;37316:2;37320:7;37293:39;;;;;;;;;;;;:16;:39::i;53732:90::-;12634:7;12661:6;-1:-1:-1;;;;;12661:6:0;11371:10;12808:23;12800:68;;;;-1:-1:-1;;;12800:68:0;;;;;;;:::i;:::-;53801:13;;::::1;::::0;:7:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;:::-;;53732:90:::0;:::o;33703:326::-;33820:7;33861:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33861:16:0;33910:19;33888:110;;;;-1:-1:-1;;;33888:110:0;;18334:2:1;33888:110:0;;;18316:21:1;18373:2;18353:18;;;18346:30;18412:34;18392:18;;;18385:62;-1:-1:-1;;;18463:18:1;;;18456:39;18512:19;;33888:110:0;18132:405:1;33346:295:0;33463:7;-1:-1:-1;;;;;33510:19:0;;33488:111;;;;-1:-1:-1;;;33488:111:0;;17923:2:1;33488:111:0;;;17905:21:1;17962:2;17942:18;;;17935:30;18001:34;17981:18;;;17974:62;-1:-1:-1;;;18052:18:1;;;18045:40;18102:19;;33488:111:0;17721:406:1;33488:111:0;-1:-1:-1;;;;;;33617:16:0;;;;;:9;:16;;;;;;;33346:295::o;13239:103::-;12634:7;12661:6;-1:-1:-1;;;;;12661:6:0;11371:10;12808:23;12800:68;;;;-1:-1:-1;;;12800:68:0;;;;;;;:::i;:::-;13304:30:::1;13331:1;13304:18;:30::i;:::-;13239:103::o:0;53956:130::-;12634:7;12661:6;-1:-1:-1;;;;;12661:6:0;11371:10;12808:23;12800:68;;;;-1:-1:-1;;;12800:68:0;;;;;;;:::i;:::-;54041:15:::1;:37:::0;53956:130::o;46661:51::-;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53830:114::-;12634:7;12661:6;-1:-1:-1;;;;;12661:6:0;11371:10;12808:23;12800:68;;;;-1:-1:-1;;;12800:68:0;;;;;;;:::i;:::-;53907:11:::1;:29:::0;53830:114::o;54613:128::-;12634:7;12661:6;-1:-1:-1;;;;;12661:6:0;11371:10;12808:23;12800:68;;;;-1:-1:-1;;;12800:68:0;;;;;;;:::i;:::-;54698:26:::1;:35:::0;54613:128::o;54098:143::-;12634:7;12661:6;-1:-1:-1;;;;;12661:6:0;11371:10;12808:23;12800:68;;;;-1:-1:-1;;;12800:68:0;;;;;;;:::i;:::-;54184:8:::1;:49:::0;;-1:-1:-1;;;;;;54184:49:0::1;-1:-1:-1::0;;;;;54184:49:0;;;::::1;::::0;;;::::1;::::0;;54098:143::o;34265:104::-;34321:13;34354:7;34347:14;;;;;:::i;51068:795::-;51168:13;;51153:11;:28;;51131:134;;;;-1:-1:-1;;;51131:134:0;;22367:2:1;51131:134:0;;;22349:21:1;22406:2;22386:18;;;22379:30;22445:34;22425:18;;;22418:62;22516:26;22496:18;;;22489:54;22560:19;;51131:134:0;22165:420:1;51131:134:0;51298:1;51284:11;:15;51276:65;;;;-1:-1:-1;;;51276:65:0;;23210:2:1;51276:65:0;;;23192:21:1;23249:2;23229:18;;;23222:30;23288:34;23268:18;;;23261:62;-1:-1:-1;;;23339:18:1;;;23332:35;23384:19;;51276:65:0;23008:401:1;51276:65:0;51407:15;;51402:1;51388:11;51374;;:25;;;;:::i;:::-;:29;;;;:::i;:::-;:48;;51352:143;;;;-1:-1:-1;;;51352:143:0;;14188:2:1;51352:143:0;;;14170:21:1;14227:2;14207:18;;;14200:30;14266:34;14246:18;;;14239:62;-1:-1:-1;;;14317:18:1;;;14310:43;14370:19;;51352:143:0;13986:409:1;51352:143:0;51568:13;;51539:10;51528:22;;;;:10;:22;;;;;;:36;;51553:11;;51528:36;:::i;:::-;:53;;51506:161;;;;-1:-1:-1;;;51506:161:0;;18744:2:1;51506:161:0;;;18726:21:1;18783:2;18763:18;;;18756:30;18822:34;18802:18;;;18795:62;18893:28;18873:18;;;18866:56;18939:19;;51506:161:0;18542:422:1;51506:161:0;51695:1;51678:106;51703:11;51698:1;:16;51678:106;;51758:11;:13;;51736:36;;51746:10;;51758:13;:11;:13;;;:::i;:::-;;;;;51736:9;:36::i;:::-;51716:3;;;;:::i;:::-;;;;51678:106;;;-1:-1:-1;51830:10:0;51819:22;;;;:10;:22;;;;;;:36;;51844:11;;51819:36;:::i;:::-;51805:10;51794:22;;;;:10;:22;;;;;:61;-1:-1:-1;51068:795:0:o;36169:187::-;36296:52;11371:10;36329:8;36339;36296:18;:52::i;37411:365::-;37600:41;11371:10;37633:7;37600:18;:41::i;:::-;37578:140;;;;-1:-1:-1;;;37578:140:0;;;;;;;:::i;:::-;37729:39;37743:4;37749:2;37753:7;37762:5;37729:13;:39::i;50306:37::-;;;;;;;:::i;55264:642::-;39388:4;39412:16;;;:7;:16;;;;;;55382:13;;-1:-1:-1;;;;;39412:16:0;55413:113;;;;-1:-1:-1;;;55413:113:0;;21549:2:1;55413:113:0;;;21531:21:1;21588:2;21568:18;;;21561:30;21627:34;21607:18;;;21600:62;-1:-1:-1;;;21678:18:1;;;21671:45;21733:19;;55413:113:0;21347:411:1;55413:113:0;55539:28;55570:10;:8;:10::i;:::-;55539:41;;55642:1;55617:14;55611:28;:32;:287;;;;;;;;;;;;;;;;;55735:14;55776:18;:7;:16;:18::i;:::-;55821:13;55692:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55611:287;55591:307;55264:642;-1:-1:-1;;;55264:642:0:o;52002:1722::-;52122:16;52130:7;52122;:16::i;:::-;-1:-1:-1;;;;;52108:30:0;:10;-1:-1:-1;;;;;52108:30:0;;52086:114;;;;-1:-1:-1;;;52086:114:0;;16131:2:1;52086:114:0;;;16113:21:1;16170:2;16150:18;;;16143:30;16209:34;16189:18;;;16182:62;-1:-1:-1;;;16260:18:1;;;16253:32;16302:19;;52086:114:0;15929:398:1;52086:114:0;52233:29;;;52272:1;52233:29;;;:19;:29;;;;;:36;;;;;:::i;:::-;;;:40;52211:136;;;;-1:-1:-1;;;52211:136:0;;15361:2:1;52211:136:0;;;15343:21:1;15400:2;15380:18;;;15373:30;15439:34;15419:18;;;15412:62;-1:-1:-1;;;15490:18:1;;;15483:44;15544:19;;52211:136:0;15159:410:1;52211:136:0;52427:14;52433:7;52427:5;:14::i;:::-;52538:31;;;52549:10;52538:31;;;12417:51:1;12484:18;;;12477:34;;;52538:31:0;;;;;;;;;12390:18:1;;;52538:31:0;;52766:26;;-1:-1:-1;;;52713:90:0;;;11416:51:1;11483:11;;;;11476:27;;;;52713:90:0;;;;;;;;;;11519:12:1;;;52713:90:0;;;;52982:8;;-1:-1:-1;;;52982:153:0;;;52538:31;;52672:1;;-1:-1:-1;;;;;;;52982:8:0;;:21;;:153;;53018:8;;53049:4;;52538:31;;-1:-1:-1;;52713:90:0;;52982:153;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52957:178;;;53183:10;53170:9;:23;;53148:174;;;;-1:-1:-1;;;53148:174:0;;16947:2:1;53148:174:0;;;16929:21:1;16986:3;16966:18;;;16959:31;17026:34;17006:18;;;16999:62;17097:34;17077:18;;;17070:62;17169:34;17148:19;;;17141:63;-1:-1:-1;;;17220:19:1;;;17213:36;17266:19;;53148:174:0;16745:546:1;53148:174:0;53335:8;;53427:29;;;53335:8;53427:29;;;:19;:29;;;;;;53335:381;;-1:-1:-1;;;53335:381:0;;-1:-1:-1;;;;;53335:8:0;;;;:13;;53356:9;;53335:381;;53381:8;;53510:7;;53566:10;;53335:8;53676:13;;53335:381;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52075:1649;;;;52002:1722;;:::o;49063:916::-;49322:27;;;49287:32;49322:27;;;:14;:27;;;;;;:64;;;;49364:11;;49322:64;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49322:72:0;;;;;;;;;;49427:21;;;;49322:72;;-1:-1:-1;49405:123:0;;;;-1:-1:-1;;;49405:123:0;;23616:2:1;49405:123:0;;;23598:21:1;23655:2;23635:18;;;23628:30;23694:34;23674:18;;;23667:62;-1:-1:-1;;;23745:18:1;;;23738:36;23791:19;;49405:123:0;23414:402:1;49405:123:0;49580:23;;49561:42;;:107;;;;;49647:9;:21;;;49634:8;;49624:19;;;;;;;:::i;:::-;;;;;;;;:44;49561:107;49539:183;;;;-1:-1:-1;;;49539:183:0;;15776:2:1;49539:183:0;;;15758:21:1;15815:2;15795:18;;;15788:30;15854:28;15834:18;;;15827:56;15900:18;;49539:183:0;15574:350:1;49539:183:0;49796:1;49770:27;;;49808:21;;;:34;49911:60;;-1:-1:-1;;;49911:60:0;;:4;;:16;;:60;;49928:11;;49941;;49954:6;;49962:8;;;;49911:60;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49231:748;49063:916;;;;;:::o;49987:181::-;12634:7;12661:6;-1:-1:-1;;;;;12661:6:0;11371:10;12808:23;12800:68;;;;-1:-1:-1;;;12800:68:0;;;;;;;:::i;:::-;50114:29:::1;::::0;::::1;;::::0;;;:19:::1;:29;::::0;;;;:46:::1;::::0;50146:14;;50114:46:::1;:::i;13497:238::-:0;12634:7;12661:6;-1:-1:-1;;;;;12661:6:0;11371:10;12808:23;12800:68;;;;-1:-1:-1;;;12800:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13600:22:0;::::1;13578:110;;;::::0;-1:-1:-1;;;13578:110:0;;13781:2:1;13578:110:0::1;::::0;::::1;13763:21:1::0;13820:2;13800:18;;;13793:30;13859:34;13839:18;;;13832:62;-1:-1:-1;;;13910:18:1;;;13903:36;13956:19;;13578:110:0::1;13579:402:1::0;13578:110:0::1;13699:28;13718:8;13699:18;:28::i;43377:174::-:0;43452:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;43452:29:0;-1:-1:-1;;;;;43452:29:0;;;;;;;;:24;;43506:23;43452:24;43506:14;:23::i;:::-;-1:-1:-1;;;;;43497:46:0;;;;;;;;;;;43377:174;;:::o;54832:424::-;55028:14;55044:15;55088:8;55063:77;;;;;;;;;;;;:::i;:::-;55027:113;;;;55222:26;55232:6;55240:7;55222:9;:26::i;:::-;54997:259;;54832:424;;;;:::o;39617:452::-;39746:4;39412:16;;;:7;:16;;;;;;-1:-1:-1;;;;;39412:16:0;39768:110;;;;-1:-1:-1;;;39768:110:0;;16534:2:1;39768:110:0;;;16516:21:1;16573:2;16553:18;;;16546:30;16612:34;16592:18;;;16585:62;-1:-1:-1;;;16663:18:1;;;16656:42;16715:19;;39768:110:0;16332:408:1;39768:110:0;39889:13;39905:23;39920:7;39905:14;:23::i;:::-;39889:39;;39958:5;-1:-1:-1;;;;;39947:16:0;:7;-1:-1:-1;;;;;39947:16:0;;:64;;;;40004:7;-1:-1:-1;;;;;39980:31:0;:20;39992:7;39980:11;:20::i;:::-;-1:-1:-1;;;;;39980:31:0;;39947:64;:113;;;-1:-1:-1;;;;;;36598:25:0;;;36569:4;36598:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;40028:32;39939:122;39617:452;-1:-1:-1;;;;39617:452:0:o;42644:615::-;42817:4;-1:-1:-1;;;;;42790:31:0;:23;42805:7;42790:14;:23::i;:::-;-1:-1:-1;;;;;42790:31:0;;42768:122;;;;-1:-1:-1;;;42768:122:0;;21139:2:1;42768:122:0;;;21121:21:1;21178:2;21158:18;;;21151:30;21217:34;21197:18;;;21190:62;-1:-1:-1;;;21268:18:1;;;21261:39;21317:19;;42768:122:0;20937:405:1;42768:122:0;-1:-1:-1;;;;;42909:16:0;;42901:65;;;;-1:-1:-1;;;42901:65:0;;14602:2:1;42901:65:0;;;14584:21:1;14641:2;14621:18;;;14614:30;14680:34;14660:18;;;14653:62;-1:-1:-1;;;14731:18:1;;;14724:34;14775:19;;42901:65:0;14400:400:1;42901:65:0;43083:29;43100:1;43104:7;43083:8;:29::i;:::-;-1:-1:-1;;;;;43125:15:0;;;;;;:9;:15;;;;;:20;;43144:1;;43125:15;:20;;43144:1;;43125:20;:::i;:::-;;;;-1:-1:-1;;;;;;;43156:13:0;;;;;;:9;:13;;;;;:18;;43173:1;;43156:13;:18;;43173:1;;43156:18;:::i;:::-;;;;-1:-1:-1;;43185:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;43185:21:0;-1:-1:-1;;;;;43185:21:0;;;;;;;;;43224:27;;43185:16;;43224:27;;;;;;;42644:615;;;:::o;13895:191::-;13969:16;13988:6;;-1:-1:-1;;;;;14005:17:0;;;-1:-1:-1;;;;;;14005:17:0;;;;;;14038:40;;13988:6;;;;;;;14038:40;;13969:16;14038:40;13958:128;13895:191;:::o;40411:110::-;40487:26;40497:2;40501:7;40487:26;;;;;;;;;;;;:9;:26::i;43693:315::-;43848:8;-1:-1:-1;;;;;43839:17:0;:5;-1:-1:-1;;;;;43839:17:0;;;43831:55;;;;-1:-1:-1;;;43831:55:0;;15007:2:1;43831:55:0;;;14989:21:1;15046:2;15026:18;;;15019:30;15085:27;15065:18;;;15058:55;15130:18;;43831:55:0;14805:349:1;43831:55:0;-1:-1:-1;;;;;43897:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;43897:46:0;;;;;;;;;;43959:41;;12662::1;;;43959::0;;12635:18:1;43959:41:0;;;;;;;43693:315;;;:::o;38658:352::-;38815:28;38825:4;38831:2;38835:7;38815:9;:28::i;:::-;38876:48;38899:4;38905:2;38909:7;38918:5;38876:22;:48::i;:::-;38854:148;;;;-1:-1:-1;;;38854:148:0;;;;;;;:::i;55931:108::-;55991:13;56024:7;56017:14;;;;;:::i;8823:723::-;8879:13;9100:10;9096:53;;-1:-1:-1;;9127:10:0;;;;;;;;;;;;-1:-1:-1;;;9127:10:0;;;;;8823:723::o;9096:53::-;9174:5;9159:12;9215:78;9222:9;;9215:78;;9248:8;;;;:::i;:::-;;-1:-1:-1;9271:10:0;;-1:-1:-1;9279:2:0;9271:10;;:::i;:::-;;;9215:78;;;9303:19;9335:6;-1:-1:-1;;;;;9325:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9325:17:0;;9303:39;;9353:154;9360:10;;9353:154;;9387:11;9397:1;9387:11;;:::i;:::-;;-1:-1:-1;9456:10:0;9464:2;9456:5;:10;:::i;:::-;9443:24;;:2;:24;:::i;:::-;9430:39;;9413:6;9420;9413:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;9413:56:0;;;;;;;;-1:-1:-1;9484:11:0;9493:2;9484:11;;:::i;:::-;;;9353:154;;41947:360;42007:13;42023:23;42038:7;42023:14;:23::i;:::-;42007:39;;42148:29;42165:1;42169:7;42148:8;:29::i;:::-;-1:-1:-1;;;;;42190:16:0;;;;;;:9;:16;;;;;:21;;42210:1;;42190:16;:21;;42210:1;;42190:21;:::i;:::-;;;;-1:-1:-1;;42229:16:0;;;;:7;:16;;;;;;42222:23;;-1:-1:-1;;;;;;42222:23:0;;;42263:36;42237:7;;42229:16;-1:-1:-1;;;;;42263:36:0;;;;;42229:16;;42263:36;41996:311;41947:360;:::o;40748:321::-;40878:18;40884:2;40888:7;40878:5;:18::i;:::-;40929:54;40960:1;40964:2;40968:7;40977:5;40929:22;:54::i;:::-;40907:154;;;;-1:-1:-1;;;40907:154:0;;;;;;;:::i;44573:980::-;44728:4;-1:-1:-1;;;;;44749:13:0;;15234:20;15282:8;44745:801;;44802:175;;-1:-1:-1;;;44802:175:0;;-1:-1:-1;;;;;44802:36:0;;;;;:175;;11371:10;;44896:4;;44923:7;;44953:5;;44802:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44802:175:0;;;;;;;;-1:-1:-1;;44802:175:0;;;;;;;;;;;;:::i;:::-;;;44781:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45160:13:0;;45156:320;;45203:108;;-1:-1:-1;;;45203:108:0;;;;;;;:::i;45156:320::-;45426:6;45420:13;45411:6;45407:2;45403:15;45396:38;44781:710;-1:-1:-1;;;;;;45041:51:0;-1:-1:-1;;;45041:51:0;;-1:-1:-1;45034:58:0;;44745:801;-1:-1:-1;45530:4:0;44573:980;;;;;;:::o;41405:313::-;-1:-1:-1;;;;;41485:16:0;;41477:61;;;;-1:-1:-1;;;41477:61:0;;19583:2:1;41477:61:0;;;19565:21:1;;;19602:18;;;19595:30;19661:34;19641:18;;;19634:62;19713:18;;41477:61:0;19381:356:1;41477:61:0;-1:-1:-1;;;;;41609:13:0;;;;;;:9;:13;;;;;:18;;41626:1;;41609:13;:18;;41626:1;;41609:18;:::i;:::-;;;;-1:-1:-1;;41638:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;41638:21:0;-1:-1:-1;;;;;41638:21:0;;;;;;;;41677:33;;41638:16;;;41677:33;;41638:16;;41677:33;41405:313;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;-1:-1:-1;;;;;149:2:1;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:347::-;701:8;711:6;765:3;758:4;750:6;746:17;742:27;732:55;;783:1;780;773:12;732:55;-1:-1:-1;806:20:1;;-1:-1:-1;;;;;838:30:1;;835:50;;;881:1;878;871:12;835:50;918:4;910:6;906:17;894:29;;970:3;963:4;954:6;946;942:19;938:30;935:39;932:59;;;987:1;984;977:12;932:59;650:347;;;;;:::o;1002:220::-;1044:5;1097:3;1090:4;1082:6;1078:17;1074:27;1064:55;;1115:1;1112;1105:12;1064:55;1137:79;1212:3;1203:6;1190:20;1183:4;1175:6;1171:17;1137:79;:::i;1227:159::-;1294:20;;1354:6;1343:18;;1333:29;;1323:57;;1376:1;1373;1366:12;1323:57;1227:159;;;:::o;1391:171::-;1458:20;;-1:-1:-1;;;;;1507:30:1;;1497:41;;1487:69;;1552:1;1549;1542:12;1567:247;1626:6;1679:2;1667:9;1658:7;1654:23;1650:32;1647:52;;;1695:1;1692;1685:12;1647:52;1734:9;1721:23;1753:31;1778:5;1753:31;:::i;1819:320::-;1906:6;1914;1967:2;1955:9;1946:7;1942:23;1938:32;1935:52;;;1983:1;1980;1973:12;1935:52;2015:9;2009:16;2034:31;2059:5;2034:31;:::i;:::-;2129:2;2114:18;;;;2108:25;2084:5;;2108:25;;-1:-1:-1;;;1819:320:1:o;2144:388::-;2212:6;2220;2273:2;2261:9;2252:7;2248:23;2244:32;2241:52;;;2289:1;2286;2279:12;2241:52;2328:9;2315:23;2347:31;2372:5;2347:31;:::i;:::-;2397:5;-1:-1:-1;2454:2:1;2439:18;;2426:32;2467:33;2426:32;2467:33;:::i;:::-;2519:7;2509:17;;;2144:388;;;;;:::o;2537:456::-;2614:6;2622;2630;2683:2;2671:9;2662:7;2658:23;2654:32;2651:52;;;2699:1;2696;2689:12;2651:52;2738:9;2725:23;2757:31;2782:5;2757:31;:::i;:::-;2807:5;-1:-1:-1;2864:2:1;2849:18;;2836:32;2877:33;2836:32;2877:33;:::i;:::-;2537:456;;2929:7;;-1:-1:-1;;;2983:2:1;2968:18;;;;2955:32;;2537:456::o;2998:665::-;3093:6;3101;3109;3117;3170:3;3158:9;3149:7;3145:23;3141:33;3138:53;;;3187:1;3184;3177:12;3138:53;3226:9;3213:23;3245:31;3270:5;3245:31;:::i;:::-;3295:5;-1:-1:-1;3352:2:1;3337:18;;3324:32;3365:33;3324:32;3365:33;:::i;:::-;3417:7;-1:-1:-1;3471:2:1;3456:18;;3443:32;;-1:-1:-1;3526:2:1;3511:18;;3498:32;-1:-1:-1;;;;;3542:30:1;;3539:50;;;3585:1;3582;3575:12;3539:50;3608:49;3649:7;3640:6;3629:9;3625:22;3608:49;:::i;:::-;3598:59;;;2998:665;;;;;;;:::o;3668:416::-;3733:6;3741;3794:2;3782:9;3773:7;3769:23;3765:32;3762:52;;;3810:1;3807;3800:12;3762:52;3849:9;3836:23;3868:31;3893:5;3868:31;:::i;:::-;3918:5;-1:-1:-1;3975:2:1;3960:18;;3947:32;4017:15;;4010:23;3998:36;;3988:64;;4048:1;4045;4038:12;4089:315;4157:6;4165;4218:2;4206:9;4197:7;4193:23;4189:32;4186:52;;;4234:1;4231;4224:12;4186:52;4273:9;4260:23;4292:31;4317:5;4292:31;:::i;:::-;4342:5;4394:2;4379:18;;;;4366:32;;-1:-1:-1;;;4089:315:1:o;4409:245::-;4467:6;4520:2;4508:9;4499:7;4495:23;4491:32;4488:52;;;4536:1;4533;4526:12;4488:52;4575:9;4562:23;4594:30;4618:5;4594:30;:::i;4659:249::-;4728:6;4781:2;4769:9;4760:7;4756:23;4752:32;4749:52;;;4797:1;4794;4787:12;4749:52;4829:9;4823:16;4848:30;4872:5;4848:30;:::i;4913:450::-;4982:6;5035:2;5023:9;5014:7;5010:23;5006:32;5003:52;;;5051:1;5048;5041:12;5003:52;5091:9;5078:23;-1:-1:-1;;;;;5116:6:1;5113:30;5110:50;;;5156:1;5153;5146:12;5110:50;5179:22;;5232:4;5224:13;;5220:27;-1:-1:-1;5210:55:1;;5261:1;5258;5251:12;5210:55;5284:73;5349:7;5344:2;5331:16;5326:2;5322;5318:11;5284:73;:::i;5368:184::-;5426:6;5479:2;5467:9;5458:7;5454:23;5450:32;5447:52;;;5495:1;5492;5485:12;5447:52;5518:28;5536:9;5518:28;:::i;5557:481::-;5635:6;5643;5651;5704:2;5692:9;5683:7;5679:23;5675:32;5672:52;;;5720:1;5717;5710:12;5672:52;5743:28;5761:9;5743:28;:::i;:::-;5733:38;;5822:2;5811:9;5807:18;5794:32;-1:-1:-1;;;;;5841:6:1;5838:30;5835:50;;;5881:1;5878;5871:12;5835:50;5920:58;5970:7;5961:6;5950:9;5946:22;5920:58;:::i;:::-;5557:481;;5997:8;;-1:-1:-1;5894:84:1;;-1:-1:-1;;;;5557:481:1:o;6043:460::-;6128:6;6136;6144;6197:2;6185:9;6176:7;6172:23;6168:32;6165:52;;;6213:1;6210;6203:12;6165:52;6236:28;6254:9;6236:28;:::i;:::-;6226:38;;6315:2;6304:9;6300:18;6287:32;-1:-1:-1;;;;;6334:6:1;6331:30;6328:50;;;6374:1;6371;6364:12;6328:50;6397:49;6438:7;6429:6;6418:9;6414:22;6397:49;:::i;:::-;6387:59;;;6493:2;6482:9;6478:18;6465:32;6455:42;;6043:460;;;;;:::o;6508:773::-;6612:6;6620;6628;6636;6644;6697:3;6685:9;6676:7;6672:23;6668:33;6665:53;;;6714:1;6711;6704:12;6665:53;6737:28;6755:9;6737:28;:::i;:::-;6727:38;;6816:2;6805:9;6801:18;6788:32;-1:-1:-1;;;;;6880:2:1;6872:6;6869:14;6866:34;;;6896:1;6893;6886:12;6866:34;6919:49;6960:7;6951:6;6940:9;6936:22;6919:49;:::i;:::-;6909:59;;6987:37;7020:2;7009:9;7005:18;6987:37;:::i;:::-;6977:47;;7077:2;7066:9;7062:18;7049:32;7033:48;;7106:2;7096:8;7093:16;7090:36;;;7122:1;7119;7112:12;7090:36;;7161:60;7213:7;7202:8;7191:9;7187:24;7161:60;:::i;:::-;6508:773;;;;-1:-1:-1;6508:773:1;;-1:-1:-1;7240:8:1;;7135:86;6508:773;-1:-1:-1;;;6508:773:1:o;7286:684::-;7388:6;7396;7404;7412;7465:3;7453:9;7444:7;7440:23;7436:33;7433:53;;;7482:1;7479;7472:12;7433:53;7505:28;7523:9;7505:28;:::i;:::-;7495:38;;7584:2;7573:9;7569:18;7556:32;-1:-1:-1;;;;;7648:2:1;7640:6;7637:14;7634:34;;;7664:1;7661;7654:12;7634:34;7687:49;7728:7;7719:6;7708:9;7704:22;7687:49;:::i;:::-;7677:59;;7755:37;7788:2;7777:9;7773:18;7755:37;:::i;:::-;7745:47;;7845:2;7834:9;7830:18;7817:32;7801:48;;7874:2;7864:8;7861:16;7858:36;;;7890:1;7887;7880:12;7858:36;;7913:51;7956:7;7945:8;7934:9;7930:24;7913:51;:::i;7975:252::-;8042:6;8050;8103:2;8091:9;8082:7;8078:23;8074:32;8071:52;;;8119:1;8116;8109:12;8071:52;8142:28;8160:9;8142:28;:::i;8232:180::-;8291:6;8344:2;8332:9;8323:7;8319:23;8315:32;8312:52;;;8360:1;8357;8350:12;8312:52;-1:-1:-1;8383:23:1;;8232:180;-1:-1:-1;8232:180:1:o;8417:245::-;8496:6;8504;8557:2;8545:9;8536:7;8532:23;8528:32;8525:52;;;8573:1;8570;8563:12;8525:52;-1:-1:-1;;8596:16:1;;8652:2;8637:18;;;8631:25;8596:16;;8631:25;;-1:-1:-1;8417:245:1:o;8784:257::-;8825:3;8863:5;8857:12;8890:6;8885:3;8878:19;8906:63;8962:6;8955:4;8950:3;8946:14;8939:4;8932:5;8928:16;8906:63;:::i;:::-;9023:2;9002:15;-1:-1:-1;;8998:29:1;8989:39;;;;9030:4;8985:50;;8784:257;-1:-1:-1;;8784:257:1:o;9046:692::-;9095:3;9136:5;9130:12;9165:36;9191:9;9165:36;:::i;:::-;9220:1;9237:18;;;9264:104;;;;9382:1;9377:355;;;;9230:502;;9264:104;-1:-1:-1;;9297:24:1;;9285:37;;9342:16;;;;-1:-1:-1;9264:104:1;;9377:355;9408:5;9405:1;9398:16;9437:4;9482:2;9479:1;9469:16;9507:1;9521:165;9535:6;9532:1;9529:13;9521:165;;;9613:14;;9600:11;;;9593:35;9656:16;;;;9550:10;;9521:165;;;9525:3;;;9715:6;9710:3;9706:16;9699:23;;9230:502;;;;;9046:692;;;;:::o;9743:271::-;9926:6;9918;9913:3;9900:33;9882:3;9952:16;;9977:13;;;9952:16;9743:271;-1:-1:-1;9743:271:1:o;10019:274::-;10148:3;10186:6;10180:13;10202:53;10248:6;10243:3;10236:4;10228:6;10224:17;10202:53;:::i;:::-;10271:16;;;;;10019:274;-1:-1:-1;;10019:274:1:o;10298:194::-;10424:3;10449:37;10482:3;10474:6;10449:37;:::i;10497:549::-;10721:3;10759:6;10753:13;10775:53;10821:6;10816:3;10809:4;10801:6;10797:17;10775:53;:::i;:::-;10891:13;;10850:16;;;;10913:57;10891:13;10850:16;10947:4;10935:17;;10913:57;:::i;:::-;10986:54;11030:8;11023:5;11019:20;11011:6;10986:54;:::i;:::-;10979:61;10497:549;-1:-1:-1;;;;;;;10497:549:1:o;11750:488::-;-1:-1:-1;;;;;12019:15:1;;;12001:34;;12071:15;;12066:2;12051:18;;12044:43;12118:2;12103:18;;12096:34;;;12166:3;12161:2;12146:18;;12139:31;;;11944:4;;12187:45;;12212:19;;12204:6;12187:45;:::i;:::-;12179:53;11750:488;-1:-1:-1;;;;;;11750:488:1:o;12714:217::-;12861:2;12850:9;12843:21;12824:4;12881:44;12921:2;12910:9;12906:18;12898:6;12881:44;:::i;13160:414::-;13362:2;13344:21;;;13401:2;13381:18;;;13374:30;13440:34;13435:2;13420:18;;13413:62;-1:-1:-1;;;13506:2:1;13491:18;;13484:48;13564:3;13549:19;;13160:414::o;20155:356::-;20357:2;20339:21;;;20376:18;;;20369:30;20435:34;20430:2;20415:18;;20408:62;20502:2;20487:18;;20155:356::o;22590:413::-;22792:2;22774:21;;;22831:2;22811:18;;;22804:30;22870:34;22865:2;22850:18;;22843:62;-1:-1:-1;;;22936:2:1;22921:18;;22914:47;22993:3;22978:19;;22590:413::o;23821:640::-;24102:6;24090:19;;24072:38;;-1:-1:-1;;;;;24146:32:1;;24141:2;24126:18;;24119:60;24166:3;24210:2;24195:18;;24188:31;;;-1:-1:-1;;24242:45:1;;24267:19;;24259:6;24242:45;:::i;:::-;24337:6;24330:14;24323:22;24318:2;24307:9;24303:18;24296:50;24395:9;24387:6;24383:22;24377:3;24366:9;24362:19;24355:51;24423:32;24448:6;24440;24423:32;:::i;:::-;24415:40;23821:640;-1:-1:-1;;;;;;;;23821:640:1:o;24466:717::-;24733:6;24725;24721:19;24710:9;24703:38;24777:3;24772:2;24761:9;24757:18;24750:31;24684:4;24804:45;24844:3;24833:9;24829:19;24821:6;24804:45;:::i;:::-;-1:-1:-1;;;;;24889:6:1;24885:31;24880:2;24869:9;24865:18;24858:59;24965:9;24957:6;24953:22;24948:2;24937:9;24933:18;24926:50;25000:6;24992;24985:22;25054:6;25046;25041:2;25033:6;25029:15;25016:45;25107:1;25102:2;25093:6;25085;25081:19;25077:28;25070:39;25174:2;25167;25163:7;25158:2;25150:6;25146:15;25142:29;25134:6;25130:42;25126:51;25118:59;;;24466:717;;;;;;;;:::o;25188:555::-;25445:6;25437;25433:19;25422:9;25415:38;25489:3;25484:2;25473:9;25469:18;25462:31;25396:4;25516:45;25556:3;25545:9;25541:19;25533:6;25516:45;:::i;:::-;-1:-1:-1;;;;;25601:6:1;25597:31;25592:2;25581:9;25577:18;25570:59;25677:9;25669:6;25665:22;25660:2;25649:9;25645:18;25638:50;25705:32;25730:6;25722;25705:32;:::i;25748:1498::-;26094:6;26086;26082:19;26071:9;26064:38;26045:4;26121:2;26159:3;26154:2;26143:9;26139:18;26132:31;26183:1;26216:6;26210:13;26246:36;26272:9;26246:36;:::i;:::-;26319:6;26313:3;26302:9;26298:19;26291:35;26345:3;26367:1;26399:2;26388:9;26384:18;26416:1;26411:122;;;;26547:1;26542:354;;;;26377:519;;26411:122;-1:-1:-1;;26459:24:1;;26439:18;;;26432:52;26519:3;26504:19;;;-1:-1:-1;26411:122:1;;26542:354;26573:6;26570:1;26563:17;26621:2;26618:1;26608:16;26646:1;26660:180;26674:6;26671:1;26668:13;26660:180;;;26767:14;;26743:17;;;26739:26;;26732:50;26810:16;;;;26689:10;;26660:180;;;26864:17;;26860:26;;;-1:-1:-1;;26377:519:1;;;;;;26941:9;26936:3;26932:19;26927:2;26916:9;26912:18;26905:47;26975:29;27000:3;26992:6;26975:29;:::i;:::-;26961:43;;;27013:54;27063:2;27052:9;27048:18;27040:6;-1:-1:-1;;;;;8741:31:1;8729:44;;8667:112;27013:54;-1:-1:-1;;;;;8741:31:1;;27126:3;27111:19;;8729:44;27180:9;27172:6;27168:22;27162:3;27151:9;27147:19;27140:51;27208:32;27233:6;27225;27208:32;:::i;:::-;27200:40;25748:1498;-1:-1:-1;;;;;;;;;25748:1498:1:o;27686:128::-;27726:3;27757:1;27753:6;27750:1;27747:13;27744:39;;;27763:18;;:::i;:::-;-1:-1:-1;27799:9:1;;27686:128::o;27819:120::-;27859:1;27885;27875:35;;27890:18;;:::i;:::-;-1:-1:-1;27924:9:1;;27819:120::o;27944:125::-;27984:4;28012:1;28009;28006:8;28003:34;;;28017:18;;:::i;:::-;-1:-1:-1;28054:9:1;;27944:125::o;28074:258::-;28146:1;28156:113;28170:6;28167:1;28164:13;28156:113;;;28246:11;;;28240:18;28227:11;;;28220:39;28192:2;28185:10;28156:113;;;28287:6;28284:1;28281:13;28278:48;;;-1:-1:-1;;28322:1:1;28304:16;;28297:27;28074:258::o;28337:380::-;28416:1;28412:12;;;;28459;;;28480:61;;28534:4;28526:6;28522:17;28512:27;;28480:61;28587:2;28579:6;28576:14;28556:18;28553:38;28550:161;;;28633:10;28628:3;28624:20;28621:1;28614:31;28668:4;28665:1;28658:15;28696:4;28693:1;28686:15;28550:161;;28337:380;;;:::o;28722:135::-;28761:3;-1:-1:-1;;28782:17:1;;28779:43;;;28802:18;;:::i;:::-;-1:-1:-1;28849:1:1;28838:13;;28722:135::o;28862:112::-;28894:1;28920;28910:35;;28925:18;;:::i;:::-;-1:-1:-1;28959:9:1;;28862:112::o;28979:127::-;29040:10;29035:3;29031:20;29028:1;29021:31;29071:4;29068:1;29061:15;29095:4;29092:1;29085:15;29111:127;29172:10;29167:3;29163:20;29160:1;29153:31;29203:4;29200:1;29193:15;29227:4;29224:1;29217:15;29243:127;29304:10;29299:3;29295:20;29292:1;29285:31;29335:4;29332:1;29325:15;29359:4;29356:1;29349:15;29375:127;29436:10;29431:3;29427:20;29424:1;29417:31;29467:4;29464:1;29457:15;29491:4;29488:1;29481:15;29507:131;-1:-1:-1;;;;;29582:31:1;;29572:42;;29562:70;;29628:1;29625;29618:12;29643:131;-1:-1:-1;;;;;;29717:32:1;;29707:43;;29697:71;;29764:1;29761;29754:12
Swarm Source
ipfs://357ffcc55b35909136d215550cc0847b7e160d478ed6ad6b206a07cdcd552c54
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.