ERC-721
Overview
Max Total Supply
0 GOGLZEXE
Holders
1,124
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Balance
3 GOGLZEXELoading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
GogglesEXE
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
Yes with 1000000 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MITpragma solidity ^0.8.20;import "@openzeppelin/contracts/token/ERC721/ERC721.sol";import "@openzeppelin/contracts/token/common/ERC2981.sol";import "@openzeppelin/contracts/access/Ownable.sol";import "@openzeppelin/contracts/utils/ReentrancyGuard.sol";import "@openzeppelin/contracts/utils/Strings.sol";/*** @title GogglesEXE* @dev NFT contract for GOGGLES.EXE collection with whitelist and public sale functionality.*/contract GogglesEXE is ERC721, ERC2981, Ownable, ReentrancyGuard {using Strings for uint256;// ============ Custom Errors ============error SaleAlreadyActive();error SaleNotActive();error SaleAlreadyStarted();error WhitelistPeriodEnded();error NotEligibleForWhitelist();error WhitelistLimitReached();error WhitelistSupplyExhausted();error PublicSaleNotStarted();error InvalidMintAmount();
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)pragma solidity ^0.8.20;import {Context} from "../utils/Context.sol";/*** @dev Contract module which provides a basic access control mechanism, where* there is an account (an owner) that can be granted exclusive access to* specific functions.** The initial owner is set to the address provided by the deployer. This can* later be changed with {transferOwnership}.** This module is used through inheritance. It will make available the modifier* `onlyOwner`, which can be applied to your functions to restrict their use to* the owner.*/abstract contract Ownable is Context {address private _owner;/*** @dev The caller account is not authorized to perform an operation.*/error OwnableUnauthorizedAccount(address account);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (interfaces/draft-IERC6093.sol)pragma solidity ^0.8.20;/*** @dev Standard ERC-20 Errors* Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.*/interface IERC20Errors {/*** @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.* @param sender Address whose tokens are being transferred.* @param balance Current balance for the interacting account.* @param needed Minimum amount required to perform a transfer.*/error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);/*** @dev Indicates a failure with the token `sender`. Used in transfers.* @param sender Address whose tokens are being transferred.*/error ERC20InvalidSender(address sender);/*** @dev Indicates a failure with the token `receiver`. Used in transfers.* @param receiver Address to which tokens are being transferred.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (interfaces/IERC2981.sol)pragma solidity ^0.8.20;import {IERC165} from "../utils/introspection/IERC165.sol";/*** @dev Interface for the NFT Royalty Standard.** A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal* support for royalty payments across all NFT marketplaces and ecosystem participants.*/interface IERC2981 is IERC165 {/*** @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of* exchange. The royalty amount is denominated and should be paid in that same unit of exchange.** NOTE: ERC-2981 allows setting the royalty to 100% of the price. In that case all the price would be sent to the* royalty receiver and 0 tokens to the seller. Contracts dealing with royalty should consider empty transfers.*/function royaltyInfo(uint256 tokenId,uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (token/common/ERC2981.sol)pragma solidity ^0.8.20;import {IERC2981} from "../../interfaces/IERC2981.sol";import {IERC165, ERC165} from "../../utils/introspection/ERC165.sol";/*** @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.** Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for* specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.** Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the* fee is specified in basis points by default.** IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See* https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the ERC. Marketplaces are expected to* voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.*/abstract contract ERC2981 is IERC2981, ERC165 {struct RoyaltyInfo {address receiver;uint96 royaltyFraction;}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC721/ERC721.sol)pragma solidity ^0.8.20;import {IERC721} from "./IERC721.sol";import {IERC721Metadata} from "./extensions/IERC721Metadata.sol";import {ERC721Utils} from "./utils/ERC721Utils.sol";import {Context} from "../../utils/Context.sol";import {Strings} from "../../utils/Strings.sol";import {IERC165, ERC165} from "../../utils/introspection/ERC165.sol";import {IERC721Errors} from "../../interfaces/draft-IERC6093.sol";/*** @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC-721] Non-Fungible Token Standard, including* the Metadata extension, but not including the Enumerable extension, which is available separately as* {ERC721Enumerable}.*/abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Errors {using Strings for uint256;// Token namestring private _name;// Token symbolstring private _symbol;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/extensions/IERC721Metadata.sol)pragma solidity ^0.8.20;import {IERC721} from "../IERC721.sol";/*** @title ERC-721 Non-Fungible Token Standard, optional metadata extension* @dev See https://eips.ethereum.org/EIPS/eip-721*/interface IERC721Metadata is IERC721 {/*** @dev Returns the token collection name.*/function name() external view returns (string memory);/*** @dev Returns the token collection symbol.*/function symbol() external view returns (string memory);/*** @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.*/function tokenURI(uint256 tokenId) external view returns (string memory);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC721/IERC721.sol)pragma solidity ^0.8.20;import {IERC165} from "../../utils/introspection/IERC165.sol";/*** @dev Required interface of an ERC-721 compliant contract.*/interface IERC721 is IERC165 {/*** @dev Emitted when `tokenId` token is transferred from `from` to `to`.*/event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);/*** @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.*/event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);/*** @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.*/event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC721/IERC721Receiver.sol)pragma solidity ^0.8.20;/*** @title ERC-721 token receiver interface* @dev Interface for any contract that wants to support safeTransfers* from ERC-721 asset contracts.*/interface IERC721Receiver {/*** @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}* by `operator` from `from`, this function is called.** It must return its Solidity selector to confirm the token transfer.* If any other value is returned or the interface is not implemented by the recipient, the transfer will be* reverted.** The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.*/function onERC721Received(address operator,address from,uint256 tokenId,bytes calldata data
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC721/utils/ERC721Utils.sol)pragma solidity ^0.8.20;import {IERC721Receiver} from "../IERC721Receiver.sol";import {IERC721Errors} from "../../../interfaces/draft-IERC6093.sol";/*** @dev Library that provide common ERC-721 utility functions.** See https://eips.ethereum.org/EIPS/eip-721[ERC-721].** _Available since v5.1._*/library ERC721Utils {/*** @dev Performs an acceptance check for the provided `operator` by calling {IERC721-onERC721Received}* on the `to` address. The `operator` is generally the address that initiated the token transfer (i.e. `msg.sender`).** The acceptance call is not executed and treated as a no-op if the target address doesn't contain code (i.e. an EOA).* Otherwise, the recipient must implement {IERC721Receiver-onERC721Received} and return the acceptance magic value to accept* the transfer.*/function checkOnERC721Received(address operator,
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)pragma solidity ^0.8.20;/*** @dev Provides information about the current execution context, including the* sender of the transaction and its data. While these are generally available* via msg.sender and msg.data, they should not be accessed in such a direct* manner, since when dealing with meta-transactions the account sending and* paying for execution may not be the actual sender (as far as an application* is concerned).** This contract is only required for intermediate, library-like contracts.*/abstract contract Context {function _msgSender() internal view virtual returns (address) {return msg.sender;}function _msgData() internal view virtual returns (bytes calldata) {return msg.data;}function _contextSuffixLength() internal view virtual returns (uint256) {return 0;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/ERC165.sol)pragma solidity ^0.8.20;import {IERC165} from "./IERC165.sol";/*** @dev Implementation of the {IERC165} interface.** Contracts that want to implement ERC-165 should inherit from this contract and override {supportsInterface} to check* for the additional interface id that will be supported. For example:** ```solidity* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);* }* ```*/abstract contract ERC165 is IERC165 {/*** @dev See {IERC165-supportsInterface}.*/function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {return interfaceId == type(IERC165).interfaceId;}
12345678910111213141516171819202122232425// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (utils/introspection/IERC165.sol)pragma solidity ^0.8.20;/*** @dev Interface of the ERC-165 standard, as defined in the* https://eips.ethereum.org/EIPS/eip-165[ERC].** Implementers can declare support of contract interfaces, which can then be* queried by others ({ERC165Checker}).** For an implementation, see {ERC165}.*/interface IERC165 {/*** @dev Returns true if this contract implements the interface defined by* `interfaceId`. See the corresponding* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[ERC section]* to learn more about how these ids are created.** This function call must use less than 30 000 gas.*/function supportsInterface(bytes4 interfaceId) external view returns (bool);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (utils/math/Math.sol)pragma solidity ^0.8.20;import {Panic} from "../Panic.sol";import {SafeCast} from "./SafeCast.sol";/*** @dev Standard math utilities missing in the Solidity language.*/library Math {enum Rounding {Floor, // Toward negative infinityCeil, // Toward positive infinityTrunc, // Toward zeroExpand // Away from zero}/*** @dev Returns the addition of two unsigned integers, with an success flag (no overflow).*/function tryAdd(uint256 a, uint256 b) internal pure returns (bool success, uint256 result) {unchecked {uint256 c = a + b;if (c < a) return (false, 0);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (utils/math/SafeCast.sol)// This file was procedurally generated from scripts/generate/templates/SafeCast.js.pragma solidity ^0.8.20;/*** @dev Wrappers over Solidity's uintXX/intXX/bool casting operators with added overflow* checks.** Downcasting from uint256/int256 in Solidity does not revert on overflow. This can* easily result in undesired exploitation or bugs, since developers usually* assume that overflows raise errors. `SafeCast` restores this intuition by* reverting the transaction when such an operation overflows.** Using this library instead of the unchecked operations eliminates an entire* class of bugs, so it's recommended to use it always.*/library SafeCast {/*** @dev Value doesn't fit in an uint of `bits` size.*/error SafeCastOverflowedUintDowncast(uint8 bits, uint256 value);/*** @dev An int value doesn't fit in an uint of `bits` size.
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (utils/math/SignedMath.sol)pragma solidity ^0.8.20;import {SafeCast} from "./SafeCast.sol";/*** @dev Standard signed math utilities missing in the Solidity language.*/library SignedMath {/*** @dev Branchless ternary evaluation for `a ? b : c`. Gas costs are constant.** IMPORTANT: This function may reduce bytecode size and consume less gas when used standalone.* However, the compiler may optimize Solidity ternary operations (i.e. `a ? b : c`) to only compute* one branch when needed, making this function more expensive.*/function ternary(bool condition, int256 a, int256 b) internal pure returns (int256) {unchecked {// branchless ternary works because:// b ^ (a ^ b) == a// b ^ 0 == breturn b ^ ((a ^ b) * int256(SafeCast.toUint(condition)));}}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (utils/Panic.sol)pragma solidity ^0.8.20;/*** @dev Helper library for emitting standardized panic codes.** ```solidity* contract Example {* using Panic for uint256;** // Use any of the declared internal constants* function foo() { Panic.GENERIC.panic(); }** // Alternatively* function foo() { Panic.panic(Panic.GENERIC); }* }* ```** Follows the list from https://github.com/ethereum/solidity/blob/v0.8.24/libsolutil/ErrorCodes.h[libsolutil].** _Available since v5.1._*/// slither-disable-next-line unused-statelibrary Panic {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.1.0) (utils/ReentrancyGuard.sol)pragma solidity ^0.8.20;/*** @dev Contract module that helps prevent reentrant calls to a function.** Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier* available, which can be applied to functions to make sure there are no nested* (reentrant) calls to them.** Note that because there is a single `nonReentrant` guard, functions marked as* `nonReentrant` may not call one another. This can be worked around by making* those functions `private`, and then adding `external` `nonReentrant` entry* points to them.** TIP: If EIP-1153 (transient storage) is available on the chain you're deploying at,* consider using {ReentrancyGuardTransient} instead.** TIP: If you would like to learn more about reentrancy and alternative ways* to protect against it, check out our blog post* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].*/abstract contract ReentrancyGuard {// Booleans are more expensive than uint256 or any type that takes up a full
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.2.0) (utils/Strings.sol)pragma solidity ^0.8.20;import {Math} from "./math/Math.sol";import {SafeCast} from "./math/SafeCast.sol";import {SignedMath} from "./math/SignedMath.sol";/*** @dev String operations.*/library Strings {using SafeCast for *;bytes16 private constant HEX_DIGITS = "0123456789abcdef";uint8 private constant ADDRESS_LENGTH = 20;/*** @dev The `value` string doesn't fit in the specified `length`.*/error StringsInsufficientHexLength(uint256 value, uint256 length);/*** @dev The string being parsed contains characters that are not in scope of the given base.*/
1234567891011121314151617181920{"optimizer": {"enabled": true,"runs": 1000000},"evmVersion": "paris","outputSelection": {"*": {"*": ["evm.bytecode","evm.deployedBytecode","devdoc","userdoc","metadata","abi"]}},"libraries": {}}
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"BatchArrayLengthMismatch","type":"error"},{"inputs":[],"name":"BatchSizeExceeded","type":"error"},{"inputs":[{"internalType":"uint256","name":"numerator","type":"uint256"},{"internalType":"uint256","name":"denominator","type":"uint256"}],"name":"ERC2981InvalidDefaultRoyalty","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC2981InvalidDefaultRoyaltyReceiver","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"numerator","type":"uint256"},{"internalType":"uint256","name":"denominator","type":"uint256"}],"name":"ERC2981InvalidTokenRoyalty","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC2981InvalidTokenRoyaltyReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721IncorrectOwner","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721InsufficientApproval","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC721InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"ERC721InvalidOperator","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"ERC721InvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC721InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC721InvalidSender","type":"error"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ERC721NonexistentToken","type":"error"},{"inputs":[],"name":"ExceedsWalletLimit","type":"error"},{"inputs":[],"name":"IncorrectPaymentAmount","type":"error"},{"inputs":[],"name":"InvalidMintAmount","type":"error"},{"inputs":[],"name":"NoFundsToWithdraw","type":"error"},{"inputs":[],"name":"NotEligibleForWhitelist","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"PublicSaleNotStarted","type":"error"},{"inputs":[],"name":"ReentrancyGuardReentrantCall","type":"error"},{"inputs":[],"name":"SaleAlreadyActive","type":"error"},{"inputs":[],"name":"SaleAlreadyStarted","type":"error"},{"inputs":[],"name":"SaleNotActive","type":"error"},{"inputs":[],"name":"TokenDoesNotExist","type":"error"},{"inputs":[],"name":"TransferFailed","type":"error"},{"inputs":[],"name":"WhitelistLimitReached","type":"error"},{"inputs":[],"name":"WhitelistPeriodEnded","type":"error"},{"inputs":[],"name":"WhitelistSupplyExhausted","type":"error"},{"inputs":[],"name":"WouldExceedTotalSupply","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":false,"internalType":"string","name":"newBaseURI","type":"string"}],"name":"BaseURIUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"bool","name":"isWhitelistMint","type":"bool"}],"name":"NFTMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"RoyaltyInfoUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"isActive","type":"bool"}],"name":"SaleStateChanged","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":"uint256","name":"count","type":"uint256"}],"name":"WhitelistBatchUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newDuration","type":"uint256"}],"name":"WhitelistDurationUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"allocation","type":"uint256"}],"name":"WhitelistUpdated","type":"event"},{"inputs":[],"name":"PUBLIC_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"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":[{"internalType":"address[]","name":"users","type":"address[]"},{"internalType":"uint256[]","name":"allocations","type":"uint256[]"}],"name":"batchSetWhitelistAllocations","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getAllocation","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":"isWhitelistPeriod","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"remainingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"remainingWhitelistMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"amount","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":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"saleStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setRoyaltyInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"allocation","type":"uint256"}],"name":"setWhitelistAllocation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_duration","type":"uint256"}],"name":"setWhitelistDuration","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","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":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistAllocation","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052610e10600c55600d805460ff191690553480156200002157600080fd5b50336040518060400160405280600b81526020016a474f47474c45532e45584560a81b81525060405180604001604052806008815260200167474f474c5a45584560c01b815250816000908162000079919062000283565b50600162000088828262000283565b5050506001600160a01b038116620000bb57604051631e4fbdf760e01b8152600060048201526024015b60405180910390fd5b620000c681620000e5565b5060016009819055600a55620000df336101f462000137565b6200034f565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6127106001600160601b0382168110156200017857604051636f483d0960e01b81526001600160601b038316600482015260248101829052604401620000b2565b6001600160a01b038316620001a457604051635b6cc80560e11b815260006004820152602401620000b2565b50604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600655565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200020957607f821691505b6020821081036200022a57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200027e57600081815260208120601f850160051c81016020861015620002595750805b601f850160051c820191505b818110156200027a5782815560010162000265565b5050505b505050565b81516001600160401b038111156200029f576200029f620001de565b620002b781620002b08454620001f4565b8462000230565b602080601f831160018114620002ef5760008415620002d65750858301515b600019600386901b1c1916600185901b1785556200027a565b600085815260208120601f198616915b828110156200032057888601518255948401946001909101908401620002ff565b50858210156200033f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6130d3806200035f6000396000f3fe6080604052600436106102dc5760003560e01c806370a0823111610184578063b66a0e5d116100d6578063db1696d91161008a578063e985e9c511610064578063e985e9c514610817578063ec3a1d4b1461086d578063f2fde38b1461088357600080fd5b8063db1696d9146107aa578063e58306f9146107d7578063e8f92402146107f757600080fd5b8063c5d2d654116100bb578063c5d2d65414610760578063c87b56dd14610775578063da0239a61461079557600080fd5b8063b66a0e5d1461072b578063b88d4fde1461074057600080fd5b8063902d55a511610138578063a22cb46511610112578063a22cb465146106d6578063a2309ff8146106f6578063a825a99c1461070b57600080fd5b8063902d55a51461067e57806395d89b411461069457806398a8cffe146106a957600080fd5b806384229f041161016957806384229f041461061e578063868ff4a2146106335780638da5cb5b1461065357600080fd5b806370a08231146105e9578063715018a61461060957600080fd5b80632a55205a1161023d57806355367ba9116101f15780636352211e116101cb5780636352211e1461059957806368428a1b146105b95780636e56539b146105d357600080fd5b806355367ba91461054757806355f804b31461055c578063611f3f101461057c57600080fd5b8063387369d111610222578063387369d1146104f25780633ccfd60b1461051257806342842e0e1461052757600080fd5b80632a55205a146104935780632db11544146104df57600080fd5b80630a8839c2116102945780631015805b116102795780631015805b146104305780631cbaee2d1461045d57806323b872dd1461047357600080fd5b80630a8839c2146103bf5780630e022923146103ed57600080fd5b806306fdde03116102c557806306fdde0314610338578063081812fc1461035a578063095ea7b31461039f57600080fd5b806301ffc9a7146102e157806302fa7c4714610316575b600080fd5b3480156102ed57600080fd5b506103016102fc366004612802565b6108a3565b60405190151581526020015b60405180910390f35b34801561032257600080fd5b5061033661033136600461284f565b6108b4565b005b34801561034457600080fd5b5061034d610927565b60405161030d9190612905565b34801561036657600080fd5b5061037a610375366004612918565b6109b9565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161030d565b3480156103ab57600080fd5b506103366103ba366004612931565b6109ef565b3480156103cb57600080fd5b506103df6103da36600461295b565b6109fe565b60405190815260200161030d565b3480156103f957600080fd5b506103df61040836600461295b565b73ffffffffffffffffffffffffffffffffffffffff1660009081526010602052604090205490565b34801561043c57600080fd5b506103df61044b36600461295b565b600f6020526000908152604090205481565b34801561046957600080fd5b506103df600b5481565b34801561047f57600080fd5b5061033661048e366004612976565b610a39565b34801561049f57600080fd5b506104b36104ae3660046129b2565b610b2f565b6040805173ffffffffffffffffffffffffffffffffffffffff909316835260208301919091520161030d565b6103366104ed366004612918565b610c01565b3480156104fe57600080fd5b5061033661050d366004612931565b610e49565b34801561051e57600080fd5b50610336610efb565b34801561053357600080fd5b50610336610542366004612976565b61100d565b34801561055357600080fd5b5061033661102d565b34801561056857600080fd5b506103366105773660046129d4565b611094565b34801561058857600080fd5b506103df68068155a43676e0000081565b3480156105a557600080fd5b5061037a6105b4366004612918565b6110db565b3480156105c557600080fd5b50600d546103019060ff1681565b3480156105df57600080fd5b506103df6105dc81565b3480156105f557600080fd5b506103df61060436600461295b565b6110e6565b34801561061557600080fd5b50610336611161565b34801561062a57600080fd5b50610301611173565b34801561063f57600080fd5b5061033661064e366004612918565b61119c565b34801561065f57600080fd5b5060085473ffffffffffffffffffffffffffffffffffffffff1661037a565b34801561068a57600080fd5b506103df6107d081565b3480156106a057600080fd5b5061034d6113db565b3480156106b557600080fd5b506103df6106c436600461295b565b600e6020526000908152604090205481565b3480156106e257600080fd5b506103366106f1366004612a46565b6113ea565b34801561070257600080fd5b506103df6113f5565b34801561071757600080fd5b50610336610726366004612918565b611406565b34801561073757600080fd5b50610336611486565b34801561074c57600080fd5b5061033661075b366004612aa6565b61152d565b34801561076c57600080fd5b506103df600381565b34801561078157600080fd5b5061034d610790366004612918565b611545565b3480156107a157600080fd5b506103df6115d5565b3480156107b657600080fd5b506103df6107c536600461295b565b60106020526000908152604090205481565b3480156107e357600080fd5b506103366107f2366004612931565b6115f2565b34801561080357600080fd5b50610336610812366004612be5565b611714565b34801561082357600080fd5b50610301610832366004612c51565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561087957600080fd5b506103df600c5481565b34801561088f57600080fd5b5061033661089e36600461295b565b611956565b60006108ae826119b7565b92915050565b6108bc611a0d565b6108c68282611a60565b6040805173ffffffffffffffffffffffffffffffffffffffff841681526bffffffffffffffffffffffff831660208201527fae1d656a1268648b04ffa79c1416f05879338ae295aae3234d8db217356a1c6291015b60405180910390a15050565b60606000805461093690612c84565b80601f016020809104026020016040519081016040528092919081815260200182805461096290612c84565b80156109af5780601f10610984576101008083540402835291602001916109af565b820191906000526020600020905b81548152906001019060200180831161099257829003601f168201915b5050505050905090565b60006109c482611b6f565b5060008281526004602052604090205473ffffffffffffffffffffffffffffffffffffffff166108ae565b6109fa828233611bce565b5050565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600e602090815260408083205460109092528220546108ae9190612d06565b73ffffffffffffffffffffffffffffffffffffffff8216610a8e576040517f64a0ae92000000000000000000000000000000000000000000000000000000008152600060048201526024015b60405180910390fd5b6000610a9b838333611bdb565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b29576040517f64283d7b00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff80861660048301526024820184905282166044820152606401610a85565b50505050565b6000828152600760205260408120805482919073ffffffffffffffffffffffffffffffffffffffff8116907401000000000000000000000000000000000000000090046bffffffffffffffffffffffff1681610bc957505060065473ffffffffffffffffffffffffffffffffffffffff8116907401000000000000000000000000000000000000000090046bffffffffffffffffffffffff165b6000612710610be66bffffffffffffffffffffffff841689612d19565b610bf09190612d30565b9295509193505050505b9250929050565b600d5460ff16610c3d576040517fb7b2409700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c45611d58565b801580610c525750600381115b15610c89576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c91611173565b15610cc8576040517fac4d09c700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336000908152600f6020526040902054600390610ce6908390612d6b565b1115610d1e576040517f5107dbe700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d318168068155a43676e00000612d19565b3414610d69576040517f6992e1ff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6107d081610d756113f5565b610d7f9190612d6b565b1115610db7576040517fc1bd676400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b81811015610e3b57336000908152600f60205260408120805491610ddd83612d7e565b91905055506000610ded33611d9b565b60405160008152909150819033907f8fa3ff725d2f7190c5e5dd9bc88f241a72b239e127e347dccdfc28e44e5e09639060200160405180910390a35080610e3381612d7e565b915050610dba565b50610e466001600955565b50565b610e51611a0d565b801580610e5e5750600381115b15610e95576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff821660008181526010602052604090819020839055517f226d670a329c4a93cf8c1a5baeceda320e89031fe0a65343c51678bd8b5a652e90610eef9084815260200190565b60405180910390a25050565b610f03611a0d565b610f0b611d58565b476000819003610f47576040517f67e3990d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610f6860085473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d8060008114610fbf576040519150601f19603f3d011682016040523d82523d6000602084013e610fc4565b606091505b5050905080610fff576040517f90b8ec1800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505061100b6001600955565b565b6110288383836040518060200160405280600081525061152d565b505050565b611035611a0d565b600d80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055604051600081527fe333f8a36ee86e754548af2d6f50c73ff0d501e22e6c784662123dbbe493c602906020015b60405180910390a1565b61109c611a0d565b60116110a9828483612dfc565b507f6741b2fc379fad678116fe3d4d4b9a1a184ab53ba36b86ad0fa66340b1ab41ad828260405161091b929190612f16565b60006108ae82611b6f565b600073ffffffffffffffffffffffffffffffffffffffff8216611138576040517f89c62b6400000000000000000000000000000000000000000000000000000000815260006004820152602401610a85565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526003602052604090205490565b611169611a0d565b61100b6000611dbf565b600d5460009060ff1680156111975750600c54600b546111939190612d6b565b4211155b905090565b600d5460ff166111d8576040517fb7b2409700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6111e0611d58565b8015806111ed5750600381115b15611224576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61122c611173565b611262576040517f29dfe9b000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360009081526010602052604081205490036112aa576040517f97d40e1b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b33600090815260106020908152604080832054600e909252909120546112d1908390612d6b565b1115611309576040517fbe8f94e900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6105dc816113156113f5565b61131f9190612d6b565b1115611357576040517f7fc7685c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b81811015610e3b57336000908152600e6020526040812080549161137d83612d7e565b9190505550600061138d33611d9b565b60405160018152909150819033907f8fa3ff725d2f7190c5e5dd9bc88f241a72b239e127e347dccdfc28e44e5e09639060200160405180910390a350806113d381612d7e565b91505061135a565b60606001805461093690612c84565b6109fa338383611e36565b60006001600a546111979190612d06565b61140e611a0d565b600d5460ff161561144b576040517f522cb3fa00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c8190556040518181527f5ce55e350c56e758fa606306be8bf90d22f0d509e6f9b0f8fbc007a14e1435c59060200160405180910390a150565b61148e611a0d565b600d5460ff16156114cb576040517fe794df0900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600190811790915542600b556040519081527fe333f8a36ee86e754548af2d6f50c73ff0d501e22e6c784662123dbbe493c6029060200161108a565b611538848484610a39565b610b293385858585611f33565b60008181526002602052604090205460609073ffffffffffffffffffffffffffffffffffffffff166115a3576040517fceea21b600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60116115ae8361212c565b6040516020016115bf929190612f63565b6040516020818303038152906040529050919050565b6000600a546107d06115e79190612d06565b611197906001612d6b565b6115fa611a0d565b611602611d58565b8060000361163c576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6107d0816116486113f5565b6116529190612d6b565b111561168a576040517fc1bd676400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b818110156117095760006116a084611d9b565b9050808473ffffffffffffffffffffffffffffffffffffffff167f8fa3ff725d2f7190c5e5dd9bc88f241a72b239e127e347dccdfc28e44e5e096360006040516116ee911515815260200190565b60405180910390a3508061170181612d7e565b91505061168d565b506109fa6001600955565b61171c611a0d565b828114611755576040517ffc5221bd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6064831115611790576040517fabcf3d2300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b8381101561191c578282828181106117ad576117ad613008565b90506020020135600014806117da575060038383838181106117d1576117d1613008565b90506020020135115b15611811576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b82828281811061182357611823613008565b905060200201356010600087878581811061184057611840613008565b9050602002016020810190611855919061295b565b73ffffffffffffffffffffffffffffffffffffffff16815260208101919091526040016000205584848281811061188e5761188e613008565b90506020020160208101906118a3919061295b565b73ffffffffffffffffffffffffffffffffffffffff167f226d670a329c4a93cf8c1a5baeceda320e89031fe0a65343c51678bd8b5a652e8484848181106118ec576118ec613008565b9050602002013560405161190291815260200190565b60405180910390a28061191481612d7e565b915050611793565b506040518381527f772cd26dc6f6dabcabf6c1b37d558df119dd0989ff183f32f1c22ef4495652049060200160405180910390a150505050565b61195e611a0d565b73ffffffffffffffffffffffffffffffffffffffff81166119ae576040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260006004820152602401610a85565b610e4681611dbf565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f2a55205a0000000000000000000000000000000000000000000000000000000014806108ae57506108ae826121ea565b60085473ffffffffffffffffffffffffffffffffffffffff16331461100b576040517f118cdaa7000000000000000000000000000000000000000000000000000000008152336004820152602401610a85565b6127106bffffffffffffffffffffffff8216811015611ac2576040517f6f483d090000000000000000000000000000000000000000000000000000000081526bffffffffffffffffffffffff8316600482015260248101829052604401610a85565b73ffffffffffffffffffffffffffffffffffffffff8316611b12576040517fb6d9900a00000000000000000000000000000000000000000000000000000000815260006004820152602401610a85565b506040805180820190915273ffffffffffffffffffffffffffffffffffffffff9092168083526bffffffffffffffffffffffff90911660209092018290527401000000000000000000000000000000000000000090910217600655565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16806108ae576040517f7e27328900000000000000000000000000000000000000000000000000000000815260048101849052602401610a85565b61102883838360016122cd565b60008281526002602052604081205473ffffffffffffffffffffffffffffffffffffffff90811690831615611c1557611c15818486612498565b73ffffffffffffffffffffffffffffffffffffffff811615611c8b57611c3f6000856000806122cd565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260036020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190555b73ffffffffffffffffffffffffffffffffffffffff851615611cd45773ffffffffffffffffffffffffffffffffffffffff85166000908152600360205260409020805460010190555b60008481526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff89811691821790925591518793918516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4949350505050565b600260095403611d94576040517f3ee5aeb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6002600955565b600a805460009182919082611daf83612d7e565b9190505590506108ae8382612548565b6008805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b73ffffffffffffffffffffffffffffffffffffffff8216611e9b576040517f5b08ba1800000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff83166004820152602401610a85565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526005602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff83163b15612125576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff84169063150b7a0290611fa8908890889087908790600401613037565b6020604051808303816000875af1925050508015612001575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252611ffe91810190613080565b60015b612090573d80801561202f576040519150601f19603f3d011682016040523d82523d6000602084013e612034565b606091505b508051600003612088576040517f64a0ae9200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85166004820152602401610a85565b805181602001fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081167f150b7a020000000000000000000000000000000000000000000000000000000014612123576040517f64a0ae9200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85166004820152602401610a85565b505b5050505050565b6060600061213983612562565b600101905060008167ffffffffffffffff81111561215957612159612a77565b6040519080825280601f01601f191660200182016040528015612183576020820181803683370190505b5090508181016020015b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff017f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a850494508461218d57509392505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061227d57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806108ae57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146108ae565b80806122ee575073ffffffffffffffffffffffffffffffffffffffff821615155b156124435760006122fe84611b6f565b905073ffffffffffffffffffffffffffffffffffffffff83161580159061235157508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b8015612390575073ffffffffffffffffffffffffffffffffffffffff80821660009081526005602090815260408083209387168352929052205460ff16155b156123df576040517fa9fbf51f00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff84166004820152602401610a85565b811561244157838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b5050600090815260046020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b6124a3838383612644565b6110285773ffffffffffffffffffffffffffffffffffffffff83166124f7576040517f7e27328900000000000000000000000000000000000000000000000000000000815260048101829052602401610a85565b6040517f177e802f00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8316600482015260248101829052604401610a85565b6109fa82826040518060200160405280600081525061270b565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106125ab577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef810000000083106125d7576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106125f557662386f26fc10000830492506010015b6305f5e100831061260d576305f5e100830492506008015b612710831061262157612710830492506004015b60648310612633576064830492506002015b600a83106108ae5760010192915050565b600073ffffffffffffffffffffffffffffffffffffffff83161580159061270357508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806126d2575073ffffffffffffffffffffffffffffffffffffffff80851660009081526005602090815260408083209387168352929052205460ff165b80612703575060008281526004602052604090205473ffffffffffffffffffffffffffffffffffffffff8481169116145b949350505050565b6127158383612723565b611028336000858585611f33565b73ffffffffffffffffffffffffffffffffffffffff8216612773576040517f64a0ae9200000000000000000000000000000000000000000000000000000000815260006004820152602401610a85565b600061278183836000611bdb565b905073ffffffffffffffffffffffffffffffffffffffff811615611028576040517f73c6ac6e00000000000000000000000000000000000000000000000000000000815260006004820152602401610a85565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610e4657600080fd5b60006020828403121561281457600080fd5b813561281f816127d4565b9392505050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461284a57600080fd5b919050565b6000806040838503121561286257600080fd5b61286b83612826565b915060208301356bffffffffffffffffffffffff8116811461288c57600080fd5b809150509250929050565b60005b838110156128b257818101518382015260200161289a565b50506000910152565b600081518084526128d3816020860160208601612897565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60208152600061281f60208301846128bb565b60006020828403121561292a57600080fd5b5035919050565b6000806040838503121561294457600080fd5b61294d83612826565b946020939093013593505050565b60006020828403121561296d57600080fd5b61281f82612826565b60008060006060848603121561298b57600080fd5b61299484612826565b92506129a260208501612826565b9150604084013590509250925092565b600080604083850312156129c557600080fd5b50508035926020909101359150565b600080602083850312156129e757600080fd5b823567ffffffffffffffff808211156129ff57600080fd5b818501915085601f830112612a1357600080fd5b813581811115612a2257600080fd5b866020828501011115612a3457600080fd5b60209290920196919550909350505050565b60008060408385031215612a5957600080fd5b612a6283612826565b91506020830135801515811461288c57600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008060008060808587031215612abc57600080fd5b612ac585612826565b9350612ad360208601612826565b925060408501359150606085013567ffffffffffffffff80821115612af757600080fd5b818701915087601f830112612b0b57600080fd5b813581811115612b1d57612b1d612a77565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908382118183101715612b6357612b63612a77565b816040528281528a6020848701011115612b7c57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008083601f840112612bb257600080fd5b50813567ffffffffffffffff811115612bca57600080fd5b6020830191508360208260051b8501011115610bfa57600080fd5b60008060008060408587031215612bfb57600080fd5b843567ffffffffffffffff80821115612c1357600080fd5b612c1f88838901612ba0565b90965094506020870135915080821115612c3857600080fd5b50612c4587828801612ba0565b95989497509550505050565b60008060408385031215612c6457600080fd5b612c6d83612826565b9150612c7b60208401612826565b90509250929050565b600181811c90821680612c9857607f821691505b602082108103612cd1577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b818103818111156108ae576108ae612cd7565b80820281158282048414176108ae576108ae612cd7565b600082612d66577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b808201808211156108ae576108ae612cd7565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612daf57612daf612cd7565b5060010190565b601f82111561102857600081815260208120601f850160051c81016020861015612ddd5750805b601f850160051c820191505b8181101561212357828155600101612de9565b67ffffffffffffffff831115612e1457612e14612a77565b612e2883612e228354612c84565b83612db6565b6000601f841160018114612e7a5760008515612e445750838201355b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600387901b1c1916600186901b178355612125565b6000838152602090207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0861690835b82811015612ec95786850135825560209485019460019092019101612ea9565b5086821015612f04577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60f88860031b161c19848701351681555b505060018560011b0183555050505050565b60208152816020820152818360408301376000818301604090810191909152601f9092017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0160101919050565b6000808454612f7181612c84565b60018281168015612f895760018114612fbc57612feb565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0084168752821515830287019450612feb565b8860005260208060002060005b85811015612fe25781548a820152908401908201612fc9565b50505082870194505b505050508351612fff818360208801612897565b01949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600073ffffffffffffffffffffffffffffffffffffffff80871683528086166020840152508360408301526080606083015261307660808301846128bb565b9695505050505050565b60006020828403121561309257600080fd5b815161281f816127d456fea2646970667358221220e27155c73a4323f30bd7de2f28a3b58d97a95dc76a71f1c23c820549867c89f464736f6c63430008140033
Deployed Bytecode
0x6080604052600436106102dc5760003560e01c806370a0823111610184578063b66a0e5d116100d6578063db1696d91161008a578063e985e9c511610064578063e985e9c514610817578063ec3a1d4b1461086d578063f2fde38b1461088357600080fd5b8063db1696d9146107aa578063e58306f9146107d7578063e8f92402146107f757600080fd5b8063c5d2d654116100bb578063c5d2d65414610760578063c87b56dd14610775578063da0239a61461079557600080fd5b8063b66a0e5d1461072b578063b88d4fde1461074057600080fd5b8063902d55a511610138578063a22cb46511610112578063a22cb465146106d6578063a2309ff8146106f6578063a825a99c1461070b57600080fd5b8063902d55a51461067e57806395d89b411461069457806398a8cffe146106a957600080fd5b806384229f041161016957806384229f041461061e578063868ff4a2146106335780638da5cb5b1461065357600080fd5b806370a08231146105e9578063715018a61461060957600080fd5b80632a55205a1161023d57806355367ba9116101f15780636352211e116101cb5780636352211e1461059957806368428a1b146105b95780636e56539b146105d357600080fd5b806355367ba91461054757806355f804b31461055c578063611f3f101461057c57600080fd5b8063387369d111610222578063387369d1146104f25780633ccfd60b1461051257806342842e0e1461052757600080fd5b80632a55205a146104935780632db11544146104df57600080fd5b80630a8839c2116102945780631015805b116102795780631015805b146104305780631cbaee2d1461045d57806323b872dd1461047357600080fd5b80630a8839c2146103bf5780630e022923146103ed57600080fd5b806306fdde03116102c557806306fdde0314610338578063081812fc1461035a578063095ea7b31461039f57600080fd5b806301ffc9a7146102e157806302fa7c4714610316575b600080fd5b3480156102ed57600080fd5b506103016102fc366004612802565b6108a3565b60405190151581526020015b60405180910390f35b34801561032257600080fd5b5061033661033136600461284f565b6108b4565b005b34801561034457600080fd5b5061034d610927565b60405161030d9190612905565b34801561036657600080fd5b5061037a610375366004612918565b6109b9565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161030d565b3480156103ab57600080fd5b506103366103ba366004612931565b6109ef565b3480156103cb57600080fd5b506103df6103da36600461295b565b6109fe565b60405190815260200161030d565b3480156103f957600080fd5b506103df61040836600461295b565b73ffffffffffffffffffffffffffffffffffffffff1660009081526010602052604090205490565b34801561043c57600080fd5b506103df61044b36600461295b565b600f6020526000908152604090205481565b34801561046957600080fd5b506103df600b5481565b34801561047f57600080fd5b5061033661048e366004612976565b610a39565b34801561049f57600080fd5b506104b36104ae3660046129b2565b610b2f565b6040805173ffffffffffffffffffffffffffffffffffffffff909316835260208301919091520161030d565b6103366104ed366004612918565b610c01565b3480156104fe57600080fd5b5061033661050d366004612931565b610e49565b34801561051e57600080fd5b50610336610efb565b34801561053357600080fd5b50610336610542366004612976565b61100d565b34801561055357600080fd5b5061033661102d565b34801561056857600080fd5b506103366105773660046129d4565b611094565b34801561058857600080fd5b506103df68068155a43676e0000081565b3480156105a557600080fd5b5061037a6105b4366004612918565b6110db565b3480156105c557600080fd5b50600d546103019060ff1681565b3480156105df57600080fd5b506103df6105dc81565b3480156105f557600080fd5b506103df61060436600461295b565b6110e6565b34801561061557600080fd5b50610336611161565b34801561062a57600080fd5b50610301611173565b34801561063f57600080fd5b5061033661064e366004612918565b61119c565b34801561065f57600080fd5b5060085473ffffffffffffffffffffffffffffffffffffffff1661037a565b34801561068a57600080fd5b506103df6107d081565b3480156106a057600080fd5b5061034d6113db565b3480156106b557600080fd5b506103df6106c436600461295b565b600e6020526000908152604090205481565b3480156106e257600080fd5b506103366106f1366004612a46565b6113ea565b34801561070257600080fd5b506103df6113f5565b34801561071757600080fd5b50610336610726366004612918565b611406565b34801561073757600080fd5b50610336611486565b34801561074c57600080fd5b5061033661075b366004612aa6565b61152d565b34801561076c57600080fd5b506103df600381565b34801561078157600080fd5b5061034d610790366004612918565b611545565b3480156107a157600080fd5b506103df6115d5565b3480156107b657600080fd5b506103df6107c536600461295b565b60106020526000908152604090205481565b3480156107e357600080fd5b506103366107f2366004612931565b6115f2565b34801561080357600080fd5b50610336610812366004612be5565b611714565b34801561082357600080fd5b50610301610832366004612c51565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561087957600080fd5b506103df600c5481565b34801561088f57600080fd5b5061033661089e36600461295b565b611956565b60006108ae826119b7565b92915050565b6108bc611a0d565b6108c68282611a60565b6040805173ffffffffffffffffffffffffffffffffffffffff841681526bffffffffffffffffffffffff831660208201527fae1d656a1268648b04ffa79c1416f05879338ae295aae3234d8db217356a1c6291015b60405180910390a15050565b60606000805461093690612c84565b80601f016020809104026020016040519081016040528092919081815260200182805461096290612c84565b80156109af5780601f10610984576101008083540402835291602001916109af565b820191906000526020600020905b81548152906001019060200180831161099257829003601f168201915b5050505050905090565b60006109c482611b6f565b5060008281526004602052604090205473ffffffffffffffffffffffffffffffffffffffff166108ae565b6109fa828233611bce565b5050565b73ffffffffffffffffffffffffffffffffffffffff81166000908152600e602090815260408083205460109092528220546108ae9190612d06565b73ffffffffffffffffffffffffffffffffffffffff8216610a8e576040517f64a0ae92000000000000000000000000000000000000000000000000000000008152600060048201526024015b60405180910390fd5b6000610a9b838333611bdb565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610b29576040517f64283d7b00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff80861660048301526024820184905282166044820152606401610a85565b50505050565b6000828152600760205260408120805482919073ffffffffffffffffffffffffffffffffffffffff8116907401000000000000000000000000000000000000000090046bffffffffffffffffffffffff1681610bc957505060065473ffffffffffffffffffffffffffffffffffffffff8116907401000000000000000000000000000000000000000090046bffffffffffffffffffffffff165b6000612710610be66bffffffffffffffffffffffff841689612d19565b610bf09190612d30565b9295509193505050505b9250929050565b600d5460ff16610c3d576040517fb7b2409700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c45611d58565b801580610c525750600381115b15610c89576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c91611173565b15610cc8576040517fac4d09c700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336000908152600f6020526040902054600390610ce6908390612d6b565b1115610d1e576040517f5107dbe700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d318168068155a43676e00000612d19565b3414610d69576040517f6992e1ff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6107d081610d756113f5565b610d7f9190612d6b565b1115610db7576040517fc1bd676400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b81811015610e3b57336000908152600f60205260408120805491610ddd83612d7e565b91905055506000610ded33611d9b565b60405160008152909150819033907f8fa3ff725d2f7190c5e5dd9bc88f241a72b239e127e347dccdfc28e44e5e09639060200160405180910390a35080610e3381612d7e565b915050610dba565b50610e466001600955565b50565b610e51611a0d565b801580610e5e5750600381115b15610e95576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff821660008181526010602052604090819020839055517f226d670a329c4a93cf8c1a5baeceda320e89031fe0a65343c51678bd8b5a652e90610eef9084815260200190565b60405180910390a25050565b610f03611a0d565b610f0b611d58565b476000819003610f47576040517f67e3990d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610f6860085473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d8060008114610fbf576040519150601f19603f3d011682016040523d82523d6000602084013e610fc4565b606091505b5050905080610fff576040517f90b8ec1800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505061100b6001600955565b565b6110288383836040518060200160405280600081525061152d565b505050565b611035611a0d565b600d80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055604051600081527fe333f8a36ee86e754548af2d6f50c73ff0d501e22e6c784662123dbbe493c602906020015b60405180910390a1565b61109c611a0d565b60116110a9828483612dfc565b507f6741b2fc379fad678116fe3d4d4b9a1a184ab53ba36b86ad0fa66340b1ab41ad828260405161091b929190612f16565b60006108ae82611b6f565b600073ffffffffffffffffffffffffffffffffffffffff8216611138576040517f89c62b6400000000000000000000000000000000000000000000000000000000815260006004820152602401610a85565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526003602052604090205490565b611169611a0d565b61100b6000611dbf565b600d5460009060ff1680156111975750600c54600b546111939190612d6b565b4211155b905090565b600d5460ff166111d8576040517fb7b2409700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6111e0611d58565b8015806111ed5750600381115b15611224576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61122c611173565b611262576040517f29dfe9b000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360009081526010602052604081205490036112aa576040517f97d40e1b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b33600090815260106020908152604080832054600e909252909120546112d1908390612d6b565b1115611309576040517fbe8f94e900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6105dc816113156113f5565b61131f9190612d6b565b1115611357576040517f7fc7685c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b81811015610e3b57336000908152600e6020526040812080549161137d83612d7e565b9190505550600061138d33611d9b565b60405160018152909150819033907f8fa3ff725d2f7190c5e5dd9bc88f241a72b239e127e347dccdfc28e44e5e09639060200160405180910390a350806113d381612d7e565b91505061135a565b60606001805461093690612c84565b6109fa338383611e36565b60006001600a546111979190612d06565b61140e611a0d565b600d5460ff161561144b576040517f522cb3fa00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600c8190556040518181527f5ce55e350c56e758fa606306be8bf90d22f0d509e6f9b0f8fbc007a14e1435c59060200160405180910390a150565b61148e611a0d565b600d5460ff16156114cb576040517fe794df0900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600d80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016600190811790915542600b556040519081527fe333f8a36ee86e754548af2d6f50c73ff0d501e22e6c784662123dbbe493c6029060200161108a565b611538848484610a39565b610b293385858585611f33565b60008181526002602052604090205460609073ffffffffffffffffffffffffffffffffffffffff166115a3576040517fceea21b600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60116115ae8361212c565b6040516020016115bf929190612f63565b6040516020818303038152906040529050919050565b6000600a546107d06115e79190612d06565b611197906001612d6b565b6115fa611a0d565b611602611d58565b8060000361163c576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6107d0816116486113f5565b6116529190612d6b565b111561168a576040517fc1bd676400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b818110156117095760006116a084611d9b565b9050808473ffffffffffffffffffffffffffffffffffffffff167f8fa3ff725d2f7190c5e5dd9bc88f241a72b239e127e347dccdfc28e44e5e096360006040516116ee911515815260200190565b60405180910390a3508061170181612d7e565b91505061168d565b506109fa6001600955565b61171c611a0d565b828114611755576040517ffc5221bd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6064831115611790576040517fabcf3d2300000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b8381101561191c578282828181106117ad576117ad613008565b90506020020135600014806117da575060038383838181106117d1576117d1613008565b90506020020135115b15611811576040517fccfad01800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b82828281811061182357611823613008565b905060200201356010600087878581811061184057611840613008565b9050602002016020810190611855919061295b565b73ffffffffffffffffffffffffffffffffffffffff16815260208101919091526040016000205584848281811061188e5761188e613008565b90506020020160208101906118a3919061295b565b73ffffffffffffffffffffffffffffffffffffffff167f226d670a329c4a93cf8c1a5baeceda320e89031fe0a65343c51678bd8b5a652e8484848181106118ec576118ec613008565b9050602002013560405161190291815260200190565b60405180910390a28061191481612d7e565b915050611793565b506040518381527f772cd26dc6f6dabcabf6c1b37d558df119dd0989ff183f32f1c22ef4495652049060200160405180910390a150505050565b61195e611a0d565b73ffffffffffffffffffffffffffffffffffffffff81166119ae576040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260006004820152602401610a85565b610e4681611dbf565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f2a55205a0000000000000000000000000000000000000000000000000000000014806108ae57506108ae826121ea565b60085473ffffffffffffffffffffffffffffffffffffffff16331461100b576040517f118cdaa7000000000000000000000000000000000000000000000000000000008152336004820152602401610a85565b6127106bffffffffffffffffffffffff8216811015611ac2576040517f6f483d090000000000000000000000000000000000000000000000000000000081526bffffffffffffffffffffffff8316600482015260248101829052604401610a85565b73ffffffffffffffffffffffffffffffffffffffff8316611b12576040517fb6d9900a00000000000000000000000000000000000000000000000000000000815260006004820152602401610a85565b506040805180820190915273ffffffffffffffffffffffffffffffffffffffff9092168083526bffffffffffffffffffffffff90911660209092018290527401000000000000000000000000000000000000000090910217600655565b60008181526002602052604081205473ffffffffffffffffffffffffffffffffffffffff16806108ae576040517f7e27328900000000000000000000000000000000000000000000000000000000815260048101849052602401610a85565b61102883838360016122cd565b60008281526002602052604081205473ffffffffffffffffffffffffffffffffffffffff90811690831615611c1557611c15818486612498565b73ffffffffffffffffffffffffffffffffffffffff811615611c8b57611c3f6000856000806122cd565b73ffffffffffffffffffffffffffffffffffffffff8116600090815260036020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190555b73ffffffffffffffffffffffffffffffffffffffff851615611cd45773ffffffffffffffffffffffffffffffffffffffff85166000908152600360205260409020805460010190555b60008481526002602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff89811691821790925591518793918516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4949350505050565b600260095403611d94576040517f3ee5aeb500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6002600955565b600a805460009182919082611daf83612d7e565b9190505590506108ae8382612548565b6008805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b73ffffffffffffffffffffffffffffffffffffffff8216611e9b576040517f5b08ba1800000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff83166004820152602401610a85565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526005602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff83163b15612125576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff84169063150b7a0290611fa8908890889087908790600401613037565b6020604051808303816000875af1925050508015612001575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252611ffe91810190613080565b60015b612090573d80801561202f576040519150601f19603f3d011682016040523d82523d6000602084013e612034565b606091505b508051600003612088576040517f64a0ae9200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85166004820152602401610a85565b805181602001fd5b7fffffffff0000000000000000000000000000000000000000000000000000000081167f150b7a020000000000000000000000000000000000000000000000000000000014612123576040517f64a0ae9200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85166004820152602401610a85565b505b5050505050565b6060600061213983612562565b600101905060008167ffffffffffffffff81111561215957612159612a77565b6040519080825280601f01601f191660200182016040528015612183576020820181803683370190505b5090508181016020015b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff017f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a850494508461218d57509392505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061227d57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806108ae57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316146108ae565b80806122ee575073ffffffffffffffffffffffffffffffffffffffff821615155b156124435760006122fe84611b6f565b905073ffffffffffffffffffffffffffffffffffffffff83161580159061235157508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614155b8015612390575073ffffffffffffffffffffffffffffffffffffffff80821660009081526005602090815260408083209387168352929052205460ff16155b156123df576040517fa9fbf51f00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff84166004820152602401610a85565b811561244157838573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45b505b5050600090815260046020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff92909216919091179055565b6124a3838383612644565b6110285773ffffffffffffffffffffffffffffffffffffffff83166124f7576040517f7e27328900000000000000000000000000000000000000000000000000000000815260048101829052602401610a85565b6040517f177e802f00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8316600482015260248101829052604401610a85565b6109fa82826040518060200160405280600081525061270b565b6000807a184f03e93ff9f4daa797ed6e38ed64bf6a1f01000000000000000083106125ab577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000830492506040015b6d04ee2d6d415b85acef810000000083106125d7576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc1000083106125f557662386f26fc10000830492506010015b6305f5e100831061260d576305f5e100830492506008015b612710831061262157612710830492506004015b60648310612633576064830492506002015b600a83106108ae5760010192915050565b600073ffffffffffffffffffffffffffffffffffffffff83161580159061270357508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806126d2575073ffffffffffffffffffffffffffffffffffffffff80851660009081526005602090815260408083209387168352929052205460ff165b80612703575060008281526004602052604090205473ffffffffffffffffffffffffffffffffffffffff8481169116145b949350505050565b6127158383612723565b611028336000858585611f33565b73ffffffffffffffffffffffffffffffffffffffff8216612773576040517f64a0ae9200000000000000000000000000000000000000000000000000000000815260006004820152602401610a85565b600061278183836000611bdb565b905073ffffffffffffffffffffffffffffffffffffffff811615611028576040517f73c6ac6e00000000000000000000000000000000000000000000000000000000815260006004820152602401610a85565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610e4657600080fd5b60006020828403121561281457600080fd5b813561281f816127d4565b9392505050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461284a57600080fd5b919050565b6000806040838503121561286257600080fd5b61286b83612826565b915060208301356bffffffffffffffffffffffff8116811461288c57600080fd5b809150509250929050565b60005b838110156128b257818101518382015260200161289a565b50506000910152565b600081518084526128d3816020860160208601612897565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b60208152600061281f60208301846128bb565b60006020828403121561292a57600080fd5b5035919050565b6000806040838503121561294457600080fd5b61294d83612826565b946020939093013593505050565b60006020828403121561296d57600080fd5b61281f82612826565b60008060006060848603121561298b57600080fd5b61299484612826565b92506129a260208501612826565b9150604084013590509250925092565b600080604083850312156129c557600080fd5b50508035926020909101359150565b600080602083850312156129e757600080fd5b823567ffffffffffffffff808211156129ff57600080fd5b818501915085601f830112612a1357600080fd5b813581811115612a2257600080fd5b866020828501011115612a3457600080fd5b60209290920196919550909350505050565b60008060408385031215612a5957600080fd5b612a6283612826565b91506020830135801515811461288c57600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008060008060808587031215612abc57600080fd5b612ac585612826565b9350612ad360208601612826565b925060408501359150606085013567ffffffffffffffff80821115612af757600080fd5b818701915087601f830112612b0b57600080fd5b813581811115612b1d57612b1d612a77565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908382118183101715612b6357612b63612a77565b816040528281528a6020848701011115612b7c57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008083601f840112612bb257600080fd5b50813567ffffffffffffffff811115612bca57600080fd5b6020830191508360208260051b8501011115610bfa57600080fd5b60008060008060408587031215612bfb57600080fd5b843567ffffffffffffffff80821115612c1357600080fd5b612c1f88838901612ba0565b90965094506020870135915080821115612c3857600080fd5b50612c4587828801612ba0565b95989497509550505050565b60008060408385031215612c6457600080fd5b612c6d83612826565b9150612c7b60208401612826565b90509250929050565b600181811c90821680612c9857607f821691505b602082108103612cd1577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b818103818111156108ae576108ae612cd7565b80820281158282048414176108ae576108ae612cd7565b600082612d66577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b808201808211156108ae576108ae612cd7565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612daf57612daf612cd7565b5060010190565b601f82111561102857600081815260208120601f850160051c81016020861015612ddd5750805b601f850160051c820191505b8181101561212357828155600101612de9565b67ffffffffffffffff831115612e1457612e14612a77565b612e2883612e228354612c84565b83612db6565b6000601f841160018114612e7a5760008515612e445750838201355b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600387901b1c1916600186901b178355612125565b6000838152602090207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0861690835b82811015612ec95786850135825560209485019460019092019101612ea9565b5086821015612f04577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60f88860031b161c19848701351681555b505060018560011b0183555050505050565b60208152816020820152818360408301376000818301604090810191909152601f9092017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0160101919050565b6000808454612f7181612c84565b60018281168015612f895760018114612fbc57612feb565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0084168752821515830287019450612feb565b8860005260208060002060005b85811015612fe25781548a820152908401908201612fc9565b50505082870194505b505050508351612fff818360208801612897565b01949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600073ffffffffffffffffffffffffffffffffffffffff80871683528086166020840152508360408301526080606083015261307660808301846128bb565b9695505050505050565b60006020828403121561309257600080fd5b815161281f816127d456fea2646970667358221220e27155c73a4323f30bd7de2f28a3b58d97a95dc76a71f1c23c820549867c89f464736f6c63430008140033
[ 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.