ERC-721
Overview
Max Total Supply
34 CSF
Holders
34
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 CSFLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ChuckySoulFragments
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; contract ChuckySoulFragments is ERC721 { using Strings for uint256; uint256 public tokenId = 0; address private _owner; uint256 public mintPrice; uint256 public startTime; uint256 public maxSupply; string public baseURI = ""; mapping(address => bool) private adminAddressList; uint256 maxBalance; modifier onlyOwner() { require(adminAddressList[msg.sender], "only owner"); _; } constructor(string memory _baseUri, uint256 _maxSupply,uint256 _startTime) ERC721("Chuckys Soul Fragments", "CSF") { baseURI = _baseUri; maxBalance = 1; mintPrice = 0.02 ether; maxSupply = _maxSupply; adminAddressList[msg.sender] = true; startTime = _startTime; } function mint(address _to) external payable { require(block.timestamp>=startTime,"not start"); require(tokenId < maxSupply, "Exceed Max Supply"); require(msg.value >= mintPrice, "Not Enough ETH"); require(balanceOf(_to) <= maxBalance, "Exceed Max"); _mint(_to, tokenId); tokenId += 1; } function totalSupply() external view returns (uint256) { return tokenId; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { return string( abi.encodePacked(baseURI, "/", _tokenId.toString(), ".json") ); } function transferFrom( address from, address to, uint256 _tokenId ) public virtual override onlyOwner { require( _isApprovedOrOwner(_msgSender(), _tokenId), "ERC721: transfer caller is not owner nor approved" ); _transfer(from, to, _tokenId); } function safeTransferFrom( address from, address to, uint256 _tokenId ) public virtual override onlyOwner { safeTransferFrom(from, to, _tokenId, ""); } function safeTransferFrom( address from, address to, uint256 _tokenId, bytes memory _data ) public virtual override onlyOwner { require( _isApprovedOrOwner(_msgSender(), _tokenId), "ERC721: transfer caller is not owner nor approved" ); _safeTransfer(from, to, _tokenId, _data); } function withdraw(address to) public onlyOwner { uint256 balance = address(this).balance; if (balance > 0) { payable(to).transfer(balance); } } function setMintPrice(uint256 _price) external onlyOwner { mintPrice = _price; } function setAdminInfo(address _addr, bool _bool) external onlyOwner { adminAddressList[_addr] = _bool; } function setMaxSupply(uint256 _maxSupply) external onlyOwner { maxSupply = _maxSupply; } function setBaseURI(string memory _baseURI) external onlyOwner{ baseURI = _baseURI; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(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); _afterTokenTransfer(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 from incorrect owner"); 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); _afterTokenTransfer(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 {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @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; }
// SPDX-License-Identifier: MIT // 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // 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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // 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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_startTime","type":"uint256"}],"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"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":"_addr","type":"address"},{"internalType":"bool","name":"_bool","type":"bool"}],"name":"setAdminInfo","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":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"tokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052600060065560405180602001604052806000815250600b908051906020019062000030929190620001a2565b503480156200003e57600080fd5b506040516200398a3803806200398a8339818101604052810190620000649190620002db565b6040518060400160405280601681526020017f436875636b797320536f756c20467261676d656e7473000000000000000000008152506040518060400160405280600381526020017f43534600000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000e8929190620001a2565b50806001908051906020019062000101929190620001a2565b50505082600b90805190602001906200011c929190620001a2565b506001600d8190555066470de4df82000060088190555081600a819055506001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080600981905550505050620004de565b828054620001b090620003e9565b90600052602060002090601f016020900481019282620001d4576000855562000220565b82601f10620001ef57805160ff191683800117855562000220565b8280016001018555821562000220579182015b828111156200021f57825182559160200191906001019062000202565b5b5090506200022f919062000233565b5090565b5b808211156200024e57600081600090555060010162000234565b5090565b600062000269620002638462000373565b6200034a565b9050828152602081018484840111156200028257600080fd5b6200028f848285620003b3565b509392505050565b600082601f830112620002a957600080fd5b8151620002bb84826020860162000252565b91505092915050565b600081519050620002d581620004c4565b92915050565b600080600060608486031215620002f157600080fd5b600084015167ffffffffffffffff8111156200030c57600080fd5b6200031a8682870162000297565b93505060206200032d86828701620002c4565b92505060406200034086828701620002c4565b9150509250925092565b60006200035662000369565b90506200036482826200041f565b919050565b6000604051905090565b600067ffffffffffffffff82111562000391576200039062000484565b5b6200039c82620004b3565b9050602081019050919050565b6000819050919050565b60005b83811015620003d3578082015181840152602081019050620003b6565b83811115620003e3576000848401525b50505050565b600060028204905060018216806200040257607f821691505b6020821081141562000419576200041862000455565b5b50919050565b6200042a82620004b3565b810181811067ffffffffffffffff821117156200044c576200044b62000484565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b620004cf81620003a9565b8114620004db57600080fd5b50565b61349c80620004ee6000396000f3fe6080604052600436106101665760003560e01c80636817c76c116100d157806395d89b411161008a578063c87b56dd11610064578063c87b56dd14610519578063d5abeb0114610556578063e985e9c514610581578063f4a0a528146105be57610166565b806395d89b411461049c578063a22cb465146104c7578063b88d4fde146104f057610166565b80636817c76c146103995780636a627842146103c45780636c0360eb146103e05780636f8b44b01461040b57806370a082311461043457806378e979251461047157610166565b806318160ddd1161012357806318160ddd1461028d57806323b872dd146102b857806342842e0e146102e157806351cff8d91461030a57806355f804b3146103335780636352211e1461035c57610166565b806301ffc9a71461016b57806306fdde03146101a8578063081812fc146101d35780630931f97a14610210578063095ea7b31461023957806317d70f7c14610262575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d9190612360565b6105e7565b60405161019f91906128c8565b60405180910390f35b3480156101b457600080fd5b506101bd6106c9565b6040516101ca91906128e3565b60405180910390f35b3480156101df57600080fd5b506101fa60048036038101906101f591906123f3565b61075b565b6040516102079190612861565b60405180910390f35b34801561021c57600080fd5b50610237600480360381019061023291906122e8565b6107e0565b005b34801561024557600080fd5b50610260600480360381019061025b9190612324565b6108c7565b005b34801561026e57600080fd5b506102776109df565b6040516102849190612b45565b60405180910390f35b34801561029957600080fd5b506102a26109e5565b6040516102af9190612b45565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da919061221e565b6109ef565b005b3480156102ed57600080fd5b506103086004803603810190610303919061221e565b610adb565b005b34801561031657600080fd5b50610331600480360381019061032c91906121b9565b610b87565b005b34801561033f57600080fd5b5061035a600480360381019061035591906123b2565b610c6d565b005b34801561036857600080fd5b50610383600480360381019061037e91906123f3565b610d13565b6040516103909190612861565b60405180910390f35b3480156103a557600080fd5b506103ae610dc5565b6040516103bb9190612b45565b60405180910390f35b6103de60048036038101906103d991906121b9565b610dcb565b005b3480156103ec57600080fd5b506103f5610f11565b60405161040291906128e3565b60405180910390f35b34801561041757600080fd5b50610432600480360381019061042d91906123f3565b610f9f565b005b34801561044057600080fd5b5061045b600480360381019061045691906121b9565b611035565b6040516104689190612b45565b60405180910390f35b34801561047d57600080fd5b506104866110ed565b6040516104939190612b45565b60405180910390f35b3480156104a857600080fd5b506104b16110f3565b6040516104be91906128e3565b60405180910390f35b3480156104d357600080fd5b506104ee60048036038101906104e991906122e8565b611185565b005b3480156104fc57600080fd5b506105176004803603810190610512919061226d565b61119b565b005b34801561052557600080fd5b50610540600480360381019061053b91906123f3565b611289565b60405161054d91906128e3565b60405180910390f35b34801561056257600080fd5b5061056b6112bd565b6040516105789190612b45565b60405180910390f35b34801561058d57600080fd5b506105a860048036038101906105a391906121e2565b6112c3565b6040516105b591906128c8565b60405180910390f35b3480156105ca57600080fd5b506105e560048036038101906105e091906123f3565b611357565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106b257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106c257506106c1826113ed565b5b9050919050565b6060600080546106d890612db0565b80601f016020809104026020016040519081016040528092919081815260200182805461070490612db0565b80156107515780601f1061072657610100808354040283529160200191610751565b820191906000526020600020905b81548152906001019060200180831161073457829003601f168201915b5050505050905090565b600061076682611457565b6107a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079c90612ac5565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661086c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086390612ae5565b60405180910390fd5b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006108d282610d13565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610943576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093a90612b05565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109626114c3565b73ffffffffffffffffffffffffffffffffffffffff16148061099157506109908161098b6114c3565b6112c3565b5b6109d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c790612a45565b60405180910390fd5b6109da83836114cb565b505050565b60065481565b6000600654905090565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7290612ae5565b60405180910390fd5b610a8c610a866114c3565b82611584565b610acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac290612b25565b60405180910390fd5b610ad6838383611662565b505050565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610b67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5e90612ae5565b60405180910390fd5b610b828383836040518060200160405280600081525061119b565b505050565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0a90612ae5565b60405180910390fd5b60004790506000811115610c69578173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610c67573d6000803e3d6000fd5b505b5050565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610cf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf090612ae5565b60405180910390fd5b80600b9080519060200190610d0f929190611fdd565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610dbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db390612a85565b60405180910390fd5b80915050919050565b60085481565b600954421015610e10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0790612905565b60405180910390fd5b600a5460065410610e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4d90612a25565b60405180910390fd5b600854341015610e9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e92906129a5565b60405180910390fd5b600d54610ea782611035565b1115610ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edf90612965565b60405180910390fd5b610ef4816006546118c9565b600160066000828254610f079190612c3f565b9250508190555050565b600b8054610f1e90612db0565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4a90612db0565b8015610f975780601f10610f6c57610100808354040283529160200191610f97565b820191906000526020600020905b815481529060010190602001808311610f7a57829003601f168201915b505050505081565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661102b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102290612ae5565b60405180910390fd5b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109d90612a65565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60095481565b60606001805461110290612db0565b80601f016020809104026020016040519081016040528092919081815260200182805461112e90612db0565b801561117b5780601f106111505761010080835404028352916020019161117b565b820191906000526020600020905b81548152906001019060200180831161115e57829003601f168201915b5050505050905090565b6111976111906114c3565b8383611aa3565b5050565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121e90612ae5565b60405180910390fd5b6112386112326114c3565b83611584565b611277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126e90612b25565b60405180910390fd5b61128384848484611c10565b50505050565b6060600b61129683611c6c565b6040516020016112a7929190612827565b6040516020818303038152906040529050919050565b600a5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166113e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113da90612ae5565b60405180910390fd5b8060088190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661153e83610d13565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061158f82611457565b6115ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c590612a05565b60405180910390fd5b60006115d983610d13565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061164857508373ffffffffffffffffffffffffffffffffffffffff166116308461075b565b73ffffffffffffffffffffffffffffffffffffffff16145b80611659575061165881856112c3565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661168282610d13565b73ffffffffffffffffffffffffffffffffffffffff16146116d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cf90612945565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173f906129c5565b60405180910390fd5b611753838383611e19565b61175e6000826114cb565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117ae9190612cc6565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118059190612c3f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46118c4838383611e1e565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611939576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193090612aa5565b60405180910390fd5b61194281611457565b15611982576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197990612985565b60405180910390fd5b61198e60008383611e19565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119de9190612c3f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a9f60008383611e1e565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b09906129e5565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c0391906128c8565b60405180910390a3505050565b611c1b848484611662565b611c2784848484611e23565b611c66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5d90612925565b60405180910390fd5b50505050565b60606000821415611cb4576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e14565b600082905060005b60008214611ce6578080611ccf90612e13565b915050600a82611cdf9190612c95565b9150611cbc565b60008167ffffffffffffffff811115611d28577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611d5a5781602001600182028036833780820191505090505b5090505b60008514611e0d57600182611d739190612cc6565b9150600a85611d829190612e5c565b6030611d8e9190612c3f565b60f81b818381518110611dca577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611e069190612c95565b9450611d5e565b8093505050505b919050565b505050565b505050565b6000611e448473ffffffffffffffffffffffffffffffffffffffff16611fba565b15611fad578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e6d6114c3565b8786866040518563ffffffff1660e01b8152600401611e8f949392919061287c565b602060405180830381600087803b158015611ea957600080fd5b505af1925050508015611eda57506040513d601f19601f82011682018060405250810190611ed79190612389565b60015b611f5d573d8060008114611f0a576040519150601f19603f3d011682016040523d82523d6000602084013e611f0f565b606091505b50600081511415611f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4c90612925565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611fb2565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054611fe990612db0565b90600052602060002090601f01602090048101928261200b5760008555612052565b82601f1061202457805160ff1916838001178555612052565b82800160010185558215612052579182015b82811115612051578251825591602001919060010190612036565b5b50905061205f9190612063565b5090565b5b8082111561207c576000816000905550600101612064565b5090565b600061209361208e84612b85565b612b60565b9050828152602081018484840111156120ab57600080fd5b6120b6848285612d6e565b509392505050565b60006120d16120cc84612bb6565b612b60565b9050828152602081018484840111156120e957600080fd5b6120f4848285612d6e565b509392505050565b60008135905061210b8161340a565b92915050565b60008135905061212081613421565b92915050565b60008135905061213581613438565b92915050565b60008151905061214a81613438565b92915050565b600082601f83011261216157600080fd5b8135612171848260208601612080565b91505092915050565b600082601f83011261218b57600080fd5b813561219b8482602086016120be565b91505092915050565b6000813590506121b38161344f565b92915050565b6000602082840312156121cb57600080fd5b60006121d9848285016120fc565b91505092915050565b600080604083850312156121f557600080fd5b6000612203858286016120fc565b9250506020612214858286016120fc565b9150509250929050565b60008060006060848603121561223357600080fd5b6000612241868287016120fc565b9350506020612252868287016120fc565b9250506040612263868287016121a4565b9150509250925092565b6000806000806080858703121561228357600080fd5b6000612291878288016120fc565b94505060206122a2878288016120fc565b93505060406122b3878288016121a4565b925050606085013567ffffffffffffffff8111156122d057600080fd5b6122dc87828801612150565b91505092959194509250565b600080604083850312156122fb57600080fd5b6000612309858286016120fc565b925050602061231a85828601612111565b9150509250929050565b6000806040838503121561233757600080fd5b6000612345858286016120fc565b9250506020612356858286016121a4565b9150509250929050565b60006020828403121561237257600080fd5b600061238084828501612126565b91505092915050565b60006020828403121561239b57600080fd5b60006123a98482850161213b565b91505092915050565b6000602082840312156123c457600080fd5b600082013567ffffffffffffffff8111156123de57600080fd5b6123ea8482850161217a565b91505092915050565b60006020828403121561240557600080fd5b6000612413848285016121a4565b91505092915050565b61242581612cfa565b82525050565b61243481612d0c565b82525050565b600061244582612bfc565b61244f8185612c12565b935061245f818560208601612d7d565b61246881612f49565b840191505092915050565b600061247e82612c07565b6124888185612c23565b9350612498818560208601612d7d565b6124a181612f49565b840191505092915050565b60006124b782612c07565b6124c18185612c34565b93506124d1818560208601612d7d565b80840191505092915050565b600081546124ea81612db0565b6124f48186612c34565b9450600182166000811461250f576001811461252057612553565b60ff19831686528186019350612553565b61252985612be7565b60005b8381101561254b5781548189015260018201915060208101905061252c565b838801955050505b50505092915050565b6000612569600983612c23565b915061257482612f5a565b602082019050919050565b600061258c603283612c23565b915061259782612f83565b604082019050919050565b60006125af602583612c23565b91506125ba82612fd2565b604082019050919050565b60006125d2600a83612c23565b91506125dd82613021565b602082019050919050565b60006125f5601c83612c23565b91506126008261304a565b602082019050919050565b6000612618600e83612c23565b915061262382613073565b602082019050919050565b600061263b602483612c23565b91506126468261309c565b604082019050919050565b600061265e601983612c23565b9150612669826130eb565b602082019050919050565b6000612681602c83612c23565b915061268c82613114565b604082019050919050565b60006126a4601183612c23565b91506126af82613163565b602082019050919050565b60006126c7603883612c23565b91506126d28261318c565b604082019050919050565b60006126ea602a83612c23565b91506126f5826131db565b604082019050919050565b600061270d602983612c23565b91506127188261322a565b604082019050919050565b6000612730602083612c23565b915061273b82613279565b602082019050919050565b6000612753602c83612c23565b915061275e826132a2565b604082019050919050565b6000612776600583612c34565b9150612781826132f1565b600582019050919050565b6000612799600a83612c23565b91506127a48261331a565b602082019050919050565b60006127bc602183612c23565b91506127c782613343565b604082019050919050565b60006127df603183612c23565b91506127ea82613392565b604082019050919050565b6000612802600183612c34565b915061280d826133e1565b600182019050919050565b61282181612d64565b82525050565b600061283382856124dd565b915061283e826127f5565b915061284a82846124ac565b915061285582612769565b91508190509392505050565b6000602082019050612876600083018461241c565b92915050565b6000608082019050612891600083018761241c565b61289e602083018661241c565b6128ab6040830185612818565b81810360608301526128bd818461243a565b905095945050505050565b60006020820190506128dd600083018461242b565b92915050565b600060208201905081810360008301526128fd8184612473565b905092915050565b6000602082019050818103600083015261291e8161255c565b9050919050565b6000602082019050818103600083015261293e8161257f565b9050919050565b6000602082019050818103600083015261295e816125a2565b9050919050565b6000602082019050818103600083015261297e816125c5565b9050919050565b6000602082019050818103600083015261299e816125e8565b9050919050565b600060208201905081810360008301526129be8161260b565b9050919050565b600060208201905081810360008301526129de8161262e565b9050919050565b600060208201905081810360008301526129fe81612651565b9050919050565b60006020820190508181036000830152612a1e81612674565b9050919050565b60006020820190508181036000830152612a3e81612697565b9050919050565b60006020820190508181036000830152612a5e816126ba565b9050919050565b60006020820190508181036000830152612a7e816126dd565b9050919050565b60006020820190508181036000830152612a9e81612700565b9050919050565b60006020820190508181036000830152612abe81612723565b9050919050565b60006020820190508181036000830152612ade81612746565b9050919050565b60006020820190508181036000830152612afe8161278c565b9050919050565b60006020820190508181036000830152612b1e816127af565b9050919050565b60006020820190508181036000830152612b3e816127d2565b9050919050565b6000602082019050612b5a6000830184612818565b92915050565b6000612b6a612b7b565b9050612b768282612de2565b919050565b6000604051905090565b600067ffffffffffffffff821115612ba057612b9f612f1a565b5b612ba982612f49565b9050602081019050919050565b600067ffffffffffffffff821115612bd157612bd0612f1a565b5b612bda82612f49565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612c4a82612d64565b9150612c5583612d64565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c8a57612c89612e8d565b5b828201905092915050565b6000612ca082612d64565b9150612cab83612d64565b925082612cbb57612cba612ebc565b5b828204905092915050565b6000612cd182612d64565b9150612cdc83612d64565b925082821015612cef57612cee612e8d565b5b828203905092915050565b6000612d0582612d44565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612d9b578082015181840152602081019050612d80565b83811115612daa576000848401525b50505050565b60006002820490506001821680612dc857607f821691505b60208210811415612ddc57612ddb612eeb565b5b50919050565b612deb82612f49565b810181811067ffffffffffffffff82111715612e0a57612e09612f1a565b5b80604052505050565b6000612e1e82612d64565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612e5157612e50612e8d565b5b600182019050919050565b6000612e6782612d64565b9150612e7283612d64565b925082612e8257612e81612ebc565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f6e6f742073746172740000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f457863656564204d617800000000000000000000000000000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e6f7420456e6f75676820455448000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f457863656564204d617820537570706c79000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f6f6e6c79206f776e657200000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b61341381612cfa565b811461341e57600080fd5b50565b61342a81612d0c565b811461343557600080fd5b50565b61344181612d18565b811461344c57600080fd5b50565b61345881612d64565b811461346357600080fd5b5056fea26469706673582212202934baa5fbe0028a7329f8133345466ee63c92764487b591b9625649a45b9a8664736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000001388000000000000000000000000000000000000000000000000000000006353a3000000000000000000000000000000000000000000000000000000000000000042697066733a2f2f6261666b726569666d717069646b6d3662646a6c696c326c76646b717274626d376b653469613679786861706766366a6477727665656c73636834000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101665760003560e01c80636817c76c116100d157806395d89b411161008a578063c87b56dd11610064578063c87b56dd14610519578063d5abeb0114610556578063e985e9c514610581578063f4a0a528146105be57610166565b806395d89b411461049c578063a22cb465146104c7578063b88d4fde146104f057610166565b80636817c76c146103995780636a627842146103c45780636c0360eb146103e05780636f8b44b01461040b57806370a082311461043457806378e979251461047157610166565b806318160ddd1161012357806318160ddd1461028d57806323b872dd146102b857806342842e0e146102e157806351cff8d91461030a57806355f804b3146103335780636352211e1461035c57610166565b806301ffc9a71461016b57806306fdde03146101a8578063081812fc146101d35780630931f97a14610210578063095ea7b31461023957806317d70f7c14610262575b600080fd5b34801561017757600080fd5b50610192600480360381019061018d9190612360565b6105e7565b60405161019f91906128c8565b60405180910390f35b3480156101b457600080fd5b506101bd6106c9565b6040516101ca91906128e3565b60405180910390f35b3480156101df57600080fd5b506101fa60048036038101906101f591906123f3565b61075b565b6040516102079190612861565b60405180910390f35b34801561021c57600080fd5b50610237600480360381019061023291906122e8565b6107e0565b005b34801561024557600080fd5b50610260600480360381019061025b9190612324565b6108c7565b005b34801561026e57600080fd5b506102776109df565b6040516102849190612b45565b60405180910390f35b34801561029957600080fd5b506102a26109e5565b6040516102af9190612b45565b60405180910390f35b3480156102c457600080fd5b506102df60048036038101906102da919061221e565b6109ef565b005b3480156102ed57600080fd5b506103086004803603810190610303919061221e565b610adb565b005b34801561031657600080fd5b50610331600480360381019061032c91906121b9565b610b87565b005b34801561033f57600080fd5b5061035a600480360381019061035591906123b2565b610c6d565b005b34801561036857600080fd5b50610383600480360381019061037e91906123f3565b610d13565b6040516103909190612861565b60405180910390f35b3480156103a557600080fd5b506103ae610dc5565b6040516103bb9190612b45565b60405180910390f35b6103de60048036038101906103d991906121b9565b610dcb565b005b3480156103ec57600080fd5b506103f5610f11565b60405161040291906128e3565b60405180910390f35b34801561041757600080fd5b50610432600480360381019061042d91906123f3565b610f9f565b005b34801561044057600080fd5b5061045b600480360381019061045691906121b9565b611035565b6040516104689190612b45565b60405180910390f35b34801561047d57600080fd5b506104866110ed565b6040516104939190612b45565b60405180910390f35b3480156104a857600080fd5b506104b16110f3565b6040516104be91906128e3565b60405180910390f35b3480156104d357600080fd5b506104ee60048036038101906104e991906122e8565b611185565b005b3480156104fc57600080fd5b506105176004803603810190610512919061226d565b61119b565b005b34801561052557600080fd5b50610540600480360381019061053b91906123f3565b611289565b60405161054d91906128e3565b60405180910390f35b34801561056257600080fd5b5061056b6112bd565b6040516105789190612b45565b60405180910390f35b34801561058d57600080fd5b506105a860048036038101906105a391906121e2565b6112c3565b6040516105b591906128c8565b60405180910390f35b3480156105ca57600080fd5b506105e560048036038101906105e091906123f3565b611357565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106b257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106c257506106c1826113ed565b5b9050919050565b6060600080546106d890612db0565b80601f016020809104026020016040519081016040528092919081815260200182805461070490612db0565b80156107515780601f1061072657610100808354040283529160200191610751565b820191906000526020600020905b81548152906001019060200180831161073457829003601f168201915b5050505050905090565b600061076682611457565b6107a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079c90612ac5565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661086c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086390612ae5565b60405180910390fd5b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60006108d282610d13565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610943576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093a90612b05565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109626114c3565b73ffffffffffffffffffffffffffffffffffffffff16148061099157506109908161098b6114c3565b6112c3565b5b6109d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c790612a45565b60405180910390fd5b6109da83836114cb565b505050565b60065481565b6000600654905090565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7290612ae5565b60405180910390fd5b610a8c610a866114c3565b82611584565b610acb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac290612b25565b60405180910390fd5b610ad6838383611662565b505050565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610b67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5e90612ae5565b60405180910390fd5b610b828383836040518060200160405280600081525061119b565b505050565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0a90612ae5565b60405180910390fd5b60004790506000811115610c69578173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610c67573d6000803e3d6000fd5b505b5050565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610cf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf090612ae5565b60405180910390fd5b80600b9080519060200190610d0f929190611fdd565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610dbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db390612a85565b60405180910390fd5b80915050919050565b60085481565b600954421015610e10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0790612905565b60405180910390fd5b600a5460065410610e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4d90612a25565b60405180910390fd5b600854341015610e9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e92906129a5565b60405180910390fd5b600d54610ea782611035565b1115610ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edf90612965565b60405180910390fd5b610ef4816006546118c9565b600160066000828254610f079190612c3f565b9250508190555050565b600b8054610f1e90612db0565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4a90612db0565b8015610f975780601f10610f6c57610100808354040283529160200191610f97565b820191906000526020600020905b815481529060010190602001808311610f7a57829003601f168201915b505050505081565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661102b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102290612ae5565b60405180910390fd5b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109d90612a65565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60095481565b60606001805461110290612db0565b80601f016020809104026020016040519081016040528092919081815260200182805461112e90612db0565b801561117b5780601f106111505761010080835404028352916020019161117b565b820191906000526020600020905b81548152906001019060200180831161115e57829003601f168201915b5050505050905090565b6111976111906114c3565b8383611aa3565b5050565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121e90612ae5565b60405180910390fd5b6112386112326114c3565b83611584565b611277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126e90612b25565b60405180910390fd5b61128384848484611c10565b50505050565b6060600b61129683611c6c565b6040516020016112a7929190612827565b6040516020818303038152906040529050919050565b600a5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166113e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113da90612ae5565b60405180910390fd5b8060088190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661153e83610d13565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061158f82611457565b6115ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c590612a05565b60405180910390fd5b60006115d983610d13565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061164857508373ffffffffffffffffffffffffffffffffffffffff166116308461075b565b73ffffffffffffffffffffffffffffffffffffffff16145b80611659575061165881856112c3565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661168282610d13565b73ffffffffffffffffffffffffffffffffffffffff16146116d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cf90612945565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173f906129c5565b60405180910390fd5b611753838383611e19565b61175e6000826114cb565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117ae9190612cc6565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118059190612c3f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46118c4838383611e1e565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611939576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193090612aa5565b60405180910390fd5b61194281611457565b15611982576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197990612985565b60405180910390fd5b61198e60008383611e19565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119de9190612c3f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a9f60008383611e1e565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b09906129e5565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c0391906128c8565b60405180910390a3505050565b611c1b848484611662565b611c2784848484611e23565b611c66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5d90612925565b60405180910390fd5b50505050565b60606000821415611cb4576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e14565b600082905060005b60008214611ce6578080611ccf90612e13565b915050600a82611cdf9190612c95565b9150611cbc565b60008167ffffffffffffffff811115611d28577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611d5a5781602001600182028036833780820191505090505b5090505b60008514611e0d57600182611d739190612cc6565b9150600a85611d829190612e5c565b6030611d8e9190612c3f565b60f81b818381518110611dca577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611e069190612c95565b9450611d5e565b8093505050505b919050565b505050565b505050565b6000611e448473ffffffffffffffffffffffffffffffffffffffff16611fba565b15611fad578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e6d6114c3565b8786866040518563ffffffff1660e01b8152600401611e8f949392919061287c565b602060405180830381600087803b158015611ea957600080fd5b505af1925050508015611eda57506040513d601f19601f82011682018060405250810190611ed79190612389565b60015b611f5d573d8060008114611f0a576040519150601f19603f3d011682016040523d82523d6000602084013e611f0f565b606091505b50600081511415611f55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4c90612925565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611fb2565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054611fe990612db0565b90600052602060002090601f01602090048101928261200b5760008555612052565b82601f1061202457805160ff1916838001178555612052565b82800160010185558215612052579182015b82811115612051578251825591602001919060010190612036565b5b50905061205f9190612063565b5090565b5b8082111561207c576000816000905550600101612064565b5090565b600061209361208e84612b85565b612b60565b9050828152602081018484840111156120ab57600080fd5b6120b6848285612d6e565b509392505050565b60006120d16120cc84612bb6565b612b60565b9050828152602081018484840111156120e957600080fd5b6120f4848285612d6e565b509392505050565b60008135905061210b8161340a565b92915050565b60008135905061212081613421565b92915050565b60008135905061213581613438565b92915050565b60008151905061214a81613438565b92915050565b600082601f83011261216157600080fd5b8135612171848260208601612080565b91505092915050565b600082601f83011261218b57600080fd5b813561219b8482602086016120be565b91505092915050565b6000813590506121b38161344f565b92915050565b6000602082840312156121cb57600080fd5b60006121d9848285016120fc565b91505092915050565b600080604083850312156121f557600080fd5b6000612203858286016120fc565b9250506020612214858286016120fc565b9150509250929050565b60008060006060848603121561223357600080fd5b6000612241868287016120fc565b9350506020612252868287016120fc565b9250506040612263868287016121a4565b9150509250925092565b6000806000806080858703121561228357600080fd5b6000612291878288016120fc565b94505060206122a2878288016120fc565b93505060406122b3878288016121a4565b925050606085013567ffffffffffffffff8111156122d057600080fd5b6122dc87828801612150565b91505092959194509250565b600080604083850312156122fb57600080fd5b6000612309858286016120fc565b925050602061231a85828601612111565b9150509250929050565b6000806040838503121561233757600080fd5b6000612345858286016120fc565b9250506020612356858286016121a4565b9150509250929050565b60006020828403121561237257600080fd5b600061238084828501612126565b91505092915050565b60006020828403121561239b57600080fd5b60006123a98482850161213b565b91505092915050565b6000602082840312156123c457600080fd5b600082013567ffffffffffffffff8111156123de57600080fd5b6123ea8482850161217a565b91505092915050565b60006020828403121561240557600080fd5b6000612413848285016121a4565b91505092915050565b61242581612cfa565b82525050565b61243481612d0c565b82525050565b600061244582612bfc565b61244f8185612c12565b935061245f818560208601612d7d565b61246881612f49565b840191505092915050565b600061247e82612c07565b6124888185612c23565b9350612498818560208601612d7d565b6124a181612f49565b840191505092915050565b60006124b782612c07565b6124c18185612c34565b93506124d1818560208601612d7d565b80840191505092915050565b600081546124ea81612db0565b6124f48186612c34565b9450600182166000811461250f576001811461252057612553565b60ff19831686528186019350612553565b61252985612be7565b60005b8381101561254b5781548189015260018201915060208101905061252c565b838801955050505b50505092915050565b6000612569600983612c23565b915061257482612f5a565b602082019050919050565b600061258c603283612c23565b915061259782612f83565b604082019050919050565b60006125af602583612c23565b91506125ba82612fd2565b604082019050919050565b60006125d2600a83612c23565b91506125dd82613021565b602082019050919050565b60006125f5601c83612c23565b91506126008261304a565b602082019050919050565b6000612618600e83612c23565b915061262382613073565b602082019050919050565b600061263b602483612c23565b91506126468261309c565b604082019050919050565b600061265e601983612c23565b9150612669826130eb565b602082019050919050565b6000612681602c83612c23565b915061268c82613114565b604082019050919050565b60006126a4601183612c23565b91506126af82613163565b602082019050919050565b60006126c7603883612c23565b91506126d28261318c565b604082019050919050565b60006126ea602a83612c23565b91506126f5826131db565b604082019050919050565b600061270d602983612c23565b91506127188261322a565b604082019050919050565b6000612730602083612c23565b915061273b82613279565b602082019050919050565b6000612753602c83612c23565b915061275e826132a2565b604082019050919050565b6000612776600583612c34565b9150612781826132f1565b600582019050919050565b6000612799600a83612c23565b91506127a48261331a565b602082019050919050565b60006127bc602183612c23565b91506127c782613343565b604082019050919050565b60006127df603183612c23565b91506127ea82613392565b604082019050919050565b6000612802600183612c34565b915061280d826133e1565b600182019050919050565b61282181612d64565b82525050565b600061283382856124dd565b915061283e826127f5565b915061284a82846124ac565b915061285582612769565b91508190509392505050565b6000602082019050612876600083018461241c565b92915050565b6000608082019050612891600083018761241c565b61289e602083018661241c565b6128ab6040830185612818565b81810360608301526128bd818461243a565b905095945050505050565b60006020820190506128dd600083018461242b565b92915050565b600060208201905081810360008301526128fd8184612473565b905092915050565b6000602082019050818103600083015261291e8161255c565b9050919050565b6000602082019050818103600083015261293e8161257f565b9050919050565b6000602082019050818103600083015261295e816125a2565b9050919050565b6000602082019050818103600083015261297e816125c5565b9050919050565b6000602082019050818103600083015261299e816125e8565b9050919050565b600060208201905081810360008301526129be8161260b565b9050919050565b600060208201905081810360008301526129de8161262e565b9050919050565b600060208201905081810360008301526129fe81612651565b9050919050565b60006020820190508181036000830152612a1e81612674565b9050919050565b60006020820190508181036000830152612a3e81612697565b9050919050565b60006020820190508181036000830152612a5e816126ba565b9050919050565b60006020820190508181036000830152612a7e816126dd565b9050919050565b60006020820190508181036000830152612a9e81612700565b9050919050565b60006020820190508181036000830152612abe81612723565b9050919050565b60006020820190508181036000830152612ade81612746565b9050919050565b60006020820190508181036000830152612afe8161278c565b9050919050565b60006020820190508181036000830152612b1e816127af565b9050919050565b60006020820190508181036000830152612b3e816127d2565b9050919050565b6000602082019050612b5a6000830184612818565b92915050565b6000612b6a612b7b565b9050612b768282612de2565b919050565b6000604051905090565b600067ffffffffffffffff821115612ba057612b9f612f1a565b5b612ba982612f49565b9050602081019050919050565b600067ffffffffffffffff821115612bd157612bd0612f1a565b5b612bda82612f49565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612c4a82612d64565b9150612c5583612d64565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c8a57612c89612e8d565b5b828201905092915050565b6000612ca082612d64565b9150612cab83612d64565b925082612cbb57612cba612ebc565b5b828204905092915050565b6000612cd182612d64565b9150612cdc83612d64565b925082821015612cef57612cee612e8d565b5b828203905092915050565b6000612d0582612d44565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612d9b578082015181840152602081019050612d80565b83811115612daa576000848401525b50505050565b60006002820490506001821680612dc857607f821691505b60208210811415612ddc57612ddb612eeb565b5b50919050565b612deb82612f49565b810181811067ffffffffffffffff82111715612e0a57612e09612f1a565b5b80604052505050565b6000612e1e82612d64565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612e5157612e50612e8d565b5b600182019050919050565b6000612e6782612d64565b9150612e7283612d64565b925082612e8257612e81612ebc565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f6e6f742073746172740000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f457863656564204d617800000000000000000000000000000000000000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e6f7420456e6f75676820455448000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f457863656564204d617820537570706c79000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f6f6e6c79206f776e657200000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b61341381612cfa565b811461341e57600080fd5b50565b61342a81612d0c565b811461343557600080fd5b50565b61344181612d18565b811461344c57600080fd5b50565b61345881612d64565b811461346357600080fd5b5056fea26469706673582212202934baa5fbe0028a7329f8133345466ee63c92764487b591b9625649a45b9a8664736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000001388000000000000000000000000000000000000000000000000000000006353a3000000000000000000000000000000000000000000000000000000000000000042697066733a2f2f6261666b726569666d717069646b6d3662646a6c696c326c76646b717274626d376b653469613679786861706766366a6477727665656c73636834000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _baseUri (string): ipfs://bafkreifmqpidkm6bdjlil2lvdkqrtbm7ke4ia6yxhapgf6jdwrveelsch4
Arg [1] : _maxSupply (uint256): 5000
Arg [2] : _startTime (uint256): 1666425600
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 0000000000000000000000000000000000000000000000000000000000001388
Arg [2] : 000000000000000000000000000000000000000000000000000000006353a300
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000042
Arg [4] : 697066733a2f2f6261666b726569666d717069646b6d3662646a6c696c326c76
Arg [5] : 646b717274626d376b653469613679786861706766366a6477727665656c7363
Arg [6] : 6834000000000000000000000000000000000000000000000000000000000000
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.