Feature Tip: Add private address tag to any address under My Name Tag !
NFT
Overview
TokenID
844
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CryptoidsERC721
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: Unlicense // ▄▄· ▄▄▄ ▄· ▄▌ ▄▄▄·▄▄▄▄▄ ▪ ·▄▄▄▄ .▄▄ · // ▐█ ▌▪▀▄ █·▐█▪██▌▐█ ▄█•██ ▪ ██ ██▪ ██ ▐█ ▀. // ██ ▄▄▐▀▀▄ ▐█▌▐█▪ ██▀· ▐█.▪ ▄█▀▄ ▐█·▐█· ▐█▌▄▀▀▀█▄ // ▐███▌▐█•█▌ ▐█▀·.▐█▪·• ▐█▌·▐█▌.▐▌▐█▌██. ██ ▐█▄▪▐█ // ·▀▀▀ .▀ ▀ ▀ • .▀ ▀▀▀ ▀█▄▀▪▀▀▀▀▀▀▀▀• ▀▀▀▀ pragma solidity ^0.8.0; import "Ownable.sol"; import "Counters.sol"; import "ERC721.sol"; import "Strings.sol"; import "EIP712Whitelist.sol"; contract CryptoidsERC721 is ERC721, EIP712Whitelist { using Counters for Counters.Counter; using Strings for uint256; Counters.Counter private _tokenIdCounter; uint256 public constant maxSupply = 8000; uint256 public constant genesisSupply = 1000; bool public genesisPhase = true; bool public isPresaleActive = false; bool public isSaleActive = false; uint256 public reserved = 80; uint256 public genesisPrice = 0.12 ether; uint256 public price = 0.1 ether; string private _baseTokenURI; address private _withdrawer; mapping(address => uint256) private _freeMinter; constructor(string memory name, string memory symbol, string memory baseURI, address withdrawer, address signer) ERC721(name, symbol) EIP712Whitelist() { setWhitelistSigningAddress(signer); setBaseURI(baseURI); setWithdrawer(withdrawer); } function _mintOne(address _to) internal returns (uint256) { _tokenIdCounter.increment(); uint256 newTokenId = _tokenIdCounter.current(); _safeMint(_to, newTokenId); return newTokenId; } function genesisPresale(bytes calldata signature, uint256 nonce) external payable requiresWhitelist(signature, nonce) returns (uint256) { /** * @dev Genesis presale * @param signature Signed message for whitelisted users * @param nonce Nonce associated with the signed message * * - The Cryptoids Genesis cost 0.12 per mint. * - One per transaction and per signature. * - The contract is constructed to optimize gas. */ require( genesisPhase, "Genesis phase is not active" ); require( isPresaleActive, "Presale are not active" ); require( _tokenIdCounter.current() < genesisSupply, "Exceeds genesis tokens supply" ); require( msg.value >= genesisPrice, "Ether sent is not correct"); useNonce(nonce); return _mintOne(msg.sender); } function genesisSale(uint256 num) external payable { /** * @dev Genesis sale * @param num Number of token to mint * * - The Cryptoids Genesis cost 0.12 per mint. * - Maximum 4 tokens per transaction * - The contract is constructed to optimize gas. */ require( genesisPhase, "Genesis phase is not active" ); require( isSaleActive, "Sale are not active" ); require( num <= 4, "You can only mint a maximum of 4 tokens per transaction" ); require( _tokenIdCounter.current() + num <= genesisSupply, "Exceeds genesis token supply" ); require( msg.value >= genesisPrice * num, "Ether sent is not correct" ); for(uint256 i=0; i < num; i++){ _mintOne(msg.sender); } } function normalPresale(uint256 num, bytes calldata signature, uint256 nonce) external payable requiresWhitelist(signature, nonce) { /** * @dev Normal presale * @param num Number of token to mint * @param signature Signed message for whitelisted users * @param nonce Nonce associated with the signed message * * - Maximum two mint per transaction and one transaction per signature. * - The contract is constructed to optimize gas. */ require( !genesisPhase, "Can't normal mint during genesis phase" ); require( isPresaleActive, "Presale are not active"); require( num <= 2, "Only two mint allowed during presale"); require( _tokenIdCounter.current() + num <= maxSupply, "Exceeds maximum token supply" ); require( msg.value >= price * num, "Ether sent is not correct" ); useNonce(nonce); for(uint256 i=0; i < num; i++){ _mintOne(msg.sender); } } function normalSale(uint256 num) external payable { /** * @dev Normal sale * @param num Number of token to mint * * - Maximum 2 tokens per transaction * - Maximum 4 tokens per wallet * - The contract is constructed to optimize gas. */ require( !genesisPhase, "Can't normal mint during genesis phase" ); require( isSaleActive, "Sale are not active"); require( num <= 2, "You can only mint a maximum of 2 tokens per transaction" ); require( balanceOf(msg.sender) + num <= 4, "Maximum 4 eggs per wallet"); require( _tokenIdCounter.current() + num <= maxSupply, "Exceeds maximum token supply" ); require( msg.value >= price * num, "Ether sent is not correct" ); for(uint256 i=0; i < num; i++){ _mintOne(msg.sender); } } function freeMint(uint256 num) external { /** * @dev Free mint * @param num Number of token to mint * * - One mint per transaction * - The contract is constructed to optimize gas. */ uint256 resNum = _freeMinter[msg.sender]; require(resNum > 0, "No free mint allowed for your address"); require(num <= resNum, "Can't mint more than reserved"); require(_tokenIdCounter.current() + num <= maxSupply, "Exceeds maximum token supply" ); if (genesisPhase) { require(_tokenIdCounter.current() + num <= genesisSupply, "Exceeds genesis token supply" ); } _freeMinter[msg.sender] = resNum - num; for(uint256 i=0; i < num; i++){ _mintOne(msg.sender); } } function airDrop(address _to) external onlyOwner returns (uint256) { require( !genesisPhase, "Can't air drop during genesis phase" ); require( reserved > 0, "Exceeds reserved tokens supply" ); uint256 newTokenId = maxSupply + 81 - reserved; _safeMint(_to, newTokenId); reserved--; return newTokenId; } function tokensOfOwner(address _owner) external view returns (uint256[] memory) { uint256 ownerBalance = balanceOf(_owner); if (ownerBalance == 0) { return new uint256[](0); } uint256[] memory ownerTokens = new uint256[](ownerBalance); uint256 ownerIndex = 0; for (uint256 tokenId=1; tokenId <= _tokenIdCounter.current(); tokenId++){ if (_owner == ownerOf(tokenId)){ ownerTokens[ownerIndex] = tokenId; ownerIndex++; if (ownerIndex == ownerBalance) break; } } if (ownerIndex != ownerBalance){ for (uint256 tokenId = maxSupply + 1; tokenId <= maxSupply + 81 - reserved; tokenId++){ if (_owner == ownerOf(tokenId)){ ownerTokens[ownerIndex] = tokenId; ownerIndex++; if (ownerIndex == ownerBalance) break; } } } return ownerTokens; } function setFreeMinter(address freeMinter, uint256 num) external onlyOwner { _freeMinter[freeMinter] = num; } function setMintPrice(uint256 newPrice) external onlyOwner { price = newPrice; } function setBaseURI(string memory baseURI) public onlyOwner { _baseTokenURI = baseURI; } function _baseURI() internal view override returns (string memory) { return _baseTokenURI; } function toggleGenesisPhase() external onlyOwner { genesisPhase = !genesisPhase; } function toggleSale() external onlyOwner { isSaleActive = !isSaleActive; } function togglePresale() external onlyOwner { isPresaleActive = !isPresaleActive; } function totalSupply() external view returns (uint256) { return _tokenIdCounter.current() + 80 - reserved; } function setWithdrawer(address withdrawer) public onlyOwner { _withdrawer = withdrawer; } function withdrawAll() external payable onlyOwner { uint256 balance = address(this).balance; require(balance > 0, "Balance is 0"); payable(_withdrawer).transfer(balance); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// 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/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "IERC721.sol"; import "IERC721Receiver.sol"; import "IERC721Metadata.sol"; import "Address.sol"; import "Context.sol"; import "Strings.sol"; import "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); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "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 (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); }
// 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 v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// 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 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 pragma solidity ^0.8.0; import "Ownable.sol"; import "ECDSA.sol"; contract EIP712Whitelist is Ownable { using ECDSA for bytes32; address whitelistSigningKey = address(0); bytes32 public DOMAIN_SEPARATOR; bytes32 public constant MINTER_TYPEHASH = keccak256("Minter(address wallet,uint256 nonce)"); mapping(uint256 => bool) usedNonces; constructor() { DOMAIN_SEPARATOR = keccak256( abi.encode( keccak256( "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)" ), keccak256(bytes("WhitelistToken")), keccak256(bytes("1")), block.chainid, address(this) ) ); } function setWhitelistSigningAddress(address newSigningKey) public onlyOwner { whitelistSigningKey = newSigningKey; } function useNonce(uint256 nonce) internal { usedNonces[nonce] = true; } modifier requiresWhitelist(bytes calldata signature, uint256 nonce) { require(whitelistSigningKey != address(0), "whitelist not enabled"); require(!usedNonces[nonce], "Signature already claimed"); bytes32 digest = keccak256( abi.encodePacked( "\x19\x01", DOMAIN_SEPARATOR, keccak256( abi.encode( MINTER_TYPEHASH, msg.sender, nonce ) ) ) ); address recoveredAddress = digest.recover(signature); require(recoveredAddress == whitelistSigningKey, "Invalid Signature"); _; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "Strings.sol"; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s; uint8 v; assembly { s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) v := add(shr(255, vs), 27) } return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
{ "evmVersion": "istanbul", "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"address","name":"withdrawer","type":"address"},{"internalType":"address","name":"signer","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"airDrop","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"genesisPhase","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint256","name":"nonce","type":"uint256"}],"name":"genesisPresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"genesisPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"genesisSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"genesisSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","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":"num","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint256","name":"nonce","type":"uint256"}],"name":"normalPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"normalSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserved","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"freeMinter","type":"address"},{"internalType":"uint256","name":"num","type":"uint256"}],"name":"setFreeMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newSigningKey","type":"address"}],"name":"setWhitelistSigningAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"withdrawer","type":"address"}],"name":"setWithdrawer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleGenesisPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
6080604052600780546001600160a01b0319169055600b805462ffffff191660011790556050600c556701aa535d3d0c0000600d5567016345785d8a0000600e553480156200004d57600080fd5b50604051620038b9380380620038b98339810160408190526200007091620004e5565b8451859085906200008990600090602085019062000355565b5080516200009f90600190602084019062000355565b505050620000bc620000b6620001bd60201b60201c565b620001c1565b604080518082018252600e81526d2bb434ba32b634b9ba2a37b5b2b760911b6020918201528151808301835260018152603160f81b9082015281517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f818301527fb31abde365a4931cba9a0ea66b4737a15e8eb9a0649f549f4857db08880a9049818401527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608201524660808201523060a0808301919091528351808303909101815260c090910190925281519101206008556200019c8162000213565b620001a78362000284565b620001b282620002e8565b5050505050620005d9565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620002625760405162461bcd60e51b815260206004820181905260248201526000805160206200389983398151915260448201526064015b60405180910390fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b03163314620002cf5760405162461bcd60e51b8152602060048201819052602482015260008051602062003899833981519152604482015260640162000259565b8051620002e490600f90602084019062000355565b5050565b6006546001600160a01b03163314620003335760405162461bcd60e51b8152602060048201819052602482015260008051602062003899833981519152604482015260640162000259565b601080546001600160a01b0319166001600160a01b0392909216919091179055565b82805462000363906200059c565b90600052602060002090601f016020900481019282620003875760008555620003d2565b82601f10620003a257805160ff1916838001178555620003d2565b82800160010185558215620003d2579182015b82811115620003d2578251825591602001919060010190620003b5565b50620003e0929150620003e4565b5090565b5b80821115620003e05760008155600101620003e5565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200042357600080fd5b81516001600160401b0380821115620004405762000440620003fb565b604051601f8301601f19908116603f011681019082821181831017156200046b576200046b620003fb565b816040528381526020925086838588010111156200048857600080fd5b600091505b83821015620004ac57858201830151818301840152908201906200048d565b83821115620004be5760008385830101525b9695505050505050565b80516001600160a01b0381168114620004e057600080fd5b919050565b600080600080600060a08688031215620004fe57600080fd5b85516001600160401b03808211156200051657600080fd5b6200052489838a0162000411565b965060208801519150808211156200053b57600080fd5b6200054989838a0162000411565b955060408801519150808211156200056057600080fd5b506200056f8882890162000411565b9350506200058060608701620004c8565b91506200059060808701620004c8565b90509295509295909350565b600181811c90821680620005b157607f821691505b60208210811415620005d357634e487b7160e01b600052602260045260246000fd5b50919050565b6132b080620005e96000396000f3fe60806040526004361061025c5760003560e01c8063853828b611610144578063cf0426d8116100b6578063e985e9c51161007a578063e985e9c514610691578063ef1e9610146106da578063f2fde38b146106ed578063f4a0a5281461070d578063fa4d280c1461072d578063fe60d12c1461076157600080fd5b8063cf0426d814610620578063d2b90ffb14610640578063d34ff15214610655578063d5abeb0114610668578063e41e12711461067e57600080fd5b8063b363873d11610108578063b363873d14610573578063b74b431e1461058d578063b88d4fde146105a0578063c87b56dd146105c0578063cd18d5a4146105e0578063cd7708331461060057600080fd5b8063853828b6146105025780638da5cb5b1461050a57806395d89b4114610528578063a035b1fe1461053d578063a22cb4651461055357600080fd5b80634bbf179b116101dd57806370a08231116101a157806370a0823114610455578063715018a614610475578063728cce7c1461048a5780637c928fe9146104a05780637d8966e4146104c05780638462151c146104d557600080fd5b80634bbf179b146103c057806355f804b3146103d6578063564566a8146103f657806360d938dc146104165780636352211e1461043557600080fd5b806318160ddd1161022457806318160ddd1461033257806323b872dd1461035557806334393743146103755780633644e5151461038a57806342842e0e146103a057600080fd5b806301ffc9a71461026157806306fdde0314610296578063081812fc146102b8578063095ea7b3146102f05780630d174c2414610312575b600080fd5b34801561026d57600080fd5b5061028161027c366004612b0c565b610777565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102ab6107c9565b60405161028d9190612b81565b3480156102c457600080fd5b506102d86102d3366004612b94565b61085b565b6040516001600160a01b03909116815260200161028d565b3480156102fc57600080fd5b5061031061030b366004612bc4565b6108f5565b005b34801561031e57600080fd5b5061031061032d366004612bee565b610a0b565b34801561033e57600080fd5b50610347610a57565b60405190815260200161028d565b34801561036157600080fd5b50610310610370366004612c09565b610a7f565b34801561038157600080fd5b50610310610ab0565b34801561039657600080fd5b5061034760085481565b3480156103ac57600080fd5b506103106103bb366004612c09565b610af7565b3480156103cc57600080fd5b506103476103e881565b3480156103e257600080fd5b506103106103f1366004612cd1565b610b12565b34801561040257600080fd5b50600b546102819062010000900460ff1681565b34801561042257600080fd5b50600b5461028190610100900460ff1681565b34801561044157600080fd5b506102d8610450366004612b94565b610b53565b34801561046157600080fd5b50610347610470366004612bee565b610bca565b34801561048157600080fd5b50610310610c51565b34801561049657600080fd5b50610347600d5481565b3480156104ac57600080fd5b506103106104bb366004612b94565b610c87565b3480156104cc57600080fd5b50610310610e29565b3480156104e157600080fd5b506104f56104f0366004612bee565b610e72565b60405161028d9190612d1a565b610310611010565b34801561051657600080fd5b506006546001600160a01b03166102d8565b34801561053457600080fd5b506102ab6110b1565b34801561054957600080fd5b50610347600e5481565b34801561055f57600080fd5b5061031061056e366004612d5e565b6110c0565b34801561057f57600080fd5b50600b546102819060ff1681565b61031061059b366004612b94565b6110cb565b3480156105ac57600080fd5b506103106105bb366004612d9a565b61129a565b3480156105cc57600080fd5b506102ab6105db366004612b94565b6112d2565b3480156105ec57600080fd5b506103476105fb366004612bee565b6113ad565b34801561060c57600080fd5b5061031061061b366004612bee565b6114d2565b34801561062c57600080fd5b5061031061063b366004612bc4565b61151e565b34801561064c57600080fd5b50610310611564565b610310610663366004612e58565b6115a2565b34801561067457600080fd5b50610347611f4081565b61034761068c366004612eab565b611907565b34801561069d57600080fd5b506102816106ac366004612ef7565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6103106106e8366004612b94565b611c3d565b3480156106f957600080fd5b50610310610708366004612bee565b611e07565b34801561071957600080fd5b50610310610728366004612b94565b611ea2565b34801561073957600080fd5b506103477f325fddf9552c17478a75e5d653af030805196a4fc48e1df5a2e5aeff2a7066e081565b34801561076d57600080fd5b50610347600c5481565b60006001600160e01b031982166380ac58cd60e01b14806107a857506001600160e01b03198216635b5e139f60e01b145b806107c357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546107d890612f2a565b80601f016020809104026020016040519081016040528092919081815260200182805461080490612f2a565b80156108515780601f1061082657610100808354040283529160200191610851565b820191906000526020600020905b81548152906001019060200180831161083457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108d95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061090082610b53565b9050806001600160a01b0316836001600160a01b0316141561096e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108d0565b336001600160a01b038216148061098a575061098a81336106ac565b6109fc5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108d0565b610a068383611ed1565b505050565b6006546001600160a01b03163314610a355760405162461bcd60e51b81526004016108d090612f65565b601080546001600160a01b0319166001600160a01b0392909216919091179055565b6000600c54610a65600a5490565b610a70906050612fb0565b610a7a9190612fc8565b905090565b610a893382611f3f565b610aa55760405162461bcd60e51b81526004016108d090612fdf565b610a06838383612036565b6006546001600160a01b03163314610ada5760405162461bcd60e51b81526004016108d090612f65565b600b805461ff001981166101009182900460ff1615909102179055565b610a068383836040518060200160405280600081525061129a565b6006546001600160a01b03163314610b3c5760405162461bcd60e51b81526004016108d090612f65565b8051610b4f90600f906020840190612a5d565b5050565b6000818152600260205260408120546001600160a01b0316806107c35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108d0565b60006001600160a01b038216610c355760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108d0565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610c7b5760405162461bcd60e51b81526004016108d090612f65565b610c8560006121d6565b565b3360009081526011602052604090205480610cf25760405162461bcd60e51b815260206004820152602560248201527f4e6f2066726565206d696e7420616c6c6f77656420666f7220796f7572206164604482015264647265737360d81b60648201526084016108d0565b80821115610d425760405162461bcd60e51b815260206004820152601d60248201527f43616e2774206d696e74206d6f7265207468616e20726573657276656400000060448201526064016108d0565b611f4082610d4f600a5490565b610d599190612fb0565b1115610d775760405162461bcd60e51b81526004016108d090613030565b600b5460ff1615610de7576103e882610d8f600a5490565b610d999190612fb0565b1115610de75760405162461bcd60e51b815260206004820152601c60248201527f457863656564732067656e6573697320746f6b656e20737570706c790000000060448201526064016108d0565b610df18282612fc8565b336000908152601160205260408120919091555b82811015610a0657610e1633612228565b5080610e2181613067565b915050610e05565b6006546001600160a01b03163314610e535760405162461bcd60e51b81526004016108d090612f65565b600b805462ff0000198116620100009182900460ff1615909102179055565b60606000610e7f83610bca565b905080610ea05760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff811115610ebb57610ebb612c45565b604051908082528060200260200182016040528015610ee4578160200160208202803683370190505b509050600060015b600a548111610f6157610efe81610b53565b6001600160a01b0316866001600160a01b03161415610f4f5780838381518110610f2a57610f2a613082565b602090810291909101015281610f3f81613067565b92505083821415610f4f57610f61565b80610f5981613067565b915050610eec565b50828114610e98576000610f78611f406001612fb0565b90505b600c54610f8b611f406051612fb0565b610f959190612fc8565b811161100757610fa481610b53565b6001600160a01b0316866001600160a01b03161415610ff55780838381518110610fd057610fd0613082565b602090810291909101015281610fe581613067565b92505083821415610ff557611007565b80610fff81613067565b915050610f7b565b50509392505050565b6006546001600160a01b0316331461103a5760405162461bcd60e51b81526004016108d090612f65565b47806110775760405162461bcd60e51b815260206004820152600c60248201526b042616c616e636520697320360a41b60448201526064016108d0565b6010546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610b4f573d6000803e3d6000fd5b6060600180546107d890612f2a565b610b4f33838361224f565b600b5460ff16156110ee5760405162461bcd60e51b81526004016108d090613098565b600b5462010000900460ff1661113c5760405162461bcd60e51b815260206004820152601360248201527253616c6520617265206e6f742061637469766560681b60448201526064016108d0565b60028111156111ad5760405162461bcd60e51b815260206004820152603760248201527f596f752063616e206f6e6c79206d696e742061206d6178696d756d206f662032604482015276103a37b5b2b739903832b9103a3930b739b0b1ba34b7b760491b60648201526084016108d0565b6004816111b933610bca565b6111c39190612fb0565b11156112115760405162461bcd60e51b815260206004820152601960248201527f4d6178696d756d20342065676773207065722077616c6c65740000000000000060448201526064016108d0565b611f408161121e600a5490565b6112289190612fb0565b11156112465760405162461bcd60e51b81526004016108d090613030565b80600e5461125491906130de565b3410156112735760405162461bcd60e51b81526004016108d0906130fd565b60005b81811015610b4f5761128733612228565b508061129281613067565b915050611276565b6112a43383611f3f565b6112c05760405162461bcd60e51b81526004016108d090612fdf565b6112cc8484848461231e565b50505050565b6000818152600260205260409020546060906001600160a01b03166113515760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108d0565b600061135b612351565b9050600081511161137b57604051806020016040528060008152506113a6565b8061138584612360565b604051602001611396929190613134565b6040516020818303038152906040525b9392505050565b6006546000906001600160a01b031633146113da5760405162461bcd60e51b81526004016108d090612f65565b600b5460ff16156114395760405162461bcd60e51b815260206004820152602360248201527f43616e2774206169722064726f7020647572696e672067656e6573697320706860448201526261736560e81b60648201526084016108d0565b6000600c541161148b5760405162461bcd60e51b815260206004820152601e60248201527f4578636565647320726573657276656420746f6b656e7320737570706c79000060448201526064016108d0565b600c5460009061149e611f406051612fb0565b6114a89190612fc8565b90506114b4838261245e565b600c80549060006114c483613163565b90915550909150505b919050565b6006546001600160a01b031633146114fc5760405162461bcd60e51b81526004016108d090612f65565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b031633146115485760405162461bcd60e51b81526004016108d090612f65565b6001600160a01b03909116600090815260116020526040902055565b6006546001600160a01b0316331461158e5760405162461bcd60e51b81526004016108d090612f65565b600b805460ff19811660ff90911615179055565b6007548390839083906001600160a01b03166115f85760405162461bcd60e51b81526020600482015260156024820152741dda1a5d195b1a5cdd081b9bdd08195b98589b1959605a1b60448201526064016108d0565b60008181526009602052604090205460ff16156116535760405162461bcd60e51b815260206004820152601960248201527814da59db985d1d5c9948185b1c9958591e4818db185a5b5959603a1b60448201526064016108d0565b600854604080517f325fddf9552c17478a75e5d653af030805196a4fc48e1df5a2e5aeff2a7066e0602082015233918101919091526060810183905260009190608001604051602081830303815290604052805190602001206040516020016116d392919061190160f01b81526002810192909252602282015260420190565b604051602081830303815290604052805190602001209050600061172f85858080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525086939250506124789050565b6007549091506001600160a01b038083169116146117835760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964205369676e617475726560781b60448201526064016108d0565b600b5460ff16156117a65760405162461bcd60e51b81526004016108d090613098565b600b54610100900460ff166117f65760405162461bcd60e51b815260206004820152601660248201527550726573616c6520617265206e6f742061637469766560501b60448201526064016108d0565b60028911156118535760405162461bcd60e51b8152602060048201526024808201527f4f6e6c792074776f206d696e7420616c6c6f77656420647572696e672070726560448201526373616c6560e01b60648201526084016108d0565b611f4089611860600a5490565b61186a9190612fb0565b11156118885760405162461bcd60e51b81526004016108d090613030565b88600e5461189691906130de565b3410156118b55760405162461bcd60e51b81526004016108d0906130fd565b6118d4866000908152600960205260409020805460ff19166001179055565b60005b898110156118fb576118e833612228565b50806118f381613067565b9150506118d7565b50505050505050505050565b6007546000908490849084906001600160a01b03166119605760405162461bcd60e51b81526020600482015260156024820152741dda1a5d195b1a5cdd081b9bdd08195b98589b1959605a1b60448201526064016108d0565b60008181526009602052604090205460ff16156119bb5760405162461bcd60e51b815260206004820152601960248201527814da59db985d1d5c9948185b1c9958591e4818db185a5b5959603a1b60448201526064016108d0565b600854604080517f325fddf9552c17478a75e5d653af030805196a4fc48e1df5a2e5aeff2a7066e060208201523391810191909152606081018390526000919060800160405160208183030381529060405280519060200120604051602001611a3b92919061190160f01b81526002810192909252602282015260420190565b6040516020818303038152906040528051906020012090506000611a9785858080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525086939250506124789050565b6007549091506001600160a01b03808316911614611aeb5760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964205369676e617475726560781b60448201526064016108d0565b600b5460ff16611b3d5760405162461bcd60e51b815260206004820152601b60248201527f47656e65736973207068617365206973206e6f7420616374697665000000000060448201526064016108d0565b600b54610100900460ff16611b8d5760405162461bcd60e51b815260206004820152601660248201527550726573616c6520617265206e6f742061637469766560501b60448201526064016108d0565b6103e8611b99600a5490565b10611be65760405162461bcd60e51b815260206004820152601d60248201527f457863656564732067656e6573697320746f6b656e7320737570706c7900000060448201526064016108d0565b600d54341015611c085760405162461bcd60e51b81526004016108d0906130fd565b611c27876000908152600960205260409020805460ff19166001179055565b611c3033612228565b9998505050505050505050565b600b5460ff16611c8f5760405162461bcd60e51b815260206004820152601b60248201527f47656e65736973207068617365206973206e6f7420616374697665000000000060448201526064016108d0565b600b5462010000900460ff16611cdd5760405162461bcd60e51b815260206004820152601360248201527253616c6520617265206e6f742061637469766560681b60448201526064016108d0565b6004811115611d4e5760405162461bcd60e51b815260206004820152603760248201527f596f752063616e206f6e6c79206d696e742061206d6178696d756d206f662034604482015276103a37b5b2b739903832b9103a3930b739b0b1ba34b7b760491b60648201526084016108d0565b6103e881611d5b600a5490565b611d659190612fb0565b1115611db35760405162461bcd60e51b815260206004820152601c60248201527f457863656564732067656e6573697320746f6b656e20737570706c790000000060448201526064016108d0565b80600d54611dc191906130de565b341015611de05760405162461bcd60e51b81526004016108d0906130fd565b60005b81811015610b4f57611df433612228565b5080611dff81613067565b915050611de3565b6006546001600160a01b03163314611e315760405162461bcd60e51b81526004016108d090612f65565b6001600160a01b038116611e965760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108d0565b611e9f816121d6565b50565b6006546001600160a01b03163314611ecc5760405162461bcd60e51b81526004016108d090612f65565b600e55565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611f0682610b53565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611fb85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108d0565b6000611fc383610b53565b9050806001600160a01b0316846001600160a01b03161480611ffe5750836001600160a01b0316611ff38461085b565b6001600160a01b0316145b8061202e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661204982610b53565b6001600160a01b0316146120b15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108d0565b6001600160a01b0382166121135760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108d0565b61211e600082611ed1565b6001600160a01b0383166000908152600360205260408120805460019290612147908490612fc8565b90915550506001600160a01b0382166000908152600360205260408120805460019290612175908490612fb0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000612238600a80546001019055565b6000612243600a5490565b90506107c3838261245e565b816001600160a01b0316836001600160a01b031614156122b15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108d0565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612329848484612036565b61233584848484612494565b6112cc5760405162461bcd60e51b81526004016108d09061317a565b6060600f80546107d890612f2a565b6060816123845750506040805180820190915260018152600360fc1b602082015290565b8160005b81156123ae578061239881613067565b91506123a79050600a836131e2565b9150612388565b60008167ffffffffffffffff8111156123c9576123c9612c45565b6040519080825280601f01601f1916602001820160405280156123f3576020820181803683370190505b5090505b841561202e57612408600183612fc8565b9150612415600a866131f6565b612420906030612fb0565b60f81b81838151811061243557612435613082565b60200101906001600160f81b031916908160001a905350612457600a866131e2565b94506123f7565b610b4f8282604051806020016040528060008152506125a1565b600080600061248785856125d4565b91509150610e9881612644565b60006001600160a01b0384163b1561259657604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906124d890339089908890889060040161320a565b602060405180830381600087803b1580156124f257600080fd5b505af1925050508015612522575060408051601f3d908101601f1916820190925261251f91810190613247565b60015b61257c573d808015612550576040519150601f19603f3d011682016040523d82523d6000602084013e612555565b606091505b5080516125745760405162461bcd60e51b81526004016108d09061317a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061202e565b506001949350505050565b6125ab83836127ff565b6125b86000848484612494565b610a065760405162461bcd60e51b81526004016108d09061317a565b60008082516041141561260b5760208301516040840151606085015160001a6125ff87828585612941565b9450945050505061263d565b825160401415612635576020830151604084015161262a868383612a2e565b93509350505061263d565b506000905060025b9250929050565b600081600481111561265857612658613264565b14156126615750565b600181600481111561267557612675613264565b14156126c35760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016108d0565b60028160048111156126d7576126d7613264565b14156127255760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016108d0565b600381600481111561273957612739613264565b14156127925760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016108d0565b60048160048111156127a6576127a6613264565b1415611e9f5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016108d0565b6001600160a01b0382166128555760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108d0565b6000818152600260205260409020546001600160a01b0316156128ba5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108d0565b6001600160a01b03821660009081526003602052604081208054600192906128e3908490612fb0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156129785750600090506003612a25565b8460ff16601b1415801561299057508460ff16601c14155b156129a15750600090506004612a25565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156129f5573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116612a1e57600060019250925050612a25565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b01612a4f87828885612941565b935093505050935093915050565b828054612a6990612f2a565b90600052602060002090601f016020900481019282612a8b5760008555612ad1565b82601f10612aa457805160ff1916838001178555612ad1565b82800160010185558215612ad1579182015b82811115612ad1578251825591602001919060010190612ab6565b50612add929150612ae1565b5090565b5b80821115612add5760008155600101612ae2565b6001600160e01b031981168114611e9f57600080fd5b600060208284031215612b1e57600080fd5b81356113a681612af6565b60005b83811015612b44578181015183820152602001612b2c565b838111156112cc5750506000910152565b60008151808452612b6d816020860160208601612b29565b601f01601f19169290920160200192915050565b6020815260006113a66020830184612b55565b600060208284031215612ba657600080fd5b5035919050565b80356001600160a01b03811681146114cd57600080fd5b60008060408385031215612bd757600080fd5b612be083612bad565b946020939093013593505050565b600060208284031215612c0057600080fd5b6113a682612bad565b600080600060608486031215612c1e57600080fd5b612c2784612bad565b9250612c3560208501612bad565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612c7657612c76612c45565b604051601f8501601f19908116603f01168101908282118183101715612c9e57612c9e612c45565b81604052809350858152868686011115612cb757600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612ce357600080fd5b813567ffffffffffffffff811115612cfa57600080fd5b8201601f81018413612d0b57600080fd5b61202e84823560208401612c5b565b6020808252825182820181905260009190848201906040850190845b81811015612d5257835183529284019291840191600101612d36565b50909695505050505050565b60008060408385031215612d7157600080fd5b612d7a83612bad565b915060208301358015158114612d8f57600080fd5b809150509250929050565b60008060008060808587031215612db057600080fd5b612db985612bad565b9350612dc760208601612bad565b925060408501359150606085013567ffffffffffffffff811115612dea57600080fd5b8501601f81018713612dfb57600080fd5b612e0a87823560208401612c5b565b91505092959194509250565b60008083601f840112612e2857600080fd5b50813567ffffffffffffffff811115612e4057600080fd5b60208301915083602082850101111561263d57600080fd5b60008060008060608587031215612e6e57600080fd5b84359350602085013567ffffffffffffffff811115612e8c57600080fd5b612e9887828801612e16565b9598909750949560400135949350505050565b600080600060408486031215612ec057600080fd5b833567ffffffffffffffff811115612ed757600080fd5b612ee386828701612e16565b909790965060209590950135949350505050565b60008060408385031215612f0a57600080fd5b612f1383612bad565b9150612f2160208401612bad565b90509250929050565b600181811c90821680612f3e57607f821691505b60208210811415612f5f57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612fc357612fc3612f9a565b500190565b600082821015612fda57612fda612f9a565b500390565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601c908201527f45786365656473206d6178696d756d20746f6b656e20737570706c7900000000604082015260600190565b600060001982141561307b5761307b612f9a565b5060010190565b634e487b7160e01b600052603260045260246000fd5b60208082526026908201527f43616e2774206e6f726d616c206d696e7420647572696e672067656e6573697360408201526520706861736560d01b606082015260800190565b60008160001904831182151516156130f8576130f8612f9a565b500290565b60208082526019908201527f45746865722073656e74206973206e6f7420636f727265637400000000000000604082015260600190565b60008351613146818460208801612b29565b83519083019061315a818360208801612b29565b01949350505050565b60008161317257613172612f9a565b506000190190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826131f1576131f16131cc565b500490565b600082613205576132056131cc565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061323d90830184612b55565b9695505050505050565b60006020828403121561325957600080fd5b81516113a681612af6565b634e487b7160e01b600052602160045260246000fdfea264697066735822122021556d4d9e84bc825994a880f0e4607f7a57e301a7b13291c22d520d0968c7e264736f6c634300080900334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000384ce68f3031ff67833b6e32eabe0c0793d3f20b00000000000000000000000093651ef1722790ab0559c79348b42d860d9544d2000000000000000000000000000000000000000000000000000000000000000c54686543727970746f69647300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005544f494453000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002d68747470733a2f2f6170702e74686563727970746f6964732e696f2f6170692f76312f63727970746f6964732f00000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061025c5760003560e01c8063853828b611610144578063cf0426d8116100b6578063e985e9c51161007a578063e985e9c514610691578063ef1e9610146106da578063f2fde38b146106ed578063f4a0a5281461070d578063fa4d280c1461072d578063fe60d12c1461076157600080fd5b8063cf0426d814610620578063d2b90ffb14610640578063d34ff15214610655578063d5abeb0114610668578063e41e12711461067e57600080fd5b8063b363873d11610108578063b363873d14610573578063b74b431e1461058d578063b88d4fde146105a0578063c87b56dd146105c0578063cd18d5a4146105e0578063cd7708331461060057600080fd5b8063853828b6146105025780638da5cb5b1461050a57806395d89b4114610528578063a035b1fe1461053d578063a22cb4651461055357600080fd5b80634bbf179b116101dd57806370a08231116101a157806370a0823114610455578063715018a614610475578063728cce7c1461048a5780637c928fe9146104a05780637d8966e4146104c05780638462151c146104d557600080fd5b80634bbf179b146103c057806355f804b3146103d6578063564566a8146103f657806360d938dc146104165780636352211e1461043557600080fd5b806318160ddd1161022457806318160ddd1461033257806323b872dd1461035557806334393743146103755780633644e5151461038a57806342842e0e146103a057600080fd5b806301ffc9a71461026157806306fdde0314610296578063081812fc146102b8578063095ea7b3146102f05780630d174c2414610312575b600080fd5b34801561026d57600080fd5b5061028161027c366004612b0c565b610777565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102ab6107c9565b60405161028d9190612b81565b3480156102c457600080fd5b506102d86102d3366004612b94565b61085b565b6040516001600160a01b03909116815260200161028d565b3480156102fc57600080fd5b5061031061030b366004612bc4565b6108f5565b005b34801561031e57600080fd5b5061031061032d366004612bee565b610a0b565b34801561033e57600080fd5b50610347610a57565b60405190815260200161028d565b34801561036157600080fd5b50610310610370366004612c09565b610a7f565b34801561038157600080fd5b50610310610ab0565b34801561039657600080fd5b5061034760085481565b3480156103ac57600080fd5b506103106103bb366004612c09565b610af7565b3480156103cc57600080fd5b506103476103e881565b3480156103e257600080fd5b506103106103f1366004612cd1565b610b12565b34801561040257600080fd5b50600b546102819062010000900460ff1681565b34801561042257600080fd5b50600b5461028190610100900460ff1681565b34801561044157600080fd5b506102d8610450366004612b94565b610b53565b34801561046157600080fd5b50610347610470366004612bee565b610bca565b34801561048157600080fd5b50610310610c51565b34801561049657600080fd5b50610347600d5481565b3480156104ac57600080fd5b506103106104bb366004612b94565b610c87565b3480156104cc57600080fd5b50610310610e29565b3480156104e157600080fd5b506104f56104f0366004612bee565b610e72565b60405161028d9190612d1a565b610310611010565b34801561051657600080fd5b506006546001600160a01b03166102d8565b34801561053457600080fd5b506102ab6110b1565b34801561054957600080fd5b50610347600e5481565b34801561055f57600080fd5b5061031061056e366004612d5e565b6110c0565b34801561057f57600080fd5b50600b546102819060ff1681565b61031061059b366004612b94565b6110cb565b3480156105ac57600080fd5b506103106105bb366004612d9a565b61129a565b3480156105cc57600080fd5b506102ab6105db366004612b94565b6112d2565b3480156105ec57600080fd5b506103476105fb366004612bee565b6113ad565b34801561060c57600080fd5b5061031061061b366004612bee565b6114d2565b34801561062c57600080fd5b5061031061063b366004612bc4565b61151e565b34801561064c57600080fd5b50610310611564565b610310610663366004612e58565b6115a2565b34801561067457600080fd5b50610347611f4081565b61034761068c366004612eab565b611907565b34801561069d57600080fd5b506102816106ac366004612ef7565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6103106106e8366004612b94565b611c3d565b3480156106f957600080fd5b50610310610708366004612bee565b611e07565b34801561071957600080fd5b50610310610728366004612b94565b611ea2565b34801561073957600080fd5b506103477f325fddf9552c17478a75e5d653af030805196a4fc48e1df5a2e5aeff2a7066e081565b34801561076d57600080fd5b50610347600c5481565b60006001600160e01b031982166380ac58cd60e01b14806107a857506001600160e01b03198216635b5e139f60e01b145b806107c357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546107d890612f2a565b80601f016020809104026020016040519081016040528092919081815260200182805461080490612f2a565b80156108515780601f1061082657610100808354040283529160200191610851565b820191906000526020600020905b81548152906001019060200180831161083457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108d95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061090082610b53565b9050806001600160a01b0316836001600160a01b0316141561096e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108d0565b336001600160a01b038216148061098a575061098a81336106ac565b6109fc5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108d0565b610a068383611ed1565b505050565b6006546001600160a01b03163314610a355760405162461bcd60e51b81526004016108d090612f65565b601080546001600160a01b0319166001600160a01b0392909216919091179055565b6000600c54610a65600a5490565b610a70906050612fb0565b610a7a9190612fc8565b905090565b610a893382611f3f565b610aa55760405162461bcd60e51b81526004016108d090612fdf565b610a06838383612036565b6006546001600160a01b03163314610ada5760405162461bcd60e51b81526004016108d090612f65565b600b805461ff001981166101009182900460ff1615909102179055565b610a068383836040518060200160405280600081525061129a565b6006546001600160a01b03163314610b3c5760405162461bcd60e51b81526004016108d090612f65565b8051610b4f90600f906020840190612a5d565b5050565b6000818152600260205260408120546001600160a01b0316806107c35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108d0565b60006001600160a01b038216610c355760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108d0565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610c7b5760405162461bcd60e51b81526004016108d090612f65565b610c8560006121d6565b565b3360009081526011602052604090205480610cf25760405162461bcd60e51b815260206004820152602560248201527f4e6f2066726565206d696e7420616c6c6f77656420666f7220796f7572206164604482015264647265737360d81b60648201526084016108d0565b80821115610d425760405162461bcd60e51b815260206004820152601d60248201527f43616e2774206d696e74206d6f7265207468616e20726573657276656400000060448201526064016108d0565b611f4082610d4f600a5490565b610d599190612fb0565b1115610d775760405162461bcd60e51b81526004016108d090613030565b600b5460ff1615610de7576103e882610d8f600a5490565b610d999190612fb0565b1115610de75760405162461bcd60e51b815260206004820152601c60248201527f457863656564732067656e6573697320746f6b656e20737570706c790000000060448201526064016108d0565b610df18282612fc8565b336000908152601160205260408120919091555b82811015610a0657610e1633612228565b5080610e2181613067565b915050610e05565b6006546001600160a01b03163314610e535760405162461bcd60e51b81526004016108d090612f65565b600b805462ff0000198116620100009182900460ff1615909102179055565b60606000610e7f83610bca565b905080610ea05760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff811115610ebb57610ebb612c45565b604051908082528060200260200182016040528015610ee4578160200160208202803683370190505b509050600060015b600a548111610f6157610efe81610b53565b6001600160a01b0316866001600160a01b03161415610f4f5780838381518110610f2a57610f2a613082565b602090810291909101015281610f3f81613067565b92505083821415610f4f57610f61565b80610f5981613067565b915050610eec565b50828114610e98576000610f78611f406001612fb0565b90505b600c54610f8b611f406051612fb0565b610f959190612fc8565b811161100757610fa481610b53565b6001600160a01b0316866001600160a01b03161415610ff55780838381518110610fd057610fd0613082565b602090810291909101015281610fe581613067565b92505083821415610ff557611007565b80610fff81613067565b915050610f7b565b50509392505050565b6006546001600160a01b0316331461103a5760405162461bcd60e51b81526004016108d090612f65565b47806110775760405162461bcd60e51b815260206004820152600c60248201526b042616c616e636520697320360a41b60448201526064016108d0565b6010546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610b4f573d6000803e3d6000fd5b6060600180546107d890612f2a565b610b4f33838361224f565b600b5460ff16156110ee5760405162461bcd60e51b81526004016108d090613098565b600b5462010000900460ff1661113c5760405162461bcd60e51b815260206004820152601360248201527253616c6520617265206e6f742061637469766560681b60448201526064016108d0565b60028111156111ad5760405162461bcd60e51b815260206004820152603760248201527f596f752063616e206f6e6c79206d696e742061206d6178696d756d206f662032604482015276103a37b5b2b739903832b9103a3930b739b0b1ba34b7b760491b60648201526084016108d0565b6004816111b933610bca565b6111c39190612fb0565b11156112115760405162461bcd60e51b815260206004820152601960248201527f4d6178696d756d20342065676773207065722077616c6c65740000000000000060448201526064016108d0565b611f408161121e600a5490565b6112289190612fb0565b11156112465760405162461bcd60e51b81526004016108d090613030565b80600e5461125491906130de565b3410156112735760405162461bcd60e51b81526004016108d0906130fd565b60005b81811015610b4f5761128733612228565b508061129281613067565b915050611276565b6112a43383611f3f565b6112c05760405162461bcd60e51b81526004016108d090612fdf565b6112cc8484848461231e565b50505050565b6000818152600260205260409020546060906001600160a01b03166113515760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108d0565b600061135b612351565b9050600081511161137b57604051806020016040528060008152506113a6565b8061138584612360565b604051602001611396929190613134565b6040516020818303038152906040525b9392505050565b6006546000906001600160a01b031633146113da5760405162461bcd60e51b81526004016108d090612f65565b600b5460ff16156114395760405162461bcd60e51b815260206004820152602360248201527f43616e2774206169722064726f7020647572696e672067656e6573697320706860448201526261736560e81b60648201526084016108d0565b6000600c541161148b5760405162461bcd60e51b815260206004820152601e60248201527f4578636565647320726573657276656420746f6b656e7320737570706c79000060448201526064016108d0565b600c5460009061149e611f406051612fb0565b6114a89190612fc8565b90506114b4838261245e565b600c80549060006114c483613163565b90915550909150505b919050565b6006546001600160a01b031633146114fc5760405162461bcd60e51b81526004016108d090612f65565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b031633146115485760405162461bcd60e51b81526004016108d090612f65565b6001600160a01b03909116600090815260116020526040902055565b6006546001600160a01b0316331461158e5760405162461bcd60e51b81526004016108d090612f65565b600b805460ff19811660ff90911615179055565b6007548390839083906001600160a01b03166115f85760405162461bcd60e51b81526020600482015260156024820152741dda1a5d195b1a5cdd081b9bdd08195b98589b1959605a1b60448201526064016108d0565b60008181526009602052604090205460ff16156116535760405162461bcd60e51b815260206004820152601960248201527814da59db985d1d5c9948185b1c9958591e4818db185a5b5959603a1b60448201526064016108d0565b600854604080517f325fddf9552c17478a75e5d653af030805196a4fc48e1df5a2e5aeff2a7066e0602082015233918101919091526060810183905260009190608001604051602081830303815290604052805190602001206040516020016116d392919061190160f01b81526002810192909252602282015260420190565b604051602081830303815290604052805190602001209050600061172f85858080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525086939250506124789050565b6007549091506001600160a01b038083169116146117835760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964205369676e617475726560781b60448201526064016108d0565b600b5460ff16156117a65760405162461bcd60e51b81526004016108d090613098565b600b54610100900460ff166117f65760405162461bcd60e51b815260206004820152601660248201527550726573616c6520617265206e6f742061637469766560501b60448201526064016108d0565b60028911156118535760405162461bcd60e51b8152602060048201526024808201527f4f6e6c792074776f206d696e7420616c6c6f77656420647572696e672070726560448201526373616c6560e01b60648201526084016108d0565b611f4089611860600a5490565b61186a9190612fb0565b11156118885760405162461bcd60e51b81526004016108d090613030565b88600e5461189691906130de565b3410156118b55760405162461bcd60e51b81526004016108d0906130fd565b6118d4866000908152600960205260409020805460ff19166001179055565b60005b898110156118fb576118e833612228565b50806118f381613067565b9150506118d7565b50505050505050505050565b6007546000908490849084906001600160a01b03166119605760405162461bcd60e51b81526020600482015260156024820152741dda1a5d195b1a5cdd081b9bdd08195b98589b1959605a1b60448201526064016108d0565b60008181526009602052604090205460ff16156119bb5760405162461bcd60e51b815260206004820152601960248201527814da59db985d1d5c9948185b1c9958591e4818db185a5b5959603a1b60448201526064016108d0565b600854604080517f325fddf9552c17478a75e5d653af030805196a4fc48e1df5a2e5aeff2a7066e060208201523391810191909152606081018390526000919060800160405160208183030381529060405280519060200120604051602001611a3b92919061190160f01b81526002810192909252602282015260420190565b6040516020818303038152906040528051906020012090506000611a9785858080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525086939250506124789050565b6007549091506001600160a01b03808316911614611aeb5760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964205369676e617475726560781b60448201526064016108d0565b600b5460ff16611b3d5760405162461bcd60e51b815260206004820152601b60248201527f47656e65736973207068617365206973206e6f7420616374697665000000000060448201526064016108d0565b600b54610100900460ff16611b8d5760405162461bcd60e51b815260206004820152601660248201527550726573616c6520617265206e6f742061637469766560501b60448201526064016108d0565b6103e8611b99600a5490565b10611be65760405162461bcd60e51b815260206004820152601d60248201527f457863656564732067656e6573697320746f6b656e7320737570706c7900000060448201526064016108d0565b600d54341015611c085760405162461bcd60e51b81526004016108d0906130fd565b611c27876000908152600960205260409020805460ff19166001179055565b611c3033612228565b9998505050505050505050565b600b5460ff16611c8f5760405162461bcd60e51b815260206004820152601b60248201527f47656e65736973207068617365206973206e6f7420616374697665000000000060448201526064016108d0565b600b5462010000900460ff16611cdd5760405162461bcd60e51b815260206004820152601360248201527253616c6520617265206e6f742061637469766560681b60448201526064016108d0565b6004811115611d4e5760405162461bcd60e51b815260206004820152603760248201527f596f752063616e206f6e6c79206d696e742061206d6178696d756d206f662034604482015276103a37b5b2b739903832b9103a3930b739b0b1ba34b7b760491b60648201526084016108d0565b6103e881611d5b600a5490565b611d659190612fb0565b1115611db35760405162461bcd60e51b815260206004820152601c60248201527f457863656564732067656e6573697320746f6b656e20737570706c790000000060448201526064016108d0565b80600d54611dc191906130de565b341015611de05760405162461bcd60e51b81526004016108d0906130fd565b60005b81811015610b4f57611df433612228565b5080611dff81613067565b915050611de3565b6006546001600160a01b03163314611e315760405162461bcd60e51b81526004016108d090612f65565b6001600160a01b038116611e965760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108d0565b611e9f816121d6565b50565b6006546001600160a01b03163314611ecc5760405162461bcd60e51b81526004016108d090612f65565b600e55565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611f0682610b53565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611fb85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108d0565b6000611fc383610b53565b9050806001600160a01b0316846001600160a01b03161480611ffe5750836001600160a01b0316611ff38461085b565b6001600160a01b0316145b8061202e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661204982610b53565b6001600160a01b0316146120b15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108d0565b6001600160a01b0382166121135760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108d0565b61211e600082611ed1565b6001600160a01b0383166000908152600360205260408120805460019290612147908490612fc8565b90915550506001600160a01b0382166000908152600360205260408120805460019290612175908490612fb0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000612238600a80546001019055565b6000612243600a5490565b90506107c3838261245e565b816001600160a01b0316836001600160a01b031614156122b15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108d0565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612329848484612036565b61233584848484612494565b6112cc5760405162461bcd60e51b81526004016108d09061317a565b6060600f80546107d890612f2a565b6060816123845750506040805180820190915260018152600360fc1b602082015290565b8160005b81156123ae578061239881613067565b91506123a79050600a836131e2565b9150612388565b60008167ffffffffffffffff8111156123c9576123c9612c45565b6040519080825280601f01601f1916602001820160405280156123f3576020820181803683370190505b5090505b841561202e57612408600183612fc8565b9150612415600a866131f6565b612420906030612fb0565b60f81b81838151811061243557612435613082565b60200101906001600160f81b031916908160001a905350612457600a866131e2565b94506123f7565b610b4f8282604051806020016040528060008152506125a1565b600080600061248785856125d4565b91509150610e9881612644565b60006001600160a01b0384163b1561259657604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906124d890339089908890889060040161320a565b602060405180830381600087803b1580156124f257600080fd5b505af1925050508015612522575060408051601f3d908101601f1916820190925261251f91810190613247565b60015b61257c573d808015612550576040519150601f19603f3d011682016040523d82523d6000602084013e612555565b606091505b5080516125745760405162461bcd60e51b81526004016108d09061317a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061202e565b506001949350505050565b6125ab83836127ff565b6125b86000848484612494565b610a065760405162461bcd60e51b81526004016108d09061317a565b60008082516041141561260b5760208301516040840151606085015160001a6125ff87828585612941565b9450945050505061263d565b825160401415612635576020830151604084015161262a868383612a2e565b93509350505061263d565b506000905060025b9250929050565b600081600481111561265857612658613264565b14156126615750565b600181600481111561267557612675613264565b14156126c35760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e6174757265000000000000000060448201526064016108d0565b60028160048111156126d7576126d7613264565b14156127255760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e6774680060448201526064016108d0565b600381600481111561273957612739613264565b14156127925760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b60648201526084016108d0565b60048160048111156127a6576127a6613264565b1415611e9f5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b60648201526084016108d0565b6001600160a01b0382166128555760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108d0565b6000818152600260205260409020546001600160a01b0316156128ba5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108d0565b6001600160a01b03821660009081526003602052604081208054600192906128e3908490612fb0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156129785750600090506003612a25565b8460ff16601b1415801561299057508460ff16601c14155b156129a15750600090506004612a25565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156129f5573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116612a1e57600060019250925050612a25565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b01612a4f87828885612941565b935093505050935093915050565b828054612a6990612f2a565b90600052602060002090601f016020900481019282612a8b5760008555612ad1565b82601f10612aa457805160ff1916838001178555612ad1565b82800160010185558215612ad1579182015b82811115612ad1578251825591602001919060010190612ab6565b50612add929150612ae1565b5090565b5b80821115612add5760008155600101612ae2565b6001600160e01b031981168114611e9f57600080fd5b600060208284031215612b1e57600080fd5b81356113a681612af6565b60005b83811015612b44578181015183820152602001612b2c565b838111156112cc5750506000910152565b60008151808452612b6d816020860160208601612b29565b601f01601f19169290920160200192915050565b6020815260006113a66020830184612b55565b600060208284031215612ba657600080fd5b5035919050565b80356001600160a01b03811681146114cd57600080fd5b60008060408385031215612bd757600080fd5b612be083612bad565b946020939093013593505050565b600060208284031215612c0057600080fd5b6113a682612bad565b600080600060608486031215612c1e57600080fd5b612c2784612bad565b9250612c3560208501612bad565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612c7657612c76612c45565b604051601f8501601f19908116603f01168101908282118183101715612c9e57612c9e612c45565b81604052809350858152868686011115612cb757600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215612ce357600080fd5b813567ffffffffffffffff811115612cfa57600080fd5b8201601f81018413612d0b57600080fd5b61202e84823560208401612c5b565b6020808252825182820181905260009190848201906040850190845b81811015612d5257835183529284019291840191600101612d36565b50909695505050505050565b60008060408385031215612d7157600080fd5b612d7a83612bad565b915060208301358015158114612d8f57600080fd5b809150509250929050565b60008060008060808587031215612db057600080fd5b612db985612bad565b9350612dc760208601612bad565b925060408501359150606085013567ffffffffffffffff811115612dea57600080fd5b8501601f81018713612dfb57600080fd5b612e0a87823560208401612c5b565b91505092959194509250565b60008083601f840112612e2857600080fd5b50813567ffffffffffffffff811115612e4057600080fd5b60208301915083602082850101111561263d57600080fd5b60008060008060608587031215612e6e57600080fd5b84359350602085013567ffffffffffffffff811115612e8c57600080fd5b612e9887828801612e16565b9598909750949560400135949350505050565b600080600060408486031215612ec057600080fd5b833567ffffffffffffffff811115612ed757600080fd5b612ee386828701612e16565b909790965060209590950135949350505050565b60008060408385031215612f0a57600080fd5b612f1383612bad565b9150612f2160208401612bad565b90509250929050565b600181811c90821680612f3e57607f821691505b60208210811415612f5f57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115612fc357612fc3612f9a565b500190565b600082821015612fda57612fda612f9a565b500390565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601c908201527f45786365656473206d6178696d756d20746f6b656e20737570706c7900000000604082015260600190565b600060001982141561307b5761307b612f9a565b5060010190565b634e487b7160e01b600052603260045260246000fd5b60208082526026908201527f43616e2774206e6f726d616c206d696e7420647572696e672067656e6573697360408201526520706861736560d01b606082015260800190565b60008160001904831182151516156130f8576130f8612f9a565b500290565b60208082526019908201527f45746865722073656e74206973206e6f7420636f727265637400000000000000604082015260600190565b60008351613146818460208801612b29565b83519083019061315a818360208801612b29565b01949350505050565b60008161317257613172612f9a565b506000190190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826131f1576131f16131cc565b500490565b600082613205576132056131cc565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061323d90830184612b55565b9695505050505050565b60006020828403121561325957600080fd5b81516113a681612af6565b634e487b7160e01b600052602160045260246000fdfea264697066735822122021556d4d9e84bc825994a880f0e4607f7a57e301a7b13291c22d520d0968c7e264736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000384ce68f3031ff67833b6e32eabe0c0793d3f20b00000000000000000000000093651ef1722790ab0559c79348b42d860d9544d2000000000000000000000000000000000000000000000000000000000000000c54686543727970746f69647300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005544f494453000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002d68747470733a2f2f6170702e74686563727970746f6964732e696f2f6170692f76312f63727970746f6964732f00000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): TheCryptoids
Arg [1] : symbol (string): TOIDS
Arg [2] : baseURI (string): https://app.thecryptoids.io/api/v1/cryptoids/
Arg [3] : withdrawer (address): 0x384ce68F3031FF67833b6E32EABE0c0793d3F20b
Arg [4] : signer (address): 0x93651ef1722790AB0559C79348b42d860D9544d2
-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 000000000000000000000000384ce68f3031ff67833b6e32eabe0c0793d3f20b
Arg [4] : 00000000000000000000000093651ef1722790ab0559c79348b42d860d9544d2
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [6] : 54686543727970746f6964730000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [8] : 544f494453000000000000000000000000000000000000000000000000000000
Arg [9] : 000000000000000000000000000000000000000000000000000000000000002d
Arg [10] : 68747470733a2f2f6170702e74686563727970746f6964732e696f2f6170692f
Arg [11] : 76312f63727970746f6964732f00000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
[ 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.