Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
5,000 PASS
Holders
95
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1,077 PASSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PASS
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/utils/Strings.sol"; import "erc721a/contracts/ERC721A.sol"; contract PASS is ERC721A { using Strings for uint256; address public _owner; bool public _isSaleActive = false; bool public _revealed = false; // Gduck basic info uint256 public maxSupply; uint256 public firstRoundPrice = 0.08 ether; uint256 public secondRoundPrice = 0.13 ether; address private teamHolder; string public baseURI = ""; string public notRevealedUri; uint256 public roundOneStartTime; uint256 public roundTwoStartTime; uint256 public mintEndTime; uint256 public roundOneAmount; uint256 public roundTwoAmount; mapping(uint256 => string) private _tokenURIs; mapping(address => bool) private adminAddressList; modifier onlyOwner() { require(msg.sender == _owner, "only owner"); _; } event setAdmin(address _newAdminAddress); constructor( uint256 _roundOneStartTime, uint256 _roundTwoStartTime, uint256 _mintEndTime, uint256 _roundOneAmount, uint256 _roundTwoAmount, address _teamHolder, string memory _notRevealedUri, address _adminAddress ) ERC721A("Spola PASS", "PASS") { require( _roundTwoStartTime > _roundOneStartTime, "round two must be bigger than round one" ); require( _mintEndTime > _roundTwoStartTime, "end time must be bigger than round two" ); roundOneStartTime = _roundOneStartTime; roundTwoStartTime = _roundTwoStartTime; mintEndTime = _mintEndTime; notRevealedUri = _notRevealedUri; maxSupply = _roundOneAmount + _roundTwoAmount; roundOneAmount = _roundOneAmount; roundTwoAmount = _roundTwoAmount; _owner = _adminAddress; teamHolder = _teamHolder; _isSaleActive = true; } function getPrice() internal view returns (uint256) { uint256 _now = block.timestamp; if (_now < roundTwoStartTime) { return firstRoundPrice; } else { return secondRoundPrice; } } function mintFirstRound(uint256 tokenQuantity) public payable { require(_isSaleActive, "Not Active"); require(tokenQuantity > 0, "Quantity must bigger than zero"); require(totalSupply() + tokenQuantity <= roundOneAmount, "Exceed Max"); require(block.timestamp > roundOneStartTime, "Round One not start"); require(block.timestamp < roundTwoStartTime, "Round One was over"); uint256 basicPrice = getPrice(); uint256 price = tokenQuantity * basicPrice; require(msg.value >= price, "Not Enough ETH"); _mint(msg.sender, tokenQuantity); } function mintSecondRound(uint256 tokenQuantity) public payable { require(_isSaleActive, "Not Active"); require(tokenQuantity > 0, "Quantity must bigger than zero"); require(totalSupply() + tokenQuantity <= maxSupply, "Exceed Max"); require(block.timestamp > roundTwoStartTime, "Round One not over"); require(block.timestamp < mintEndTime, "Round Two was over"); uint256 basicPrice = getPrice(); uint256 price = tokenQuantity * basicPrice; require(msg.value >= price, "Not Enough ETH"); _mint(msg.sender, tokenQuantity); } function adminMint(uint256 tokenQuantity,address _to) external onlyOwner { require(totalSupply() + tokenQuantity <= maxSupply, "Exceed Max"); require(tokenQuantity <= 50, "Exceed Max Mint"); _mint(_to, tokenQuantity); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "Not Exist"); if (_revealed == false) { return notRevealedUri; } return string(abi.encodePacked(baseURI, "/", tokenId.toString(), ".json")); } function openBox(string memory _newBaseURI) external onlyOwner { uint256 amount = maxSupply - totalSupply(); if (amount > 0) { _mint(teamHolder, amount); } setReveal(true); setBaseURI(_newBaseURI); } //Setting functions function setSaleActive(bool _activeType) public onlyOwner { _isSaleActive = _activeType; } function setReveal(bool _revealedType) public onlyOwner { _revealed = _revealedType; } // time and price function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner { notRevealedUri = _notRevealedURI; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function withdraw(address to) public onlyOwner { uint256 balance = address(this).balance; if (balance > 0) { payable(to).transfer(balance); } } //admin function setAdminInfo(address _addr) external onlyOwner { _owner = _addr; emit setAdmin(_addr); } function setTeamHolder(address _addr) external onlyOwner { teamHolder = _addr; } }
// 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 // ERC721A Contracts v4.2.2 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721A.sol'; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Reference type for token approval. struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // 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 {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ 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, _toString(tokenId))) : ''; } /** * @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, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @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) public virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @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) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @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. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // 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 { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @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 memory _data ) public virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `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`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ 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. * And also called after one token has been burned. * * `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` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @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 for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, 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. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // 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 { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 0x80 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80. str := add(mload(0x40), 0x80) // Update the free memory pointer to allocate. mstore(0x40, str) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.2.2 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @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, bytes calldata data ) external; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` 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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); // ============================================================= // IERC721Metadata // ============================================================= /** * @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); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_roundOneStartTime","type":"uint256"},{"internalType":"uint256","name":"_roundTwoStartTime","type":"uint256"},{"internalType":"uint256","name":"_mintEndTime","type":"uint256"},{"internalType":"uint256","name":"_roundOneAmount","type":"uint256"},{"internalType":"uint256","name":"_roundTwoAmount","type":"uint256"},{"internalType":"address","name":"_teamHolder","type":"address"},{"internalType":"string","name":"_notRevealedUri","type":"string"},{"internalType":"address","name":"_adminAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_newAdminAddress","type":"address"}],"name":"setAdmin","type":"event"},{"inputs":[],"name":"_isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"firstRoundPrice","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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"}],"name":"mintFirstRound","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"}],"name":"mintSecondRound","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"openBox","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"roundOneAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"roundOneStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"roundTwoAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"roundTwoStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"secondRoundPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"setAdminInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_revealedType","type":"bool"}],"name":"setReveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_activeType","type":"bool"}],"name":"setSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"setTeamHolder","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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600860146101000a81548160ff0219169083151502179055506000600860156101000a81548160ff02191690831515021790555067011c37937e080000600a556701cdda4faccd0000600b5560405180602001604052806000815250600d908051906020019062000079929190620002ed565b503480156200008757600080fd5b50604051620041f6380380620041f68339818101604052810190620000ad91906200043d565b6040518060400160405280600a81526020017f53706f6c612050415353000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f5041535300000000000000000000000000000000000000000000000000000000815250816002908051906020019062000131929190620002ed565b5080600390805190602001906200014a929190620002ed565b506200015b620002e860201b60201c565b6000819055505050878711620001a8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200019f9062000567565b60405180910390fd5b868611620001ed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001e49062000589565b60405180910390fd5b87600f81905550866010819055508560118190555081600e90805190602001906200021a929190620002ed565b5083856200022991906200061b565b600981905550846012819055508360138190555080600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600860146101000a81548160ff0219169083151502179055505050505050505050620008c8565b600090565b828054620002fb90620006ec565b90600052602060002090601f0160209004810192826200031f57600085556200036b565b82601f106200033a57805160ff19168380011785556200036b565b828001600101855582156200036b579182015b828111156200036a5782518255916020019190600101906200034d565b5b5090506200037a91906200037e565b5090565b5b80821115620003995760008160009055506001016200037f565b5090565b6000620003b4620003ae84620005d4565b620005ab565b905082815260208101848484011115620003cd57600080fd5b620003da848285620006b6565b509392505050565b600081519050620003f38162000894565b92915050565b600082601f8301126200040b57600080fd5b81516200041d8482602086016200039d565b91505092915050565b6000815190506200043781620008ae565b92915050565b600080600080600080600080610100898b0312156200045b57600080fd5b60006200046b8b828c0162000426565b98505060206200047e8b828c0162000426565b9750506040620004918b828c0162000426565b9650506060620004a48b828c0162000426565b9550506080620004b78b828c0162000426565b94505060a0620004ca8b828c01620003e2565b93505060c089015167ffffffffffffffff811115620004e857600080fd5b620004f68b828c01620003f9565b92505060e0620005098b828c01620003e2565b9150509295985092959890939650565b6000620005286027836200060a565b91506200053582620007f6565b604082019050919050565b60006200054f6026836200060a565b91506200055c8262000845565b604082019050919050565b60006020820190508181036000830152620005828162000519565b9050919050565b60006020820190508181036000830152620005a48162000540565b9050919050565b6000620005b7620005ca565b9050620005c5828262000722565b919050565b6000604051905090565b600067ffffffffffffffff821115620005f257620005f1620007b6565b5b620005fd82620007e5565b9050602081019050919050565b600082825260208201905092915050565b60006200062882620006ac565b91506200063583620006ac565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200066d576200066c62000758565b5b828201905092915050565b600062000685826200068c565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620006d6578082015181840152602081019050620006b9565b83811115620006e6576000848401525b50505050565b600060028204905060018216806200070557607f821691505b602082108114156200071c576200071b62000787565b5b50919050565b6200072d82620007e5565b810181811067ffffffffffffffff821117156200074f576200074e620007b6565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f726f756e642074776f206d75737420626520626967676572207468616e20726f60008201527f756e64206f6e6500000000000000000000000000000000000000000000000000602082015250565b7f656e642074696d65206d75737420626520626967676572207468616e20726f7560008201527f6e642074776f0000000000000000000000000000000000000000000000000000602082015250565b6200089f8162000678565b8114620008ab57600080fd5b50565b620008b981620006ac565b8114620008c557600080fd5b50565b61391e80620008d86000396000f3fe6080604052600436106102255760003560e01c8063717a002b11610123578063b5f918ff116100ab578063d5abeb011161006f578063d5abeb01146107d9578063d9bc596914610804578063e6fc9f001461082d578063e985e9c514610858578063f2c4ce1e1461089557610225565b8063b5f918ff14610701578063b7d9d7b91461072c578063b88d4fde14610757578063c87b56dd14610780578063d155fc7e146107bd57610225565b806395d89b41116100f257806395d89b411461062e578063a13fc6fe14610659578063a22cb46514610684578063b2bdfa7b146106ad578063b3762397146106d857610225565b8063717a002b1461059357806382efdf2a146105be578063841718a6146105e957806393d34cc01461061257610225565b80632752be3a116101b15780636352211e116101755780636352211e146104985780636c0360eb146104d55780636ebeac85146105005780637080d6fc1461052b57806370a082311461055657610225565b80632752be3a146103cb5780632a3f300c146103f457806342842e0e1461041d57806351cff8d91461044657806355f804b31461046f57610225565b8063095ea7b3116101f8578063095ea7b3146102fa5780630dc28efe1461032357806318160ddd1461034c57806323696ed41461037757806323b872dd146103a257610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063081c8c44146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190612bbc565b6108be565b60405161025e919061306b565b60405180910390f35b34801561027357600080fd5b5061027c610950565b6040516102899190613086565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190612c4f565b6109e2565b6040516102c69190613004565b60405180910390f35b3480156102db57600080fd5b506102e4610a61565b6040516102f19190613086565b60405180910390f35b34801561030657600080fd5b50610321600480360381019061031c9190612b57565b610aef565b005b34801561032f57600080fd5b5061034a60048036038101906103459190612c78565b610c33565b005b34801561035857600080fd5b50610361610d6c565b60405161036e9190613208565b60405180910390f35b34801561038357600080fd5b5061038c610d83565b6040516103999190613208565b60405180910390f35b3480156103ae57600080fd5b506103c960048036038101906103c49190612a51565b610d89565b005b3480156103d757600080fd5b506103f260048036038101906103ed9190612c0e565b6110ae565b005b34801561040057600080fd5b5061041b60048036038101906104169190612b93565b6111a4565b005b34801561042957600080fd5b50610444600480360381019061043f9190612a51565b611251565b005b34801561045257600080fd5b5061046d600480360381019061046891906129ec565b611271565b005b34801561047b57600080fd5b5061049660048036038101906104919190612c0e565b61135b565b005b3480156104a457600080fd5b506104bf60048036038101906104ba9190612c4f565b611405565b6040516104cc9190613004565b60405180910390f35b3480156104e157600080fd5b506104ea611417565b6040516104f79190613086565b60405180910390f35b34801561050c57600080fd5b506105156114a5565b604051610522919061306b565b60405180910390f35b34801561053757600080fd5b506105406114b8565b60405161054d919061306b565b60405180910390f35b34801561056257600080fd5b5061057d600480360381019061057891906129ec565b6114cb565b60405161058a9190613208565b60405180910390f35b34801561059f57600080fd5b506105a8611584565b6040516105b59190613208565b60405180910390f35b3480156105ca57600080fd5b506105d361158a565b6040516105e09190613208565b60405180910390f35b3480156105f557600080fd5b50610610600480360381019061060b9190612b93565b611590565b005b61062c60048036038101906106279190612c4f565b61163d565b005b34801561063a57600080fd5b5061064361181c565b6040516106509190613086565b60405180910390f35b34801561066557600080fd5b5061066e6118ae565b60405161067b9190613208565b60405180910390f35b34801561069057600080fd5b506106ab60048036038101906106a69190612b1b565b6118b4565b005b3480156106b957600080fd5b506106c2611a2c565b6040516106cf9190613004565b60405180910390f35b3480156106e457600080fd5b506106ff60048036038101906106fa91906129ec565b611a52565b005b34801561070d57600080fd5b50610716611b26565b6040516107239190613208565b60405180910390f35b34801561073857600080fd5b50610741611b2c565b60405161074e9190613208565b60405180910390f35b34801561076357600080fd5b5061077e60048036038101906107799190612aa0565b611b32565b005b34801561078c57600080fd5b506107a760048036038101906107a29190612c4f565b611ba5565b6040516107b49190613086565b60405180910390f35b6107d760048036038101906107d29190612c4f565b611cd0565b005b3480156107e557600080fd5b506107ee611eaf565b6040516107fb9190613208565b60405180910390f35b34801561081057600080fd5b5061082b600480360381019061082691906129ec565b611eb5565b005b34801561083957600080fd5b50610842611fc0565b60405161084f9190613208565b60405180910390f35b34801561086457600080fd5b5061087f600480360381019061087a9190612a15565b611fc6565b60405161088c919061306b565b60405180910390f35b3480156108a157600080fd5b506108bc60048036038101906108b79190612c0e565b61205a565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109495750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461095f906134cd565b80601f016020809104026020016040519081016040528092919081815260200182805461098b906134cd565b80156109d85780601f106109ad576101008083540402835291602001916109d8565b820191906000526020600020905b8154815290600101906020018083116109bb57829003601f168201915b5050505050905090565b60006109ed82612104565b610a23576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600e8054610a6e906134cd565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9a906134cd565b8015610ae75780601f10610abc57610100808354040283529160200191610ae7565b820191906000526020600020905b815481529060010190602001808311610aca57829003601f168201915b505050505081565b6000610afa82611405565b90508073ffffffffffffffffffffffffffffffffffffffff16610b1b612163565b73ffffffffffffffffffffffffffffffffffffffff1614610b7e57610b4781610b42612163565b611fc6565b610b7d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610cc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cba906131a8565b60405180910390fd5b60095482610ccf610d6c565b610cd99190613302565b1115610d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d11906130c8565b60405180910390fd5b6032821115610d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d55906130e8565b60405180910390fd5b610d68818361216b565b5050565b6000610d76612328565b6001546000540303905090565b60105481565b6000610d948261232d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610dfb576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610e07846123fb565b91509150610e1d8187610e18612163565b612422565b610e6957610e3286610e2d612163565b611fc6565b610e68576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610ed0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610edd8686866001612466565b8015610ee857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610fb685610f9288888761246c565b7c020000000000000000000000000000000000000000000000000000000017612494565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416141561103e57600060018501905060006004600083815260200190815260200160002054141561103c57600054811461103b578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110a686868660016124bf565b505050505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461113e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611135906131a8565b60405180910390fd5b6000611148610d6c565b60095461115591906133e3565b9050600081111561118d5761118c600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168261216b565b5b61119760016111a4565b6111a08261135b565b5050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122b906131a8565b60405180910390fd5b80600860156101000a81548160ff02191690831515021790555050565b61126c83838360405180602001604052806000815250611b32565b505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f8906131a8565b60405180910390fd5b60004790506000811115611357578173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611355573d6000803e3d6000fd5b505b5050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146113eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e2906131a8565b60405180910390fd5b80600d9080519060200190611401929190612810565b5050565b60006114108261232d565b9050919050565b600d8054611424906134cd565b80601f0160208091040260200160405190810160405280929190818152602001828054611450906134cd565b801561149d5780601f106114725761010080835404028352916020019161149d565b820191906000526020600020905b81548152906001019060200180831161148057829003601f168201915b505050505081565b600860159054906101000a900460ff1681565b600860149054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611533576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b60115481565b600f5481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611620576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611617906131a8565b60405180910390fd5b80600860146101000a81548160ff02191690831515021790555050565b600860149054906101000a900460ff1661168c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168390613128565b60405180910390fd5b600081116116cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c6906131e8565b60405180910390fd5b600954816116db610d6c565b6116e59190613302565b1115611726576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171d906130c8565b60405180910390fd5b601054421161176a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176190613148565b60405180910390fd5b60115442106117ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a590613168565b60405180910390fd5b60006117b86124c5565b9050600081836117c89190613389565b90508034101561180d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180490613108565b60405180910390fd5b611817338461216b565b505050565b60606003805461182b906134cd565b80601f0160208091040260200160405190810160405280929190818152602001828054611857906134cd565b80156118a45780601f10611879576101008083540402835291602001916118a4565b820191906000526020600020905b81548152906001019060200180831161188757829003601f168201915b5050505050905090565b600b5481565b6118bc612163565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611921576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061192e612163565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119db612163565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a20919061306b565b60405180910390a35050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad9906131a8565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60125481565b60135481565b611b3d848484610d89565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b9f57611b68848484846124ea565b611b9e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611bb082612104565b611bef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be6906130a8565b60405180910390fd5b60001515600860159054906101000a900460ff1615151415611c9d57600e8054611c18906134cd565b80601f0160208091040260200160405190810160405280929190818152602001828054611c44906134cd565b8015611c915780601f10611c6657610100808354040283529160200191611c91565b820191906000526020600020905b815481529060010190602001808311611c7457829003601f168201915b50505050509050611ccb565b600d611ca88361264a565b604051602001611cb9929190612fca565b60405160208183030381529060405290505b919050565b600860149054906101000a900460ff16611d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1690613128565b60405180910390fd5b60008111611d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d59906131e8565b60405180910390fd5b60125481611d6e610d6c565b611d789190613302565b1115611db9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db0906130c8565b60405180910390fd5b600f544211611dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df490613188565b60405180910390fd5b6010544210611e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e38906131c8565b60405180910390fd5b6000611e4b6124c5565b905060008183611e5b9190613389565b905080341015611ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9790613108565b60405180910390fd5b611eaa338461216b565b505050565b60095481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611f45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3c906131a8565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f704b6c02682d329712ab11ef6312d46667fbdd78a5dc1aa406e65eec4d30cd5d81604051611fb59190613004565b60405180910390a150565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146120ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e1906131a8565b60405180910390fd5b80600e9080519060200190612100929190612810565b5050565b60008161210f612328565b1115801561211e575060005482105b801561215c575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60008054905060008214156121ac576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121b96000848385612466565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061223083612221600086600061246c565b61222a856127f7565b17612494565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146122d157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612296565b50600082141561230d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061232360008483856124bf565b505050565b600090565b6000808290508061233c612328565b116123c4576000548110156123c35760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156123c1575b60008114156123b757600460008360019003935083815260200190815260200160002054905061238c565b80925050506123f6565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612483868684612807565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000804290506010548110156124e057600a549150506124e7565b600b549150505b90565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612510612163565b8786866040518563ffffffff1660e01b8152600401612532949392919061301f565b602060405180830381600087803b15801561254c57600080fd5b505af192505050801561257d57506040513d601f19601f8201168201806040525081019061257a9190612be5565b60015b6125f7573d80600081146125ad576040519150601f19603f3d011682016040523d82523d6000602084013e6125b2565b606091505b506000815114156125ef576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612692576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127f2565b600082905060005b600082146126c45780806126ad90613530565b915050600a826126bd9190613358565b915061269a565b60008167ffffffffffffffff811115612706577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156127385781602001600182028036833780820191505090505b5090505b600085146127eb5760018261275191906133e3565b9150600a856127609190613579565b603061276c9190613302565b60f81b8183815181106127a8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127e49190613358565b945061273c565b8093505050505b919050565b60006001821460e11b9050919050565b60009392505050565b82805461281c906134cd565b90600052602060002090601f01602090048101928261283e5760008555612885565b82601f1061285757805160ff1916838001178555612885565b82800160010185558215612885579182015b82811115612884578251825591602001919060010190612869565b5b5090506128929190612896565b5090565b5b808211156128af576000816000905550600101612897565b5090565b60006128c66128c184613248565b613223565b9050828152602081018484840111156128de57600080fd5b6128e984828561348b565b509392505050565b60006129046128ff84613279565b613223565b90508281526020810184848401111561291c57600080fd5b61292784828561348b565b509392505050565b60008135905061293e8161388c565b92915050565b600081359050612953816138a3565b92915050565b600081359050612968816138ba565b92915050565b60008151905061297d816138ba565b92915050565b600082601f83011261299457600080fd5b81356129a48482602086016128b3565b91505092915050565b600082601f8301126129be57600080fd5b81356129ce8482602086016128f1565b91505092915050565b6000813590506129e6816138d1565b92915050565b6000602082840312156129fe57600080fd5b6000612a0c8482850161292f565b91505092915050565b60008060408385031215612a2857600080fd5b6000612a368582860161292f565b9250506020612a478582860161292f565b9150509250929050565b600080600060608486031215612a6657600080fd5b6000612a748682870161292f565b9350506020612a858682870161292f565b9250506040612a96868287016129d7565b9150509250925092565b60008060008060808587031215612ab657600080fd5b6000612ac48782880161292f565b9450506020612ad58782880161292f565b9350506040612ae6878288016129d7565b925050606085013567ffffffffffffffff811115612b0357600080fd5b612b0f87828801612983565b91505092959194509250565b60008060408385031215612b2e57600080fd5b6000612b3c8582860161292f565b9250506020612b4d85828601612944565b9150509250929050565b60008060408385031215612b6a57600080fd5b6000612b788582860161292f565b9250506020612b89858286016129d7565b9150509250929050565b600060208284031215612ba557600080fd5b6000612bb384828501612944565b91505092915050565b600060208284031215612bce57600080fd5b6000612bdc84828501612959565b91505092915050565b600060208284031215612bf757600080fd5b6000612c058482850161296e565b91505092915050565b600060208284031215612c2057600080fd5b600082013567ffffffffffffffff811115612c3a57600080fd5b612c46848285016129ad565b91505092915050565b600060208284031215612c6157600080fd5b6000612c6f848285016129d7565b91505092915050565b60008060408385031215612c8b57600080fd5b6000612c99858286016129d7565b9250506020612caa8582860161292f565b9150509250929050565b612cbd81613417565b82525050565b612ccc81613429565b82525050565b6000612cdd826132bf565b612ce781856132d5565b9350612cf781856020860161349a565b612d0081613666565b840191505092915050565b6000612d16826132ca565b612d2081856132e6565b9350612d3081856020860161349a565b612d3981613666565b840191505092915050565b6000612d4f826132ca565b612d5981856132f7565b9350612d6981856020860161349a565b80840191505092915050565b60008154612d82816134cd565b612d8c81866132f7565b94506001821660008114612da75760018114612db857612deb565b60ff19831686528186019350612deb565b612dc1856132aa565b60005b83811015612de357815481890152600182019150602081019050612dc4565b838801955050505b50505092915050565b6000612e016009836132e6565b9150612e0c82613677565b602082019050919050565b6000612e24600a836132e6565b9150612e2f826136a0565b602082019050919050565b6000612e47600f836132e6565b9150612e52826136c9565b602082019050919050565b6000612e6a600e836132e6565b9150612e75826136f2565b602082019050919050565b6000612e8d600a836132e6565b9150612e988261371b565b602082019050919050565b6000612eb06012836132e6565b9150612ebb82613744565b602082019050919050565b6000612ed36012836132e6565b9150612ede8261376d565b602082019050919050565b6000612ef66013836132e6565b9150612f0182613796565b602082019050919050565b6000612f196005836132f7565b9150612f24826137bf565b600582019050919050565b6000612f3c600a836132e6565b9150612f47826137e8565b602082019050919050565b6000612f5f6012836132e6565b9150612f6a82613811565b602082019050919050565b6000612f82601e836132e6565b9150612f8d8261383a565b602082019050919050565b6000612fa56001836132f7565b9150612fb082613863565b600182019050919050565b612fc481613481565b82525050565b6000612fd68285612d75565b9150612fe182612f98565b9150612fed8284612d44565b9150612ff882612f0c565b91508190509392505050565b60006020820190506130196000830184612cb4565b92915050565b60006080820190506130346000830187612cb4565b6130416020830186612cb4565b61304e6040830185612fbb565b81810360608301526130608184612cd2565b905095945050505050565b60006020820190506130806000830184612cc3565b92915050565b600060208201905081810360008301526130a08184612d0b565b905092915050565b600060208201905081810360008301526130c181612df4565b9050919050565b600060208201905081810360008301526130e181612e17565b9050919050565b6000602082019050818103600083015261310181612e3a565b9050919050565b6000602082019050818103600083015261312181612e5d565b9050919050565b6000602082019050818103600083015261314181612e80565b9050919050565b6000602082019050818103600083015261316181612ea3565b9050919050565b6000602082019050818103600083015261318181612ec6565b9050919050565b600060208201905081810360008301526131a181612ee9565b9050919050565b600060208201905081810360008301526131c181612f2f565b9050919050565b600060208201905081810360008301526131e181612f52565b9050919050565b6000602082019050818103600083015261320181612f75565b9050919050565b600060208201905061321d6000830184612fbb565b92915050565b600061322d61323e565b905061323982826134ff565b919050565b6000604051905090565b600067ffffffffffffffff82111561326357613262613637565b5b61326c82613666565b9050602081019050919050565b600067ffffffffffffffff82111561329457613293613637565b5b61329d82613666565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061330d82613481565b915061331883613481565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561334d5761334c6135aa565b5b828201905092915050565b600061336382613481565b915061336e83613481565b92508261337e5761337d6135d9565b5b828204905092915050565b600061339482613481565b915061339f83613481565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156133d8576133d76135aa565b5b828202905092915050565b60006133ee82613481565b91506133f983613481565b92508282101561340c5761340b6135aa565b5b828203905092915050565b600061342282613461565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156134b857808201518184015260208101905061349d565b838111156134c7576000848401525b50505050565b600060028204905060018216806134e557607f821691505b602082108114156134f9576134f8613608565b5b50919050565b61350882613666565b810181811067ffffffffffffffff8211171561352757613526613637565b5b80604052505050565b600061353b82613481565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561356e5761356d6135aa565b5b600182019050919050565b600061358482613481565b915061358f83613481565b92508261359f5761359e6135d9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4e6f742045786973740000000000000000000000000000000000000000000000600082015250565b7f457863656564204d617800000000000000000000000000000000000000000000600082015250565b7f457863656564204d6178204d696e740000000000000000000000000000000000600082015250565b7f4e6f7420456e6f75676820455448000000000000000000000000000000000000600082015250565b7f4e6f742041637469766500000000000000000000000000000000000000000000600082015250565b7f526f756e64204f6e65206e6f74206f7665720000000000000000000000000000600082015250565b7f526f756e642054776f20776173206f7665720000000000000000000000000000600082015250565b7f526f756e64204f6e65206e6f7420737461727400000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f6f6e6c79206f776e657200000000000000000000000000000000000000000000600082015250565b7f526f756e64204f6e6520776173206f7665720000000000000000000000000000600082015250565b7f5175616e74697479206d75737420626967676572207468616e207a65726f0000600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b61389581613417565b81146138a057600080fd5b50565b6138ac81613429565b81146138b757600080fd5b50565b6138c381613435565b81146138ce57600080fd5b50565b6138da81613481565b81146138e557600080fd5b5056fea2646970667358221220554ecff10db3e0f5fdb6e56f5d8b36c9bbebed4620442467eb3f292e48a8563f64736f6c63430008040033000000000000000000000000000000000000000000000000000000006366180000000000000000000000000000000000000000000000000000000000636a0c8000000000000000000000000000000000000000000000000000000000636caf800000000000000000000000000000000000000000000000000000000000000fa000000000000000000000000000000000000000000000000000000000000003e80000000000000000000000008bf06bce5283e0a3eec0274bee151c4423cd250200000000000000000000000000000000000000000000000000000000000001000000000000000000000000008bf06bce5283e0a3eec0274bee151c4423cd25020000000000000000000000000000000000000000000000000000000000000042697066733a2f2f6261666b726569666d717069646b6d3662646a6c696c326c76646b717274626d376b653469613679786861706766366a6477727665656c73636834000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102255760003560e01c8063717a002b11610123578063b5f918ff116100ab578063d5abeb011161006f578063d5abeb01146107d9578063d9bc596914610804578063e6fc9f001461082d578063e985e9c514610858578063f2c4ce1e1461089557610225565b8063b5f918ff14610701578063b7d9d7b91461072c578063b88d4fde14610757578063c87b56dd14610780578063d155fc7e146107bd57610225565b806395d89b41116100f257806395d89b411461062e578063a13fc6fe14610659578063a22cb46514610684578063b2bdfa7b146106ad578063b3762397146106d857610225565b8063717a002b1461059357806382efdf2a146105be578063841718a6146105e957806393d34cc01461061257610225565b80632752be3a116101b15780636352211e116101755780636352211e146104985780636c0360eb146104d55780636ebeac85146105005780637080d6fc1461052b57806370a082311461055657610225565b80632752be3a146103cb5780632a3f300c146103f457806342842e0e1461041d57806351cff8d91461044657806355f804b31461046f57610225565b8063095ea7b3116101f8578063095ea7b3146102fa5780630dc28efe1461032357806318160ddd1461034c57806323696ed41461037757806323b872dd146103a257610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063081c8c44146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190612bbc565b6108be565b60405161025e919061306b565b60405180910390f35b34801561027357600080fd5b5061027c610950565b6040516102899190613086565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190612c4f565b6109e2565b6040516102c69190613004565b60405180910390f35b3480156102db57600080fd5b506102e4610a61565b6040516102f19190613086565b60405180910390f35b34801561030657600080fd5b50610321600480360381019061031c9190612b57565b610aef565b005b34801561032f57600080fd5b5061034a60048036038101906103459190612c78565b610c33565b005b34801561035857600080fd5b50610361610d6c565b60405161036e9190613208565b60405180910390f35b34801561038357600080fd5b5061038c610d83565b6040516103999190613208565b60405180910390f35b3480156103ae57600080fd5b506103c960048036038101906103c49190612a51565b610d89565b005b3480156103d757600080fd5b506103f260048036038101906103ed9190612c0e565b6110ae565b005b34801561040057600080fd5b5061041b60048036038101906104169190612b93565b6111a4565b005b34801561042957600080fd5b50610444600480360381019061043f9190612a51565b611251565b005b34801561045257600080fd5b5061046d600480360381019061046891906129ec565b611271565b005b34801561047b57600080fd5b5061049660048036038101906104919190612c0e565b61135b565b005b3480156104a457600080fd5b506104bf60048036038101906104ba9190612c4f565b611405565b6040516104cc9190613004565b60405180910390f35b3480156104e157600080fd5b506104ea611417565b6040516104f79190613086565b60405180910390f35b34801561050c57600080fd5b506105156114a5565b604051610522919061306b565b60405180910390f35b34801561053757600080fd5b506105406114b8565b60405161054d919061306b565b60405180910390f35b34801561056257600080fd5b5061057d600480360381019061057891906129ec565b6114cb565b60405161058a9190613208565b60405180910390f35b34801561059f57600080fd5b506105a8611584565b6040516105b59190613208565b60405180910390f35b3480156105ca57600080fd5b506105d361158a565b6040516105e09190613208565b60405180910390f35b3480156105f557600080fd5b50610610600480360381019061060b9190612b93565b611590565b005b61062c60048036038101906106279190612c4f565b61163d565b005b34801561063a57600080fd5b5061064361181c565b6040516106509190613086565b60405180910390f35b34801561066557600080fd5b5061066e6118ae565b60405161067b9190613208565b60405180910390f35b34801561069057600080fd5b506106ab60048036038101906106a69190612b1b565b6118b4565b005b3480156106b957600080fd5b506106c2611a2c565b6040516106cf9190613004565b60405180910390f35b3480156106e457600080fd5b506106ff60048036038101906106fa91906129ec565b611a52565b005b34801561070d57600080fd5b50610716611b26565b6040516107239190613208565b60405180910390f35b34801561073857600080fd5b50610741611b2c565b60405161074e9190613208565b60405180910390f35b34801561076357600080fd5b5061077e60048036038101906107799190612aa0565b611b32565b005b34801561078c57600080fd5b506107a760048036038101906107a29190612c4f565b611ba5565b6040516107b49190613086565b60405180910390f35b6107d760048036038101906107d29190612c4f565b611cd0565b005b3480156107e557600080fd5b506107ee611eaf565b6040516107fb9190613208565b60405180910390f35b34801561081057600080fd5b5061082b600480360381019061082691906129ec565b611eb5565b005b34801561083957600080fd5b50610842611fc0565b60405161084f9190613208565b60405180910390f35b34801561086457600080fd5b5061087f600480360381019061087a9190612a15565b611fc6565b60405161088c919061306b565b60405180910390f35b3480156108a157600080fd5b506108bc60048036038101906108b79190612c0e565b61205a565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109495750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461095f906134cd565b80601f016020809104026020016040519081016040528092919081815260200182805461098b906134cd565b80156109d85780601f106109ad576101008083540402835291602001916109d8565b820191906000526020600020905b8154815290600101906020018083116109bb57829003601f168201915b5050505050905090565b60006109ed82612104565b610a23576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600e8054610a6e906134cd565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9a906134cd565b8015610ae75780601f10610abc57610100808354040283529160200191610ae7565b820191906000526020600020905b815481529060010190602001808311610aca57829003601f168201915b505050505081565b6000610afa82611405565b90508073ffffffffffffffffffffffffffffffffffffffff16610b1b612163565b73ffffffffffffffffffffffffffffffffffffffff1614610b7e57610b4781610b42612163565b611fc6565b610b7d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610cc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cba906131a8565b60405180910390fd5b60095482610ccf610d6c565b610cd99190613302565b1115610d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d11906130c8565b60405180910390fd5b6032821115610d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d55906130e8565b60405180910390fd5b610d68818361216b565b5050565b6000610d76612328565b6001546000540303905090565b60105481565b6000610d948261232d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610dfb576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610e07846123fb565b91509150610e1d8187610e18612163565b612422565b610e6957610e3286610e2d612163565b611fc6565b610e68576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610ed0576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610edd8686866001612466565b8015610ee857600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610fb685610f9288888761246c565b7c020000000000000000000000000000000000000000000000000000000017612494565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416141561103e57600060018501905060006004600083815260200190815260200160002054141561103c57600054811461103b578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110a686868660016124bf565b505050505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461113e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611135906131a8565b60405180910390fd5b6000611148610d6c565b60095461115591906133e3565b9050600081111561118d5761118c600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168261216b565b5b61119760016111a4565b6111a08261135b565b5050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122b906131a8565b60405180910390fd5b80600860156101000a81548160ff02191690831515021790555050565b61126c83838360405180602001604052806000815250611b32565b505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f8906131a8565b60405180910390fd5b60004790506000811115611357578173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611355573d6000803e3d6000fd5b505b5050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146113eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e2906131a8565b60405180910390fd5b80600d9080519060200190611401929190612810565b5050565b60006114108261232d565b9050919050565b600d8054611424906134cd565b80601f0160208091040260200160405190810160405280929190818152602001828054611450906134cd565b801561149d5780601f106114725761010080835404028352916020019161149d565b820191906000526020600020905b81548152906001019060200180831161148057829003601f168201915b505050505081565b600860159054906101000a900460ff1681565b600860149054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611533576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b60115481565b600f5481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611620576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611617906131a8565b60405180910390fd5b80600860146101000a81548160ff02191690831515021790555050565b600860149054906101000a900460ff1661168c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168390613128565b60405180910390fd5b600081116116cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c6906131e8565b60405180910390fd5b600954816116db610d6c565b6116e59190613302565b1115611726576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171d906130c8565b60405180910390fd5b601054421161176a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176190613148565b60405180910390fd5b60115442106117ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a590613168565b60405180910390fd5b60006117b86124c5565b9050600081836117c89190613389565b90508034101561180d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180490613108565b60405180910390fd5b611817338461216b565b505050565b60606003805461182b906134cd565b80601f0160208091040260200160405190810160405280929190818152602001828054611857906134cd565b80156118a45780601f10611879576101008083540402835291602001916118a4565b820191906000526020600020905b81548152906001019060200180831161188757829003601f168201915b5050505050905090565b600b5481565b6118bc612163565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611921576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061192e612163565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119db612163565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a20919061306b565b60405180910390a35050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad9906131a8565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60125481565b60135481565b611b3d848484610d89565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611b9f57611b68848484846124ea565b611b9e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611bb082612104565b611bef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be6906130a8565b60405180910390fd5b60001515600860159054906101000a900460ff1615151415611c9d57600e8054611c18906134cd565b80601f0160208091040260200160405190810160405280929190818152602001828054611c44906134cd565b8015611c915780601f10611c6657610100808354040283529160200191611c91565b820191906000526020600020905b815481529060010190602001808311611c7457829003601f168201915b50505050509050611ccb565b600d611ca88361264a565b604051602001611cb9929190612fca565b60405160208183030381529060405290505b919050565b600860149054906101000a900460ff16611d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1690613128565b60405180910390fd5b60008111611d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d59906131e8565b60405180910390fd5b60125481611d6e610d6c565b611d789190613302565b1115611db9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db0906130c8565b60405180910390fd5b600f544211611dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df490613188565b60405180910390fd5b6010544210611e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e38906131c8565b60405180910390fd5b6000611e4b6124c5565b905060008183611e5b9190613389565b905080341015611ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9790613108565b60405180910390fd5b611eaa338461216b565b505050565b60095481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611f45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3c906131a8565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f704b6c02682d329712ab11ef6312d46667fbdd78a5dc1aa406e65eec4d30cd5d81604051611fb59190613004565b60405180910390a150565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146120ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e1906131a8565b60405180910390fd5b80600e9080519060200190612100929190612810565b5050565b60008161210f612328565b1115801561211e575060005482105b801561215c575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60008054905060008214156121ac576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121b96000848385612466565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061223083612221600086600061246c565b61222a856127f7565b17612494565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146122d157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612296565b50600082141561230d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061232360008483856124bf565b505050565b600090565b6000808290508061233c612328565b116123c4576000548110156123c35760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156123c1575b60008114156123b757600460008360019003935083815260200190815260200160002054905061238c565b80925050506123f6565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612483868684612807565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000804290506010548110156124e057600a549150506124e7565b600b549150505b90565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612510612163565b8786866040518563ffffffff1660e01b8152600401612532949392919061301f565b602060405180830381600087803b15801561254c57600080fd5b505af192505050801561257d57506040513d601f19601f8201168201806040525081019061257a9190612be5565b60015b6125f7573d80600081146125ad576040519150601f19603f3d011682016040523d82523d6000602084013e6125b2565b606091505b506000815114156125ef576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612692576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506127f2565b600082905060005b600082146126c45780806126ad90613530565b915050600a826126bd9190613358565b915061269a565b60008167ffffffffffffffff811115612706577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156127385781602001600182028036833780820191505090505b5090505b600085146127eb5760018261275191906133e3565b9150600a856127609190613579565b603061276c9190613302565b60f81b8183815181106127a8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856127e49190613358565b945061273c565b8093505050505b919050565b60006001821460e11b9050919050565b60009392505050565b82805461281c906134cd565b90600052602060002090601f01602090048101928261283e5760008555612885565b82601f1061285757805160ff1916838001178555612885565b82800160010185558215612885579182015b82811115612884578251825591602001919060010190612869565b5b5090506128929190612896565b5090565b5b808211156128af576000816000905550600101612897565b5090565b60006128c66128c184613248565b613223565b9050828152602081018484840111156128de57600080fd5b6128e984828561348b565b509392505050565b60006129046128ff84613279565b613223565b90508281526020810184848401111561291c57600080fd5b61292784828561348b565b509392505050565b60008135905061293e8161388c565b92915050565b600081359050612953816138a3565b92915050565b600081359050612968816138ba565b92915050565b60008151905061297d816138ba565b92915050565b600082601f83011261299457600080fd5b81356129a48482602086016128b3565b91505092915050565b600082601f8301126129be57600080fd5b81356129ce8482602086016128f1565b91505092915050565b6000813590506129e6816138d1565b92915050565b6000602082840312156129fe57600080fd5b6000612a0c8482850161292f565b91505092915050565b60008060408385031215612a2857600080fd5b6000612a368582860161292f565b9250506020612a478582860161292f565b9150509250929050565b600080600060608486031215612a6657600080fd5b6000612a748682870161292f565b9350506020612a858682870161292f565b9250506040612a96868287016129d7565b9150509250925092565b60008060008060808587031215612ab657600080fd5b6000612ac48782880161292f565b9450506020612ad58782880161292f565b9350506040612ae6878288016129d7565b925050606085013567ffffffffffffffff811115612b0357600080fd5b612b0f87828801612983565b91505092959194509250565b60008060408385031215612b2e57600080fd5b6000612b3c8582860161292f565b9250506020612b4d85828601612944565b9150509250929050565b60008060408385031215612b6a57600080fd5b6000612b788582860161292f565b9250506020612b89858286016129d7565b9150509250929050565b600060208284031215612ba557600080fd5b6000612bb384828501612944565b91505092915050565b600060208284031215612bce57600080fd5b6000612bdc84828501612959565b91505092915050565b600060208284031215612bf757600080fd5b6000612c058482850161296e565b91505092915050565b600060208284031215612c2057600080fd5b600082013567ffffffffffffffff811115612c3a57600080fd5b612c46848285016129ad565b91505092915050565b600060208284031215612c6157600080fd5b6000612c6f848285016129d7565b91505092915050565b60008060408385031215612c8b57600080fd5b6000612c99858286016129d7565b9250506020612caa8582860161292f565b9150509250929050565b612cbd81613417565b82525050565b612ccc81613429565b82525050565b6000612cdd826132bf565b612ce781856132d5565b9350612cf781856020860161349a565b612d0081613666565b840191505092915050565b6000612d16826132ca565b612d2081856132e6565b9350612d3081856020860161349a565b612d3981613666565b840191505092915050565b6000612d4f826132ca565b612d5981856132f7565b9350612d6981856020860161349a565b80840191505092915050565b60008154612d82816134cd565b612d8c81866132f7565b94506001821660008114612da75760018114612db857612deb565b60ff19831686528186019350612deb565b612dc1856132aa565b60005b83811015612de357815481890152600182019150602081019050612dc4565b838801955050505b50505092915050565b6000612e016009836132e6565b9150612e0c82613677565b602082019050919050565b6000612e24600a836132e6565b9150612e2f826136a0565b602082019050919050565b6000612e47600f836132e6565b9150612e52826136c9565b602082019050919050565b6000612e6a600e836132e6565b9150612e75826136f2565b602082019050919050565b6000612e8d600a836132e6565b9150612e988261371b565b602082019050919050565b6000612eb06012836132e6565b9150612ebb82613744565b602082019050919050565b6000612ed36012836132e6565b9150612ede8261376d565b602082019050919050565b6000612ef66013836132e6565b9150612f0182613796565b602082019050919050565b6000612f196005836132f7565b9150612f24826137bf565b600582019050919050565b6000612f3c600a836132e6565b9150612f47826137e8565b602082019050919050565b6000612f5f6012836132e6565b9150612f6a82613811565b602082019050919050565b6000612f82601e836132e6565b9150612f8d8261383a565b602082019050919050565b6000612fa56001836132f7565b9150612fb082613863565b600182019050919050565b612fc481613481565b82525050565b6000612fd68285612d75565b9150612fe182612f98565b9150612fed8284612d44565b9150612ff882612f0c565b91508190509392505050565b60006020820190506130196000830184612cb4565b92915050565b60006080820190506130346000830187612cb4565b6130416020830186612cb4565b61304e6040830185612fbb565b81810360608301526130608184612cd2565b905095945050505050565b60006020820190506130806000830184612cc3565b92915050565b600060208201905081810360008301526130a08184612d0b565b905092915050565b600060208201905081810360008301526130c181612df4565b9050919050565b600060208201905081810360008301526130e181612e17565b9050919050565b6000602082019050818103600083015261310181612e3a565b9050919050565b6000602082019050818103600083015261312181612e5d565b9050919050565b6000602082019050818103600083015261314181612e80565b9050919050565b6000602082019050818103600083015261316181612ea3565b9050919050565b6000602082019050818103600083015261318181612ec6565b9050919050565b600060208201905081810360008301526131a181612ee9565b9050919050565b600060208201905081810360008301526131c181612f2f565b9050919050565b600060208201905081810360008301526131e181612f52565b9050919050565b6000602082019050818103600083015261320181612f75565b9050919050565b600060208201905061321d6000830184612fbb565b92915050565b600061322d61323e565b905061323982826134ff565b919050565b6000604051905090565b600067ffffffffffffffff82111561326357613262613637565b5b61326c82613666565b9050602081019050919050565b600067ffffffffffffffff82111561329457613293613637565b5b61329d82613666565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061330d82613481565b915061331883613481565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561334d5761334c6135aa565b5b828201905092915050565b600061336382613481565b915061336e83613481565b92508261337e5761337d6135d9565b5b828204905092915050565b600061339482613481565b915061339f83613481565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156133d8576133d76135aa565b5b828202905092915050565b60006133ee82613481565b91506133f983613481565b92508282101561340c5761340b6135aa565b5b828203905092915050565b600061342282613461565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156134b857808201518184015260208101905061349d565b838111156134c7576000848401525b50505050565b600060028204905060018216806134e557607f821691505b602082108114156134f9576134f8613608565b5b50919050565b61350882613666565b810181811067ffffffffffffffff8211171561352757613526613637565b5b80604052505050565b600061353b82613481565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561356e5761356d6135aa565b5b600182019050919050565b600061358482613481565b915061358f83613481565b92508261359f5761359e6135d9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4e6f742045786973740000000000000000000000000000000000000000000000600082015250565b7f457863656564204d617800000000000000000000000000000000000000000000600082015250565b7f457863656564204d6178204d696e740000000000000000000000000000000000600082015250565b7f4e6f7420456e6f75676820455448000000000000000000000000000000000000600082015250565b7f4e6f742041637469766500000000000000000000000000000000000000000000600082015250565b7f526f756e64204f6e65206e6f74206f7665720000000000000000000000000000600082015250565b7f526f756e642054776f20776173206f7665720000000000000000000000000000600082015250565b7f526f756e64204f6e65206e6f7420737461727400000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f6f6e6c79206f776e657200000000000000000000000000000000000000000000600082015250565b7f526f756e64204f6e6520776173206f7665720000000000000000000000000000600082015250565b7f5175616e74697479206d75737420626967676572207468616e207a65726f0000600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b61389581613417565b81146138a057600080fd5b50565b6138ac81613429565b81146138b757600080fd5b50565b6138c381613435565b81146138ce57600080fd5b50565b6138da81613481565b81146138e557600080fd5b5056fea2646970667358221220554ecff10db3e0f5fdb6e56f5d8b36c9bbebed4620442467eb3f292e48a8563f64736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000006366180000000000000000000000000000000000000000000000000000000000636a0c8000000000000000000000000000000000000000000000000000000000636caf800000000000000000000000000000000000000000000000000000000000000fa000000000000000000000000000000000000000000000000000000000000003e80000000000000000000000008bf06bce5283e0a3eec0274bee151c4423cd250200000000000000000000000000000000000000000000000000000000000001000000000000000000000000008bf06bce5283e0a3eec0274bee151c4423cd25020000000000000000000000000000000000000000000000000000000000000042697066733a2f2f6261666b726569666d717069646b6d3662646a6c696c326c76646b717274626d376b653469613679786861706766366a6477727665656c73636834000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _roundOneStartTime (uint256): 1667635200
Arg [1] : _roundTwoStartTime (uint256): 1667894400
Arg [2] : _mintEndTime (uint256): 1668067200
Arg [3] : _roundOneAmount (uint256): 4000
Arg [4] : _roundTwoAmount (uint256): 1000
Arg [5] : _teamHolder (address): 0x8Bf06bcE5283e0A3eEC0274BeE151C4423cd2502
Arg [6] : _notRevealedUri (string): ipfs://bafkreifmqpidkm6bdjlil2lvdkqrtbm7ke4ia6yxhapgf6jdwrveelsch4
Arg [7] : _adminAddress (address): 0x8Bf06bcE5283e0A3eEC0274BeE151C4423cd2502
-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000063661800
Arg [1] : 00000000000000000000000000000000000000000000000000000000636a0c80
Arg [2] : 00000000000000000000000000000000000000000000000000000000636caf80
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000fa0
Arg [4] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [5] : 0000000000000000000000008bf06bce5283e0a3eec0274bee151c4423cd2502
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [7] : 0000000000000000000000008bf06bce5283e0a3eec0274bee151c4423cd2502
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000042
Arg [9] : 697066733a2f2f6261666b726569666d717069646b6d3662646a6c696c326c76
Arg [10] : 646b717274626d376b653469613679786861706766366a6477727665656c7363
Arg [11] : 6834000000000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.