ERC-721
Overview
Max Total Supply
3,333 We Hate Shitcoins
Holders
553
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
10 We Hate ShitcoinsLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
WeHateShitcoins
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-05-12 */ // 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 (last updated v4.7.0) (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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { 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.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external payable; /** * @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 payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: contracts/wehate.sol pragma solidity ^0.8.0; contract WeHateShitcoins is ERC721A, Ownable { string private baseURI; uint256 public price = 0.0033 ether; uint256 public maxPerTx = 10; uint256 public maxFreePerWallet = 1; uint256 public totalFree = 3333; uint256 public maxSupply = 3333; bool public mintEnabled = false; mapping(address => uint256) private _mintedFreeAmount; constructor(string memory _name, string memory _symbol) ERC721A(_name, _symbol) { _safeMint(msg.sender, 1); setBaseURI("ipfs://QmQtwFXppknXEPpUGsFe3pNtGNGFUYgxhz832bvRnAXzDF/"); } function mint(uint256 count) external payable { uint256 cost = price; bool isFree = ((totalSupply() + count < totalFree + 1) && (_mintedFreeAmount[msg.sender] + count <= maxFreePerWallet)); if (isFree) { cost = 0; } require(msg.value >= count * cost, "Please send the exact amount."); require(totalSupply() + count < maxSupply + 1, "No more"); require(mintEnabled, "Minting is not live yet"); require(count < maxPerTx + 1, "Max per TX reached."); if (isFree) { _mintedFreeAmount[msg.sender] += count; } _safeMint(msg.sender, count); } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function setBaseURI(string memory uri) public onlyOwner { baseURI = uri; } function setFreeAmount(uint256 amount) external onlyOwner { totalFree = amount; } function setPrice(uint256 _newPrice) external onlyOwner { price = _newPrice; } function flipSale() external onlyOwner { mintEnabled = !mintEnabled; } function withdraw() external onlyOwner { (bool success, ) = payable(msg.sender).call{ value: address(this).balance }(""); require(success, "Transfer failed."); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","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":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","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":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052660bb9551fc24000600a908155600b556001600c55610d05600d819055600e55600f805460ff191690553480156200003b57600080fd5b5060405162001e7738038062001e778339810160408190526200005e91620004d1565b818160026200006e8382620005c9565b5060036200007d8282620005c9565b505060008055506200008f33620000c8565b6200009c3360016200011a565b620000c060405180606001604052806036815260200162001e216036913962000140565b50506200071e565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200013c8282604051806020016040528060008152506200015860201b60201c565b5050565b6200014a620001cf565b60096200013c8282620005c9565b62000164838362000230565b6001600160a01b0383163b15620001ca576000548281035b6001810190620001929060009087908662000310565b620001b0576040516368d2bf6b60e11b815260040160405180910390fd5b8181106200017c578160005414620001c757600080fd5b50505b505050565b6008546001600160a01b031633146200022e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b6000805490829003620002565760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b1783179055828401908390839060008051602062001e578339815191528180a4600183015b818114620002e5578083600060008051602062001e57833981519152600080a4600101620002bc565b50816000036200030757604051622e076360e81b815260040160405180910390fd5b60005550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906200034790339089908890889060040162000695565b6020604051808303816000875af192505050801562000385575060408051601f3d908101601f191682019092526200038291810190620006eb565b60015b620003e7573d808015620003b6576040519150601f19603f3d011682016040523d82523d6000602084013e620003bb565b606091505b508051600003620003df576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b634e487b7160e01b600052604160045260246000fd5b60005b83811015620004375781810151838201526020016200041d565b50506000910152565b600082601f8301126200045257600080fd5b81516001600160401b03808211156200046f576200046f62000404565b604051601f8301601f19908116603f011681019082821181831017156200049a576200049a62000404565b81604052838152866020858801011115620004b457600080fd5b620004c78460208301602089016200041a565b9695505050505050565b60008060408385031215620004e557600080fd5b82516001600160401b0380821115620004fd57600080fd5b6200050b8683870162000440565b935060208501519150808211156200052257600080fd5b50620005318582860162000440565b9150509250929050565b600181811c908216806200055057607f821691505b6020821081036200057157634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001ca57600081815260208120601f850160051c81016020861015620005a05750805b601f850160051c820191505b81811015620005c157828155600101620005ac565b505050505050565b81516001600160401b03811115620005e557620005e562000404565b620005fd81620005f684546200053b565b8462000577565b602080601f8311600181146200063557600084156200061c5750858301515b600019600386901b1c1916600185901b178555620005c1565b600085815260208120601f198616915b82811015620006665788860151825594840194600190910190840162000645565b5085821015620006855787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060018060a01b038087168352808616602084015250836040830152608060608301528251806080840152620006d48160a08501602087016200041a565b601f01601f19169190910160a00195945050505050565b600060208284031215620006fe57600080fd5b81516001600160e01b0319811681146200071757600080fd5b9392505050565b6116f3806200072e6000396000f3fe6080604052600436106101c25760003560e01c80638da5cb5b116100f7578063a702735711610095578063d5abeb0111610064578063d5abeb0114610488578063e985e9c51461049e578063f2fde38b146104be578063f968adbe146104de57600080fd5b8063a702735714610425578063b88d4fde1461043b578063c87b56dd1461044e578063d12397301461046e57600080fd5b806395d89b41116100d157806395d89b41146103c7578063a035b1fe146103dc578063a0712d68146103f2578063a22cb4651461040557600080fd5b80638da5cb5b1461036957806391b7f5ed1461038757806392910eec146103a757600080fd5b80633ccfd60b116101645780636352211e1161013e5780636352211e146102ff57806370a082311461031f578063715018a61461033f5780637ba5e6211461035457600080fd5b80633ccfd60b146102b757806342842e0e146102cc57806355f804b3146102df57600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd1461026b57806323b872dd1461028e578063333e44e6146102a157600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e23660046111be565b6104f4565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b50610211610546565b6040516101f3919061122b565b34801561022a57600080fd5b5061023e61023936600461123e565b6105d8565b6040516001600160a01b0390911681526020016101f3565b610269610264366004611273565b61061c565b005b34801561027757600080fd5b50600154600054035b6040519081526020016101f3565b61026961029c36600461129d565b6106bc565b3480156102ad57600080fd5b50610280600d5481565b3480156102c357600080fd5b50610269610855565b6102696102da36600461129d565b6108f0565b3480156102eb57600080fd5b506102696102fa366004611365565b610910565b34801561030b57600080fd5b5061023e61031a36600461123e565b610928565b34801561032b57600080fd5b5061028061033a3660046113ae565b610933565b34801561034b57600080fd5b50610269610982565b34801561036057600080fd5b50610269610996565b34801561037557600080fd5b506008546001600160a01b031661023e565b34801561039357600080fd5b506102696103a236600461123e565b6109b2565b3480156103b357600080fd5b506102696103c236600461123e565b6109bf565b3480156103d357600080fd5b506102116109cc565b3480156103e857600080fd5b50610280600a5481565b61026961040036600461123e565b6109db565b34801561041157600080fd5b506102696104203660046113c9565b610bcc565b34801561043157600080fd5b50610280600c5481565b610269610449366004611405565b610c38565b34801561045a57600080fd5b5061021161046936600461123e565b610c82565b34801561047a57600080fd5b50600f546101e79060ff1681565b34801561049457600080fd5b50610280600e5481565b3480156104aa57600080fd5b506101e76104b9366004611481565b610d06565b3480156104ca57600080fd5b506102696104d93660046113ae565b610d34565b3480156104ea57600080fd5b50610280600b5481565b60006301ffc9a760e01b6001600160e01b03198316148061052557506380ac58cd60e01b6001600160e01b03198316145b806105405750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610555906114b4565b80601f0160208091040260200160405190810160405280929190818152602001828054610581906114b4565b80156105ce5780601f106105a3576101008083540402835291602001916105ce565b820191906000526020600020905b8154815290600101906020018083116105b157829003601f168201915b5050505050905090565b60006105e382610daa565b610600576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061062782610928565b9050336001600160a01b03821614610660576106438133610d06565b610660576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006106c782610dd1565b9050836001600160a01b0316816001600160a01b0316146106fa5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176107475761072a8633610d06565b61074757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661076e57604051633a954ecd60e21b815260040160405180910390fd5b801561077957600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b8416900361080b576001840160008181526004602052604081205490036108095760005481146108095760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b61085d610e38565b604051600090339047908381818185875af1925050503d806000811461089f576040519150601f19603f3d011682016040523d82523d6000602084013e6108a4565b606091505b50509050806108ed5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064015b60405180910390fd5b50565b61090b83838360405180602001604052806000815250610c38565b505050565b610918610e38565b60096109248282611534565b5050565b600061054082610dd1565b60006001600160a01b03821661095c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b61098a610e38565b6109946000610e92565b565b61099e610e38565b600f805460ff19811660ff90911615179055565b6109ba610e38565b600a55565b6109c7610e38565b600d55565b606060038054610555906114b4565b600a54600d546000906109ef90600161160a565b836109fd6001546000540390565b610a07919061160a565b108015610a305750600c5433600090815260106020526040902054610a2d90859061160a565b11155b90508015610a3d57600091505b610a47828461161d565b341015610a965760405162461bcd60e51b815260206004820152601d60248201527f506c656173652073656e642074686520657861637420616d6f756e742e00000060448201526064016108e4565b600e54610aa490600161160a565b83610ab26001546000540390565b610abc919061160a565b10610af35760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b60448201526064016108e4565b600f5460ff16610b455760405162461bcd60e51b815260206004820152601760248201527f4d696e74696e67206973206e6f74206c6976652079657400000000000000000060448201526064016108e4565b600b54610b5390600161160a565b8310610b975760405162461bcd60e51b815260206004820152601360248201527226b0bc103832b9102a2c103932b0b1b432b21760691b60448201526064016108e4565b8015610bc2573360009081526010602052604081208054859290610bbc90849061160a565b90915550505b61090b3384610ee4565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c438484846106bc565b6001600160a01b0383163b15610c7c57610c5f84848484610efe565b610c7c576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610c8d82610daa565b610caa57604051630a14c4b560e41b815260040160405180910390fd5b6000610cb4610fea565b90508051600003610cd45760405180602001604052806000815250610cff565b80610cde84610ff9565b604051602001610cef929190611634565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b610d3c610e38565b6001600160a01b038116610da15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108e4565b6108ed81610e92565b6000805482108015610540575050600090815260046020526040902054600160e01b161590565b600081600054811015610e1f5760008181526004602052604081205490600160e01b82169003610e1d575b80600003610cff575060001901600081815260046020526040902054610dfc565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b031633146109945760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108e4565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61092482826040518060200160405280600081525061103d565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610f33903390899088908890600401611663565b6020604051808303816000875af1925050508015610f6e575060408051601f3d908101601f19168201909252610f6b918101906116a0565b60015b610fcc573d808015610f9c576040519150601f19603f3d011682016040523d82523d6000602084013e610fa1565b606091505b508051600003610fc4576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606060098054610555906114b4565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a9004806110135750819003601f19909101908152919050565b61104783836110aa565b6001600160a01b0383163b1561090b576000548281035b6110716000868380600101945086610efe565b61108e576040516368d2bf6b60e11b815260040160405180910390fd5b81811061105e5781600054146110a357600080fd5b5050505050565b60008054908290036110cf5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461117e57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611146565b508160000361119f57604051622e076360e81b815260040160405180910390fd5b60005550505050565b6001600160e01b0319811681146108ed57600080fd5b6000602082840312156111d057600080fd5b8135610cff816111a8565b60005b838110156111f65781810151838201526020016111de565b50506000910152565b600081518084526112178160208601602086016111db565b601f01601f19169290920160200192915050565b602081526000610cff60208301846111ff565b60006020828403121561125057600080fd5b5035919050565b80356001600160a01b038116811461126e57600080fd5b919050565b6000806040838503121561128657600080fd5b61128f83611257565b946020939093013593505050565b6000806000606084860312156112b257600080fd5b6112bb84611257565b92506112c960208501611257565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561130a5761130a6112d9565b604051601f8501601f19908116603f01168101908282118183101715611332576113326112d9565b8160405280935085815286868601111561134b57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561137757600080fd5b813567ffffffffffffffff81111561138e57600080fd5b8201601f8101841361139f57600080fd5b610fe2848235602084016112ef565b6000602082840312156113c057600080fd5b610cff82611257565b600080604083850312156113dc57600080fd5b6113e583611257565b9150602083013580151581146113fa57600080fd5b809150509250929050565b6000806000806080858703121561141b57600080fd5b61142485611257565b935061143260208601611257565b925060408501359150606085013567ffffffffffffffff81111561145557600080fd5b8501601f8101871361146657600080fd5b611475878235602084016112ef565b91505092959194509250565b6000806040838503121561149457600080fd5b61149d83611257565b91506114ab60208401611257565b90509250929050565b600181811c908216806114c857607f821691505b6020821081036114e857634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561090b57600081815260208120601f850160051c810160208610156115155750805b601f850160051c820191505b8181101561084d57828155600101611521565b815167ffffffffffffffff81111561154e5761154e6112d9565b6115628161155c84546114b4565b846114ee565b602080601f831160018114611597576000841561157f5750858301515b600019600386901b1c1916600185901b17855561084d565b600085815260208120601f198616915b828110156115c6578886015182559484019460019091019084016115a7565b50858210156115e45787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b80820180821115610540576105406115f4565b8082028115828204841417610540576105406115f4565b600083516116468184602088016111db565b83519083019061165a8183602088016111db565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611696908301846111ff565b9695505050505050565b6000602082840312156116b257600080fd5b8151610cff816111a856fea264697066735822122024fe632d5c247cd8455f6fe86a22a705bb5dd35d2159baeaaf843bd0269a5d2864736f6c63430008120033697066733a2f2f516d517477465870706b6e58455070554773466533704e74474e474655596778687a3833326276526e41587a44462fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000011576520486174652053686974636f696e730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011576520486174652053686974636f696e73000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101c25760003560e01c80638da5cb5b116100f7578063a702735711610095578063d5abeb0111610064578063d5abeb0114610488578063e985e9c51461049e578063f2fde38b146104be578063f968adbe146104de57600080fd5b8063a702735714610425578063b88d4fde1461043b578063c87b56dd1461044e578063d12397301461046e57600080fd5b806395d89b41116100d157806395d89b41146103c7578063a035b1fe146103dc578063a0712d68146103f2578063a22cb4651461040557600080fd5b80638da5cb5b1461036957806391b7f5ed1461038757806392910eec146103a757600080fd5b80633ccfd60b116101645780636352211e1161013e5780636352211e146102ff57806370a082311461031f578063715018a61461033f5780637ba5e6211461035457600080fd5b80633ccfd60b146102b757806342842e0e146102cc57806355f804b3146102df57600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd1461026b57806323b872dd1461028e578063333e44e6146102a157600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e23660046111be565b6104f4565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b50610211610546565b6040516101f3919061122b565b34801561022a57600080fd5b5061023e61023936600461123e565b6105d8565b6040516001600160a01b0390911681526020016101f3565b610269610264366004611273565b61061c565b005b34801561027757600080fd5b50600154600054035b6040519081526020016101f3565b61026961029c36600461129d565b6106bc565b3480156102ad57600080fd5b50610280600d5481565b3480156102c357600080fd5b50610269610855565b6102696102da36600461129d565b6108f0565b3480156102eb57600080fd5b506102696102fa366004611365565b610910565b34801561030b57600080fd5b5061023e61031a36600461123e565b610928565b34801561032b57600080fd5b5061028061033a3660046113ae565b610933565b34801561034b57600080fd5b50610269610982565b34801561036057600080fd5b50610269610996565b34801561037557600080fd5b506008546001600160a01b031661023e565b34801561039357600080fd5b506102696103a236600461123e565b6109b2565b3480156103b357600080fd5b506102696103c236600461123e565b6109bf565b3480156103d357600080fd5b506102116109cc565b3480156103e857600080fd5b50610280600a5481565b61026961040036600461123e565b6109db565b34801561041157600080fd5b506102696104203660046113c9565b610bcc565b34801561043157600080fd5b50610280600c5481565b610269610449366004611405565b610c38565b34801561045a57600080fd5b5061021161046936600461123e565b610c82565b34801561047a57600080fd5b50600f546101e79060ff1681565b34801561049457600080fd5b50610280600e5481565b3480156104aa57600080fd5b506101e76104b9366004611481565b610d06565b3480156104ca57600080fd5b506102696104d93660046113ae565b610d34565b3480156104ea57600080fd5b50610280600b5481565b60006301ffc9a760e01b6001600160e01b03198316148061052557506380ac58cd60e01b6001600160e01b03198316145b806105405750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610555906114b4565b80601f0160208091040260200160405190810160405280929190818152602001828054610581906114b4565b80156105ce5780601f106105a3576101008083540402835291602001916105ce565b820191906000526020600020905b8154815290600101906020018083116105b157829003601f168201915b5050505050905090565b60006105e382610daa565b610600576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061062782610928565b9050336001600160a01b03821614610660576106438133610d06565b610660576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006106c782610dd1565b9050836001600160a01b0316816001600160a01b0316146106fa5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176107475761072a8633610d06565b61074757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661076e57604051633a954ecd60e21b815260040160405180910390fd5b801561077957600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b8416900361080b576001840160008181526004602052604081205490036108095760005481146108095760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b61085d610e38565b604051600090339047908381818185875af1925050503d806000811461089f576040519150601f19603f3d011682016040523d82523d6000602084013e6108a4565b606091505b50509050806108ed5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064015b60405180910390fd5b50565b61090b83838360405180602001604052806000815250610c38565b505050565b610918610e38565b60096109248282611534565b5050565b600061054082610dd1565b60006001600160a01b03821661095c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b61098a610e38565b6109946000610e92565b565b61099e610e38565b600f805460ff19811660ff90911615179055565b6109ba610e38565b600a55565b6109c7610e38565b600d55565b606060038054610555906114b4565b600a54600d546000906109ef90600161160a565b836109fd6001546000540390565b610a07919061160a565b108015610a305750600c5433600090815260106020526040902054610a2d90859061160a565b11155b90508015610a3d57600091505b610a47828461161d565b341015610a965760405162461bcd60e51b815260206004820152601d60248201527f506c656173652073656e642074686520657861637420616d6f756e742e00000060448201526064016108e4565b600e54610aa490600161160a565b83610ab26001546000540390565b610abc919061160a565b10610af35760405162461bcd60e51b81526020600482015260076024820152664e6f206d6f726560c81b60448201526064016108e4565b600f5460ff16610b455760405162461bcd60e51b815260206004820152601760248201527f4d696e74696e67206973206e6f74206c6976652079657400000000000000000060448201526064016108e4565b600b54610b5390600161160a565b8310610b975760405162461bcd60e51b815260206004820152601360248201527226b0bc103832b9102a2c103932b0b1b432b21760691b60448201526064016108e4565b8015610bc2573360009081526010602052604081208054859290610bbc90849061160a565b90915550505b61090b3384610ee4565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c438484846106bc565b6001600160a01b0383163b15610c7c57610c5f84848484610efe565b610c7c576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610c8d82610daa565b610caa57604051630a14c4b560e41b815260040160405180910390fd5b6000610cb4610fea565b90508051600003610cd45760405180602001604052806000815250610cff565b80610cde84610ff9565b604051602001610cef929190611634565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b610d3c610e38565b6001600160a01b038116610da15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108e4565b6108ed81610e92565b6000805482108015610540575050600090815260046020526040902054600160e01b161590565b600081600054811015610e1f5760008181526004602052604081205490600160e01b82169003610e1d575b80600003610cff575060001901600081815260046020526040902054610dfc565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b031633146109945760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108e4565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61092482826040518060200160405280600081525061103d565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610f33903390899088908890600401611663565b6020604051808303816000875af1925050508015610f6e575060408051601f3d908101601f19168201909252610f6b918101906116a0565b60015b610fcc573d808015610f9c576040519150601f19603f3d011682016040523d82523d6000602084013e610fa1565b606091505b508051600003610fc4576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606060098054610555906114b4565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a9004806110135750819003601f19909101908152919050565b61104783836110aa565b6001600160a01b0383163b1561090b576000548281035b6110716000868380600101945086610efe565b61108e576040516368d2bf6b60e11b815260040160405180910390fd5b81811061105e5781600054146110a357600080fd5b5050505050565b60008054908290036110cf5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461117e57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611146565b508160000361119f57604051622e076360e81b815260040160405180910390fd5b60005550505050565b6001600160e01b0319811681146108ed57600080fd5b6000602082840312156111d057600080fd5b8135610cff816111a8565b60005b838110156111f65781810151838201526020016111de565b50506000910152565b600081518084526112178160208601602086016111db565b601f01601f19169290920160200192915050565b602081526000610cff60208301846111ff565b60006020828403121561125057600080fd5b5035919050565b80356001600160a01b038116811461126e57600080fd5b919050565b6000806040838503121561128657600080fd5b61128f83611257565b946020939093013593505050565b6000806000606084860312156112b257600080fd5b6112bb84611257565b92506112c960208501611257565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561130a5761130a6112d9565b604051601f8501601f19908116603f01168101908282118183101715611332576113326112d9565b8160405280935085815286868601111561134b57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561137757600080fd5b813567ffffffffffffffff81111561138e57600080fd5b8201601f8101841361139f57600080fd5b610fe2848235602084016112ef565b6000602082840312156113c057600080fd5b610cff82611257565b600080604083850312156113dc57600080fd5b6113e583611257565b9150602083013580151581146113fa57600080fd5b809150509250929050565b6000806000806080858703121561141b57600080fd5b61142485611257565b935061143260208601611257565b925060408501359150606085013567ffffffffffffffff81111561145557600080fd5b8501601f8101871361146657600080fd5b611475878235602084016112ef565b91505092959194509250565b6000806040838503121561149457600080fd5b61149d83611257565b91506114ab60208401611257565b90509250929050565b600181811c908216806114c857607f821691505b6020821081036114e857634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561090b57600081815260208120601f850160051c810160208610156115155750805b601f850160051c820191505b8181101561084d57828155600101611521565b815167ffffffffffffffff81111561154e5761154e6112d9565b6115628161155c84546114b4565b846114ee565b602080601f831160018114611597576000841561157f5750858301515b600019600386901b1c1916600185901b17855561084d565b600085815260208120601f198616915b828110156115c6578886015182559484019460019091019084016115a7565b50858210156115e45787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b80820180821115610540576105406115f4565b8082028115828204841417610540576105406115f4565b600083516116468184602088016111db565b83519083019061165a8183602088016111db565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611696908301846111ff565b9695505050505050565b6000602082840312156116b257600080fd5b8151610cff816111a856fea264697066735822122024fe632d5c247cd8455f6fe86a22a705bb5dd35d2159baeaaf843bd0269a5d2864736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000011576520486174652053686974636f696e730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000011576520486174652053686974636f696e73000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): We Hate Shitcoins
Arg [1] : _symbol (string): We Hate Shitcoins
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [3] : 576520486174652053686974636f696e73000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [5] : 576520486174652053686974636f696e73000000000000000000000000000000
Deployed Bytecode Sourcemap
55096:2011:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21997:639;;;;;;;;;;-1:-1:-1;21997:639:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;21997:639:0;;;;;;;;22899:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29390:218::-;;;;;;;;;;-1:-1:-1;29390:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;29390:218:0;1533:203:1;28823:408:0;;;;;;:::i;:::-;;:::i;:::-;;18650:323;;;;;;;;;;-1:-1:-1;18924:12:0;;18711:7;18908:13;:28;18650:323;;;2324:25:1;;;2312:2;2297:18;18650:323:0;2178:177:1;33029:2825:0;;;;;;:::i;:::-;;:::i;55306:31::-;;;;;;;;;;;;;;;;56898:206;;;;;;;;;;;;;:::i;35950:193::-;;;;;;:::i;:::-;;:::i;56507:88::-;;;;;;;;;;-1:-1:-1;56507:88:0;;;;;:::i;:::-;;:::i;24292:152::-;;;;;;;;;;-1:-1:-1;24292:152:0;;;;;:::i;:::-;;:::i;19834:233::-;;;;;;;;;;-1:-1:-1;19834:233:0;;;;;:::i;:::-;;:::i;2776:103::-;;;;;;;;;;;;;:::i;56806:84::-;;;;;;;;;;;;;:::i;2128:87::-;;;;;;;;;;-1:-1:-1;2201:6:0;;-1:-1:-1;;;;;2201:6:0;2128:87;;56706:92;;;;;;;;;;-1:-1:-1;56706:92:0;;;;;:::i;:::-;;:::i;56603:95::-;;;;;;;;;;-1:-1:-1;56603:95:0;;;;;:::i;:::-;;:::i;23075:104::-;;;;;;;;;;;;;:::i;55181:35::-;;;;;;;;;;;;;;;;55698:685;;;;;;:::i;:::-;;:::i;29948:234::-;;;;;;;;;;-1:-1:-1;29948:234:0;;;;;:::i;:::-;;:::i;55262:35::-;;;;;;;;;;;;;;;;36741:407;;;;;;:::i;:::-;;:::i;23285:318::-;;;;;;;;;;-1:-1:-1;23285:318:0;;;;;:::i;:::-;;:::i;55386:31::-;;;;;;;;;;-1:-1:-1;55386:31:0;;;;;;;;55346;;;;;;;;;;;;;;;;30339:164;;;;;;;;;;-1:-1:-1;30339:164:0;;;;;:::i;:::-;;:::i;3034:201::-;;;;;;;;;;-1:-1:-1;3034:201:0;;;;;:::i;:::-;;:::i;55225:28::-;;;;;;;;;;;;;;;;21997:639;22082:4;-1:-1:-1;;;;;;;;;22406:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;22483:25:0;;;22406:102;:179;;;-1:-1:-1;;;;;;;;;;22560:25:0;;;22406:179;22386:199;21997:639;-1:-1:-1;;21997:639:0:o;22899:100::-;22953:13;22986:5;22979:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22899:100;:::o;29390:218::-;29466:7;29491:16;29499:7;29491;:16::i;:::-;29486:64;;29516:34;;-1:-1:-1;;;29516:34:0;;;;;;;;;;;29486:64;-1:-1:-1;29570:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;29570:30:0;;29390:218::o;28823:408::-;28912:13;28928:16;28936:7;28928;:16::i;:::-;28912:32;-1:-1:-1;53156:10:0;-1:-1:-1;;;;;28961:28:0;;;28957:175;;29009:44;29026:5;53156:10;30339:164;:::i;29009:44::-;29004:128;;29081:35;;-1:-1:-1;;;29081:35:0;;;;;;;;;;;29004:128;29144:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;29144:35:0;-1:-1:-1;;;;;29144:35:0;;;;;;;;;29195:28;;29144:24;;29195:28;;;;;;;28901:330;28823:408;;:::o;33029:2825::-;33171:27;33201;33220:7;33201:18;:27::i;:::-;33171:57;;33286:4;-1:-1:-1;;;;;33245:45:0;33261:19;-1:-1:-1;;;;;33245:45:0;;33241:86;;33299:28;;-1:-1:-1;;;33299:28:0;;;;;;;;;;;33241:86;33341:27;32137:24;;;:15;:24;;;;;32365:26;;53156:10;31762:30;;;-1:-1:-1;;;;;31455:28:0;;31740:20;;;31737:56;33527:180;;33620:43;33637:4;53156:10;30339:164;:::i;33620:43::-;33615:92;;33672:35;;-1:-1:-1;;;33672:35:0;;;;;;;;;;;33615:92;-1:-1:-1;;;;;33724:16:0;;33720:52;;33749:23;;-1:-1:-1;;;33749:23:0;;;;;;;;;;;33720:52;33921:15;33918:160;;;34061:1;34040:19;34033:30;33918:160;-1:-1:-1;;;;;34458:24:0;;;;;;;:18;:24;;;;;;34456:26;;-1:-1:-1;;34456:26:0;;;34527:22;;;;;;;;;34525:24;;-1:-1:-1;34525:24:0;;;27681:11;27656:23;27652:41;27639:63;-1:-1:-1;;;27639:63:0;34820:26;;;;:17;:26;;;;;:175;;;;-1:-1:-1;;;35115:47:0;;:52;;35111:627;;35220:1;35210:11;;35188:19;35343:30;;;:17;:30;;;;;;:35;;35339:384;;35481:13;;35466:11;:28;35462:242;;35628:30;;;;:17;:30;;;;;:52;;;35462:242;35169:569;35111:627;35785:7;35781:2;-1:-1:-1;;;;;35766:27:0;35775:4;-1:-1:-1;;;;;35766:27:0;;;;;;;;;;;35804:42;33160:2694;;;33029:2825;;;:::o;56898:206::-;2014:13;:11;:13::i;:::-;56967:82:::1;::::0;56949:12:::1;::::0;56975:10:::1;::::0;57013:21:::1;::::0;56949:12;56967:82;56949:12;56967:82;57013:21;56975:10;56967:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56948:101;;;57068:7;57060:36;;;::::0;-1:-1:-1;;;57060:36:0;;6195:2:1;57060:36:0::1;::::0;::::1;6177:21:1::0;6234:2;6214:18;;;6207:30;-1:-1:-1;;;6253:18:1;;;6246:46;6309:18;;57060:36:0::1;;;;;;;;;56937:167;56898:206::o:0;35950:193::-;36096:39;36113:4;36119:2;36123:7;36096:39;;;;;;;;;;;;:16;:39::i;:::-;35950:193;;;:::o;56507:88::-;2014:13;:11;:13::i;:::-;56574:7:::1;:13;56584:3:::0;56574:7;:13:::1;:::i;:::-;;56507:88:::0;:::o;24292:152::-;24364:7;24407:27;24426:7;24407:18;:27::i;19834:233::-;19906:7;-1:-1:-1;;;;;19930:19:0;;19926:60;;19958:28;;-1:-1:-1;;;19958:28:0;;;;;;;;;;;19926:60;-1:-1:-1;;;;;;20004:25:0;;;;;:18;:25;;;;;;13993:13;20004:55;;19834:233::o;2776:103::-;2014:13;:11;:13::i;:::-;2841:30:::1;2868:1;2841:18;:30::i;:::-;2776:103::o:0;56806:84::-;2014:13;:11;:13::i;:::-;56871:11:::1;::::0;;-1:-1:-1;;56856:26:0;::::1;56871:11;::::0;;::::1;56870:12;56856:26;::::0;;56806:84::o;56706:92::-;2014:13;:11;:13::i;:::-;56773:5:::1;:17:::0;56706:92::o;56603:95::-;2014:13;:11;:13::i;:::-;56672:9:::1;:18:::0;56603:95::o;23075:104::-;23131:13;23164:7;23157:14;;;;;:::i;55698:685::-;55770:5;;55826:9;;55755:12;;55826:13;;55838:1;55826:13;:::i;:::-;55818:5;55802:13;18924:12;;18711:7;18908:13;:28;;18650:323;55802:13;:21;;;;:::i;:::-;:37;55801:115;;;;-1:-1:-1;55899:16:0;;55876:10;55858:29;;;;:17;:29;;;;;;:37;;55890:5;;55858:37;:::i;:::-;:57;;55801:115;55786:131;;55934:6;55930:47;;;55964:1;55957:8;;55930:47;56010:12;56018:4;56010:5;:12;:::i;:::-;55997:9;:25;;55989:67;;;;-1:-1:-1;;;55989:67:0;;9179:2:1;55989:67:0;;;9161:21:1;9218:2;9198:18;;;9191:30;9257:31;9237:18;;;9230:59;9306:18;;55989:67:0;8977:353:1;55989:67:0;56099:9;;:13;;56111:1;56099:13;:::i;:::-;56091:5;56075:13;18924:12;;18711:7;18908:13;:28;;18650:323;56075:13;:21;;;;:::i;:::-;:37;56067:57;;;;-1:-1:-1;;;56067:57:0;;9537:2:1;56067:57:0;;;9519:21:1;9576:1;9556:18;;;9549:29;-1:-1:-1;;;9594:18:1;;;9587:37;9641:18;;56067:57:0;9335:330:1;56067:57:0;56143:11;;;;56135:47;;;;-1:-1:-1;;;56135:47:0;;9872:2:1;56135:47:0;;;9854:21:1;9911:2;9891:18;;;9884:30;9950:25;9930:18;;;9923:53;9993:18;;56135:47:0;9670:347:1;56135:47:0;56209:8;;:12;;56220:1;56209:12;:::i;:::-;56201:5;:20;56193:52;;;;-1:-1:-1;;;56193:52:0;;10224:2:1;56193:52:0;;;10206:21:1;10263:2;10243:18;;;10236:30;-1:-1:-1;;;10282:18:1;;;10275:49;10341:18;;56193:52:0;10022:343:1;56193:52:0;56262:6;56258:77;;;56303:10;56285:29;;;;:17;:29;;;;;:38;;56318:5;;56285:29;:38;;56318:5;;56285:38;:::i;:::-;;;;-1:-1:-1;;56258:77:0;56347:28;56357:10;56369:5;56347:9;:28::i;29948:234::-;53156:10;30043:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;30043:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;30043:60:0;;;;;;;;;;30119:55;;540:41:1;;;30043:49:0;;53156:10;30119:55;;513:18:1;30119:55:0;;;;;;;29948:234;;:::o;36741:407::-;36916:31;36929:4;36935:2;36939:7;36916:12;:31::i;:::-;-1:-1:-1;;;;;36962:14:0;;;:19;36958:183;;37001:56;37032:4;37038:2;37042:7;37051:5;37001:30;:56::i;:::-;36996:145;;37085:40;;-1:-1:-1;;;37085:40:0;;;;;;;;;;;36996:145;36741:407;;;;:::o;23285:318::-;23358:13;23389:16;23397:7;23389;:16::i;:::-;23384:59;;23414:29;;-1:-1:-1;;;23414:29:0;;;;;;;;;;;23384:59;23456:21;23480:10;:8;:10::i;:::-;23456:34;;23514:7;23508:21;23533:1;23508:26;:87;;;;;;;;;;;;;;;;;23561:7;23570:18;23580:7;23570:9;:18::i;:::-;23544:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23508:87;23501:94;23285:318;-1:-1:-1;;;23285:318:0:o;30339:164::-;-1:-1:-1;;;;;30460:25:0;;;30436:4;30460:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30339:164::o;3034:201::-;2014:13;:11;:13::i;:::-;-1:-1:-1;;;;;3123:22:0;::::1;3115:73;;;::::0;-1:-1:-1;;;3115:73:0;;11073:2:1;3115:73:0::1;::::0;::::1;11055:21:1::0;11112:2;11092:18;;;11085:30;11151:34;11131:18;;;11124:62;-1:-1:-1;;;11202:18:1;;;11195:36;11248:19;;3115:73:0::1;10871:402:1::0;3115:73:0::1;3199:28;3218:8;3199:18;:28::i;30761:282::-:0;30826:4;30916:13;;30906:7;:23;30863:153;;;;-1:-1:-1;;30967:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;30967:44:0;:49;;30761:282::o;25447:1275::-;25514:7;25549;25651:13;;25644:4;:20;25640:1015;;;25689:14;25706:23;;;:17;:23;;;;;;;-1:-1:-1;;;25795:24:0;;:29;;25791:845;;26460:113;26467:6;26477:1;26467:11;26460:113;;-1:-1:-1;;;26538:6:0;26520:25;;;;:17;:25;;;;;;26460:113;;25791:845;25666:989;25640:1015;26683:31;;-1:-1:-1;;;26683:31:0;;;;;;;;;;;2293:132;2201:6;;-1:-1:-1;;;;;2201:6:0;53156:10;2357:23;2349:68;;;;-1:-1:-1;;;2349:68:0;;11480:2:1;2349:68:0;;;11462:21:1;;;11499:18;;;11492:30;11558:34;11538:18;;;11531:62;11610:18;;2349:68:0;11278:356:1;3395:191:0;3488:6;;;-1:-1:-1;;;;;3505:17:0;;;-1:-1:-1;;;;;;3505:17:0;;;;;;;3538:40;;3488:6;;;3505:17;3488:6;;3538:40;;3469:16;;3538:40;3458:128;3395:191;:::o;46901:112::-;46978:27;46988:2;46992:8;46978:27;;;;;;;;;;;;:9;:27::i;39232:716::-;39416:88;;-1:-1:-1;;;39416:88:0;;39395:4;;-1:-1:-1;;;;;39416:45:0;;;;;:88;;53156:10;;39483:4;;39489:7;;39498:5;;39416:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39416:88:0;;;;;;;;-1:-1:-1;;39416:88:0;;;;;;;;;;;;:::i;:::-;;;39412:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39699:6;:13;39716:1;39699:18;39695:235;;39745:40;;-1:-1:-1;;;39745:40:0;;;;;;;;;;;39695:235;39888:6;39882:13;39873:6;39869:2;39865:15;39858:38;39412:529;-1:-1:-1;;;;;;39575:64:0;-1:-1:-1;;;39575:64:0;;-1:-1:-1;39412:529:0;39232:716;;;;;;:::o;56391:108::-;56451:13;56484:7;56477:14;;;;;:::i;53276:1745::-;53341:17;53775:4;53768;53762:11;53758:22;53867:1;53861:4;53854:15;53942:4;53939:1;53935:12;53928:19;;;54024:1;54019:3;54012:14;54128:3;54367:5;54349:428;54415:1;54410:3;54406:11;54399:18;;54586:2;54580:4;54576:13;54572:2;54568:22;54563:3;54555:36;54680:2;54670:13;;54737:25;54349:428;54737:25;-1:-1:-1;54807:13:0;;;-1:-1:-1;;54922:14:0;;;54984:19;;;54922:14;53276:1745;-1:-1:-1;53276:1745:0:o;46128:689::-;46259:19;46265:2;46269:8;46259:5;:19::i;:::-;-1:-1:-1;;;;;46320:14:0;;;:19;46316:483;;46360:11;46374:13;46422:14;;;46455:233;46486:62;46525:1;46529:2;46533:7;;;;;;46542:5;46486:30;:62::i;:::-;46481:167;;46584:40;;-1:-1:-1;;;46584:40:0;;;;;;;;;;;46481:167;46683:3;46675:5;:11;46455:233;;46770:3;46753:13;;:20;46749:34;;46775:8;;;46749:34;46341:458;;46128:689;;;:::o;40410:2966::-;40483:20;40506:13;;;40534;;;40530:44;;40556:18;;-1:-1:-1;;;40556:18:0;;;;;;;;;;;40530:44;-1:-1:-1;;;;;41062:22:0;;;;;;:18;:22;;;;14131:2;41062:22;;;:71;;41100:32;41088:45;;41062:71;;;41376:31;;;:17;:31;;;;;-1:-1:-1;28112:15:0;;28086:24;28082:46;27681:11;27656:23;27652:41;27649:52;27639:63;;41376:173;;41611:23;;;;41376:31;;41062:22;;42376:25;41062:22;;42229:335;42890:1;42876:12;42872:20;42830:346;42931:3;42922:7;42919:16;42830:346;;43149:7;43139:8;43136:1;43109:25;43106:1;43103;43098:59;42984:1;42971:15;42830:346;;;42834:77;43209:8;43221:1;43209:13;43205:45;;43231:19;;-1:-1:-1;;;43231:19:0;;;;;;;;;;;43205:45;43267:13;:19;-1:-1:-1;35950:193:0;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:328::-;2437:6;2445;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2545:29;2564:9;2545:29;:::i;:::-;2535:39;;2593:38;2627:2;2616:9;2612:18;2593:38;:::i;:::-;2583:48;;2678:2;2667:9;2663:18;2650:32;2640:42;;2360:328;;;;;:::o;2693:127::-;2754:10;2749:3;2745:20;2742:1;2735:31;2785:4;2782:1;2775:15;2809:4;2806:1;2799:15;2825:632;2890:5;2920:18;2961:2;2953:6;2950:14;2947:40;;;2967:18;;:::i;:::-;3042:2;3036:9;3010:2;3096:15;;-1:-1:-1;;3092:24:1;;;3118:2;3088:33;3084:42;3072:55;;;3142:18;;;3162:22;;;3139:46;3136:72;;;3188:18;;:::i;:::-;3228:10;3224:2;3217:22;3257:6;3248:15;;3287:6;3279;3272:22;3327:3;3318:6;3313:3;3309:16;3306:25;3303:45;;;3344:1;3341;3334:12;3303:45;3394:6;3389:3;3382:4;3374:6;3370:17;3357:44;3449:1;3442:4;3433:6;3425;3421:19;3417:30;3410:41;;;;2825:632;;;;;:::o;3462:451::-;3531:6;3584:2;3572:9;3563:7;3559:23;3555:32;3552:52;;;3600:1;3597;3590:12;3552:52;3640:9;3627:23;3673:18;3665:6;3662:30;3659:50;;;3705:1;3702;3695:12;3659:50;3728:22;;3781:4;3773:13;;3769:27;-1:-1:-1;3759:55:1;;3810:1;3807;3800:12;3759:55;3833:74;3899:7;3894:2;3881:16;3876:2;3872;3868:11;3833:74;:::i;3918:186::-;3977:6;4030:2;4018:9;4009:7;4005:23;4001:32;3998:52;;;4046:1;4043;4036:12;3998:52;4069:29;4088:9;4069:29;:::i;4109:347::-;4174:6;4182;4235:2;4223:9;4214:7;4210:23;4206:32;4203:52;;;4251:1;4248;4241:12;4203:52;4274:29;4293:9;4274:29;:::i;:::-;4264:39;;4353:2;4342:9;4338:18;4325:32;4400:5;4393:13;4386:21;4379:5;4376:32;4366:60;;4422:1;4419;4412:12;4366:60;4445:5;4435:15;;;4109:347;;;;;:::o;4461:667::-;4556:6;4564;4572;4580;4633:3;4621:9;4612:7;4608:23;4604:33;4601:53;;;4650:1;4647;4640:12;4601:53;4673:29;4692:9;4673:29;:::i;:::-;4663:39;;4721:38;4755:2;4744:9;4740:18;4721:38;:::i;:::-;4711:48;;4806:2;4795:9;4791:18;4778:32;4768:42;;4861:2;4850:9;4846:18;4833:32;4888:18;4880:6;4877:30;4874:50;;;4920:1;4917;4910:12;4874:50;4943:22;;4996:4;4988:13;;4984:27;-1:-1:-1;4974:55:1;;5025:1;5022;5015:12;4974:55;5048:74;5114:7;5109:2;5096:16;5091:2;5087;5083:11;5048:74;:::i;:::-;5038:84;;;4461:667;;;;;;;:::o;5133:260::-;5201:6;5209;5262:2;5250:9;5241:7;5237:23;5233:32;5230:52;;;5278:1;5275;5268:12;5230:52;5301:29;5320:9;5301:29;:::i;:::-;5291:39;;5349:38;5383:2;5372:9;5368:18;5349:38;:::i;:::-;5339:48;;5133:260;;;;;:::o;5398:380::-;5477:1;5473:12;;;;5520;;;5541:61;;5595:4;5587:6;5583:17;5573:27;;5541:61;5648:2;5640:6;5637:14;5617:18;5614:38;5611:161;;5694:10;5689:3;5685:20;5682:1;5675:31;5729:4;5726:1;5719:15;5757:4;5754:1;5747:15;5611:161;;5398:380;;;:::o;6464:545::-;6566:2;6561:3;6558:11;6555:448;;;6602:1;6627:5;6623:2;6616:17;6672:4;6668:2;6658:19;6742:2;6730:10;6726:19;6723:1;6719:27;6713:4;6709:38;6778:4;6766:10;6763:20;6760:47;;;-1:-1:-1;6801:4:1;6760:47;6856:2;6851:3;6847:12;6844:1;6840:20;6834:4;6830:31;6820:41;;6911:82;6929:2;6922:5;6919:13;6911:82;;;6974:17;;;6955:1;6944:13;6911:82;;7185:1352;7311:3;7305:10;7338:18;7330:6;7327:30;7324:56;;;7360:18;;:::i;:::-;7389:97;7479:6;7439:38;7471:4;7465:11;7439:38;:::i;:::-;7433:4;7389:97;:::i;:::-;7541:4;;7605:2;7594:14;;7622:1;7617:663;;;;8324:1;8341:6;8338:89;;;-1:-1:-1;8393:19:1;;;8387:26;8338:89;-1:-1:-1;;7142:1:1;7138:11;;;7134:24;7130:29;7120:40;7166:1;7162:11;;;7117:57;8440:81;;7587:944;;7617:663;6411:1;6404:14;;;6448:4;6435:18;;-1:-1:-1;;7653:20:1;;;7771:236;7785:7;7782:1;7779:14;7771:236;;;7874:19;;;7868:26;7853:42;;7966:27;;;;7934:1;7922:14;;;;7801:19;;7771:236;;;7775:3;8035:6;8026:7;8023:19;8020:201;;;8096:19;;;8090:26;-1:-1:-1;;8179:1:1;8175:14;;;8191:3;8171:24;8167:37;8163:42;8148:58;8133:74;;8020:201;-1:-1:-1;;;;;8267:1:1;8251:14;;;8247:22;8234:36;;-1:-1:-1;7185:1352:1:o;8542:127::-;8603:10;8598:3;8594:20;8591:1;8584:31;8634:4;8631:1;8624:15;8658:4;8655:1;8648:15;8674:125;8739:9;;;8760:10;;;8757:36;;;8773:18;;:::i;8804:168::-;8877:9;;;8908;;8925:15;;;8919:22;;8905:37;8895:71;;8946:18;;:::i;10370:496::-;10549:3;10587:6;10581:13;10603:66;10662:6;10657:3;10650:4;10642:6;10638:17;10603:66;:::i;:::-;10732:13;;10691:16;;;;10754:70;10732:13;10691:16;10801:4;10789:17;;10754:70;:::i;:::-;10840:20;;10370:496;-1:-1:-1;;;;10370:496:1:o;11639:489::-;-1:-1:-1;;;;;11908:15:1;;;11890:34;;11960:15;;11955:2;11940:18;;11933:43;12007:2;11992:18;;11985:34;;;12055:3;12050:2;12035:18;;12028:31;;;11833:4;;12076:46;;12102:19;;12094:6;12076:46;:::i;:::-;12068:54;11639:489;-1:-1:-1;;;;;;11639:489:1:o;12133:249::-;12202:6;12255:2;12243:9;12234:7;12230:23;12226:32;12223:52;;;12271:1;12268;12261:12;12223:52;12303:9;12297:16;12322:30;12346:5;12322:30;:::i
Swarm Source
ipfs://24fe632d5c247cd8455f6fe86a22a705bb5dd35d2159baeaaf843bd0269a5d28
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.