Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
250 BTD
Holders
104
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 BTDLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
NFT
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-03 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (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/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.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/NFT.sol pragma solidity >=0.8.0; /** * @dev contract module which defines Cannaverse NFT Collection * and all the interactions it uses */ contract NFT is ERC721A, Ownable { // using Strings for uint256; //@dev Attributes for NFT configuration string internal baseURI; uint256 public cost = 0.1 ether; uint256 public maxSupply = 250; uint256 public maxMintAmount = 10; mapping(uint256 => string) private _tokenURIs; bool public paused; function _startTokenId() internal view virtual override returns (uint256) { return 1; } /** * @dev Create an instance of Couch Heroes contract */ constructor() ERC721A("Baby Tsuka - Dwagon Genesis NFT Collection", "BTD") {} /** * @dev pause de contract * _state of the contract */ function pause(bool _state) external onlyOwner { paused = _state; } /** * @dev get base URI for NFT metadata */ function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function mintFirst() external onlyOwner { _safeMint(msg.sender, 1); } /** * @dev Mint edition to a wallet * @param _to wallet receiving the edition(s). * @param _mintAmount number of editions to mint. */ function mint(address _to, uint256 _mintAmount) public payable { uint256 supply = totalSupply(); require( supply + _mintAmount <= maxSupply, "Not enough mintable editions !" ); require(msg.value == cost * _mintAmount, "Incorrect ETH value"); _safeMint(_to, _mintAmount); } /** * @dev change cost of NFT * @param _newCost new cost of each edition */ function setCost(uint256 _newCost) external onlyOwner { cost = _newCost; } /** * @dev restrict max mintable amount of edition at a time * @param _newmaxMintAmount new max mintable amount */ function setmaxMintAmount(uint256 _newmaxMintAmount) external onlyOwner { maxMintAmount = _newmaxMintAmount; } /** * @dev change metadata uri * @param _newBaseURI new URI for metadata */ function setBaseURI(string memory _newBaseURI) external onlyOwner { baseURI = _newBaseURI; } /** * @dev Get token URI * @param tokenId ID of the token to retrieve */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "URI query for nonexistent token"); if (bytes(_tokenURIs[tokenId]).length == 0) { string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string( abi.encodePacked( currentBaseURI, Strings.toString(tokenId), ".json" ) ) : ""; } else return _tokenURIs[tokenId]; } function withdraw() public onlyOwner { uint256 balance = address(this).balance; payable(owner()).transfer(balance); } }
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":"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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","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":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintFirst","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","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
608060405267016345785d8a0000600a5560fa600b55600a600c553480156200002757600080fd5b506040518060600160405280602a815260200162002eb6602a91396040518060400160405280600381526020017f4254440000000000000000000000000000000000000000000000000000000000815250816002908051906020019062000090929190620001bf565b508060039080519060200190620000a9929190620001bf565b50620000ba620000e860201b60201c565b6000819055505050620000e2620000d6620000f160201b60201c565b620000f960201b60201c565b620002d4565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001cd906200026f565b90600052602060002090601f016020900481019282620001f157600085556200023d565b82601f106200020c57805160ff19168380011785556200023d565b828001600101855582156200023d579182015b828111156200023c5782518255916020019190600101906200021f565b5b5090506200024c919062000250565b5090565b5b808211156200026b57600081600090555060010162000251565b5090565b600060028204905060018216806200028857607f821691505b602082108114156200029f576200029e620002a5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612bd280620002e46000396000f3fe6080604052600436106101b75760003560e01c80635c975abb116100ec578063a22cb4651161008a578063d267870711610064578063d2678707146105d5578063d5abeb01146105ec578063e985e9c514610617578063f2fde38b14610654576101b7565b8063a22cb46514610546578063b88d4fde1461056f578063c87b56dd14610598576101b7565b8063715018a6116100c6578063715018a6146104b05780637f00c7a6146104c75780638da5cb5b146104f057806395d89b411461051b576101b7565b80635c975abb1461040b5780636352211e1461043657806370a0823114610473576101b7565b8063239c70ae1161015957806340c10f191161013357806340c10f191461037457806342842e0e1461039057806344a0d68a146103b957806355f804b3146103e2576101b7565b8063239c70ae1461030957806323b872dd146103345780633ccfd60b1461035d576101b7565b8063081812fc11610195578063081812fc1461024d578063095ea7b31461028a57806313faede6146102b357806318160ddd146102de576101b7565b806301ffc9a7146101bc57806302329a29146101f957806306fdde0314610222575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de91906121a2565b61067d565b6040516101f091906124aa565b60405180910390f35b34801561020557600080fd5b50610220600480360381019061021b9190612175565b61070f565b005b34801561022e57600080fd5b50610237610734565b60405161024491906124c5565b60405180910390f35b34801561025957600080fd5b50610274600480360381019061026f9190612245565b6107c6565b6040516102819190612443565b60405180910390f35b34801561029657600080fd5b506102b160048036038101906102ac9190612135565b610845565b005b3480156102bf57600080fd5b506102c8610989565b6040516102d59190612587565b60405180910390f35b3480156102ea57600080fd5b506102f361098f565b6040516103009190612587565b60405180910390f35b34801561031557600080fd5b5061031e6109a6565b60405161032b9190612587565b60405180910390f35b34801561034057600080fd5b5061035b6004803603810190610356919061201f565b6109ac565b005b34801561036957600080fd5b50610372610cd1565b005b61038e60048036038101906103899190612135565b610d2f565b005b34801561039c57600080fd5b506103b760048036038101906103b2919061201f565b610de9565b005b3480156103c557600080fd5b506103e060048036038101906103db9190612245565b610e09565b005b3480156103ee57600080fd5b50610409600480360381019061040491906121fc565b610e1b565b005b34801561041757600080fd5b50610420610e3d565b60405161042d91906124aa565b60405180910390f35b34801561044257600080fd5b5061045d60048036038101906104589190612245565b610e50565b60405161046a9190612443565b60405180910390f35b34801561047f57600080fd5b5061049a60048036038101906104959190611fb2565b610e62565b6040516104a79190612587565b60405180910390f35b3480156104bc57600080fd5b506104c5610f1b565b005b3480156104d357600080fd5b506104ee60048036038101906104e99190612245565b610f2f565b005b3480156104fc57600080fd5b50610505610f41565b6040516105129190612443565b60405180910390f35b34801561052757600080fd5b50610530610f6b565b60405161053d91906124c5565b60405180910390f35b34801561055257600080fd5b5061056d600480360381019061056891906120f5565b610ffd565b005b34801561057b57600080fd5b5061059660048036038101906105919190612072565b611175565b005b3480156105a457600080fd5b506105bf60048036038101906105ba9190612245565b6111e8565b6040516105cc91906124c5565b60405180910390f35b3480156105e157600080fd5b506105ea61135b565b005b3480156105f857600080fd5b50610601611370565b60405161060e9190612587565b60405180910390f35b34801561062357600080fd5b5061063e60048036038101906106399190611fdf565b611376565b60405161064b91906124aa565b60405180910390f35b34801561066057600080fd5b5061067b60048036038101906106769190611fb2565b61140a565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106d857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107085750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b61071761148e565b80600e60006101000a81548160ff02191690831515021790555050565b60606002805461074390612837565b80601f016020809104026020016040519081016040528092919081815260200182805461076f90612837565b80156107bc5780601f10610791576101008083540402835291602001916107bc565b820191906000526020600020905b81548152906001019060200180831161079f57829003601f168201915b5050505050905090565b60006107d18261150c565b610807576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061085082610e50565b90508073ffffffffffffffffffffffffffffffffffffffff1661087161156b565b73ffffffffffffffffffffffffffffffffffffffff16146108d45761089d8161089861156b565b611376565b6108d3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600a5481565b6000610999611573565b6001546000540303905090565b600c5481565b60006109b78261157c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a1e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a2a8461164a565b91509150610a408187610a3b61156b565b611671565b610a8c57610a5586610a5061156b565b611376565b610a8b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610af3576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b0086868660016116b5565b8015610b0b57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bd985610bb58888876116bb565b7c0200000000000000000000000000000000000000000000000000000000176116e3565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c61576000600185019050600060046000838152602001908152602001600020541415610c5f576000548114610c5e578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cc9868686600161170e565b505050505050565b610cd961148e565b6000479050610ce6610f41565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d2b573d6000803e3d6000fd5b5050565b6000610d3961098f565b9050600b548282610d4a919061266c565b1115610d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8290612547565b60405180910390fd5b81600a54610d9991906126f3565b3414610dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd190612567565b60405180910390fd5b610de48383611714565b505050565b610e0483838360405180602001604052806000815250611175565b505050565b610e1161148e565b80600a8190555050565b610e2361148e565b8060099080519060200190610e39929190611dc6565b5050565b600e60009054906101000a900460ff1681565b6000610e5b8261157c565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610eca576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f2361148e565b610f2d6000611732565b565b610f3761148e565b80600c8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f7a90612837565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa690612837565b8015610ff35780601f10610fc857610100808354040283529160200191610ff3565b820191906000526020600020905b815481529060010190602001808311610fd657829003601f168201915b5050505050905090565b61100561156b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561106a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061107761156b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661112461156b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161116991906124aa565b60405180910390a35050565b6111808484846109ac565b60008373ffffffffffffffffffffffffffffffffffffffff163b146111e2576111ab848484846117f8565b6111e1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606111f38261150c565b611232576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611229906124e7565b60405180910390fd5b6000600d6000848152602001908152602001600020805461125290612837565b905014156112b7576000611264611958565b9050600081511161128457604051806020016040528060008152506112af565b8061128e846119ea565b60405160200161129f929190612414565b6040516020818303038152906040525b915050611356565b600d600083815260200190815260200160002080546112d590612837565b80601f016020809104026020016040519081016040528092919081815260200182805461130190612837565b801561134e5780601f106113235761010080835404028352916020019161134e565b820191906000526020600020905b81548152906001019060200180831161133157829003601f168201915b505050505090505b919050565b61136361148e565b61136e336001611714565b565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61141261148e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611482576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147990612507565b60405180910390fd5b61148b81611732565b50565b611496611b4b565b73ffffffffffffffffffffffffffffffffffffffff166114b4610f41565b73ffffffffffffffffffffffffffffffffffffffff161461150a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150190612527565b60405180910390fd5b565b600081611517611573565b11158015611526575060005482105b8015611564575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061158b611573565b11611613576000548110156116125760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611610575b60008114156116065760046000836001900393508381526020019081526020016000205490506115db565b8092505050611645565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86116d2868684611b53565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61172e828260405180602001604052806000815250611b5c565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261181e61156b565b8786866040518563ffffffff1660e01b8152600401611840949392919061245e565b602060405180830381600087803b15801561185a57600080fd5b505af192505050801561188b57506040513d601f19601f8201168201806040525081019061188891906121cf565b60015b611905573d80600081146118bb576040519150601f19603f3d011682016040523d82523d6000602084013e6118c0565b606091505b506000815114156118fd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606009805461196790612837565b80601f016020809104026020016040519081016040528092919081815260200182805461199390612837565b80156119e05780601f106119b5576101008083540402835291602001916119e0565b820191906000526020600020905b8154815290600101906020018083116119c357829003601f168201915b5050505050905090565b60606000821415611a32576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611b46565b600082905060005b60008214611a64578080611a4d9061289a565b915050600a82611a5d91906126c2565b9150611a3a565b60008167ffffffffffffffff811115611a8057611a7f6129d0565b5b6040519080825280601f01601f191660200182016040528015611ab25781602001600182028036833780820191505090505b5090505b60008514611b3f57600182611acb919061274d565b9150600a85611ada91906128e3565b6030611ae6919061266c565b60f81b818381518110611afc57611afb6129a1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611b3891906126c2565b9450611ab6565b8093505050505b919050565b600033905090565b60009392505050565b611b668383611bf9565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611bf457600080549050600083820390505b611ba660008683806001019450866117f8565b611bdc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611b93578160005414611bf157600080fd5b50505b505050565b6000805490506000821415611c3a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c4760008483856116b5565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611cbe83611caf60008660006116bb565b611cb885611db6565b176116e3565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611d5f57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611d24565b506000821415611d9b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611db1600084838561170e565b505050565b60006001821460e11b9050919050565b828054611dd290612837565b90600052602060002090601f016020900481019282611df45760008555611e3b565b82601f10611e0d57805160ff1916838001178555611e3b565b82800160010185558215611e3b579182015b82811115611e3a578251825591602001919060010190611e1f565b5b509050611e489190611e4c565b5090565b5b80821115611e65576000816000905550600101611e4d565b5090565b6000611e7c611e77846125c7565b6125a2565b905082815260208101848484011115611e9857611e97612a04565b5b611ea38482856127f5565b509392505050565b6000611ebe611eb9846125f8565b6125a2565b905082815260208101848484011115611eda57611ed9612a04565b5b611ee58482856127f5565b509392505050565b600081359050611efc81612b40565b92915050565b600081359050611f1181612b57565b92915050565b600081359050611f2681612b6e565b92915050565b600081519050611f3b81612b6e565b92915050565b600082601f830112611f5657611f556129ff565b5b8135611f66848260208601611e69565b91505092915050565b600082601f830112611f8457611f836129ff565b5b8135611f94848260208601611eab565b91505092915050565b600081359050611fac81612b85565b92915050565b600060208284031215611fc857611fc7612a0e565b5b6000611fd684828501611eed565b91505092915050565b60008060408385031215611ff657611ff5612a0e565b5b600061200485828601611eed565b925050602061201585828601611eed565b9150509250929050565b60008060006060848603121561203857612037612a0e565b5b600061204686828701611eed565b935050602061205786828701611eed565b925050604061206886828701611f9d565b9150509250925092565b6000806000806080858703121561208c5761208b612a0e565b5b600061209a87828801611eed565b94505060206120ab87828801611eed565b93505060406120bc87828801611f9d565b925050606085013567ffffffffffffffff8111156120dd576120dc612a09565b5b6120e987828801611f41565b91505092959194509250565b6000806040838503121561210c5761210b612a0e565b5b600061211a85828601611eed565b925050602061212b85828601611f02565b9150509250929050565b6000806040838503121561214c5761214b612a0e565b5b600061215a85828601611eed565b925050602061216b85828601611f9d565b9150509250929050565b60006020828403121561218b5761218a612a0e565b5b600061219984828501611f02565b91505092915050565b6000602082840312156121b8576121b7612a0e565b5b60006121c684828501611f17565b91505092915050565b6000602082840312156121e5576121e4612a0e565b5b60006121f384828501611f2c565b91505092915050565b60006020828403121561221257612211612a0e565b5b600082013567ffffffffffffffff8111156122305761222f612a09565b5b61223c84828501611f6f565b91505092915050565b60006020828403121561225b5761225a612a0e565b5b600061226984828501611f9d565b91505092915050565b61227b81612781565b82525050565b61228a81612793565b82525050565b600061229b82612629565b6122a5818561263f565b93506122b5818560208601612804565b6122be81612a13565b840191505092915050565b60006122d482612634565b6122de8185612650565b93506122ee818560208601612804565b6122f781612a13565b840191505092915050565b600061230d82612634565b6123178185612661565b9350612327818560208601612804565b80840191505092915050565b6000612340601f83612650565b915061234b82612a24565b602082019050919050565b6000612363602683612650565b915061236e82612a4d565b604082019050919050565b6000612386600583612661565b915061239182612a9c565b600582019050919050565b60006123a9602083612650565b91506123b482612ac5565b602082019050919050565b60006123cc601e83612650565b91506123d782612aee565b602082019050919050565b60006123ef601383612650565b91506123fa82612b17565b602082019050919050565b61240e816127eb565b82525050565b60006124208285612302565b915061242c8284612302565b915061243782612379565b91508190509392505050565b60006020820190506124586000830184612272565b92915050565b60006080820190506124736000830187612272565b6124806020830186612272565b61248d6040830185612405565b818103606083015261249f8184612290565b905095945050505050565b60006020820190506124bf6000830184612281565b92915050565b600060208201905081810360008301526124df81846122c9565b905092915050565b6000602082019050818103600083015261250081612333565b9050919050565b6000602082019050818103600083015261252081612356565b9050919050565b600060208201905081810360008301526125408161239c565b9050919050565b60006020820190508181036000830152612560816123bf565b9050919050565b60006020820190508181036000830152612580816123e2565b9050919050565b600060208201905061259c6000830184612405565b92915050565b60006125ac6125bd565b90506125b88282612869565b919050565b6000604051905090565b600067ffffffffffffffff8211156125e2576125e16129d0565b5b6125eb82612a13565b9050602081019050919050565b600067ffffffffffffffff821115612613576126126129d0565b5b61261c82612a13565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612677826127eb565b9150612682836127eb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156126b7576126b6612914565b5b828201905092915050565b60006126cd826127eb565b91506126d8836127eb565b9250826126e8576126e7612943565b5b828204905092915050565b60006126fe826127eb565b9150612709836127eb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561274257612741612914565b5b828202905092915050565b6000612758826127eb565b9150612763836127eb565b92508282101561277657612775612914565b5b828203905092915050565b600061278c826127cb565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612822578082015181840152602081019050612807565b83811115612831576000848401525b50505050565b6000600282049050600182168061284f57607f821691505b6020821081141561286357612862612972565b5b50919050565b61287282612a13565b810181811067ffffffffffffffff82111715612891576128906129d0565b5b80604052505050565b60006128a5826127eb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156128d8576128d7612914565b5b600182019050919050565b60006128ee826127eb565b91506128f9836127eb565b92508261290957612908612943565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f7420656e6f756768206d696e7461626c652065646974696f6e7320210000600082015250565b7f496e636f7272656374204554482076616c756500000000000000000000000000600082015250565b612b4981612781565b8114612b5457600080fd5b50565b612b6081612793565b8114612b6b57600080fd5b50565b612b778161279f565b8114612b8257600080fd5b50565b612b8e816127eb565b8114612b9957600080fd5b5056fea26469706673582212201f3ce7f8c846f01528dedf8c6b59771796bacb003c838b4291829d2d59b6d85864736f6c6343000807003342616279205473756b61202d20447761676f6e2047656e65736973204e465420436f6c6c656374696f6e
Deployed Bytecode
0x6080604052600436106101b75760003560e01c80635c975abb116100ec578063a22cb4651161008a578063d267870711610064578063d2678707146105d5578063d5abeb01146105ec578063e985e9c514610617578063f2fde38b14610654576101b7565b8063a22cb46514610546578063b88d4fde1461056f578063c87b56dd14610598576101b7565b8063715018a6116100c6578063715018a6146104b05780637f00c7a6146104c75780638da5cb5b146104f057806395d89b411461051b576101b7565b80635c975abb1461040b5780636352211e1461043657806370a0823114610473576101b7565b8063239c70ae1161015957806340c10f191161013357806340c10f191461037457806342842e0e1461039057806344a0d68a146103b957806355f804b3146103e2576101b7565b8063239c70ae1461030957806323b872dd146103345780633ccfd60b1461035d576101b7565b8063081812fc11610195578063081812fc1461024d578063095ea7b31461028a57806313faede6146102b357806318160ddd146102de576101b7565b806301ffc9a7146101bc57806302329a29146101f957806306fdde0314610222575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de91906121a2565b61067d565b6040516101f091906124aa565b60405180910390f35b34801561020557600080fd5b50610220600480360381019061021b9190612175565b61070f565b005b34801561022e57600080fd5b50610237610734565b60405161024491906124c5565b60405180910390f35b34801561025957600080fd5b50610274600480360381019061026f9190612245565b6107c6565b6040516102819190612443565b60405180910390f35b34801561029657600080fd5b506102b160048036038101906102ac9190612135565b610845565b005b3480156102bf57600080fd5b506102c8610989565b6040516102d59190612587565b60405180910390f35b3480156102ea57600080fd5b506102f361098f565b6040516103009190612587565b60405180910390f35b34801561031557600080fd5b5061031e6109a6565b60405161032b9190612587565b60405180910390f35b34801561034057600080fd5b5061035b6004803603810190610356919061201f565b6109ac565b005b34801561036957600080fd5b50610372610cd1565b005b61038e60048036038101906103899190612135565b610d2f565b005b34801561039c57600080fd5b506103b760048036038101906103b2919061201f565b610de9565b005b3480156103c557600080fd5b506103e060048036038101906103db9190612245565b610e09565b005b3480156103ee57600080fd5b50610409600480360381019061040491906121fc565b610e1b565b005b34801561041757600080fd5b50610420610e3d565b60405161042d91906124aa565b60405180910390f35b34801561044257600080fd5b5061045d60048036038101906104589190612245565b610e50565b60405161046a9190612443565b60405180910390f35b34801561047f57600080fd5b5061049a60048036038101906104959190611fb2565b610e62565b6040516104a79190612587565b60405180910390f35b3480156104bc57600080fd5b506104c5610f1b565b005b3480156104d357600080fd5b506104ee60048036038101906104e99190612245565b610f2f565b005b3480156104fc57600080fd5b50610505610f41565b6040516105129190612443565b60405180910390f35b34801561052757600080fd5b50610530610f6b565b60405161053d91906124c5565b60405180910390f35b34801561055257600080fd5b5061056d600480360381019061056891906120f5565b610ffd565b005b34801561057b57600080fd5b5061059660048036038101906105919190612072565b611175565b005b3480156105a457600080fd5b506105bf60048036038101906105ba9190612245565b6111e8565b6040516105cc91906124c5565b60405180910390f35b3480156105e157600080fd5b506105ea61135b565b005b3480156105f857600080fd5b50610601611370565b60405161060e9190612587565b60405180910390f35b34801561062357600080fd5b5061063e60048036038101906106399190611fdf565b611376565b60405161064b91906124aa565b60405180910390f35b34801561066057600080fd5b5061067b60048036038101906106769190611fb2565b61140a565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106d857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107085750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b61071761148e565b80600e60006101000a81548160ff02191690831515021790555050565b60606002805461074390612837565b80601f016020809104026020016040519081016040528092919081815260200182805461076f90612837565b80156107bc5780601f10610791576101008083540402835291602001916107bc565b820191906000526020600020905b81548152906001019060200180831161079f57829003601f168201915b5050505050905090565b60006107d18261150c565b610807576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061085082610e50565b90508073ffffffffffffffffffffffffffffffffffffffff1661087161156b565b73ffffffffffffffffffffffffffffffffffffffff16146108d45761089d8161089861156b565b611376565b6108d3576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600a5481565b6000610999611573565b6001546000540303905090565b600c5481565b60006109b78261157c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a1e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a2a8461164a565b91509150610a408187610a3b61156b565b611671565b610a8c57610a5586610a5061156b565b611376565b610a8b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610af3576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b0086868660016116b5565b8015610b0b57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610bd985610bb58888876116bb565b7c0200000000000000000000000000000000000000000000000000000000176116e3565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610c61576000600185019050600060046000838152602001908152602001600020541415610c5f576000548114610c5e578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cc9868686600161170e565b505050505050565b610cd961148e565b6000479050610ce6610f41565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d2b573d6000803e3d6000fd5b5050565b6000610d3961098f565b9050600b548282610d4a919061266c565b1115610d8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8290612547565b60405180910390fd5b81600a54610d9991906126f3565b3414610dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd190612567565b60405180910390fd5b610de48383611714565b505050565b610e0483838360405180602001604052806000815250611175565b505050565b610e1161148e565b80600a8190555050565b610e2361148e565b8060099080519060200190610e39929190611dc6565b5050565b600e60009054906101000a900460ff1681565b6000610e5b8261157c565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610eca576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f2361148e565b610f2d6000611732565b565b610f3761148e565b80600c8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f7a90612837565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa690612837565b8015610ff35780601f10610fc857610100808354040283529160200191610ff3565b820191906000526020600020905b815481529060010190602001808311610fd657829003601f168201915b5050505050905090565b61100561156b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561106a576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061107761156b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661112461156b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161116991906124aa565b60405180910390a35050565b6111808484846109ac565b60008373ffffffffffffffffffffffffffffffffffffffff163b146111e2576111ab848484846117f8565b6111e1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606111f38261150c565b611232576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611229906124e7565b60405180910390fd5b6000600d6000848152602001908152602001600020805461125290612837565b905014156112b7576000611264611958565b9050600081511161128457604051806020016040528060008152506112af565b8061128e846119ea565b60405160200161129f929190612414565b6040516020818303038152906040525b915050611356565b600d600083815260200190815260200160002080546112d590612837565b80601f016020809104026020016040519081016040528092919081815260200182805461130190612837565b801561134e5780601f106113235761010080835404028352916020019161134e565b820191906000526020600020905b81548152906001019060200180831161133157829003601f168201915b505050505090505b919050565b61136361148e565b61136e336001611714565b565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61141261148e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611482576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147990612507565b60405180910390fd5b61148b81611732565b50565b611496611b4b565b73ffffffffffffffffffffffffffffffffffffffff166114b4610f41565b73ffffffffffffffffffffffffffffffffffffffff161461150a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150190612527565b60405180910390fd5b565b600081611517611573565b11158015611526575060005482105b8015611564575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061158b611573565b11611613576000548110156116125760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611610575b60008114156116065760046000836001900393508381526020019081526020016000205490506115db565b8092505050611645565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86116d2868684611b53565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b61172e828260405180602001604052806000815250611b5c565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261181e61156b565b8786866040518563ffffffff1660e01b8152600401611840949392919061245e565b602060405180830381600087803b15801561185a57600080fd5b505af192505050801561188b57506040513d601f19601f8201168201806040525081019061188891906121cf565b60015b611905573d80600081146118bb576040519150601f19603f3d011682016040523d82523d6000602084013e6118c0565b606091505b506000815114156118fd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606009805461196790612837565b80601f016020809104026020016040519081016040528092919081815260200182805461199390612837565b80156119e05780601f106119b5576101008083540402835291602001916119e0565b820191906000526020600020905b8154815290600101906020018083116119c357829003601f168201915b5050505050905090565b60606000821415611a32576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611b46565b600082905060005b60008214611a64578080611a4d9061289a565b915050600a82611a5d91906126c2565b9150611a3a565b60008167ffffffffffffffff811115611a8057611a7f6129d0565b5b6040519080825280601f01601f191660200182016040528015611ab25781602001600182028036833780820191505090505b5090505b60008514611b3f57600182611acb919061274d565b9150600a85611ada91906128e3565b6030611ae6919061266c565b60f81b818381518110611afc57611afb6129a1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611b3891906126c2565b9450611ab6565b8093505050505b919050565b600033905090565b60009392505050565b611b668383611bf9565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611bf457600080549050600083820390505b611ba660008683806001019450866117f8565b611bdc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611b93578160005414611bf157600080fd5b50505b505050565b6000805490506000821415611c3a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c4760008483856116b5565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611cbe83611caf60008660006116bb565b611cb885611db6565b176116e3565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611d5f57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611d24565b506000821415611d9b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611db1600084838561170e565b505050565b60006001821460e11b9050919050565b828054611dd290612837565b90600052602060002090601f016020900481019282611df45760008555611e3b565b82601f10611e0d57805160ff1916838001178555611e3b565b82800160010185558215611e3b579182015b82811115611e3a578251825591602001919060010190611e1f565b5b509050611e489190611e4c565b5090565b5b80821115611e65576000816000905550600101611e4d565b5090565b6000611e7c611e77846125c7565b6125a2565b905082815260208101848484011115611e9857611e97612a04565b5b611ea38482856127f5565b509392505050565b6000611ebe611eb9846125f8565b6125a2565b905082815260208101848484011115611eda57611ed9612a04565b5b611ee58482856127f5565b509392505050565b600081359050611efc81612b40565b92915050565b600081359050611f1181612b57565b92915050565b600081359050611f2681612b6e565b92915050565b600081519050611f3b81612b6e565b92915050565b600082601f830112611f5657611f556129ff565b5b8135611f66848260208601611e69565b91505092915050565b600082601f830112611f8457611f836129ff565b5b8135611f94848260208601611eab565b91505092915050565b600081359050611fac81612b85565b92915050565b600060208284031215611fc857611fc7612a0e565b5b6000611fd684828501611eed565b91505092915050565b60008060408385031215611ff657611ff5612a0e565b5b600061200485828601611eed565b925050602061201585828601611eed565b9150509250929050565b60008060006060848603121561203857612037612a0e565b5b600061204686828701611eed565b935050602061205786828701611eed565b925050604061206886828701611f9d565b9150509250925092565b6000806000806080858703121561208c5761208b612a0e565b5b600061209a87828801611eed565b94505060206120ab87828801611eed565b93505060406120bc87828801611f9d565b925050606085013567ffffffffffffffff8111156120dd576120dc612a09565b5b6120e987828801611f41565b91505092959194509250565b6000806040838503121561210c5761210b612a0e565b5b600061211a85828601611eed565b925050602061212b85828601611f02565b9150509250929050565b6000806040838503121561214c5761214b612a0e565b5b600061215a85828601611eed565b925050602061216b85828601611f9d565b9150509250929050565b60006020828403121561218b5761218a612a0e565b5b600061219984828501611f02565b91505092915050565b6000602082840312156121b8576121b7612a0e565b5b60006121c684828501611f17565b91505092915050565b6000602082840312156121e5576121e4612a0e565b5b60006121f384828501611f2c565b91505092915050565b60006020828403121561221257612211612a0e565b5b600082013567ffffffffffffffff8111156122305761222f612a09565b5b61223c84828501611f6f565b91505092915050565b60006020828403121561225b5761225a612a0e565b5b600061226984828501611f9d565b91505092915050565b61227b81612781565b82525050565b61228a81612793565b82525050565b600061229b82612629565b6122a5818561263f565b93506122b5818560208601612804565b6122be81612a13565b840191505092915050565b60006122d482612634565b6122de8185612650565b93506122ee818560208601612804565b6122f781612a13565b840191505092915050565b600061230d82612634565b6123178185612661565b9350612327818560208601612804565b80840191505092915050565b6000612340601f83612650565b915061234b82612a24565b602082019050919050565b6000612363602683612650565b915061236e82612a4d565b604082019050919050565b6000612386600583612661565b915061239182612a9c565b600582019050919050565b60006123a9602083612650565b91506123b482612ac5565b602082019050919050565b60006123cc601e83612650565b91506123d782612aee565b602082019050919050565b60006123ef601383612650565b91506123fa82612b17565b602082019050919050565b61240e816127eb565b82525050565b60006124208285612302565b915061242c8284612302565b915061243782612379565b91508190509392505050565b60006020820190506124586000830184612272565b92915050565b60006080820190506124736000830187612272565b6124806020830186612272565b61248d6040830185612405565b818103606083015261249f8184612290565b905095945050505050565b60006020820190506124bf6000830184612281565b92915050565b600060208201905081810360008301526124df81846122c9565b905092915050565b6000602082019050818103600083015261250081612333565b9050919050565b6000602082019050818103600083015261252081612356565b9050919050565b600060208201905081810360008301526125408161239c565b9050919050565b60006020820190508181036000830152612560816123bf565b9050919050565b60006020820190508181036000830152612580816123e2565b9050919050565b600060208201905061259c6000830184612405565b92915050565b60006125ac6125bd565b90506125b88282612869565b919050565b6000604051905090565b600067ffffffffffffffff8211156125e2576125e16129d0565b5b6125eb82612a13565b9050602081019050919050565b600067ffffffffffffffff821115612613576126126129d0565b5b61261c82612a13565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612677826127eb565b9150612682836127eb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156126b7576126b6612914565b5b828201905092915050565b60006126cd826127eb565b91506126d8836127eb565b9250826126e8576126e7612943565b5b828204905092915050565b60006126fe826127eb565b9150612709836127eb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561274257612741612914565b5b828202905092915050565b6000612758826127eb565b9150612763836127eb565b92508282101561277657612775612914565b5b828203905092915050565b600061278c826127cb565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612822578082015181840152602081019050612807565b83811115612831576000848401525b50505050565b6000600282049050600182168061284f57607f821691505b6020821081141561286357612862612972565b5b50919050565b61287282612a13565b810181811067ffffffffffffffff82111715612891576128906129d0565b5b80604052505050565b60006128a5826127eb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156128d8576128d7612914565b5b600182019050919050565b60006128ee826127eb565b91506128f9836127eb565b92508261290957612908612943565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f7420656e6f756768206d696e7461626c652065646974696f6e7320210000600082015250565b7f496e636f7272656374204554482076616c756500000000000000000000000000600082015250565b612b4981612781565b8114612b5457600080fd5b50565b612b6081612793565b8114612b6b57600080fd5b50565b612b778161279f565b8114612b8257600080fd5b50565b612b8e816127eb565b8114612b9957600080fd5b5056fea26469706673582212201f3ce7f8c846f01528dedf8c6b59771796bacb003c838b4291829d2d59b6d85864736f6c63430008070033
Deployed Bytecode Sourcemap
57096:3230:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24525:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57791:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25427:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31910:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31351:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57248:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21178:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57323:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35617:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60183:140;;;;;;;;;;;;;:::i;:::-;;58310:350;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38530:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58767:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59232:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57415:18;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26820:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22362:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5273:103;;;;;;;;;;;;;:::i;:::-;;59001:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4625:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25603:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32468:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39313:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59442:733;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58057:84;;;;;;;;;;;;;:::i;:::-;;57286:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32933:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5531:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24525:639;24610:4;24949:10;24934:25;;:11;:25;;;;:102;;;;25026:10;25011:25;;:11;:25;;;;24934:102;:179;;;;25103:10;25088:25;;:11;:25;;;;24934:179;24914:199;;24525:639;;;:::o;57791:81::-;4511:13;:11;:13::i;:::-;57858:6:::1;57849;;:15;;;;;;;;;;;;;;;;;;57791:81:::0;:::o;25427:100::-;25481:13;25514:5;25507:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25427:100;:::o;31910:218::-;31986:7;32011:16;32019:7;32011;:16::i;:::-;32006:64;;32036:34;;;;;;;;;;;;;;32006:64;32090:15;:24;32106:7;32090:24;;;;;;;;;;;:30;;;;;;;;;;;;32083:37;;31910:218;;;:::o;31351:400::-;31432:13;31448:16;31456:7;31448;:16::i;:::-;31432:32;;31504:5;31481:28;;:19;:17;:19::i;:::-;:28;;;31477:175;;31529:44;31546:5;31553:19;:17;:19::i;:::-;31529:16;:44::i;:::-;31524:128;;31601:35;;;;;;;;;;;;;;31524:128;31477:175;31697:2;31664:15;:24;31680:7;31664:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;31735:7;31731:2;31715:28;;31724:5;31715:28;;;;;;;;;;;;31421:330;31351:400;;:::o;57248:31::-;;;;:::o;21178:323::-;21239:7;21467:15;:13;:15::i;:::-;21452:12;;21436:13;;:28;:46;21429:53;;21178:323;:::o;57323:33::-;;;;:::o;35617:2817::-;35751:27;35781;35800:7;35781:18;:27::i;:::-;35751:57;;35866:4;35825:45;;35841:19;35825:45;;;35821:86;;35879:28;;;;;;;;;;;;;;35821:86;35921:27;35950:23;35977:35;36004:7;35977:26;:35::i;:::-;35920:92;;;;36112:68;36137:15;36154:4;36160:19;:17;:19::i;:::-;36112:24;:68::i;:::-;36107:180;;36200:43;36217:4;36223:19;:17;:19::i;:::-;36200:16;:43::i;:::-;36195:92;;36252:35;;;;;;;;;;;;;;36195:92;36107:180;36318:1;36304:16;;:2;:16;;;36300:52;;;36329:23;;;;;;;;;;;;;;36300:52;36365:43;36387:4;36393:2;36397:7;36406:1;36365:21;:43::i;:::-;36501:15;36498:160;;;36641:1;36620:19;36613:30;36498:160;37038:18;:24;37057:4;37038:24;;;;;;;;;;;;;;;;37036:26;;;;;;;;;;;;37107:18;:22;37126:2;37107:22;;;;;;;;;;;;;;;;37105:24;;;;;;;;;;;37429:146;37466:2;37515:45;37530:4;37536:2;37540:19;37515:14;:45::i;:::-;17577:8;37487:73;37429:18;:146::i;:::-;37400:17;:26;37418:7;37400:26;;;;;;;;;;;:175;;;;37746:1;17577:8;37695:19;:47;:52;37691:627;;;37768:19;37800:1;37790:7;:11;37768:33;;37957:1;37923:17;:30;37941:11;37923:30;;;;;;;;;;;;:35;37919:384;;;38061:13;;38046:11;:28;38042:242;;38241:19;38208:17;:30;38226:11;38208:30;;;;;;;;;;;:52;;;;38042:242;37919:384;37749:569;37691:627;38365:7;38361:2;38346:27;;38355:4;38346:27;;;;;;;;;;;;38384:42;38405:4;38411:2;38415:7;38424:1;38384:20;:42::i;:::-;35740:2694;;;35617:2817;;;:::o;60183:140::-;4511:13;:11;:13::i;:::-;60231:15:::1;60249:21;60231:39;;60289:7;:5;:7::i;:::-;60281:25;;:34;60307:7;60281:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;60220:103;60183:140::o:0;58310:350::-;58384:14;58401:13;:11;:13::i;:::-;58384:30;;58471:9;;58456:11;58447:6;:20;;;;:::i;:::-;:33;;58425:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;58579:11;58572:4;;:18;;;;:::i;:::-;58559:9;:31;58551:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;58625:27;58635:3;58640:11;58625:9;:27::i;:::-;58373:287;58310:350;;:::o;38530:185::-;38668:39;38685:4;38691:2;38695:7;38668:39;;;;;;;;;;;;:16;:39::i;:::-;38530:185;;;:::o;58767:88::-;4511:13;:11;:13::i;:::-;58839:8:::1;58832:4;:15;;;;58767:88:::0;:::o;59232:106::-;4511:13;:11;:13::i;:::-;59319:11:::1;59309:7;:21;;;;;;;;;;;;:::i;:::-;;59232:106:::0;:::o;57415:18::-;;;;;;;;;;;;;:::o;26820:152::-;26892:7;26935:27;26954:7;26935:18;:27::i;:::-;26912:52;;26820:152;;;:::o;22362:233::-;22434:7;22475:1;22458:19;;:5;:19;;;22454:60;;;22486:28;;;;;;;;;;;;;;22454:60;16521:13;22532:18;:25;22551:5;22532:25;;;;;;;;;;;;;;;;:55;22525:62;;22362:233;;;:::o;5273:103::-;4511:13;:11;:13::i;:::-;5338:30:::1;5365:1;5338:18;:30::i;:::-;5273:103::o:0;59001:124::-;4511:13;:11;:13::i;:::-;59100:17:::1;59084:13;:33;;;;59001:124:::0;:::o;4625:87::-;4671:7;4698:6;;;;;;;;;;;4691:13;;4625:87;:::o;25603:104::-;25659:13;25692:7;25685:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25603:104;:::o;32468:308::-;32579:19;:17;:19::i;:::-;32567:31;;:8;:31;;;32563:61;;;32607:17;;;;;;;;;;;;;;32563:61;32689:8;32637:18;:39;32656:19;:17;:19::i;:::-;32637:39;;;;;;;;;;;;;;;:49;32677:8;32637:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;32749:8;32713:55;;32728:19;:17;:19::i;:::-;32713:55;;;32759:8;32713:55;;;;;;:::i;:::-;;;;;;;;32468:308;;:::o;39313:399::-;39480:31;39493:4;39499:2;39503:7;39480:12;:31::i;:::-;39544:1;39526:2;:14;;;:19;39522:183;;39565:56;39596:4;39602:2;39606:7;39615:5;39565:30;:56::i;:::-;39560:145;;39649:40;;;;;;;;;;;;;;39560:145;39522:183;39313:399;;;;:::o;59442:733::-;59560:13;59599:16;59607:7;59599;:16::i;:::-;59591:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;59705:1;59674:10;:19;59685:7;59674:19;;;;;;;;;;;59668:33;;;;;:::i;:::-;;;:38;59664:503;;;59723:28;59754:10;:8;:10::i;:::-;59723:41;;59834:1;59809:14;59803:28;:32;:320;;;;;;;;;;;;;;;;;59939:14;59984:25;60001:7;59984:16;:25::i;:::-;59892:182;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59803:320;59779:344;;;;;59664:503;60148:10;:19;60159:7;60148:19;;;;;;;;;;;60141:26;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59442:733;;;;:::o;58057:84::-;4511:13;:11;:13::i;:::-;58109:24:::1;58119:10;58131:1;58109:9;:24::i;:::-;58057:84::o:0;57286:30::-;;;;:::o;32933:164::-;33030:4;33054:18;:25;33073:5;33054:25;;;;;;;;;;;;;;;:35;33080:8;33054:35;;;;;;;;;;;;;;;;;;;;;;;;;33047:42;;32933:164;;;;:::o;5531:201::-;4511:13;:11;:13::i;:::-;5640:1:::1;5620:22;;:8;:22;;;;5612:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5696:28;5715:8;5696:18;:28::i;:::-;5531:201:::0;:::o;4790:132::-;4865:12;:10;:12::i;:::-;4854:23;;:7;:5;:7::i;:::-;:23;;;4846:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4790:132::o;33355:282::-;33420:4;33476:7;33457:15;:13;:15::i;:::-;:26;;:66;;;;;33510:13;;33500:7;:23;33457:66;:153;;;;;33609:1;17297:8;33561:17;:26;33579:7;33561:26;;;;;;;;;;;;:44;:49;33457:153;33437:173;;33355:282;;;:::o;55121:105::-;55181:7;55208:10;55201:17;;55121:105;:::o;57442:101::-;57507:7;57534:1;57527:8;;57442:101;:::o;27975:1275::-;28042:7;28062:12;28077:7;28062:22;;28145:4;28126:15;:13;:15::i;:::-;:23;28122:1061;;28179:13;;28172:4;:20;28168:1015;;;28217:14;28234:17;:23;28252:4;28234:23;;;;;;;;;;;;28217:40;;28351:1;17297:8;28323:6;:24;:29;28319:845;;;28988:113;29005:1;28995:6;:11;28988:113;;;29048:17;:25;29066:6;;;;;;;29048:25;;;;;;;;;;;;29039:34;;28988:113;;;29134:6;29127:13;;;;;;28319:845;28194:989;28168:1015;28122:1061;29211:31;;;;;;;;;;;;;;27975:1275;;;;:::o;34518:479::-;34620:27;34649:23;34690:38;34731:15;:24;34747:7;34731:24;;;;;;;;;;;34690:65;;34902:18;34879:41;;34959:19;34953:26;34934:45;;34864:126;34518:479;;;:::o;33746:659::-;33895:11;34060:16;34053:5;34049:28;34040:37;;34220:16;34209:9;34205:32;34192:45;;34370:15;34359:9;34356:30;34348:5;34337:9;34334:20;34331:56;34321:66;;33746:659;;;;;:::o;40374:159::-;;;;;:::o;54430:311::-;54565:7;54585:16;17701:3;54611:19;:41;;54585:68;;17701:3;54679:31;54690:4;54696:2;54700:9;54679:10;:31::i;:::-;54671:40;;:62;;54664:69;;;54430:311;;;;;:::o;29798:450::-;29878:14;30046:16;30039:5;30035:28;30026:37;;30223:5;30209:11;30184:23;30180:41;30177:52;30170:5;30167:63;30157:73;;29798:450;;;;:::o;41198:158::-;;;;;:::o;48953:112::-;49030:27;49040:2;49044:8;49030:27;;;;;;;;;;;;:9;:27::i;:::-;48953:112;;:::o;5892:191::-;5966:16;5985:6;;;;;;;;;;;5966:25;;6011:8;6002:6;;:17;;;;;;;;;;;;;;;;;;6066:8;6035:40;;6056:8;6035:40;;;;;;;;;;;;5955:128;5892:191;:::o;41796:716::-;41959:4;42005:2;41980:45;;;42026:19;:17;:19::i;:::-;42047:4;42053:7;42062:5;41980:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41976:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42280:1;42263:6;:13;:18;42259:235;;;42309:40;;;;;;;;;;;;;;42259:235;42452:6;42446:13;42437:6;42433:2;42429:15;42422:38;41976:529;42149:54;;;42139:64;;;:6;:64;;;;42132:71;;;41796:716;;;;;;:::o;57941:108::-;58001:13;58034:7;58027:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57941:108;:::o;430:723::-;486:13;716:1;707:5;:10;703:53;;;734:10;;;;;;;;;;;;;;;;;;;;;703:53;766:12;781:5;766:20;;797:14;822:78;837:1;829:4;:9;822:78;;855:8;;;;;:::i;:::-;;;;886:2;878:10;;;;;:::i;:::-;;;822:78;;;910:19;942:6;932:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;910:39;;960:154;976:1;967:5;:10;960:154;;1004:1;994:11;;;;;:::i;:::-;;;1071:2;1063:5;:10;;;;:::i;:::-;1050:2;:24;;;;:::i;:::-;1037:39;;1020:6;1027;1020:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1100:2;1091:11;;;;;:::i;:::-;;;960:154;;;1138:6;1124:21;;;;;430:723;;;;:::o;3176:98::-;3229:7;3256:10;3249:17;;3176:98;:::o;54131:147::-;54268:6;54131:147;;;;;:::o;48180:689::-;48311:19;48317:2;48321:8;48311:5;:19::i;:::-;48390:1;48372:2;:14;;;:19;48368:483;;48412:11;48426:13;;48412:27;;48458:13;48480:8;48474:3;:14;48458:30;;48507:233;48538:62;48577:1;48581:2;48585:7;;;;;;48594:5;48538:30;:62::i;:::-;48533:167;;48636:40;;;;;;;;;;;;;;48533:167;48735:3;48727:5;:11;48507:233;;48822:3;48805:13;;:20;48801:34;;48827:8;;;48801:34;48393:458;;48368:483;48180:689;;;:::o;42974:2454::-;43047:20;43070:13;;43047:36;;43110:1;43098:8;:13;43094:44;;;43120:18;;;;;;;;;;;;;;43094:44;43151:61;43181:1;43185:2;43189:12;43203:8;43151:21;:61::i;:::-;43695:1;16659:2;43665:1;:26;;43664:32;43652:8;:45;43626:18;:22;43645:2;43626:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;43974:139;44011:2;44065:33;44088:1;44092:2;44096:1;44065:14;:33::i;:::-;44032:30;44053:8;44032:20;:30::i;:::-;:66;43974:18;:139::i;:::-;43940:17;:31;43958:12;43940:31;;;;;;;;;;;:173;;;;44130:16;44161:11;44190:8;44175:12;:23;44161:37;;44445:16;44441:2;44437:25;44425:37;;44817:12;44777:8;44736:1;44674:25;44615:1;44554;44527:335;44942:1;44928:12;44924:20;44882:346;44983:3;44974:7;44971:16;44882:346;;45201:7;45191:8;45188:1;45161:25;45158:1;45155;45150:59;45036:1;45027:7;45023:15;45012:26;;44882:346;;;44886:77;45273:1;45261:8;:13;45257:45;;;45283:19;;;;;;;;;;;;;;45257:45;45335:3;45319:13;:19;;;;43400:1950;;45360:60;45389:1;45393:2;45397:12;45411:8;45360:20;:60::i;:::-;43036:2392;42974:2454;;:::o;30350:324::-;30420:14;30653:1;30643:8;30640:15;30614:24;30610:46;30600:56;;30350:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:118::-;7574:24;7592:5;7574:24;:::i;:::-;7569:3;7562:37;7487:118;;:::o;7611:109::-;7692:21;7707:5;7692:21;:::i;:::-;7687:3;7680:34;7611:109;;:::o;7726:360::-;7812:3;7840:38;7872:5;7840:38;:::i;:::-;7894:70;7957:6;7952:3;7894:70;:::i;:::-;7887:77;;7973:52;8018:6;8013:3;8006:4;7999:5;7995:16;7973:52;:::i;:::-;8050:29;8072:6;8050:29;:::i;:::-;8045:3;8041:39;8034:46;;7816:270;7726:360;;;;:::o;8092:364::-;8180:3;8208:39;8241:5;8208:39;:::i;:::-;8263:71;8327:6;8322:3;8263:71;:::i;:::-;8256:78;;8343:52;8388:6;8383:3;8376:4;8369:5;8365:16;8343:52;:::i;:::-;8420:29;8442:6;8420:29;:::i;:::-;8415:3;8411:39;8404:46;;8184:272;8092:364;;;;:::o;8462:377::-;8568:3;8596:39;8629:5;8596:39;:::i;:::-;8651:89;8733:6;8728:3;8651:89;:::i;:::-;8644:96;;8749:52;8794:6;8789:3;8782:4;8775:5;8771:16;8749:52;:::i;:::-;8826:6;8821:3;8817:16;8810:23;;8572:267;8462:377;;;;:::o;8845:366::-;8987:3;9008:67;9072:2;9067:3;9008:67;:::i;:::-;9001:74;;9084:93;9173:3;9084:93;:::i;:::-;9202:2;9197:3;9193:12;9186:19;;8845:366;;;:::o;9217:::-;9359:3;9380:67;9444:2;9439:3;9380:67;:::i;:::-;9373:74;;9456:93;9545:3;9456:93;:::i;:::-;9574:2;9569:3;9565:12;9558:19;;9217:366;;;:::o;9589:400::-;9749:3;9770:84;9852:1;9847:3;9770:84;:::i;:::-;9763:91;;9863:93;9952:3;9863:93;:::i;:::-;9981:1;9976:3;9972:11;9965:18;;9589:400;;;:::o;9995:366::-;10137:3;10158:67;10222:2;10217:3;10158:67;:::i;:::-;10151:74;;10234:93;10323:3;10234:93;:::i;:::-;10352:2;10347:3;10343:12;10336:19;;9995:366;;;:::o;10367:::-;10509:3;10530:67;10594:2;10589:3;10530:67;:::i;:::-;10523:74;;10606:93;10695:3;10606:93;:::i;:::-;10724:2;10719:3;10715:12;10708:19;;10367:366;;;:::o;10739:::-;10881:3;10902:67;10966:2;10961:3;10902:67;:::i;:::-;10895:74;;10978:93;11067:3;10978:93;:::i;:::-;11096:2;11091:3;11087:12;11080:19;;10739:366;;;:::o;11111:118::-;11198:24;11216:5;11198:24;:::i;:::-;11193:3;11186:37;11111:118;;:::o;11235:701::-;11516:3;11538:95;11629:3;11620:6;11538:95;:::i;:::-;11531:102;;11650:95;11741:3;11732:6;11650:95;:::i;:::-;11643:102;;11762:148;11906:3;11762:148;:::i;:::-;11755:155;;11927:3;11920:10;;11235:701;;;;;:::o;11942:222::-;12035:4;12073:2;12062:9;12058:18;12050:26;;12086:71;12154:1;12143:9;12139:17;12130:6;12086:71;:::i;:::-;11942:222;;;;:::o;12170:640::-;12365:4;12403:3;12392:9;12388:19;12380:27;;12417:71;12485:1;12474:9;12470:17;12461:6;12417:71;:::i;:::-;12498:72;12566:2;12555:9;12551:18;12542:6;12498:72;:::i;:::-;12580;12648:2;12637:9;12633:18;12624:6;12580:72;:::i;:::-;12699:9;12693:4;12689:20;12684:2;12673:9;12669:18;12662:48;12727:76;12798:4;12789:6;12727:76;:::i;:::-;12719:84;;12170:640;;;;;;;:::o;12816:210::-;12903:4;12941:2;12930:9;12926:18;12918:26;;12954:65;13016:1;13005:9;13001:17;12992:6;12954:65;:::i;:::-;12816:210;;;;:::o;13032:313::-;13145:4;13183:2;13172:9;13168:18;13160:26;;13232:9;13226:4;13222:20;13218:1;13207:9;13203:17;13196:47;13260:78;13333:4;13324:6;13260:78;:::i;:::-;13252:86;;13032:313;;;;:::o;13351:419::-;13517:4;13555:2;13544:9;13540:18;13532:26;;13604:9;13598:4;13594:20;13590:1;13579:9;13575:17;13568:47;13632:131;13758:4;13632:131;:::i;:::-;13624:139;;13351:419;;;:::o;13776:::-;13942:4;13980:2;13969:9;13965:18;13957:26;;14029:9;14023:4;14019:20;14015:1;14004:9;14000:17;13993:47;14057:131;14183:4;14057:131;:::i;:::-;14049:139;;13776:419;;;:::o;14201:::-;14367:4;14405:2;14394:9;14390:18;14382:26;;14454:9;14448:4;14444:20;14440:1;14429:9;14425:17;14418:47;14482:131;14608:4;14482:131;:::i;:::-;14474:139;;14201:419;;;:::o;14626:::-;14792:4;14830:2;14819:9;14815:18;14807:26;;14879:9;14873:4;14869:20;14865:1;14854:9;14850:17;14843:47;14907:131;15033:4;14907:131;:::i;:::-;14899:139;;14626:419;;;:::o;15051:::-;15217:4;15255:2;15244:9;15240:18;15232:26;;15304:9;15298:4;15294:20;15290:1;15279:9;15275:17;15268:47;15332:131;15458:4;15332:131;:::i;:::-;15324:139;;15051:419;;;:::o;15476:222::-;15569:4;15607:2;15596:9;15592:18;15584:26;;15620:71;15688:1;15677:9;15673:17;15664:6;15620:71;:::i;:::-;15476:222;;;;:::o;15704:129::-;15738:6;15765:20;;:::i;:::-;15755:30;;15794:33;15822:4;15814:6;15794:33;:::i;:::-;15704:129;;;:::o;15839:75::-;15872:6;15905:2;15899:9;15889:19;;15839:75;:::o;15920:307::-;15981:4;16071:18;16063:6;16060:30;16057:56;;;16093:18;;:::i;:::-;16057:56;16131:29;16153:6;16131:29;:::i;:::-;16123:37;;16215:4;16209;16205:15;16197:23;;15920:307;;;:::o;16233:308::-;16295:4;16385:18;16377:6;16374:30;16371:56;;;16407:18;;:::i;:::-;16371:56;16445:29;16467:6;16445:29;:::i;:::-;16437:37;;16529:4;16523;16519:15;16511:23;;16233:308;;;:::o;16547:98::-;16598:6;16632:5;16626:12;16616:22;;16547:98;;;:::o;16651:99::-;16703:6;16737:5;16731:12;16721:22;;16651:99;;;:::o;16756:168::-;16839:11;16873:6;16868:3;16861:19;16913:4;16908:3;16904:14;16889:29;;16756:168;;;;:::o;16930:169::-;17014:11;17048:6;17043:3;17036:19;17088:4;17083:3;17079:14;17064:29;;16930:169;;;;:::o;17105:148::-;17207:11;17244:3;17229:18;;17105:148;;;;:::o;17259:305::-;17299:3;17318:20;17336:1;17318:20;:::i;:::-;17313:25;;17352:20;17370:1;17352:20;:::i;:::-;17347:25;;17506:1;17438:66;17434:74;17431:1;17428:81;17425:107;;;17512:18;;:::i;:::-;17425:107;17556:1;17553;17549:9;17542:16;;17259:305;;;;:::o;17570:185::-;17610:1;17627:20;17645:1;17627:20;:::i;:::-;17622:25;;17661:20;17679:1;17661:20;:::i;:::-;17656:25;;17700:1;17690:35;;17705:18;;:::i;:::-;17690:35;17747:1;17744;17740:9;17735:14;;17570:185;;;;:::o;17761:348::-;17801:7;17824:20;17842:1;17824:20;:::i;:::-;17819:25;;17858:20;17876:1;17858:20;:::i;:::-;17853:25;;18046:1;17978:66;17974:74;17971:1;17968:81;17963:1;17956:9;17949:17;17945:105;17942:131;;;18053:18;;:::i;:::-;17942:131;18101:1;18098;18094:9;18083:20;;17761:348;;;;:::o;18115:191::-;18155:4;18175:20;18193:1;18175:20;:::i;:::-;18170:25;;18209:20;18227:1;18209:20;:::i;:::-;18204:25;;18248:1;18245;18242:8;18239:34;;;18253:18;;:::i;:::-;18239:34;18298:1;18295;18291:9;18283:17;;18115:191;;;;:::o;18312:96::-;18349:7;18378:24;18396:5;18378:24;:::i;:::-;18367:35;;18312:96;;;:::o;18414:90::-;18448:7;18491:5;18484:13;18477:21;18466:32;;18414:90;;;:::o;18510:149::-;18546:7;18586:66;18579:5;18575:78;18564:89;;18510:149;;;:::o;18665:126::-;18702:7;18742:42;18735:5;18731:54;18720:65;;18665:126;;;:::o;18797:77::-;18834:7;18863:5;18852:16;;18797:77;;;:::o;18880:154::-;18964:6;18959:3;18954;18941:30;19026:1;19017:6;19012:3;19008:16;19001:27;18880:154;;;:::o;19040:307::-;19108:1;19118:113;19132:6;19129:1;19126:13;19118:113;;;19217:1;19212:3;19208:11;19202:18;19198:1;19193:3;19189:11;19182:39;19154:2;19151:1;19147:10;19142:15;;19118:113;;;19249:6;19246:1;19243:13;19240:101;;;19329:1;19320:6;19315:3;19311:16;19304:27;19240:101;19089:258;19040:307;;;:::o;19353:320::-;19397:6;19434:1;19428:4;19424:12;19414:22;;19481:1;19475:4;19471:12;19502:18;19492:81;;19558:4;19550:6;19546:17;19536:27;;19492:81;19620:2;19612:6;19609:14;19589:18;19586:38;19583:84;;;19639:18;;:::i;:::-;19583:84;19404:269;19353:320;;;:::o;19679:281::-;19762:27;19784:4;19762:27;:::i;:::-;19754:6;19750:40;19892:6;19880:10;19877:22;19856:18;19844:10;19841:34;19838:62;19835:88;;;19903:18;;:::i;:::-;19835:88;19943:10;19939:2;19932:22;19722:238;19679:281;;:::o;19966:233::-;20005:3;20028:24;20046:5;20028:24;:::i;:::-;20019:33;;20074:66;20067:5;20064:77;20061:103;;;20144:18;;:::i;:::-;20061:103;20191:1;20184:5;20180:13;20173:20;;19966:233;;;:::o;20205:176::-;20237:1;20254:20;20272:1;20254:20;:::i;:::-;20249:25;;20288:20;20306:1;20288:20;:::i;:::-;20283:25;;20327:1;20317:35;;20332:18;;:::i;:::-;20317:35;20373:1;20370;20366:9;20361:14;;20205:176;;;;:::o;20387:180::-;20435:77;20432:1;20425:88;20532:4;20529:1;20522:15;20556:4;20553:1;20546:15;20573:180;20621:77;20618:1;20611:88;20718:4;20715:1;20708:15;20742:4;20739:1;20732:15;20759:180;20807:77;20804:1;20797:88;20904:4;20901:1;20894:15;20928:4;20925:1;20918:15;20945:180;20993:77;20990:1;20983:88;21090:4;21087:1;21080:15;21114:4;21111:1;21104:15;21131:180;21179:77;21176:1;21169:88;21276:4;21273:1;21266:15;21300:4;21297:1;21290:15;21317:117;21426:1;21423;21416:12;21440:117;21549:1;21546;21539:12;21563:117;21672:1;21669;21662:12;21686:117;21795:1;21792;21785:12;21809:102;21850:6;21901:2;21897:7;21892:2;21885:5;21881:14;21877:28;21867:38;;21809:102;;;:::o;21917:181::-;22057:33;22053:1;22045:6;22041:14;22034:57;21917:181;:::o;22104:225::-;22244:34;22240:1;22232:6;22228:14;22221:58;22313:8;22308:2;22300:6;22296:15;22289:33;22104:225;:::o;22335:155::-;22475:7;22471:1;22463:6;22459:14;22452:31;22335:155;:::o;22496:182::-;22636:34;22632:1;22624:6;22620:14;22613:58;22496:182;:::o;22684:180::-;22824:32;22820:1;22812:6;22808:14;22801:56;22684:180;:::o;22870:169::-;23010:21;23006:1;22998:6;22994:14;22987:45;22870:169;:::o;23045:122::-;23118:24;23136:5;23118:24;:::i;:::-;23111:5;23108:35;23098:63;;23157:1;23154;23147:12;23098:63;23045:122;:::o;23173:116::-;23243:21;23258:5;23243:21;:::i;:::-;23236:5;23233:32;23223:60;;23279:1;23276;23269:12;23223:60;23173:116;:::o;23295:120::-;23367:23;23384:5;23367:23;:::i;:::-;23360:5;23357:34;23347:62;;23405:1;23402;23395:12;23347:62;23295:120;:::o;23421:122::-;23494:24;23512:5;23494:24;:::i;:::-;23487:5;23484:35;23474:63;;23533:1;23530;23523:12;23474:63;23421:122;:::o
Swarm Source
ipfs://1f3ce7f8c846f01528dedf8c6b59771796bacb003c838b4291829d2d59b6d858
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.