Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
201 aim
Holders
142
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 aimLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
AiMinionSilhouette
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-19 */ // File: Minion silu_flat.sol // File: @openzeppelin/contracts/utils/Strings.sol // 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); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ 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(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of 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 through `_extraData`. uint24 extraData; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // IERC165 // ============================== /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================== // 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`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev 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 standard. See `_mintERC2309` for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.1.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, * including the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at `_startTokenId()` * (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // 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 tokenId of the next token 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 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @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 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 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 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 returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ 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: 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. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view 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 { 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; } /** * 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 ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * 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); } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @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 See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _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 ''; } /** * @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)) } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _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 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 { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` 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 tokenId = startTokenId; uint256 end = startTokenId + quantity; do { emit Transfer(address(0), to, tokenId++); } while (tokenId < end); _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 { 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 Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { // Compute the slot. mstore(0x00, tokenId) mstore(0x20, tokenApprovalsPtr.slot) approvedAddressSlot := keccak256(0x00, 0x40) // Load the slot's value from storage. approvedAddress := sload(approvedAddressSlot) } } /** * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`. */ function _isOwnerOrApproved( address approvedAddress, address from, address msgSender ) private pure returns (bool result) { assembly { // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean. from := and(from, BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, BITMASK_ADDRESS) // `msgSender == from || msgSender == approvedAddress`. result := or(eq(msgSender, from), eq(msgSender, approvedAddress)) } } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function 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) = _getApprovedAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(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 `_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) = _getApprovedAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isOwnerOrApproved(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++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _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)) } } } } /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal { 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 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; } /** * @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 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 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 returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 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: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // File: contracts/Minion silu.sol //SPDX-License-Identifier: MIT pragma solidity ^0.8.4; contract AiMinionSilhouette is Ownable, ERC721A { uint256 constant public MAX_SUPPLY = 667; uint256 public publicPrice = 0.004 ether; uint256 constant public PUBLIC_MINT_LIMIT_TXN = 2; uint256 constant public PUBLIC_MINT_LIMIT = 4; string public revealedURI; // OpenSea CONTRACT_URI - https://docs.opensea.io/docs/contract-level-metadata string public CONTRACT_URI = "ipfs://Y4Q33GIMYD9JN1G323QWIAE3YQX73XXFZX"; bool public paused = true; bool public revealed = false; bool public freeSale = true; bool public publicSale = false; address constant internal DEV_ADDRESS = 0x21055f15ED91cD6BfFA157Ade3Ef5d94d62E1B7C; mapping(address => bool) public userMintedFree; mapping(address => uint256) public numUserMints; constructor(string memory _name, string memory _symbol, string memory _baseUri) ERC721A("AI MinionSilhouette", "aim") { } // This function is if you want to override the first Token ID# for ERC721A // Note: Fun fact - by overloading this method you save a small amount of gas for minting (technically just the first mint) function _startTokenId() internal view virtual override returns (uint256) { return 1; } function refundOverpay(uint256 price) private { if (msg.value > price) { (bool succ, ) = payable(msg.sender).call{ value: (msg.value - price) }(""); require(succ, "Transfer failed"); } else if (msg.value < price) { revert("Not enough ETH sent"); } } function freeMint(uint256 quantity) external payable mintCompliance(quantity) { require(freeSale, "Free sale inactive"); require(msg.value == 0, "This phase is free"); require(quantity == 1, "Only #1 free"); uint256 newSupply = totalSupply() + quantity; require(newSupply <= 111, "Not enough free supply"); require(!userMintedFree[msg.sender], "User max free limit"); userMintedFree[msg.sender] = true; if(newSupply == 111) { freeSale = false; publicSale = true; } _safeMint(msg.sender, quantity); } function publicMint(uint256 quantity) external payable mintCompliance(quantity) { require(publicSale, "Public sale inactive"); require(quantity <= PUBLIC_MINT_LIMIT_TXN, "Quantity too high"); uint256 price = publicPrice; uint256 currMints = numUserMints[msg.sender]; require(currMints + quantity <= PUBLIC_MINT_LIMIT, "User max mint limit"); refundOverpay(price * quantity); numUserMints[msg.sender] = (currMints + quantity); _safeMint(msg.sender, quantity); } // Note: walletOfOwner is only really necessary for enumerability when staking/using on websites etc. // That said, it's a public view so we can keep it in. // This could also be optimized if someone REALLY wanted, but it's just a public view. // Check the pinned tweets of 0xInuarashi for more ideas on this method! // For now, this is just the version that existed in v1. function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount); uint256 currentTokenId = 1; uint256 ownedTokenIndex = 0; while (ownedTokenIndex < ownerTokenCount && currentTokenId <= MAX_SUPPLY) { address currentTokenOwner = ownerOf(currentTokenId); if (currentTokenOwner == _owner) { ownedTokenIds[ownedTokenIndex] = currentTokenId; ownedTokenIndex++; } currentTokenId++; } return ownedTokenIds; } function tokenURI(uint256 _tokenId) public view override returns (string memory) { // Note: You don't REALLY need this require statement since nothing should be querying for non-existing tokens after reveal. // That said, it's a public view method so gas efficiency shouldn't come into play. require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token"); if (revealed) { return string(abi.encodePacked(revealedURI, Strings.toString(_tokenId), ".json")); } else { return revealedURI; } } // https://docs.opensea.io/docs/contract-level-metadata // https://ethereum.stackexchange.com/questions/110924/how-to-properly-implement-a-contracturi-for-on-chain-nfts function contractURI() public view returns (string memory) { return CONTRACT_URI; } function setPublicPrice(uint256 _publicPrice) public onlyOwner { publicPrice = _publicPrice; } function setBaseURI(string memory _baseUri) public onlyOwner { revealedURI = _baseUri; } function revealCollection(bool _revealed, string memory _baseUri) public onlyOwner { revealed = _revealed; revealedURI = _baseUri; } function setContractURI(string memory _contractURI) public onlyOwner { CONTRACT_URI = _contractURI; } // Note: Another option is to inherit Pausable without implementing the logic yourself. function setPaused(bool _state) public onlyOwner { paused = _state; } function setRevealed(bool _state) public onlyOwner { revealed = _state; } function setPublicEnabled(bool _state) public onlyOwner { publicSale = _state; freeSale = !_state; } function setFreeEnabled(bool _state) public onlyOwner { freeSale = _state; publicSale = !_state; } function withdraw() external payable onlyOwner { // Get the current funds to calculate initial percentages uint256 currBalance = address(this).balance; (bool succ, ) = payable(DEV_ADDRESS).call{ value: (currBalance * 10000) / 10000 }("0x21055f15ED91cD6BfFA157Ade3Ef5d94d62E1B7C"); require(succ, "Dev transfer failed"); } // Owner-only mint functionality to "Airdrop" mints to specific users // Note: These will likely end up hidden on OpenSea function mintToUser(uint256 quantity, address receiver) public onlyOwner mintCompliance(quantity) { _safeMint(receiver, quantity); } modifier mintCompliance(uint256 quantity) { require(!paused, "Contract is paused"); require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough mints left"); require(tx.origin == msg.sender, "No contract minting"); _; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_baseUri","type":"string"}],"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CONTRACT_URI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_LIMIT_TXN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"freeSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"mintToUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numUserMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_revealed","type":"bool"},{"internalType":"string","name":"_baseUri","type":"string"}],"name":"revealCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setFreeEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPublicEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicPrice","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","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":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userMintedFree","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
660e35fa931a000060095560e06040526029608081815290620028b360a03980516200003491600b9160209091019062000173565b50600c805463ffffffff1916620100011790553480156200005457600080fd5b50604051620028dc380380620028dc8339810160408190526200007791620002d0565b6040518060400160405280601381526020017f4149204d696e696f6e53696c686f7565747465000000000000000000000000008152506040518060400160405280600381526020016261696d60e81b815250620000e3620000dd6200011f60201b60201c565b62000123565b8151620000f890600390602085019062000173565b5080516200010e90600490602084019062000173565b506001805550620003b49350505050565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001819062000361565b90600052602060002090601f016020900481019282620001a55760008555620001f0565b82601f10620001c057805160ff1916838001178555620001f0565b82800160010185558215620001f0579182015b82811115620001f0578251825591602001919060010190620001d3565b50620001fe92915062000202565b5090565b5b80821115620001fe576000815560010162000203565b600082601f8301126200022b57600080fd5b81516001600160401b03808211156200024857620002486200039e565b604051601f8301601f19908116603f011681019082821181831017156200027357620002736200039e565b816040528381526020925086838588010111156200029057600080fd5b600091505b83821015620002b4578582018301518183018401529082019062000295565b83821115620002c65760008385830101525b9695505050505050565b600080600060608486031215620002e657600080fd5b83516001600160401b0380821115620002fe57600080fd5b6200030c8783880162000219565b945060208601519150808211156200032357600080fd5b620003318783880162000219565b935060408601519150808211156200034857600080fd5b50620003578682870162000219565b9150509250925092565b600181811c908216806200037657607f821691505b602082108114156200039857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6124ef80620003c46000396000f3fe60806040526004361061025c5760003560e01c806370a0823111610144578063a4b41a15116100b6578063c87b56dd1161007a578063c87b56dd146106da578063e0a80853146106fa578063e8a3d4851461071a578063e985e9c51461072f578063f2fde38b14610778578063f7e8d6ea1461079857600080fd5b8063a4b41a151461064f578063a945bf801461066f578063b88d4fde14610685578063bceae77b146106a5578063c6275255146106ba57600080fd5b806388dedc141161010857806388dedc141461059c5780638da5cb5b146105bc5780639007bd72146105da578063938e3d7b146105fa57806395d89b411461061a578063a22cb4651461062f57600080fd5b806370a0823114610507578063715018a6146105275780637aeb72421461053c5780637af3a1af146105695780637c928fe91461058957600080fd5b806333bc1c5c116101dd57806355f804b3116101a157806355f804b31461044857806356b4f673146104685780635c975abb1461047d5780635ed3e25e146104975780636352211e146104b757806364f64076146104d757600080fd5b806333bc1c5c146103b35780633ccfd60b146103d457806342842e0e146103dc578063438b6300146103fc578063518302271461042957600080fd5b806318160ddd1161022457806318160ddd1461033257806323b872dd146103555780632db11544146103755780632fecf20b1461038857806332cb6b0c1461039d57600080fd5b806301ffc9a71461026157806306fdde0314610296578063081812fc146102b8578063095ea7b3146102f057806316c38b3c14610312575b600080fd5b34801561026d57600080fd5b5061028161027c366004612054565b6107ad565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102ab6107ff565b60405161028d9190612283565b3480156102c457600080fd5b506102d86102d33660046120c3565b610891565b6040516001600160a01b03909116815260200161028d565b3480156102fc57600080fd5b5061031061030b366004611fc1565b6108d5565b005b34801561031e57600080fd5b5061031061032d366004611feb565b610975565b34801561033e57600080fd5b506103476109bb565b60405190815260200161028d565b34801561036157600080fd5b50610310610370366004611edf565b6109c9565b6103106103833660046120c3565b610b5a565b34801561039457600080fd5b50610347600281565b3480156103a957600080fd5b5061034761029b81565b3480156103bf57600080fd5b50600c54610281906301000000900460ff1681565b610310610d09565b3480156103e857600080fd5b506103106103f7366004611edf565b610e2b565b34801561040857600080fd5b5061041c610417366004611e91565b610e4b565b60405161028d919061223f565b34801561043557600080fd5b50600c5461028190610100900460ff1681565b34801561045457600080fd5b5061031061046336600461208e565b610f2c565b34801561047457600080fd5b506102ab610f69565b34801561048957600080fd5b50600c546102819060ff1681565b3480156104a357600080fd5b506103106104b2366004612006565b610ff7565b3480156104c357600080fd5b506102d86104d23660046120c3565b611047565b3480156104e357600080fd5b506102816104f2366004611e91565b600d6020526000908152604090205460ff1681565b34801561051357600080fd5b50610347610522366004611e91565b611052565b34801561053357600080fd5b506103106110a1565b34801561054857600080fd5b50610347610557366004611e91565b600e6020526000908152604090205481565b34801561057557600080fd5b50610310610584366004611feb565b6110d7565b6103106105973660046120c3565b611130565b3480156105a857600080fd5b506103106105b7366004611feb565b61136f565b3480156105c857600080fd5b506000546001600160a01b03166102d8565b3480156105e657600080fd5b506103106105f53660046120dc565b6113c9565b34801561060657600080fd5b5061031061061536600461208e565b611475565b34801561062657600080fd5b506102ab6114b2565b34801561063b57600080fd5b5061031061064a366004611f97565b6114c1565b34801561065b57600080fd5b50600c546102819062010000900460ff1681565b34801561067b57600080fd5b5061034760095481565b34801561069157600080fd5b506103106106a0366004611f1b565b611557565b3480156106b157600080fd5b50610347600481565b3480156106c657600080fd5b506103106106d53660046120c3565b61159b565b3480156106e657600080fd5b506102ab6106f53660046120c3565b6115ca565b34801561070657600080fd5b50610310610715366004611feb565b611712565b34801561072657600080fd5b506102ab611756565b34801561073b57600080fd5b5061028161074a366004611eac565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561078457600080fd5b50610310610793366004611e91565b611765565b3480156107a457600080fd5b506102ab611800565b60006301ffc9a760e01b6001600160e01b0319831614806107de57506380ac58cd60e01b6001600160e01b03198316145b806107f95750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606003805461080e906123e1565b80601f016020809104026020016040519081016040528092919081815260200182805461083a906123e1565b80156108875780601f1061085c57610100808354040283529160200191610887565b820191906000526020600020905b81548152906001019060200180831161086a57829003601f168201915b5050505050905090565b600061089c8261180d565b6108b9576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006108e082611047565b9050336001600160a01b03821614610919576108fc813361074a565b610919576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000546001600160a01b031633146109a85760405162461bcd60e51b815260040161099f906122c3565b60405180910390fd5b600c805460ff1916911515919091179055565b600254600154036000190190565b60006109d482611842565b9050836001600160a01b0316816001600160a01b031614610a075760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b03881690911417610a5457610a37863361074a565b610a5457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610a7b57604051633a954ecd60e21b815260040160405180910390fd5b8015610a8657600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040902055600160e11b8316610b115760018401600081815260056020526040902054610b0f576001548114610b0f5760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b600c54819060ff1615610b7f5760405162461bcd60e51b815260040161099f906122f8565b61029b81610b8b6109bb565b610b959190612353565b1115610bb35760405162461bcd60e51b815260040161099f90612324565b323314610bd25760405162461bcd60e51b815260040161099f90612296565b600c546301000000900460ff16610c225760405162461bcd60e51b81526020600482015260146024820152735075626c69632073616c6520696e61637469766560601b604482015260640161099f565b6002821115610c675760405162461bcd60e51b81526020600482015260116024820152700a2eac2dce8d2e8f240e8dede40d0d2ced607b1b604482015260640161099f565b600954336000908152600e60205260409020546004610c868583612353565b1115610cca5760405162461bcd60e51b8152602060048201526013602482015272155cd95c881b585e081b5a5b9d081b1a5b5a5d606a1b604482015260640161099f565b610cdc610cd7858461237f565b6118b2565b610ce68482612353565b336000818152600e6020526040902091909155610d039085611991565b50505050565b6000546001600160a01b03163314610d335760405162461bcd60e51b815260040161099f906122c3565b4760007321055f15ed91cd6bffa157ade3ef5d94d62e1b7c612710610d58848261237f565b610d62919061236b565b6040517f30783231303535663135454439316344364266464131353741646533456635648152693934643632453142374360b01b6020820152602a0160006040518083038185875af1925050503d8060008114610ddb576040519150601f19603f3d011682016040523d82523d6000602084013e610de0565b606091505b5050905080610e275760405162461bcd60e51b815260206004820152601360248201527211195d881d1c985b9cd9995c8819985a5b1959606a1b604482015260640161099f565b5050565b610e4683838360405180602001604052806000815250611557565b505050565b60606000610e5883611052565b905060008167ffffffffffffffff811115610e7557610e7561248d565b604051908082528060200260200182016040528015610e9e578160200160208202803683370190505b509050600160005b8381108015610eb7575061029b8211155b15610f22576000610ec783611047565b9050866001600160a01b0316816001600160a01b03161415610f0f5782848381518110610ef657610ef6612477565b602090810291909101015281610f0b8161241c565b9250505b82610f198161241c565b93505050610ea6565b5090949350505050565b6000546001600160a01b03163314610f565760405162461bcd60e51b815260040161099f906122c3565b8051610e2790600a906020840190611d3b565b600b8054610f76906123e1565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa2906123e1565b8015610fef5780601f10610fc457610100808354040283529160200191610fef565b820191906000526020600020905b815481529060010190602001808311610fd257829003601f168201915b505050505081565b6000546001600160a01b031633146110215760405162461bcd60e51b815260040161099f906122c3565b600c805461ff001916610100841515021790558051610e4690600a906020840190611d3b565b60006107f982611842565b60006001600160a01b03821661107b576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b031633146110cb5760405162461bcd60e51b815260040161099f906122c3565b6110d560006119ab565b565b6000546001600160a01b031633146111015760405162461bcd60e51b815260040161099f906122c3565b600c805463ffff000019166301000000921580159390930262ff00001916176201000092909202919091179055565b600c54819060ff16156111555760405162461bcd60e51b815260040161099f906122f8565b61029b816111616109bb565b61116b9190612353565b11156111895760405162461bcd60e51b815260040161099f90612324565b3233146111a85760405162461bcd60e51b815260040161099f90612296565b600c5462010000900460ff166111f55760405162461bcd60e51b8152602060048201526012602482015271467265652073616c6520696e61637469766560701b604482015260640161099f565b34156112385760405162461bcd60e51b815260206004820152601260248201527154686973207068617365206973206672656560701b604482015260640161099f565b816001146112775760405162461bcd60e51b815260206004820152600c60248201526b4f6e6c79202331206672656560a01b604482015260640161099f565b6000826112826109bb565b61128c9190612353565b9050606f8111156112d85760405162461bcd60e51b81526020600482015260166024820152754e6f7420656e6f756768206672656520737570706c7960501b604482015260640161099f565b336000908152600d602052604090205460ff161561132e5760405162461bcd60e51b8152602060048201526013602482015272155cd95c881b585e08199c9959481b1a5b5a5d606a1b604482015260640161099f565b336000908152600d60205260409020805460ff19166001179055606f81141561136557600c805463ffff0000191663010000001790555b610e463384611991565b6000546001600160a01b031633146113995760405162461bcd60e51b815260040161099f906122c3565b600c805463ffff0000191662010000921580159390930263ff000000191617630100000092909202919091179055565b6000546001600160a01b031633146113f35760405162461bcd60e51b815260040161099f906122c3565b600c54829060ff16156114185760405162461bcd60e51b815260040161099f906122f8565b61029b816114246109bb565b61142e9190612353565b111561144c5760405162461bcd60e51b815260040161099f90612324565b32331461146b5760405162461bcd60e51b815260040161099f90612296565b610e468284611991565b6000546001600160a01b0316331461149f5760405162461bcd60e51b815260040161099f906122c3565b8051610e2790600b906020840190611d3b565b60606004805461080e906123e1565b6001600160a01b0382163314156114eb5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6115628484846109c9565b6001600160a01b0383163b15610d035761157e848484846119fb565b610d03576040516368d2bf6b60e11b815260040160405180910390fd5b6000546001600160a01b031633146115c55760405162461bcd60e51b815260040161099f906122c3565b600955565b60606115d58261180d565b6116395760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161099f565b600c54610100900460ff161561167b57600a61165483611af3565b604051602001611665929190612147565b6040516020818303038152906040529050919050565b600a8054611688906123e1565b80601f01602080910402602001604051908101604052809291908181526020018280546116b4906123e1565b80156117015780601f106116d657610100808354040283529160200191611701565b820191906000526020600020905b8154815290600101906020018083116116e457829003601f168201915b50505050509050919050565b919050565b6000546001600160a01b0316331461173c5760405162461bcd60e51b815260040161099f906122c3565b600c80549115156101000261ff0019909216919091179055565b6060600b805461080e906123e1565b6000546001600160a01b0316331461178f5760405162461bcd60e51b815260040161099f906122c3565b6001600160a01b0381166117f45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161099f565b6117fd816119ab565b50565b600a8054610f76906123e1565b600081600111158015611821575060015482105b80156107f9575050600090815260056020526040902054600160e01b161590565b600081806001116118995760015481101561189957600081815260056020526040902054600160e01b8116611897575b80611890575060001901600081815260056020526040902054611872565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b8034111561194b576000336118c7833461239e565b604051600081818185875af1925050503d8060008114611903576040519150601f19603f3d011682016040523d82523d6000602084013e611908565b606091505b5050905080610e275760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b604482015260640161099f565b803410156117fd5760405162461bcd60e51b8152602060048201526013602482015272139bdd08195b9bdd59da08115512081cd95b9d606a1b604482015260640161099f565b610e27828260405180602001604052806000815250611bf1565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611a30903390899088908890600401612202565b602060405180830381600087803b158015611a4a57600080fd5b505af1925050508015611a7a575060408051601f3d908101601f19168201909252611a7791810190612071565b60015b611ad5573d808015611aa8576040519150601f19603f3d011682016040523d82523d6000602084013e611aad565b606091505b508051611acd576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606081611b175750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b415780611b2b8161241c565b9150611b3a9050600a8361236b565b9150611b1b565b60008167ffffffffffffffff811115611b5c57611b5c61248d565b6040519080825280601f01601f191660200182016040528015611b86576020820181803683370190505b5090505b8415611aeb57611b9b60018361239e565b9150611ba8600a86612437565b611bb3906030612353565b60f81b818381518110611bc857611bc8612477565b60200101906001600160f81b031916908160001a905350611bea600a8661236b565b9450611b8a565b611bfb8383611c5e565b6001600160a01b0383163b15610e46576001548281035b611c2560008683806001019450866119fb565b611c42576040516368d2bf6b60e11b815260040160405180910390fd5b818110611c12578160015414611c5757600080fd5b5050505050565b6001546001600160a01b038316611c8757604051622e076360e81b815260040160405180910390fd5b81611ca55760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260066020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260056020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611cef5760015550505050565b828054611d47906123e1565b90600052602060002090601f016020900481019282611d695760008555611daf565b82601f10611d8257805160ff1916838001178555611daf565b82800160010185558215611daf579182015b82811115611daf578251825591602001919060010190611d94565b50611dbb929150611dbf565b5090565b5b80821115611dbb5760008155600101611dc0565b600067ffffffffffffffff80841115611def57611def61248d565b604051601f8501601f19908116603f01168101908282118183101715611e1757611e1761248d565b81604052809350858152868686011115611e3057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461170d57600080fd5b8035801515811461170d57600080fd5b600082601f830112611e8257600080fd5b61189083833560208501611dd4565b600060208284031215611ea357600080fd5b61189082611e4a565b60008060408385031215611ebf57600080fd5b611ec883611e4a565b9150611ed660208401611e4a565b90509250929050565b600080600060608486031215611ef457600080fd5b611efd84611e4a565b9250611f0b60208501611e4a565b9150604084013590509250925092565b60008060008060808587031215611f3157600080fd5b611f3a85611e4a565b9350611f4860208601611e4a565b925060408501359150606085013567ffffffffffffffff811115611f6b57600080fd5b8501601f81018713611f7c57600080fd5b611f8b87823560208401611dd4565b91505092959194509250565b60008060408385031215611faa57600080fd5b611fb383611e4a565b9150611ed660208401611e61565b60008060408385031215611fd457600080fd5b611fdd83611e4a565b946020939093013593505050565b600060208284031215611ffd57600080fd5b61189082611e61565b6000806040838503121561201957600080fd5b61202283611e61565b9150602083013567ffffffffffffffff81111561203e57600080fd5b61204a85828601611e71565b9150509250929050565b60006020828403121561206657600080fd5b8135611890816124a3565b60006020828403121561208357600080fd5b8151611890816124a3565b6000602082840312156120a057600080fd5b813567ffffffffffffffff8111156120b757600080fd5b611aeb84828501611e71565b6000602082840312156120d557600080fd5b5035919050565b600080604083850312156120ef57600080fd5b82359150611ed660208401611e4a565b600081518084526121178160208601602086016123b5565b601f01601f19169290920160200192915050565b6000815161213d8185602086016123b5565b9290920192915050565b600080845481600182811c91508083168061216357607f831692505b602080841082141561218357634e487b7160e01b86526022600452602486fd5b81801561219757600181146121a8576121d5565b60ff198616895284890196506121d5565b60008b81526020902060005b868110156121cd5781548b8201529085019083016121b4565b505084890196505b5050505050506121f96121e8828661212b565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612235908301846120ff565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156122775783518352928401929184019160010161225b565b50909695505050505050565b60208152600061189060208301846120ff565b6020808252601390820152724e6f20636f6e7472616374206d696e74696e6760681b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526012908201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b604082015260600190565b602080825260159082015274139bdd08195b9bdd59da081b5a5b9d1cc81b19599d605a1b604082015260600190565b600082198211156123665761236661244b565b500190565b60008261237a5761237a612461565b500490565b60008160001904831182151516156123995761239961244b565b500290565b6000828210156123b0576123b061244b565b500390565b60005b838110156123d05781810151838201526020016123b8565b83811115610d035750506000910152565b600181811c908216806123f557607f821691505b6020821081141561241657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124305761243061244b565b5060010190565b60008261244657612446612461565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146117fd57600080fdfea264697066735822122033938970418fede6dcf6ac5ab5c86c3b9624218b1e034bbc4f0e32460e8665cf64736f6c63430008070033697066733a2f2f593451333347494d5944394a4e314733323351574941453359515837335858465a58000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000134149204d696e696f6e53696c686f756574746500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000361696d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d523777704a33687479394d426d53336856556f457a4d59524652706a7639616d377a573151766e78795375432f00000000000000000000
Deployed Bytecode
0x60806040526004361061025c5760003560e01c806370a0823111610144578063a4b41a15116100b6578063c87b56dd1161007a578063c87b56dd146106da578063e0a80853146106fa578063e8a3d4851461071a578063e985e9c51461072f578063f2fde38b14610778578063f7e8d6ea1461079857600080fd5b8063a4b41a151461064f578063a945bf801461066f578063b88d4fde14610685578063bceae77b146106a5578063c6275255146106ba57600080fd5b806388dedc141161010857806388dedc141461059c5780638da5cb5b146105bc5780639007bd72146105da578063938e3d7b146105fa57806395d89b411461061a578063a22cb4651461062f57600080fd5b806370a0823114610507578063715018a6146105275780637aeb72421461053c5780637af3a1af146105695780637c928fe91461058957600080fd5b806333bc1c5c116101dd57806355f804b3116101a157806355f804b31461044857806356b4f673146104685780635c975abb1461047d5780635ed3e25e146104975780636352211e146104b757806364f64076146104d757600080fd5b806333bc1c5c146103b35780633ccfd60b146103d457806342842e0e146103dc578063438b6300146103fc578063518302271461042957600080fd5b806318160ddd1161022457806318160ddd1461033257806323b872dd146103555780632db11544146103755780632fecf20b1461038857806332cb6b0c1461039d57600080fd5b806301ffc9a71461026157806306fdde0314610296578063081812fc146102b8578063095ea7b3146102f057806316c38b3c14610312575b600080fd5b34801561026d57600080fd5b5061028161027c366004612054565b6107ad565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102ab6107ff565b60405161028d9190612283565b3480156102c457600080fd5b506102d86102d33660046120c3565b610891565b6040516001600160a01b03909116815260200161028d565b3480156102fc57600080fd5b5061031061030b366004611fc1565b6108d5565b005b34801561031e57600080fd5b5061031061032d366004611feb565b610975565b34801561033e57600080fd5b506103476109bb565b60405190815260200161028d565b34801561036157600080fd5b50610310610370366004611edf565b6109c9565b6103106103833660046120c3565b610b5a565b34801561039457600080fd5b50610347600281565b3480156103a957600080fd5b5061034761029b81565b3480156103bf57600080fd5b50600c54610281906301000000900460ff1681565b610310610d09565b3480156103e857600080fd5b506103106103f7366004611edf565b610e2b565b34801561040857600080fd5b5061041c610417366004611e91565b610e4b565b60405161028d919061223f565b34801561043557600080fd5b50600c5461028190610100900460ff1681565b34801561045457600080fd5b5061031061046336600461208e565b610f2c565b34801561047457600080fd5b506102ab610f69565b34801561048957600080fd5b50600c546102819060ff1681565b3480156104a357600080fd5b506103106104b2366004612006565b610ff7565b3480156104c357600080fd5b506102d86104d23660046120c3565b611047565b3480156104e357600080fd5b506102816104f2366004611e91565b600d6020526000908152604090205460ff1681565b34801561051357600080fd5b50610347610522366004611e91565b611052565b34801561053357600080fd5b506103106110a1565b34801561054857600080fd5b50610347610557366004611e91565b600e6020526000908152604090205481565b34801561057557600080fd5b50610310610584366004611feb565b6110d7565b6103106105973660046120c3565b611130565b3480156105a857600080fd5b506103106105b7366004611feb565b61136f565b3480156105c857600080fd5b506000546001600160a01b03166102d8565b3480156105e657600080fd5b506103106105f53660046120dc565b6113c9565b34801561060657600080fd5b5061031061061536600461208e565b611475565b34801561062657600080fd5b506102ab6114b2565b34801561063b57600080fd5b5061031061064a366004611f97565b6114c1565b34801561065b57600080fd5b50600c546102819062010000900460ff1681565b34801561067b57600080fd5b5061034760095481565b34801561069157600080fd5b506103106106a0366004611f1b565b611557565b3480156106b157600080fd5b50610347600481565b3480156106c657600080fd5b506103106106d53660046120c3565b61159b565b3480156106e657600080fd5b506102ab6106f53660046120c3565b6115ca565b34801561070657600080fd5b50610310610715366004611feb565b611712565b34801561072657600080fd5b506102ab611756565b34801561073b57600080fd5b5061028161074a366004611eac565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b34801561078457600080fd5b50610310610793366004611e91565b611765565b3480156107a457600080fd5b506102ab611800565b60006301ffc9a760e01b6001600160e01b0319831614806107de57506380ac58cd60e01b6001600160e01b03198316145b806107f95750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606003805461080e906123e1565b80601f016020809104026020016040519081016040528092919081815260200182805461083a906123e1565b80156108875780601f1061085c57610100808354040283529160200191610887565b820191906000526020600020905b81548152906001019060200180831161086a57829003601f168201915b5050505050905090565b600061089c8261180d565b6108b9576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006108e082611047565b9050336001600160a01b03821614610919576108fc813361074a565b610919576040516367d9dca160e11b815260040160405180910390fd5b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000546001600160a01b031633146109a85760405162461bcd60e51b815260040161099f906122c3565b60405180910390fd5b600c805460ff1916911515919091179055565b600254600154036000190190565b60006109d482611842565b9050836001600160a01b0316816001600160a01b031614610a075760405162a1148160e81b815260040160405180910390fd5b60008281526007602052604090208054338082146001600160a01b03881690911417610a5457610a37863361074a565b610a5457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610a7b57604051633a954ecd60e21b815260040160405180910390fd5b8015610a8657600082555b6001600160a01b038681166000908152600660205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260056020526040902055600160e11b8316610b115760018401600081815260056020526040902054610b0f576001548114610b0f5760008181526005602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b600c54819060ff1615610b7f5760405162461bcd60e51b815260040161099f906122f8565b61029b81610b8b6109bb565b610b959190612353565b1115610bb35760405162461bcd60e51b815260040161099f90612324565b323314610bd25760405162461bcd60e51b815260040161099f90612296565b600c546301000000900460ff16610c225760405162461bcd60e51b81526020600482015260146024820152735075626c69632073616c6520696e61637469766560601b604482015260640161099f565b6002821115610c675760405162461bcd60e51b81526020600482015260116024820152700a2eac2dce8d2e8f240e8dede40d0d2ced607b1b604482015260640161099f565b600954336000908152600e60205260409020546004610c868583612353565b1115610cca5760405162461bcd60e51b8152602060048201526013602482015272155cd95c881b585e081b5a5b9d081b1a5b5a5d606a1b604482015260640161099f565b610cdc610cd7858461237f565b6118b2565b610ce68482612353565b336000818152600e6020526040902091909155610d039085611991565b50505050565b6000546001600160a01b03163314610d335760405162461bcd60e51b815260040161099f906122c3565b4760007321055f15ed91cd6bffa157ade3ef5d94d62e1b7c612710610d58848261237f565b610d62919061236b565b6040517f30783231303535663135454439316344364266464131353741646533456635648152693934643632453142374360b01b6020820152602a0160006040518083038185875af1925050503d8060008114610ddb576040519150601f19603f3d011682016040523d82523d6000602084013e610de0565b606091505b5050905080610e275760405162461bcd60e51b815260206004820152601360248201527211195d881d1c985b9cd9995c8819985a5b1959606a1b604482015260640161099f565b5050565b610e4683838360405180602001604052806000815250611557565b505050565b60606000610e5883611052565b905060008167ffffffffffffffff811115610e7557610e7561248d565b604051908082528060200260200182016040528015610e9e578160200160208202803683370190505b509050600160005b8381108015610eb7575061029b8211155b15610f22576000610ec783611047565b9050866001600160a01b0316816001600160a01b03161415610f0f5782848381518110610ef657610ef6612477565b602090810291909101015281610f0b8161241c565b9250505b82610f198161241c565b93505050610ea6565b5090949350505050565b6000546001600160a01b03163314610f565760405162461bcd60e51b815260040161099f906122c3565b8051610e2790600a906020840190611d3b565b600b8054610f76906123e1565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa2906123e1565b8015610fef5780601f10610fc457610100808354040283529160200191610fef565b820191906000526020600020905b815481529060010190602001808311610fd257829003601f168201915b505050505081565b6000546001600160a01b031633146110215760405162461bcd60e51b815260040161099f906122c3565b600c805461ff001916610100841515021790558051610e4690600a906020840190611d3b565b60006107f982611842565b60006001600160a01b03821661107b576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526006602052604090205467ffffffffffffffff1690565b6000546001600160a01b031633146110cb5760405162461bcd60e51b815260040161099f906122c3565b6110d560006119ab565b565b6000546001600160a01b031633146111015760405162461bcd60e51b815260040161099f906122c3565b600c805463ffff000019166301000000921580159390930262ff00001916176201000092909202919091179055565b600c54819060ff16156111555760405162461bcd60e51b815260040161099f906122f8565b61029b816111616109bb565b61116b9190612353565b11156111895760405162461bcd60e51b815260040161099f90612324565b3233146111a85760405162461bcd60e51b815260040161099f90612296565b600c5462010000900460ff166111f55760405162461bcd60e51b8152602060048201526012602482015271467265652073616c6520696e61637469766560701b604482015260640161099f565b34156112385760405162461bcd60e51b815260206004820152601260248201527154686973207068617365206973206672656560701b604482015260640161099f565b816001146112775760405162461bcd60e51b815260206004820152600c60248201526b4f6e6c79202331206672656560a01b604482015260640161099f565b6000826112826109bb565b61128c9190612353565b9050606f8111156112d85760405162461bcd60e51b81526020600482015260166024820152754e6f7420656e6f756768206672656520737570706c7960501b604482015260640161099f565b336000908152600d602052604090205460ff161561132e5760405162461bcd60e51b8152602060048201526013602482015272155cd95c881b585e08199c9959481b1a5b5a5d606a1b604482015260640161099f565b336000908152600d60205260409020805460ff19166001179055606f81141561136557600c805463ffff0000191663010000001790555b610e463384611991565b6000546001600160a01b031633146113995760405162461bcd60e51b815260040161099f906122c3565b600c805463ffff0000191662010000921580159390930263ff000000191617630100000092909202919091179055565b6000546001600160a01b031633146113f35760405162461bcd60e51b815260040161099f906122c3565b600c54829060ff16156114185760405162461bcd60e51b815260040161099f906122f8565b61029b816114246109bb565b61142e9190612353565b111561144c5760405162461bcd60e51b815260040161099f90612324565b32331461146b5760405162461bcd60e51b815260040161099f90612296565b610e468284611991565b6000546001600160a01b0316331461149f5760405162461bcd60e51b815260040161099f906122c3565b8051610e2790600b906020840190611d3b565b60606004805461080e906123e1565b6001600160a01b0382163314156114eb5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6115628484846109c9565b6001600160a01b0383163b15610d035761157e848484846119fb565b610d03576040516368d2bf6b60e11b815260040160405180910390fd5b6000546001600160a01b031633146115c55760405162461bcd60e51b815260040161099f906122c3565b600955565b60606115d58261180d565b6116395760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161099f565b600c54610100900460ff161561167b57600a61165483611af3565b604051602001611665929190612147565b6040516020818303038152906040529050919050565b600a8054611688906123e1565b80601f01602080910402602001604051908101604052809291908181526020018280546116b4906123e1565b80156117015780601f106116d657610100808354040283529160200191611701565b820191906000526020600020905b8154815290600101906020018083116116e457829003601f168201915b50505050509050919050565b919050565b6000546001600160a01b0316331461173c5760405162461bcd60e51b815260040161099f906122c3565b600c80549115156101000261ff0019909216919091179055565b6060600b805461080e906123e1565b6000546001600160a01b0316331461178f5760405162461bcd60e51b815260040161099f906122c3565b6001600160a01b0381166117f45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161099f565b6117fd816119ab565b50565b600a8054610f76906123e1565b600081600111158015611821575060015482105b80156107f9575050600090815260056020526040902054600160e01b161590565b600081806001116118995760015481101561189957600081815260056020526040902054600160e01b8116611897575b80611890575060001901600081815260056020526040902054611872565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b8034111561194b576000336118c7833461239e565b604051600081818185875af1925050503d8060008114611903576040519150601f19603f3d011682016040523d82523d6000602084013e611908565b606091505b5050905080610e275760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b604482015260640161099f565b803410156117fd5760405162461bcd60e51b8152602060048201526013602482015272139bdd08195b9bdd59da08115512081cd95b9d606a1b604482015260640161099f565b610e27828260405180602001604052806000815250611bf1565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611a30903390899088908890600401612202565b602060405180830381600087803b158015611a4a57600080fd5b505af1925050508015611a7a575060408051601f3d908101601f19168201909252611a7791810190612071565b60015b611ad5573d808015611aa8576040519150601f19603f3d011682016040523d82523d6000602084013e611aad565b606091505b508051611acd576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606081611b175750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b415780611b2b8161241c565b9150611b3a9050600a8361236b565b9150611b1b565b60008167ffffffffffffffff811115611b5c57611b5c61248d565b6040519080825280601f01601f191660200182016040528015611b86576020820181803683370190505b5090505b8415611aeb57611b9b60018361239e565b9150611ba8600a86612437565b611bb3906030612353565b60f81b818381518110611bc857611bc8612477565b60200101906001600160f81b031916908160001a905350611bea600a8661236b565b9450611b8a565b611bfb8383611c5e565b6001600160a01b0383163b15610e46576001548281035b611c2560008683806001019450866119fb565b611c42576040516368d2bf6b60e11b815260040160405180910390fd5b818110611c12578160015414611c5757600080fd5b5050505050565b6001546001600160a01b038316611c8757604051622e076360e81b815260040160405180910390fd5b81611ca55760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260066020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260056020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611cef5760015550505050565b828054611d47906123e1565b90600052602060002090601f016020900481019282611d695760008555611daf565b82601f10611d8257805160ff1916838001178555611daf565b82800160010185558215611daf579182015b82811115611daf578251825591602001919060010190611d94565b50611dbb929150611dbf565b5090565b5b80821115611dbb5760008155600101611dc0565b600067ffffffffffffffff80841115611def57611def61248d565b604051601f8501601f19908116603f01168101908282118183101715611e1757611e1761248d565b81604052809350858152868686011115611e3057600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461170d57600080fd5b8035801515811461170d57600080fd5b600082601f830112611e8257600080fd5b61189083833560208501611dd4565b600060208284031215611ea357600080fd5b61189082611e4a565b60008060408385031215611ebf57600080fd5b611ec883611e4a565b9150611ed660208401611e4a565b90509250929050565b600080600060608486031215611ef457600080fd5b611efd84611e4a565b9250611f0b60208501611e4a565b9150604084013590509250925092565b60008060008060808587031215611f3157600080fd5b611f3a85611e4a565b9350611f4860208601611e4a565b925060408501359150606085013567ffffffffffffffff811115611f6b57600080fd5b8501601f81018713611f7c57600080fd5b611f8b87823560208401611dd4565b91505092959194509250565b60008060408385031215611faa57600080fd5b611fb383611e4a565b9150611ed660208401611e61565b60008060408385031215611fd457600080fd5b611fdd83611e4a565b946020939093013593505050565b600060208284031215611ffd57600080fd5b61189082611e61565b6000806040838503121561201957600080fd5b61202283611e61565b9150602083013567ffffffffffffffff81111561203e57600080fd5b61204a85828601611e71565b9150509250929050565b60006020828403121561206657600080fd5b8135611890816124a3565b60006020828403121561208357600080fd5b8151611890816124a3565b6000602082840312156120a057600080fd5b813567ffffffffffffffff8111156120b757600080fd5b611aeb84828501611e71565b6000602082840312156120d557600080fd5b5035919050565b600080604083850312156120ef57600080fd5b82359150611ed660208401611e4a565b600081518084526121178160208601602086016123b5565b601f01601f19169290920160200192915050565b6000815161213d8185602086016123b5565b9290920192915050565b600080845481600182811c91508083168061216357607f831692505b602080841082141561218357634e487b7160e01b86526022600452602486fd5b81801561219757600181146121a8576121d5565b60ff198616895284890196506121d5565b60008b81526020902060005b868110156121cd5781548b8201529085019083016121b4565b505084890196505b5050505050506121f96121e8828661212b565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612235908301846120ff565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156122775783518352928401929184019160010161225b565b50909695505050505050565b60208152600061189060208301846120ff565b6020808252601390820152724e6f20636f6e7472616374206d696e74696e6760681b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526012908201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b604082015260600190565b602080825260159082015274139bdd08195b9bdd59da081b5a5b9d1cc81b19599d605a1b604082015260600190565b600082198211156123665761236661244b565b500190565b60008261237a5761237a612461565b500490565b60008160001904831182151516156123995761239961244b565b500290565b6000828210156123b0576123b061244b565b500390565b60005b838110156123d05781810151838201526020016123b8565b83811115610d035750506000910152565b600181811c908216806123f557607f821691505b6020821081141561241657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124305761243061244b565b5060010190565b60008261244657612446612461565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146117fd57600080fdfea264697066735822122033938970418fede6dcf6ac5ab5c86c3b9624218b1e034bbc4f0e32460e8665cf64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000134149204d696e696f6e53696c686f756574746500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000361696d00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d523777704a33687479394d426d53336856556f457a4d59524652706a7639616d377a573151766e78795375432f00000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): AI MinionSilhouette
Arg [1] : _symbol (string): aim
Arg [2] : _baseUri (string): ipfs://QmR7wpJ3hty9MBmS3hVUoEzMYRFRpjv9am7zW1QvnxySuC/
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000013
Arg [4] : 4149204d696e696f6e53696c686f756574746500000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 61696d0000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d523777704a33687479394d426d53336856556f457a4d59
Arg [9] : 524652706a7639616d377a573151766e78795375432f00000000000000000000
Deployed Bytecode Sourcemap
50413:6945:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20174:615;;;;;;;;;;-1:-1:-1;20174:615:0;;;;;:::i;:::-;;:::i;:::-;;;8971:14:1;;8964:22;8946:41;;8934:2;8919:18;20174:615:0;;;;;;;;25821:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27767:204::-;;;;;;;;;;-1:-1:-1;27767:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7632:32:1;;;7614:51;;7602:2;7587:18;27767:204:0;7468:203:1;27315:386:0;;;;;;;;;;-1:-1:-1;27315:386:0;;;;;:::i;:::-;;:::i;:::-;;55957:83;;;;;;;;;;-1:-1:-1;55957:83:0;;;;;:::i;:::-;;:::i;19228:315::-;;;;;;;;;;;;;:::i;:::-;;;15414:25:1;;;15402:2;15387:18;19228:315:0;15268:177:1;37032:2800:0;;;;;;;;;;-1:-1:-1;37032:2800:0;;;;;:::i;:::-;;:::i;52732:571::-;;;;;;:::i;:::-;;:::i;50572:49::-;;;;;;;;;;;;50620:1;50572:49;;50468:40;;;;;;;;;;;;50505:3;50468:40;;50984:30;;;;;;;;;;-1:-1:-1;50984:30:0;;;;;;;;;;;56403:387;;;:::i;28657:185::-;;;;;;;;;;-1:-1:-1;28657:185:0;;;;;:::i;:::-;;:::i;53733:689::-;;;;;;;;;;-1:-1:-1;53733:689:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;50913:28::-;;;;;;;;;;-1:-1:-1;50913:28:0;;;;;;;;;;;55455:102;;;;;;;;;;-1:-1:-1;55455:102:0;;;;;:::i;:::-;;:::i;50800:72::-;;;;;;;;;;;;;:::i;50881:25::-;;;;;;;;;;-1:-1:-1;50881:25:0;;;;;;;;55567:155;;;;;;;;;;-1:-1:-1;55567:155:0;;;;;:::i;:::-;;:::i;25610:144::-;;;;;;;;;;-1:-1:-1;25610:144:0;;;;;:::i;:::-;;:::i;51132:46::-;;;;;;;;;;-1:-1:-1;51132:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;20853:224;;;;;;;;;;-1:-1:-1;20853:224:0;;;;;:::i;:::-;;:::i;4765:103::-;;;;;;;;;;;;;:::i;51185:47::-;;;;;;;;;;-1:-1:-1;51185:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;56143:123;;;;;;;;;;-1:-1:-1;56143:123:0;;;;;:::i;:::-;;:::i;52076:648::-;;;;;;:::i;:::-;;:::i;56272:121::-;;;;;;;;;;-1:-1:-1;56272:121:0;;;;;:::i;:::-;;:::i;4114:87::-;;;;;;;;;;-1:-1:-1;4160:7:0;4187:6;-1:-1:-1;;;;;4187:6:0;4114:87;;56934:146;;;;;;;;;;-1:-1:-1;56934:146:0;;;;;:::i;:::-;;:::i;55732:115::-;;;;;;;;;;-1:-1:-1;55732:115:0;;;;;:::i;:::-;;:::i;25990:104::-;;;;;;;;;;;;;:::i;28043:308::-;;;;;;;;;;-1:-1:-1;28043:308:0;;;;;:::i;:::-;;:::i;50950:27::-;;;;;;;;;;-1:-1:-1;50950:27:0;;;;;;;;;;;50523:40;;;;;;;;;;;;;;;;28913:399;;;;;;;;;;-1:-1:-1;28913:399:0;;;;;:::i;:::-;;:::i;50628:45::-;;;;;;;;;;;;50672:1;50628:45;;55339:108;;;;;;;;;;-1:-1:-1;55339:108:0;;;;;:::i;:::-;;:::i;54430:610::-;;;;;;;;;;-1:-1:-1;54430:610:0;;;;;:::i;:::-;;:::i;56048:87::-;;;;;;;;;;-1:-1:-1;56048:87:0;;;;;:::i;:::-;;:::i;55227:97::-;;;;;;;;;;;;;:::i;28422:164::-;;;;;;;;;;-1:-1:-1;28422:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28543:25:0;;;28519:4;28543:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28422:164;5023:201;;;;;;;;;;-1:-1:-1;5023:201:0;;;;;:::i;:::-;;:::i;50682:25::-;;;;;;;;;;;;;:::i;20174:615::-;20259:4;-1:-1:-1;;;;;;;;;20559:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;20636:25:0;;;20559:102;:179;;;-1:-1:-1;;;;;;;;;;20713:25:0;;;20559:179;20539:199;20174:615;-1:-1:-1;;20174:615:0:o;25821:100::-;25875:13;25908:5;25901:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25821:100;:::o;27767:204::-;27835:7;27860:16;27868:7;27860;:16::i;:::-;27855:64;;27885:34;;-1:-1:-1;;;27885:34:0;;;;;;;;;;;27855:64;-1:-1:-1;27939:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27939:24:0;;27767:204::o;27315:386::-;27388:13;27404:16;27412:7;27404;:16::i;:::-;27388:32;-1:-1:-1;48215:10:0;-1:-1:-1;;;;;27437:28:0;;;27433:175;;27485:44;27502:5;48215:10;28422:164;:::i;27485:44::-;27480:128;;27557:35;;-1:-1:-1;;;27557:35:0;;;;;;;;;;;27480:128;27620:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;27620:29:0;-1:-1:-1;;;;;27620:29:0;;;;;;;;;27665:28;;27620:24;;27665:28;;;;;;;27377:324;27315:386;;:::o;55957:83::-;4160:7;4187:6;-1:-1:-1;;;;;4187:6:0;48215:10;4334:23;4326:68;;;;-1:-1:-1;;;4326:68:0;;;;;;;:::i;:::-;;;;;;;;;56017:6:::1;:15:::0;;-1:-1:-1;;56017:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;55957:83::o;19228:315::-;19494:12;;51680:1;19478:13;:28;-1:-1:-1;;19478:46:0;;19228:315::o;37032:2800::-;37166:27;37196;37215:7;37196:18;:27::i;:::-;37166:57;;37281:4;-1:-1:-1;;;;;37240:45:0;37256:19;-1:-1:-1;;;;;37240:45:0;;37236:86;;37294:28;;-1:-1:-1;;;37294:28:0;;;;;;;;;;;37236:86;37336:27;35762:21;;;35589:15;35804:4;35797:36;35886:4;35870:21;;35976:26;;48215:10;36729:30;;;-1:-1:-1;;;;;36427:26:0;;36708:19;;;36705:55;37515:174;;37602:43;37619:4;48215:10;28422:164;:::i;37602:43::-;37597:92;;37654:35;;-1:-1:-1;;;37654:35:0;;;;;;;;;;;37597:92;-1:-1:-1;;;;;37706:16:0;;37702:52;;37731:23;;-1:-1:-1;;;37731:23:0;;;;;;;;;;;37702:52;37903:15;37900:160;;;38043:1;38022:19;38015:30;37900:160;-1:-1:-1;;;;;38438:24:0;;;;;;;:18;:24;;;;;;38436:26;;-1:-1:-1;;38436:26:0;;;38507:22;;;;;;;;;38505:24;;-1:-1:-1;38505:24:0;;;25509:11;25485:22;25481:40;25468:62;-1:-1:-1;;;25468:62:0;38800:26;;;;:17;:26;;;;;:174;-1:-1:-1;;;39094:46:0;;39090:626;;39198:1;39188:11;;39166:19;39321:30;;;:17;:30;;;;;;39317:384;;39459:13;;39444:11;:28;39440:242;;39606:30;;;;:17;:30;;;;;:52;;;39440:242;39147:569;39090:626;39763:7;39759:2;-1:-1:-1;;;;;39744:27:0;39753:4;-1:-1:-1;;;;;39744:27:0;;;;;;;;;;;37155:2677;;;37032:2800;;;:::o;52732:571::-;57157:6;;52802:8;;57157:6;;57156:7;57148:38;;;;-1:-1:-1;;;57148:38:0;;;;;;;:::i;:::-;50505:3;57221:8;57205:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;57197:72;;;;-1:-1:-1;;;57197:72:0;;;;;;;:::i;:::-;57288:9;57301:10;57288:23;57280:55;;;;-1:-1:-1;;;57280:55:0;;;;;;;:::i;:::-;52831:10:::1;::::0;;;::::1;;;52823:43;;;::::0;-1:-1:-1;;;52823:43:0;;13379:2:1;52823:43:0::1;::::0;::::1;13361:21:1::0;13418:2;13398:18;;;13391:30;-1:-1:-1;;;13437:18:1;;;13430:50;13497:18;;52823:43:0::1;13177:344:1::0;52823:43:0::1;50620:1;52885:8;:33;;52877:63;;;::::0;-1:-1:-1;;;52877:63:0;;13728:2:1;52877:63:0::1;::::0;::::1;13710:21:1::0;13767:2;13747:18;;;13740:30;-1:-1:-1;;;13786:18:1;;;13779:47;13843:18;;52877:63:0::1;13526:341:1::0;52877:63:0::1;52969:11;::::0;53024:10:::1;52953:13;53011:24:::0;;;:12:::1;:24;::::0;;;;;50672:1:::1;53072:20;53084:8:::0;53011:24;53072:20:::1;:::i;:::-;:41;;53064:73;;;::::0;-1:-1:-1;;;53064:73:0;;10523:2:1;53064:73:0::1;::::0;::::1;10505:21:1::0;10562:2;10542:18;;;10535:30;-1:-1:-1;;;10581:18:1;;;10574:49;10640:18;;53064:73:0::1;10321:343:1::0;53064:73:0::1;53158:31;53172:16;53180:8:::0;53172:5;:16:::1;:::i;:::-;53158:13;:31::i;:::-;53230:20;53242:8:::0;53230:9;:20:::1;:::i;:::-;53215:10;53202:24;::::0;;;:12:::1;:24;::::0;;;;:49;;;;53264:31:::1;::::0;53286:8;53264:9:::1;:31::i;:::-;52812:491;;52732:571:::0;;:::o;56403:387::-;4160:7;4187:6;-1:-1:-1;;;;;4187:6:0;48215:10;4334:23;4326:68;;;;-1:-1:-1;;;4326:68:0;;;;;;;:::i;:::-;56550:21:::1;56528:19;51069:42;56671:5;56648:19;56550:21:::0;56671:5;56648:19:::1;:::i;:::-;56647:29;;;;:::i;:::-;56600:133;::::0;7351:34:1;7339:47;;-1:-1:-1;;;7411:2:1;7402:12;;7395:34;7454:2;7445:12;56600:133:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56584:149;;;56752:4;56744:36;;;::::0;-1:-1:-1;;;56744:36:0;;14074:2:1;56744:36:0::1;::::0;::::1;14056:21:1::0;14113:2;14093:18;;;14086:30;-1:-1:-1;;;14132:18:1;;;14125:49;14191:18;;56744:36:0::1;13872:343:1::0;56744:36:0::1;56450:340;;56403:387::o:0;28657:185::-;28795:39;28812:4;28818:2;28822:7;28795:39;;;;;;;;;;;;:16;:39::i;:::-;28657:185;;;:::o;53733:689::-;53793:16;53827:23;53853:17;53863:6;53853:9;:17::i;:::-;53827:43;;53881:30;53928:15;53914:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53914:30:0;-1:-1:-1;53881:63:0;-1:-1:-1;53980:1:0;53955:22;54032:350;54057:15;54039;:33;:65;;;;;50505:3;54076:14;:28;;54039:65;54032:350;;;54121:25;54149:23;54157:14;54149:7;:23::i;:::-;54121:51;;54214:6;-1:-1:-1;;;;;54193:27:0;:17;-1:-1:-1;;;;;54193:27:0;;54189:153;;;54274:14;54241:13;54255:15;54241:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;54309:17;;;;:::i;:::-;;;;54189:153;54354:16;;;;:::i;:::-;;;;54106:276;54032:350;;;-1:-1:-1;54401:13:0;;53733:689;-1:-1:-1;;;;53733:689:0:o;55455:102::-;4160:7;4187:6;-1:-1:-1;;;;;4187:6:0;48215:10;4334:23;4326:68;;;;-1:-1:-1;;;4326:68:0;;;;;;;:::i;:::-;55527:22;;::::1;::::0;:11:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;50800:72::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;55567:155::-;4160:7;4187:6;-1:-1:-1;;;;;4187:6:0;48215:10;4334:23;4326:68;;;;-1:-1:-1;;;4326:68:0;;;;;;;:::i;:::-;55661:8:::1;:20:::0;;-1:-1:-1;;55661:20:0::1;;::::0;::::1;;;;::::0;;55692:22;;::::1;::::0;:11:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;25610:144::-:0;25674:7;25717:27;25736:7;25717:18;:27::i;20853:224::-;20917:7;-1:-1:-1;;;;;20941:19:0;;20937:60;;20969:28;;-1:-1:-1;;;20969:28:0;;;;;;;;;;;20937:60;-1:-1:-1;;;;;;21015:25:0;;;;;:18;:25;;;;;;15408:13;21015:54;;20853:224::o;4765:103::-;4160:7;4187:6;-1:-1:-1;;;;;4187:6:0;48215:10;4334:23;4326:68;;;;-1:-1:-1;;;4326:68:0;;;;;;;:::i;:::-;4830:30:::1;4857:1;4830:18;:30::i;:::-;4765:103::o:0;56143:123::-;4160:7;4187:6;-1:-1:-1;;;;;4187:6:0;48215:10;4334:23;4326:68;;;;-1:-1:-1;;;4326:68:0;;;;;;;:::i;:::-;56210:10:::1;:19:::0;;-1:-1:-1;;56240:18:0;56210:19;;::::1;::::0;::::1;::::0;;;::::1;-1:-1:-1::0;;56240:18:0;;;;;;::::1;::::0;;;::::1;::::0;;56143:123::o;52076:648::-;57157:6;;52144:8;;57157:6;;57156:7;57148:38;;;;-1:-1:-1;;;57148:38:0;;;;;;;:::i;:::-;50505:3;57221:8;57205:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;57197:72;;;;-1:-1:-1;;;57197:72:0;;;;;;;:::i;:::-;57288:9;57301:10;57288:23;57280:55;;;;-1:-1:-1;;;57280:55:0;;;;;;;:::i;:::-;52173:8:::1;::::0;;;::::1;;;52165:39;;;::::0;-1:-1:-1;;;52165:39:0;;11212:2:1;52165:39:0::1;::::0;::::1;11194:21:1::0;11251:2;11231:18;;;11224:30;-1:-1:-1;;;11270:18:1;;;11263:48;11328:18;;52165:39:0::1;11010:342:1::0;52165:39:0::1;52223:9;:14:::0;52215:45:::1;;;::::0;-1:-1:-1;;;52215:45:0;;12684:2:1;52215:45:0::1;::::0;::::1;12666:21:1::0;12723:2;12703:18;;;12696:30;-1:-1:-1;;;12742:18:1;;;12735:48;12800:18;;52215:45:0::1;12482:342:1::0;52215:45:0::1;52279:8;52291:1;52279:13;52271:38;;;::::0;-1:-1:-1;;;52271:38:0;;10871:2:1;52271:38:0::1;::::0;::::1;10853:21:1::0;10910:2;10890:18;;;10883:30;-1:-1:-1;;;10929:18:1;;;10922:42;10981:18;;52271:38:0::1;10669:336:1::0;52271:38:0::1;52322:17;52358:8;52342:13;:11;:13::i;:::-;:24;;;;:::i;:::-;52322:44;;52408:3;52395:9;:16;;52387:51;;;::::0;-1:-1:-1;;;52387:51:0;;14769:2:1;52387:51:0::1;::::0;::::1;14751:21:1::0;14808:2;14788:18;;;14781:30;-1:-1:-1;;;14827:18:1;;;14820:52;14889:18;;52387:51:0::1;14567:346:1::0;52387:51:0::1;52475:10;52460:26;::::0;;;:14:::1;:26;::::0;;;;;::::1;;52459:27;52451:59;;;::::0;-1:-1:-1;;;52451:59:0;;11920:2:1;52451:59:0::1;::::0;::::1;11902:21:1::0;11959:2;11939:18;;;11932:30;-1:-1:-1;;;11978:18:1;;;11971:49;12037:18;;52451:59:0::1;11718:343:1::0;52451:59:0::1;52546:10;52531:26;::::0;;;:14:::1;:26;::::0;;;;:33;;-1:-1:-1;;52531:33:0::1;52560:4;52531:33;::::0;;52593:3:::1;52580:16:::0;::::1;52577:96;;;52613:8;:16:::0;;-1:-1:-1;;52644:17:0;;::::1;::::0;;52577:96:::1;52685:31;52695:10;52707:8;52685:9;:31::i;56272:121::-:0;4160:7;4187:6;-1:-1:-1;;;;;4187:6:0;48215:10;4334:23;4326:68;;;;-1:-1:-1;;;4326:68:0;;;;;;;:::i;:::-;56337:8:::1;:17:::0;;-1:-1:-1;;56365:20:0;56337:17;;::::1;::::0;::::1;::::0;;;::::1;-1:-1:-1::0;;56365:20:0;;;;;;::::1;::::0;;;::::1;::::0;;56272:121::o;56934:146::-;4160:7;4187:6;-1:-1:-1;;;;;4187:6:0;48215:10;4334:23;4326:68;;;;-1:-1:-1;;;4326:68:0;;;;;;;:::i;:::-;57157:6:::1;::::0;57022:8;;57157:6:::1;;57156:7;57148:38;;;;-1:-1:-1::0;;;57148:38:0::1;;;;;;;:::i;:::-;50505:3;57221:8;57205:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;57197:72;;;;-1:-1:-1::0;;;57197:72:0::1;;;;;;;:::i;:::-;57288:9;57301:10;57288:23;57280:55;;;;-1:-1:-1::0;;;57280:55:0::1;;;;;;;:::i;:::-;57043:29:::2;57053:8;57063;57043:9;:29::i;55732:115::-:0;4160:7;4187:6;-1:-1:-1;;;;;4187:6:0;48215:10;4334:23;4326:68;;;;-1:-1:-1;;;4326:68:0;;;;;;;:::i;:::-;55812:27;;::::1;::::0;:12:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;25990:104::-:0;26046:13;26079:7;26072:14;;;;;:::i;28043:308::-;-1:-1:-1;;;;;28142:31:0;;48215:10;28142:31;28138:61;;;28182:17;;-1:-1:-1;;;28182:17:0;;;;;;;;;;;28138:61;48215:10;28212:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;28212:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;28212:60:0;;;;;;;;;;28288:55;;8946:41:1;;;28212:49:0;;48215:10;28288:55;;8919:18:1;28288:55:0;;;;;;;28043:308;;:::o;28913:399::-;29080:31;29093:4;29099:2;29103:7;29080:12;:31::i;:::-;-1:-1:-1;;;;;29126:14:0;;;:19;29122:183;;29165:56;29196:4;29202:2;29206:7;29215:5;29165:30;:56::i;:::-;29160:145;;29249:40;;-1:-1:-1;;;29249:40:0;;;;;;;;;;;55339:108;4160:7;4187:6;-1:-1:-1;;;;;4187:6:0;48215:10;4334:23;4326:68;;;;-1:-1:-1;;;4326:68:0;;;;;;;:::i;:::-;55413:11:::1;:26:::0;55339:108::o;54430:610::-;54496:13;54761:17;54769:8;54761:7;:17::i;:::-;54753:77;;;;-1:-1:-1;;;54753:77:0;;12268:2:1;54753:77:0;;;12250:21:1;12307:2;12287:18;;;12280:30;12346:34;12326:18;;;12319:62;-1:-1:-1;;;12397:18:1;;;12390:45;12452:19;;54753:77:0;12066:411:1;54753:77:0;54855:8;;;;;;;54851:182;;;54911:11;54924:26;54941:8;54924:16;:26::i;:::-;54894:66;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54880:81;;54430:610;;;:::o;54851:182::-;55010:11;55003:18;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54430:610;;;:::o;54851:182::-;54430:610;;;:::o;56048:87::-;4160:7;4187:6;-1:-1:-1;;;;;4187:6:0;48215:10;4334:23;4326:68;;;;-1:-1:-1;;;4326:68:0;;;;;;;:::i;:::-;56110:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;56110:17:0;;::::1;::::0;;;::::1;::::0;;56048:87::o;55227:97::-;55271:13;55304:12;55297:19;;;;;:::i;5023:201::-;4160:7;4187:6;-1:-1:-1;;;;;4187:6:0;48215:10;4334:23;4326:68;;;;-1:-1:-1;;;4326:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5112:22:0;::::1;5104:73;;;::::0;-1:-1:-1;;;5104:73:0;;9424:2:1;5104:73:0::1;::::0;::::1;9406:21:1::0;9463:2;9443:18;;;9436:30;9502:34;9482:18;;;9475:62;-1:-1:-1;;;9553:18:1;;;9546:36;9599:19;;5104:73:0::1;9222:402:1::0;5104:73:0::1;5188:28;5207:8;5188:18;:28::i;:::-;5023:201:::0;:::o;50682:25::-;;;;;;;:::i;29567:273::-;29624:4;29680:7;51680:1;29661:26;;:66;;;;;29714:13;;29704:7;:23;29661:66;:152;;;;-1:-1:-1;;29765:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;29765:43:0;:48;;29567:273::o;22527:1129::-;22594:7;22629;;51680:1;22678:23;22674:915;;22731:13;;22724:4;:20;22720:869;;;22769:14;22786:23;;;:17;:23;;;;;;-1:-1:-1;;;22875:23:0;;22871:699;;23394:113;23401:11;23394:113;;-1:-1:-1;;;23472:6:0;23454:25;;;;:17;:25;;;;;;23394:113;;;23540:6;22527:1129;-1:-1:-1;;;22527:1129:0:o;22871:699::-;22746:843;22720:869;23617:31;;-1:-1:-1;;;23617:31:0;;;;;;;;;;;51697:359;51770:5;51758:9;:17;51754:295;;;51793:9;51816:10;51859:17;51871:5;51859:9;:17;:::i;:::-;51808:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51792:104;;;51919:4;51911:32;;;;-1:-1:-1;;;51911:32:0;;9831:2:1;51911:32:0;;;9813:21:1;9870:2;9850:18;;;9843:30;-1:-1:-1;;;9889:18:1;;;9882:45;9944:18;;51911:32:0;9629:339:1;51754:295:0;51986:5;51974:9;:17;51970:79;;;52008:29;;-1:-1:-1;;;52008:29:0;;13031:2:1;52008:29:0;;;13013:21:1;13070:2;13050:18;;;13043:30;-1:-1:-1;;;13089:18:1;;;13082:49;13148:18;;52008:29:0;12829:343:1;29924:104:0;29993:27;30003:2;30007:8;29993:27;;;;;;;;;;;;:9;:27::i;5384:191::-;5458:16;5477:6;;-1:-1:-1;;;;;5494:17:0;;;-1:-1:-1;;;;;;5494:17:0;;;;;;5527:40;;5477:6;;;;;;;5527:40;;5458:16;5527:40;5447:128;5384:191;:::o;43783:716::-;43967:88;;-1:-1:-1;;;43967:88:0;;43946:4;;-1:-1:-1;;;;;43967:45:0;;;;;:88;;48215:10;;44034:4;;44040:7;;44049:5;;43967:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43967:88:0;;;;;;;;-1:-1:-1;;43967:88:0;;;;;;;;;;;;:::i;:::-;;;43963:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44250:13:0;;44246:235;;44296:40;;-1:-1:-1;;;44296:40:0;;;;;;;;;;;44246:235;44439:6;44433:13;44424:6;44420:2;44416:15;44409:38;43963:529;-1:-1:-1;;;;;;44126:64:0;-1:-1:-1;;;44126:64:0;;-1:-1:-1;43963:529:0;43783:716;;;;;;:::o;400:723::-;456:13;677:10;673:53;;-1:-1:-1;;704:10:0;;;;;;;;;;;;-1:-1:-1;;;704:10:0;;;;;400:723::o;673:53::-;751:5;736:12;792:78;799:9;;792:78;;825:8;;;;:::i;:::-;;-1:-1:-1;848:10:0;;-1:-1:-1;856:2:0;848:10;;:::i;:::-;;;792:78;;;880:19;912:6;902:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;902:17:0;;880:39;;930:154;937:10;;930:154;;964:11;974:1;964:11;;:::i;:::-;;-1:-1:-1;1033:10:0;1041:2;1033:5;:10;:::i;:::-;1020:24;;:2;:24;:::i;:::-;1007:39;;990:6;997;990:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;990:56:0;;;;;;;;-1:-1:-1;1061:11:0;1070:2;1061:11;;:::i;:::-;;;930:154;;30444:681;30567:19;30573:2;30577:8;30567:5;:19::i;:::-;-1:-1:-1;;;;;30628:14:0;;;:19;30624:483;;30682:13;;30730:14;;;30763:233;30794:62;30833:1;30837:2;30841:7;;;;;;30850:5;30794:30;:62::i;:::-;30789:167;;30892:40;;-1:-1:-1;;;30892:40:0;;;;;;;;;;;30789:167;30991:3;30983:5;:11;30763:233;;31078:3;31061:13;;:20;31057:34;;31083:8;;;31057:34;30649:458;;30444:681;;;:::o;31398:1529::-;31486:13;;-1:-1:-1;;;;;31514:16:0;;31510:48;;31539:19;;-1:-1:-1;;;31539:19:0;;;;;;;;;;;31510:48;31573:13;31569:44;;31595:18;;-1:-1:-1;;;31595:18:0;;;;;;;;;;;31569:44;-1:-1:-1;;;;;32101:22:0;;;;;;:18;:22;;15545:2;32101:22;;:70;;32139:31;32127:44;;32101:70;;;25509:11;25485:22;25481:40;-1:-1:-1;27219:15:0;;27194:23;27190:45;25478:51;25468:62;32414:31;;;;:17;:31;;;;;:173;32432:12;32663:23;;;32701:101;32728:35;;32753:9;;;;;-1:-1:-1;;;;;32728:35:0;;;32745:1;;32728:35;;32745:1;;32728:35;32797:3;32787:7;:13;32701:101;;32818:13;:19;-1:-1:-1;28657:185:0;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;828:160;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:221;1036:5;1089:3;1082:4;1074:6;1070:17;1066:27;1056:55;;1107:1;1104;1097:12;1056:55;1129:79;1204:3;1195:6;1182:20;1175:4;1167:6;1163:17;1129:79;:::i;1219:186::-;1278:6;1331:2;1319:9;1310:7;1306:23;1302:32;1299:52;;;1347:1;1344;1337:12;1299:52;1370:29;1389:9;1370:29;:::i;1410:260::-;1478:6;1486;1539:2;1527:9;1518:7;1514:23;1510:32;1507:52;;;1555:1;1552;1545:12;1507:52;1578:29;1597:9;1578:29;:::i;:::-;1568:39;;1626:38;1660:2;1649:9;1645:18;1626:38;:::i;:::-;1616:48;;1410:260;;;;;:::o;1675:328::-;1752:6;1760;1768;1821:2;1809:9;1800:7;1796:23;1792:32;1789:52;;;1837:1;1834;1827:12;1789:52;1860:29;1879:9;1860:29;:::i;:::-;1850:39;;1908:38;1942:2;1931:9;1927:18;1908:38;:::i;:::-;1898:48;;1993:2;1982:9;1978:18;1965:32;1955:42;;1675:328;;;;;:::o;2008:666::-;2103:6;2111;2119;2127;2180:3;2168:9;2159:7;2155:23;2151:33;2148:53;;;2197:1;2194;2187:12;2148:53;2220:29;2239:9;2220:29;:::i;:::-;2210:39;;2268:38;2302:2;2291:9;2287:18;2268:38;:::i;:::-;2258:48;;2353:2;2342:9;2338:18;2325:32;2315:42;;2408:2;2397:9;2393:18;2380:32;2435:18;2427:6;2424:30;2421:50;;;2467:1;2464;2457:12;2421:50;2490:22;;2543:4;2535:13;;2531:27;-1:-1:-1;2521:55:1;;2572:1;2569;2562:12;2521:55;2595:73;2660:7;2655:2;2642:16;2637:2;2633;2629:11;2595:73;:::i;:::-;2585:83;;;2008:666;;;;;;;:::o;2679:254::-;2744:6;2752;2805:2;2793:9;2784:7;2780:23;2776:32;2773:52;;;2821:1;2818;2811:12;2773:52;2844:29;2863:9;2844:29;:::i;:::-;2834:39;;2892:35;2923:2;2912:9;2908:18;2892:35;:::i;2938:254::-;3006:6;3014;3067:2;3055:9;3046:7;3042:23;3038:32;3035:52;;;3083:1;3080;3073:12;3035:52;3106:29;3125:9;3106:29;:::i;:::-;3096:39;3182:2;3167:18;;;;3154:32;;-1:-1:-1;;;2938:254:1:o;3197:180::-;3253:6;3306:2;3294:9;3285:7;3281:23;3277:32;3274:52;;;3322:1;3319;3312:12;3274:52;3345:26;3361:9;3345:26;:::i;3382:390::-;3457:6;3465;3518:2;3506:9;3497:7;3493:23;3489:32;3486:52;;;3534:1;3531;3524:12;3486:52;3557:26;3573:9;3557:26;:::i;:::-;3547:36;;3634:2;3623:9;3619:18;3606:32;3661:18;3653:6;3650:30;3647:50;;;3693:1;3690;3683:12;3647:50;3716;3758:7;3749:6;3738:9;3734:22;3716:50;:::i;:::-;3706:60;;;3382:390;;;;;:::o;3777:245::-;3835:6;3888:2;3876:9;3867:7;3863:23;3859:32;3856:52;;;3904:1;3901;3894:12;3856:52;3943:9;3930:23;3962:30;3986:5;3962:30;:::i;4027:249::-;4096:6;4149:2;4137:9;4128:7;4124:23;4120:32;4117:52;;;4165:1;4162;4155:12;4117:52;4197:9;4191:16;4216:30;4240:5;4216:30;:::i;4281:322::-;4350:6;4403:2;4391:9;4382:7;4378:23;4374:32;4371:52;;;4419:1;4416;4409:12;4371:52;4459:9;4446:23;4492:18;4484:6;4481:30;4478:50;;;4524:1;4521;4514:12;4478:50;4547;4589:7;4580:6;4569:9;4565:22;4547:50;:::i;4608:180::-;4667:6;4720:2;4708:9;4699:7;4695:23;4691:32;4688:52;;;4736:1;4733;4726:12;4688:52;-1:-1:-1;4759:23:1;;4608:180;-1:-1:-1;4608:180:1:o;4793:254::-;4861:6;4869;4922:2;4910:9;4901:7;4897:23;4893:32;4890:52;;;4938:1;4935;4928:12;4890:52;4974:9;4961:23;4951:33;;5003:38;5037:2;5026:9;5022:18;5003:38;:::i;5052:257::-;5093:3;5131:5;5125:12;5158:6;5153:3;5146:19;5174:63;5230:6;5223:4;5218:3;5214:14;5207:4;5200:5;5196:16;5174:63;:::i;:::-;5291:2;5270:15;-1:-1:-1;;5266:29:1;5257:39;;;;5298:4;5253:50;;5052:257;-1:-1:-1;;5052:257:1:o;5314:185::-;5356:3;5394:5;5388:12;5409:52;5454:6;5449:3;5442:4;5435:5;5431:16;5409:52;:::i;:::-;5477:16;;;;;5314:185;-1:-1:-1;;5314:185:1:o;5622:1301::-;5899:3;5928:1;5961:6;5955:13;5991:3;6013:1;6041:9;6037:2;6033:18;6023:28;;6101:2;6090:9;6086:18;6123;6113:61;;6167:4;6159:6;6155:17;6145:27;;6113:61;6193:2;6241;6233:6;6230:14;6210:18;6207:38;6204:165;;;-1:-1:-1;;;6268:33:1;;6324:4;6321:1;6314:15;6354:4;6275:3;6342:17;6204:165;6385:18;6412:104;;;;6530:1;6525:320;;;;6378:467;;6412:104;-1:-1:-1;;6445:24:1;;6433:37;;6490:16;;;;-1:-1:-1;6412:104:1;;6525:320;15523:1;15516:14;;;15560:4;15547:18;;6620:1;6634:165;6648:6;6645:1;6642:13;6634:165;;;6726:14;;6713:11;;;6706:35;6769:16;;;;6663:10;;6634:165;;;6638:3;;6828:6;6823:3;6819:16;6812:23;;6378:467;;;;;;;6861:56;6886:30;6912:3;6904:6;6886:30;:::i;:::-;-1:-1:-1;;;5564:20:1;;5609:1;5600:11;;5504:113;6861:56;6854:63;5622:1301;-1:-1:-1;;;;;5622:1301:1:o;7676:488::-;-1:-1:-1;;;;;7945:15:1;;;7927:34;;7997:15;;7992:2;7977:18;;7970:43;8044:2;8029:18;;8022:34;;;8092:3;8087:2;8072:18;;8065:31;;;7870:4;;8113:45;;8138:19;;8130:6;8113:45;:::i;:::-;8105:53;7676:488;-1:-1:-1;;;;;;7676:488:1:o;8169:632::-;8340:2;8392:21;;;8462:13;;8365:18;;;8484:22;;;8311:4;;8340:2;8563:15;;;;8537:2;8522:18;;;8311:4;8606:169;8620:6;8617:1;8614:13;8606:169;;;8681:13;;8669:26;;8750:15;;;;8715:12;;;;8642:1;8635:9;8606:169;;;-1:-1:-1;8792:3:1;;8169:632;-1:-1:-1;;;;;;8169:632:1:o;8998:219::-;9147:2;9136:9;9129:21;9110:4;9167:44;9207:2;9196:9;9192:18;9184:6;9167:44;:::i;9973:343::-;10175:2;10157:21;;;10214:2;10194:18;;;10187:30;-1:-1:-1;;;10248:2:1;10233:18;;10226:49;10307:2;10292:18;;9973:343::o;11357:356::-;11559:2;11541:21;;;11578:18;;;11571:30;11637:34;11632:2;11617:18;;11610:62;11704:2;11689:18;;11357:356::o;14220:342::-;14422:2;14404:21;;;14461:2;14441:18;;;14434:30;-1:-1:-1;;;14495:2:1;14480:18;;14473:48;14553:2;14538:18;;14220:342::o;14918:345::-;15120:2;15102:21;;;15159:2;15139:18;;;15132:30;-1:-1:-1;;;15193:2:1;15178:18;;15171:51;15254:2;15239:18;;14918:345::o;15576:128::-;15616:3;15647:1;15643:6;15640:1;15637:13;15634:39;;;15653:18;;:::i;:::-;-1:-1:-1;15689:9:1;;15576:128::o;15709:120::-;15749:1;15775;15765:35;;15780:18;;:::i;:::-;-1:-1:-1;15814:9:1;;15709:120::o;15834:168::-;15874:7;15940:1;15936;15932:6;15928:14;15925:1;15922:21;15917:1;15910:9;15903:17;15899:45;15896:71;;;15947:18;;:::i;:::-;-1:-1:-1;15987:9:1;;15834:168::o;16007:125::-;16047:4;16075:1;16072;16069:8;16066:34;;;16080:18;;:::i;:::-;-1:-1:-1;16117:9:1;;16007:125::o;16137:258::-;16209:1;16219:113;16233:6;16230:1;16227:13;16219:113;;;16309:11;;;16303:18;16290:11;;;16283:39;16255:2;16248:10;16219:113;;;16350:6;16347:1;16344:13;16341:48;;;-1:-1:-1;;16385:1:1;16367:16;;16360:27;16137:258::o;16400:380::-;16479:1;16475:12;;;;16522;;;16543:61;;16597:4;16589:6;16585:17;16575:27;;16543:61;16650:2;16642:6;16639:14;16619:18;16616:38;16613:161;;;16696:10;16691:3;16687:20;16684:1;16677:31;16731:4;16728:1;16721:15;16759:4;16756:1;16749:15;16613:161;;16400:380;;;:::o;16785:135::-;16824:3;-1:-1:-1;;16845:17:1;;16842:43;;;16865:18;;:::i;:::-;-1:-1:-1;16912:1:1;16901:13;;16785:135::o;16925:112::-;16957:1;16983;16973:35;;16988:18;;:::i;:::-;-1:-1:-1;17022:9:1;;16925:112::o;17042:127::-;17103:10;17098:3;17094:20;17091:1;17084:31;17134:4;17131:1;17124:15;17158:4;17155:1;17148:15;17174:127;17235:10;17230:3;17226:20;17223:1;17216:31;17266:4;17263:1;17256:15;17290:4;17287:1;17280:15;17306:127;17367:10;17362:3;17358:20;17355:1;17348:31;17398:4;17395:1;17388:15;17422:4;17419:1;17412:15;17438:127;17499:10;17494:3;17490:20;17487:1;17480:31;17530:4;17527:1;17520:15;17554:4;17551:1;17544:15;17570:131;-1:-1:-1;;;;;;17644:32:1;;17634:43;;17624:71;;17691:1;17688;17681:12
Swarm Source
ipfs://33938970418fede6dcf6ac5ab5c86c3b9624218b1e034bbc4f0e32460e8665cf
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.