Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
503 KEVDAY
Holders
67
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 KEVDAYLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
KevinEverydaySelfie
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-04 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/introspection/IERC165.sol pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/utils/Strings.sol pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/Context.sol pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // Creator: Chiru Labs pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). * * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 internal currentIndex; // 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_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), 'ERC721A: global index out of bounds'); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), 'ERC721A: owner index out of bounds'); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } revert('ERC721A: unable to get token of owner by index'); } /** * @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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), 'ERC721A: balance query for the zero address'); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require(owner != address(0), 'ERC721A: number minted query for the zero address'); return uint256(_addressData[owner].numberMinted); } /** * 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) { require(_exists(tokenId), 'ERC721A: owner query for nonexistent token'); unchecked { for (uint256 curr = tokenId; curr >= 0; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } revert('ERC721A: unable to determine the owner of token'); } /** * @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) { require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token'); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, 'ERC721A: approval to current owner'); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), 'ERC721A: approve caller is not owner nor approved for all' ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), 'ERC721A: approved query for nonexistent token'); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), 'ERC721A: approve to caller'); _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 override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), 'ERC721A: transfer to non ERC721Receiver implementer' ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = currentIndex; require(to != address(0), 'ERC721A: mint to the zero address'); require(quantity != 0, 'ERC721A: quantity must be greater than 0'); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1 unchecked { _addressData[to].balance += uint128(quantity); _addressData[to].numberMinted += uint128(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe) { require( _checkOnERC721Received(address(0), to, updatedIndex, _data), 'ERC721A: transfer to non ERC721Receiver implementer' ); } updatedIndex++; } currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved'); require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner'); require(to != address(0), 'ERC721A: transfer to the zero address'); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // 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; _ownerships[tokenId].addr = to; _ownerships[tokenId].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; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @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 address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert('ERC721A: transfer to non ERC721Receiver implementer'); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity >=0.7.0 <0.9.0; contract KevinEverydaySelfie is ERC721A, Ownable { using Strings for uint256; string baseURI; string public baseExtension = ".json"; uint256 public cost = 0.009 ether; uint256 public maxSupply = 555; uint256 public maxMintAmount = 3; uint256 public nftPerAddressLimit = 3; uint256 public constant FREE_MAX_SUPPLY = 169; bool public paused = true; constructor( string memory _name, string memory _symbol, string memory _initBaseURI ) ERC721A(_name, _symbol) { setBaseURI(_initBaseURI); } // internal function _baseURI() internal view virtual override returns (string memory) { return baseURI; } // public function mint(uint256 _mintAmount) public payable { require(!paused, "the contract is paused"); uint256 supply = totalSupply(); require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded"); if (msg.sender != owner()) { require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded"); if (FREE_MAX_SUPPLY >= totalSupply() + _mintAmount) { uint256 ownerMintedCount = numberMinted(msg.sender); require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded"); } else { require(msg.value >= _mintAmount * cost, "Invalid funds provided"); } } _safeMint(msg.sender, _mintAmount); } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } //only owner function setNftPerAddressLimit(uint256 _limit) public onlyOwner { nftPerAddressLimit = _limit; } function setCost(uint256 _newCost) public onlyOwner { cost = _newCost; } function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner { maxMintAmount = _newmaxMintAmount; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function setBaseExtension(string memory _newBaseExtension) public onlyOwner { baseExtension = _newBaseExtension; } function pause(bool _state) public onlyOwner { paused = _state; } function withdraw() public payable onlyOwner { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } }
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":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a0908152620000289160099190620001af565b50661ff973cafa8000600a5561022b600b556003600c819055600d55600e805460ff191660011790553480156200005e57600080fd5b506040516200264d3803806200264d83398101604081905262000081916200030c565b8251839083906200009a906001906020850190620001af565b508051620000b0906002906020840190620001af565b505050620000cd620000c7620000e160201b60201c565b620000e5565b620000d88162000137565b505050620003f0565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6007546001600160a01b03163314620001965760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001ab906008906020840190620001af565b5050565b828054620001bd906200039d565b90600052602060002090601f016020900481019282620001e157600085556200022c565b82601f10620001fc57805160ff19168380011785556200022c565b828001600101855582156200022c579182015b828111156200022c5782518255916020019190600101906200020f565b506200023a9291506200023e565b5090565b5b808211156200023a57600081556001016200023f565b600082601f8301126200026757600080fd5b81516001600160401b0380821115620002845762000284620003da565b604051601f8301601f19908116603f01168101908282118183101715620002af57620002af620003da565b81604052838152602092508683858801011115620002cc57600080fd5b600091505b83821015620002f05785820183015181830184015290820190620002d1565b83821115620003025760008385830101525b9695505050505050565b6000806000606084860312156200032257600080fd5b83516001600160401b03808211156200033a57600080fd5b620003488783880162000255565b945060208601519150808211156200035f57600080fd5b6200036d8783880162000255565b935060408601519150808211156200038457600080fd5b50620003938682870162000255565b9150509250925092565b600181811c90821680620003b257607f821691505b60208210811415620003d457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61224d80620004006000396000f3fe6080604052600436106102045760003560e01c806370a0823111610118578063ba7d2c76116100a0578063d5abeb011161006f578063d5abeb0114610586578063da3ef23f1461059c578063dc33e681146105bc578063e985e9c5146105dc578063f2fde38b1461062557600080fd5b8063ba7d2c761461051b578063c668286214610531578063c87b56dd14610546578063d0eb26b01461056657600080fd5b80638da5cb5b116100e75780638da5cb5b1461049557806395d89b41146104b3578063a0712d68146104c8578063a22cb465146104db578063b88d4fde146104fb57600080fd5b806370a082311461042b578063715018a61461044b5780637f00c7a6146104605780638069876d1461048057600080fd5b806323b872dd1161019b57806344a0d68a1161016a57806344a0d68a146103915780634f6ccce7146103b157806355f804b3146103d15780635c975abb146103f15780636352211e1461040b57600080fd5b806323b872dd146103295780632f745c59146103495780633ccfd60b1461036957806342842e0e1461037157600080fd5b8063095ea7b3116101d7578063095ea7b3146102ba57806313faede6146102da57806318160ddd146102fe578063239c70ae1461031357600080fd5b806301ffc9a71461020957806302329a291461023e57806306fdde0314610260578063081812fc14610282575b600080fd5b34801561021557600080fd5b50610229610224366004611e4d565b610645565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b5061025e610259366004611e32565b6106b2565b005b34801561026c57600080fd5b506102756106f8565b6040516102359190612016565b34801561028e57600080fd5b506102a261029d366004611ed0565b61078a565b6040516001600160a01b039091168152602001610235565b3480156102c657600080fd5b5061025e6102d5366004611e08565b610815565b3480156102e657600080fd5b506102f0600a5481565b604051908152602001610235565b34801561030a57600080fd5b506000546102f0565b34801561031f57600080fd5b506102f0600c5481565b34801561033557600080fd5b5061025e610344366004611d26565b61092d565b34801561035557600080fd5b506102f0610364366004611e08565b610938565b61025e610a95565b34801561037d57600080fd5b5061025e61038c366004611d26565b610b33565b34801561039d57600080fd5b5061025e6103ac366004611ed0565b610b4e565b3480156103bd57600080fd5b506102f06103cc366004611ed0565b610b7d565b3480156103dd57600080fd5b5061025e6103ec366004611e87565b610bdf565b3480156103fd57600080fd5b50600e546102299060ff1681565b34801561041757600080fd5b506102a2610426366004611ed0565b610c20565b34801561043757600080fd5b506102f0610446366004611cd8565b610c32565b34801561045757600080fd5b5061025e610cc3565b34801561046c57600080fd5b5061025e61047b366004611ed0565b610cf9565b34801561048c57600080fd5b506102f060a981565b3480156104a157600080fd5b506007546001600160a01b03166102a2565b3480156104bf57600080fd5b50610275610d28565b61025e6104d6366004611ed0565b610d37565b3480156104e757600080fd5b5061025e6104f6366004611dde565b610f33565b34801561050757600080fd5b5061025e610516366004611d62565b610ff8565b34801561052757600080fd5b506102f0600d5481565b34801561053d57600080fd5b50610275611031565b34801561055257600080fd5b50610275610561366004611ed0565b6110bf565b34801561057257600080fd5b5061025e610581366004611ed0565b61118f565b34801561059257600080fd5b506102f0600b5481565b3480156105a857600080fd5b5061025e6105b7366004611e87565b6111be565b3480156105c857600080fd5b506102f06105d7366004611cd8565b6111fb565b3480156105e857600080fd5b506102296105f7366004611cf3565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561063157600080fd5b5061025e610640366004611cd8565b611206565b60006001600160e01b031982166380ac58cd60e01b148061067657506001600160e01b03198216635b5e139f60e01b145b8061069157506001600160e01b0319821663780e9d6360e01b145b806106ac57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146106e55760405162461bcd60e51b81526004016106dc90612029565b60405180910390fd5b600e805460ff1916911515919091179055565b6060600180546107079061213f565b80601f01602080910402602001604051908101604052809291908181526020018280546107339061213f565b80156107805780601f1061075557610100808354040283529160200191610780565b820191906000526020600020905b81548152906001019060200180831161076357829003601f168201915b5050505050905090565b6000610797826000541190565b6107f95760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084016106dc565b506000908152600560205260409020546001600160a01b031690565b600061082082610c20565b9050806001600160a01b0316836001600160a01b0316141561088f5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016106dc565b336001600160a01b03821614806108ab57506108ab81336105f7565b61091d5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016106dc565b61092883838361129e565b505050565b6109288383836112fa565b600061094383610c32565b821061099c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016106dc565b600080549080805b83811015610a35576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156109f757805192505b876001600160a01b0316836001600160a01b03161415610a2c5786841415610a25575093506106ac92505050565b6001909301925b506001016109a4565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016106dc565b6007546001600160a01b03163314610abf5760405162461bcd60e51b81526004016106dc90612029565b6000610ad36007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b1d576040519150601f19603f3d011682016040523d82523d6000602084013e610b22565b606091505b5050905080610b3057600080fd5b50565b61092883838360405180602001604052806000815250610ff8565b6007546001600160a01b03163314610b785760405162461bcd60e51b81526004016106dc90612029565b600a55565b600080548210610bdb5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016106dc565b5090565b6007546001600160a01b03163314610c095760405162461bcd60e51b81526004016106dc90612029565b8051610c1c906008906020840190611ba6565b5050565b6000610c2b826115df565b5192915050565b60006001600160a01b038216610c9e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016106dc565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610ced5760405162461bcd60e51b81526004016106dc90612029565b610cf760006116b6565b565b6007546001600160a01b03163314610d235760405162461bcd60e51b81526004016106dc90612029565b600c55565b6060600280546107079061213f565b600e5460ff1615610d835760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b60448201526064016106dc565b600054600b54610d9383836120b1565b1115610dda5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016106dc565b6007546001600160a01b03163314610f2957600c54821115610e4a5760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b60648201526084016106dc565b81610e5460005490565b610e5e91906120b1565b60a910610ed4576000610e70336111fb565b600d54909150610e8084836120b1565b1115610ece5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064016106dc565b50610f29565b600a54610ee190836120dd565b341015610f295760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b60448201526064016106dc565b610c1c3383611708565b6001600160a01b038216331415610f8c5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016106dc565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110038484846112fa565b61100f84848484611722565b61102b5760405162461bcd60e51b81526004016106dc9061205e565b50505050565b6009805461103e9061213f565b80601f016020809104026020016040519081016040528092919081815260200182805461106a9061213f565b80156110b75780601f1061108c576101008083540402835291602001916110b7565b820191906000526020600020905b81548152906001019060200180831161109a57829003601f168201915b505050505081565b60606110cc826000541190565b6111305760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106dc565b600061113a611830565b9050600081511161115a5760405180602001604052806000815250611188565b806111648461183f565b600960405160200161117893929190611f15565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146111b95760405162461bcd60e51b81526004016106dc90612029565b600d55565b6007546001600160a01b031633146111e85760405162461bcd60e51b81526004016106dc90612029565b8051610c1c906009906020840190611ba6565b60006106ac8261193d565b6007546001600160a01b031633146112305760405162461bcd60e51b81526004016106dc90612029565b6001600160a01b0381166112955760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106dc565b610b30816116b6565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611305826115df565b80519091506000906001600160a01b0316336001600160a01b0316148061133c5750336113318461078a565b6001600160a01b0316145b8061134e5750815161134e90336105f7565b9050806113b85760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016106dc565b846001600160a01b031682600001516001600160a01b03161461142c5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016106dc565b6001600160a01b0384166114905760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016106dc565b6114a0600084846000015161129e565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff160217905590860180835291205490911661159557611548816000541190565b15611595578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051808201909152600080825260208201526115fe826000541190565b61165d5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016106dc565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156116ac579392505050565b506000190161165f565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c1c8282604051806020016040528060008152506119db565b60006001600160a01b0384163b1561182457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611766903390899088908890600401611fd9565b602060405180830381600087803b15801561178057600080fd5b505af19250505080156117b0575060408051601f3d908101601f191682019092526117ad91810190611e6a565b60015b61180a573d8080156117de576040519150601f19603f3d011682016040523d82523d6000602084013e6117e3565b606091505b5080516118025760405162461bcd60e51b81526004016106dc9061205e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611828565b5060015b949350505050565b6060600880546107079061213f565b6060816118635750506040805180820190915260018152600360fc1b602082015290565b8160005b811561188d57806118778161217a565b91506118869050600a836120c9565b9150611867565b60008167ffffffffffffffff8111156118a8576118a86121eb565b6040519080825280601f01601f1916602001820160405280156118d2576020820181803683370190505b5090505b8415611828576118e76001836120fc565b91506118f4600a86612195565b6118ff9060306120b1565b60f81b818381518110611914576119146121d5565b60200101906001600160f81b031916908160001a905350611936600a866120c9565b94506118d6565b60006001600160a01b0382166119af5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b60648201526084016106dc565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b61092883838360016000546001600160a01b038516611a465760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106dc565b83611aa45760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b60648201526084016106dc565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611b9d5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611b9157611b756000888488611722565b611b915760405162461bcd60e51b81526004016106dc9061205e565b60019182019101611b22565b506000556115d8565b828054611bb29061213f565b90600052602060002090601f016020900481019282611bd45760008555611c1a565b82601f10611bed57805160ff1916838001178555611c1a565b82800160010185558215611c1a579182015b82811115611c1a578251825591602001919060010190611bff565b50610bdb9291505b80821115610bdb5760008155600101611c22565b600067ffffffffffffffff80841115611c5157611c516121eb565b604051601f8501601f19908116603f01168101908282118183101715611c7957611c796121eb565b81604052809350858152868686011115611c9257600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611cc357600080fd5b919050565b80358015158114611cc357600080fd5b600060208284031215611cea57600080fd5b61118882611cac565b60008060408385031215611d0657600080fd5b611d0f83611cac565b9150611d1d60208401611cac565b90509250929050565b600080600060608486031215611d3b57600080fd5b611d4484611cac565b9250611d5260208501611cac565b9150604084013590509250925092565b60008060008060808587031215611d7857600080fd5b611d8185611cac565b9350611d8f60208601611cac565b925060408501359150606085013567ffffffffffffffff811115611db257600080fd5b8501601f81018713611dc357600080fd5b611dd287823560208401611c36565b91505092959194509250565b60008060408385031215611df157600080fd5b611dfa83611cac565b9150611d1d60208401611cc8565b60008060408385031215611e1b57600080fd5b611e2483611cac565b946020939093013593505050565b600060208284031215611e4457600080fd5b61118882611cc8565b600060208284031215611e5f57600080fd5b813561118881612201565b600060208284031215611e7c57600080fd5b815161118881612201565b600060208284031215611e9957600080fd5b813567ffffffffffffffff811115611eb057600080fd5b8201601f81018413611ec157600080fd5b61182884823560208401611c36565b600060208284031215611ee257600080fd5b5035919050565b60008151808452611f01816020860160208601612113565b601f01601f19169290920160200192915050565b600084516020611f288285838a01612113565b855191840191611f3b8184848a01612113565b8554920191600090600181811c9080831680611f5857607f831692505b858310811415611f7657634e487b7160e01b85526022600452602485fd5b808015611f8a5760018114611f9b57611fc8565b60ff19851688528388019550611fc8565b60008b81526020902060005b85811015611fc05781548a820152908401908801611fa7565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061200c90830184611ee9565b9695505050505050565b6020815260006111886020830184611ee9565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600082198211156120c4576120c46121a9565b500190565b6000826120d8576120d86121bf565b500490565b60008160001904831182151516156120f7576120f76121a9565b500290565b60008282101561210e5761210e6121a9565b500390565b60005b8381101561212e578181015183820152602001612116565b8381111561102b5750506000910152565b600181811c9082168061215357607f821691505b6020821081141561217457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561218e5761218e6121a9565b5060010190565b6000826121a4576121a46121bf565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b3057600080fdfea264697066735822122038ae788acaaa9b7c8b0ffee3772848b9ddb4eebfe107a38ef9ea9072176f12f764736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000164b6576696e2045766572796461792053656c666965730000000000000000000000000000000000000000000000000000000000000000000000000000000000064b455644415900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d597238554e6243544e356f71343734574d7069365031795977454c764c356d756e50657a6e5838666e41386d2f00000000000000000000
Deployed Bytecode
0x6080604052600436106102045760003560e01c806370a0823111610118578063ba7d2c76116100a0578063d5abeb011161006f578063d5abeb0114610586578063da3ef23f1461059c578063dc33e681146105bc578063e985e9c5146105dc578063f2fde38b1461062557600080fd5b8063ba7d2c761461051b578063c668286214610531578063c87b56dd14610546578063d0eb26b01461056657600080fd5b80638da5cb5b116100e75780638da5cb5b1461049557806395d89b41146104b3578063a0712d68146104c8578063a22cb465146104db578063b88d4fde146104fb57600080fd5b806370a082311461042b578063715018a61461044b5780637f00c7a6146104605780638069876d1461048057600080fd5b806323b872dd1161019b57806344a0d68a1161016a57806344a0d68a146103915780634f6ccce7146103b157806355f804b3146103d15780635c975abb146103f15780636352211e1461040b57600080fd5b806323b872dd146103295780632f745c59146103495780633ccfd60b1461036957806342842e0e1461037157600080fd5b8063095ea7b3116101d7578063095ea7b3146102ba57806313faede6146102da57806318160ddd146102fe578063239c70ae1461031357600080fd5b806301ffc9a71461020957806302329a291461023e57806306fdde0314610260578063081812fc14610282575b600080fd5b34801561021557600080fd5b50610229610224366004611e4d565b610645565b60405190151581526020015b60405180910390f35b34801561024a57600080fd5b5061025e610259366004611e32565b6106b2565b005b34801561026c57600080fd5b506102756106f8565b6040516102359190612016565b34801561028e57600080fd5b506102a261029d366004611ed0565b61078a565b6040516001600160a01b039091168152602001610235565b3480156102c657600080fd5b5061025e6102d5366004611e08565b610815565b3480156102e657600080fd5b506102f0600a5481565b604051908152602001610235565b34801561030a57600080fd5b506000546102f0565b34801561031f57600080fd5b506102f0600c5481565b34801561033557600080fd5b5061025e610344366004611d26565b61092d565b34801561035557600080fd5b506102f0610364366004611e08565b610938565b61025e610a95565b34801561037d57600080fd5b5061025e61038c366004611d26565b610b33565b34801561039d57600080fd5b5061025e6103ac366004611ed0565b610b4e565b3480156103bd57600080fd5b506102f06103cc366004611ed0565b610b7d565b3480156103dd57600080fd5b5061025e6103ec366004611e87565b610bdf565b3480156103fd57600080fd5b50600e546102299060ff1681565b34801561041757600080fd5b506102a2610426366004611ed0565b610c20565b34801561043757600080fd5b506102f0610446366004611cd8565b610c32565b34801561045757600080fd5b5061025e610cc3565b34801561046c57600080fd5b5061025e61047b366004611ed0565b610cf9565b34801561048c57600080fd5b506102f060a981565b3480156104a157600080fd5b506007546001600160a01b03166102a2565b3480156104bf57600080fd5b50610275610d28565b61025e6104d6366004611ed0565b610d37565b3480156104e757600080fd5b5061025e6104f6366004611dde565b610f33565b34801561050757600080fd5b5061025e610516366004611d62565b610ff8565b34801561052757600080fd5b506102f0600d5481565b34801561053d57600080fd5b50610275611031565b34801561055257600080fd5b50610275610561366004611ed0565b6110bf565b34801561057257600080fd5b5061025e610581366004611ed0565b61118f565b34801561059257600080fd5b506102f0600b5481565b3480156105a857600080fd5b5061025e6105b7366004611e87565b6111be565b3480156105c857600080fd5b506102f06105d7366004611cd8565b6111fb565b3480156105e857600080fd5b506102296105f7366004611cf3565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561063157600080fd5b5061025e610640366004611cd8565b611206565b60006001600160e01b031982166380ac58cd60e01b148061067657506001600160e01b03198216635b5e139f60e01b145b8061069157506001600160e01b0319821663780e9d6360e01b145b806106ac57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b031633146106e55760405162461bcd60e51b81526004016106dc90612029565b60405180910390fd5b600e805460ff1916911515919091179055565b6060600180546107079061213f565b80601f01602080910402602001604051908101604052809291908181526020018280546107339061213f565b80156107805780601f1061075557610100808354040283529160200191610780565b820191906000526020600020905b81548152906001019060200180831161076357829003601f168201915b5050505050905090565b6000610797826000541190565b6107f95760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084016106dc565b506000908152600560205260409020546001600160a01b031690565b600061082082610c20565b9050806001600160a01b0316836001600160a01b0316141561088f5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016106dc565b336001600160a01b03821614806108ab57506108ab81336105f7565b61091d5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016106dc565b61092883838361129e565b505050565b6109288383836112fa565b600061094383610c32565b821061099c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016106dc565b600080549080805b83811015610a35576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156109f757805192505b876001600160a01b0316836001600160a01b03161415610a2c5786841415610a25575093506106ac92505050565b6001909301925b506001016109a4565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016106dc565b6007546001600160a01b03163314610abf5760405162461bcd60e51b81526004016106dc90612029565b6000610ad36007546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b1d576040519150601f19603f3d011682016040523d82523d6000602084013e610b22565b606091505b5050905080610b3057600080fd5b50565b61092883838360405180602001604052806000815250610ff8565b6007546001600160a01b03163314610b785760405162461bcd60e51b81526004016106dc90612029565b600a55565b600080548210610bdb5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016106dc565b5090565b6007546001600160a01b03163314610c095760405162461bcd60e51b81526004016106dc90612029565b8051610c1c906008906020840190611ba6565b5050565b6000610c2b826115df565b5192915050565b60006001600160a01b038216610c9e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016106dc565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610ced5760405162461bcd60e51b81526004016106dc90612029565b610cf760006116b6565b565b6007546001600160a01b03163314610d235760405162461bcd60e51b81526004016106dc90612029565b600c55565b6060600280546107079061213f565b600e5460ff1615610d835760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b60448201526064016106dc565b600054600b54610d9383836120b1565b1115610dda5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b60448201526064016106dc565b6007546001600160a01b03163314610f2957600c54821115610e4a5760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b60648201526084016106dc565b81610e5460005490565b610e5e91906120b1565b60a910610ed4576000610e70336111fb565b600d54909150610e8084836120b1565b1115610ece5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e46542070657220616464726573732065786365656465640000000060448201526064016106dc565b50610f29565b600a54610ee190836120dd565b341015610f295760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a5908199d5b991cc81c1c9bdd9a59195960521b60448201526064016106dc565b610c1c3383611708565b6001600160a01b038216331415610f8c5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016106dc565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110038484846112fa565b61100f84848484611722565b61102b5760405162461bcd60e51b81526004016106dc9061205e565b50505050565b6009805461103e9061213f565b80601f016020809104026020016040519081016040528092919081815260200182805461106a9061213f565b80156110b75780601f1061108c576101008083540402835291602001916110b7565b820191906000526020600020905b81548152906001019060200180831161109a57829003601f168201915b505050505081565b60606110cc826000541190565b6111305760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106dc565b600061113a611830565b9050600081511161115a5760405180602001604052806000815250611188565b806111648461183f565b600960405160200161117893929190611f15565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146111b95760405162461bcd60e51b81526004016106dc90612029565b600d55565b6007546001600160a01b031633146111e85760405162461bcd60e51b81526004016106dc90612029565b8051610c1c906009906020840190611ba6565b60006106ac8261193d565b6007546001600160a01b031633146112305760405162461bcd60e51b81526004016106dc90612029565b6001600160a01b0381166112955760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106dc565b610b30816116b6565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611305826115df565b80519091506000906001600160a01b0316336001600160a01b0316148061133c5750336113318461078a565b6001600160a01b0316145b8061134e5750815161134e90336105f7565b9050806113b85760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016106dc565b846001600160a01b031682600001516001600160a01b03161461142c5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016106dc565b6001600160a01b0384166114905760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016106dc565b6114a0600084846000015161129e565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff160217905590860180835291205490911661159557611548816000541190565b15611595578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051808201909152600080825260208201526115fe826000541190565b61165d5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016106dc565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156116ac579392505050565b506000190161165f565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c1c8282604051806020016040528060008152506119db565b60006001600160a01b0384163b1561182457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611766903390899088908890600401611fd9565b602060405180830381600087803b15801561178057600080fd5b505af19250505080156117b0575060408051601f3d908101601f191682019092526117ad91810190611e6a565b60015b61180a573d8080156117de576040519150601f19603f3d011682016040523d82523d6000602084013e6117e3565b606091505b5080516118025760405162461bcd60e51b81526004016106dc9061205e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611828565b5060015b949350505050565b6060600880546107079061213f565b6060816118635750506040805180820190915260018152600360fc1b602082015290565b8160005b811561188d57806118778161217a565b91506118869050600a836120c9565b9150611867565b60008167ffffffffffffffff8111156118a8576118a86121eb565b6040519080825280601f01601f1916602001820160405280156118d2576020820181803683370190505b5090505b8415611828576118e76001836120fc565b91506118f4600a86612195565b6118ff9060306120b1565b60f81b818381518110611914576119146121d5565b60200101906001600160f81b031916908160001a905350611936600a866120c9565b94506118d6565b60006001600160a01b0382166119af5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b60648201526084016106dc565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b61092883838360016000546001600160a01b038516611a465760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106dc565b83611aa45760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b60648201526084016106dc565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611b9d5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611b9157611b756000888488611722565b611b915760405162461bcd60e51b81526004016106dc9061205e565b60019182019101611b22565b506000556115d8565b828054611bb29061213f565b90600052602060002090601f016020900481019282611bd45760008555611c1a565b82601f10611bed57805160ff1916838001178555611c1a565b82800160010185558215611c1a579182015b82811115611c1a578251825591602001919060010190611bff565b50610bdb9291505b80821115610bdb5760008155600101611c22565b600067ffffffffffffffff80841115611c5157611c516121eb565b604051601f8501601f19908116603f01168101908282118183101715611c7957611c796121eb565b81604052809350858152868686011115611c9257600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611cc357600080fd5b919050565b80358015158114611cc357600080fd5b600060208284031215611cea57600080fd5b61118882611cac565b60008060408385031215611d0657600080fd5b611d0f83611cac565b9150611d1d60208401611cac565b90509250929050565b600080600060608486031215611d3b57600080fd5b611d4484611cac565b9250611d5260208501611cac565b9150604084013590509250925092565b60008060008060808587031215611d7857600080fd5b611d8185611cac565b9350611d8f60208601611cac565b925060408501359150606085013567ffffffffffffffff811115611db257600080fd5b8501601f81018713611dc357600080fd5b611dd287823560208401611c36565b91505092959194509250565b60008060408385031215611df157600080fd5b611dfa83611cac565b9150611d1d60208401611cc8565b60008060408385031215611e1b57600080fd5b611e2483611cac565b946020939093013593505050565b600060208284031215611e4457600080fd5b61118882611cc8565b600060208284031215611e5f57600080fd5b813561118881612201565b600060208284031215611e7c57600080fd5b815161118881612201565b600060208284031215611e9957600080fd5b813567ffffffffffffffff811115611eb057600080fd5b8201601f81018413611ec157600080fd5b61182884823560208401611c36565b600060208284031215611ee257600080fd5b5035919050565b60008151808452611f01816020860160208601612113565b601f01601f19169290920160200192915050565b600084516020611f288285838a01612113565b855191840191611f3b8184848a01612113565b8554920191600090600181811c9080831680611f5857607f831692505b858310811415611f7657634e487b7160e01b85526022600452602485fd5b808015611f8a5760018114611f9b57611fc8565b60ff19851688528388019550611fc8565b60008b81526020902060005b85811015611fc05781548a820152908401908801611fa7565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061200c90830184611ee9565b9695505050505050565b6020815260006111886020830184611ee9565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600082198211156120c4576120c46121a9565b500190565b6000826120d8576120d86121bf565b500490565b60008160001904831182151516156120f7576120f76121a9565b500290565b60008282101561210e5761210e6121a9565b500390565b60005b8381101561212e578181015183820152602001612116565b8381111561102b5750506000910152565b600181811c9082168061215357607f821691505b6020821081141561217457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561218e5761218e6121a9565b5060010190565b6000826121a4576121a46121bf565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b3057600080fdfea264697066735822122038ae788acaaa9b7c8b0ffee3772848b9ddb4eebfe107a38ef9ea9072176f12f764736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000164b6576696e2045766572796461792053656c666965730000000000000000000000000000000000000000000000000000000000000000000000000000000000064b455644415900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d597238554e6243544e356f71343734574d7069365031795977454c764c356d756e50657a6e5838666e41386d2f00000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Kevin Everyday Selfies
Arg [1] : _symbol (string): KEVDAY
Arg [2] : _initBaseURI (string): ipfs://QmYr8UNbCTN5oq474WMpi6P1yYwELvL5munPeznX8fnA8m/
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000016
Arg [4] : 4b6576696e2045766572796461792053656c6669657300000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 4b45564441590000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d597238554e6243544e356f71343734574d706936503179
Arg [9] : 5977454c764c356d756e50657a6e5838666e41386d2f00000000000000000000
Deployed Bytecode Sourcemap
39319:2780:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23805:372;;;;;;;;;;-1:-1:-1;23805:372:0;;;;;:::i;:::-;;:::i;:::-;;;7170:14:1;;7163:22;7145:41;;7133:2;7118:18;23805:372:0;;;;;;;;41871:73;;;;;;;;;;-1:-1:-1;41871:73:0;;;;;:::i;:::-;;:::i;:::-;;25691:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27253:214::-;;;;;;;;;;-1:-1:-1;27253:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6468:32:1;;;6450:51;;6438:2;6423:18;27253:214:0;6304:203:1;26774:413:0;;;;;;;;;;-1:-1:-1;26774:413:0;;;;;:::i;:::-;;:::i;39466:33::-;;;;;;;;;;;;;;;;;;;17506:25:1;;;17494:2;17479:18;39466:33:0;17360:177:1;22062:100:0;;;;;;;;;;-1:-1:-1;22115:7:0;22142:12;22062:100;;39539:32;;;;;;;;;;;;;;;;28129:162;;;;;;;;;;-1:-1:-1;28129:162:0;;;;;:::i;:::-;;:::i;22726:1007::-;;;;;;;;;;-1:-1:-1;22726:1007:0;;;;;:::i;:::-;;:::i;41951:145::-;;;:::i;28362:177::-;;;;;;;;;;-1:-1:-1;28362:177:0;;;;;:::i;:::-;;:::i;41431:80::-;;;;;;;;;;-1:-1:-1;41431:80:0;;;;;:::i;:::-;;:::i;22239:187::-;;;;;;;;;;-1:-1:-1;22239:187:0;;;;;:::i;:::-;;:::i;41639:98::-;;;;;;;;;;-1:-1:-1;41639:98:0;;;;;:::i;:::-;;:::i;39668:25::-;;;;;;;;;;-1:-1:-1;39668:25:0;;;;;;;;25500:124;;;;;;;;;;-1:-1:-1;25500:124:0;;;;;:::i;:::-;;:::i;24241:221::-;;;;;;;;;;-1:-1:-1;24241:221:0;;;;;:::i;:::-;;:::i;38655:94::-;;;;;;;;;;;;;:::i;41517:116::-;;;;;;;;;;-1:-1:-1;41517:116:0;;;;;:::i;:::-;;:::i;39618:45::-;;;;;;;;;;;;39660:3;39618:45;;38004:87;;;;;;;;;;-1:-1:-1;38077:6:0;;-1:-1:-1;;;;;38077:6:0;38004:87;;25860:104;;;;;;;;;;;;;:::i;40007:742::-;;;;;;:::i;:::-;;:::i;27539:288::-;;;;;;;;;;-1:-1:-1;27539:288:0;;;;;:::i;:::-;;:::i;28610:355::-;;;;;;;;;;-1:-1:-1;28610:355:0;;;;;:::i;:::-;;:::i;39576:37::-;;;;;;;;;;;;;;;;39424;;;;;;;;;;;;;:::i;40870:423::-;;;;;;;;;;-1:-1:-1;40870:423:0;;;;;:::i;:::-;;:::i;41319:104::-;;;;;;;;;;-1:-1:-1;41319:104:0;;;;;:::i;:::-;;:::i;39504:30::-;;;;;;;;;;;;;;;;41743:122;;;;;;;;;;-1:-1:-1;41743:122:0;;;;;:::i;:::-;;:::i;40757:107::-;;;;;;;;;;-1:-1:-1;40757:107:0;;;;;:::i;:::-;;:::i;27898:164::-;;;;;;;;;;-1:-1:-1;27898:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28019:25:0;;;27995:4;28019:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27898:164;38904:192;;;;;;;;;;-1:-1:-1;38904:192:0;;;;;:::i;:::-;;:::i;23805:372::-;23907:4;-1:-1:-1;;;;;;23944:40:0;;-1:-1:-1;;;23944:40:0;;:105;;-1:-1:-1;;;;;;;24001:48:0;;-1:-1:-1;;;24001:48:0;23944:105;:172;;;-1:-1:-1;;;;;;;24066:50:0;;-1:-1:-1;;;24066:50:0;23944:172;:225;;;-1:-1:-1;;;;;;;;;;7549:40:0;;;24133:36;23924:245;23805:372;-1:-1:-1;;23805:372:0:o;41871:73::-;38077:6;;-1:-1:-1;;;;;38077:6:0;20163:10;38224:23;38216:68;;;;-1:-1:-1;;;38216:68:0;;;;;;;:::i;:::-;;;;;;;;;41923:6:::1;:15:::0;;-1:-1:-1;;41923:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;41871:73::o;25691:100::-;25745:13;25778:5;25771:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25691:100;:::o;27253:214::-;27321:7;27349:16;27357:7;29277:4;29311:12;-1:-1:-1;29301:22:0;29220:111;27349:16;27341:74;;;;-1:-1:-1;;;27341:74:0;;17148:2:1;27341:74:0;;;17130:21:1;17187:2;17167:18;;;17160:30;17226:34;17206:18;;;17199:62;-1:-1:-1;;;17277:18:1;;;17270:43;17330:19;;27341:74:0;16946:409:1;27341:74:0;-1:-1:-1;27435:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27435:24:0;;27253:214::o;26774:413::-;26847:13;26863:24;26879:7;26863:15;:24::i;:::-;26847:40;;26912:5;-1:-1:-1;;;;;26906:11:0;:2;-1:-1:-1;;;;;26906:11:0;;;26898:58;;;;-1:-1:-1;;;26898:58:0;;14683:2:1;26898:58:0;;;14665:21:1;14722:2;14702:18;;;14695:30;14761:34;14741:18;;;14734:62;-1:-1:-1;;;14812:18:1;;;14805:32;14854:19;;26898:58:0;14481:398:1;26898:58:0;20163:10;-1:-1:-1;;;;;26991:21:0;;;;:62;;-1:-1:-1;27016:37:0;27033:5;20163:10;27898:164;:::i;27016:37::-;26969:169;;;;-1:-1:-1;;;26969:169:0;;10429:2:1;26969:169:0;;;10411:21:1;10468:2;10448:18;;;10441:30;10507:34;10487:18;;;10480:62;10578:27;10558:18;;;10551:55;10623:19;;26969:169:0;10227:421:1;26969:169:0;27151:28;27160:2;27164:7;27173:5;27151:8;:28::i;:::-;26836:351;26774:413;;:::o;28129:162::-;28255:28;28265:4;28271:2;28275:7;28255:9;:28::i;22726:1007::-;22815:7;22851:16;22861:5;22851:9;:16::i;:::-;22843:5;:24;22835:71;;;;-1:-1:-1;;;22835:71:0;;7623:2:1;22835:71:0;;;7605:21:1;7662:2;7642:18;;;7635:30;7701:34;7681:18;;;7674:62;-1:-1:-1;;;7752:18:1;;;7745:32;7794:19;;22835:71:0;7421:398:1;22835:71:0;22917:22;22142:12;;;22917:22;;23180:466;23200:14;23196:1;:18;23180:466;;;23240:31;23274:14;;;:11;:14;;;;;;;;;23240:48;;;;;;;;;-1:-1:-1;;;;;23240:48:0;;;;;-1:-1:-1;;;23240:48:0;;;;;;;;;;;;23311:28;23307:111;;23384:14;;;-1:-1:-1;23307:111:0;23461:5;-1:-1:-1;;;;;23440:26:0;:17;-1:-1:-1;;;;;23440:26:0;;23436:195;;;23510:5;23495:11;:20;23491:85;;;-1:-1:-1;23551:1:0;-1:-1:-1;23544:8:0;;-1:-1:-1;;;23544:8:0;23491:85;23598:13;;;;;23436:195;-1:-1:-1;23216:3:0;;23180:466;;;-1:-1:-1;23669:56:0;;-1:-1:-1;;;23669:56:0;;16317:2:1;23669:56:0;;;16299:21:1;16356:2;16336:18;;;16329:30;16395:34;16375:18;;;16368:62;-1:-1:-1;;;16446:18:1;;;16439:44;16500:19;;23669:56:0;16115:410:1;41951:145:0;38077:6;;-1:-1:-1;;;;;38077:6:0;20163:10;38224:23;38216:68;;;;-1:-1:-1;;;38216:68:0;;;;;;;:::i;:::-;42004:7:::1;42025;38077:6:::0;;-1:-1:-1;;;;;38077:6:0;;38004:87;42025:7:::1;-1:-1:-1::0;;;;;42017:21:0::1;42046;42017:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42003:69;;;42087:2;42079:11;;;::::0;::::1;;41996:100;41951:145::o:0;28362:177::-;28492:39;28509:4;28515:2;28519:7;28492:39;;;;;;;;;;;;:16;:39::i;41431:80::-;38077:6;;-1:-1:-1;;;;;38077:6:0;20163:10;38224:23;38216:68;;;;-1:-1:-1;;;38216:68:0;;;;;;;:::i;:::-;41490:4:::1;:15:::0;41431:80::o;22239:187::-;22306:7;22142:12;;22334:5;:21;22326:69;;;;-1:-1:-1;;;22326:69:0;;9201:2:1;22326:69:0;;;9183:21:1;9240:2;9220:18;;;9213:30;9279:34;9259:18;;;9252:62;-1:-1:-1;;;9330:18:1;;;9323:33;9373:19;;22326:69:0;8999:399:1;22326:69:0;-1:-1:-1;22413:5:0;22239:187::o;41639:98::-;38077:6;;-1:-1:-1;;;;;38077:6:0;20163:10;38224:23;38216:68;;;;-1:-1:-1;;;38216:68:0;;;;;;;:::i;:::-;41710:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;41639:98:::0;:::o;25500:124::-;25564:7;25591:20;25603:7;25591:11;:20::i;:::-;:25;;25500:124;-1:-1:-1;;25500:124:0:o;24241:221::-;24305:7;-1:-1:-1;;;;;24333:19:0;;24325:75;;;;-1:-1:-1;;;24325:75:0;;11611:2:1;24325:75:0;;;11593:21:1;11650:2;11630:18;;;11623:30;11689:34;11669:18;;;11662:62;-1:-1:-1;;;11740:18:1;;;11733:41;11791:19;;24325:75:0;11409:407:1;24325:75:0;-1:-1:-1;;;;;;24426:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;24426:27:0;;24241:221::o;38655:94::-;38077:6;;-1:-1:-1;;;;;38077:6:0;20163:10;38224:23;38216:68;;;;-1:-1:-1;;;38216:68:0;;;;;;;:::i;:::-;38720:21:::1;38738:1;38720:9;:21::i;:::-;38655:94::o:0;41517:116::-;38077:6;;-1:-1:-1;;;;;38077:6:0;20163:10;38224:23;38216:68;;;;-1:-1:-1;;;38216:68:0;;;;;;;:::i;:::-;41594:13:::1;:33:::0;41517:116::o;25860:104::-;25916:13;25949:7;25942:14;;;;;:::i;40007:742::-;40073:6;;;;40072:7;40064:42;;;;-1:-1:-1;;;40064:42:0;;12791:2:1;40064:42:0;;;12773:21:1;12830:2;12810:18;;;12803:30;-1:-1:-1;;;12849:18:1;;;12842:52;12911:18;;40064:42:0;12589:346:1;40064:42:0;40113:14;22142:12;40182:9;;40158:20;40167:11;22142:12;40158:20;:::i;:::-;:33;;40150:68;;;;-1:-1:-1;;;40150:68:0;;10855:2:1;40150:68:0;;;10837:21:1;10894:2;10874:18;;;10867:30;-1:-1:-1;;;10913:18:1;;;10906:52;10975:18;;40150:68:0;10653:346:1;40150:68:0;38077:6;;-1:-1:-1;;;;;38077:6:0;40231:10;:21;40227:470;;40288:13;;40273:11;:28;;40265:77;;;;-1:-1:-1;;;40265:77:0;;11206:2:1;40265:77:0;;;11188:21:1;11245:2;11225:18;;;11218:30;11284:34;11264:18;;;11257:62;-1:-1:-1;;;11335:18:1;;;11328:34;11379:19;;40265:77:0;11004:400:1;40265:77:0;40392:11;40376:13;22115:7;22142:12;;22062:100;40376:13;:27;;;;:::i;:::-;39660:3;40357:46;40353:337;;40420:24;40447;40460:10;40447:12;:24::i;:::-;40528:18;;40420:51;;-1:-1:-1;40494:30:0;40513:11;40420:51;40494:30;:::i;:::-;:52;;40486:93;;;;-1:-1:-1;;;40486:93:0;;8844:2:1;40486:93:0;;;8826:21:1;8883:2;8863:18;;;8856:30;8922;8902:18;;;8895:58;8970:18;;40486:93:0;8642:352:1;40486:93:0;40405:186;40353:337;;;40647:4;;40633:18;;:11;:18;:::i;:::-;40620:9;:31;;40612:66;;;;-1:-1:-1;;;40612:66:0;;14332:2:1;40612:66:0;;;14314:21:1;14371:2;14351:18;;;14344:30;-1:-1:-1;;;14390:18:1;;;14383:52;14452:18;;40612:66:0;14130:346:1;40612:66:0;40703:34;40713:10;40725:11;40703:9;:34::i;27539:288::-;-1:-1:-1;;;;;27634:24:0;;20163:10;27634:24;;27626:63;;;;-1:-1:-1;;;27626:63:0;;13558:2:1;27626:63:0;;;13540:21:1;13597:2;13577:18;;;13570:30;13636:28;13616:18;;;13609:56;13682:18;;27626:63:0;13356:350:1;27626:63:0;20163:10;27702:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;27702:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;27702:53:0;;;;;;;;;;27771:48;;7145:41:1;;;27702:42:0;;20163:10;27771:48;;7118:18:1;27771:48:0;;;;;;;27539:288;;:::o;28610:355::-;28769:28;28779:4;28785:2;28789:7;28769:9;:28::i;:::-;28830:48;28853:4;28859:2;28863:7;28872:5;28830:22;:48::i;:::-;28808:149;;;;-1:-1:-1;;;28808:149:0;;;;;;;:::i;:::-;28610:355;;;;:::o;39424:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;40870:423::-;40968:13;41009:16;41017:7;29277:4;29311:12;-1:-1:-1;29301:22:0;29220:111;41009:16;40993:97;;;;-1:-1:-1;;;40993:97:0;;13142:2:1;40993:97:0;;;13124:21:1;13181:2;13161:18;;;13154:30;13220:34;13200:18;;;13193:62;-1:-1:-1;;;13271:18:1;;;13264:45;13326:19;;40993:97:0;12940:411:1;40993:97:0;41099:28;41130:10;:8;:10::i;:::-;41099:41;;41185:1;41160:14;41154:28;:32;:133;;;;;;;;;;;;;;;;;41222:14;41238:18;:7;:16;:18::i;:::-;41258:13;41205:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41154:133;41147:140;40870:423;-1:-1:-1;;;40870:423:0:o;41319:104::-;38077:6;;-1:-1:-1;;;;;38077:6:0;20163:10;38224:23;38216:68;;;;-1:-1:-1;;;38216:68:0;;;;;;;:::i;:::-;41390:18:::1;:27:::0;41319:104::o;41743:122::-;38077:6;;-1:-1:-1;;;;;38077:6:0;20163:10;38224:23;38216:68;;;;-1:-1:-1;;;38216:68:0;;;;;;;:::i;:::-;41826:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;40757:107::-:0;40815:7;40838:20;40852:5;40838:13;:20::i;38904:192::-;38077:6;;-1:-1:-1;;;;;38077:6:0;20163:10;38224:23;38216:68;;;;-1:-1:-1;;;38216:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38993:22:0;::::1;38985:73;;;::::0;-1:-1:-1;;;38985:73:0;;8026:2:1;38985:73:0::1;::::0;::::1;8008:21:1::0;8065:2;8045:18;;;8038:30;8104:34;8084:18;;;8077:62;-1:-1:-1;;;8155:18:1;;;8148:36;8201:19;;38985:73:0::1;7824:402:1::0;38985:73:0::1;39069:19;39079:8;39069:9;:19::i;34140:196::-:0;34255:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;34255:29:0;-1:-1:-1;;;;;34255:29:0;;;;;;;;;34300:28;;34255:24;;34300:28;;;;;;;34140:196;;;:::o;32020:2002::-;32135:35;32173:20;32185:7;32173:11;:20::i;:::-;32248:18;;32135:58;;-1:-1:-1;32206:22:0;;-1:-1:-1;;;;;32232:34:0;20163:10;-1:-1:-1;;;;;32232:34:0;;:87;;;-1:-1:-1;20163:10:0;32283:20;32295:7;32283:11;:20::i;:::-;-1:-1:-1;;;;;32283:36:0;;32232:87;:154;;;-1:-1:-1;32353:18:0;;32336:50;;20163:10;27898:164;:::i;32336:50::-;32206:181;;32408:17;32400:80;;;;-1:-1:-1;;;32400:80:0;;13913:2:1;32400:80:0;;;13895:21:1;13952:2;13932:18;;;13925:30;13991:34;13971:18;;;13964:62;-1:-1:-1;;;14042:18:1;;;14035:48;14100:19;;32400:80:0;13711:414:1;32400:80:0;32523:4;-1:-1:-1;;;;;32501:26:0;:13;:18;;;-1:-1:-1;;;;;32501:26:0;;32493:77;;;;-1:-1:-1;;;32493:77:0;;12023:2:1;32493:77:0;;;12005:21:1;12062:2;12042:18;;;12035:30;12101:34;12081:18;;;12074:62;-1:-1:-1;;;12152:18:1;;;12145:36;12198:19;;32493:77:0;11821:402:1;32493:77:0;-1:-1:-1;;;;;32589:16:0;;32581:66;;;;-1:-1:-1;;;32581:66:0;;9605:2:1;32581:66:0;;;9587:21:1;9644:2;9624:18;;;9617:30;9683:34;9663:18;;;9656:62;-1:-1:-1;;;9734:18:1;;;9727:35;9779:19;;32581:66:0;9403:401:1;32581:66:0;32768:49;32785:1;32789:7;32798:13;:18;;;32768:8;:49::i;:::-;-1:-1:-1;;;;;33113:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;33113:31:0;;;-1:-1:-1;;;;;33113:31:0;;;-1:-1:-1;;33113:31:0;;;;;;;33159:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;33159:29:0;;;;;;;;;;;;;33205:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;33250:61:0;;;;-1:-1:-1;;;33295:15:0;33250:61;;;;;;33585:11;;;33615:24;;;;;:29;33585:11;;33615:29;33611:295;;33683:20;33691:11;29277:4;29311:12;-1:-1:-1;29301:22:0;29220:111;33683:20;33679:212;;;33760:18;;;33728:24;;;:11;:24;;;;;;;;:50;;33843:28;;;;33801:70;;-1:-1:-1;;;33801:70:0;-1:-1:-1;;;;;;33801:70:0;;;-1:-1:-1;;;;;33728:50:0;;;33801:70;;;;;;;33679:212;33088:829;33953:7;33949:2;-1:-1:-1;;;;;33934:27:0;33943:4;-1:-1:-1;;;;;33934:27:0;;;;;;;;;;;33972:42;32124:1898;;32020:2002;;;:::o;24901:537::-;-1:-1:-1;;;;;;;;;;;;;;;;;25004:16:0;25012:7;29277:4;29311:12;-1:-1:-1;29301:22:0;29220:111;25004:16;24996:71;;;;-1:-1:-1;;;24996:71:0;;8433:2:1;24996:71:0;;;8415:21:1;8472:2;8452:18;;;8445:30;8511:34;8491:18;;;8484:62;-1:-1:-1;;;8562:18:1;;;8555:40;8612:19;;24996:71:0;8231:406:1;24996:71:0;25125:7;25105:245;25172:31;25206:17;;;:11;:17;;;;;;;;;25172:51;;;;;;;;;-1:-1:-1;;;;;25172:51:0;;;;;-1:-1:-1;;;25172:51:0;;;;;;;;;;;;25246:28;25242:93;;25306:9;24901:537;-1:-1:-1;;;24901:537:0:o;25242:93::-;-1:-1:-1;;;25145:6:0;25105:245;;39104:173;39179:6;;;-1:-1:-1;;;;;39196:17:0;;;-1:-1:-1;;;;;;39196:17:0;;;;;;;39229:40;;39179:6;;;39196:17;39179:6;;39229:40;;39160:16;;39229:40;39149:128;39104:173;:::o;29339:104::-;29408:27;29418:2;29422:8;29408:27;;;;;;;;;;;;:9;:27::i;34901:804::-;35056:4;-1:-1:-1;;;;;35077:13:0;;10763:20;10811:8;35073:625;;35113:72;;-1:-1:-1;;;35113:72:0;;-1:-1:-1;;;;;35113:36:0;;;;;:72;;20163:10;;35164:4;;35170:7;;35179:5;;35113:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35113:72:0;;;;;;;;-1:-1:-1;;35113:72:0;;;;;;;;;;;;:::i;:::-;;;35109:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35359:13:0;;35355:273;;35402:61;;-1:-1:-1;;;35402:61:0;;;;;;;:::i;35355:273::-;35578:6;35572:13;35563:6;35559:2;35555:15;35548:38;35109:534;-1:-1:-1;;;;;;35236:55:0;-1:-1:-1;;;35236:55:0;;-1:-1:-1;35229:62:0;;35073:625;-1:-1:-1;35682:4:0;35073:625;34901:804;;;;;;:::o;39886:102::-;39946:13;39975:7;39968:14;;;;;:::i;7915:723::-;7971:13;8192:10;8188:53;;-1:-1:-1;;8219:10:0;;;;;;;;;;;;-1:-1:-1;;;8219:10:0;;;;;7915:723::o;8188:53::-;8266:5;8251:12;8307:78;8314:9;;8307:78;;8340:8;;;;:::i;:::-;;-1:-1:-1;8363:10:0;;-1:-1:-1;8371:2:0;8363:10;;:::i;:::-;;;8307:78;;;8395:19;8427:6;8417:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8417:17:0;;8395:39;;8445:154;8452:10;;8445:154;;8479:11;8489:1;8479:11;;:::i;:::-;;-1:-1:-1;8548:10:0;8556:2;8548:5;:10;:::i;:::-;8535:24;;:2;:24;:::i;:::-;8522:39;;8505:6;8512;8505:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8505:56:0;;;;;;;;-1:-1:-1;8576:11:0;8585:2;8576:11;;:::i;:::-;;;8445:154;;24470:229;24531:7;-1:-1:-1;;;;;24559:19:0;;24551:81;;;;-1:-1:-1;;;24551:81:0;;10011:2:1;24551:81:0;;;9993:21:1;10050:2;10030:18;;;10023:30;10089:34;10069:18;;;10062:62;-1:-1:-1;;;10140:18:1;;;10133:47;10197:19;;24551:81:0;9809:413:1;24551:81:0;-1:-1:-1;;;;;;24658:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;24658:32:0;;-1:-1:-1;;;;;24658:32:0;;24470:229::o;29806:163::-;29929:32;29935:2;29939:8;29949:5;29956:4;30367:20;30390:12;-1:-1:-1;;;;;30421:16:0;;30413:62;;;;-1:-1:-1;;;30413:62:0;;15506:2:1;30413:62:0;;;15488:21:1;15545:2;15525:18;;;15518:30;15584:34;15564:18;;;15557:62;-1:-1:-1;;;15635:18:1;;;15628:31;15676:19;;30413:62:0;15304:397:1;30413:62:0;30494:13;30486:66;;;;-1:-1:-1;;;30486:66:0;;15908:2:1;30486:66:0;;;15890:21:1;15947:2;15927:18;;;15920:30;15986:34;15966:18;;;15959:62;-1:-1:-1;;;16037:18:1;;;16030:38;16085:19;;30486:66:0;15706:404:1;30486:66:0;-1:-1:-1;;;;;30904:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;30904:45:0;;-1:-1:-1;;;;;30904:45:0;;;;;;;;;;30964:50;;;;;;;;;;;;;;31031:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;31081:66:0;;;;-1:-1:-1;;;31131:15:0;31081:66;;;;;;;31031:25;;31216:415;31236:8;31232:1;:12;31216:415;;;31275:38;;31300:12;;-1:-1:-1;;;;;31275:38:0;;;31292:1;;31275:38;;31292:1;;31275:38;31336:4;31332:249;;;31399:59;31430:1;31434:2;31438:12;31452:5;31399:22;:59::i;:::-;31365:196;;;;-1:-1:-1;;;31365:196:0;;;;;;;:::i;:::-;31601:14;;;;;31246:3;31216:415;;;-1:-1:-1;31647:12:0;:27;31698:60;28610:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;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:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:1;4505:39;;;;4546:4;4501:50;;4300:257;-1:-1:-1;;4300:257:1:o;4562:1527::-;4786:3;4824:6;4818:13;4850:4;4863:51;4907:6;4902:3;4897:2;4889:6;4885:15;4863:51;:::i;:::-;4977:13;;4936:16;;;;4999:55;4977:13;4936:16;5021:15;;;4999:55;:::i;:::-;5143:13;;5076:20;;;5116:1;;5203;5225:18;;;;5278;;;;5305:93;;5383:4;5373:8;5369:19;5357:31;;5305:93;5446:2;5436:8;5433:16;5413:18;5410:40;5407:167;;;-1:-1:-1;;;5473:33:1;;5529:4;5526:1;5519:15;5559:4;5480:3;5547:17;5407:167;5590:18;5617:110;;;;5741:1;5736:328;;;;5583:481;;5617:110;-1:-1:-1;;5652:24:1;;5638:39;;5697:20;;;;-1:-1:-1;5617:110:1;;5736:328;17615:1;17608:14;;;17652:4;17639:18;;5831:1;5845:169;5859:8;5856:1;5853:15;5845:169;;;5941:14;;5926:13;;;5919:37;5984:16;;;;5876:10;;5845:169;;;5849:3;;6045:8;6038:5;6034:20;6027:27;;5583:481;-1:-1:-1;6080:3:1;;4562:1527;-1:-1:-1;;;;;;;;;;;4562:1527:1:o;6512:488::-;-1:-1:-1;;;;;6781:15:1;;;6763:34;;6833:15;;6828:2;6813:18;;6806:43;6880:2;6865:18;;6858:34;;;6928:3;6923:2;6908:18;;6901:31;;;6706:4;;6949:45;;6974:19;;6966:6;6949:45;:::i;:::-;6941:53;6512:488;-1:-1:-1;;;;;;6512:488:1:o;7197:219::-;7346:2;7335:9;7328:21;7309:4;7366:44;7406:2;7395:9;7391:18;7383:6;7366:44;:::i;12228:356::-;12430:2;12412:21;;;12449:18;;;12442:30;12508:34;12503:2;12488:18;;12481:62;12575:2;12560:18;;12228:356::o;14884:415::-;15086:2;15068:21;;;15125:2;15105:18;;;15098:30;15164:34;15159:2;15144:18;;15137:62;-1:-1:-1;;;15230:2:1;15215:18;;15208:49;15289:3;15274:19;;14884:415::o;17668:128::-;17708:3;17739:1;17735:6;17732:1;17729:13;17726:39;;;17745:18;;:::i;:::-;-1:-1:-1;17781:9:1;;17668:128::o;17801:120::-;17841:1;17867;17857:35;;17872:18;;:::i;:::-;-1:-1:-1;17906:9:1;;17801:120::o;17926:168::-;17966:7;18032:1;18028;18024:6;18020:14;18017:1;18014:21;18009:1;18002:9;17995:17;17991:45;17988:71;;;18039:18;;:::i;:::-;-1:-1:-1;18079:9:1;;17926:168::o;18099:125::-;18139:4;18167:1;18164;18161:8;18158:34;;;18172:18;;:::i;:::-;-1:-1:-1;18209:9:1;;18099:125::o;18229:258::-;18301:1;18311:113;18325:6;18322:1;18319:13;18311:113;;;18401:11;;;18395:18;18382:11;;;18375:39;18347:2;18340:10;18311:113;;;18442:6;18439:1;18436:13;18433:48;;;-1:-1:-1;;18477:1:1;18459:16;;18452:27;18229:258::o;18492:380::-;18571:1;18567:12;;;;18614;;;18635:61;;18689:4;18681:6;18677:17;18667:27;;18635:61;18742:2;18734:6;18731:14;18711:18;18708:38;18705:161;;;18788:10;18783:3;18779:20;18776:1;18769:31;18823:4;18820:1;18813:15;18851:4;18848:1;18841:15;18705:161;;18492:380;;;:::o;18877:135::-;18916:3;-1:-1:-1;;18937:17:1;;18934:43;;;18957:18;;:::i;:::-;-1:-1:-1;19004:1:1;18993:13;;18877:135::o;19017:112::-;19049:1;19075;19065:35;;19080:18;;:::i;:::-;-1:-1:-1;19114:9:1;;19017:112::o;19134:127::-;19195:10;19190:3;19186:20;19183:1;19176:31;19226:4;19223:1;19216:15;19250:4;19247:1;19240:15;19266:127;19327:10;19322:3;19318:20;19315:1;19308:31;19358:4;19355:1;19348:15;19382:4;19379:1;19372:15;19398:127;19459:10;19454:3;19450:20;19447:1;19440:31;19490:4;19487:1;19480:15;19514:4;19511:1;19504:15;19530:127;19591:10;19586:3;19582:20;19579:1;19572:31;19622:4;19619:1;19612:15;19646:4;19643:1;19636:15;19662:131;-1:-1:-1;;;;;;19736:32:1;;19726:43;;19716:71;;19783:1;19780;19773:12
Swarm Source
ipfs://38ae788acaaa9b7c8b0ffee3772848b9ddb4eebfe107a38ef9ea9072176f12f7
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.