ERC-721
Overview
Max Total Supply
9,421 TMFERS
Holders
98
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
0 TMFERSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TimelessMfers
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-05 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // Creator: Chiru Labs // Creator: Chiru Labs // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) /** * @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); } /** * @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); } // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) /** * @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); } /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A is IERC721, IERC721Metadata { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); // 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; } /** * @dev Returns the total amount of tokens stored by the contract. * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); }// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) /** * @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); }// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) /** * @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); } } } }// OpenZeppelin Contracts v4.4.1 (utils/Context.sol) /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) /** * @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); } }// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) /** * @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; } } /** * @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, IERC721A { using Address for address; using Strings for uint256; // 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 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view override 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; } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ 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 { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); // 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 (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; } } /** * @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) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); // 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; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } } /** * @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(); // 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); } /** * @dev 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(); } // 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); // 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)) } } } } } // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) /** * @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); } } /** * @title ERC721A implementation for TimelessMfers * @author MEV Strategy Group * @dev Based on code by Donkeverse: https://github.com/DonkeVerse/ERC1155D */ contract TimelessMfers is ERC721A, Ownable { // bool public mintingDisabled; bool public uriFrozen; // Token uri string private baseURI; constructor(string memory name, string memory symbol, string memory newBaseURI) ERC721A(name, symbol) { baseURI = newBaseURI; } function _startTokenId() internal pure override returns (uint256) { return 1; } function _baseURI() internal view override returns (string memory) { return baseURI; } function freezeURI() public onlyOwner { uriFrozen = true; } function setURI(string memory _uri) public onlyOwner { require(!uriFrozen, "URIs have been frozen!"); baseURI = _uri; } function disableMint() external onlyOwner { mintingDisabled = true; } function batchMintBatch(address[] calldata tos, uint256[] calldata qtys) external onlyOwner { require(!mintingDisabled, 'Minting is disabled!'); uint256 addrLen = tos.length; for (uint i; i < addrLen;) { _mint(tos[i], qtys[i]); unchecked {++i;} } } function mintBatch(address to, uint256 qty) public onlyOwner { require(!mintingDisabled, 'Minting is disabled!'); _mint(to, qty); } function burn(uint256 id) public { require(ownerOf(id) == msg.sender, "You cant burn this ID!"); _burn(id); } function burnBatch(uint256[] calldata ids) public { uint256 id; for (uint i; i < ids.length;) { id = ids[i]; require(ownerOf(id) == msg.sender, "You cant burn this ID!"); _burn(id); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"newBaseURI","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"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":[{"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":[{"internalType":"address[]","name":"tos","type":"address[]"},{"internalType":"uint256[]","name":"qtys","type":"uint256[]"}],"name":"batchMintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freezeURI","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":[{"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":"qty","type":"uint256"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintingDisabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setURI","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":"uriFrozen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162001e7038038062001e70833981016040819052620000349162000244565b8251839083906200004d906002906020850190620000e7565b50805162000063906003906020840190620000e7565b5050600160005550620000763362000095565b80516200008b906009906020840190620000e7565b5050505062000328565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000f590620002d5565b90600052602060002090601f01602090048101928262000119576000855562000164565b82601f106200013457805160ff191683800117855562000164565b8280016001018555821562000164579182015b828111156200016457825182559160200191906001019062000147565b506200017292915062000176565b5090565b5b8082111562000172576000815560010162000177565b600082601f8301126200019f57600080fd5b81516001600160401b0380821115620001bc57620001bc62000312565b604051601f8301601f19908116603f01168101908282118183101715620001e757620001e762000312565b816040528381526020925086838588010111156200020457600080fd5b600091505b8382101562000228578582018301518183018401529082019062000209565b838211156200023a5760008385830101525b9695505050505050565b6000806000606084860312156200025a57600080fd5b83516001600160401b03808211156200027257600080fd5b62000280878388016200018d565b945060208601519150808211156200029757600080fd5b620002a5878388016200018d565b93506040860151915080821115620002bc57600080fd5b50620002cb868287016200018d565b9150509250925092565b600181811c90821680620002ea57607f821691505b602082108114156200030c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611b3880620003386000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c80636352211e116100de578063b88d4fde11610097578063e4623c1b11610071578063e4623c1b14610341578063e985e9c514610354578063f049a7f014610390578063f2fde38b146103a357600080fd5b8063b88d4fde14610313578063c793803c14610326578063c87b56dd1461032e57600080fd5b80636352211e146102b957806370a08231146102cc578063715018a6146102df5780638da5cb5b146102e757806395d89b41146102f8578063a22cb4651461030057600080fd5b806321afb5ee1161014b578063274e4a1d11610125578063274e4a1d1461027757806334452f381461028b57806342842e0e1461029357806342966c68146102a657600080fd5b806321afb5ee1461023d57806323b872dd14610251578063248b71fc1461026457600080fd5b806301ffc9a71461019357806302fe5305146101bb57806306fdde03146101d0578063081812fc146101e5578063095ea7b31461021057806318160ddd14610223575b600080fd5b6101a66101a1366004611840565b6103b6565b60405190151581526020015b60405180910390f35b6101ce6101c936600461187a565b610408565b005b6101d86104a5565b6040516101b29190611973565b6101f86101f33660046118c2565b610537565b6040516001600160a01b0390911681526020016101b2565b6101ce61021e36600461176a565b61057b565b60015460005403600019015b6040519081526020016101b2565b6008546101a690600160a01b900460ff1681565b6101ce61025f366004611677565b610609565b6101ce61027236600461176a565b610614565b6008546101a690600160a81b900460ff1681565b6101ce610699565b6101ce6102a1366004611677565b6106d8565b6101ce6102b43660046118c2565b6106f3565b6101f86102c73660046118c2565b610758565b61022f6102da366004611629565b61076a565b6101ce6107b8565b6008546001600160a01b03166101f8565b6101d86107ee565b6101ce61030e36600461172e565b6107fd565b6101ce6103213660046116b3565b610893565b6101ce6108e4565b6101d861033c3660046118c2565b610923565b6101ce61034f3660046117ff565b6109a8565b6101a6610362366004611644565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6101ce61039e366004611794565b610a3f565b6101ce6103b1366004611629565b610b1e565b60006001600160e01b031982166380ac58cd60e01b14806103e757506001600160e01b03198216635b5e139f60e01b145b8061040257506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b0316331461043b5760405162461bcd60e51b815260040161043290611986565b60405180910390fd5b600854600160a81b900460ff161561048e5760405162461bcd60e51b8152602060048201526016602482015275555249732068617665206265656e2066726f7a656e2160501b6044820152606401610432565b80516104a19060099060208401906114b4565b5050565b6060600280546104b490611a2a565b80601f01602080910402602001604051908101604052809291908181526020018280546104e090611a2a565b801561052d5780601f106105025761010080835404028352916020019161052d565b820191906000526020600020905b81548152906001019060200180831161051057829003601f168201915b5050505050905090565b600061054282610bb6565b61055f576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061058682610758565b9050806001600160a01b0316836001600160a01b031614156105bb5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906105db57506105d98133610362565b155b156105f9576040516367d9dca160e11b815260040160405180910390fd5b610604838383610bef565b505050565b610604838383610c4b565b6008546001600160a01b0316331461063e5760405162461bcd60e51b815260040161043290611986565b600854600160a01b900460ff161561068f5760405162461bcd60e51b81526020600482015260146024820152734d696e74696e672069732064697361626c65642160601b6044820152606401610432565b6104a18282610e38565b6008546001600160a01b031633146106c35760405162461bcd60e51b815260040161043290611986565b6008805460ff60a01b1916600160a01b179055565b61060483838360405180602001604052806000815250610893565b336106fd82610758565b6001600160a01b03161461074c5760405162461bcd60e51b8152602060048201526016602482015275596f752063616e74206275726e20746869732049442160501b6044820152606401610432565b61075581610f67565b50565b600061076382610f72565b5192915050565b60006001600160a01b038216610793576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b031633146107e25760405162461bcd60e51b815260040161043290611986565b6107ec6000611099565b565b6060600380546104b490611a2a565b6001600160a01b0382163314156108275760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61089e848484610c4b565b6001600160a01b0383163b151580156108c057506108be848484846110eb565b155b156108de576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b0316331461090e5760405162461bcd60e51b815260040161043290611986565b6008805460ff60a81b1916600160a81b179055565b606061092e82610bb6565b61094b57604051630a14c4b560e41b815260040160405180910390fd5b60006109556111e3565b905080516000141561097657604051806020016040528060008152506109a1565b80610980846111f2565b604051602001610991929190611907565b6040516020818303038152906040525b9392505050565b6000805b828110156108de578383828181106109c6576109c6611ac0565b905060200201359150336001600160a01b03166109e283610758565b6001600160a01b031614610a315760405162461bcd60e51b8152602060048201526016602482015275596f752063616e74206275726e20746869732049442160501b6044820152606401610432565b610a3a82610f67565b6109ac565b6008546001600160a01b03163314610a695760405162461bcd60e51b815260040161043290611986565b600854600160a01b900460ff1615610aba5760405162461bcd60e51b81526020600482015260146024820152734d696e74696e672069732064697361626c65642160601b6044820152606401610432565b8260005b81811015610b1657610b0e868683818110610adb57610adb611ac0565b9050602002016020810190610af09190611629565b858584818110610b0257610b02611ac0565b90506020020135610e38565b600101610abe565b505050505050565b6008546001600160a01b03163314610b485760405162461bcd60e51b815260040161043290611986565b6001600160a01b038116610bad5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610432565b61075581611099565b600081600111158015610bca575060005482105b8015610402575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610c5682610f72565b9050836001600160a01b031681600001516001600160a01b031614610c8d5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610cab5750610cab8533610362565b80610cc6575033610cbb84610537565b6001600160a01b0316145b905080610ce657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610d0d57604051633a954ecd60e21b815260040160405180910390fd5b610d1960008487610bef565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116610ded576000548214610ded57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6000546001600160a01b038316610e6157604051622e076360e81b815260040160405180910390fd5b81610e7f5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168a0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168a01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210610f1b5750600055505050565b6107558160006112ef565b60408051606081018252600080825260208201819052918101919091528180600111158015610fa2575060005481105b1561108057600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061107e5780516001600160a01b031615611015579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611079579392505050565b611015565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611120903390899088908890600401611936565b602060405180830381600087803b15801561113a57600080fd5b505af192505050801561116a575060408051601f3d908101601f191682019092526111679181019061185d565b60015b6111c5573d808015611198576040519150601f19603f3d011682016040523d82523d6000602084013e61119d565b606091505b5080516111bd576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546104b490611a2a565b6060816112165750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611240578061122a81611a65565b91506112399050600a836119d3565b915061121a565b6000816001600160401b0381111561125a5761125a611ad6565b6040519080825280601f01601f191660200182016040528015611284576020820181803683370190505b5090505b84156111db576112996001836119e7565b91506112a6600a86611a80565b6112b19060306119bb565b60f81b8183815181106112c6576112c6611ac0565b60200101906001600160f81b031916908160001a9053506112e8600a866119d3565b9450611288565b60006112fa83610f72565b80519091508215611360576000336001600160a01b038316148061132357506113238233610362565b8061133e57503361133386610537565b6001600160a01b0316145b90508061135e57604051632ce44b5f60e11b815260040160405180910390fd5b505b61136c60008583610bef565b6001600160a01b0380821660008181526005602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526004909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b17855591890180845292208054919490911661146a57600054821461146a57805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a4505060018054810190555050565b8280546114c090611a2a565b90600052602060002090601f0160209004810192826114e25760008555611528565b82601f106114fb57805160ff1916838001178555611528565b82800160010185558215611528579182015b8281111561152857825182559160200191906001019061150d565b50611534929150611538565b5090565b5b808211156115345760008155600101611539565b60006001600160401b038084111561156757611567611ad6565b604051601f8501601f19908116603f0116810190828211818310171561158f5761158f611ad6565b816040528093508581528686860111156115a857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146115d957600080fd5b919050565b60008083601f8401126115f057600080fd5b5081356001600160401b0381111561160757600080fd5b6020830191508360208260051b850101111561162257600080fd5b9250929050565b60006020828403121561163b57600080fd5b6109a1826115c2565b6000806040838503121561165757600080fd5b611660836115c2565b915061166e602084016115c2565b90509250929050565b60008060006060848603121561168c57600080fd5b611695846115c2565b92506116a3602085016115c2565b9150604084013590509250925092565b600080600080608085870312156116c957600080fd5b6116d2856115c2565b93506116e0602086016115c2565b92506040850135915060608501356001600160401b0381111561170257600080fd5b8501601f8101871361171357600080fd5b6117228782356020840161154d565b91505092959194509250565b6000806040838503121561174157600080fd5b61174a836115c2565b91506020830135801515811461175f57600080fd5b809150509250929050565b6000806040838503121561177d57600080fd5b611786836115c2565b946020939093013593505050565b600080600080604085870312156117aa57600080fd5b84356001600160401b03808211156117c157600080fd5b6117cd888389016115de565b909650945060208701359150808211156117e657600080fd5b506117f3878288016115de565b95989497509550505050565b6000806020838503121561181257600080fd5b82356001600160401b0381111561182857600080fd5b611834858286016115de565b90969095509350505050565b60006020828403121561185257600080fd5b81356109a181611aec565b60006020828403121561186f57600080fd5b81516109a181611aec565b60006020828403121561188c57600080fd5b81356001600160401b038111156118a257600080fd5b8201601f810184136118b357600080fd5b6111db8482356020840161154d565b6000602082840312156118d457600080fd5b5035919050565b600081518084526118f38160208601602086016119fe565b601f01601f19169290920160200192915050565b600083516119198184602088016119fe565b83519083019061192d8183602088016119fe565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611969908301846118db565b9695505050505050565b6020815260006109a160208301846118db565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156119ce576119ce611a94565b500190565b6000826119e2576119e2611aaa565b500490565b6000828210156119f9576119f9611a94565b500390565b60005b83811015611a19578181015183820152602001611a01565b838111156108de5750506000910152565b600181811c90821680611a3e57607f821691505b60208210811415611a5f57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611a7957611a79611a94565b5060010190565b600082611a8f57611a8f611aaa565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461075557600080fdfea26469706673582212202829b31122a2b357f2a68ac60af82412f6c170efac8281c276a19890449acb0264736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000d54696d656c6573734d66657273000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006544d4645525300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d59556f67344d4d476a47636f71697235367a737950507350334b7139615a5970503951794e633557487375672f00000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061018e5760003560e01c80636352211e116100de578063b88d4fde11610097578063e4623c1b11610071578063e4623c1b14610341578063e985e9c514610354578063f049a7f014610390578063f2fde38b146103a357600080fd5b8063b88d4fde14610313578063c793803c14610326578063c87b56dd1461032e57600080fd5b80636352211e146102b957806370a08231146102cc578063715018a6146102df5780638da5cb5b146102e757806395d89b41146102f8578063a22cb4651461030057600080fd5b806321afb5ee1161014b578063274e4a1d11610125578063274e4a1d1461027757806334452f381461028b57806342842e0e1461029357806342966c68146102a657600080fd5b806321afb5ee1461023d57806323b872dd14610251578063248b71fc1461026457600080fd5b806301ffc9a71461019357806302fe5305146101bb57806306fdde03146101d0578063081812fc146101e5578063095ea7b31461021057806318160ddd14610223575b600080fd5b6101a66101a1366004611840565b6103b6565b60405190151581526020015b60405180910390f35b6101ce6101c936600461187a565b610408565b005b6101d86104a5565b6040516101b29190611973565b6101f86101f33660046118c2565b610537565b6040516001600160a01b0390911681526020016101b2565b6101ce61021e36600461176a565b61057b565b60015460005403600019015b6040519081526020016101b2565b6008546101a690600160a01b900460ff1681565b6101ce61025f366004611677565b610609565b6101ce61027236600461176a565b610614565b6008546101a690600160a81b900460ff1681565b6101ce610699565b6101ce6102a1366004611677565b6106d8565b6101ce6102b43660046118c2565b6106f3565b6101f86102c73660046118c2565b610758565b61022f6102da366004611629565b61076a565b6101ce6107b8565b6008546001600160a01b03166101f8565b6101d86107ee565b6101ce61030e36600461172e565b6107fd565b6101ce6103213660046116b3565b610893565b6101ce6108e4565b6101d861033c3660046118c2565b610923565b6101ce61034f3660046117ff565b6109a8565b6101a6610362366004611644565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6101ce61039e366004611794565b610a3f565b6101ce6103b1366004611629565b610b1e565b60006001600160e01b031982166380ac58cd60e01b14806103e757506001600160e01b03198216635b5e139f60e01b145b8061040257506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b0316331461043b5760405162461bcd60e51b815260040161043290611986565b60405180910390fd5b600854600160a81b900460ff161561048e5760405162461bcd60e51b8152602060048201526016602482015275555249732068617665206265656e2066726f7a656e2160501b6044820152606401610432565b80516104a19060099060208401906114b4565b5050565b6060600280546104b490611a2a565b80601f01602080910402602001604051908101604052809291908181526020018280546104e090611a2a565b801561052d5780601f106105025761010080835404028352916020019161052d565b820191906000526020600020905b81548152906001019060200180831161051057829003601f168201915b5050505050905090565b600061054282610bb6565b61055f576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061058682610758565b9050806001600160a01b0316836001600160a01b031614156105bb5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906105db57506105d98133610362565b155b156105f9576040516367d9dca160e11b815260040160405180910390fd5b610604838383610bef565b505050565b610604838383610c4b565b6008546001600160a01b0316331461063e5760405162461bcd60e51b815260040161043290611986565b600854600160a01b900460ff161561068f5760405162461bcd60e51b81526020600482015260146024820152734d696e74696e672069732064697361626c65642160601b6044820152606401610432565b6104a18282610e38565b6008546001600160a01b031633146106c35760405162461bcd60e51b815260040161043290611986565b6008805460ff60a01b1916600160a01b179055565b61060483838360405180602001604052806000815250610893565b336106fd82610758565b6001600160a01b03161461074c5760405162461bcd60e51b8152602060048201526016602482015275596f752063616e74206275726e20746869732049442160501b6044820152606401610432565b61075581610f67565b50565b600061076382610f72565b5192915050565b60006001600160a01b038216610793576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b031633146107e25760405162461bcd60e51b815260040161043290611986565b6107ec6000611099565b565b6060600380546104b490611a2a565b6001600160a01b0382163314156108275760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61089e848484610c4b565b6001600160a01b0383163b151580156108c057506108be848484846110eb565b155b156108de576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b0316331461090e5760405162461bcd60e51b815260040161043290611986565b6008805460ff60a81b1916600160a81b179055565b606061092e82610bb6565b61094b57604051630a14c4b560e41b815260040160405180910390fd5b60006109556111e3565b905080516000141561097657604051806020016040528060008152506109a1565b80610980846111f2565b604051602001610991929190611907565b6040516020818303038152906040525b9392505050565b6000805b828110156108de578383828181106109c6576109c6611ac0565b905060200201359150336001600160a01b03166109e283610758565b6001600160a01b031614610a315760405162461bcd60e51b8152602060048201526016602482015275596f752063616e74206275726e20746869732049442160501b6044820152606401610432565b610a3a82610f67565b6109ac565b6008546001600160a01b03163314610a695760405162461bcd60e51b815260040161043290611986565b600854600160a01b900460ff1615610aba5760405162461bcd60e51b81526020600482015260146024820152734d696e74696e672069732064697361626c65642160601b6044820152606401610432565b8260005b81811015610b1657610b0e868683818110610adb57610adb611ac0565b9050602002016020810190610af09190611629565b858584818110610b0257610b02611ac0565b90506020020135610e38565b600101610abe565b505050505050565b6008546001600160a01b03163314610b485760405162461bcd60e51b815260040161043290611986565b6001600160a01b038116610bad5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610432565b61075581611099565b600081600111158015610bca575060005482105b8015610402575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610c5682610f72565b9050836001600160a01b031681600001516001600160a01b031614610c8d5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610cab5750610cab8533610362565b80610cc6575033610cbb84610537565b6001600160a01b0316145b905080610ce657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610d0d57604051633a954ecd60e21b815260040160405180910390fd5b610d1960008487610bef565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116610ded576000548214610ded57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6000546001600160a01b038316610e6157604051622e076360e81b815260040160405180910390fd5b81610e7f5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168a0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168a01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210610f1b5750600055505050565b6107558160006112ef565b60408051606081018252600080825260208201819052918101919091528180600111158015610fa2575060005481105b1561108057600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061107e5780516001600160a01b031615611015579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611079579392505050565b611015565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611120903390899088908890600401611936565b602060405180830381600087803b15801561113a57600080fd5b505af192505050801561116a575060408051601f3d908101601f191682019092526111679181019061185d565b60015b6111c5573d808015611198576040519150601f19603f3d011682016040523d82523d6000602084013e61119d565b606091505b5080516111bd576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546104b490611a2a565b6060816112165750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611240578061122a81611a65565b91506112399050600a836119d3565b915061121a565b6000816001600160401b0381111561125a5761125a611ad6565b6040519080825280601f01601f191660200182016040528015611284576020820181803683370190505b5090505b84156111db576112996001836119e7565b91506112a6600a86611a80565b6112b19060306119bb565b60f81b8183815181106112c6576112c6611ac0565b60200101906001600160f81b031916908160001a9053506112e8600a866119d3565b9450611288565b60006112fa83610f72565b80519091508215611360576000336001600160a01b038316148061132357506113238233610362565b8061133e57503361133386610537565b6001600160a01b0316145b90508061135e57604051632ce44b5f60e11b815260040160405180910390fd5b505b61136c60008583610bef565b6001600160a01b0380821660008181526005602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526004909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b17855591890180845292208054919490911661146a57600054821461146a57805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a4505060018054810190555050565b8280546114c090611a2a565b90600052602060002090601f0160209004810192826114e25760008555611528565b82601f106114fb57805160ff1916838001178555611528565b82800160010185558215611528579182015b8281111561152857825182559160200191906001019061150d565b50611534929150611538565b5090565b5b808211156115345760008155600101611539565b60006001600160401b038084111561156757611567611ad6565b604051601f8501601f19908116603f0116810190828211818310171561158f5761158f611ad6565b816040528093508581528686860111156115a857600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146115d957600080fd5b919050565b60008083601f8401126115f057600080fd5b5081356001600160401b0381111561160757600080fd5b6020830191508360208260051b850101111561162257600080fd5b9250929050565b60006020828403121561163b57600080fd5b6109a1826115c2565b6000806040838503121561165757600080fd5b611660836115c2565b915061166e602084016115c2565b90509250929050565b60008060006060848603121561168c57600080fd5b611695846115c2565b92506116a3602085016115c2565b9150604084013590509250925092565b600080600080608085870312156116c957600080fd5b6116d2856115c2565b93506116e0602086016115c2565b92506040850135915060608501356001600160401b0381111561170257600080fd5b8501601f8101871361171357600080fd5b6117228782356020840161154d565b91505092959194509250565b6000806040838503121561174157600080fd5b61174a836115c2565b91506020830135801515811461175f57600080fd5b809150509250929050565b6000806040838503121561177d57600080fd5b611786836115c2565b946020939093013593505050565b600080600080604085870312156117aa57600080fd5b84356001600160401b03808211156117c157600080fd5b6117cd888389016115de565b909650945060208701359150808211156117e657600080fd5b506117f3878288016115de565b95989497509550505050565b6000806020838503121561181257600080fd5b82356001600160401b0381111561182857600080fd5b611834858286016115de565b90969095509350505050565b60006020828403121561185257600080fd5b81356109a181611aec565b60006020828403121561186f57600080fd5b81516109a181611aec565b60006020828403121561188c57600080fd5b81356001600160401b038111156118a257600080fd5b8201601f810184136118b357600080fd5b6111db8482356020840161154d565b6000602082840312156118d457600080fd5b5035919050565b600081518084526118f38160208601602086016119fe565b601f01601f19169290920160200192915050565b600083516119198184602088016119fe565b83519083019061192d8183602088016119fe565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611969908301846118db565b9695505050505050565b6020815260006109a160208301846118db565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156119ce576119ce611a94565b500190565b6000826119e2576119e2611aaa565b500490565b6000828210156119f9576119f9611a94565b500390565b60005b83811015611a19578181015183820152602001611a01565b838111156108de5750506000910152565b600181811c90821680611a3e57607f821691505b60208210811415611a5f57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611a7957611a79611a94565b5060010190565b600082611a8f57611a8f611aaa565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461075557600080fdfea26469706673582212202829b31122a2b357f2a68ac60af82412f6c170efac8281c276a19890449acb0264736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000d54696d656c6573734d66657273000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006544d4645525300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d59556f67344d4d476a47636f71697235367a737950507350334b7139615a5970503951794e633557487375672f00000000000000000000
-----Decoded View---------------
Arg [0] : name (string): TimelessMfers
Arg [1] : symbol (string): TMFERS
Arg [2] : newBaseURI (string): ipfs://QmYUog4MMGjGcoqir56zsyPPsP3Kq9aZYpP9QyNc5WHsug/
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [4] : 54696d656c6573734d6665727300000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 544d464552530000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d59556f67344d4d476a47636f71697235367a7379505073
Arg [9] : 50334b7139615a5970503951794e633557487375672f00000000000000000000
Deployed Bytecode Sourcemap
44415:1582:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25131:305;;;;;;:::i;:::-;;:::i;:::-;;;7238:14:1;;7231:22;7213:41;;7201:2;7186:18;25131:305:0;;;;;;;;44987:132;;;;;;:::i;:::-;;:::i;:::-;;28244:100;;;:::i;:::-;;;;;;;:::i;29747:204::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6536:32:1;;;6518:51;;6506:2;6491:18;29747:204:0;6372:203:1;29310:371:0;;;;;;:::i;:::-;;:::i;24371:312::-;44799:1;24634:12;24424:7;24618:13;:28;-1:-1:-1;;24618:46:0;24371:312;;;9454:25:1;;;9442:2;9427:18;24371:312:0;9308:177:1;44471:27:0;;;;;-1:-1:-1;;;44471:27:0;;;;;;30612:170;;;;;;:::i;:::-;;:::i;45501:141::-;;;;;;:::i;:::-;;:::i;44503:21::-;;;;;-1:-1:-1;;;44503:21:0;;;;;;45125:77;;;:::i;30853:185::-;;;;;;:::i;:::-;;:::i;45648:122::-;;;;;;:::i;:::-;;:::i;28052:125::-;;;;;;:::i;:::-;;:::i;25500:206::-;;;;;;:::i;:::-;;:::i;43428:103::-;;;:::i;42777:87::-;42850:6;;-1:-1:-1;;;;;42850:6:0;42777:87;;28413:104;;;:::i;30023:287::-;;;;;;:::i;:::-;;:::i;31109:369::-;;;;;;:::i;:::-;;:::i;44914:67::-;;;:::i;28588:318::-;;;;;;:::i;:::-;;:::i;45776:216::-;;;;;;:::i;:::-;;:::i;30381:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;30502:25:0;;;30478:4;30502:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30381:164;45208:287;;;;;;:::i;:::-;;:::i;43686:201::-;;;;;;:::i;:::-;;:::i;25131:305::-;25233:4;-1:-1:-1;;;;;;25270:40:0;;-1:-1:-1;;;25270:40:0;;:105;;-1:-1:-1;;;;;;;25327:48:0;;-1:-1:-1;;;25327:48:0;25270:105;:158;;;-1:-1:-1;;;;;;;;;;22367:40:0;;;25392:36;25250:178;25131:305;-1:-1:-1;;25131:305:0:o;44987:132::-;42850:6;;-1:-1:-1;;;;;42850:6:0;19312:10;42997:23;42989:68;;;;-1:-1:-1;;;42989:68:0;;;;;;;:::i;:::-;;;;;;;;;45056:9:::1;::::0;-1:-1:-1;;;45056:9:0;::::1;;;45055:10;45047:45;;;::::0;-1:-1:-1;;;45047:45:0;;8798:2:1;45047:45:0::1;::::0;::::1;8780:21:1::0;8837:2;8817:18;;;8810:30;-1:-1:-1;;;8856:18:1;;;8849:52;8918:18;;45047:45:0::1;8596:346:1::0;45047:45:0::1;45099:14:::0;;::::1;::::0;:7:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;:::-;;44987:132:::0;:::o;28244:100::-;28298:13;28331:5;28324:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28244:100;:::o;29747:204::-;29815:7;29840:16;29848:7;29840;:16::i;:::-;29835:64;;29865:34;;-1:-1:-1;;;29865:34:0;;;;;;;;;;;29835:64;-1:-1:-1;29919:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29919:24:0;;29747:204::o;29310:371::-;29383:13;29399:24;29415:7;29399:15;:24::i;:::-;29383:40;;29444:5;-1:-1:-1;;;;;29438:11:0;:2;-1:-1:-1;;;;;29438:11:0;;29434:48;;;29458:24;;-1:-1:-1;;;29458:24:0;;;;;;;;;;;29434:48;19312:10;-1:-1:-1;;;;;29499:21:0;;;;;;:63;;-1:-1:-1;29525:37:0;29542:5;19312:10;30381:164;:::i;29525:37::-;29524:38;29499:63;29495:138;;;29586:35;;-1:-1:-1;;;29586:35:0;;;;;;;;;;;29495:138;29645:28;29654:2;29658:7;29667:5;29645:8;:28::i;:::-;29372:309;29310:371;;:::o;30612:170::-;30746:28;30756:4;30762:2;30766:7;30746:9;:28::i;45501:141::-;42850:6;;-1:-1:-1;;;;;42850:6:0;19312:10;42997:23;42989:68;;;;-1:-1:-1;;;42989:68:0;;;;;;;:::i;:::-;45578:15:::1;::::0;-1:-1:-1;;;45578:15:0;::::1;;;45577:16;45569:49;;;::::0;-1:-1:-1;;;45569:49:0;;7691:2:1;45569:49:0::1;::::0;::::1;7673:21:1::0;7730:2;7710:18;;;7703:30;-1:-1:-1;;;7749:18:1;;;7742:50;7809:18;;45569:49:0::1;7489:344:1::0;45569:49:0::1;45623:14;45629:2;45633:3;45623:5;:14::i;45125:77::-:0;42850:6;;-1:-1:-1;;;;;42850:6:0;19312:10;42997:23;42989:68;;;;-1:-1:-1;;;42989:68:0;;;;;;;:::i;:::-;45174:15:::1;:22:::0;;-1:-1:-1;;;;45174:22:0::1;-1:-1:-1::0;;;45174:22:0::1;::::0;;45125:77::o;30853:185::-;30991:39;31008:4;31014:2;31018:7;30991:39;;;;;;;;;;;;:16;:39::i;45648:122::-;45711:10;45696:11;45704:2;45696:7;:11::i;:::-;-1:-1:-1;;;;;45696:25:0;;45688:60;;;;-1:-1:-1;;;45688:60:0;;8040:2:1;45688:60:0;;;8022:21:1;8079:2;8059:18;;;8052:30;-1:-1:-1;;;8098:18:1;;;8091:52;8160:18;;45688:60:0;7838:346:1;45688:60:0;45755:9;45761:2;45755:5;:9::i;:::-;45648:122;:::o;28052:125::-;28116:7;28143:21;28156:7;28143:12;:21::i;:::-;:26;;28052:125;-1:-1:-1;;28052:125:0:o;25500:206::-;25564:7;-1:-1:-1;;;;;25588:19:0;;25584:60;;25616:28;;-1:-1:-1;;;25616:28:0;;;;;;;;;;;25584:60;-1:-1:-1;;;;;;25670:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;25670:27:0;;25500:206::o;43428:103::-;42850:6;;-1:-1:-1;;;;;42850:6:0;19312:10;42997:23;42989:68;;;;-1:-1:-1;;;42989:68:0;;;;;;;:::i;:::-;43493:30:::1;43520:1;43493:18;:30::i;:::-;43428:103::o:0;28413:104::-;28469:13;28502:7;28495:14;;;;;:::i;30023:287::-;-1:-1:-1;;;;;30122:24:0;;19312:10;30122:24;30118:54;;;30155:17;;-1:-1:-1;;;30155:17:0;;;;;;;;;;;30118:54;19312:10;30185:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;30185:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;30185:53:0;;;;;;;;;;30254:48;;7213:41:1;;;30185:42:0;;19312:10;30254:48;;7186:18:1;30254:48:0;;;;;;;30023:287;;:::o;31109:369::-;31276:28;31286:4;31292:2;31296:7;31276:9;:28::i;:::-;-1:-1:-1;;;;;31319:13:0;;11661:19;:23;;31319:76;;;;;31339:56;31370:4;31376:2;31380:7;31389:5;31339:30;:56::i;:::-;31338:57;31319:76;31315:156;;;31419:40;;-1:-1:-1;;;31419:40:0;;;;;;;;;;;31315:156;31109:369;;;;:::o;44914:67::-;42850:6;;-1:-1:-1;;;;;42850:6:0;19312:10;42997:23;42989:68;;;;-1:-1:-1;;;42989:68:0;;;;;;;:::i;:::-;44959:9:::1;:16:::0;;-1:-1:-1;;;;44959:16:0::1;-1:-1:-1::0;;;44959:16:0::1;::::0;;44914:67::o;28588:318::-;28661:13;28692:16;28700:7;28692;:16::i;:::-;28687:59;;28717:29;;-1:-1:-1;;;28717:29:0;;;;;;;;;;;28687:59;28759:21;28783:10;:8;:10::i;:::-;28759:34;;28817:7;28811:21;28836:1;28811:26;;:87;;;;;;;;;;;;;;;;;28864:7;28873:18;:7;:16;:18::i;:::-;28847:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28811:87;28804:94;28588:318;-1:-1:-1;;;28588:318:0:o;45776:216::-;45833:10;45853:6;45848:139;45861:14;;;45848:139;;;45890:3;;45894:1;45890:6;;;;;;;:::i;:::-;;;;;;;45885:11;;45926:10;-1:-1:-1;;;;;45911:25:0;:11;45919:2;45911:7;:11::i;:::-;-1:-1:-1;;;;;45911:25:0;;45903:60;;;;-1:-1:-1;;;45903:60:0;;8040:2:1;45903:60:0;;;8022:21:1;8079:2;8059:18;;;8052:30;-1:-1:-1;;;8098:18:1;;;8091:52;8160:18;;45903:60:0;7838:346:1;45903:60:0;45970:9;45976:2;45970:5;:9::i;:::-;45848:139;;45208:287;42850:6;;-1:-1:-1;;;;;42850:6:0;19312:10;42997:23;42989:68;;;;-1:-1:-1;;;42989:68:0;;;;;;;:::i;:::-;45316:15:::1;::::0;-1:-1:-1;;;45316:15:0;::::1;;;45315:16;45307:49;;;::::0;-1:-1:-1;;;45307:49:0;;7691:2:1;45307:49:0::1;::::0;::::1;7673:21:1::0;7730:2;7710:18;;;7703:30;-1:-1:-1;;;7749:18:1;;;7742:50;7809:18;;45307:49:0::1;7489:344:1::0;45307:49:0::1;45383:3:::0;45365:15:::1;45400:90;45417:7;45413:1;:11;45400:90;;;45436:22;45442:3;;45446:1;45442:6;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;45450:4;;45455:1;45450:7;;;;;;;:::i;:::-;;;;;;;45436:5;:22::i;:::-;45478:3;;45400:90;;;;45300:195;45208:287:::0;;;;:::o;43686:201::-;42850:6;;-1:-1:-1;;;;;42850:6:0;19312:10;42997:23;42989:68;;;;-1:-1:-1;;;42989:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43775:22:0;::::1;43767:73;;;::::0;-1:-1:-1;;;43767:73:0;;8391:2:1;43767:73:0::1;::::0;::::1;8373:21:1::0;8430:2;8410:18;;;8403:30;8469:34;8449:18;;;8442:62;-1:-1:-1;;;8520:18:1;;;8513:36;8566:19;;43767:73:0::1;8189:402:1::0;43767:73:0::1;43851:28;43870:8;43851:18;:28::i;31733:174::-:0;31790:4;31833:7;44799:1;31814:26;;:53;;;;;31854:13;;31844:7;:23;31814:53;:85;;;;-1:-1:-1;;31872:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;31872:27:0;;;;31871:28;;31733:174::o;40431:196::-;40546:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;40546:29:0;-1:-1:-1;;;;;40546:29:0;;;;;;;;;40591:28;;40546:24;;40591:28;;;;;;;40431:196;;;:::o;35613:2021::-;35728:35;35766:21;35779:7;35766:12;:21::i;:::-;35728:59;;35826:4;-1:-1:-1;;;;;35804:26:0;:13;:18;;;-1:-1:-1;;;;;35804:26:0;;35800:67;;35839:28;;-1:-1:-1;;;35839:28:0;;;;;;;;;;;35800:67;35880:22;19312:10;-1:-1:-1;;;;;35906:20:0;;;;:73;;-1:-1:-1;35943:36:0;35960:4;19312:10;30381:164;:::i;35943:36::-;35906:126;;;-1:-1:-1;19312:10:0;35996:20;36008:7;35996:11;:20::i;:::-;-1:-1:-1;;;;;35996:36:0;;35906:126;35880:153;;36051:17;36046:66;;36077:35;;-1:-1:-1;;;36077:35:0;;;;;;;;;;;36046:66;-1:-1:-1;;;;;36127:16:0;;36123:52;;36152:23;;-1:-1:-1;;;36152:23:0;;;;;;;;;;;36123:52;36240:35;36257:1;36261:7;36270:4;36240:8;:35::i;:::-;-1:-1:-1;;;;;36571:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;36571:31:0;;;-1:-1:-1;;;;;36571:31:0;;;-1:-1:-1;;36571:31:0;;;;;;;36617:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;36617:29:0;;;;;;;;;;;36697:20;;;:11;:20;;;;;;36732:18;;-1:-1:-1;;;;;;36765:49:0;;;;-1:-1:-1;;;36798:15:0;36765:49;;;;;;;;;;37088:11;;37148:24;;;;;37191:13;;36697:20;;37148:24;;37191:13;37187:384;;37401:13;;37386:11;:28;37382:174;;37439:20;;37508:28;;;;-1:-1:-1;;;;;37482:54:0;-1:-1:-1;;;37482:54:0;-1:-1:-1;;;;;;37482:54:0;;;-1:-1:-1;;;;;37439:20:0;;37482:54;;;;37382:174;36546:1036;;;37618:7;37614:2;-1:-1:-1;;;;;37599:27:0;37608:4;-1:-1:-1;;;;;37599:27:0;;;;;;;;;;;35717:1917;;35613:2021;;;:::o;34331:1028::-;34396:20;34419:13;-1:-1:-1;;;;;34447:16:0;;34443:48;;34472:19;;-1:-1:-1;;;34472:19:0;;;;;;;;;;;34443:48;34506:13;34502:44;;34528:18;;-1:-1:-1;;;34528:18:0;;;;;;;;;;;34502:44;-1:-1:-1;;;;;34823:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;34882:49:0;;-1:-1:-1;;;;;34823:44:0;;;;;;;34882:49;;;;-1:-1:-1;;34823:44:0;;;;;;34882:49;;;;;;;;;;;;;;;;34948:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;34998:66:0;;;;-1:-1:-1;;;35048:15:0;34998:66;;;;;;;;;;34948:25;35145:23;;;35185:111;35212:40;;35237:14;;;;;-1:-1:-1;;;;;35212:40:0;;;35229:1;;35212:40;;35229:1;;35212:40;35291:3;35276:12;:18;35185:111;;-1:-1:-1;35312:13:0;:28;-1:-1:-1;;;34331:1028:0:o;37712:89::-;37772:21;37778:7;37787:5;37772;:21::i;26881:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;26992:7:0;;44799:1;27041:23;;:47;;;;;27075:13;;27068:4;:20;27041:47;27037:886;;;27109:31;27143:17;;;:11;:17;;;;;;;;;27109:51;;;;;;;;;-1:-1:-1;;;;;27109:51:0;;;;-1:-1:-1;;;27109:51:0;;-1:-1:-1;;;;;27109:51:0;;;;;;;;-1:-1:-1;;;27109:51:0;;;;;;;;;;;;;;27179:729;;27229:14;;-1:-1:-1;;;;;27229:28:0;;27225:101;;27293:9;26881:1109;-1:-1:-1;;;26881:1109:0:o;27225:101::-;-1:-1:-1;;;27668:6:0;27713:17;;;;:11;:17;;;;;;;;;27701:29;;;;;;;;;-1:-1:-1;;;;;27701:29:0;;;;;-1:-1:-1;;;27701:29:0;;-1:-1:-1;;;;;27701:29:0;;;;;;;;-1:-1:-1;;;27701:29:0;;;;;;;;;;;;;27761:28;27757:109;;27829:9;26881:1109;-1:-1:-1;;;26881:1109:0:o;27757:109::-;27628:261;;;27090:833;27037:886;27951:31;;-1:-1:-1;;;27951:31:0;;;;;;;;;;;44047:191;44140:6;;;-1:-1:-1;;;;;44157:17:0;;;-1:-1:-1;;;;;;44157:17:0;;;;;;;44190:40;;44140:6;;;44157:17;44140:6;;44190:40;;44121:16;;44190:40;44110:128;44047:191;:::o;41119:667::-;41303:72;;-1:-1:-1;;;41303:72:0;;41282:4;;-1:-1:-1;;;;;41303:36:0;;;;;:72;;19312:10;;41354:4;;41360:7;;41369:5;;41303:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41303:72:0;;;;;;;;-1:-1:-1;;41303:72:0;;;;;;;;;;;;:::i;:::-;;;41299:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41537:13:0;;41533:235;;41583:40;;-1:-1:-1;;;41583:40:0;;;;;;;;;;;41533:235;41726:6;41720:13;41711:6;41707:2;41703:15;41696:38;41299:480;-1:-1:-1;;;;;;41422:55:0;-1:-1:-1;;;41422:55:0;;-1:-1:-1;41299:480:0;41119:667;;;;;;:::o;44812:96::-;44864:13;44895:7;44888:14;;;;;:::i;19728:723::-;19784:13;20005:10;20001:53;;-1:-1:-1;;20032:10:0;;;;;;;;;;;;-1:-1:-1;;;20032:10:0;;;;;19728:723::o;20001:53::-;20079:5;20064:12;20120:78;20127:9;;20120:78;;20153:8;;;;:::i;:::-;;-1:-1:-1;20176:10:0;;-1:-1:-1;20184:2:0;20176:10;;:::i;:::-;;;20120:78;;;20208:19;20240:6;-1:-1:-1;;;;;20230:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20230:17:0;;20208:39;;20258:154;20265:10;;20258:154;;20292:11;20302:1;20292:11;;:::i;:::-;;-1:-1:-1;20361:10:0;20369:2;20361:5;:10;:::i;:::-;20348:24;;:2;:24;:::i;:::-;20335:39;;20318:6;20325;20318:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;20318:56:0;;;;;;;;-1:-1:-1;20389:11:0;20398:2;20389:11;;:::i;:::-;;;20258:154;;38030:2283;38110:35;38148:21;38161:7;38148:12;:21::i;:::-;38197:18;;38110:59;;-1:-1:-1;38228:290:0;;;;38262:22;19312:10;-1:-1:-1;;;;;38288:20:0;;;;:77;;-1:-1:-1;38329:36:0;38346:4;19312:10;30381:164;:::i;38329:36::-;38288:134;;;-1:-1:-1;19312:10:0;38386:20;38398:7;38386:11;:20::i;:::-;-1:-1:-1;;;;;38386:36:0;;38288:134;38262:161;;38445:17;38440:66;;38471:35;;-1:-1:-1;;;38471:35:0;;;;;;;;;;;38440:66;38247:271;38228:290;38582:35;38599:1;38603:7;38612:4;38582:8;:35::i;:::-;-1:-1:-1;;;;;38947:18:0;;;38913:31;38947:18;;;:12;:18;;;;;;;;38980:24;;-1:-1:-1;;;;;;;;;;38980:24:0;;;;;;;;;-1:-1:-1;;38980:24:0;;;;39019:29;;;;;39003:1;39019:29;;;;;;;;-1:-1:-1;;39019:29:0;;;;;;;;;;39181:20;;;:11;:20;;;;;;39216;;-1:-1:-1;;;;39284:15:0;39251:49;;;-1:-1:-1;;;39251:49:0;-1:-1:-1;;;;;;39251:49:0;;;;;;;;;;39315:22;-1:-1:-1;;;39315:22:0;;;39607:11;;;39667:24;;;;;39710:13;;38947:18;;39667:24;;39710:13;39706:384;;39920:13;;39905:11;:28;39901:174;;39958:20;;40027:28;;;;-1:-1:-1;;;;;40001:54:0;-1:-1:-1;;;40001:54:0;-1:-1:-1;;;;;;40001:54:0;;;-1:-1:-1;;;;;39958:20:0;;40001:54;;;;39901:174;-1:-1:-1;;40118:35:0;;40145:7;;-1:-1:-1;40141:1:0;;-1:-1:-1;;;;;;40118:35:0;;;;;40141:1;;40118:35;-1:-1:-1;;40280:12:0;:14;;;;;;-1:-1:-1;;38030:2283:0:o;-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:367::-;891:8;901:6;955:3;948:4;940:6;936:17;932:27;922:55;;973:1;970;963:12;922:55;-1:-1:-1;996:20:1;;-1:-1:-1;;;;;1028:30:1;;1025:50;;;1071:1;1068;1061:12;1025:50;1108:4;1100:6;1096:17;1084:29;;1168:3;1161:4;1151:6;1148:1;1144:14;1136:6;1132:27;1128:38;1125:47;1122:67;;;1185:1;1182;1175:12;1122:67;828:367;;;;;:::o;1200:186::-;1259:6;1312:2;1300:9;1291:7;1287:23;1283:32;1280:52;;;1328:1;1325;1318:12;1280:52;1351:29;1370:9;1351:29;:::i;1391:260::-;1459:6;1467;1520:2;1508:9;1499:7;1495:23;1491:32;1488:52;;;1536:1;1533;1526:12;1488:52;1559:29;1578:9;1559:29;:::i;:::-;1549:39;;1607:38;1641:2;1630:9;1626:18;1607:38;:::i;:::-;1597:48;;1391:260;;;;;:::o;1656:328::-;1733:6;1741;1749;1802:2;1790:9;1781:7;1777:23;1773:32;1770:52;;;1818:1;1815;1808:12;1770:52;1841:29;1860:9;1841:29;:::i;:::-;1831:39;;1889:38;1923:2;1912:9;1908:18;1889:38;:::i;:::-;1879:48;;1974:2;1963:9;1959:18;1946:32;1936:42;;1656:328;;;;;:::o;1989:666::-;2084:6;2092;2100;2108;2161:3;2149:9;2140:7;2136:23;2132:33;2129:53;;;2178:1;2175;2168:12;2129:53;2201:29;2220:9;2201:29;:::i;:::-;2191:39;;2249:38;2283:2;2272:9;2268:18;2249:38;:::i;:::-;2239:48;;2334:2;2323:9;2319:18;2306:32;2296:42;;2389:2;2378:9;2374:18;2361:32;-1:-1:-1;;;;;2408:6:1;2405:30;2402:50;;;2448:1;2445;2438:12;2402:50;2471:22;;2524:4;2516:13;;2512:27;-1:-1:-1;2502:55:1;;2553:1;2550;2543:12;2502:55;2576:73;2641:7;2636:2;2623:16;2618:2;2614;2610:11;2576:73;:::i;:::-;2566:83;;;1989:666;;;;;;;:::o;2660:347::-;2725:6;2733;2786:2;2774:9;2765:7;2761:23;2757:32;2754:52;;;2802:1;2799;2792:12;2754:52;2825:29;2844:9;2825:29;:::i;:::-;2815:39;;2904:2;2893:9;2889:18;2876:32;2951:5;2944:13;2937:21;2930:5;2927:32;2917:60;;2973:1;2970;2963:12;2917:60;2996:5;2986:15;;;2660:347;;;;;:::o;3012:254::-;3080:6;3088;3141:2;3129:9;3120:7;3116:23;3112:32;3109:52;;;3157:1;3154;3147:12;3109:52;3180:29;3199:9;3180:29;:::i;:::-;3170:39;3256:2;3241:18;;;;3228:32;;-1:-1:-1;;;3012:254:1:o;3271:773::-;3393:6;3401;3409;3417;3470:2;3458:9;3449:7;3445:23;3441:32;3438:52;;;3486:1;3483;3476:12;3438:52;3526:9;3513:23;-1:-1:-1;;;;;3596:2:1;3588:6;3585:14;3582:34;;;3612:1;3609;3602:12;3582:34;3651:70;3713:7;3704:6;3693:9;3689:22;3651:70;:::i;:::-;3740:8;;-1:-1:-1;3625:96:1;-1:-1:-1;3828:2:1;3813:18;;3800:32;;-1:-1:-1;3844:16:1;;;3841:36;;;3873:1;3870;3863:12;3841:36;;3912:72;3976:7;3965:8;3954:9;3950:24;3912:72;:::i;:::-;3271:773;;;;-1:-1:-1;4003:8:1;-1:-1:-1;;;;3271:773:1:o;4049:437::-;4135:6;4143;4196:2;4184:9;4175:7;4171:23;4167:32;4164:52;;;4212:1;4209;4202:12;4164:52;4252:9;4239:23;-1:-1:-1;;;;;4277:6:1;4274:30;4271:50;;;4317:1;4314;4307:12;4271:50;4356:70;4418:7;4409:6;4398:9;4394:22;4356:70;:::i;:::-;4445:8;;4330:96;;-1:-1:-1;4049:437:1;-1:-1:-1;;;;4049:437:1:o;4491:245::-;4549:6;4602:2;4590:9;4581:7;4577:23;4573:32;4570:52;;;4618:1;4615;4608:12;4570:52;4657:9;4644:23;4676:30;4700:5;4676:30;:::i;4741:249::-;4810:6;4863:2;4851:9;4842:7;4838:23;4834:32;4831:52;;;4879:1;4876;4869:12;4831:52;4911:9;4905:16;4930:30;4954:5;4930:30;:::i;4995:450::-;5064:6;5117:2;5105:9;5096:7;5092:23;5088:32;5085:52;;;5133:1;5130;5123:12;5085:52;5173:9;5160:23;-1:-1:-1;;;;;5198:6:1;5195:30;5192:50;;;5238:1;5235;5228:12;5192:50;5261:22;;5314:4;5306:13;;5302:27;-1:-1:-1;5292:55:1;;5343:1;5340;5333:12;5292:55;5366:73;5431:7;5426:2;5413:16;5408:2;5404;5400:11;5366:73;:::i;5450:180::-;5509:6;5562:2;5550:9;5541:7;5537:23;5533:32;5530:52;;;5578:1;5575;5568:12;5530:52;-1:-1:-1;5601:23:1;;5450:180;-1:-1:-1;5450:180:1:o;5635:257::-;5676:3;5714:5;5708:12;5741:6;5736:3;5729:19;5757:63;5813:6;5806:4;5801:3;5797:14;5790:4;5783:5;5779:16;5757:63;:::i;:::-;5874:2;5853:15;-1:-1:-1;;5849:29:1;5840:39;;;;5881:4;5836:50;;5635:257;-1:-1:-1;;5635:257:1:o;5897:470::-;6076:3;6114:6;6108:13;6130:53;6176:6;6171:3;6164:4;6156:6;6152:17;6130:53;:::i;:::-;6246:13;;6205:16;;;;6268:57;6246:13;6205:16;6302:4;6290:17;;6268:57;:::i;:::-;6341:20;;5897:470;-1:-1:-1;;;;5897:470:1:o;6580:488::-;-1:-1:-1;;;;;6849:15:1;;;6831:34;;6901:15;;6896:2;6881:18;;6874:43;6948:2;6933:18;;6926:34;;;6996:3;6991:2;6976:18;;6969:31;;;6774:4;;7017:45;;7042:19;;7034:6;7017:45;:::i;:::-;7009:53;6580:488;-1:-1:-1;;;;;;6580:488:1:o;7265:219::-;7414:2;7403:9;7396:21;7377:4;7434:44;7474:2;7463:9;7459:18;7451:6;7434:44;:::i;8947:356::-;9149:2;9131:21;;;9168:18;;;9161:30;9227:34;9222:2;9207:18;;9200:62;9294:2;9279:18;;8947:356::o;9490:128::-;9530:3;9561:1;9557:6;9554:1;9551:13;9548:39;;;9567:18;;:::i;:::-;-1:-1:-1;9603:9:1;;9490:128::o;9623:120::-;9663:1;9689;9679:35;;9694:18;;:::i;:::-;-1:-1:-1;9728:9:1;;9623:120::o;9748:125::-;9788:4;9816:1;9813;9810:8;9807:34;;;9821:18;;:::i;:::-;-1:-1:-1;9858:9:1;;9748:125::o;9878:258::-;9950:1;9960:113;9974:6;9971:1;9968:13;9960:113;;;10050:11;;;10044:18;10031:11;;;10024:39;9996:2;9989:10;9960:113;;;10091:6;10088:1;10085:13;10082:48;;;-1:-1:-1;;10126:1:1;10108:16;;10101:27;9878:258::o;10141:380::-;10220:1;10216:12;;;;10263;;;10284:61;;10338:4;10330:6;10326:17;10316:27;;10284:61;10391:2;10383:6;10380:14;10360:18;10357:38;10354:161;;;10437:10;10432:3;10428:20;10425:1;10418:31;10472:4;10469:1;10462:15;10500:4;10497:1;10490:15;10354:161;;10141:380;;;:::o;10526:135::-;10565:3;-1:-1:-1;;10586:17:1;;10583:43;;;10606:18;;:::i;:::-;-1:-1:-1;10653:1:1;10642:13;;10526:135::o;10666:112::-;10698:1;10724;10714:35;;10729:18;;:::i;:::-;-1:-1:-1;10763:9:1;;10666:112::o;10783:127::-;10844:10;10839:3;10835:20;10832:1;10825:31;10875:4;10872:1;10865:15;10899:4;10896:1;10889:15;10915:127;10976:10;10971:3;10967:20;10964:1;10957:31;11007:4;11004:1;10997:15;11031:4;11028:1;11021:15;11047:127;11108:10;11103:3;11099:20;11096:1;11089:31;11139:4;11136:1;11129:15;11163:4;11160:1;11153:15;11179:127;11240:10;11235:3;11231:20;11228:1;11221:31;11271:4;11268:1;11261:15;11295:4;11292:1;11285:15;11311:131;-1:-1:-1;;;;;;11385:32:1;;11375:43;;11365:71;;11432:1;11429;11422:12
Swarm Source
ipfs://2829b31122a2b357f2a68ac60af82412f6c170efac8281c276a19890449acb02
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.