Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
835 MO
Holders
91
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
10 MOLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MOPixelPets
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-15 */ /** *Submitted for verification at Etherscan.io on 2022-05-02 */ // SPDX-License-Identifier: MIT // 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 (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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 * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://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 (last updated v4.6.0) (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 `IERC721Receiver.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 (last updated v4.6.0) (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`. * * 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; /** * @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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); } // 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: erc721a/contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 1; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @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 override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @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) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); 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 override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_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 { _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 { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * 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, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: contracts/newnft.sol library SafeMath { function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } //MyNFTcontract contract MOPixelPets is ERC721A, Ownable { using Strings for uint256; using SafeMath for uint256; uint256 public unitPrice = 8000000000000000; //0.008eth uint256 public MAX_ELEMENTS = 10000; address private MO = 0xB38e1aee2d214512e5D2C9522949DDedEaF72C9D; string public baseTokenURI; constructor(string memory NFTbaseURI) ERC721A("MetaOtters", "MO") { setBaseURI(NFTbaseURI); } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function setBaseURI(string memory inputbaseURI) public onlyOwner { baseTokenURI = inputbaseURI; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), "ERC721AMetadata: URI query for nonexistent token"); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), ".json")) : ""; } function setConfigs(uint256 _maxElements , address _MO ) public onlyOwner { MAX_ELEMENTS = _maxElements; MO = _MO; } function reserveTo(address _to, uint256 quantity) public onlyOwner{ require(quantity >0 && totalSupply() + quantity <= MAX_ELEMENTS, "Not enough tokens left"); _safeMint(_to, quantity); } function mintPassQuantity(address sender) public view returns (uint256){ require(sender!=address(0),"invalid address input"); uint256 amountOwned = IERC721(MO).balanceOf(sender); return amountOwned; } function mint(address _to, uint256 quantity) public payable { // require( quantity + _numberMinted(_to) <= MAX_PER_MINT , "Exceed Max limit"); require(quantity >0 && totalSupply() + quantity <= MAX_ELEMENTS, "Not enough tokens left"); require(msg.value >= ( unitPrice * quantity), "Eth sent below cost"); _safeMint(_to, quantity); } function claimMint(address _to) public { uint256 passLeft = mintPassQuantity(_to).sub( _numberMinted(_to),"Token pass has all been used"); uint256 supplyLeft = MAX_ELEMENTS.sub(totalSupply(),"All pets have been claimed"); uint256 quantity =0; if (supplyLeft <= passLeft ){ quantity = supplyLeft; } else { quantity = passLeft;} require(quantity > 0,"Not enough token pass or all pets have been claimed"); _safeMint(_to, quantity); } function setunitPrice(uint256 _price) public onlyOwner { unitPrice =_price; } function getunitPrice() public view returns(uint256){ return unitPrice; } function withdrawAll() external onlyOwner { uint256 contractBalance = address(this).balance; require(contractBalance > 0,"insufficient balance."); _withdraw(owner(), contractBalance); } function _withdraw(address _address, uint256 _amount) private { (bool success, ) = payable(_address).call{ value: _amount }(""); require(success, "Failed to widthdraw Ether"); } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount); uint256 currentTokenId = _startTokenId(); uint256 ownedTokenIndex = 0; address latestOwnerAddress; while (ownedTokenIndex < ownerTokenCount && currentTokenId <= MAX_ELEMENTS) { TokenOwnership memory ownership = _ownerships[currentTokenId]; if (!ownership.burned && ownership.addr != address(0)) { latestOwnerAddress = ownership.addr; } if (latestOwnerAddress == _owner) { ownedTokenIds[ownedTokenIndex] = currentTokenId; ownedTokenIndex++; } currentTokenId++; } return ownedTokenIds; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"NFTbaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"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":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":"MAX_ELEMENTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"claimMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getunitPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"mintPassQuantity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"reserveTo","outputs":[],"stateMutability":"nonpayable","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":"inputbaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxElements","type":"uint256"},{"internalType":"address","name":"_MO","type":"address"}],"name":"setConfigs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setunitPrice","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":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"unitPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052661c6bf526340000600955612710600a55600b80546001600160a01b03191673b38e1aee2d214512e5d2c9522949ddedeaf72c9d1790553480156200004857600080fd5b50604051620023d6380380620023d68339810160408190526200006b916200026c565b6040518060400160405280600a8152602001694d6574614f747465727360b01b815250604051806040016040528060028152602001614d4f60f01b8152508160029080519060200190620000c1929190620001c6565b508051620000d7906003906020840190620001c6565b5050600160005550620000ea33620000fc565b620000f5816200014e565b506200039b565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620001ad5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001c290600c906020840190620001c6565b5050565b828054620001d49062000348565b90600052602060002090601f016020900481019282620001f8576000855562000243565b82601f106200021357805160ff191683800117855562000243565b8280016001018555821562000243579182015b828111156200024357825182559160200191906001019062000226565b506200025192915062000255565b5090565b5b8082111562000251576000815560010162000256565b600060208083850312156200028057600080fd5b82516001600160401b03808211156200029857600080fd5b818501915085601f830112620002ad57600080fd5b815181811115620002c257620002c262000385565b604051601f8201601f19908116603f01168101908382118183101715620002ed57620002ed62000385565b8160405282815288868487010111156200030657600080fd5b600093505b828410156200032a57848401860151818501870152928501926200030b565b828411156200033c5760008684830101525b98975050505050505050565b600181811c908216806200035d57607f821691505b602082108114156200037f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61202b80620003ab6000396000f3fe6080604052600436106101cd5760003560e01c806370a08231116100f7578063b305a85311610095578063dd054e8c11610064578063dd054e8c1461050c578063e73faa2d1461052c578063e985e9c514610542578063f2fde38b1461058b57600080fd5b8063b305a85314610497578063b88d4fde146104b7578063c87b56dd146104d7578063d547cfb7146104f757600080fd5b80638da5cb5b116100d15780638da5cb5b1461042457806395d89b4114610442578063a22cb46514610457578063b16799181461047757600080fd5b806370a08231146103da578063715018a6146103fa578063853828b61461040f57600080fd5b80633705ba5c1161016f578063438b63001161013e578063438b63001461034d57806355f804b31461037a5780636352211e1461039a5780636ca84ab6146103ba57600080fd5b80633705ba5c146102e557806339f630621461030557806340c10f191461031a57806342842e0e1461032d57600080fd5b8063095ea7b3116101ab578063095ea7b31461026157806318160ddd1461028357806323b872dd146102af5780633502a716146102cf57600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611c84565b6105ab565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105fd565b6040516101fe9190611e47565b34801561023557600080fd5b50610249610244366004611d06565b61068f565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004611c5a565b6106d3565b005b34801561028f57600080fd5b506102a1600154600054036000190190565b6040519081526020016101fe565b3480156102bb57600080fd5b506102816102ca366004611b67565b610761565b3480156102db57600080fd5b506102a1600a5481565b3480156102f157600080fd5b50610281610300366004611b19565b61076c565b34801561031157600080fd5b506009546102a1565b610281610328366004611c5a565b6108cb565b34801561033957600080fd5b50610281610348366004611b67565b61099e565b34801561035957600080fd5b5061036d610368366004611b19565b6109b9565b6040516101fe9190611e03565b34801561038657600080fd5b50610281610395366004611cbe565b610b00565b3480156103a657600080fd5b506102496103b5366004611d06565b610b3d565b3480156103c657600080fd5b506102a16103d5366004611b19565b610b4f565b3480156103e657600080fd5b506102a16103f5366004611b19565b610c24565b34801561040657600080fd5b50610281610c72565b34801561041b57600080fd5b50610281610ca8565b34801561043057600080fd5b506008546001600160a01b0316610249565b34801561044e57600080fd5b5061021c610d36565b34801561046357600080fd5b50610281610472366004611c1e565b610d45565b34801561048357600080fd5b50610281610492366004611d06565b610ddb565b3480156104a357600080fd5b506102816104b2366004611c5a565b610e0a565b3480156104c357600080fd5b506102816104d2366004611ba3565b610ea6565b3480156104e357600080fd5b5061021c6104f2366004611d06565b610ef1565b34801561050357600080fd5b5061021c610fbc565b34801561051857600080fd5b50610281610527366004611d38565b61104a565b34801561053857600080fd5b506102a160095481565b34801561054e57600080fd5b506101f261055d366004611b34565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561059757600080fd5b506102816105a6366004611b19565b61109b565b60006001600160e01b031982166380ac58cd60e01b14806105dc57506001600160e01b03198216635b5e139f60e01b145b806105f757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461060c90611f1d565b80601f016020809104026020016040519081016040528092919081815260200182805461063890611f1d565b80156106855780601f1061065a57610100808354040283529160200191610685565b820191906000526020600020905b81548152906001019060200180831161066857829003601f168201915b5050505050905090565b600061069a82611133565b6106b7576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106de82610b3d565b9050806001600160a01b0316836001600160a01b031614156107135760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107335750610731813361055d565b155b15610751576040516367d9dca160e11b815260040160405180910390fd5b61075c83838361116c565b505050565b61075c8383836111c8565b6001600160a01b0381166000908152600560205260408120546107df90600160401b90046001600160401b03166040518060400160405280601c81526020017f546f6b656e20706173732068617320616c6c206265656e2075736564000000008152506107d885610b4f565b91906113b6565b905060006108356107f7600154600054036000190190565b60408051808201909152601a81527f416c6c20706574732068617665206265656e20636c61696d65640000000000006020820152600a5491906113b6565b9050600082821161084757508061084a565b50815b600081116108bb5760405162461bcd60e51b815260206004820152603360248201527f4e6f7420656e6f75676820746f6b656e2070617373206f7220616c6c207065746044820152721cc81a185d99481899595b8818db185a5b5959606a1b60648201526084015b60405180910390fd5b6108c584826113e2565b50505050565b6000811180156108f85750600a54816108eb600154600054036000190190565b6108f59190611e8f565b11155b61093d5760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b60448201526064016108b2565b8060095461094b9190611ebb565b3410156109905760405162461bcd60e51b8152602060048201526013602482015272115d1a081cd95b9d0818995b1bddc818dbdcdd606a1b60448201526064016108b2565b61099a82826113e2565b5050565b61075c83838360405180602001604052806000815250610ea6565b606060006109c683610c24565b90506000816001600160401b038111156109e2576109e2611fc9565b604051908082528060200260200182016040528015610a0b578160200160208202803683370190505b50905060016000805b8482108015610a255750600a548311155b15610af557600083815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282018390529091610a92575080516001600160a01b031615155b15610a9c57805191505b876001600160a01b0316826001600160a01b03161415610ae25783858481518110610ac957610ac9611fb3565b602090810291909101015282610ade81611f58565b9350505b83610aec81611f58565b94505050610a14565b509195945050505050565b6008546001600160a01b03163314610b2a5760405162461bcd60e51b81526004016108b290611e5a565b805161099a90600c9060208401906119ef565b6000610b48826113fc565b5192915050565b60006001600160a01b038216610b9f5760405162461bcd60e51b81526020600482015260156024820152741a5b9d985b1a59081859191c995cdcc81a5b9c1d5d605a1b60448201526064016108b2565b600b546040516370a0823160e01b81526001600160a01b03848116600483015260009216906370a082319060240160206040518083038186803b158015610be557600080fd5b505afa158015610bf9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c1d9190611d1f565b9392505050565b60006001600160a01b038216610c4d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610c9c5760405162461bcd60e51b81526004016108b290611e5a565b610ca66000611523565b565b6008546001600160a01b03163314610cd25760405162461bcd60e51b81526004016108b290611e5a565b4780610d185760405162461bcd60e51b815260206004820152601560248201527434b739bab33334b1b4b2b73a103130b630b731b29760591b60448201526064016108b2565b610d33610d2d6008546001600160a01b031690565b82611575565b50565b60606003805461060c90611f1d565b6001600160a01b038216331415610d6f5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610e055760405162461bcd60e51b81526004016108b290611e5a565b600955565b6008546001600160a01b03163314610e345760405162461bcd60e51b81526004016108b290611e5a565b600081118015610e615750600a5481610e54600154600054036000190190565b610e5e9190611e8f565b11155b6109905760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b60448201526064016108b2565b610eb18484846111c8565b6001600160a01b0383163b15158015610ed35750610ed184848484611618565b155b156108c5576040516368d2bf6b60e11b815260040160405180910390fd5b6060610efc82611133565b610f615760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201526f37b732bc34b9ba32b73a103a37b5b2b760811b60648201526084016108b2565b6000610f6b611710565b90506000815111610f8b5760405180602001604052806000815250610c1d565b80610f958461171f565b604051602001610fa6929190611d87565b6040516020818303038152906040529392505050565b600c8054610fc990611f1d565b80601f0160208091040260200160405190810160405280929190818152602001828054610ff590611f1d565b80156110425780601f1061101757610100808354040283529160200191611042565b820191906000526020600020905b81548152906001019060200180831161102557829003601f168201915b505050505081565b6008546001600160a01b031633146110745760405162461bcd60e51b81526004016108b290611e5a565b600a91909155600b80546001600160a01b0319166001600160a01b03909216919091179055565b6008546001600160a01b031633146110c55760405162461bcd60e51b81526004016108b290611e5a565b6001600160a01b03811661112a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108b2565b610d3381611523565b600081600111158015611147575060005482105b80156105f7575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006111d3826113fc565b9050836001600160a01b031681600001516001600160a01b03161461120a5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806112285750611228853361055d565b806112435750336112388461068f565b6001600160a01b0316145b90508061126357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661128a57604051633a954ecd60e21b815260040160405180910390fd5b6112966000848761116c565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661136a57600054821461136a57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b600081848411156113da5760405162461bcd60e51b81526004016108b29190611e47565b505050900390565b61099a82826040518060200160405280600081525061181c565b6040805160608101825260008082526020820181905291810191909152818060011115801561142c575060005481105b1561150a57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906115085780516001600160a01b03161561149f579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611503579392505050565b61149f565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146115c2576040519150601f19603f3d011682016040523d82523d6000602084013e6115c7565b606091505b505090508061075c5760405162461bcd60e51b815260206004820152601960248201527f4661696c656420746f207769647468647261772045746865720000000000000060448201526064016108b2565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061164d903390899088908890600401611dc6565b602060405180830381600087803b15801561166757600080fd5b505af1925050508015611697575060408051601f3d908101601f1916820190925261169491810190611ca1565b60015b6116f2573d8080156116c5576040519150601f19603f3d011682016040523d82523d6000602084013e6116ca565b606091505b5080516116ea576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600c805461060c90611f1d565b6060816117435750506040805180820190915260018152600360fc1b602082015290565b8160005b811561176d578061175781611f58565b91506117669050600a83611ea7565b9150611747565b6000816001600160401b0381111561178757611787611fc9565b6040519080825280601f01601f1916602001820160405280156117b1576020820181803683370190505b5090505b8415611708576117c6600183611eda565b91506117d3600a86611f73565b6117de906030611e8f565b60f81b8183815181106117f3576117f3611fb3565b60200101906001600160f81b031916908160001a905350611815600a86611ea7565b94506117b5565b61075c83838360016000546001600160a01b03851661184d57604051622e076360e81b815260040160405180910390fd5b8361186b5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561191757506001600160a01b0387163b15155b156119a0575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46119686000888480600101955088611618565b611985576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561191d57826000541461199b57600080fd5b6119e6565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156119a1575b506000556113af565b8280546119fb90611f1d565b90600052602060002090601f016020900481019282611a1d5760008555611a63565b82601f10611a3657805160ff1916838001178555611a63565b82800160010185558215611a63579182015b82811115611a63578251825591602001919060010190611a48565b50611a6f929150611a73565b5090565b5b80821115611a6f5760008155600101611a74565b60006001600160401b0380841115611aa257611aa2611fc9565b604051601f8501601f19908116603f01168101908282118183101715611aca57611aca611fc9565b81604052809350858152868686011115611ae357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611b1457600080fd5b919050565b600060208284031215611b2b57600080fd5b610c1d82611afd565b60008060408385031215611b4757600080fd5b611b5083611afd565b9150611b5e60208401611afd565b90509250929050565b600080600060608486031215611b7c57600080fd5b611b8584611afd565b9250611b9360208501611afd565b9150604084013590509250925092565b60008060008060808587031215611bb957600080fd5b611bc285611afd565b9350611bd060208601611afd565b92506040850135915060608501356001600160401b03811115611bf257600080fd5b8501601f81018713611c0357600080fd5b611c1287823560208401611a88565b91505092959194509250565b60008060408385031215611c3157600080fd5b611c3a83611afd565b915060208301358015158114611c4f57600080fd5b809150509250929050565b60008060408385031215611c6d57600080fd5b611c7683611afd565b946020939093013593505050565b600060208284031215611c9657600080fd5b8135610c1d81611fdf565b600060208284031215611cb357600080fd5b8151610c1d81611fdf565b600060208284031215611cd057600080fd5b81356001600160401b03811115611ce657600080fd5b8201601f81018413611cf757600080fd5b61170884823560208401611a88565b600060208284031215611d1857600080fd5b5035919050565b600060208284031215611d3157600080fd5b5051919050565b60008060408385031215611d4b57600080fd5b82359150611b5e60208401611afd565b60008151808452611d73816020860160208601611ef1565b601f01601f19169290920160200192915050565b60008351611d99818460208801611ef1565b835190830190611dad818360208801611ef1565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611df990830184611d5b565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611e3b57835183529284019291840191600101611e1f565b50909695505050505050565b602081526000610c1d6020830184611d5b565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611ea257611ea2611f87565b500190565b600082611eb657611eb6611f9d565b500490565b6000816000190483118215151615611ed557611ed5611f87565b500290565b600082821015611eec57611eec611f87565b500390565b60005b83811015611f0c578181015183820152602001611ef4565b838111156108c55750506000910152565b600181811c90821680611f3157607f821691505b60208210811415611f5257634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f6c57611f6c611f87565b5060010190565b600082611f8257611f82611f9d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d3357600080fdfea2646970667358221220be06efb954a3f6eceb29e5fd595dd6d0ee0a1526f71d90ef0e84250424cb14a164736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101cd5760003560e01c806370a08231116100f7578063b305a85311610095578063dd054e8c11610064578063dd054e8c1461050c578063e73faa2d1461052c578063e985e9c514610542578063f2fde38b1461058b57600080fd5b8063b305a85314610497578063b88d4fde146104b7578063c87b56dd146104d7578063d547cfb7146104f757600080fd5b80638da5cb5b116100d15780638da5cb5b1461042457806395d89b4114610442578063a22cb46514610457578063b16799181461047757600080fd5b806370a08231146103da578063715018a6146103fa578063853828b61461040f57600080fd5b80633705ba5c1161016f578063438b63001161013e578063438b63001461034d57806355f804b31461037a5780636352211e1461039a5780636ca84ab6146103ba57600080fd5b80633705ba5c146102e557806339f630621461030557806340c10f191461031a57806342842e0e1461032d57600080fd5b8063095ea7b3116101ab578063095ea7b31461026157806318160ddd1461028357806323b872dd146102af5780633502a716146102cf57600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611c84565b6105ab565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105fd565b6040516101fe9190611e47565b34801561023557600080fd5b50610249610244366004611d06565b61068f565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004611c5a565b6106d3565b005b34801561028f57600080fd5b506102a1600154600054036000190190565b6040519081526020016101fe565b3480156102bb57600080fd5b506102816102ca366004611b67565b610761565b3480156102db57600080fd5b506102a1600a5481565b3480156102f157600080fd5b50610281610300366004611b19565b61076c565b34801561031157600080fd5b506009546102a1565b610281610328366004611c5a565b6108cb565b34801561033957600080fd5b50610281610348366004611b67565b61099e565b34801561035957600080fd5b5061036d610368366004611b19565b6109b9565b6040516101fe9190611e03565b34801561038657600080fd5b50610281610395366004611cbe565b610b00565b3480156103a657600080fd5b506102496103b5366004611d06565b610b3d565b3480156103c657600080fd5b506102a16103d5366004611b19565b610b4f565b3480156103e657600080fd5b506102a16103f5366004611b19565b610c24565b34801561040657600080fd5b50610281610c72565b34801561041b57600080fd5b50610281610ca8565b34801561043057600080fd5b506008546001600160a01b0316610249565b34801561044e57600080fd5b5061021c610d36565b34801561046357600080fd5b50610281610472366004611c1e565b610d45565b34801561048357600080fd5b50610281610492366004611d06565b610ddb565b3480156104a357600080fd5b506102816104b2366004611c5a565b610e0a565b3480156104c357600080fd5b506102816104d2366004611ba3565b610ea6565b3480156104e357600080fd5b5061021c6104f2366004611d06565b610ef1565b34801561050357600080fd5b5061021c610fbc565b34801561051857600080fd5b50610281610527366004611d38565b61104a565b34801561053857600080fd5b506102a160095481565b34801561054e57600080fd5b506101f261055d366004611b34565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561059757600080fd5b506102816105a6366004611b19565b61109b565b60006001600160e01b031982166380ac58cd60e01b14806105dc57506001600160e01b03198216635b5e139f60e01b145b806105f757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461060c90611f1d565b80601f016020809104026020016040519081016040528092919081815260200182805461063890611f1d565b80156106855780601f1061065a57610100808354040283529160200191610685565b820191906000526020600020905b81548152906001019060200180831161066857829003601f168201915b5050505050905090565b600061069a82611133565b6106b7576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106de82610b3d565b9050806001600160a01b0316836001600160a01b031614156107135760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906107335750610731813361055d565b155b15610751576040516367d9dca160e11b815260040160405180910390fd5b61075c83838361116c565b505050565b61075c8383836111c8565b6001600160a01b0381166000908152600560205260408120546107df90600160401b90046001600160401b03166040518060400160405280601c81526020017f546f6b656e20706173732068617320616c6c206265656e2075736564000000008152506107d885610b4f565b91906113b6565b905060006108356107f7600154600054036000190190565b60408051808201909152601a81527f416c6c20706574732068617665206265656e20636c61696d65640000000000006020820152600a5491906113b6565b9050600082821161084757508061084a565b50815b600081116108bb5760405162461bcd60e51b815260206004820152603360248201527f4e6f7420656e6f75676820746f6b656e2070617373206f7220616c6c207065746044820152721cc81a185d99481899595b8818db185a5b5959606a1b60648201526084015b60405180910390fd5b6108c584826113e2565b50505050565b6000811180156108f85750600a54816108eb600154600054036000190190565b6108f59190611e8f565b11155b61093d5760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b60448201526064016108b2565b8060095461094b9190611ebb565b3410156109905760405162461bcd60e51b8152602060048201526013602482015272115d1a081cd95b9d0818995b1bddc818dbdcdd606a1b60448201526064016108b2565b61099a82826113e2565b5050565b61075c83838360405180602001604052806000815250610ea6565b606060006109c683610c24565b90506000816001600160401b038111156109e2576109e2611fc9565b604051908082528060200260200182016040528015610a0b578160200160208202803683370190505b50905060016000805b8482108015610a255750600a548311155b15610af557600083815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282018390529091610a92575080516001600160a01b031615155b15610a9c57805191505b876001600160a01b0316826001600160a01b03161415610ae25783858481518110610ac957610ac9611fb3565b602090810291909101015282610ade81611f58565b9350505b83610aec81611f58565b94505050610a14565b509195945050505050565b6008546001600160a01b03163314610b2a5760405162461bcd60e51b81526004016108b290611e5a565b805161099a90600c9060208401906119ef565b6000610b48826113fc565b5192915050565b60006001600160a01b038216610b9f5760405162461bcd60e51b81526020600482015260156024820152741a5b9d985b1a59081859191c995cdcc81a5b9c1d5d605a1b60448201526064016108b2565b600b546040516370a0823160e01b81526001600160a01b03848116600483015260009216906370a082319060240160206040518083038186803b158015610be557600080fd5b505afa158015610bf9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c1d9190611d1f565b9392505050565b60006001600160a01b038216610c4d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610c9c5760405162461bcd60e51b81526004016108b290611e5a565b610ca66000611523565b565b6008546001600160a01b03163314610cd25760405162461bcd60e51b81526004016108b290611e5a565b4780610d185760405162461bcd60e51b815260206004820152601560248201527434b739bab33334b1b4b2b73a103130b630b731b29760591b60448201526064016108b2565b610d33610d2d6008546001600160a01b031690565b82611575565b50565b60606003805461060c90611f1d565b6001600160a01b038216331415610d6f5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610e055760405162461bcd60e51b81526004016108b290611e5a565b600955565b6008546001600160a01b03163314610e345760405162461bcd60e51b81526004016108b290611e5a565b600081118015610e615750600a5481610e54600154600054036000190190565b610e5e9190611e8f565b11155b6109905760405162461bcd60e51b8152602060048201526016602482015275139bdd08195b9bdd59da081d1bdad95b9cc81b19599d60521b60448201526064016108b2565b610eb18484846111c8565b6001600160a01b0383163b15158015610ed35750610ed184848484611618565b155b156108c5576040516368d2bf6b60e11b815260040160405180910390fd5b6060610efc82611133565b610f615760405162461bcd60e51b815260206004820152603060248201527f455243373231414d657461646174613a2055524920717565727920666f72206e60448201526f37b732bc34b9ba32b73a103a37b5b2b760811b60648201526084016108b2565b6000610f6b611710565b90506000815111610f8b5760405180602001604052806000815250610c1d565b80610f958461171f565b604051602001610fa6929190611d87565b6040516020818303038152906040529392505050565b600c8054610fc990611f1d565b80601f0160208091040260200160405190810160405280929190818152602001828054610ff590611f1d565b80156110425780601f1061101757610100808354040283529160200191611042565b820191906000526020600020905b81548152906001019060200180831161102557829003601f168201915b505050505081565b6008546001600160a01b031633146110745760405162461bcd60e51b81526004016108b290611e5a565b600a91909155600b80546001600160a01b0319166001600160a01b03909216919091179055565b6008546001600160a01b031633146110c55760405162461bcd60e51b81526004016108b290611e5a565b6001600160a01b03811661112a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108b2565b610d3381611523565b600081600111158015611147575060005482105b80156105f7575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006111d3826113fc565b9050836001600160a01b031681600001516001600160a01b03161461120a5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806112285750611228853361055d565b806112435750336112388461068f565b6001600160a01b0316145b90508061126357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661128a57604051633a954ecd60e21b815260040160405180910390fd5b6112966000848761116c565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661136a57600054821461136a57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b600081848411156113da5760405162461bcd60e51b81526004016108b29190611e47565b505050900390565b61099a82826040518060200160405280600081525061181c565b6040805160608101825260008082526020820181905291810191909152818060011115801561142c575060005481105b1561150a57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906115085780516001600160a01b03161561149f579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611503579392505050565b61149f565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146115c2576040519150601f19603f3d011682016040523d82523d6000602084013e6115c7565b606091505b505090508061075c5760405162461bcd60e51b815260206004820152601960248201527f4661696c656420746f207769647468647261772045746865720000000000000060448201526064016108b2565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061164d903390899088908890600401611dc6565b602060405180830381600087803b15801561166757600080fd5b505af1925050508015611697575060408051601f3d908101601f1916820190925261169491810190611ca1565b60015b6116f2573d8080156116c5576040519150601f19603f3d011682016040523d82523d6000602084013e6116ca565b606091505b5080516116ea576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600c805461060c90611f1d565b6060816117435750506040805180820190915260018152600360fc1b602082015290565b8160005b811561176d578061175781611f58565b91506117669050600a83611ea7565b9150611747565b6000816001600160401b0381111561178757611787611fc9565b6040519080825280601f01601f1916602001820160405280156117b1576020820181803683370190505b5090505b8415611708576117c6600183611eda565b91506117d3600a86611f73565b6117de906030611e8f565b60f81b8183815181106117f3576117f3611fb3565b60200101906001600160f81b031916908160001a905350611815600a86611ea7565b94506117b5565b61075c83838360016000546001600160a01b03851661184d57604051622e076360e81b815260040160405180910390fd5b8361186b5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561191757506001600160a01b0387163b15155b156119a0575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46119686000888480600101955088611618565b611985576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561191d57826000541461199b57600080fd5b6119e6565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156119a1575b506000556113af565b8280546119fb90611f1d565b90600052602060002090601f016020900481019282611a1d5760008555611a63565b82601f10611a3657805160ff1916838001178555611a63565b82800160010185558215611a63579182015b82811115611a63578251825591602001919060010190611a48565b50611a6f929150611a73565b5090565b5b80821115611a6f5760008155600101611a74565b60006001600160401b0380841115611aa257611aa2611fc9565b604051601f8501601f19908116603f01168101908282118183101715611aca57611aca611fc9565b81604052809350858152868686011115611ae357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611b1457600080fd5b919050565b600060208284031215611b2b57600080fd5b610c1d82611afd565b60008060408385031215611b4757600080fd5b611b5083611afd565b9150611b5e60208401611afd565b90509250929050565b600080600060608486031215611b7c57600080fd5b611b8584611afd565b9250611b9360208501611afd565b9150604084013590509250925092565b60008060008060808587031215611bb957600080fd5b611bc285611afd565b9350611bd060208601611afd565b92506040850135915060608501356001600160401b03811115611bf257600080fd5b8501601f81018713611c0357600080fd5b611c1287823560208401611a88565b91505092959194509250565b60008060408385031215611c3157600080fd5b611c3a83611afd565b915060208301358015158114611c4f57600080fd5b809150509250929050565b60008060408385031215611c6d57600080fd5b611c7683611afd565b946020939093013593505050565b600060208284031215611c9657600080fd5b8135610c1d81611fdf565b600060208284031215611cb357600080fd5b8151610c1d81611fdf565b600060208284031215611cd057600080fd5b81356001600160401b03811115611ce657600080fd5b8201601f81018413611cf757600080fd5b61170884823560208401611a88565b600060208284031215611d1857600080fd5b5035919050565b600060208284031215611d3157600080fd5b5051919050565b60008060408385031215611d4b57600080fd5b82359150611b5e60208401611afd565b60008151808452611d73816020860160208601611ef1565b601f01601f19169290920160200192915050565b60008351611d99818460208801611ef1565b835190830190611dad818360208801611ef1565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611df990830184611d5b565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611e3b57835183529284019291840191600101611e1f565b50909695505050505050565b602081526000610c1d6020830184611d5b565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611ea257611ea2611f87565b500190565b600082611eb657611eb6611f9d565b500490565b6000816000190483118215151615611ed557611ed5611f87565b500290565b600082821015611eec57611eec611f87565b500390565b60005b83811015611f0c578181015183820152602001611ef4565b838111156108c55750506000910152565b600181811c90821680611f3157607f821691505b60208210811415611f5257634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611f6c57611f6c611f87565b5060010190565b600082611f8257611f82611f9d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d3357600080fdfea2646970667358221220be06efb954a3f6eceb29e5fd595dd6d0ee0a1526f71d90ef0e84250424cb14a164736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : NFTbaseURI (string):
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
47350:4202:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27060:305;;;;;;;;;;-1:-1:-1;27060:305:0;;;;;:::i;:::-;;:::i;:::-;;;7108:14:1;;7101:22;7083:41;;7071:2;7056:18;27060:305:0;;;;;;;;30173:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31676:204::-;;;;;;;;;;-1:-1:-1;31676:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5769:32:1;;;5751:51;;5739:2;5724:18;31676:204:0;5605:203:1;31239:371:0;;;;;;;;;;-1:-1:-1;31239:371:0;;;;;:::i;:::-;;:::i;:::-;;26309:303;;;;;;;;;;;;26166:1;26563:12;26353:7;26547:13;:28;-1:-1:-1;;26547:46:0;;26309:303;;;;10863:25:1;;;10851:2;10836:18;26309:303:0;10717:177:1;32541:170:0;;;;;;;;;;-1:-1:-1;32541:170:0;;;;;:::i;:::-;;:::i;47530:36::-;;;;;;;;;;;;;;;;49543:563;;;;;;;;;;-1:-1:-1;49543:563:0;;;;;:::i;:::-;;:::i;50210:77::-;;;;;;;;;;-1:-1:-1;50273:9:0;;50210:77;;49160:375;;;;;;:::i;:::-;;:::i;32782:185::-;;;;;;;;;;-1:-1:-1;32782:185:0;;;;;:::i;:::-;;:::i;50745:799::-;;;;;;;;;;-1:-1:-1;50745:799:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;47938:111::-;;;;;;;;;;-1:-1:-1;47938:111:0;;;;;:::i;:::-;;:::i;29981:125::-;;;;;;;;;;-1:-1:-1;29981:125:0;;;;;:::i;:::-;;:::i;48919:233::-;;;;;;;;;;-1:-1:-1;48919:233:0;;;;;:::i;:::-;;:::i;27429:206::-;;;;;;;;;;-1:-1:-1;27429:206:0;;;;;:::i;:::-;;:::i;4780:103::-;;;;;;;;;;;;;:::i;50297:228::-;;;;;;;;;;;;;:::i;4129:87::-;;;;;;;;;;-1:-1:-1;4202:6:0;;-1:-1:-1;;;;;4202:6:0;4129:87;;30342:104;;;;;;;;;;;;;:::i;31952:287::-;;;;;;;;;;-1:-1:-1;31952:287:0;;;;;:::i;:::-;;:::i;50116:86::-;;;;;;;;;;-1:-1:-1;50116:86:0;;;;;:::i;:::-;;:::i;48675:234::-;;;;;;;;;;-1:-1:-1;48675:234:0;;;;;:::i;:::-;;:::i;33038:369::-;;;;;;;;;;-1:-1:-1;33038:369:0;;;;;:::i;:::-;;:::i;48057:364::-;;;;;;;;;;-1:-1:-1;48057:364:0;;;;;:::i;:::-;;:::i;47648:26::-;;;;;;;;;;;;;:::i;48430:236::-;;;;;;;;;;-1:-1:-1;48430:236:0;;;;;:::i;:::-;;:::i;47468:44::-;;;;;;;;;;;;;;;;32310:164;;;;;;;;;;-1:-1:-1;32310:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32431:25:0;;;32407:4;32431:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32310:164;5038:201;;;;;;;;;;-1:-1:-1;5038:201:0;;;;;:::i;:::-;;:::i;27060:305::-;27162:4;-1:-1:-1;;;;;;27199:40:0;;-1:-1:-1;;;27199:40:0;;:105;;-1:-1:-1;;;;;;;27256:48:0;;-1:-1:-1;;;27256:48:0;27199:105;:158;;;-1:-1:-1;;;;;;;;;;17045:40:0;;;27321:36;27179:178;27060:305;-1:-1:-1;;27060:305:0:o;30173:100::-;30227:13;30260:5;30253:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30173:100;:::o;31676:204::-;31744:7;31769:16;31777:7;31769;:16::i;:::-;31764:64;;31794:34;;-1:-1:-1;;;31794:34:0;;;;;;;;;;;31764:64;-1:-1:-1;31848:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31848:24:0;;31676:204::o;31239:371::-;31312:13;31328:24;31344:7;31328:15;:24::i;:::-;31312:40;;31373:5;-1:-1:-1;;;;;31367:11:0;:2;-1:-1:-1;;;;;31367:11:0;;31363:48;;;31387:24;;-1:-1:-1;;;31387:24:0;;;;;;;;;;;31363:48;2933:10;-1:-1:-1;;;;;31428:21:0;;;;;;:63;;-1:-1:-1;31454:37:0;31471:5;2933:10;32310:164;:::i;31454:37::-;31453:38;31428:63;31424:138;;;31515:35;;-1:-1:-1;;;31515:35:0;;;;;;;;;;;31424:138;31574:28;31583:2;31587:7;31596:5;31574:8;:28::i;:::-;31301:309;31239:371;;:::o;32541:170::-;32675:28;32685:4;32691:2;32695:7;32675:9;:28::i;49543:563::-;-1:-1:-1;;;;;27813:19:0;;49607:16;27813:19;;;:12;:19;;;;;:32;49626:77;;-1:-1:-1;;;27813:32:0;;-1:-1:-1;;;;;27813:32:0;49626:77;;;;;;;;;;;;;;;;;:21;49643:3;49626:16;:21::i;:::-;:25;:77;:25;:77::i;:::-;49607:96;;49727:18;49748:60;49765:13;26166:1;26563:12;26353:7;26547:13;:28;-1:-1:-1;;26547:46:0;;26309:303;49765:13;49748:60;;;;;;;;;;;;;;;;;:12;;;:60;:16;:60::i;:::-;49727:81;;49819:16;49867:8;49853:10;:22;49849:119;;-1:-1:-1;49903:10:0;49849:119;;;-1:-1:-1;49958:8:0;49849:119;50005:1;49994:8;:12;49986:75;;;;-1:-1:-1;;;49986:75:0;;10145:2:1;49986:75:0;;;10127:21:1;10184:2;10164:18;;;10157:30;10223:34;10203:18;;;10196:62;-1:-1:-1;;;10274:18:1;;;10267:49;10333:19;;49986:75:0;;;;;;;;;50072:24;50082:3;50087:8;50072:9;:24::i;:::-;49583:523;;;49543:563;:::o;49160:375::-;49341:1;49331:8;:11;:55;;;;;49374:12;;49362:8;49346:13;26166:1;26563:12;26353:7;26547:13;:28;-1:-1:-1;;26547:46:0;;26309:303;49346:13;:24;;;;:::i;:::-;:40;;49331:55;49323:90;;;;-1:-1:-1;;;49323:90:0;;9433:2:1;49323:90:0;;;9415:21:1;9472:2;9452:18;;;9445:30;-1:-1:-1;;;9491:18:1;;;9484:52;9553:18;;49323:90:0;9231:346:1;49323:90:0;49459:8;49447:9;;:20;;;;:::i;:::-;49432:9;:36;;49424:68;;;;-1:-1:-1;;;49424:68:0;;8385:2:1;49424:68:0;;;8367:21:1;8424:2;8404:18;;;8397:30;-1:-1:-1;;;8443:18:1;;;8436:49;8502:18;;49424:68:0;8183:343:1;49424:68:0;49503:24;49513:3;49518:8;49503:9;:24::i;:::-;49160:375;;:::o;32782:185::-;32920:39;32937:4;32943:2;32947:7;32920:39;;;;;;;;;;;;:16;:39::i;50745:799::-;50805:16;50830:23;50856:17;50866:6;50856:9;:17::i;:::-;50830:43;;50880:30;50927:15;-1:-1:-1;;;;;50913:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50913:30:0;-1:-1:-1;50880:63:0;-1:-1:-1;26166:1:0;50950:22;;51066:444;51091:15;51073;:33;:67;;;;;51128:12;;51110:14;:30;;51073:67;51066:444;;;51151:31;51185:27;;;:11;:27;;;;;;;;;51151:61;;;;;;;;;-1:-1:-1;;;;;51151:61:0;;;;-1:-1:-1;;;51151:61:0;;-1:-1:-1;;;;;51151:61:0;;;;;;;;-1:-1:-1;;;51151:61:0;;;;;;;;;;;;;;;;51227:49;;-1:-1:-1;51248:14:0;;-1:-1:-1;;;;;51248:28:0;;;51227:49;51223:111;;;51310:14;;;-1:-1:-1;51223:111:0;51370:6;-1:-1:-1;;;;;51348:28:0;:18;-1:-1:-1;;;;;51348:28:0;;51344:132;;;51422:14;51389:13;51403:15;51389:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;51449:17;;;;:::i;:::-;;;;51344:132;51486:16;;;;:::i;:::-;;;;51142:368;51066:444;;;-1:-1:-1;51525:13:0;;50745:799;-1:-1:-1;;;;;50745:799:0:o;47938:111::-;4202:6;;-1:-1:-1;;;;;4202:6:0;2933:10;4349:23;4341:68;;;;-1:-1:-1;;;4341:68:0;;;;;;;:::i;:::-;48014:27;;::::1;::::0;:12:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;29981:125::-:0;30045:7;30072:21;30085:7;30072:12;:21::i;:::-;:26;;29981:125;-1:-1:-1;;29981:125:0:o;48919:233::-;48982:7;-1:-1:-1;;;;;49008:18:0;;49000:51;;;;-1:-1:-1;;;49000:51:0;;8733:2:1;49000:51:0;;;8715:21:1;8772:2;8752:18;;;8745:30;-1:-1:-1;;;8791:18:1;;;8784:51;8852:18;;49000:51:0;8531:345:1;49000:51:0;49094:2;;49086:29;;-1:-1:-1;;;49086:29:0;;-1:-1:-1;;;;;5769:32:1;;;49086:29:0;;;5751:51:1;49063:19:0;;49094:2;;49086:21;;5724:18:1;;49086:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49063:52;48919:233;-1:-1:-1;;;48919:233:0:o;27429:206::-;27493:7;-1:-1:-1;;;;;27517:19:0;;27513:60;;27545:28;;-1:-1:-1;;;27545:28:0;;;;;;;;;;;27513:60;-1:-1:-1;;;;;;27599:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;27599:27:0;;27429:206::o;4780:103::-;4202:6;;-1:-1:-1;;;;;4202:6:0;2933:10;4349:23;4341:68;;;;-1:-1:-1;;;4341:68:0;;;;;;;:::i;:::-;4845:30:::1;4872:1;4845:18;:30::i;:::-;4780:103::o:0;50297:228::-;4202:6;;-1:-1:-1;;;;;4202:6:0;2933:10;4349:23;4341:68;;;;-1:-1:-1;;;4341:68:0;;;;;;;:::i;:::-;50376:21:::1;50416:19:::0;50408:52:::1;;;::::0;-1:-1:-1;;;50408:52:0;;9083:2:1;50408:52:0::1;::::0;::::1;9065:21:1::0;9122:2;9102:18;;;9095:30;-1:-1:-1;;;9141:18:1;;;9134:51;9202:18;;50408:52:0::1;8881:345:1::0;50408:52:0::1;50476:35;50486:7;4202:6:::0;;-1:-1:-1;;;;;4202:6:0;;4129:87;50486:7:::1;50495:15;50476:9;:35::i;:::-;50339:186;50297:228::o:0;30342:104::-;30398:13;30431:7;30424:14;;;;;:::i;31952:287::-;-1:-1:-1;;;;;32051:24:0;;2933:10;32051:24;32047:54;;;32084:17;;-1:-1:-1;;;32084:17:0;;;;;;;;;;;32047:54;2933:10;32114:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32114:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32114:53:0;;;;;;;;;;32183:48;;7083:41:1;;;32114:42:0;;2933:10;32183:48;;7056:18:1;32183:48:0;;;;;;;31952:287;;:::o;50116:86::-;4202:6;;-1:-1:-1;;;;;4202:6:0;2933:10;4349:23;4341:68;;;;-1:-1:-1;;;4341:68:0;;;;;;;:::i;:::-;50179:9:::1;:17:::0;50116:86::o;48675:234::-;4202:6;;-1:-1:-1;;;;;4202:6:0;2933:10;4349:23;4341:68;;;;-1:-1:-1;;;4341:68:0;;;;;;;:::i;:::-;48785:1:::1;48775:8;:11;:55;;;;;48818:12;;48806:8;48790:13;26166:1:::0;26563:12;26353:7;26547:13;:28;-1:-1:-1;;26547:46:0;;26309:303;48790:13:::1;:24;;;;:::i;:::-;:40;;48775:55;48767:90;;;::::0;-1:-1:-1;;;48767:90:0;;9433:2:1;48767:90:0::1;::::0;::::1;9415:21:1::0;9472:2;9452:18;;;9445:30;-1:-1:-1;;;9491:18:1;;;9484:52;9553:18;;48767:90:0::1;9231:346:1::0;33038:369:0;33205:28;33215:4;33221:2;33225:7;33205:9;:28::i;:::-;-1:-1:-1;;;;;33248:13:0;;7125:19;:23;;33248:76;;;;;33268:56;33299:4;33305:2;33309:7;33318:5;33268:30;:56::i;:::-;33267:57;33248:76;33244:156;;;33348:40;;-1:-1:-1;;;33348:40:0;;;;;;;;;;;48057:364;48131:13;48165:17;48173:8;48165:7;:17::i;:::-;48157:78;;;;-1:-1:-1;;;48157:78:0;;7561:2:1;48157:78:0;;;7543:21:1;7600:2;7580:18;;;7573:30;7639:34;7619:18;;;7612:62;-1:-1:-1;;;7690:18:1;;;7683:46;7746:19;;48157:78:0;7359:412:1;48157:78:0;48246:28;48277:10;:8;:10::i;:::-;48246:41;;48336:1;48311:14;48305:28;:32;:110;;;;;;;;;;;;;;;;;48364:14;48380:19;:8;:17;:19::i;:::-;48347:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48298:117;48057:364;-1:-1:-1;;;48057:364:0:o;47648:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48430:236::-;4202:6;;-1:-1:-1;;;;;4202:6:0;2933:10;4349:23;4341:68;;;;-1:-1:-1;;;4341:68:0;;;;;;;:::i;:::-;48606:12:::1;:27:::0;;;;48645:2:::1;:8:::0;;-1:-1:-1;;;;;;48645:8:0::1;-1:-1:-1::0;;;;;48645:8:0;;::::1;::::0;;;::::1;::::0;;48430:236::o;5038:201::-;4202:6;;-1:-1:-1;;;;;4202:6:0;2933:10;4349:23;4341:68;;;;-1:-1:-1;;;4341:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5127:22:0;::::1;5119:73;;;::::0;-1:-1:-1;;;5119:73:0;;7978:2:1;5119:73:0::1;::::0;::::1;7960:21:1::0;8017:2;7997:18;;;7990:30;8056:34;8036:18;;;8029:62;-1:-1:-1;;;8107:18:1;;;8100:36;8153:19;;5119:73:0::1;7776:402:1::0;5119:73:0::1;5203:28;5222:8;5203:18;:28::i;33662:174::-:0;33719:4;33762:7;26166:1;33743:26;;:53;;;;;33783:13;;33773:7;:23;33743:53;:85;;;;-1:-1:-1;;33801:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;33801:27:0;;;;33800:28;;33662:174::o;41819:196::-;41934:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;41934:29:0;-1:-1:-1;;;;;41934:29:0;;;;;;;;;41979:28;;41934:24;;41979:28;;;;;;;41819:196;;;:::o;36762:2130::-;36877:35;36915:21;36928:7;36915:12;:21::i;:::-;36877:59;;36975:4;-1:-1:-1;;;;;36953:26:0;:13;:18;;;-1:-1:-1;;;;;36953:26:0;;36949:67;;36988:28;;-1:-1:-1;;;36988:28:0;;;;;;;;;;;36949:67;37029:22;2933:10;-1:-1:-1;;;;;37055:20:0;;;;:73;;-1:-1:-1;37092:36:0;37109:4;2933:10;32310:164;:::i;37092:36::-;37055:126;;;-1:-1:-1;2933:10:0;37145:20;37157:7;37145:11;:20::i;:::-;-1:-1:-1;;;;;37145:36:0;;37055:126;37029:153;;37200:17;37195:66;;37226:35;;-1:-1:-1;;;37226:35:0;;;;;;;;;;;37195:66;-1:-1:-1;;;;;37276:16:0;;37272:52;;37301:23;;-1:-1:-1;;;37301:23:0;;;;;;;;;;;37272:52;37445:35;37462:1;37466:7;37475:4;37445:8;:35::i;:::-;-1:-1:-1;;;;;37776:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;37776:31:0;;;-1:-1:-1;;;;;37776:31:0;;;-1:-1:-1;;37776:31:0;;;;;;;37822:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;37822:29:0;;;;;;;;;;;37902:20;;;:11;:20;;;;;;37937:18;;-1:-1:-1;;;;;;37970:49:0;;;;-1:-1:-1;;;38003:15:0;37970:49;;;;;;;;;;38293:11;;38353:24;;;;;38396:13;;37902:20;;38353:24;;38396:13;38392:384;;38606:13;;38591:11;:28;38587:174;;38644:20;;38713:28;;;;-1:-1:-1;;;;;38687:54:0;-1:-1:-1;;;38687:54:0;-1:-1:-1;;;;;;38687:54:0;;;-1:-1:-1;;;;;38644:20:0;;38687:54;;;;38587:174;37751:1036;;;38823:7;38819:2;-1:-1:-1;;;;;38804:27:0;38813:4;-1:-1:-1;;;;;38804:27:0;;;;;;;;;;;38842:42;36866:2026;;36762:2130;;;:::o;46582:240::-;46702:7;46763:12;46755:6;;;;46747:29;;;;-1:-1:-1;;;46747:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;46798:5:0;;;46582:240::o;33844:104::-;33913:27;33923:2;33927:8;33913:27;;;;;;;;;;;;:9;:27::i;28810:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;28921:7:0;;26166:1;28970:23;;:47;;;;;29004:13;;28997:4;:20;28970:47;28966:886;;;29038:31;29072:17;;;:11;:17;;;;;;;;;29038:51;;;;;;;;;-1:-1:-1;;;;;29038:51:0;;;;-1:-1:-1;;;29038:51:0;;-1:-1:-1;;;;;29038:51:0;;;;;;;;-1:-1:-1;;;29038:51:0;;;;;;;;;;;;;;29108:729;;29158:14;;-1:-1:-1;;;;;29158:28:0;;29154:101;;29222:9;28810:1109;-1:-1:-1;;;28810:1109:0:o;29154:101::-;-1:-1:-1;;;29597:6:0;29642:17;;;;:11;:17;;;;;;;;;29630:29;;;;;;;;;-1:-1:-1;;;;;29630:29:0;;;;;-1:-1:-1;;;29630:29:0;;-1:-1:-1;;;;;29630:29:0;;;;;;;;-1:-1:-1;;;29630:29:0;;;;;;;;;;;;;29690:28;29686:109;;29758:9;28810:1109;-1:-1:-1;;;28810:1109:0:o;29686:109::-;29557:261;;;29019:833;28966:886;29880:31;;-1:-1:-1;;;29880:31:0;;;;;;;;;;;5399:191;5492:6;;;-1:-1:-1;;;;;5509:17:0;;;-1:-1:-1;;;;;;5509:17:0;;;;;;;5542:40;;5492:6;;;5509:17;5492:6;;5542:40;;5473:16;;5542:40;5462:128;5399:191;:::o;50538:200::-;50612:12;50638:8;-1:-1:-1;;;;;50630:22:0;50661:7;50630:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50611:63;;;50693:7;50685:45;;;;-1:-1:-1;;;50685:45:0;;10565:2:1;50685:45:0;;;10547:21:1;10604:2;10584:18;;;10577:30;10643:27;10623:18;;;10616:55;10688:18;;50685:45:0;10363:349:1;42507:667:0;42691:72;;-1:-1:-1;;;42691:72:0;;42670:4;;-1:-1:-1;;;;;42691:36:0;;;;;:72;;2933:10;;42742:4;;42748:7;;42757:5;;42691:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42691:72:0;;;;;;;;-1:-1:-1;;42691:72:0;;;;;;;;;;;;:::i;:::-;;;42687:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42925:13:0;;42921:235;;42971:40;;-1:-1:-1;;;42971:40:0;;;;;;;;;;;42921:235;43114:6;43108:13;43099:6;43095:2;43091:15;43084:38;42687:480;-1:-1:-1;;;;;;42810:55:0;-1:-1:-1;;;42810:55:0;;-1:-1:-1;42687:480:0;42507:667;;;;;;:::o;47815:113::-;47875:13;47908:12;47901:19;;;;;:::i;415:723::-;471:13;692:10;688:53;;-1:-1:-1;;719:10:0;;;;;;;;;;;;-1:-1:-1;;;719:10:0;;;;;415:723::o;688:53::-;766:5;751:12;807:78;814:9;;807:78;;840:8;;;;:::i;:::-;;-1:-1:-1;863:10:0;;-1:-1:-1;871:2:0;863:10;;:::i;:::-;;;807:78;;;895:19;927:6;-1:-1:-1;;;;;917:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;917:17:0;;895:39;;945:154;952:10;;945:154;;979:11;989:1;979:11;;:::i;:::-;;-1:-1:-1;1048:10:0;1056:2;1048:5;:10;:::i;:::-;1035:24;;:2;:24;:::i;:::-;1022:39;;1005:6;1012;1005:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1005:56:0;;;;;;;;-1:-1:-1;1076:11:0;1085:2;1076:11;;:::i;:::-;;;945:154;;34311:163;34434:32;34440:2;34444:8;34454:5;34461:4;34872:20;34895:13;-1:-1:-1;;;;;34923:16:0;;34919:48;;34948:19;;-1:-1:-1;;;34948:19:0;;;;;;;;;;;34919:48;34982:13;34978:44;;35004:18;;-1:-1:-1;;;35004:18:0;;;;;;;;;;;34978:44;-1:-1:-1;;;;;35373:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;35432:49:0;;-1:-1:-1;;;;;35373:44:0;;;;;;;35432:49;;;-1:-1:-1;;;;;35373:44:0;;;;;;35432:49;;;;;;;;;;;;;;;;35498:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;35548:66:0;;;;-1:-1:-1;;;35598:15:0;35548:66;;;;;;;;;;35498:25;35695:23;;;35739:4;:23;;;;-1:-1:-1;;;;;;35747:13:0;;7125:19;:23;;35747:15;35735:641;;;35783:314;35814:38;;35839:12;;-1:-1:-1;;;;;35814:38:0;;;35831:1;;35814:38;;35831:1;;35814:38;35880:69;35919:1;35923:2;35927:14;;;;;;35943:5;35880:30;:69::i;:::-;35875:174;;35985:40;;-1:-1:-1;;;35985:40:0;;;;;;;;;;;35875:174;36092:3;36076:12;:19;;35783:314;;36178:12;36161:13;;:29;36157:43;;36192:8;;;36157:43;35735:641;;;36241:120;36272:40;;36297:14;;;;;-1:-1:-1;;;;;36272:40:0;;;36289:1;;36272:40;;36289:1;;36272:40;36356:3;36340:12;:19;;36241:120;;35735:641;-1:-1:-1;36390:13:0;:28;36440:60;49543:563;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;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:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;-1:-1:-1;;;;;2036:6:1;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;-1:-1:-1;;;;;3606:6:1;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:184::-;4113:6;4166:2;4154:9;4145:7;4141:23;4137:32;4134:52;;;4182:1;4179;4172:12;4134:52;-1:-1:-1;4205:16:1;;4043:184;-1:-1:-1;4043:184:1:o;4232:254::-;4300:6;4308;4361:2;4349:9;4340:7;4336:23;4332:32;4329:52;;;4377:1;4374;4367:12;4329:52;4413:9;4400:23;4390:33;;4442:38;4476:2;4465:9;4461:18;4442:38;:::i;4491:257::-;4532:3;4570:5;4564:12;4597:6;4592:3;4585:19;4613:63;4669:6;4662:4;4657:3;4653:14;4646:4;4639:5;4635:16;4613:63;:::i;:::-;4730:2;4709:15;-1:-1:-1;;4705:29:1;4696:39;;;;4737:4;4692:50;;4491:257;-1:-1:-1;;4491:257:1:o;4753:637::-;5033:3;5071:6;5065:13;5087:53;5133:6;5128:3;5121:4;5113:6;5109:17;5087:53;:::i;:::-;5203:13;;5162:16;;;;5225:57;5203:13;5162:16;5259:4;5247:17;;5225:57;:::i;:::-;-1:-1:-1;;;5304:20:1;;5333:22;;;5382:1;5371:13;;4753:637;-1:-1:-1;;;;4753:637:1:o;5813:488::-;-1:-1:-1;;;;;6082:15:1;;;6064:34;;6134:15;;6129:2;6114:18;;6107:43;6181:2;6166:18;;6159:34;;;6229:3;6224:2;6209:18;;6202:31;;;6007:4;;6250:45;;6275:19;;6267:6;6250:45;:::i;:::-;6242:53;5813:488;-1:-1:-1;;;;;;5813:488:1:o;6306:632::-;6477:2;6529:21;;;6599:13;;6502:18;;;6621:22;;;6448:4;;6477:2;6700:15;;;;6674:2;6659:18;;;6448:4;6743:169;6757:6;6754:1;6751:13;6743:169;;;6818:13;;6806:26;;6887:15;;;;6852:12;;;;6779:1;6772:9;6743:169;;;-1:-1:-1;6929:3:1;;6306:632;-1:-1:-1;;;;;;6306:632:1:o;7135:219::-;7284:2;7273:9;7266:21;7247:4;7304:44;7344:2;7333:9;7329:18;7321:6;7304:44;:::i;9582:356::-;9784:2;9766:21;;;9803:18;;;9796:30;9862:34;9857:2;9842:18;;9835:62;9929:2;9914:18;;9582:356::o;10899:128::-;10939:3;10970:1;10966:6;10963:1;10960:13;10957:39;;;10976:18;;:::i;:::-;-1:-1:-1;11012:9:1;;10899:128::o;11032:120::-;11072:1;11098;11088:35;;11103:18;;:::i;:::-;-1:-1:-1;11137:9:1;;11032:120::o;11157:168::-;11197:7;11263:1;11259;11255:6;11251:14;11248:1;11245:21;11240:1;11233:9;11226:17;11222:45;11219:71;;;11270:18;;:::i;:::-;-1:-1:-1;11310:9:1;;11157:168::o;11330:125::-;11370:4;11398:1;11395;11392:8;11389:34;;;11403:18;;:::i;:::-;-1:-1:-1;11440:9:1;;11330:125::o;11460:258::-;11532:1;11542:113;11556:6;11553:1;11550:13;11542:113;;;11632:11;;;11626:18;11613:11;;;11606:39;11578:2;11571:10;11542:113;;;11673:6;11670:1;11667:13;11664:48;;;-1:-1:-1;;11708:1:1;11690:16;;11683:27;11460:258::o;11723:380::-;11802:1;11798:12;;;;11845;;;11866:61;;11920:4;11912:6;11908:17;11898:27;;11866:61;11973:2;11965:6;11962:14;11942:18;11939:38;11936:161;;;12019:10;12014:3;12010:20;12007:1;12000:31;12054:4;12051:1;12044:15;12082:4;12079:1;12072:15;11936:161;;11723:380;;;:::o;12108:135::-;12147:3;-1:-1:-1;;12168:17:1;;12165:43;;;12188:18;;:::i;:::-;-1:-1:-1;12235:1:1;12224:13;;12108:135::o;12248:112::-;12280:1;12306;12296:35;;12311:18;;:::i;:::-;-1:-1:-1;12345:9:1;;12248:112::o;12365:127::-;12426:10;12421:3;12417:20;12414:1;12407:31;12457:4;12454:1;12447:15;12481:4;12478:1;12471:15;12497:127;12558:10;12553:3;12549:20;12546:1;12539:31;12589:4;12586:1;12579:15;12613:4;12610:1;12603:15;12629:127;12690:10;12685:3;12681:20;12678:1;12671:31;12721:4;12718:1;12711:15;12745:4;12742:1;12735:15;12761:127;12822:10;12817:3;12813:20;12810:1;12803:31;12853:4;12850:1;12843:15;12877:4;12874:1;12867:15;12893:131;-1:-1:-1;;;;;;12967:32:1;;12957:43;;12947:71;;13014:1;13011;13004:12
Swarm Source
ipfs://be06efb954a3f6eceb29e5fd595dd6d0ee0a1526f71d90ef0e84250424cb14a1
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.