ERC-721
Overview
Max Total Supply
150 CTS
Holders
32
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
7 CTSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
CryptoTaxShield
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-01-07 */ /** https://cryptotaxshield.com/ */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (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/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString(),".json")) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: token.sol //SPDX-License-Identifier: MIT pragma solidity >=0.4.22 <0.9.0; contract CryptoTaxShield is ERC721Enumerable, Ownable { using SafeMath for uint256; using Counters for Counters.Counter; Counters.Counter private _tokenIds; uint256 public MAX_SUPPLY = 2650; // Public sale uint256 public PRICE =300000000000000000; // Pre-sale bool public presale = false; mapping (address => uint256) public preMinted; uint256 public preNFTsMinted; mapping (address => bool) public isWhitelisted; mapping (address => uint256) public VIPAmounts; string public baseTokenURI; constructor(string memory baseUR) ERC721("Crypto Tax Shield", "CTS") { setBaseURI(baseUR); } function _baseURI() internal view virtual override returns (string memory) { return baseTokenURI; } function setBaseURI(string memory _baseTokenURI) public onlyOwner { baseTokenURI = _baseTokenURI; } function setPublicPrice(uint256 _price) public onlyOwner { PRICE = _price; } function setMaxSupply(uint256 _baseTokenURI) public onlyOwner { MAX_SUPPLY = _baseTokenURI; } function mintNFTs(uint256 _count) public payable { uint256 totalMinted = _tokenIds.current(); require(totalMinted.add(_count) <= MAX_SUPPLY, "Not enough NFTs left!"); require(_count > 0, "Cannot mint 0 NFTs."); require(msg.value >= calculatePrice(_count),"Not enough ether to purchase NFTs."); for (uint256 i = 0; i < _count; i++) { _mintSingleNFT(); } } function claimFreeNFTsVIP() public { require(VIPAmounts[msg.sender] > 0, "No free NFTs left!"); uint256 _count = VIPAmounts[msg.sender]; VIPAmounts[msg.sender] = 0; for (uint256 i = 0; i < _count; i++) { _mintSingleNFT(); } } function calculatePrice(uint256 _count) public view returns(uint256) { return _count * PRICE; } function _mintSingleNFT() private { uint256 newTokenID = _tokenIds.current(); if (newTokenID == 0) { _tokenIds.increment(); newTokenID = _tokenIds.current(); } _safeMint(msg.sender, newTokenID); _tokenIds.increment(); } function tokensOfOwner(address _owner) external view returns (uint256[] memory) { uint256 tokenCount = balanceOf(_owner); uint256[] memory tokensId = new uint256[](tokenCount); for (uint256 i = 0; i < tokenCount; i++) { tokensId[i] = tokenOfOwnerByIndex(_owner, i); } return tokensId; } function withdraw() public payable onlyOwner { uint256 balance = address(this).balance; require(balance > 0, "No ether left to withdraw"); (bool success, ) = (msg.sender).call{value: balance}(""); require(success, "Transfer failed."); } function startPublicSale() external onlyOwner { presale = false; } function addToVIPlist (address[] memory _addresses, uint256[] memory _amounts) external onlyOwner { for (uint256 i = 0;i < _addresses.length;i++) { VIPAmounts[_addresses[i]] = _amounts[i]; } } function removeFromVIPlist (address[] memory _addresses) external onlyOwner { for (uint256 i = 0;i < _addresses.length;i++) { VIPAmounts[_addresses[i]] = 0; } } function addToWhitelist(address[] memory _addresses) external onlyOwner { for (uint256 i = 0;i < _addresses.length;i++) { isWhitelisted[_addresses[i]] = true; } } function removeFromWhitelist (address[] memory _addresses) external onlyOwner { for (uint256 i = 0;i < _addresses.length;i++) { isWhitelisted[_addresses[i]] = false; } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"baseUR","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":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"VIPAmounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"addToVIPlist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"calculatePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimFreeNFTsVIP","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintNFTs","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"preMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preNFTsMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"removeFromVIPlist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"removeFromWhitelist","outputs":[],"stateMutability":"nonpayable","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":"_baseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_baseTokenURI","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPublicSale","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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
6080604052610a5a600c55670429d069189e0000600d55600e805460ff191690553480156200002d57600080fd5b5060405162002c4c38038062002c4c83398101604081905262000050916200025d565b604080518082018252601181527010dc9e5c1d1bc815185e0814da1a595b19607a1b60208083019182528351808501909452600384526243545360e81b908401528151919291620000a491600091620001b7565b508051620000ba906001906020840190620001b7565b505050620000d7620000d1620000e960201b60201c565b620000ed565b620000e2816200013f565b506200038c565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b031633146200019e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001b3906013906020840190620001b7565b5050565b828054620001c59062000339565b90600052602060002090601f016020900481019282620001e9576000855562000234565b82601f106200020457805160ff191683800117855562000234565b8280016001018555821562000234579182015b828111156200023457825182559160200191906001019062000217565b506200024292915062000246565b5090565b5b8082111562000242576000815560010162000247565b600060208083850312156200027157600080fd5b82516001600160401b03808211156200028957600080fd5b818501915085601f8301126200029e57600080fd5b815181811115620002b357620002b362000376565b604051601f8201601f19908116603f01168101908382118183101715620002de57620002de62000376565b816040528281528886848701011115620002f757600080fd5b600093505b828410156200031b5784840186015181850187015292850192620002fc565b828411156200032d5760008684830101525b98975050505050505050565b600181811c908216806200034e57607f821691505b602082108114156200037057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6128b0806200039c6000396000f3fe60806040526004361061023b5760003560e01c8063715018a61161012e578063ae104265116100ab578063e81223a71161006f578063e81223a71461067e578063e8a70acf1461069e578063e985e9c5146106cb578063f2fde38b14610714578063fdea8e0b1461073457600080fd5b8063ae104265146105e9578063b88d4fde14610609578063c627525514610629578063c87b56dd14610649578063d547cfb71461066957600080fd5b80638da5cb5b116100f25780638da5cb5b1461055357806395d89b4114610571578063963c4177146105865780639da70495146105b3578063a22cb465146105c957600080fd5b8063715018a6146104c65780637f649783146104db5780637f690c33146104fb5780638462151c146105105780638d859f3e1461053d57600080fd5b80633af32abf116101bc578063548db17411610180578063548db1741461042657806355f804b3146104465780636352211e146104665780636f8b44b01461048657806370a08231146104a657600080fd5b80633af32abf1461039b5780633b4b1381146103cb5780633ccfd60b146103de57806342842e0e146103e65780634f6ccce71461040657600080fd5b806317756f891161020357806317756f891461030657806318160ddd1461032657806323b872dd146103455780632f745c591461036557806332cb6b0c1461038557600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063095ea7b3146102cf5780630c1c972a146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b366004612436565b61074e565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a610779565b60405161026c91906125be565b3480156102a357600080fd5b506102b76102b23660046124b9565b61080b565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b506102ef6102ea366004612315565b6108a5565b005b3480156102fd57600080fd5b506102ef6109bb565b34801561031257600080fd5b506102ef61032136600461233f565b6109f1565b34801561033257600080fd5b506008545b60405190815260200161026c565b34801561035157600080fd5b506102ef610360366004612221565b610a82565b34801561037157600080fd5b50610337610380366004612315565b610ab3565b34801561039157600080fd5b50610337600c5481565b3480156103a757600080fd5b506102606103b63660046121d3565b60116020526000908152604090205460ff1681565b6102ef6103d93660046124b9565b610b49565b6102ef610c78565b3480156103f257600080fd5b506102ef610401366004612221565b610d7b565b34801561041257600080fd5b506103376104213660046124b9565b610d96565b34801561043257600080fd5b506102ef61044136600461233f565b610e29565b34801561045257600080fd5b506102ef610461366004612470565b610ebb565b34801561047257600080fd5b506102b76104813660046124b9565b610ef8565b34801561049257600080fd5b506102ef6104a13660046124b9565b610f6f565b3480156104b257600080fd5b506103376104c13660046121d3565b610f9e565b3480156104d257600080fd5b506102ef611025565b3480156104e757600080fd5b506102ef6104f636600461233f565b61105b565b34801561050757600080fd5b506102ef6110ed565b34801561051c57600080fd5b5061053061052b3660046121d3565b611177565b60405161026c919061257a565b34801561054957600080fd5b50610337600d5481565b34801561055f57600080fd5b50600a546001600160a01b03166102b7565b34801561057d57600080fd5b5061028a611219565b34801561059257600080fd5b506103376105a13660046121d3565b600f6020526000908152604090205481565b3480156105bf57600080fd5b5061033760105481565b3480156105d557600080fd5b506102ef6105e43660046122d9565b611228565b3480156105f557600080fd5b506103376106043660046124b9565b611233565b34801561061557600080fd5b506102ef61062436600461225d565b611243565b34801561063557600080fd5b506102ef6106443660046124b9565b61127b565b34801561065557600080fd5b5061028a6106643660046124b9565b6112aa565b34801561067557600080fd5b5061028a611385565b34801561068a57600080fd5b506102ef610699366004612374565b611413565b3480156106aa57600080fd5b506103376106b93660046121d3565b60126020526000908152604090205481565b3480156106d757600080fd5b506102606106e63660046121ee565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561072057600080fd5b506102ef61072f3660046121d3565b6114b8565b34801561074057600080fd5b50600e546102609060ff1681565b60006001600160e01b0319821663780e9d6360e01b1480610773575061077382611553565b92915050565b6060600080546107889061278c565b80601f01602080910402602001604051908101604052809291908181526020018280546107b49061278c565b80156108015780601f106107d657610100808354040283529160200191610801565b820191906000526020600020905b8154815290600101906020018083116107e457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108895760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108b082610ef8565b9050806001600160a01b0316836001600160a01b0316141561091e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610880565b336001600160a01b038216148061093a575061093a81336106e6565b6109ac5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610880565b6109b683836115a3565b505050565b600a546001600160a01b031633146109e55760405162461bcd60e51b815260040161088090612623565b600e805460ff19169055565b600a546001600160a01b03163314610a1b5760405162461bcd60e51b815260040161088090612623565b60005b8151811015610a7e57600060126000848481518110610a3f57610a3f612838565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080610a76906127c7565b915050610a1e565b5050565b610a8c3382611611565b610aa85760405162461bcd60e51b815260040161088090612658565b6109b6838383611708565b6000610abe83610f9e565b8210610b205760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610880565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000610b54600b5490565b600c54909150610b6482846118b3565b1115610baa5760405162461bcd60e51b81526020600482015260156024820152744e6f7420656e6f756768204e465473206c6566742160581b6044820152606401610880565b60008211610bf05760405162461bcd60e51b815260206004820152601360248201527221b0b73737ba1036b4b73a10181027232a399760691b6044820152606401610880565b610bf982611233565b341015610c535760405162461bcd60e51b815260206004820152602260248201527f4e6f7420656e6f75676820657468657220746f207075726368617365204e4654604482015261399760f11b6064820152608401610880565b60005b828110156109b657610c666118bf565b80610c70816127c7565b915050610c56565b600a546001600160a01b03163314610ca25760405162461bcd60e51b815260040161088090612623565b4780610cf05760405162461bcd60e51b815260206004820152601960248201527f4e6f206574686572206c65667420746f207769746864726177000000000000006044820152606401610880565b604051600090339083908381818185875af1925050503d8060008114610d32576040519150601f19603f3d011682016040523d82523d6000602084013e610d37565b606091505b5050905080610a7e5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610880565b6109b683838360405180602001604052806000815250611243565b6000610da160085490565b8210610e045760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610880565b60088281548110610e1757610e17612838565b90600052602060002001549050919050565b600a546001600160a01b03163314610e535760405162461bcd60e51b815260040161088090612623565b60005b8151811015610a7e57600060116000848481518110610e7757610e77612838565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610eb3816127c7565b915050610e56565b600a546001600160a01b03163314610ee55760405162461bcd60e51b815260040161088090612623565b8051610a7e90601390602084019061204d565b6000818152600260205260408120546001600160a01b0316806107735760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610880565b600a546001600160a01b03163314610f995760405162461bcd60e51b815260040161088090612623565b600c55565b60006001600160a01b0382166110095760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610880565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461104f5760405162461bcd60e51b815260040161088090612623565b61105960006118fc565b565b600a546001600160a01b031633146110855760405162461bcd60e51b815260040161088090612623565b60005b8151811015610a7e576001601160008484815181106110a9576110a9612838565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806110e5816127c7565b915050611088565b3360009081526012602052604090205461113e5760405162461bcd60e51b81526020600482015260126024820152714e6f2066726565204e465473206c6566742160701b6044820152606401610880565b336000908152601260205260408120805490829055905b81811015610a7e576111656118bf565b8061116f816127c7565b915050611155565b6060600061118483610f9e565b905060008167ffffffffffffffff8111156111a1576111a161284e565b6040519080825280602002602001820160405280156111ca578160200160208202803683370190505b50905060005b82811015611211576111e28582610ab3565b8282815181106111f4576111f4612838565b602090810291909101015280611209816127c7565b9150506111d0565b509392505050565b6060600180546107889061278c565b610a7e33838361194e565b6000600d5482610773919061272a565b61124d3383611611565b6112695760405162461bcd60e51b815260040161088090612658565b61127584848484611a1d565b50505050565b600a546001600160a01b031633146112a55760405162461bcd60e51b815260040161088090612623565b600d55565b6000818152600260205260409020546060906001600160a01b03166113295760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610880565b6000611333611a50565b90506000815111611353576040518060200160405280600081525061137e565b8061135d84611a5f565b60405160200161136e9291906124fe565b6040516020818303038152906040525b9392505050565b601380546113929061278c565b80601f01602080910402602001604051908101604052809291908181526020018280546113be9061278c565b801561140b5780601f106113e05761010080835404028352916020019161140b565b820191906000526020600020905b8154815290600101906020018083116113ee57829003601f168201915b505050505081565b600a546001600160a01b0316331461143d5760405162461bcd60e51b815260040161088090612623565b60005b82518110156109b65781818151811061145b5761145b612838565b60200260200101516012600085848151811061147957611479612838565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000208190555080806114b0906127c7565b915050611440565b600a546001600160a01b031633146114e25760405162461bcd60e51b815260040161088090612623565b6001600160a01b0381166115475760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610880565b611550816118fc565b50565b60006001600160e01b031982166380ac58cd60e01b148061158457506001600160e01b03198216635b5e139f60e01b145b8061077357506301ffc9a760e01b6001600160e01b0319831614610773565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906115d882610ef8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661168a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610880565b600061169583610ef8565b9050806001600160a01b0316846001600160a01b031614806116d05750836001600160a01b03166116c58461080b565b6001600160a01b0316145b8061170057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661171b82610ef8565b6001600160a01b0316146117835760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610880565b6001600160a01b0382166117e55760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610880565b6117f0838383611b5d565b6117fb6000826115a3565b6001600160a01b0383166000908152600360205260408120805460019290611824908490612749565b90915550506001600160a01b03821660009081526003602052604081208054600192906118529084906126fe565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061137e82846126fe565b60006118ca600b5490565b9050806118e4576118df600b80546001019055565b50600b545b6118ee3382611c15565b611550600b80546001019055565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156119b05760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610880565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611a28848484611708565b611a3484848484611c2f565b6112755760405162461bcd60e51b8152600401610880906125d1565b6060601380546107889061278c565b606081611a835750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611aad5780611a97816127c7565b9150611aa69050600a83612716565b9150611a87565b60008167ffffffffffffffff811115611ac857611ac861284e565b6040519080825280601f01601f191660200182016040528015611af2576020820181803683370190505b5090505b841561170057611b07600183612749565b9150611b14600a866127e2565b611b1f9060306126fe565b60f81b818381518110611b3457611b34612838565b60200101906001600160f81b031916908160001a905350611b56600a86612716565b9450611af6565b6001600160a01b038316611bb857611bb381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611bdb565b816001600160a01b0316836001600160a01b031614611bdb57611bdb8382611d3c565b6001600160a01b038216611bf2576109b681611dd9565b826001600160a01b0316826001600160a01b0316146109b6576109b68282611e88565b610a7e828260405180602001604052806000815250611ecc565b60006001600160a01b0384163b15611d3157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c7390339089908890889060040161253d565b602060405180830381600087803b158015611c8d57600080fd5b505af1925050508015611cbd575060408051601f3d908101601f19168201909252611cba91810190612453565b60015b611d17573d808015611ceb576040519150601f19603f3d011682016040523d82523d6000602084013e611cf0565b606091505b508051611d0f5760405162461bcd60e51b8152600401610880906125d1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611700565b506001949350505050565b60006001611d4984610f9e565b611d539190612749565b600083815260076020526040902054909150808214611da6576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611deb90600190612749565b60008381526009602052604081205460088054939450909284908110611e1357611e13612838565b906000526020600020015490508060088381548110611e3457611e34612838565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611e6c57611e6c612822565b6001900381819060005260206000200160009055905550505050565b6000611e9383610f9e565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b611ed68383611eff565b611ee36000848484611c2f565b6109b65760405162461bcd60e51b8152600401610880906125d1565b6001600160a01b038216611f555760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610880565b6000818152600260205260409020546001600160a01b031615611fba5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610880565b611fc660008383611b5d565b6001600160a01b0382166000908152600360205260408120805460019290611fef9084906126fe565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546120599061278c565b90600052602060002090601f01602090048101928261207b57600085556120c1565b82601f1061209457805160ff19168380011785556120c1565b828001600101855582156120c1579182015b828111156120c15782518255916020019190600101906120a6565b506120cd9291506120d1565b5090565b5b808211156120cd57600081556001016120d2565b600067ffffffffffffffff8311156121005761210061284e565b612113601f8401601f19166020016126a9565b905082815283838301111561212757600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461215557600080fd5b919050565b600082601f83011261216b57600080fd5b8135602061218061217b836126da565b6126a9565b80838252828201915082860187848660051b89010111156121a057600080fd5b60005b858110156121c6576121b48261213e565b845292840192908401906001016121a3565b5090979650505050505050565b6000602082840312156121e557600080fd5b61137e8261213e565b6000806040838503121561220157600080fd5b61220a8361213e565b91506122186020840161213e565b90509250929050565b60008060006060848603121561223657600080fd5b61223f8461213e565b925061224d6020850161213e565b9150604084013590509250925092565b6000806000806080858703121561227357600080fd5b61227c8561213e565b935061228a6020860161213e565b925060408501359150606085013567ffffffffffffffff8111156122ad57600080fd5b8501601f810187136122be57600080fd5b6122cd878235602084016120e6565b91505092959194509250565b600080604083850312156122ec57600080fd5b6122f58361213e565b91506020830135801515811461230a57600080fd5b809150509250929050565b6000806040838503121561232857600080fd5b6123318361213e565b946020939093013593505050565b60006020828403121561235157600080fd5b813567ffffffffffffffff81111561236857600080fd5b6117008482850161215a565b6000806040838503121561238757600080fd5b823567ffffffffffffffff8082111561239f57600080fd5b6123ab8683870161215a565b93506020915081850135818111156123c257600080fd5b85019050601f810186136123d557600080fd5b80356123e361217b826126da565b80828252848201915084840189868560051b870101111561240357600080fd5b600094505b83851015612426578035835260019490940193918501918501612408565b5080955050505050509250929050565b60006020828403121561244857600080fd5b813561137e81612864565b60006020828403121561246557600080fd5b815161137e81612864565b60006020828403121561248257600080fd5b813567ffffffffffffffff81111561249957600080fd5b8201601f810184136124aa57600080fd5b611700848235602084016120e6565b6000602082840312156124cb57600080fd5b5035919050565b600081518084526124ea816020860160208601612760565b601f01601f19169290920160200192915050565b60008351612510818460208801612760565b835190830190612524818360208801612760565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612570908301846124d2565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156125b257835183529284019291840191600101612596565b50909695505050505050565b60208152600061137e60208301846124d2565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156126d2576126d261284e565b604052919050565b600067ffffffffffffffff8211156126f4576126f461284e565b5060051b60200190565b60008219821115612711576127116127f6565b500190565b6000826127255761272561280c565b500490565b6000816000190483118215151615612744576127446127f6565b500290565b60008282101561275b5761275b6127f6565b500390565b60005b8381101561277b578181015183820152602001612763565b838111156112755750506000910152565b600181811c908216806127a057607f821691505b602082108114156127c157634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127db576127db6127f6565b5060010190565b6000826127f1576127f161280c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461155057600080fdfea2646970667358221220c6d692b20ad45cfde162cd6bba84af7f7a4487e0855d6987a7a4caa5d6574b5a64736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002568747470733a2f2f63727970746f746178736869656c642e636f6d2f6d657461646174612f000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061023b5760003560e01c8063715018a61161012e578063ae104265116100ab578063e81223a71161006f578063e81223a71461067e578063e8a70acf1461069e578063e985e9c5146106cb578063f2fde38b14610714578063fdea8e0b1461073457600080fd5b8063ae104265146105e9578063b88d4fde14610609578063c627525514610629578063c87b56dd14610649578063d547cfb71461066957600080fd5b80638da5cb5b116100f25780638da5cb5b1461055357806395d89b4114610571578063963c4177146105865780639da70495146105b3578063a22cb465146105c957600080fd5b8063715018a6146104c65780637f649783146104db5780637f690c33146104fb5780638462151c146105105780638d859f3e1461053d57600080fd5b80633af32abf116101bc578063548db17411610180578063548db1741461042657806355f804b3146104465780636352211e146104665780636f8b44b01461048657806370a08231146104a657600080fd5b80633af32abf1461039b5780633b4b1381146103cb5780633ccfd60b146103de57806342842e0e146103e65780634f6ccce71461040657600080fd5b806317756f891161020357806317756f891461030657806318160ddd1461032657806323b872dd146103455780632f745c591461036557806332cb6b0c1461038557600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063095ea7b3146102cf5780630c1c972a146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b366004612436565b61074e565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a610779565b60405161026c91906125be565b3480156102a357600080fd5b506102b76102b23660046124b9565b61080b565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b506102ef6102ea366004612315565b6108a5565b005b3480156102fd57600080fd5b506102ef6109bb565b34801561031257600080fd5b506102ef61032136600461233f565b6109f1565b34801561033257600080fd5b506008545b60405190815260200161026c565b34801561035157600080fd5b506102ef610360366004612221565b610a82565b34801561037157600080fd5b50610337610380366004612315565b610ab3565b34801561039157600080fd5b50610337600c5481565b3480156103a757600080fd5b506102606103b63660046121d3565b60116020526000908152604090205460ff1681565b6102ef6103d93660046124b9565b610b49565b6102ef610c78565b3480156103f257600080fd5b506102ef610401366004612221565b610d7b565b34801561041257600080fd5b506103376104213660046124b9565b610d96565b34801561043257600080fd5b506102ef61044136600461233f565b610e29565b34801561045257600080fd5b506102ef610461366004612470565b610ebb565b34801561047257600080fd5b506102b76104813660046124b9565b610ef8565b34801561049257600080fd5b506102ef6104a13660046124b9565b610f6f565b3480156104b257600080fd5b506103376104c13660046121d3565b610f9e565b3480156104d257600080fd5b506102ef611025565b3480156104e757600080fd5b506102ef6104f636600461233f565b61105b565b34801561050757600080fd5b506102ef6110ed565b34801561051c57600080fd5b5061053061052b3660046121d3565b611177565b60405161026c919061257a565b34801561054957600080fd5b50610337600d5481565b34801561055f57600080fd5b50600a546001600160a01b03166102b7565b34801561057d57600080fd5b5061028a611219565b34801561059257600080fd5b506103376105a13660046121d3565b600f6020526000908152604090205481565b3480156105bf57600080fd5b5061033760105481565b3480156105d557600080fd5b506102ef6105e43660046122d9565b611228565b3480156105f557600080fd5b506103376106043660046124b9565b611233565b34801561061557600080fd5b506102ef61062436600461225d565b611243565b34801561063557600080fd5b506102ef6106443660046124b9565b61127b565b34801561065557600080fd5b5061028a6106643660046124b9565b6112aa565b34801561067557600080fd5b5061028a611385565b34801561068a57600080fd5b506102ef610699366004612374565b611413565b3480156106aa57600080fd5b506103376106b93660046121d3565b60126020526000908152604090205481565b3480156106d757600080fd5b506102606106e63660046121ee565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561072057600080fd5b506102ef61072f3660046121d3565b6114b8565b34801561074057600080fd5b50600e546102609060ff1681565b60006001600160e01b0319821663780e9d6360e01b1480610773575061077382611553565b92915050565b6060600080546107889061278c565b80601f01602080910402602001604051908101604052809291908181526020018280546107b49061278c565b80156108015780601f106107d657610100808354040283529160200191610801565b820191906000526020600020905b8154815290600101906020018083116107e457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108895760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108b082610ef8565b9050806001600160a01b0316836001600160a01b0316141561091e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610880565b336001600160a01b038216148061093a575061093a81336106e6565b6109ac5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610880565b6109b683836115a3565b505050565b600a546001600160a01b031633146109e55760405162461bcd60e51b815260040161088090612623565b600e805460ff19169055565b600a546001600160a01b03163314610a1b5760405162461bcd60e51b815260040161088090612623565b60005b8151811015610a7e57600060126000848481518110610a3f57610a3f612838565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080610a76906127c7565b915050610a1e565b5050565b610a8c3382611611565b610aa85760405162461bcd60e51b815260040161088090612658565b6109b6838383611708565b6000610abe83610f9e565b8210610b205760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610880565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000610b54600b5490565b600c54909150610b6482846118b3565b1115610baa5760405162461bcd60e51b81526020600482015260156024820152744e6f7420656e6f756768204e465473206c6566742160581b6044820152606401610880565b60008211610bf05760405162461bcd60e51b815260206004820152601360248201527221b0b73737ba1036b4b73a10181027232a399760691b6044820152606401610880565b610bf982611233565b341015610c535760405162461bcd60e51b815260206004820152602260248201527f4e6f7420656e6f75676820657468657220746f207075726368617365204e4654604482015261399760f11b6064820152608401610880565b60005b828110156109b657610c666118bf565b80610c70816127c7565b915050610c56565b600a546001600160a01b03163314610ca25760405162461bcd60e51b815260040161088090612623565b4780610cf05760405162461bcd60e51b815260206004820152601960248201527f4e6f206574686572206c65667420746f207769746864726177000000000000006044820152606401610880565b604051600090339083908381818185875af1925050503d8060008114610d32576040519150601f19603f3d011682016040523d82523d6000602084013e610d37565b606091505b5050905080610a7e5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610880565b6109b683838360405180602001604052806000815250611243565b6000610da160085490565b8210610e045760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610880565b60088281548110610e1757610e17612838565b90600052602060002001549050919050565b600a546001600160a01b03163314610e535760405162461bcd60e51b815260040161088090612623565b60005b8151811015610a7e57600060116000848481518110610e7757610e77612838565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610eb3816127c7565b915050610e56565b600a546001600160a01b03163314610ee55760405162461bcd60e51b815260040161088090612623565b8051610a7e90601390602084019061204d565b6000818152600260205260408120546001600160a01b0316806107735760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610880565b600a546001600160a01b03163314610f995760405162461bcd60e51b815260040161088090612623565b600c55565b60006001600160a01b0382166110095760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610880565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461104f5760405162461bcd60e51b815260040161088090612623565b61105960006118fc565b565b600a546001600160a01b031633146110855760405162461bcd60e51b815260040161088090612623565b60005b8151811015610a7e576001601160008484815181106110a9576110a9612838565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806110e5816127c7565b915050611088565b3360009081526012602052604090205461113e5760405162461bcd60e51b81526020600482015260126024820152714e6f2066726565204e465473206c6566742160701b6044820152606401610880565b336000908152601260205260408120805490829055905b81811015610a7e576111656118bf565b8061116f816127c7565b915050611155565b6060600061118483610f9e565b905060008167ffffffffffffffff8111156111a1576111a161284e565b6040519080825280602002602001820160405280156111ca578160200160208202803683370190505b50905060005b82811015611211576111e28582610ab3565b8282815181106111f4576111f4612838565b602090810291909101015280611209816127c7565b9150506111d0565b509392505050565b6060600180546107889061278c565b610a7e33838361194e565b6000600d5482610773919061272a565b61124d3383611611565b6112695760405162461bcd60e51b815260040161088090612658565b61127584848484611a1d565b50505050565b600a546001600160a01b031633146112a55760405162461bcd60e51b815260040161088090612623565b600d55565b6000818152600260205260409020546060906001600160a01b03166113295760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610880565b6000611333611a50565b90506000815111611353576040518060200160405280600081525061137e565b8061135d84611a5f565b60405160200161136e9291906124fe565b6040516020818303038152906040525b9392505050565b601380546113929061278c565b80601f01602080910402602001604051908101604052809291908181526020018280546113be9061278c565b801561140b5780601f106113e05761010080835404028352916020019161140b565b820191906000526020600020905b8154815290600101906020018083116113ee57829003601f168201915b505050505081565b600a546001600160a01b0316331461143d5760405162461bcd60e51b815260040161088090612623565b60005b82518110156109b65781818151811061145b5761145b612838565b60200260200101516012600085848151811061147957611479612838565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000208190555080806114b0906127c7565b915050611440565b600a546001600160a01b031633146114e25760405162461bcd60e51b815260040161088090612623565b6001600160a01b0381166115475760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610880565b611550816118fc565b50565b60006001600160e01b031982166380ac58cd60e01b148061158457506001600160e01b03198216635b5e139f60e01b145b8061077357506301ffc9a760e01b6001600160e01b0319831614610773565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906115d882610ef8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661168a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610880565b600061169583610ef8565b9050806001600160a01b0316846001600160a01b031614806116d05750836001600160a01b03166116c58461080b565b6001600160a01b0316145b8061170057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661171b82610ef8565b6001600160a01b0316146117835760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610880565b6001600160a01b0382166117e55760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610880565b6117f0838383611b5d565b6117fb6000826115a3565b6001600160a01b0383166000908152600360205260408120805460019290611824908490612749565b90915550506001600160a01b03821660009081526003602052604081208054600192906118529084906126fe565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061137e82846126fe565b60006118ca600b5490565b9050806118e4576118df600b80546001019055565b50600b545b6118ee3382611c15565b611550600b80546001019055565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156119b05760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610880565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611a28848484611708565b611a3484848484611c2f565b6112755760405162461bcd60e51b8152600401610880906125d1565b6060601380546107889061278c565b606081611a835750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611aad5780611a97816127c7565b9150611aa69050600a83612716565b9150611a87565b60008167ffffffffffffffff811115611ac857611ac861284e565b6040519080825280601f01601f191660200182016040528015611af2576020820181803683370190505b5090505b841561170057611b07600183612749565b9150611b14600a866127e2565b611b1f9060306126fe565b60f81b818381518110611b3457611b34612838565b60200101906001600160f81b031916908160001a905350611b56600a86612716565b9450611af6565b6001600160a01b038316611bb857611bb381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611bdb565b816001600160a01b0316836001600160a01b031614611bdb57611bdb8382611d3c565b6001600160a01b038216611bf2576109b681611dd9565b826001600160a01b0316826001600160a01b0316146109b6576109b68282611e88565b610a7e828260405180602001604052806000815250611ecc565b60006001600160a01b0384163b15611d3157604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c7390339089908890889060040161253d565b602060405180830381600087803b158015611c8d57600080fd5b505af1925050508015611cbd575060408051601f3d908101601f19168201909252611cba91810190612453565b60015b611d17573d808015611ceb576040519150601f19603f3d011682016040523d82523d6000602084013e611cf0565b606091505b508051611d0f5760405162461bcd60e51b8152600401610880906125d1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611700565b506001949350505050565b60006001611d4984610f9e565b611d539190612749565b600083815260076020526040902054909150808214611da6576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611deb90600190612749565b60008381526009602052604081205460088054939450909284908110611e1357611e13612838565b906000526020600020015490508060088381548110611e3457611e34612838565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611e6c57611e6c612822565b6001900381819060005260206000200160009055905550505050565b6000611e9383610f9e565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b611ed68383611eff565b611ee36000848484611c2f565b6109b65760405162461bcd60e51b8152600401610880906125d1565b6001600160a01b038216611f555760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610880565b6000818152600260205260409020546001600160a01b031615611fba5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610880565b611fc660008383611b5d565b6001600160a01b0382166000908152600360205260408120805460019290611fef9084906126fe565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546120599061278c565b90600052602060002090601f01602090048101928261207b57600085556120c1565b82601f1061209457805160ff19168380011785556120c1565b828001600101855582156120c1579182015b828111156120c15782518255916020019190600101906120a6565b506120cd9291506120d1565b5090565b5b808211156120cd57600081556001016120d2565b600067ffffffffffffffff8311156121005761210061284e565b612113601f8401601f19166020016126a9565b905082815283838301111561212757600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461215557600080fd5b919050565b600082601f83011261216b57600080fd5b8135602061218061217b836126da565b6126a9565b80838252828201915082860187848660051b89010111156121a057600080fd5b60005b858110156121c6576121b48261213e565b845292840192908401906001016121a3565b5090979650505050505050565b6000602082840312156121e557600080fd5b61137e8261213e565b6000806040838503121561220157600080fd5b61220a8361213e565b91506122186020840161213e565b90509250929050565b60008060006060848603121561223657600080fd5b61223f8461213e565b925061224d6020850161213e565b9150604084013590509250925092565b6000806000806080858703121561227357600080fd5b61227c8561213e565b935061228a6020860161213e565b925060408501359150606085013567ffffffffffffffff8111156122ad57600080fd5b8501601f810187136122be57600080fd5b6122cd878235602084016120e6565b91505092959194509250565b600080604083850312156122ec57600080fd5b6122f58361213e565b91506020830135801515811461230a57600080fd5b809150509250929050565b6000806040838503121561232857600080fd5b6123318361213e565b946020939093013593505050565b60006020828403121561235157600080fd5b813567ffffffffffffffff81111561236857600080fd5b6117008482850161215a565b6000806040838503121561238757600080fd5b823567ffffffffffffffff8082111561239f57600080fd5b6123ab8683870161215a565b93506020915081850135818111156123c257600080fd5b85019050601f810186136123d557600080fd5b80356123e361217b826126da565b80828252848201915084840189868560051b870101111561240357600080fd5b600094505b83851015612426578035835260019490940193918501918501612408565b5080955050505050509250929050565b60006020828403121561244857600080fd5b813561137e81612864565b60006020828403121561246557600080fd5b815161137e81612864565b60006020828403121561248257600080fd5b813567ffffffffffffffff81111561249957600080fd5b8201601f810184136124aa57600080fd5b611700848235602084016120e6565b6000602082840312156124cb57600080fd5b5035919050565b600081518084526124ea816020860160208601612760565b601f01601f19169290920160200192915050565b60008351612510818460208801612760565b835190830190612524818360208801612760565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612570908301846124d2565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156125b257835183529284019291840191600101612596565b50909695505050505050565b60208152600061137e60208301846124d2565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156126d2576126d261284e565b604052919050565b600067ffffffffffffffff8211156126f4576126f461284e565b5060051b60200190565b60008219821115612711576127116127f6565b500190565b6000826127255761272561280c565b500490565b6000816000190483118215151615612744576127446127f6565b500290565b60008282101561275b5761275b6127f6565b500390565b60005b8381101561277b578181015183820152602001612763565b838111156112755750506000910152565b600181811c908216806127a057607f821691505b602082108114156127c157634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127db576127db6127f6565b5060010190565b6000826127f1576127f161280c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461155057600080fdfea2646970667358221220c6d692b20ad45cfde162cd6bba84af7f7a4487e0855d6987a7a4caa5d6574b5a64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002568747470733a2f2f63727970746f746178736869656c642e636f6d2f6d657461646174612f000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : baseUR (string): https://cryptotaxshield.com/metadata/
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000025
Arg [2] : 68747470733a2f2f63727970746f746178736869656c642e636f6d2f6d657461
Arg [3] : 646174612f000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
53025:3947:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42790:224;;;;;;;;;;-1:-1:-1;42790:224:0;;;;;:::i;:::-;;:::i;:::-;;;8626:14:1;;8619:22;8601:41;;8589:2;8574:18;42790:224:0;;;;;;;;30282:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31849:221::-;;;;;;;;;;-1:-1:-1;31849:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7287:32:1;;;7269:51;;7257:2;7242:18;31849:221:0;7123:203:1;31372:411:0;;;;;;;;;;-1:-1:-1;31372:411:0;;;;;:::i;:::-;;:::i;:::-;;56030:80;;;;;;;;;;;;;:::i;56354:196::-;;;;;;;;;;-1:-1:-1;56354:196:0;;;;;:::i;:::-;;:::i;43430:113::-;;;;;;;;;;-1:-1:-1;43518:10:0;:17;43430:113;;;18377:25:1;;;18365:2;18350:18;43430:113:0;18231:177:1;32599:339:0;;;;;;;;;;-1:-1:-1;32599:339:0;;;;;:::i;:::-;;:::i;43098:256::-;;;;;;;;;;-1:-1:-1;43098:256:0;;;;;:::i;:::-;;:::i;53206:32::-;;;;;;;;;;;;;;;;53454:46;;;;;;;;;;-1:-1:-1;53454:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;54164:450;;;;;;:::i;:::-;;:::i;55743:279::-;;;:::i;33009:185::-;;;;;;;;;;-1:-1:-1;33009:185:0;;;;;:::i;:::-;;:::i;43620:233::-;;;;;;;;;;-1:-1:-1;43620:233:0;;;;;:::i;:::-;;:::i;56764:205::-;;;;;;;;;;-1:-1:-1;56764:205:0;;;;;:::i;:::-;;:::i;53828:113::-;;;;;;;;;;-1:-1:-1;53828:113:0;;;;;:::i;:::-;;:::i;29976:239::-;;;;;;;;;;-1:-1:-1;29976:239:0;;;;;:::i;:::-;;:::i;54049:107::-;;;;;;;;;;-1:-1:-1;54049:107:0;;;;;:::i;:::-;;:::i;29706:208::-;;;;;;;;;;-1:-1:-1;29706:208:0;;;;;:::i;:::-;;:::i;50651:103::-;;;;;;;;;;;;;:::i;56558:198::-;;;;;;;;;;-1:-1:-1;56558:198:0;;;;;:::i;:::-;;:::i;54622:288::-;;;;;;;;;;;;;:::i;55352:383::-;;;;;;;;;;-1:-1:-1;55352:383:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;53267:40::-;;;;;;;;;;;;;;;;50000:87;;;;;;;;;;-1:-1:-1;50073:6:0;;-1:-1:-1;;;;;50073:6:0;50000:87;;30451:104;;;;;;;;;;;;;:::i;53367:45::-;;;;;;;;;;-1:-1:-1;53367:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;53419:28;;;;;;;;;;;;;;;;32142:155;;;;;;;;;;-1:-1:-1;32142:155:0;;;;;:::i;:::-;;:::i;54918:123::-;;;;;;;;;;-1:-1:-1;54918:123:0;;;;;:::i;:::-;;:::i;33265:328::-;;;;;;;;;;-1:-1:-1;33265:328:0;;;;;:::i;:::-;;:::i;53953:90::-;;;;;;;;;;-1:-1:-1;53953:90:0;;;;;:::i;:::-;;:::i;30626:342::-;;;;;;;;;;-1:-1:-1;30626:342:0;;;;;:::i;:::-;;:::i;53560:26::-;;;;;;;;;;;;;:::i;56118:228::-;;;;;;;;;;-1:-1:-1;56118:228:0;;;;;:::i;:::-;;:::i;53507:46::-;;;;;;;;;;-1:-1:-1;53507:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;32368:164;;;;;;;;;;-1:-1:-1;32368:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32489:25:0;;;32465:4;32489:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32368:164;50909:201;;;;;;;;;;-1:-1:-1;50909:201:0;;;;;:::i;:::-;;:::i;53333:27::-;;;;;;;;;;-1:-1:-1;53333:27:0;;;;;;;;42790:224;42892:4;-1:-1:-1;;;;;;42916:50:0;;-1:-1:-1;;;42916:50:0;;:90;;;42970:36;42994:11;42970:23;:36::i;:::-;42909:97;42790:224;-1:-1:-1;;42790:224:0:o;30282:100::-;30336:13;30369:5;30362:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30282:100;:::o;31849:221::-;31925:7;35192:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35192:16:0;31945:73;;;;-1:-1:-1;;;31945:73:0;;15255:2:1;31945:73:0;;;15237:21:1;15294:2;15274:18;;;15267:30;15333:34;15313:18;;;15306:62;-1:-1:-1;;;15384:18:1;;;15377:42;15436:19;;31945:73:0;;;;;;;;;-1:-1:-1;32038:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32038:24:0;;31849:221::o;31372:411::-;31453:13;31469:23;31484:7;31469:14;:23::i;:::-;31453:39;;31517:5;-1:-1:-1;;;;;31511:11:0;:2;-1:-1:-1;;;;;31511:11:0;;;31503:57;;;;-1:-1:-1;;;31503:57:0;;16855:2:1;31503:57:0;;;16837:21:1;16894:2;16874:18;;;16867:30;16933:34;16913:18;;;16906:62;-1:-1:-1;;;16984:18:1;;;16977:31;17025:19;;31503:57:0;16653:397:1;31503:57:0;27827:10;-1:-1:-1;;;;;31595:21:0;;;;:62;;-1:-1:-1;31620:37:0;31637:5;27827:10;32368:164;:::i;31620:37::-;31573:168;;;;-1:-1:-1;;;31573:168:0;;12947:2:1;31573:168:0;;;12929:21:1;12986:2;12966:18;;;12959:30;13025:34;13005:18;;;12998:62;13096:26;13076:18;;;13069:54;13140:19;;31573:168:0;12745:420:1;31573:168:0;31754:21;31763:2;31767:7;31754:8;:21::i;:::-;31442:341;31372:411;;:::o;56030:80::-;50073:6;;-1:-1:-1;;;;;50073:6:0;27827:10;50220:23;50212:68;;;;-1:-1:-1;;;50212:68:0;;;;;;;:::i;:::-;56087:7:::1;:15:::0;;-1:-1:-1;;56087:15:0::1;::::0;;56030:80::o;56354:196::-;50073:6;;-1:-1:-1;;;;;50073:6:0;27827:10;50220:23;50212:68;;;;-1:-1:-1;;;50212:68:0;;;;;;;:::i;:::-;56446:9:::1;56441:102;56464:10;:17;56460:1;:21;56441:102;;;56530:1;56502:10;:25;56513:10;56524:1;56513:13;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;56502:25:0::1;-1:-1:-1::0;;;;;56502:25:0::1;;;;;;;;;;;;:29;;;;56482:3;;;;;:::i;:::-;;;;56441:102;;;;56354:196:::0;:::o;32599:339::-;32794:41;27827:10;32827:7;32794:18;:41::i;:::-;32786:103;;;;-1:-1:-1;;;32786:103:0;;;;;;;:::i;:::-;32902:28;32912:4;32918:2;32922:7;32902:9;:28::i;43098:256::-;43195:7;43231:23;43248:5;43231:16;:23::i;:::-;43223:5;:31;43215:87;;;;-1:-1:-1;;;43215:87:0;;9079:2:1;43215:87:0;;;9061:21:1;9118:2;9098:18;;;9091:30;9157:34;9137:18;;;9130:62;-1:-1:-1;;;9208:18:1;;;9201:41;9259:19;;43215:87:0;8877:407:1;43215:87:0;-1:-1:-1;;;;;;43320:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;43098:256::o;54164:450::-;54224:19;54246;:9;52432:14;;52340:114;54246:19;54313:10;;54224:41;;-1:-1:-1;54286:23:0;54224:41;54302:6;54286:15;:23::i;:::-;:37;;54278:71;;;;-1:-1:-1;;;54278:71:0;;11836:2:1;54278:71:0;;;11818:21:1;11875:2;11855:18;;;11848:30;-1:-1:-1;;;11894:18:1;;;11887:51;11955:18;;54278:71:0;11634:345:1;54278:71:0;54377:1;54368:6;:10;54360:42;;;;-1:-1:-1;;;54360:42:0;;12599:2:1;54360:42:0;;;12581:21:1;12638:2;12618:18;;;12611:30;-1:-1:-1;;;12657:18:1;;;12650:49;12716:18;;54360:42:0;12397:343:1;54360:42:0;54434:22;54449:6;54434:14;:22::i;:::-;54421:9;:35;;54413:81;;;;-1:-1:-1;;;54413:81:0;;11433:2:1;54413:81:0;;;11415:21:1;11472:2;11452:18;;;11445:30;11511:34;11491:18;;;11484:62;-1:-1:-1;;;11562:18:1;;;11555:32;11604:19;;54413:81:0;11231:398:1;54413:81:0;54532:9;54527:80;54551:6;54547:1;:10;54527:80;;;54579:16;:14;:16::i;:::-;54559:3;;;;:::i;:::-;;;;54527:80;;55743:279;50073:6;;-1:-1:-1;;;;;50073:6:0;27827:10;50220:23;50212:68;;;;-1:-1:-1;;;50212:68:0;;;;;;;:::i;:::-;55817:21:::1;55857:11:::0;55849:49:::1;;;::::0;-1:-1:-1;;;55849:49:0;;14901:2:1;55849:49:0::1;::::0;::::1;14883:21:1::0;14940:2;14920:18;;;14913:30;14979:27;14959:18;;;14952:55;15024:18;;55849:49:0::1;14699:349:1::0;55849:49:0::1;55930:37;::::0;55912:12:::1;::::0;55931:10:::1;::::0;55955:7;;55912:12;55930:37;55912:12;55930:37;55955:7;55931:10;55930:37:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55911:56;;;55986:7;55978:36;;;::::0;-1:-1:-1;;;55978:36:0;;17257:2:1;55978:36:0::1;::::0;::::1;17239:21:1::0;17296:2;17276:18;;;17269:30;-1:-1:-1;;;17315:18:1;;;17308:46;17371:18;;55978:36:0::1;17055:340:1::0;33009:185:0;33147:39;33164:4;33170:2;33174:7;33147:39;;;;;;;;;;;;:16;:39::i;43620:233::-;43695:7;43731:30;43518:10;:17;;43430:113;43731:30;43723:5;:38;43715:95;;;;-1:-1:-1;;;43715:95:0;;18020:2:1;43715:95:0;;;18002:21:1;18059:2;18039:18;;;18032:30;18098:34;18078:18;;;18071:62;-1:-1:-1;;;18149:18:1;;;18142:42;18201:19;;43715:95:0;17818:408:1;43715:95:0;43828:10;43839:5;43828:17;;;;;;;;:::i;:::-;;;;;;;;;43821:24;;43620:233;;;:::o;56764:205::-;50073:6;;-1:-1:-1;;;;;50073:6:0;27827:10;50220:23;50212:68;;;;-1:-1:-1;;;50212:68:0;;;;;;;:::i;:::-;56858:9:::1;56853:109;56876:10;:17;56872:1;:21;56853:109;;;56945:5;56914:13;:28;56928:10;56939:1;56928:13;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;56914:28:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;56914:28:0;:36;;-1:-1:-1;;56914:36:0::1;::::0;::::1;;::::0;;;::::1;::::0;;56894:3;::::1;::::0;::::1;:::i;:::-;;;;56853:109;;53828:113:::0;50073:6;;-1:-1:-1;;;;;50073:6:0;27827:10;50220:23;50212:68;;;;-1:-1:-1;;;50212:68:0;;;;;;;:::i;:::-;53905:28;;::::1;::::0;:12:::1;::::0;:28:::1;::::0;::::1;::::0;::::1;:::i;29976:239::-:0;30048:7;30084:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30084:16:0;30119:19;30111:73;;;;-1:-1:-1;;;30111:73:0;;13783:2:1;30111:73:0;;;13765:21:1;13822:2;13802:18;;;13795:30;13861:34;13841:18;;;13834:62;-1:-1:-1;;;13912:18:1;;;13905:39;13961:19;;30111:73:0;13581:405:1;54049:107:0;50073:6;;-1:-1:-1;;;;;50073:6:0;27827:10;50220:23;50212:68;;;;-1:-1:-1;;;50212:68:0;;;;;;;:::i;:::-;54122:10:::1;:26:::0;54049:107::o;29706:208::-;29778:7;-1:-1:-1;;;;;29806:19:0;;29798:74;;;;-1:-1:-1;;;29798:74:0;;13372:2:1;29798:74:0;;;13354:21:1;13411:2;13391:18;;;13384:30;13450:34;13430:18;;;13423:62;-1:-1:-1;;;13501:18:1;;;13494:40;13551:19;;29798:74:0;13170:406:1;29798:74:0;-1:-1:-1;;;;;;29890:16:0;;;;;:9;:16;;;;;;;29706:208::o;50651:103::-;50073:6;;-1:-1:-1;;;;;50073:6:0;27827:10;50220:23;50212:68;;;;-1:-1:-1;;;50212:68:0;;;;;;;:::i;:::-;50716:30:::1;50743:1;50716:18;:30::i;:::-;50651:103::o:0;56558:198::-;50073:6;;-1:-1:-1;;;;;50073:6:0;27827:10;50220:23;50212:68;;;;-1:-1:-1;;;50212:68:0;;;;;;;:::i;:::-;56646:9:::1;56641:108;56664:10;:17;56660:1;:21;56641:108;;;56733:4;56702:13;:28;56716:10;56727:1;56716:13;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;56702:28:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;56702:28:0;:35;;-1:-1:-1;;56702:35:0::1;::::0;::::1;;::::0;;;::::1;::::0;;56682:3;::::1;::::0;::::1;:::i;:::-;;;;56641:108;;54622:288:::0;54687:10;54701:1;54676:22;;;:10;:22;;;;;;54668:57;;;;-1:-1:-1;;;54668:57:0;;14193:2:1;54668:57:0;;;14175:21:1;14232:2;14212:18;;;14205:30;-1:-1:-1;;;14251:18:1;;;14244:48;14309:18;;54668:57:0;13991:342:1;54668:57:0;54764:10;54736:14;54753:22;;;:10;:22;;;;;;;54786:26;;;;54753:22;54823:80;54847:6;54843:1;:10;54823:80;;;54875:16;:14;:16::i;:::-;54855:3;;;;:::i;:::-;;;;54823:80;;55352:383;55441:16;55475:18;55496:17;55506:6;55496:9;:17::i;:::-;55475:38;;55524:25;55566:10;55552:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;55552:25:0;;55524:53;;55595:9;55590:112;55614:10;55610:1;:14;55590:112;;;55660:30;55680:6;55688:1;55660:19;:30::i;:::-;55646:8;55655:1;55646:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;55626:3;;;;:::i;:::-;;;;55590:112;;;-1:-1:-1;55719:8:0;55352:383;-1:-1:-1;;;55352:383:0:o;30451:104::-;30507:13;30540:7;30533:14;;;;;:::i;32142:155::-;32237:52;27827:10;32270:8;32280;32237:18;:52::i;54918:123::-;54978:7;55028:5;;55019:6;:14;;;;:::i;33265:328::-;33440:41;27827:10;33473:7;33440:18;:41::i;:::-;33432:103;;;;-1:-1:-1;;;33432:103:0;;;;;;;:::i;:::-;33546:39;33560:4;33566:2;33570:7;33579:5;33546:13;:39::i;:::-;33265:328;;;;:::o;53953:90::-;50073:6;;-1:-1:-1;;;;;50073:6:0;27827:10;50220:23;50212:68;;;;-1:-1:-1;;;50212:68:0;;;;;;;:::i;:::-;54021:5:::1;:14:::0;53953:90::o;30626:342::-;35168:4;35192:16;;;:7;:16;;;;;;30699:13;;-1:-1:-1;;;;;35192:16:0;30725:76;;;;-1:-1:-1;;;30725:76:0;;16439:2:1;30725:76:0;;;16421:21:1;16478:2;16458:18;;;16451:30;16517:34;16497:18;;;16490:62;-1:-1:-1;;;16568:18:1;;;16561:45;16623:19;;30725:76:0;16237:411:1;30725:76:0;30814:21;30838:10;:8;:10::i;:::-;30814:34;;30890:1;30872:7;30866:21;:25;:94;;;;;;;;;;;;;;;;;30918:7;30927:18;:7;:16;:18::i;:::-;30901:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30866:94;30859:101;30626:342;-1:-1:-1;;;30626:342:0:o;53560:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;56118:228::-;50073:6;;-1:-1:-1;;;;;50073:6:0;27827:10;50220:23;50212:68;;;;-1:-1:-1;;;50212:68:0;;;;;;;:::i;:::-;56232:9:::1;56227:112;56250:10;:17;56246:1;:21;56227:112;;;56316:8;56325:1;56316:11;;;;;;;;:::i;:::-;;;;;;;56288:10;:25;56299:10;56310:1;56299:13;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;56288:25:0::1;-1:-1:-1::0;;;;;56288:25:0::1;;;;;;;;;;;;:39;;;;56268:3;;;;;:::i;:::-;;;;56227:112;;50909:201:::0;50073:6;;-1:-1:-1;;;;;50073:6:0;27827:10;50220:23;50212:68;;;;-1:-1:-1;;;50212:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;50998:22:0;::::1;50990:73;;;::::0;-1:-1:-1;;;50990:73:0;;9910:2:1;50990:73:0::1;::::0;::::1;9892:21:1::0;9949:2;9929:18;;;9922:30;9988:34;9968:18;;;9961:62;-1:-1:-1;;;10039:18:1;;;10032:36;10085:19;;50990:73:0::1;9708:402:1::0;50990:73:0::1;51074:28;51093:8;51074:18;:28::i;:::-;50909:201:::0;:::o;29337:305::-;29439:4;-1:-1:-1;;;;;;29476:40:0;;-1:-1:-1;;;29476:40:0;;:105;;-1:-1:-1;;;;;;;29533:48:0;;-1:-1:-1;;;29533:48:0;29476:105;:158;;;-1:-1:-1;;;;;;;;;;13238:40:0;;;29598:36;13129:157;39085:174;39160:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;39160:29:0;-1:-1:-1;;;;;39160:29:0;;;;;;;;:24;;39214:23;39160:24;39214:14;:23::i;:::-;-1:-1:-1;;;;;39205:46:0;;;;;;;;;;;39085:174;;:::o;35397:348::-;35490:4;35192:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35192:16:0;35507:73;;;;-1:-1:-1;;;35507:73:0;;12186:2:1;35507:73:0;;;12168:21:1;12225:2;12205:18;;;12198:30;12264:34;12244:18;;;12237:62;-1:-1:-1;;;12315:18:1;;;12308:42;12367:19;;35507:73:0;11984:408:1;35507:73:0;35591:13;35607:23;35622:7;35607:14;:23::i;:::-;35591:39;;35660:5;-1:-1:-1;;;;;35649:16:0;:7;-1:-1:-1;;;;;35649:16:0;;:51;;;;35693:7;-1:-1:-1;;;;;35669:31:0;:20;35681:7;35669:11;:20::i;:::-;-1:-1:-1;;;;;35669:31:0;;35649:51;:87;;;-1:-1:-1;;;;;;32489:25:0;;;32465:4;32489:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;35704:32;35641:96;35397:348;-1:-1:-1;;;;35397:348:0:o;38389:578::-;38548:4;-1:-1:-1;;;;;38521:31:0;:23;38536:7;38521:14;:23::i;:::-;-1:-1:-1;;;;;38521:31:0;;38513:85;;;;-1:-1:-1;;;38513:85:0;;16029:2:1;38513:85:0;;;16011:21:1;16068:2;16048:18;;;16041:30;16107:34;16087:18;;;16080:62;-1:-1:-1;;;16158:18:1;;;16151:39;16207:19;;38513:85:0;15827:405:1;38513:85:0;-1:-1:-1;;;;;38617:16:0;;38609:65;;;;-1:-1:-1;;;38609:65:0;;10674:2:1;38609:65:0;;;10656:21:1;10713:2;10693:18;;;10686:30;10752:34;10732:18;;;10725:62;-1:-1:-1;;;10803:18:1;;;10796:34;10847:19;;38609:65:0;10472:400:1;38609:65:0;38687:39;38708:4;38714:2;38718:7;38687:20;:39::i;:::-;38791:29;38808:1;38812:7;38791:8;:29::i;:::-;-1:-1:-1;;;;;38833:15:0;;;;;;:9;:15;;;;;:20;;38852:1;;38833:15;:20;;38852:1;;38833:20;:::i;:::-;;;;-1:-1:-1;;;;;;;38864:13:0;;;;;;:9;:13;;;;;:18;;38881:1;;38864:13;:18;;38881:1;;38864:18;:::i;:::-;;;;-1:-1:-1;;38893:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38893:21:0;-1:-1:-1;;;;;38893:21:0;;;;;;;;;38932:27;;38893:16;;38932:27;;;;;;;38389:578;;;:::o;22903:98::-;22961:7;22988:5;22992:1;22988;:5;:::i;55049:295::-;55094:18;55115:19;:9;52432:14;;52340:114;55115:19;55094:40;-1:-1:-1;55149:15:0;55145:116;;55181:21;:9;52551:19;;52569:1;52551:19;;;52462:127;55181:21;-1:-1:-1;55230:9:0;52432:14;55145:116;55271:33;55281:10;55293;55271:9;:33::i;:::-;55315:21;:9;52551:19;;52569:1;52551:19;;;52462:127;51270:191;51363:6;;;-1:-1:-1;;;;;51380:17:0;;;-1:-1:-1;;;;;;51380:17:0;;;;;;;51413:40;;51363:6;;;51380:17;51363:6;;51413:40;;51344:16;;51413:40;51333:128;51270:191;:::o;39401:315::-;39556:8;-1:-1:-1;;;;;39547:17:0;:5;-1:-1:-1;;;;;39547:17:0;;;39539:55;;;;-1:-1:-1;;;39539:55:0;;11079:2:1;39539:55:0;;;11061:21:1;11118:2;11098:18;;;11091:30;11157:27;11137:18;;;11130:55;11202:18;;39539:55:0;10877:349:1;39539:55:0;-1:-1:-1;;;;;39605:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;39605:46:0;;;;;;;;;;39667:41;;8601::1;;;39667::0;;8574:18:1;39667:41:0;;;;;;;39401:315;;;:::o;34475:::-;34632:28;34642:4;34648:2;34652:7;34632:9;:28::i;:::-;34679:48;34702:4;34708:2;34712:7;34721:5;34679:22;:48::i;:::-;34671:111;;;;-1:-1:-1;;;34671:111:0;;;;;;;:::i;53707:113::-;53767:13;53800:12;53793:19;;;;;:::i;406:723::-;462:13;683:10;679:53;;-1:-1:-1;;710:10:0;;;;;;;;;;;;-1:-1:-1;;;710:10:0;;;;;406:723::o;679:53::-;757:5;742:12;798:78;805:9;;798:78;;831:8;;;;:::i;:::-;;-1:-1:-1;854:10:0;;-1:-1:-1;862:2:0;854:10;;:::i;:::-;;;798:78;;;886:19;918:6;908:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;908:17:0;;886:39;;936:154;943:10;;936:154;;970:11;980:1;970:11;;:::i;:::-;;-1:-1:-1;1039:10:0;1047:2;1039:5;:10;:::i;:::-;1026:24;;:2;:24;:::i;:::-;1013:39;;996:6;1003;996:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;996:56:0;;;;;;;;-1:-1:-1;1067:11:0;1076:2;1067:11;;:::i;:::-;;;936:154;;44466:589;-1:-1:-1;;;;;44672:18:0;;44668:187;;44707:40;44739:7;45882:10;:17;;45855:24;;;;:15;:24;;;;;:44;;;45910:24;;;;;;;;;;;;45778:164;44707:40;44668:187;;;44777:2;-1:-1:-1;;;;;44769:10:0;:4;-1:-1:-1;;;;;44769:10:0;;44765:90;;44796:47;44829:4;44835:7;44796:32;:47::i;:::-;-1:-1:-1;;;;;44869:16:0;;44865:183;;44902:45;44939:7;44902:36;:45::i;44865:183::-;44975:4;-1:-1:-1;;;;;44969:10:0;:2;-1:-1:-1;;;;;44969:10:0;;44965:83;;44996:40;45024:2;45028:7;44996:27;:40::i;36087:110::-;36163:26;36173:2;36177:7;36163:26;;;;;;;;;;;;:9;:26::i;40281:799::-;40436:4;-1:-1:-1;;;;;40457:13:0;;3308:20;3356:8;40453:620;;40493:72;;-1:-1:-1;;;40493:72:0;;-1:-1:-1;;;;;40493:36:0;;;;;:72;;27827:10;;40544:4;;40550:7;;40559:5;;40493:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40493:72:0;;;;;;;;-1:-1:-1;;40493:72:0;;;;;;;;;;;;:::i;:::-;;;40489:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40735:13:0;;40731:272;;40778:60;;-1:-1:-1;;;40778:60:0;;;;;;;:::i;40731:272::-;40953:6;40947:13;40938:6;40934:2;40930:15;40923:38;40489:529;-1:-1:-1;;;;;;40616:51:0;-1:-1:-1;;;40616:51:0;;-1:-1:-1;40609:58:0;;40453:620;-1:-1:-1;41057:4:0;40281:799;;;;;;:::o;46569:988::-;46835:22;46885:1;46860:22;46877:4;46860:16;:22::i;:::-;:26;;;;:::i;:::-;46897:18;46918:26;;;:17;:26;;;;;;46835:51;;-1:-1:-1;47051:28:0;;;47047:328;;-1:-1:-1;;;;;47118:18:0;;47096:19;47118:18;;;:12;:18;;;;;;;;:34;;;;;;;;;47169:30;;;;;;:44;;;47286:30;;:17;:30;;;;;:43;;;47047:328;-1:-1:-1;47471:26:0;;;;:17;:26;;;;;;;;47464:33;;;-1:-1:-1;;;;;47515:18:0;;;;;:12;:18;;;;;:34;;;;;;;47508:41;46569:988::o;47852:1079::-;48130:10;:17;48105:22;;48130:21;;48150:1;;48130:21;:::i;:::-;48162:18;48183:24;;;:15;:24;;;;;;48556:10;:26;;48105:46;;-1:-1:-1;48183:24:0;;48105:46;;48556:26;;;;;;:::i;:::-;;;;;;;;;48534:48;;48620:11;48595:10;48606;48595:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;48700:28;;;:15;:28;;;;;;;:41;;;48872:24;;;;;48865:31;48907:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;47923:1008;;;47852:1079;:::o;45356:221::-;45441:14;45458:20;45475:2;45458:16;:20::i;:::-;-1:-1:-1;;;;;45489:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;45534:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;45356:221:0:o;36424:321::-;36554:18;36560:2;36564:7;36554:5;:18::i;:::-;36605:54;36636:1;36640:2;36644:7;36653:5;36605:22;:54::i;:::-;36583:154;;;;-1:-1:-1;;;36583:154:0;;;;;;;:::i;37081:382::-;-1:-1:-1;;;;;37161:16:0;;37153:61;;;;-1:-1:-1;;;37153:61:0;;14540:2:1;37153:61:0;;;14522:21:1;;;14559:18;;;14552:30;14618:34;14598:18;;;14591:62;14670:18;;37153:61:0;14338:356:1;37153:61:0;35168:4;35192:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35192:16:0;:30;37225:58;;;;-1:-1:-1;;;37225:58:0;;10317:2:1;37225:58:0;;;10299:21:1;10356:2;10336:18;;;10329:30;10395;10375:18;;;10368:58;10443:18;;37225:58:0;10115:352:1;37225:58:0;37296:45;37325:1;37329:2;37333:7;37296:20;:45::i;:::-;-1:-1:-1;;;;;37354:13:0;;;;;;:9;:13;;;;;:18;;37371:1;;37354:13;:18;;37371:1;;37354:18;:::i;:::-;;;;-1:-1:-1;;37383:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37383:21:0;-1:-1:-1;;;;;37383:21:0;;;;;;;;37422:33;;37383:16;;;37422:33;;37383:16;;37422:33;37081:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:679::-;657:5;710:3;703:4;695:6;691:17;687:27;677:55;;728:1;725;718:12;677:55;764:6;751:20;790:4;814:60;830:43;870:2;830:43;:::i;:::-;814:60;:::i;:::-;896:3;920:2;915:3;908:15;948:2;943:3;939:12;932:19;;983:2;975:6;971:15;1035:3;1030:2;1024;1021:1;1017:10;1009:6;1005:23;1001:32;998:41;995:61;;;1052:1;1049;1042:12;995:61;1074:1;1084:169;1098:2;1095:1;1092:9;1084:169;;;1155:23;1174:3;1155:23;:::i;:::-;1143:36;;1199:12;;;;1231;;;;1116:1;1109:9;1084:169;;;-1:-1:-1;1271:5:1;;603:679;-1:-1:-1;;;;;;;603:679:1:o;1287:186::-;1346:6;1399:2;1387:9;1378:7;1374:23;1370:32;1367:52;;;1415:1;1412;1405:12;1367:52;1438:29;1457:9;1438:29;:::i;1478:260::-;1546:6;1554;1607:2;1595:9;1586:7;1582:23;1578:32;1575:52;;;1623:1;1620;1613:12;1575:52;1646:29;1665:9;1646:29;:::i;:::-;1636:39;;1694:38;1728:2;1717:9;1713:18;1694:38;:::i;:::-;1684:48;;1478:260;;;;;:::o;1743:328::-;1820:6;1828;1836;1889:2;1877:9;1868:7;1864:23;1860:32;1857:52;;;1905:1;1902;1895:12;1857:52;1928:29;1947:9;1928:29;:::i;:::-;1918:39;;1976:38;2010:2;1999:9;1995:18;1976:38;:::i;:::-;1966:48;;2061:2;2050:9;2046:18;2033:32;2023:42;;1743:328;;;;;:::o;2076:666::-;2171:6;2179;2187;2195;2248:3;2236:9;2227:7;2223:23;2219:33;2216:53;;;2265:1;2262;2255:12;2216:53;2288:29;2307:9;2288:29;:::i;:::-;2278:39;;2336:38;2370:2;2359:9;2355:18;2336:38;:::i;:::-;2326:48;;2421:2;2410:9;2406:18;2393:32;2383:42;;2476:2;2465:9;2461:18;2448:32;2503:18;2495:6;2492:30;2489:50;;;2535:1;2532;2525:12;2489:50;2558:22;;2611:4;2603:13;;2599:27;-1:-1:-1;2589:55:1;;2640:1;2637;2630:12;2589:55;2663:73;2728:7;2723:2;2710:16;2705:2;2701;2697:11;2663:73;:::i;:::-;2653:83;;;2076:666;;;;;;;:::o;2747:347::-;2812:6;2820;2873:2;2861:9;2852:7;2848:23;2844:32;2841:52;;;2889:1;2886;2879:12;2841:52;2912:29;2931:9;2912:29;:::i;:::-;2902:39;;2991:2;2980:9;2976:18;2963:32;3038:5;3031:13;3024:21;3017:5;3014:32;3004:60;;3060:1;3057;3050:12;3004:60;3083:5;3073:15;;;2747:347;;;;;:::o;3099:254::-;3167:6;3175;3228:2;3216:9;3207:7;3203:23;3199:32;3196:52;;;3244:1;3241;3234:12;3196:52;3267:29;3286:9;3267:29;:::i;:::-;3257:39;3343:2;3328:18;;;;3315:32;;-1:-1:-1;;;3099:254:1:o;3358:348::-;3442:6;3495:2;3483:9;3474:7;3470:23;3466:32;3463:52;;;3511:1;3508;3501:12;3463:52;3551:9;3538:23;3584:18;3576:6;3573:30;3570:50;;;3616:1;3613;3606:12;3570:50;3639:61;3692:7;3683:6;3672:9;3668:22;3639:61;:::i;3711:1149::-;3829:6;3837;3890:2;3878:9;3869:7;3865:23;3861:32;3858:52;;;3906:1;3903;3896:12;3858:52;3946:9;3933:23;3975:18;4016:2;4008:6;4005:14;4002:34;;;4032:1;4029;4022:12;4002:34;4055:61;4108:7;4099:6;4088:9;4084:22;4055:61;:::i;:::-;4045:71;;4135:2;4125:12;;4190:2;4179:9;4175:18;4162:32;4219:2;4209:8;4206:16;4203:36;;;4235:1;4232;4225:12;4203:36;4258:24;;;-1:-1:-1;4313:4:1;4305:13;;4301:27;-1:-1:-1;4291:55:1;;4342:1;4339;4332:12;4291:55;4378:2;4365:16;4401:60;4417:43;4457:2;4417:43;:::i;4401:60::-;4483:3;4507:2;4502:3;4495:15;4535:2;4530:3;4526:12;4519:19;;4566:2;4562;4558:11;4614:7;4609:2;4603;4600:1;4596:10;4592:2;4588:19;4584:28;4581:41;4578:61;;;4635:1;4632;4625:12;4578:61;4657:1;4648:10;;4667:163;4681:2;4678:1;4675:9;4667:163;;;4738:17;;4726:30;;4699:1;4692:9;;;;;4776:12;;;;4808;;4667:163;;;4671:3;4849:5;4839:15;;;;;;;3711:1149;;;;;:::o;4865:245::-;4923:6;4976:2;4964:9;4955:7;4951:23;4947:32;4944:52;;;4992:1;4989;4982:12;4944:52;5031:9;5018:23;5050:30;5074:5;5050:30;:::i;5115:249::-;5184:6;5237:2;5225:9;5216:7;5212:23;5208:32;5205:52;;;5253:1;5250;5243:12;5205:52;5285:9;5279:16;5304:30;5328:5;5304:30;:::i;5369:450::-;5438:6;5491:2;5479:9;5470:7;5466:23;5462:32;5459:52;;;5507:1;5504;5497:12;5459:52;5547:9;5534:23;5580:18;5572:6;5569:30;5566:50;;;5612:1;5609;5602:12;5566:50;5635:22;;5688:4;5680:13;;5676:27;-1:-1:-1;5666:55:1;;5717:1;5714;5707:12;5666:55;5740:73;5805:7;5800:2;5787:16;5782:2;5778;5774:11;5740:73;:::i;5824:180::-;5883:6;5936:2;5924:9;5915:7;5911:23;5907:32;5904:52;;;5952:1;5949;5942:12;5904:52;-1:-1:-1;5975:23:1;;5824:180;-1:-1:-1;5824:180:1:o;6009:257::-;6050:3;6088:5;6082:12;6115:6;6110:3;6103:19;6131:63;6187:6;6180:4;6175:3;6171:14;6164:4;6157:5;6153:16;6131:63;:::i;:::-;6248:2;6227:15;-1:-1:-1;;6223:29:1;6214:39;;;;6255:4;6210:50;;6009:257;-1:-1:-1;;6009:257:1:o;6271:637::-;6551:3;6589:6;6583:13;6605:53;6651:6;6646:3;6639:4;6631:6;6627:17;6605:53;:::i;:::-;6721:13;;6680:16;;;;6743:57;6721:13;6680:16;6777:4;6765:17;;6743:57;:::i;:::-;-1:-1:-1;;;6822:20:1;;6851:22;;;6900:1;6889:13;;6271:637;-1:-1:-1;;;;6271:637:1:o;7331:488::-;-1:-1:-1;;;;;7600:15:1;;;7582:34;;7652:15;;7647:2;7632:18;;7625:43;7699:2;7684:18;;7677:34;;;7747:3;7742:2;7727:18;;7720:31;;;7525:4;;7768:45;;7793:19;;7785:6;7768:45;:::i;:::-;7760:53;7331:488;-1:-1:-1;;;;;;7331:488:1:o;7824:632::-;7995:2;8047:21;;;8117:13;;8020:18;;;8139:22;;;7966:4;;7995:2;8218:15;;;;8192:2;8177:18;;;7966:4;8261:169;8275:6;8272:1;8269:13;8261:169;;;8336:13;;8324:26;;8405:15;;;;8370:12;;;;8297:1;8290:9;8261:169;;;-1:-1:-1;8447:3:1;;7824:632;-1:-1:-1;;;;;;7824:632:1:o;8653:219::-;8802:2;8791:9;8784:21;8765:4;8822:44;8862:2;8851:9;8847:18;8839:6;8822:44;:::i;9289:414::-;9491:2;9473:21;;;9530:2;9510:18;;;9503:30;9569:34;9564:2;9549:18;;9542:62;-1:-1:-1;;;9635:2:1;9620:18;;9613:48;9693:3;9678:19;;9289:414::o;15466:356::-;15668:2;15650:21;;;15687:18;;;15680:30;15746:34;15741:2;15726:18;;15719:62;15813:2;15798:18;;15466:356::o;17400:413::-;17602:2;17584:21;;;17641:2;17621:18;;;17614:30;17680:34;17675:2;17660:18;;17653:62;-1:-1:-1;;;17746:2:1;17731:18;;17724:47;17803:3;17788:19;;17400:413::o;18413:275::-;18484:2;18478:9;18549:2;18530:13;;-1:-1:-1;;18526:27:1;18514:40;;18584:18;18569:34;;18605:22;;;18566:62;18563:88;;;18631:18;;:::i;:::-;18667:2;18660:22;18413:275;;-1:-1:-1;18413:275:1:o;18693:183::-;18753:4;18786:18;18778:6;18775:30;18772:56;;;18808:18;;:::i;:::-;-1:-1:-1;18853:1:1;18849:14;18865:4;18845:25;;18693:183::o;18881:128::-;18921:3;18952:1;18948:6;18945:1;18942:13;18939:39;;;18958:18;;:::i;:::-;-1:-1:-1;18994:9:1;;18881:128::o;19014:120::-;19054:1;19080;19070:35;;19085:18;;:::i;:::-;-1:-1:-1;19119:9:1;;19014:120::o;19139:168::-;19179:7;19245:1;19241;19237:6;19233:14;19230:1;19227:21;19222:1;19215:9;19208:17;19204:45;19201:71;;;19252:18;;:::i;:::-;-1:-1:-1;19292:9:1;;19139:168::o;19312:125::-;19352:4;19380:1;19377;19374:8;19371:34;;;19385:18;;:::i;:::-;-1:-1:-1;19422:9:1;;19312:125::o;19442:258::-;19514:1;19524:113;19538:6;19535:1;19532:13;19524:113;;;19614:11;;;19608:18;19595:11;;;19588:39;19560:2;19553:10;19524:113;;;19655:6;19652:1;19649:13;19646:48;;;-1:-1:-1;;19690:1:1;19672:16;;19665:27;19442:258::o;19705:380::-;19784:1;19780:12;;;;19827;;;19848:61;;19902:4;19894:6;19890:17;19880:27;;19848:61;19955:2;19947:6;19944:14;19924:18;19921:38;19918:161;;;20001:10;19996:3;19992:20;19989:1;19982:31;20036:4;20033:1;20026:15;20064:4;20061:1;20054:15;19918:161;;19705:380;;;:::o;20090:135::-;20129:3;-1:-1:-1;;20150:17:1;;20147:43;;;20170:18;;:::i;:::-;-1:-1:-1;20217:1:1;20206:13;;20090:135::o;20230:112::-;20262:1;20288;20278:35;;20293:18;;:::i;:::-;-1:-1:-1;20327:9:1;;20230:112::o;20347:127::-;20408:10;20403:3;20399:20;20396:1;20389:31;20439:4;20436:1;20429:15;20463:4;20460:1;20453:15;20479:127;20540:10;20535:3;20531:20;20528:1;20521:31;20571:4;20568:1;20561:15;20595:4;20592:1;20585:15;20611:127;20672:10;20667:3;20663:20;20660:1;20653:31;20703:4;20700:1;20693:15;20727:4;20724:1;20717:15;20743:127;20804:10;20799:3;20795:20;20792:1;20785:31;20835:4;20832:1;20825:15;20859:4;20856:1;20849:15;20875:127;20936:10;20931:3;20927:20;20924:1;20917:31;20967:4;20964:1;20957:15;20991:4;20988:1;20981:15;21007:131;-1:-1:-1;;;;;;21081:32:1;;21071:43;;21061:71;;21128:1;21125;21118:12
Swarm Source
ipfs://c6d692b20ad45cfde162cd6bba84af7f7a4487e0855d6987a7a4caa5d6574b5a
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.