ERC-721
Overview
Max Total Supply
1,839 TATEJAIL
Holders
125
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 TATEJAILLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ArrestedTateJailClub
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-12-31 */ // SPDX-License-Identifier: Unlicense // 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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // 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.2 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables * (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, * checking first that contract recipients are aware of the ERC721 protocol * to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move * this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} * whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.2 // 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 { // Reference type for token approval. struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the * zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token * by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token IDs * have been transferred. This includes minting. * And also called after one token has been burned. * * `startTokenId` - the first token ID to be transferred. * `quantity` - the amount to be transferred. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 0x80 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80. str := add(mload(0x40), 0x80) // Update the free memory pointer to allocate. mstore(0x40, str) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: contracts/arrestedTateJailClub.sol pragma solidity ^0.8.4; contract ArrestedTateJailClub is ERC721A, Ownable { using Strings for uint256; string public baseURI = "https://arrestedtatejailclub.s3.amazonaws.com/metadata/"; uint256 public price = 0.001 ether; uint256 public maxPerTx = 20; uint256 public maxSupply = 2000; uint256 public maxFreePerWallet = 1; mapping(address => uint256) public _mintedFreeAmount; constructor() ERC721A("Arrested Tate Jail Club", "TATEJAIL") { _mint(msg.sender, 1); } function mintPublic(uint256 _amount) external payable { require(msg.value >= _amount * price, "Incorrect amount of ETH."); require(totalSupply() + _amount <= maxSupply, "Sold out."); require(tx.origin == msg.sender, "Only humans."); require(_amount <= maxPerTx, "You can only mint a max of 20 per transaction."); _mint(msg.sender, _amount); } function mintFree(uint256 _amount) external payable { require(_mintedFreeAmount[msg.sender] + _amount <= maxFreePerWallet, "You have minted the max free amount allowed per wallet."); require(totalSupply() + _amount <= maxSupply, "Sold out."); _mintedFreeAmount[msg.sender]++; _mint(msg.sender, _amount); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); return string(abi.encodePacked(baseURI, tokenId.toString(), ".json")); } function setBaseURI(string calldata baseURI_) external onlyOwner { baseURI = baseURI_; } function setPrice(uint256 _price) external onlyOwner { price = _price; } function setMaxPerTx(uint256 _amount) external onlyOwner { maxPerTx = _amount; } function _startTokenId() internal pure override returns (uint256) { return 1; } function withdraw() external onlyOwner { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_mintedFreeAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"_amount","type":"uint256"}],"name":"mintFree","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e0604052603760808181529062001ca160a039805162000029916009916020909101906200021f565b5066038d7ea4c68000600a556014600b556107d0600c556001600d553480156200005257600080fd5b50604080518082018252601781527f41727265737465642054617465204a61696c20436c7562000000000000000000602080830191825283518085019094526008845267151055115290525360c21b908401528151919291620000b8916002916200021f565b508051620000ce9060039060208401906200021f565b5050600160005550620000e133620000f4565b620000ee33600162000146565b62000302565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005481620001685760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b1783179055828401908390839060008051602062001cd88339815191528180a4600183015b818114620001f7578083600060008051602062001cd8833981519152600080a4600101620001ce565b50816200021657604051622e076360e81b815260040160405180910390fd5b60005550505050565b8280546200022d90620002c5565b90600052602060002090601f0160209004810192826200025157600085556200029c565b82601f106200026c57805160ff19168380011785556200029c565b828001600101855582156200029c579182015b828111156200029c5782518255916020019190600101906200027f565b50620002aa929150620002ae565b5090565b5b80821115620002aa5760008155600101620002af565b600181811c90821680620002da57607f821691505b60208210811415620002fc57634e487b7160e01b600052602260045260246000fd5b50919050565b61198f80620003126000396000f3fe6080604052600436106101c25760003560e01c806391b7f5ed116100f7578063c6f6f21611610095578063efd0cbf911610064578063efd0cbf9146104ef578063f2fde38b14610502578063f4db2acb14610522578063f968adbe1461054f57600080fd5b8063c6f6f21614610450578063c87b56dd14610470578063d5abeb0114610490578063e985e9c5146104a657600080fd5b8063a22cb465116100d1578063a22cb465146103e7578063a414673314610407578063a70273571461041a578063b88d4fde1461043057600080fd5b806391b7f5ed1461039c57806395d89b41146103bc578063a035b1fe146103d157600080fd5b806342842e0e116101645780636c0360eb1161013e5780636c0360eb1461033457806370a0823114610349578063715018a6146103695780638da5cb5b1461037e57600080fd5b806342842e0e146102d457806355f804b3146102f45780636352211e1461031457600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd1461027857806323b872dd1461029f5780633ccfd60b146102bf57600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e23660046115db565b610565565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b506102116105b7565b6040516101f391906117e0565b34801561022a57600080fd5b5061023e610239366004611687565b610649565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b506102766102713660046115b1565b61068d565b005b34801561028457600080fd5b5060015460005403600019015b6040519081526020016101f3565b3480156102ab57600080fd5b506102766102ba36600461145d565b61072d565b3480156102cb57600080fd5b506102766108be565b3480156102e057600080fd5b506102766102ef36600461145d565b610959565b34801561030057600080fd5b5061027661030f366004611615565b610979565b34801561032057600080fd5b5061023e61032f366004611687565b61098d565b34801561034057600080fd5b50610211610998565b34801561035557600080fd5b5061029161036436600461140f565b610a26565b34801561037557600080fd5b50610276610a75565b34801561038a57600080fd5b506008546001600160a01b031661023e565b3480156103a857600080fd5b506102766103b7366004611687565b610a89565b3480156103c857600080fd5b50610211610a96565b3480156103dd57600080fd5b50610291600a5481565b3480156103f357600080fd5b50610276610402366004611575565b610aa5565b610276610415366004611687565b610b3b565b34801561042657600080fd5b50610291600d5481565b34801561043c57600080fd5b5061027661044b366004611499565b610c4c565b34801561045c57600080fd5b5061027661046b366004611687565b610c96565b34801561047c57600080fd5b5061021161048b366004611687565b610ca3565b34801561049c57600080fd5b50610291600c5481565b3480156104b257600080fd5b506101e76104c136600461142a565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6102766104fd366004611687565b610d44565b34801561050e57600080fd5b5061027661051d36600461140f565b610ea6565b34801561052e57600080fd5b5061029161053d36600461140f565b600e6020526000908152604090205481565b34801561055b57600080fd5b50610291600b5481565b60006301ffc9a760e01b6001600160e01b03198316148061059657506380ac58cd60e01b6001600160e01b03198316145b806105b15750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546105c690611881565b80601f01602080910402602001604051908101604052809291908181526020018280546105f290611881565b801561063f5780601f106106145761010080835404028352916020019161063f565b820191906000526020600020905b81548152906001019060200180831161062257829003601f168201915b5050505050905090565b600061065482610f1c565b610671576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106988261098d565b9050336001600160a01b038216146106d1576106b481336104c1565b6106d1576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061073882610f51565b9050836001600160a01b0316816001600160a01b03161461076b5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176107b85761079b86336104c1565b6107b857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166107df57604051633a954ecd60e21b815260040160405180910390fd5b80156107ea57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b831661087557600184016000818152600460205260409020546108735760005481146108735760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6108c6610fc1565b604051600090339047908381818185875af1925050503d8060008114610908576040519150601f19603f3d011682016040523d82523d6000602084013e61090d565b606091505b50509050806109565760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064015b60405180910390fd5b50565b61097483838360405180602001604052806000815250610c4c565b505050565b610981610fc1565b6109746009838361135a565b60006105b182610f51565b600980546109a590611881565b80601f01602080910402602001604051908101604052809291908181526020018280546109d190611881565b8015610a1e5780601f106109f357610100808354040283529160200191610a1e565b820191906000526020600020905b815481529060010190602001808311610a0157829003601f168201915b505050505081565b60006001600160a01b038216610a4f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610a7d610fc1565b610a87600061101b565b565b610a91610fc1565b600a55565b6060600380546105c690611881565b6001600160a01b038216331415610acf5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600d54336000908152600e6020526040902054610b599083906117f3565b1115610bcd5760405162461bcd60e51b815260206004820152603760248201527f596f752068617665206d696e74656420746865206d6178206672656520616d6f60448201527f756e7420616c6c6f776564207065722077616c6c65742e000000000000000000606482015260840161094d565b600c546001546000548391900360001901610be891906117f3565b1115610c225760405162461bcd60e51b815260206004820152600960248201526829b7b6321037baba1760b91b604482015260640161094d565b336000908152600e60205260408120805491610c3d836118bc565b9190505550610956338261106d565b610c5784848461072d565b6001600160a01b0383163b15610c9057610c7384848484611164565b610c90576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b610c9e610fc1565b600b55565b6060610cae82610f1c565b610d125760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161094d565b6009610d1d8361125c565b604051602001610d2e9291906116e8565b6040516020818303038152906040529050919050565b600a54610d51908261181f565b341015610da05760405162461bcd60e51b815260206004820152601860248201527f496e636f727265637420616d6f756e74206f66204554482e0000000000000000604482015260640161094d565b600c546001546000548391900360001901610dbb91906117f3565b1115610df55760405162461bcd60e51b815260206004820152600960248201526829b7b6321037baba1760b91b604482015260640161094d565b323314610e335760405162461bcd60e51b815260206004820152600c60248201526b27b7363c90343ab6b0b7399760a11b604482015260640161094d565b600b54811115610e9c5760405162461bcd60e51b815260206004820152602e60248201527f596f752063616e206f6e6c79206d696e742061206d6178206f6620323020706560448201526d39103a3930b739b0b1ba34b7b71760911b606482015260840161094d565b610956338261106d565b610eae610fc1565b6001600160a01b038116610f135760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161094d565b6109568161101b565b600081600111158015610f30575060005482105b80156105b1575050600090815260046020526040902054600160e01b161590565b60008180600111610fa857600054811015610fa857600081815260046020526040902054600160e01b8116610fa6575b80610f9f575060001901600081815260046020526040902054610f81565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b03163314610a875760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161094d565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000548161108e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461113d57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611105565b508161115b57604051622e076360e81b815260040160405180910390fd5b60005550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906111999033908990889088906004016117a3565b602060405180830381600087803b1580156111b357600080fd5b505af19250505080156111e3575060408051601f3d908101601f191682019092526111e0918101906115f8565b60015b61123e573d808015611211576040519150601f19603f3d011682016040523d82523d6000602084013e611216565b606091505b508051611236576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816112805750506040805180820190915260018152600360fc1b602082015290565b8160005b81156112aa5780611294816118bc565b91506112a39050600a8361180b565b9150611284565b60008167ffffffffffffffff8111156112c5576112c561192d565b6040519080825280601f01601f1916602001820160405280156112ef576020820181803683370190505b5090505b84156112545761130460018361183e565b9150611311600a866118d7565b61131c9060306117f3565b60f81b81838151811061133157611331611917565b60200101906001600160f81b031916908160001a905350611353600a8661180b565b94506112f3565b82805461136690611881565b90600052602060002090601f01602090048101928261138857600085556113ce565b82601f106113a15782800160ff198235161785556113ce565b828001600101855582156113ce579182015b828111156113ce5782358255916020019190600101906113b3565b506113da9291506113de565b5090565b5b808211156113da57600081556001016113df565b80356001600160a01b038116811461140a57600080fd5b919050565b60006020828403121561142157600080fd5b610f9f826113f3565b6000806040838503121561143d57600080fd5b611446836113f3565b9150611454602084016113f3565b90509250929050565b60008060006060848603121561147257600080fd5b61147b846113f3565b9250611489602085016113f3565b9150604084013590509250925092565b600080600080608085870312156114af57600080fd5b6114b8856113f3565b93506114c6602086016113f3565b925060408501359150606085013567ffffffffffffffff808211156114ea57600080fd5b818701915087601f8301126114fe57600080fd5b8135818111156115105761151061192d565b604051601f8201601f19908116603f011681019083821181831017156115385761153861192d565b816040528281528a602084870101111561155157600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561158857600080fd5b611591836113f3565b9150602083013580151581146115a657600080fd5b809150509250929050565b600080604083850312156115c457600080fd5b6115cd836113f3565b946020939093013593505050565b6000602082840312156115ed57600080fd5b8135610f9f81611943565b60006020828403121561160a57600080fd5b8151610f9f81611943565b6000806020838503121561162857600080fd5b823567ffffffffffffffff8082111561164057600080fd5b818501915085601f83011261165457600080fd5b81358181111561166357600080fd5b86602082850101111561167557600080fd5b60209290920196919550909350505050565b60006020828403121561169957600080fd5b5035919050565b600081518084526116b8816020860160208601611855565b601f01601f19169290920160200192915050565b600081516116de818560208601611855565b9290920192915050565b600080845481600182811c91508083168061170457607f831692505b602080841082141561172457634e487b7160e01b86526022600452602486fd5b818015611738576001811461174957611776565b60ff19861689528489019650611776565b60008b81526020902060005b8681101561176e5781548b820152908501908301611755565b505084890196505b50505050505061179a61178982866116cc565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906117d6908301846116a0565b9695505050505050565b602081526000610f9f60208301846116a0565b60008219821115611806576118066118eb565b500190565b60008261181a5761181a611901565b500490565b6000816000190483118215151615611839576118396118eb565b500290565b600082821015611850576118506118eb565b500390565b60005b83811015611870578181015183820152602001611858565b83811115610c905750506000910152565b600181811c9082168061189557607f821691505b602082108114156118b657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156118d0576118d06118eb565b5060010190565b6000826118e6576118e6611901565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461095657600080fdfea2646970667358221220f705d3239ab1ec05316e0a3b90d469fc5391e28e0b3225ab27a5eafa105e45e264736f6c6343000807003368747470733a2f2f6172726573746564746174656a61696c636c75622e73332e616d617a6f6e6177732e636f6d2f6d657461646174612fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
Deployed Bytecode
0x6080604052600436106101c25760003560e01c806391b7f5ed116100f7578063c6f6f21611610095578063efd0cbf911610064578063efd0cbf9146104ef578063f2fde38b14610502578063f4db2acb14610522578063f968adbe1461054f57600080fd5b8063c6f6f21614610450578063c87b56dd14610470578063d5abeb0114610490578063e985e9c5146104a657600080fd5b8063a22cb465116100d1578063a22cb465146103e7578063a414673314610407578063a70273571461041a578063b88d4fde1461043057600080fd5b806391b7f5ed1461039c57806395d89b41146103bc578063a035b1fe146103d157600080fd5b806342842e0e116101645780636c0360eb1161013e5780636c0360eb1461033457806370a0823114610349578063715018a6146103695780638da5cb5b1461037e57600080fd5b806342842e0e146102d457806355f804b3146102f45780636352211e1461031457600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd1461027857806323b872dd1461029f5780633ccfd60b146102bf57600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e23660046115db565b610565565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b506102116105b7565b6040516101f391906117e0565b34801561022a57600080fd5b5061023e610239366004611687565b610649565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b506102766102713660046115b1565b61068d565b005b34801561028457600080fd5b5060015460005403600019015b6040519081526020016101f3565b3480156102ab57600080fd5b506102766102ba36600461145d565b61072d565b3480156102cb57600080fd5b506102766108be565b3480156102e057600080fd5b506102766102ef36600461145d565b610959565b34801561030057600080fd5b5061027661030f366004611615565b610979565b34801561032057600080fd5b5061023e61032f366004611687565b61098d565b34801561034057600080fd5b50610211610998565b34801561035557600080fd5b5061029161036436600461140f565b610a26565b34801561037557600080fd5b50610276610a75565b34801561038a57600080fd5b506008546001600160a01b031661023e565b3480156103a857600080fd5b506102766103b7366004611687565b610a89565b3480156103c857600080fd5b50610211610a96565b3480156103dd57600080fd5b50610291600a5481565b3480156103f357600080fd5b50610276610402366004611575565b610aa5565b610276610415366004611687565b610b3b565b34801561042657600080fd5b50610291600d5481565b34801561043c57600080fd5b5061027661044b366004611499565b610c4c565b34801561045c57600080fd5b5061027661046b366004611687565b610c96565b34801561047c57600080fd5b5061021161048b366004611687565b610ca3565b34801561049c57600080fd5b50610291600c5481565b3480156104b257600080fd5b506101e76104c136600461142a565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6102766104fd366004611687565b610d44565b34801561050e57600080fd5b5061027661051d36600461140f565b610ea6565b34801561052e57600080fd5b5061029161053d36600461140f565b600e6020526000908152604090205481565b34801561055b57600080fd5b50610291600b5481565b60006301ffc9a760e01b6001600160e01b03198316148061059657506380ac58cd60e01b6001600160e01b03198316145b806105b15750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546105c690611881565b80601f01602080910402602001604051908101604052809291908181526020018280546105f290611881565b801561063f5780601f106106145761010080835404028352916020019161063f565b820191906000526020600020905b81548152906001019060200180831161062257829003601f168201915b5050505050905090565b600061065482610f1c565b610671576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106988261098d565b9050336001600160a01b038216146106d1576106b481336104c1565b6106d1576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061073882610f51565b9050836001600160a01b0316816001600160a01b03161461076b5760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176107b85761079b86336104c1565b6107b857604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166107df57604051633a954ecd60e21b815260040160405180910390fd5b80156107ea57600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b831661087557600184016000818152600460205260409020546108735760005481146108735760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6108c6610fc1565b604051600090339047908381818185875af1925050503d8060008114610908576040519150601f19603f3d011682016040523d82523d6000602084013e61090d565b606091505b50509050806109565760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064015b60405180910390fd5b50565b61097483838360405180602001604052806000815250610c4c565b505050565b610981610fc1565b6109746009838361135a565b60006105b182610f51565b600980546109a590611881565b80601f01602080910402602001604051908101604052809291908181526020018280546109d190611881565b8015610a1e5780601f106109f357610100808354040283529160200191610a1e565b820191906000526020600020905b815481529060010190602001808311610a0157829003601f168201915b505050505081565b60006001600160a01b038216610a4f576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610a7d610fc1565b610a87600061101b565b565b610a91610fc1565b600a55565b6060600380546105c690611881565b6001600160a01b038216331415610acf5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600d54336000908152600e6020526040902054610b599083906117f3565b1115610bcd5760405162461bcd60e51b815260206004820152603760248201527f596f752068617665206d696e74656420746865206d6178206672656520616d6f60448201527f756e7420616c6c6f776564207065722077616c6c65742e000000000000000000606482015260840161094d565b600c546001546000548391900360001901610be891906117f3565b1115610c225760405162461bcd60e51b815260206004820152600960248201526829b7b6321037baba1760b91b604482015260640161094d565b336000908152600e60205260408120805491610c3d836118bc565b9190505550610956338261106d565b610c5784848461072d565b6001600160a01b0383163b15610c9057610c7384848484611164565b610c90576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b610c9e610fc1565b600b55565b6060610cae82610f1c565b610d125760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161094d565b6009610d1d8361125c565b604051602001610d2e9291906116e8565b6040516020818303038152906040529050919050565b600a54610d51908261181f565b341015610da05760405162461bcd60e51b815260206004820152601860248201527f496e636f727265637420616d6f756e74206f66204554482e0000000000000000604482015260640161094d565b600c546001546000548391900360001901610dbb91906117f3565b1115610df55760405162461bcd60e51b815260206004820152600960248201526829b7b6321037baba1760b91b604482015260640161094d565b323314610e335760405162461bcd60e51b815260206004820152600c60248201526b27b7363c90343ab6b0b7399760a11b604482015260640161094d565b600b54811115610e9c5760405162461bcd60e51b815260206004820152602e60248201527f596f752063616e206f6e6c79206d696e742061206d6178206f6620323020706560448201526d39103a3930b739b0b1ba34b7b71760911b606482015260840161094d565b610956338261106d565b610eae610fc1565b6001600160a01b038116610f135760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161094d565b6109568161101b565b600081600111158015610f30575060005482105b80156105b1575050600090815260046020526040902054600160e01b161590565b60008180600111610fa857600054811015610fa857600081815260046020526040902054600160e01b8116610fa6575b80610f9f575060001901600081815260046020526040902054610f81565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6008546001600160a01b03163314610a875760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161094d565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000548161108e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461113d57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611105565b508161115b57604051622e076360e81b815260040160405180910390fd5b60005550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906111999033908990889088906004016117a3565b602060405180830381600087803b1580156111b357600080fd5b505af19250505080156111e3575060408051601f3d908101601f191682019092526111e0918101906115f8565b60015b61123e573d808015611211576040519150601f19603f3d011682016040523d82523d6000602084013e611216565b606091505b508051611236576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816112805750506040805180820190915260018152600360fc1b602082015290565b8160005b81156112aa5780611294816118bc565b91506112a39050600a8361180b565b9150611284565b60008167ffffffffffffffff8111156112c5576112c561192d565b6040519080825280601f01601f1916602001820160405280156112ef576020820181803683370190505b5090505b84156112545761130460018361183e565b9150611311600a866118d7565b61131c9060306117f3565b60f81b81838151811061133157611331611917565b60200101906001600160f81b031916908160001a905350611353600a8661180b565b94506112f3565b82805461136690611881565b90600052602060002090601f01602090048101928261138857600085556113ce565b82601f106113a15782800160ff198235161785556113ce565b828001600101855582156113ce579182015b828111156113ce5782358255916020019190600101906113b3565b506113da9291506113de565b5090565b5b808211156113da57600081556001016113df565b80356001600160a01b038116811461140a57600080fd5b919050565b60006020828403121561142157600080fd5b610f9f826113f3565b6000806040838503121561143d57600080fd5b611446836113f3565b9150611454602084016113f3565b90509250929050565b60008060006060848603121561147257600080fd5b61147b846113f3565b9250611489602085016113f3565b9150604084013590509250925092565b600080600080608085870312156114af57600080fd5b6114b8856113f3565b93506114c6602086016113f3565b925060408501359150606085013567ffffffffffffffff808211156114ea57600080fd5b818701915087601f8301126114fe57600080fd5b8135818111156115105761151061192d565b604051601f8201601f19908116603f011681019083821181831017156115385761153861192d565b816040528281528a602084870101111561155157600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561158857600080fd5b611591836113f3565b9150602083013580151581146115a657600080fd5b809150509250929050565b600080604083850312156115c457600080fd5b6115cd836113f3565b946020939093013593505050565b6000602082840312156115ed57600080fd5b8135610f9f81611943565b60006020828403121561160a57600080fd5b8151610f9f81611943565b6000806020838503121561162857600080fd5b823567ffffffffffffffff8082111561164057600080fd5b818501915085601f83011261165457600080fd5b81358181111561166357600080fd5b86602082850101111561167557600080fd5b60209290920196919550909350505050565b60006020828403121561169957600080fd5b5035919050565b600081518084526116b8816020860160208601611855565b601f01601f19169290920160200192915050565b600081516116de818560208601611855565b9290920192915050565b600080845481600182811c91508083168061170457607f831692505b602080841082141561172457634e487b7160e01b86526022600452602486fd5b818015611738576001811461174957611776565b60ff19861689528489019650611776565b60008b81526020902060005b8681101561176e5781548b820152908501908301611755565b505084890196505b50505050505061179a61178982866116cc565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906117d6908301846116a0565b9695505050505050565b602081526000610f9f60208301846116a0565b60008219821115611806576118066118eb565b500190565b60008261181a5761181a611901565b500490565b6000816000190483118215151615611839576118396118eb565b500290565b600082821015611850576118506118eb565b500390565b60005b83811015611870578181015183820152602001611858565b83811115610c905750506000910152565b600181811c9082168061189557607f821691505b602082108114156118b657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156118d0576118d06118eb565b5060010190565b6000826118e6576118e6611901565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461095657600080fdfea2646970667358221220f705d3239ab1ec05316e0a3b90d469fc5391e28e0b3225ab27a5eafa105e45e264736f6c63430008070033
Deployed Bytecode Sourcemap
57067:2169:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24602:639;;;;;;;;;;-1:-1:-1;24602:639:0;;;;;:::i;:::-;;:::i;:::-;;;6973:14:1;;6966:22;6948:41;;6936:2;6921:18;24602:639:0;;;;;;;;25504:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31987:218::-;;;;;;;;;;-1:-1:-1;31987:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6271:32:1;;;6253:51;;6241:2;6226:18;31987:218:0;6107:203:1;31428:400:0;;;;;;;;;;-1:-1:-1;31428:400:0;;;;;:::i;:::-;;:::i;:::-;;21255:323;;;;;;;;;;-1:-1:-1;59041:1:0;21529:12;21316:7;21513:13;:28;-1:-1:-1;;21513:46:0;21255:323;;;10769:25:1;;;10757:2;10742:18;21255:323:0;10623:177:1;35694:2817:0;;;;;;;;;;-1:-1:-1;35694:2817:0;;;;;:::i;:::-;;:::i;59058:173::-;;;;;;;;;;;;;:::i;38607:185::-;;;;;;;;;;-1:-1:-1;38607:185:0;;;;;:::i;:::-;;:::i;58651:102::-;;;;;;;;;;-1:-1:-1;58651:102:0;;;;;:::i;:::-;;:::i;26897:152::-;;;;;;;;;;-1:-1:-1;26897:152:0;;;;;:::i;:::-;;:::i;57160:81::-;;;;;;;;;;;;;:::i;22439:233::-;;;;;;;;;;-1:-1:-1;22439:233:0;;;;;:::i;:::-;;:::i;5352:103::-;;;;;;;;;;;;;:::i;4704:87::-;;;;;;;;;;-1:-1:-1;4777:6:0;;-1:-1:-1;;;;;4777:6:0;4704:87;;58761:86;;;;;;;;;;-1:-1:-1;58761:86:0;;;;;:::i;:::-;;:::i;25680:104::-;;;;;;;;;;;;;:::i;57250:34::-;;;;;;;;;;;;;;;;32545:308;;;;;;;;;;-1:-1:-1;32545:308:0;;;;;:::i;:::-;;:::i;57981:345::-;;;;;;:::i;:::-;;:::i;57364:35::-;;;;;;;;;;;;;;;;39390:399;;;;;;;;;;-1:-1:-1;39390:399:0;;;;;:::i;:::-;;:::i;58855:94::-;;;;;;;;;;-1:-1:-1;58855:94:0;;;;;:::i;:::-;;:::i;58334:309::-;;;;;;;;;;-1:-1:-1;58334:309:0;;;;;:::i;:::-;;:::i;57326:31::-;;;;;;;;;;;;;;;;33010:164;;;;;;;;;;-1:-1:-1;33010:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33131:25:0;;;33107:4;33131:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33010:164;57577:396;;;;;;:::i;:::-;;:::i;5610:201::-;;;;;;;;;;-1:-1:-1;5610:201:0;;;;;:::i;:::-;;:::i;57408:52::-;;;;;;;;;;-1:-1:-1;57408:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;57291:28;;;;;;;;;;;;;;;;24602:639;24687:4;-1:-1:-1;;;;;;;;;25011:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;25088:25:0;;;25011:102;:179;;;-1:-1:-1;;;;;;;;;;25165:25:0;;;25011:179;24991:199;24602:639;-1:-1:-1;;24602:639:0:o;25504:100::-;25558:13;25591:5;25584:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25504:100;:::o;31987:218::-;32063:7;32088:16;32096:7;32088;:16::i;:::-;32083:64;;32113:34;;-1:-1:-1;;;32113:34:0;;;;;;;;;;;32083:64;-1:-1:-1;32167:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;32167:30:0;;31987:218::o;31428:400::-;31509:13;31525:16;31533:7;31525;:16::i;:::-;31509:32;-1:-1:-1;55285:10:0;-1:-1:-1;;;;;31558:28:0;;;31554:175;;31606:44;31623:5;55285:10;33010:164;:::i;31606:44::-;31601:128;;31678:35;;-1:-1:-1;;;31678:35:0;;;;;;;;;;;31601:128;31741:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;31741:35:0;-1:-1:-1;;;;;31741:35:0;;;;;;;;;31792:28;;31741:24;;31792:28;;;;;;;31498:330;31428:400;;:::o;35694:2817::-;35828:27;35858;35877:7;35858:18;:27::i;:::-;35828:57;;35943:4;-1:-1:-1;;;;;35902:45:0;35918:19;-1:-1:-1;;;;;35902:45:0;;35898:86;;35956:28;;-1:-1:-1;;;35956:28:0;;;;;;;;;;;35898:86;35998:27;34808:24;;;:15;:24;;;;;35030:26;;55285:10;34433:30;;;-1:-1:-1;;;;;34126:28:0;;34411:20;;;34408:56;36184:180;;36277:43;36294:4;55285:10;33010:164;:::i;36277:43::-;36272:92;;36329:35;;-1:-1:-1;;;36329:35:0;;;;;;;;;;;36272:92;-1:-1:-1;;;;;36381:16:0;;36377:52;;36406:23;;-1:-1:-1;;;36406:23:0;;;;;;;;;;;36377:52;36578:15;36575:160;;;36718:1;36697:19;36690:30;36575:160;-1:-1:-1;;;;;37115:24:0;;;;;;;:18;:24;;;;;;37113:26;;-1:-1:-1;;37113:26:0;;;37184:22;;;;;;;;;37182:24;;-1:-1:-1;37182:24:0;;;30286:11;30261:23;30257:41;30244:63;-1:-1:-1;;;30244:63:0;37477:26;;;;:17;:26;;;;;:175;-1:-1:-1;;;37772:47:0;;37768:627;;37877:1;37867:11;;37845:19;38000:30;;;:17;:30;;;;;;37996:384;;38138:13;;38123:11;:28;38119:242;;38285:30;;;;:17;:30;;;;;:52;;;38119:242;37826:569;37768:627;38442:7;38438:2;-1:-1:-1;;;;;38423:27:0;38432:4;-1:-1:-1;;;;;38423:27:0;;;;;;;;;;;35817:2694;;;35694:2817;;;:::o;59058:173::-;4590:13;:11;:13::i;:::-;59127:49:::1;::::0;59109:12:::1;::::0;59127:10:::1;::::0;59150:21:::1;::::0;59109:12;59127:49;59109:12;59127:49;59150:21;59127:10;:49:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59108:68;;;59195:7;59187:36;;;::::0;-1:-1:-1;;;59187:36:0;;10143:2:1;59187:36:0::1;::::0;::::1;10125:21:1::0;10182:2;10162:18;;;10155:30;-1:-1:-1;;;10201:18:1;;;10194:46;10257:18;;59187:36:0::1;;;;;;;;;59097:134;59058:173::o:0;38607:185::-;38745:39;38762:4;38768:2;38772:7;38745:39;;;;;;;;;;;;:16;:39::i;:::-;38607:185;;;:::o;58651:102::-;4590:13;:11;:13::i;:::-;58727:18:::1;:7;58737:8:::0;;58727:18:::1;:::i;26897:152::-:0;26969:7;27012:27;27031:7;27012:18;:27::i;57160:81::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22439:233::-;22511:7;-1:-1:-1;;;;;22535:19:0;;22531:60;;22563:28;;-1:-1:-1;;;22563:28:0;;;;;;;;;;;22531:60;-1:-1:-1;;;;;;22609:25:0;;;;;:18;:25;;;;;;16598:13;22609:55;;22439:233::o;5352:103::-;4590:13;:11;:13::i;:::-;5417:30:::1;5444:1;5417:18;:30::i;:::-;5352:103::o:0;58761:86::-;4590:13;:11;:13::i;:::-;58825:5:::1;:14:::0;58761:86::o;25680:104::-;25736:13;25769:7;25762:14;;;;;:::i;32545:308::-;-1:-1:-1;;;;;32644:31:0;;55285:10;32644:31;32640:61;;;32684:17;;-1:-1:-1;;;32684:17:0;;;;;;;;;;;32640:61;55285:10;32714:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;32714:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;32714:60:0;;;;;;;;;;32790:55;;6948:41:1;;;32714:49:0;;55285:10;32790:55;;6921:18:1;32790:55:0;;;;;;;32545:308;;:::o;57981:345::-;58095:16;;58070:10;58052:29;;;;:17;:29;;;;;;:39;;58084:7;;58052:39;:::i;:::-;:59;;58044:127;;;;-1:-1:-1;;;58044:127:0;;8186:2:1;58044:127:0;;;8168:21:1;8225:2;8205:18;;;8198:30;8264:34;8244:18;;;8237:62;8335:25;8315:18;;;8308:53;8378:19;;58044:127:0;7984:419:1;58044:127:0;58217:9;;59041:1;21529:12;21316:7;21513:13;58206:7;;21513:28;;-1:-1:-1;;21513:46:0;58190:23;;;;:::i;:::-;:36;;58182:58;;;;-1:-1:-1;;;58182:58:0;;10488:2:1;58182:58:0;;;10470:21:1;10527:1;10507:18;;;10500:29;-1:-1:-1;;;10545:18:1;;;10538:39;10594:18;;58182:58:0;10286:332:1;58182:58:0;58271:10;58253:29;;;;:17;:29;;;;;:31;;;;;;:::i;:::-;;;;;;58295:26;58301:10;58313:7;58295:5;:26::i;39390:399::-;39557:31;39570:4;39576:2;39580:7;39557:12;:31::i;:::-;-1:-1:-1;;;;;39603:14:0;;;:19;39599:183;;39642:56;39673:4;39679:2;39683:7;39692:5;39642:30;:56::i;:::-;39637:145;;39726:40;;-1:-1:-1;;;39726:40:0;;;;;;;;;;;39637:145;39390:399;;;;:::o;58855:94::-;4590:13;:11;:13::i;:::-;58923:8:::1;:18:::0;58855:94::o;58334:309::-;58416:13;58464:16;58472:7;58464;:16::i;:::-;58442:113;;;;-1:-1:-1;;;58442:113:0;;9727:2:1;58442:113:0;;;9709:21:1;9766:2;9746:18;;;9739:30;9805:34;9785:18;;;9778:62;-1:-1:-1;;;9856:18:1;;;9849:45;9911:19;;58442:113:0;9525:411:1;58442:113:0;58597:7;58606:18;:7;:16;:18::i;:::-;58580:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58566:69;;58334:309;;;:::o;57577:396::-;57675:5;;57665:15;;:7;:15;:::i;:::-;57652:9;:28;;57644:65;;;;-1:-1:-1;;;57644:65:0;;7426:2:1;57644:65:0;;;7408:21:1;7465:2;7445:18;;;7438:30;7504:26;7484:18;;;7477:54;7548:18;;57644:65:0;7224:348:1;57644:65:0;57755:9;;59041:1;21529:12;21316:7;21513:13;57744:7;;21513:28;;-1:-1:-1;;21513:46:0;57728:23;;;;:::i;:::-;:36;;57720:58;;;;-1:-1:-1;;;57720:58:0;;10488:2:1;57720:58:0;;;10470:21:1;10527:1;10507:18;;;10500:29;-1:-1:-1;;;10545:18:1;;;10538:39;10594:18;;57720:58:0;10286:332:1;57720:58:0;57797:9;57810:10;57797:23;57789:48;;;;-1:-1:-1;;;57789:48:0;;9025:2:1;57789:48:0;;;9007:21:1;9064:2;9044:18;;;9037:30;-1:-1:-1;;;9083:18:1;;;9076:42;9135:18;;57789:48:0;8823:336:1;57789:48:0;57867:8;;57856:7;:19;;57848:78;;;;-1:-1:-1;;;57848:78:0;;8610:2:1;57848:78:0;;;8592:21:1;8649:2;8629:18;;;8622:30;8688:34;8668:18;;;8661:62;-1:-1:-1;;;8739:18:1;;;8732:44;8793:19;;57848:78:0;8408:410:1;57848:78:0;57939:26;57945:10;57957:7;57939:5;:26::i;5610:201::-;4590:13;:11;:13::i;:::-;-1:-1:-1;;;;;5699:22:0;::::1;5691:73;;;::::0;-1:-1:-1;;;5691:73:0;;7779:2:1;5691:73:0::1;::::0;::::1;7761:21:1::0;7818:2;7798:18;;;7791:30;7857:34;7837:18;;;7830:62;-1:-1:-1;;;7908:18:1;;;7901:36;7954:19;;5691:73:0::1;7577:402:1::0;5691:73:0::1;5775:28;5794:8;5775:18;:28::i;33432:282::-:0;33497:4;33553:7;59041:1;33534:26;;:66;;;;;33587:13;;33577:7;:23;33534:66;:153;;;;-1:-1:-1;;33638:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;33638:44:0;:49;;33432:282::o;28052:1275::-;28119:7;28154;;59041:1;28203:23;28199:1061;;28256:13;;28249:4;:20;28245:1015;;;28294:14;28311:23;;;:17;:23;;;;;;-1:-1:-1;;;28400:24:0;;28396:845;;29065:113;29072:11;29065:113;;-1:-1:-1;;;29143:6:0;29125:25;;;;:17;:25;;;;;;29065:113;;;29211:6;28052:1275;-1:-1:-1;;;28052:1275:0:o;28396:845::-;28271:989;28245:1015;29288:31;;-1:-1:-1;;;29288:31:0;;;;;;;;;;;4869:132;4777:6;;-1:-1:-1;;;;;4777:6:0;55285:10;4933:23;4925:68;;;;-1:-1:-1;;;4925:68:0;;9366:2:1;4925:68:0;;;9348:21:1;;;9385:18;;;9378:30;9444:34;9424:18;;;9417:62;9496:18;;4925:68:0;9164:356:1;5971:191:0;6064:6;;;-1:-1:-1;;;;;6081:17:0;;;-1:-1:-1;;;;;;6081:17:0;;;;;;;6114:40;;6064:6;;;6081:17;6064:6;;6114:40;;6045:16;;6114:40;6034:128;5971:191;:::o;43051:2454::-;43124:20;43147:13;43175;43171:44;;43197:18;;-1:-1:-1;;;43197:18:0;;;;;;;;;;;43171:44;-1:-1:-1;;;;;43703:22:0;;;;;;:18;:22;;;;16736:2;43703:22;;;:71;;43741:32;43729:45;;43703:71;;;44017:31;;;:17;:31;;;;;-1:-1:-1;30717:15:0;;30691:24;30687:46;30286:11;30261:23;30257:41;30254:52;30244:63;;44017:173;;44252:23;;;;44017:31;;43703:22;;44751:25;43703:22;;44604:335;45019:1;45005:12;45001:20;44959:346;45060:3;45051:7;45048:16;44959:346;;45278:7;45268:8;45265:1;45238:25;45235:1;45232;45227:59;45113:1;45100:15;44959:346;;;-1:-1:-1;45338:13:0;45334:45;;45360:19;;-1:-1:-1;;;45360:19:0;;;;;;;;;;;45334:45;45396:13;:19;-1:-1:-1;38607:185:0;;;:::o;41873:716::-;42057:88;;-1:-1:-1;;;42057:88:0;;42036:4;;-1:-1:-1;;;;;42057:45:0;;;;;:88;;55285:10;;42124:4;;42130:7;;42139:5;;42057:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42057:88:0;;;;;;;;-1:-1:-1;;42057:88:0;;;;;;;;;;;;:::i;:::-;;;42053:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42340:13:0;;42336:235;;42386:40;;-1:-1:-1;;;42386:40:0;;;;;;;;;;;42336:235;42529:6;42523:13;42514:6;42510:2;42506:15;42499:38;42053:529;-1:-1:-1;;;;;;42216:64:0;-1:-1:-1;;;42216:64:0;;-1:-1:-1;42053:529:0;41873:716;;;;;;:::o;1402:723::-;1458:13;1679:10;1675:53;;-1:-1:-1;;1706:10:0;;;;;;;;;;;;-1:-1:-1;;;1706:10:0;;;;;1402:723::o;1675:53::-;1753:5;1738:12;1794:78;1801:9;;1794:78;;1827:8;;;;:::i;:::-;;-1:-1:-1;1850:10:0;;-1:-1:-1;1858:2:0;1850:10;;:::i;:::-;;;1794:78;;;1882:19;1914:6;1904:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1904:17:0;;1882:39;;1932:154;1939:10;;1932:154;;1966:11;1976:1;1966:11;;:::i;:::-;;-1:-1:-1;2035:10:0;2043:2;2035:5;:10;:::i;:::-;2022:24;;:2;:24;:::i;:::-;2009:39;;1992:6;1999;1992:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1992:56:0;;;;;;;;-1:-1:-1;2063:11:0;2072:2;2063:11;;:::i;:::-;;;1932:154;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:1138::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:53;;;1170:1;1167;1160:12;1121:53;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:38;1275:2;1264:9;1260:18;1241:38;:::i;:::-;1231:48;;1326:2;1315:9;1311:18;1298:32;1288:42;;1381:2;1370:9;1366:18;1353:32;1404:18;1445:2;1437:6;1434:14;1431:34;;;1461:1;1458;1451:12;1431:34;1499:6;1488:9;1484:22;1474:32;;1544:7;1537:4;1533:2;1529:13;1525:27;1515:55;;1566:1;1563;1556:12;1515:55;1602:2;1589:16;1624:2;1620;1617:10;1614:36;;;1630:18;;:::i;:::-;1705:2;1699:9;1673:2;1759:13;;-1:-1:-1;;1755:22:1;;;1779:2;1751:31;1747:40;1735:53;;;1803:18;;;1823:22;;;1800:46;1797:72;;;1849:18;;:::i;:::-;1889:10;1885:2;1878:22;1924:2;1916:6;1909:18;1964:7;1959:2;1954;1950;1946:11;1942:20;1939:33;1936:53;;;1985:1;1982;1975:12;1936:53;2041:2;2036;2032;2028:11;2023:2;2015:6;2011:15;1998:46;2086:1;2081:2;2076;2068:6;2064:15;2060:24;2053:35;2107:6;2097:16;;;;;;;981:1138;;;;;;;:::o;2124:347::-;2189:6;2197;2250:2;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2289:29;2308:9;2289:29;:::i;:::-;2279:39;;2368:2;2357:9;2353:18;2340:32;2415:5;2408:13;2401:21;2394:5;2391:32;2381:60;;2437:1;2434;2427:12;2381:60;2460:5;2450:15;;;2124:347;;;;;:::o;2476:254::-;2544:6;2552;2605:2;2593:9;2584:7;2580:23;2576:32;2573:52;;;2621:1;2618;2611:12;2573:52;2644:29;2663:9;2644:29;:::i;:::-;2634:39;2720:2;2705:18;;;;2692:32;;-1:-1:-1;;;2476:254:1:o;2735:245::-;2793:6;2846:2;2834:9;2825:7;2821:23;2817:32;2814:52;;;2862:1;2859;2852:12;2814:52;2901:9;2888:23;2920:30;2944:5;2920:30;:::i;2985:249::-;3054:6;3107:2;3095:9;3086:7;3082:23;3078:32;3075:52;;;3123:1;3120;3113:12;3075:52;3155:9;3149:16;3174:30;3198:5;3174:30;:::i;3239:592::-;3310:6;3318;3371:2;3359:9;3350:7;3346:23;3342:32;3339:52;;;3387:1;3384;3377:12;3339:52;3427:9;3414:23;3456:18;3497:2;3489:6;3486:14;3483:34;;;3513:1;3510;3503:12;3483:34;3551:6;3540:9;3536:22;3526:32;;3596:7;3589:4;3585:2;3581:13;3577:27;3567:55;;3618:1;3615;3608:12;3567:55;3658:2;3645:16;3684:2;3676:6;3673:14;3670:34;;;3700:1;3697;3690:12;3670:34;3745:7;3740:2;3731:6;3727:2;3723:15;3719:24;3716:37;3713:57;;;3766:1;3763;3756:12;3713:57;3797:2;3789:11;;;;;3819:6;;-1:-1:-1;3239:592:1;;-1:-1:-1;;;;3239:592:1:o;3836:180::-;3895:6;3948:2;3936:9;3927:7;3923:23;3919:32;3916:52;;;3964:1;3961;3954:12;3916:52;-1:-1:-1;3987:23:1;;3836:180;-1:-1:-1;3836:180:1:o;4021:257::-;4062:3;4100:5;4094:12;4127:6;4122:3;4115:19;4143:63;4199:6;4192:4;4187:3;4183:14;4176:4;4169:5;4165:16;4143:63;:::i;:::-;4260:2;4239:15;-1:-1:-1;;4235:29:1;4226:39;;;;4267:4;4222:50;;4021:257;-1:-1:-1;;4021:257:1:o;4283:185::-;4325:3;4363:5;4357:12;4378:52;4423:6;4418:3;4411:4;4404:5;4400:16;4378:52;:::i;:::-;4446:16;;;;;4283:185;-1:-1:-1;;4283:185:1:o;4591:1301::-;4868:3;4897:1;4930:6;4924:13;4960:3;4982:1;5010:9;5006:2;5002:18;4992:28;;5070:2;5059:9;5055:18;5092;5082:61;;5136:4;5128:6;5124:17;5114:27;;5082:61;5162:2;5210;5202:6;5199:14;5179:18;5176:38;5173:165;;;-1:-1:-1;;;5237:33:1;;5293:4;5290:1;5283:15;5323:4;5244:3;5311:17;5173:165;5354:18;5381:104;;;;5499:1;5494:320;;;;5347:467;;5381:104;-1:-1:-1;;5414:24:1;;5402:37;;5459:16;;;;-1:-1:-1;5381:104:1;;5494:320;10878:1;10871:14;;;10915:4;10902:18;;5589:1;5603:165;5617:6;5614:1;5611:13;5603:165;;;5695:14;;5682:11;;;5675:35;5738:16;;;;5632:10;;5603:165;;;5607:3;;5797:6;5792:3;5788:16;5781:23;;5347:467;;;;;;;5830:56;5855:30;5881:3;5873:6;5855:30;:::i;:::-;-1:-1:-1;;;4533:20:1;;4578:1;4569:11;;4473:113;5830:56;5823:63;4591:1301;-1:-1:-1;;;;;4591:1301:1:o;6315:488::-;-1:-1:-1;;;;;6584:15:1;;;6566:34;;6636:15;;6631:2;6616:18;;6609:43;6683:2;6668:18;;6661:34;;;6731:3;6726:2;6711:18;;6704:31;;;6509:4;;6752:45;;6777:19;;6769:6;6752:45;:::i;:::-;6744:53;6315:488;-1:-1:-1;;;;;;6315:488:1:o;7000:219::-;7149:2;7138:9;7131:21;7112:4;7169:44;7209:2;7198:9;7194:18;7186:6;7169:44;:::i;10931:128::-;10971:3;11002:1;10998:6;10995:1;10992:13;10989:39;;;11008:18;;:::i;:::-;-1:-1:-1;11044:9:1;;10931:128::o;11064:120::-;11104:1;11130;11120:35;;11135:18;;:::i;:::-;-1:-1:-1;11169:9:1;;11064:120::o;11189:168::-;11229:7;11295:1;11291;11287:6;11283:14;11280:1;11277:21;11272:1;11265:9;11258:17;11254:45;11251:71;;;11302:18;;:::i;:::-;-1:-1:-1;11342:9:1;;11189:168::o;11362:125::-;11402:4;11430:1;11427;11424:8;11421:34;;;11435:18;;:::i;:::-;-1:-1:-1;11472:9:1;;11362:125::o;11492:258::-;11564:1;11574:113;11588:6;11585:1;11582:13;11574:113;;;11664:11;;;11658:18;11645:11;;;11638:39;11610:2;11603:10;11574:113;;;11705:6;11702:1;11699:13;11696:48;;;-1:-1:-1;;11740:1:1;11722:16;;11715:27;11492:258::o;11755:380::-;11834:1;11830:12;;;;11877;;;11898:61;;11952:4;11944:6;11940:17;11930:27;;11898:61;12005:2;11997:6;11994:14;11974:18;11971:38;11968:161;;;12051:10;12046:3;12042:20;12039:1;12032:31;12086:4;12083:1;12076:15;12114:4;12111:1;12104:15;11968:161;;11755:380;;;:::o;12140:135::-;12179:3;-1:-1:-1;;12200:17:1;;12197:43;;;12220:18;;:::i;:::-;-1:-1:-1;12267:1:1;12256:13;;12140:135::o;12280:112::-;12312:1;12338;12328:35;;12343:18;;:::i;:::-;-1:-1:-1;12377:9:1;;12280:112::o;12397:127::-;12458:10;12453:3;12449:20;12446:1;12439:31;12489:4;12486:1;12479:15;12513:4;12510:1;12503:15;12529:127;12590:10;12585:3;12581:20;12578:1;12571:31;12621:4;12618:1;12611:15;12645:4;12642:1;12635:15;12661:127;12722:10;12717:3;12713:20;12710:1;12703:31;12753:4;12750:1;12743:15;12777:4;12774:1;12767:15;12793:127;12854:10;12849:3;12845:20;12842:1;12835:31;12885:4;12882:1;12875:15;12909:4;12906:1;12899:15;12925:131;-1:-1:-1;;;;;;12999:32:1;;12989:43;;12979:71;;13046:1;13043;13036:12
Swarm Source
ipfs://f705d3239ab1ec05316e0a3b90d469fc5391e28e0b3225ab27a5eafa105e45e2
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.