Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
NFT
Overview
Max Total Supply
10,000 STAR
Holders
5,122
Market
Volume (24H)
0.0023 ETH
Min Price (24H)
$5.80 @ 0.002300 ETH
Max Price (24H)
$5.80 @ 0.002300 ETH
Other Info
Token Contract
Balance
4 STARLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Starcatchers
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
Yes with 400 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/* ./((((. ((&&&&&&&&&&&(( (&&&&@@@@&&&&&&&&&( (&&&@@@@@@@@@&&&&&&&&&( #(&&@@@@@@@@@@@&&&&&&&&&&( (#&&@@@@@@@@@@@@&&&&&&&&&&&( /(((#%%&&%#((, /((#%%%%#(((/ *(&&@@@@@@@@@@@&&&&&&&&&&&&&&( ((%&&&&&@@@@@@&&&&&&(( (#&&&&@@@@@@@@&&&&#(#(&&&@@@@@@@@@@&&&&&&&&&&&&&&&%&&&&&&@@@@@@@@@@@&&&&&&%( (&&&&&@@@@@@@@@@@@@&&&&&&&&@@@@@@&&&&&&&&&&&&&&&&&&&&&&@@@@@@@@@@@@@&&&&&&&&&( (&&&&&@@@@@@@@@@@@@@&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&@@@@@@@@@@@&&&&&&&&&&#( (&&&&&&&&@@@@@@@@@@@&&&%#(%%(#&&&&&&&&&&&&&&&&&&&&&&&&&@@@@@&&&&&&&&&&&&&&#( (&&&&&&&&&&&&&&&&&&&%#(%%%(%&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&(. (&&&&&&&&&&&&&&&&%(%&&(%%&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&(( (&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&( ((&&&&&&&&&&&&&&&&&%#((%&&&&&&&&&&&&&&#((#%%%&&&%(&&&&&&&&(( (#&&&&&&&&%(&&&%%%%%%%%&&&&&(&(#&&&&%%%%%%%%&&&(&&&&&&&&&&(( ((&&&&&&&&&&&&(&&&%%%%%%%%&&&&&&&&&&&&&&%%%%%%&&&((&&&&&&&&&&&&(* ,#&&&&&&&&&&&&&&((&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&(((((&&&&&&&&&&&&&&( (&&&&&&&&&&&&&&&&&((((((&&&&&&&&&&&&&&&&&&&&&&&&#((%&&&&&&&&&&&&&&&&&( (&&&&&&&&&&&&&&&&&&&&&%((&&&&&&&&&&&&&&&&&&&&&&&&##&&&&&&&&&&&&&&&&&&&%( (&&&&&&&&&&&&&&&&&&&&&&&#&&&&&&&&&&&&&&&&&&&&&&&&(&&&&&&&&&&&&&&&&&&&&&( (&&&&&&&&&&&&&&&&&&&&&&&(&&&&&&&&&&&(&&&&&@@@&&%(&&&&&&&&&&&&&&&&&&&&#. (%&&&&&&&&&&&&&&&&&&&&&%(&@@@@@@&&&((&&&@@@&&&((&&&&&&&&&&&&&&&&&&&(. *(%&&&&&&&&&&&&&&&&&(((%&&&&&&(* /((((/ (&&&&&&&&&&&&&&&&%( *(((((((/, /((#%%%%#((((/ - XxStarChadxX - */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721A.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/Address.sol"; contract Starcatchers is ERC721A, Ownable, ReentrancyGuard { using Address for address; using Strings for uint; uint128 public _releaseTimestamp = 0; uint64 public immutable _maxSupply = 10000; uint64 private immutable _maxMintAmountPerTx = 4; bool private _treasuryMint; string public _baseTokenURI; address public constant xDev = 0x9B54D1714f85a192723A36f1e8DE9E81dbcBBB1F; address public constant xTreasury = 0x370f75a63F438186DbfECfD27cD75a5023bEa737; address public constant xVault = 0x02874867a6D48713D9cf275b7324B790E9C1f7Ee; /** * @dev Tiers used for timed release based on addressStarlist. * See {constructor} for initial values. * If a user has no tier set they inherit 0. */ struct Tier { uint128 wenOffset; uint64 priceWei; uint64 maxAllowed; } mapping(uint => Tier) public Tiers; mapping(address => uint) public addressStarlist; mapping(address => uint) public addressMintBalance; constructor( uint128 releaseTimestamp ) ERC721A("Starcatchers", "STAR") { _releaseTimestamp = releaseTimestamp; Tiers[5] = Tier(0, 0.0888 ether, _maxMintAmountPerTx); Tiers[4] = Tier(0, 0.0888 ether, _maxMintAmountPerTx-1); Tiers[3] = Tier(0, 0.0999 ether, _maxMintAmountPerTx-1); Tiers[2] = Tier(86400, 0.0999 ether, _maxMintAmountPerTx-2); Tiers[1] = Tier(86400, 0.111 ether, _maxMintAmountPerTx-2); Tiers[11] = Tier(172800, 0.111 ether, _maxMintAmountPerTx-2); Tiers[12] = Tier(259200, 0.111 ether, _maxMintAmountPerTx-2); Tiers[0] = Tier(604800, 0.111 ether, _maxMintAmountPerTx-2); } function mintCompliance( uint quantity, Tier storage t ) private { require( msg.value == t.priceWei * quantity, "Incorrect payment" ); require( quantity > 0 && quantity <= t.maxAllowed, "Invalid mint amount" ); require( totalSupply() + quantity <= _maxSupply, "Maximum supply exceeded" ); require( block.timestamp > (_releaseTimestamp + t.wenOffset), "It is not yet your time" ); } /** * @dev minting function, balance tracking only relevant for Starlist. * TX validation done inside {mintCompliance}. */ function ascend_h2d( uint8 quantity ) public payable { mintCompliance(quantity, Tiers[0]); _safeMint(msg.sender, quantity); } /** * @dev starlist minting function */ function ascend_starlist_abf( uint8 quantity ) public payable { Tier storage _t = Tiers[addressStarlist[msg.sender]]; mintCompliance(quantity, _t); require( addressMintBalance[msg.sender] + quantity <= _t.maxAllowed, "Starlist threshold exceeded" ); addressMintBalance[msg.sender] += quantity; _safeMint(msg.sender, quantity); } function setTier(uint8 tierId, uint128 wenOffset, uint64 priceWei, uint64 maxAllowed) public onlyOwner { require( maxAllowed <= _maxMintAmountPerTx, "MaxAllowed parameter exceeds _maxMintAmountPerTx" ); Tiers[tierId] = Tier(wenOffset, priceWei, maxAllowed); } function setReleaseTimestamp(uint128 releaseTimestamp) public onlyOwner { _releaseTimestamp = releaseTimestamp; } function setBaseURI(string memory baseURI) public onlyOwner { _baseTokenURI = baseURI; } function setStarlist(address[] calldata _users, uint8 tier) public onlyOwner { for (uint i = 0; i < _users.length; i++) { addressStarlist[_users[i]] = tier; } } function treasuryMint(uint quantity) public onlyOwner { require( !_treasuryMint, "Treasury mint can only be done once" ); require( quantity > 0, "Invalid mint amount" ); require( totalSupply() + quantity <= _maxSupply, "Maximum supply exceeded" ); _safeMint(msg.sender, quantity); _treasuryMint = true; } function withdraw() public onlyOwner nonReentrant { uint total = address(this).balance; uint devCut = total * 5 / 100; uint vaultCut = total * 35 / 100; Address.sendValue(payable(xDev), devCut); Address.sendValue(payable(xVault), vaultCut); Address.sendValue(payable(xTreasury), address(this).balance); } function tokenURI(uint _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); return string(abi.encodePacked(_baseTokenURI, _tokenId.toString())); } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } }
// SPDX-License-Identifier: MIT // Creator: Chiru Labs pragma solidity ^0.8.4; import '@openzeppelin/contracts/token/ERC721/IERC721.sol'; import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol'; import '@openzeppelin/contracts/utils/Address.sol'; import '@openzeppelin/contracts/utils/Context.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; import '@openzeppelin/contracts/utils/introspection/ERC165.sol'; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error UnableDetermineTokenOwner(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). * * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 internal _currentIndex; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { if (index >= totalSupply()) revert TokenIndexOutOfBounds(); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds(); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } // Execution should never reach this point. assert(false); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { if (!_exists(tokenId)) revert OwnerQueryForNonexistentToken(); unchecked { for (uint256 curr = tokenId;; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) revert ApprovalCallerNotOwnerNorApproved(); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); if (!_checkOnERC721Received(from, to, tokenId, _data)) revert TransferToNonERC721ReceiverImplementer(); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < _currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.56e77 (2**256) - 1 unchecked { _addressData[to].balance += uint128(quantity); _addressData[to].numberMinted += uint128(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) { revert TransferToNonERC721ReceiverImplementer(); } updatedIndex++; } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) revert TransferToNonERC721ReceiverImplementer(); else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/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 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// 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 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// 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/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 // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": true, "runs": 400 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint128","name":"releaseTimestamp","type":"uint128"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"Tiers","outputs":[{"internalType":"uint128","name":"wenOffset","type":"uint128"},{"internalType":"uint64","name":"priceWei","type":"uint64"},{"internalType":"uint64","name":"maxAllowed","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxSupply","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_releaseTimestamp","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressStarlist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"quantity","type":"uint8"}],"name":"ascend_h2d","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"quantity","type":"uint8"}],"name":"ascend_starlist_abf","outputs":[],"stateMutability":"payable","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":"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint128","name":"releaseTimestamp","type":"uint128"}],"name":"setReleaseTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"},{"internalType":"uint8","name":"tier","type":"uint8"}],"name":"setStarlist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"tierId","type":"uint8"},{"internalType":"uint128","name":"wenOffset","type":"uint128"},{"internalType":"uint64","name":"priceWei","type":"uint64"},{"internalType":"uint64","name":"maxAllowed","type":"uint64"}],"name":"setTier","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"treasuryMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"xDev","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"xTreasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"xVault","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60c0604052600980546001600160801b0319169055612710608052600460a0523480156200002c57600080fd5b5060405162002f2c38038062002f2c8339810160408190526200004f91620007bc565b604080518082018252600c81526b53746172636174636865727360a01b60208083019182528351808501909452600484526329aa20a960e11b9084015281519192916200009f9160019162000716565b508051620000b590600290602084019062000716565b505050620000d2620000cc620006c060201b60201c565b620006c4565b60016008819055600980546001600160801b038085166001600160801b0319909216919091179091556040805160608082018352600080835267013b7b21280e0000602080850182815260a080516001600160401b03908116888a0190815260058752600b855297517febae6141bae5521e99e0a8d610356b0f501fea54980b59c84841db43ba7204f48054945199518316600160c01b026001600160c01b039a909316600160801b026001600160c01b031990951691909b1617929092179690961617909655845192830185529082529381019390935251919290830191620001bd9190620007ee565b6001600160401b0390811690915260046000908152600b602090815283517f12d0c11577e2f0950f57c455c117796550b79f444811db8ba2f69c57b646c7848054868401516040978801518716600160c01b026001600160c01b0391909716600160801b026001600160c01b03199092166001600160801b03909416939093171791909116939093179092558251606081018452908152670162ea854d0fc0009181019190915260a05190918201906200027a90600190620007ee565b6001600160401b039081169091526003600052600b602090815282517f64c15cc42be7899b001f818cf4433057002112c418d1d3a67cd5cb453051d33e8054858401516040968701518616600160c01b026001600160c01b0391909616600160801b026001600160c01b03199092166001600160801b03909416939093171791909116929092179091558151606081018352620151808152670162ea854d0fc0009181019190915260a05190918201906200033890600290620007ee565b6001600160401b0390811690915260026000819052600b602090815283517fa50eece07c7db1631545c0069bd8f5f54d5935e215d59097edf258a44ba916348054868401516040978801518716600160c01b026001600160c01b0391909716600160801b026001600160c01b03199092166001600160801b0390941693909317179190911693909317909255825160608101845262015180815267018a59e9721180009281019290925260a0519192830191620003f69190620007ee565b6001600160401b039081169091526001600052600b602090815282517f72c6bfb7988af3a1efa6568f02a999bc52252641c659d85961ca3d372b57d5cf8054858401516040968701518616600160c01b026001600160c01b0391909616600160801b026001600160c01b03199092166001600160801b039094169390931717919091169290921790915581516060810183526202a300815267018a59e9721180009181019190915260a0519091820190620004b490600290620007ee565b6001600160401b03908116909152600b6000819052602090815282517fe8056e2ed8943b7f61a5f0dc88c79a5a6cec2bb36a7bd11ce130f2961c6320b98054858401516040968701518616600160c01b026001600160c01b0391909616600160801b026001600160c01b03199092166001600160801b039094169390931717919091169290921790915581516060810183526203f480815267018a59e9721180009181019190915260a05190918201906200057290600290620007ee565b6001600160401b03908116909152600c600052600b602090815282517f765e72d9703c9804ad76c7d0af52f5313041ea56bb31a328e17fea205151b5ea8054858401516040968701518616600160c01b026001600160c01b0391909616600160801b026001600160c01b03199092166001600160801b0390941693909317179190911692909217909155815160608101835262093a80815267018a59e9721180009181019190915260a05190918201906200063090600290620007ee565b6001600160401b0390811690915260008052600b602090815282517fdf7de25b7f1fd6d0b5205f0e18f1f35bd7b8d84cce336588d184533ce43a6f76805492850151604095909501518416600160c01b026001600160c01b0395909416600160801b026001600160c01b03199093166001600160801b039092169190911791909117929092161790555062000862565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620007249062000825565b90600052602060002090601f01602090048101928262000748576000855562000793565b82601f106200076357805160ff191683800117855562000793565b8280016001018555821562000793579182015b828111156200079357825182559160200191906001019062000776565b50620007a1929150620007a5565b5090565b5b80821115620007a15760008155600101620007a6565b600060208284031215620007cf57600080fd5b81516001600160801b0381168114620007e757600080fd5b9392505050565b60006001600160401b03838116908316818110156200081d57634e487b7160e01b600052601160045260246000fd5b039392505050565b600181811c908216806200083a57607f821691505b602082108114156200085c57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051612696620008966000396000610d570152600081816102f6015281816112ed015261184901526126966000f3fe60806040526004361061020f5760003560e01c8063715018a611610118578063bf3952d7116100a0578063e985e9c51161006f578063e985e9c5146106a9578063ed41f49f146106f2578063efdc77881461071f578063f2fde38b1461073f578063f96a7bab1461075f57600080fd5b8063bf3952d7146105b9578063c87b56dd1461063c578063cec4b83a1461065c578063cfc86f7b1461069457600080fd5b80638f553c8e116100e75780638f553c8e1461053157806395d89b4114610544578063a22cb46514610559578063a6fdee4514610579578063b88d4fde1461059957600080fd5b8063715018a6146104b657806382f370b5146104cb57806388db872c146104eb5780638da5cb5b1461051357600080fd5b80633b8474e31161019b57806350aaafb11161016a57806350aaafb11461040657806355f804b31461042e5780636352211e1461044e5780636e54173a1461046e57806370a082311461049657600080fd5b80633b8474e31461039e5780633ccfd60b146103b157806342842e0e146103c65780634f6ccce7146103e657600080fd5b806318160ddd116101e257806318160ddd146102c557806322f4596f146102e457806323b872dd146103315780632f745c59146103515780633406c7261461037157600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004611f82565b61077f565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6107ec565b6040516102409190611ffe565b34801561027757600080fd5b5061028b610286366004612011565b61087e565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004612046565b6108c4565b005b3480156102d157600080fd5b506000545b604051908152602001610240565b3480156102f057600080fd5b506103187f000000000000000000000000000000000000000000000000000000000000000081565b60405167ffffffffffffffff9091168152602001610240565b34801561033d57600080fd5b506102c361034c366004612070565b610952565b34801561035d57600080fd5b506102d661036c366004612046565b61095d565b34801561037d57600080fd5b506102d661038c3660046120ac565b600d6020526000908152604090205481565b6102c36103ac3660046120d8565b610a32565b3480156103bd57600080fd5b506102c3610a78565b3480156103d257600080fd5b506102c36103e1366004612070565b610bb8565b3480156103f257600080fd5b506102d6610401366004612011565b610bd3565b34801561041257600080fd5b5061028b7302874867a6d48713d9cf275b7324b790e9c1f7ee81565b34801561043a57600080fd5b506102c361044936600461217f565b610bfa565b34801561045a57600080fd5b5061028b610469366004612011565b610c59565b34801561047a57600080fd5b5061028b739b54d1714f85a192723a36f1e8de9e81dbcbbb1f81565b3480156104a257600080fd5b506102d66104b13660046120ac565b610c6b565b3480156104c257600080fd5b506102c3610cb9565b3480156104d757600080fd5b506102c36104e63660046121f7565b610d0d565b3480156104f757600080fd5b5061028b73370f75a63f438186dbfecfd27cd75a5023bea73781565b34801561051f57600080fd5b506007546001600160a01b031661028b565b6102c361053f3660046120d8565b610e9e565b34801561055057600080fd5b5061025e610f7d565b34801561056557600080fd5b506102c361057436600461224b565b610f8c565b34801561058557600080fd5b506102c3610594366004612287565b611022565b3480156105a557600080fd5b506102c36105b43660046122a2565b61108c565b3480156105c557600080fd5b5061060c6105d4366004612011565b600b602052600090815260409020546001600160801b0381169067ffffffffffffffff600160801b8204811691600160c01b90041683565b604080516001600160801b03909416845267ffffffffffffffff9283166020850152911690820152606001610240565b34801561064857600080fd5b5061025e610657366004612011565b6110c6565b34801561066857600080fd5b5060095461067c906001600160801b031681565b6040516001600160801b039091168152602001610240565b3480156106a057600080fd5b5061025e611169565b3480156106b557600080fd5b506102346106c436600461231e565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106fe57600080fd5b506102d661070d3660046120ac565b600c6020526000908152604090205481565b34801561072b57600080fd5b506102c361073a366004612011565b6111f7565b34801561074b57600080fd5b506102c361075a3660046120ac565b611398565b34801561076b57600080fd5b506102c361077a366004612351565b61144e565b60006001600160e01b031982166380ac58cd60e01b14806107b057506001600160e01b03198216635b5e139f60e01b145b806107cb57506001600160e01b0319821663780e9d6360e01b145b806107e657506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546107fb906123d5565b80601f0160208091040260200160405190810160405280929190818152602001828054610827906123d5565b80156108745780601f1061084957610100808354040283529160200191610874565b820191906000526020600020905b81548152906001019060200180831161085757829003601f168201915b5050505050905090565b600061088b826000541190565b6108a8576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108cf82610c59565b9050806001600160a01b0316836001600160a01b031614156109045760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610924575061092281336106c4565b155b15610942576040516367d9dca160e11b815260040160405180910390fd5b61094d8383836114fc565b505050565b61094d838383611558565b600061096883610c6b565b8210610987576040516306ed618760e11b815260040160405180910390fd5b600080549080805b83811015610a20576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156109e257805192505b876001600160a01b0316836001600160a01b03161415610a175786841415610a10575093506107e692505050565b6001909301925b5060010161098f565b50610a29612410565b50505092915050565b60008052600b602052610a6860ff82167fdf7de25b7f1fd6d0b5205f0e18f1f35bd7b8d84cce336588d184533ce43a6f76611777565b610a75338260ff16611946565b50565b6007546001600160a01b03163314610ac55760405162461bcd60e51b8152602060048201819052602482015260008051602061264183398151915260448201526064015b60405180910390fd5b60026008541415610b185760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610abc565b60026008554760006064610b2d83600561243c565b610b379190612471565b905060006064610b4884602361243c565b610b529190612471565b9050610b72739b54d1714f85a192723a36f1e8de9e81dbcbbb1f83611960565b610b907302874867a6d48713d9cf275b7324b790e9c1f7ee82611960565b610bae73370f75a63f438186dbfecfd27cd75a5023bea73747611960565b5050600160085550565b61094d8383836040518060200160405280600081525061108c565b600080548210610bf6576040516329c8c00760e21b815260040160405180910390fd5b5090565b6007546001600160a01b03163314610c425760405162461bcd60e51b815260206004820181905260248201526000805160206126418339815191526044820152606401610abc565b8051610c5590600a906020840190611edc565b5050565b6000610c6482611a79565b5192915050565b60006001600160a01b038216610c94576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610d015760405162461bcd60e51b815260206004820181905260248201526000805160206126418339815191526044820152606401610abc565b610d0b6000611b0e565b565b6007546001600160a01b03163314610d555760405162461bcd60e51b815260206004820181905260248201526000805160206126418339815191526044820152606401610abc565b7f000000000000000000000000000000000000000000000000000000000000000067ffffffffffffffff168167ffffffffffffffff161115610df25760405162461bcd60e51b815260206004820152603060248201527f4d6178416c6c6f77656420706172616d657465722065786365656473205f6d6160448201526f0f09ad2dce882dadeeadce8a0cae4a8f60831b6064820152608401610abc565b604080516060810182526001600160801b03948516815267ffffffffffffffff938416602080830191825293851682840190815260ff979097166000908152600b909452919092209151825491519551941677ffffffffffffffffffffffffffffffffffffffffffffffff1990911617600160801b948316949094029390931777ffffffffffffffffffffffffffffffffffffffffffffffff16600160c01b9290911691909102179055565b336000908152600c60209081526040808320548352600b9091529020610ec760ff831682611777565b8054336000908152600d6020526040902054600160c01b90910467ffffffffffffffff1690610efa9060ff851690612485565b1115610f485760405162461bcd60e51b815260206004820152601b60248201527f537461726c697374207468726573686f6c6420657863656564656400000000006044820152606401610abc565b336000908152600d60205260408120805460ff85169290610f6a908490612485565b90915550610c5590503360ff8416611946565b6060600280546107fb906123d5565b6001600160a01b038216331415610fb65760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b0316331461106a5760405162461bcd60e51b815260206004820181905260248201526000805160206126418339815191526044820152606401610abc565b600980546001600160801b0319166001600160801b0392909216919091179055565b611097848484611558565b6110a384848484611b60565b6110c0576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606110d3826000541190565b6111375760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610abc565b600a61114283611c6f565b6040516020016111539291906124b9565b6040516020818303038152906040529050919050565b600a8054611176906123d5565b80601f01602080910402602001604051908101604052809291908181526020018280546111a2906123d5565b80156111ef5780601f106111c4576101008083540402835291602001916111ef565b820191906000526020600020905b8154815290600101906020018083116111d257829003601f168201915b505050505081565b6007546001600160a01b0316331461123f5760405162461bcd60e51b815260206004820181905260248201526000805160206126418339815191526044820152606401610abc565b600954600160801b900460ff16156112a55760405162461bcd60e51b815260206004820152602360248201527f5472656173757279206d696e742063616e206f6e6c7920626520646f6e65206f6044820152626e636560e81b6064820152608401610abc565b600081116112eb5760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b6044820152606401610abc565b7f000000000000000000000000000000000000000000000000000000000000000067ffffffffffffffff168161132060005490565b61132a9190612485565b11156113785760405162461bcd60e51b815260206004820152601760248201527f4d6178696d756d20737570706c792065786365656465640000000000000000006044820152606401610abc565b6113823382611946565b506009805460ff60801b1916600160801b179055565b6007546001600160a01b031633146113e05760405162461bcd60e51b815260206004820181905260248201526000805160206126418339815191526044820152606401610abc565b6001600160a01b0381166114455760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610abc565b610a7581611b0e565b6007546001600160a01b031633146114965760405162461bcd60e51b815260206004820181905260248201526000805160206126418339815191526044820152606401610abc565b60005b828110156110c0578160ff16600c60008686858181106114bb576114bb612560565b90506020020160208101906114d091906120ac565b6001600160a01b03168152602081019190915260400160002055806114f481612576565b915050611499565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061156382611a79565b80519091506000906001600160a01b0316336001600160a01b031614806115915750815161159190336106c4565b806115ac5750336115a18461087e565b6001600160a01b0316145b9050806115cc57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146116015760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661162857604051633a954ecd60e21b815260040160405180910390fd5b61163860008484600001516114fc565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff160217905590860180835291205490911661172d576116e0816000541190565b1561172d578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b8054611795908390600160801b900467ffffffffffffffff1661243c565b34146117e35760405162461bcd60e51b815260206004820152601160248201527f496e636f7272656374207061796d656e740000000000000000000000000000006044820152606401610abc565b60008211801561180557508054600160c01b900467ffffffffffffffff168211155b6118475760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b6044820152606401610abc565b7f000000000000000000000000000000000000000000000000000000000000000067ffffffffffffffff168261187c60005490565b6118869190612485565b11156118d45760405162461bcd60e51b815260206004820152601760248201527f4d6178696d756d20737570706c792065786365656465640000000000000000006044820152606401610abc565b80546009546118ef916001600160801b039081169116612591565b6001600160801b03164211610c555760405162461bcd60e51b815260206004820152601760248201527f4974206973206e6f742079657420796f75722074696d650000000000000000006044820152606401610abc565b610c55828260405180602001604052806000815250611d85565b804710156119b05760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610abc565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146119fd576040519150601f19603f3d011682016040523d82523d6000602084013e611a02565b606091505b505090508061094d5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610abc565b6040805180820190915260008082526020820152611a98826000541190565b611ab557604051636f96cda160e11b815260040160405180910390fd5b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611b04579392505050565b5060001901611ab7565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611c6357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ba49033908990889088906004016125bc565b602060405180830381600087803b158015611bbe57600080fd5b505af1925050508015611bee575060408051601f3d908101601f19168201909252611beb918101906125f8565b60015b611c49573d808015611c1c576040519150601f19603f3d011682016040523d82523d6000602084013e611c21565b606091505b508051611c41576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c67565b5060015b949350505050565b606081611c935750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611cbd5780611ca781612576565b9150611cb69050600a83612471565b9150611c97565b60008167ffffffffffffffff811115611cd857611cd86120f3565b6040519080825280601f01601f191660200182016040528015611d02576020820181803683370190505b5090505b8415611c6757611d17600183612615565b9150611d24600a8661262c565b611d2f906030612485565b60f81b818381518110611d4457611d44612560565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611d7e600a86612471565b9450611d06565b61094d83838360016000546001600160a01b038516611db657604051622e076360e81b815260040160405180910390fd5b83611dd45760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611ed35760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611ea95750611ea76000888488611b60565b155b15611ec7576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611e52565b50600055611770565b828054611ee8906123d5565b90600052602060002090601f016020900481019282611f0a5760008555611f50565b82601f10611f2357805160ff1916838001178555611f50565b82800160010185558215611f50579182015b82811115611f50578251825591602001919060010190611f35565b50610bf69291505b80821115610bf65760008155600101611f58565b6001600160e01b031981168114610a7557600080fd5b600060208284031215611f9457600080fd5b8135611f9f81611f6c565b9392505050565b60005b83811015611fc1578181015183820152602001611fa9565b838111156110c05750506000910152565b60008151808452611fea816020860160208601611fa6565b601f01601f19169290920160200192915050565b602081526000611f9f6020830184611fd2565b60006020828403121561202357600080fd5b5035919050565b80356001600160a01b038116811461204157600080fd5b919050565b6000806040838503121561205957600080fd5b6120628361202a565b946020939093013593505050565b60008060006060848603121561208557600080fd5b61208e8461202a565b925061209c6020850161202a565b9150604084013590509250925092565b6000602082840312156120be57600080fd5b611f9f8261202a565b803560ff8116811461204157600080fd5b6000602082840312156120ea57600080fd5b611f9f826120c7565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612124576121246120f3565b604051601f8501601f19908116603f0116810190828211818310171561214c5761214c6120f3565b8160405280935085815286868601111561216557600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561219157600080fd5b813567ffffffffffffffff8111156121a857600080fd5b8201601f810184136121b957600080fd5b611c6784823560208401612109565b80356001600160801b038116811461204157600080fd5b803567ffffffffffffffff8116811461204157600080fd5b6000806000806080858703121561220d57600080fd5b612216856120c7565b9350612224602086016121c8565b9250612232604086016121df565b9150612240606086016121df565b905092959194509250565b6000806040838503121561225e57600080fd5b6122678361202a565b91506020830135801515811461227c57600080fd5b809150509250929050565b60006020828403121561229957600080fd5b611f9f826121c8565b600080600080608085870312156122b857600080fd5b6122c18561202a565b93506122cf6020860161202a565b925060408501359150606085013567ffffffffffffffff8111156122f257600080fd5b8501601f8101871361230357600080fd5b61231287823560208401612109565b91505092959194509250565b6000806040838503121561233157600080fd5b61233a8361202a565b91506123486020840161202a565b90509250929050565b60008060006040848603121561236657600080fd5b833567ffffffffffffffff8082111561237e57600080fd5b818601915086601f83011261239257600080fd5b8135818111156123a157600080fd5b8760208260051b85010111156123b657600080fd5b6020928301955093506123cc91860190506120c7565b90509250925092565b600181811c908216806123e957607f821691505b6020821081141561240a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052600160045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561245657612456612426565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826124805761248061245b565b500490565b6000821982111561249857612498612426565b500190565b600081516124af818560208601611fa6565b9290920192915050565b600080845481600182811c9150808316806124d557607f831692505b60208084108214156124f557634e487b7160e01b86526022600452602486fd5b818015612509576001811461251a57612547565b60ff19861689528489019650612547565b60008b81526020902060005b8681101561253f5781548b820152908501908301612526565b505084890196505b505050505050612557818561249d565b95945050505050565b634e487b7160e01b600052603260045260246000fd5b600060001982141561258a5761258a612426565b5060010190565b60006001600160801b038083168185168083038211156125b3576125b3612426565b01949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526125ee6080830184611fd2565b9695505050505050565b60006020828403121561260a57600080fd5b8151611f9f81611f6c565b60008282101561262757612627612426565b500390565b60008261263b5761263b61245b565b50069056fe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220be4e810b2f3f137b69491cd5e62c6a4cdfa5bcd36198391a0447e6c1599ef38764736f6c6343000809003300000000000000000000000000000000000000000000000000000000621537d8
Deployed Bytecode
0x60806040526004361061020f5760003560e01c8063715018a611610118578063bf3952d7116100a0578063e985e9c51161006f578063e985e9c5146106a9578063ed41f49f146106f2578063efdc77881461071f578063f2fde38b1461073f578063f96a7bab1461075f57600080fd5b8063bf3952d7146105b9578063c87b56dd1461063c578063cec4b83a1461065c578063cfc86f7b1461069457600080fd5b80638f553c8e116100e75780638f553c8e1461053157806395d89b4114610544578063a22cb46514610559578063a6fdee4514610579578063b88d4fde1461059957600080fd5b8063715018a6146104b657806382f370b5146104cb57806388db872c146104eb5780638da5cb5b1461051357600080fd5b80633b8474e31161019b57806350aaafb11161016a57806350aaafb11461040657806355f804b31461042e5780636352211e1461044e5780636e54173a1461046e57806370a082311461049657600080fd5b80633b8474e31461039e5780633ccfd60b146103b157806342842e0e146103c65780634f6ccce7146103e657600080fd5b806318160ddd116101e257806318160ddd146102c557806322f4596f146102e457806323b872dd146103315780632f745c59146103515780633406c7261461037157600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f366004611f82565b61077f565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6107ec565b6040516102409190611ffe565b34801561027757600080fd5b5061028b610286366004612011565b61087e565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004612046565b6108c4565b005b3480156102d157600080fd5b506000545b604051908152602001610240565b3480156102f057600080fd5b506103187f000000000000000000000000000000000000000000000000000000000000271081565b60405167ffffffffffffffff9091168152602001610240565b34801561033d57600080fd5b506102c361034c366004612070565b610952565b34801561035d57600080fd5b506102d661036c366004612046565b61095d565b34801561037d57600080fd5b506102d661038c3660046120ac565b600d6020526000908152604090205481565b6102c36103ac3660046120d8565b610a32565b3480156103bd57600080fd5b506102c3610a78565b3480156103d257600080fd5b506102c36103e1366004612070565b610bb8565b3480156103f257600080fd5b506102d6610401366004612011565b610bd3565b34801561041257600080fd5b5061028b7302874867a6d48713d9cf275b7324b790e9c1f7ee81565b34801561043a57600080fd5b506102c361044936600461217f565b610bfa565b34801561045a57600080fd5b5061028b610469366004612011565b610c59565b34801561047a57600080fd5b5061028b739b54d1714f85a192723a36f1e8de9e81dbcbbb1f81565b3480156104a257600080fd5b506102d66104b13660046120ac565b610c6b565b3480156104c257600080fd5b506102c3610cb9565b3480156104d757600080fd5b506102c36104e63660046121f7565b610d0d565b3480156104f757600080fd5b5061028b73370f75a63f438186dbfecfd27cd75a5023bea73781565b34801561051f57600080fd5b506007546001600160a01b031661028b565b6102c361053f3660046120d8565b610e9e565b34801561055057600080fd5b5061025e610f7d565b34801561056557600080fd5b506102c361057436600461224b565b610f8c565b34801561058557600080fd5b506102c3610594366004612287565b611022565b3480156105a557600080fd5b506102c36105b43660046122a2565b61108c565b3480156105c557600080fd5b5061060c6105d4366004612011565b600b602052600090815260409020546001600160801b0381169067ffffffffffffffff600160801b8204811691600160c01b90041683565b604080516001600160801b03909416845267ffffffffffffffff9283166020850152911690820152606001610240565b34801561064857600080fd5b5061025e610657366004612011565b6110c6565b34801561066857600080fd5b5060095461067c906001600160801b031681565b6040516001600160801b039091168152602001610240565b3480156106a057600080fd5b5061025e611169565b3480156106b557600080fd5b506102346106c436600461231e565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106fe57600080fd5b506102d661070d3660046120ac565b600c6020526000908152604090205481565b34801561072b57600080fd5b506102c361073a366004612011565b6111f7565b34801561074b57600080fd5b506102c361075a3660046120ac565b611398565b34801561076b57600080fd5b506102c361077a366004612351565b61144e565b60006001600160e01b031982166380ac58cd60e01b14806107b057506001600160e01b03198216635b5e139f60e01b145b806107cb57506001600160e01b0319821663780e9d6360e01b145b806107e657506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546107fb906123d5565b80601f0160208091040260200160405190810160405280929190818152602001828054610827906123d5565b80156108745780601f1061084957610100808354040283529160200191610874565b820191906000526020600020905b81548152906001019060200180831161085757829003601f168201915b5050505050905090565b600061088b826000541190565b6108a8576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108cf82610c59565b9050806001600160a01b0316836001600160a01b031614156109045760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610924575061092281336106c4565b155b15610942576040516367d9dca160e11b815260040160405180910390fd5b61094d8383836114fc565b505050565b61094d838383611558565b600061096883610c6b565b8210610987576040516306ed618760e11b815260040160405180910390fd5b600080549080805b83811015610a20576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156109e257805192505b876001600160a01b0316836001600160a01b03161415610a175786841415610a10575093506107e692505050565b6001909301925b5060010161098f565b50610a29612410565b50505092915050565b60008052600b602052610a6860ff82167fdf7de25b7f1fd6d0b5205f0e18f1f35bd7b8d84cce336588d184533ce43a6f76611777565b610a75338260ff16611946565b50565b6007546001600160a01b03163314610ac55760405162461bcd60e51b8152602060048201819052602482015260008051602061264183398151915260448201526064015b60405180910390fd5b60026008541415610b185760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610abc565b60026008554760006064610b2d83600561243c565b610b379190612471565b905060006064610b4884602361243c565b610b529190612471565b9050610b72739b54d1714f85a192723a36f1e8de9e81dbcbbb1f83611960565b610b907302874867a6d48713d9cf275b7324b790e9c1f7ee82611960565b610bae73370f75a63f438186dbfecfd27cd75a5023bea73747611960565b5050600160085550565b61094d8383836040518060200160405280600081525061108c565b600080548210610bf6576040516329c8c00760e21b815260040160405180910390fd5b5090565b6007546001600160a01b03163314610c425760405162461bcd60e51b815260206004820181905260248201526000805160206126418339815191526044820152606401610abc565b8051610c5590600a906020840190611edc565b5050565b6000610c6482611a79565b5192915050565b60006001600160a01b038216610c94576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610d015760405162461bcd60e51b815260206004820181905260248201526000805160206126418339815191526044820152606401610abc565b610d0b6000611b0e565b565b6007546001600160a01b03163314610d555760405162461bcd60e51b815260206004820181905260248201526000805160206126418339815191526044820152606401610abc565b7f000000000000000000000000000000000000000000000000000000000000000467ffffffffffffffff168167ffffffffffffffff161115610df25760405162461bcd60e51b815260206004820152603060248201527f4d6178416c6c6f77656420706172616d657465722065786365656473205f6d6160448201526f0f09ad2dce882dadeeadce8a0cae4a8f60831b6064820152608401610abc565b604080516060810182526001600160801b03948516815267ffffffffffffffff938416602080830191825293851682840190815260ff979097166000908152600b909452919092209151825491519551941677ffffffffffffffffffffffffffffffffffffffffffffffff1990911617600160801b948316949094029390931777ffffffffffffffffffffffffffffffffffffffffffffffff16600160c01b9290911691909102179055565b336000908152600c60209081526040808320548352600b9091529020610ec760ff831682611777565b8054336000908152600d6020526040902054600160c01b90910467ffffffffffffffff1690610efa9060ff851690612485565b1115610f485760405162461bcd60e51b815260206004820152601b60248201527f537461726c697374207468726573686f6c6420657863656564656400000000006044820152606401610abc565b336000908152600d60205260408120805460ff85169290610f6a908490612485565b90915550610c5590503360ff8416611946565b6060600280546107fb906123d5565b6001600160a01b038216331415610fb65760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b0316331461106a5760405162461bcd60e51b815260206004820181905260248201526000805160206126418339815191526044820152606401610abc565b600980546001600160801b0319166001600160801b0392909216919091179055565b611097848484611558565b6110a384848484611b60565b6110c0576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606110d3826000541190565b6111375760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610abc565b600a61114283611c6f565b6040516020016111539291906124b9565b6040516020818303038152906040529050919050565b600a8054611176906123d5565b80601f01602080910402602001604051908101604052809291908181526020018280546111a2906123d5565b80156111ef5780601f106111c4576101008083540402835291602001916111ef565b820191906000526020600020905b8154815290600101906020018083116111d257829003601f168201915b505050505081565b6007546001600160a01b0316331461123f5760405162461bcd60e51b815260206004820181905260248201526000805160206126418339815191526044820152606401610abc565b600954600160801b900460ff16156112a55760405162461bcd60e51b815260206004820152602360248201527f5472656173757279206d696e742063616e206f6e6c7920626520646f6e65206f6044820152626e636560e81b6064820152608401610abc565b600081116112eb5760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b6044820152606401610abc565b7f000000000000000000000000000000000000000000000000000000000000271067ffffffffffffffff168161132060005490565b61132a9190612485565b11156113785760405162461bcd60e51b815260206004820152601760248201527f4d6178696d756d20737570706c792065786365656465640000000000000000006044820152606401610abc565b6113823382611946565b506009805460ff60801b1916600160801b179055565b6007546001600160a01b031633146113e05760405162461bcd60e51b815260206004820181905260248201526000805160206126418339815191526044820152606401610abc565b6001600160a01b0381166114455760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610abc565b610a7581611b0e565b6007546001600160a01b031633146114965760405162461bcd60e51b815260206004820181905260248201526000805160206126418339815191526044820152606401610abc565b60005b828110156110c0578160ff16600c60008686858181106114bb576114bb612560565b90506020020160208101906114d091906120ac565b6001600160a01b03168152602081019190915260400160002055806114f481612576565b915050611499565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061156382611a79565b80519091506000906001600160a01b0316336001600160a01b031614806115915750815161159190336106c4565b806115ac5750336115a18461087e565b6001600160a01b0316145b9050806115cc57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b0316146116015760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661162857604051633a954ecd60e21b815260040160405180910390fd5b61163860008484600001516114fc565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff160217905590860180835291205490911661172d576116e0816000541190565b1561172d578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b8054611795908390600160801b900467ffffffffffffffff1661243c565b34146117e35760405162461bcd60e51b815260206004820152601160248201527f496e636f7272656374207061796d656e740000000000000000000000000000006044820152606401610abc565b60008211801561180557508054600160c01b900467ffffffffffffffff168211155b6118475760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b6044820152606401610abc565b7f000000000000000000000000000000000000000000000000000000000000271067ffffffffffffffff168261187c60005490565b6118869190612485565b11156118d45760405162461bcd60e51b815260206004820152601760248201527f4d6178696d756d20737570706c792065786365656465640000000000000000006044820152606401610abc565b80546009546118ef916001600160801b039081169116612591565b6001600160801b03164211610c555760405162461bcd60e51b815260206004820152601760248201527f4974206973206e6f742079657420796f75722074696d650000000000000000006044820152606401610abc565b610c55828260405180602001604052806000815250611d85565b804710156119b05760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610abc565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146119fd576040519150601f19603f3d011682016040523d82523d6000602084013e611a02565b606091505b505090508061094d5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610abc565b6040805180820190915260008082526020820152611a98826000541190565b611ab557604051636f96cda160e11b815260040160405180910390fd5b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611b04579392505050565b5060001901611ab7565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611c6357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ba49033908990889088906004016125bc565b602060405180830381600087803b158015611bbe57600080fd5b505af1925050508015611bee575060408051601f3d908101601f19168201909252611beb918101906125f8565b60015b611c49573d808015611c1c576040519150601f19603f3d011682016040523d82523d6000602084013e611c21565b606091505b508051611c41576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c67565b5060015b949350505050565b606081611c935750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611cbd5780611ca781612576565b9150611cb69050600a83612471565b9150611c97565b60008167ffffffffffffffff811115611cd857611cd86120f3565b6040519080825280601f01601f191660200182016040528015611d02576020820181803683370190505b5090505b8415611c6757611d17600183612615565b9150611d24600a8661262c565b611d2f906030612485565b60f81b818381518110611d4457611d44612560565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611d7e600a86612471565b9450611d06565b61094d83838360016000546001600160a01b038516611db657604051622e076360e81b815260040160405180910390fd5b83611dd45760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611ed35760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611ea95750611ea76000888488611b60565b155b15611ec7576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611e52565b50600055611770565b828054611ee8906123d5565b90600052602060002090601f016020900481019282611f0a5760008555611f50565b82601f10611f2357805160ff1916838001178555611f50565b82800160010185558215611f50579182015b82811115611f50578251825591602001919060010190611f35565b50610bf69291505b80821115610bf65760008155600101611f58565b6001600160e01b031981168114610a7557600080fd5b600060208284031215611f9457600080fd5b8135611f9f81611f6c565b9392505050565b60005b83811015611fc1578181015183820152602001611fa9565b838111156110c05750506000910152565b60008151808452611fea816020860160208601611fa6565b601f01601f19169290920160200192915050565b602081526000611f9f6020830184611fd2565b60006020828403121561202357600080fd5b5035919050565b80356001600160a01b038116811461204157600080fd5b919050565b6000806040838503121561205957600080fd5b6120628361202a565b946020939093013593505050565b60008060006060848603121561208557600080fd5b61208e8461202a565b925061209c6020850161202a565b9150604084013590509250925092565b6000602082840312156120be57600080fd5b611f9f8261202a565b803560ff8116811461204157600080fd5b6000602082840312156120ea57600080fd5b611f9f826120c7565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612124576121246120f3565b604051601f8501601f19908116603f0116810190828211818310171561214c5761214c6120f3565b8160405280935085815286868601111561216557600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561219157600080fd5b813567ffffffffffffffff8111156121a857600080fd5b8201601f810184136121b957600080fd5b611c6784823560208401612109565b80356001600160801b038116811461204157600080fd5b803567ffffffffffffffff8116811461204157600080fd5b6000806000806080858703121561220d57600080fd5b612216856120c7565b9350612224602086016121c8565b9250612232604086016121df565b9150612240606086016121df565b905092959194509250565b6000806040838503121561225e57600080fd5b6122678361202a565b91506020830135801515811461227c57600080fd5b809150509250929050565b60006020828403121561229957600080fd5b611f9f826121c8565b600080600080608085870312156122b857600080fd5b6122c18561202a565b93506122cf6020860161202a565b925060408501359150606085013567ffffffffffffffff8111156122f257600080fd5b8501601f8101871361230357600080fd5b61231287823560208401612109565b91505092959194509250565b6000806040838503121561233157600080fd5b61233a8361202a565b91506123486020840161202a565b90509250929050565b60008060006040848603121561236657600080fd5b833567ffffffffffffffff8082111561237e57600080fd5b818601915086601f83011261239257600080fd5b8135818111156123a157600080fd5b8760208260051b85010111156123b657600080fd5b6020928301955093506123cc91860190506120c7565b90509250925092565b600181811c908216806123e957607f821691505b6020821081141561240a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052600160045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561245657612456612426565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826124805761248061245b565b500490565b6000821982111561249857612498612426565b500190565b600081516124af818560208601611fa6565b9290920192915050565b600080845481600182811c9150808316806124d557607f831692505b60208084108214156124f557634e487b7160e01b86526022600452602486fd5b818015612509576001811461251a57612547565b60ff19861689528489019650612547565b60008b81526020902060005b8681101561253f5781548b820152908501908301612526565b505084890196505b505050505050612557818561249d565b95945050505050565b634e487b7160e01b600052603260045260246000fd5b600060001982141561258a5761258a612426565b5060010190565b60006001600160801b038083168185168083038211156125b3576125b3612426565b01949350505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526125ee6080830184611fd2565b9695505050505050565b60006020828403121561260a57600080fd5b8151611f9f81611f6c565b60008282101561262757612627612426565b500390565b60008261263b5761263b61245b565b50069056fe4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a2646970667358221220be4e810b2f3f137b69491cd5e62c6a4cdfa5bcd36198391a0447e6c1599ef38764736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000621537d8
-----Decoded View---------------
Arg [0] : releaseTimestamp (uint128): 1645557720
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000621537d8
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.