ERC-721
Overview
Max Total Supply
292 KZK
Holders
173
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 KZKLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Kazuki
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-18 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @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 ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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 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); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: erc721a/contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _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 _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary 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 { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @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, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @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. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // 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 { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is 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 { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // 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 { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @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 {} } // File: KZK.sol pragma solidity >=0.7.0 <0.9.0; contract Kazuki is ERC721A, Ownable { using Strings for uint256; string public baseURI; uint256 public constant PRICE = 0.04 ether; uint256 public constant SUPPLY_MAX = 1000; uint256 public constant TRANSACTION_LIMIT = 10; bool public salePaused; bool public revealed; constructor( string memory _name, string memory _symbol, string memory _initBaseURI ) ERC721A(_name, _symbol) { _safeMint(address(this), 1); _burn(0); baseURI = _initBaseURI; } function mint(uint256 quantity) external payable { require(!salePaused, "Minting is paused."); require(msg.sender == tx.origin, "You can't mint through another contract!"); // Bot mitigation. require(totalSupply() + quantity <= SUPPLY_MAX, "Max supply exceeded!"); require(quantity <= TRANSACTION_LIMIT, "You cannot mint more than 10 in a single transaction!"); require(msg.value >= (PRICE * quantity), "Insufficient funds!"); _safeMint(msg.sender, quantity); } function mintForAddress(uint256 _mintAmount, address _receiver) public onlyOwner { _safeMint(_receiver, _mintAmount); } function setRevealed() public onlyOwner { revealed = true; } function pauseSale(bool _state) public onlyOwner { salePaused = _state; } function withdraw() public onlyOwner { (bool os, ) = payable(owner()).call{value: address(this).balance}(""); require(os); } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); if (!revealed) return _baseURI(); return string(abi.encodePacked(_baseURI(), _tokenId.toString(), ".json")); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SUPPLY_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TRANSACTION_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","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":"pauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"salePaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200271238038062002712833981016040819052620000349162000976565b8251839083906200004d9060029060208501906200080c565b508051620000639060039060208401906200080c565b505060008055506200007533620000ad565b62000082306001620000ff565b6200008e600062000125565b8051620000a39060099060208401906200080c565b5050505062000adf565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620001218282604051806020016040528060008152506200013560201b60201c565b5050565b6200013281600062000149565b50565b6200014483838360016200032d565b505050565b60006200015683620004f0565b80519091508215620001e0576000336001600160a01b03831614806200019f57506001600160a01b038216600090815260076020908152604080832033845290915290205460ff165b80620001bd575033620001b28662000624565b6001600160a01b0316145b905080620001de57604051632ce44b5f60e11b815260040160405180910390fd5b505b620001ee6000858362000671565b6001600160a01b0380821660008181526005602090815260408083208054600160801b6000196001600160401b038084169190910181166001600160401b0319841681178390048216600190810183169093027fffffffffffffffff0000000000000000ffffffffffffffff0000000000000000909416179290921783558b86526004909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b178555918901808452922080549194909116620002f4576000548214620002f457805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b03841690600080516020620026f2833981519152908390a4505060018054810190555050565b6000546001600160a01b0385166200035757604051622e076360e81b815260040160405180910390fd5b83620003765760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546001600160801b031981166001600160401b038083168c018116918217680100000000000000006001600160401b031990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b4290921691909102179055808085018380156200042f57506200042f876001600160a01b0316620006cd60201b62000e151760201c565b15620004af575b60405182906001600160a01b03891690600090600080516020620026f2833981519152908290a460018201916200047390600090899088620006dc565b62000491576040516368d2bf6b60e11b815260040160405180910390fd5b8082141562000436578260005414620004a957600080fd5b620004e5565b5b6040516001830192906001600160a01b03891690600090600080516020620026f2833981519152908290a480821415620004b0575b506000555050505050565b6040805160608101825260008082526020820181905291810191909152818062000518600090565b1115801562000528575060005481105b156200060b57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290620006095780516001600160a01b0316156200059e579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521562000603579392505050565b6200059e565b505b604051636f96cda160e11b815260040160405180910390fd5b60006200063182620007dd565b6200064f576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b50505050565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6001600160a01b03163b151590565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906200071390339089908890889060040162000a07565b602060405180830381600087803b1580156200072e57600080fd5b505af192505050801562000761575060408051601f3d908101601f191682019092526200075e9181019062000943565b60015b620007c0573d80801562000792576040519150601f19603f3d011682016040523d82523d6000602084013e62000797565b606091505b508051620007b8576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000805482108015620008065750600082815260046020526040902054600160e01b900460ff16155b92915050565b8280546200081a9062000a8c565b90600052602060002090601f0160209004810192826200083e576000855562000889565b82601f106200085957805160ff191683800117855562000889565b8280016001018555821562000889579182015b82811115620008895782518255916020019190600101906200086c565b50620008979291506200089b565b5090565b5b808211156200089757600081556001016200089c565b600082601f830112620008c457600080fd5b81516001600160401b0380821115620008e157620008e162000ac9565b604051601f8301601f19908116603f011681019082821181831017156200090c576200090c62000ac9565b816040528381528660208588010111156200092657600080fd5b6200093984602083016020890162000a5d565b9695505050505050565b6000602082840312156200095657600080fd5b81516001600160e01b0319811681146200096f57600080fd5b9392505050565b6000806000606084860312156200098c57600080fd5b83516001600160401b0380821115620009a457600080fd5b620009b287838801620008b2565b94506020860151915080821115620009c957600080fd5b620009d787838801620008b2565b93506040860151915080821115620009ee57600080fd5b50620009fd86828701620008b2565b9150509250925092565b600060018060a01b03808716835280861660208401525083604083015260806060830152825180608084015262000a468160a085016020870162000a5d565b601f01601f19169190910160a00195945050505050565b60005b8381101562000a7a57818101518382015260200162000a60565b838111156200066b5750506000910152565b600181811c9082168062000aa157607f821691505b6020821081141562000ac357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611c038062000aef6000396000f3fe6080604052600436106101c25760003560e01c80636c0360eb116100f7578063a0712d6811610095578063c87b56dd11610064578063c87b56dd146104b4578063e985e9c5146104d4578063efbd73f41461051d578063f2fde38b1461053d57600080fd5b8063a0712d681461044c578063a22cb4651461045f578063b6fd509b1461047f578063b88d4fde1461049457600080fd5b80638d859f3e116100d15780638d859f3e146103e85780638da5cb5b14610403578063958f6ed61461042157806395d89b411461043757600080fd5b80636c0360eb1461039e57806370a08231146103b3578063715018a6146103d357600080fd5b80633bd6496811610164578063518302271161013e578063518302271461032557806355f804b3146103445780635d08c1ae146103645780636352211e1461037e57600080fd5b80633bd64968146102db5780633ccfd60b146102f057806342842e0e1461030557600080fd5b8063095ea7b3116101a0578063095ea7b3146102565780630cfed2a21461027857806318160ddd1461029857806323b872dd146102bb57600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e23660046118b8565b61055d565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b506102116105af565b6040516101f39190611a1f565b34801561022a57600080fd5b5061023e61023936600461193b565b610641565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004611873565b610685565b005b34801561028457600080fd5b5061027661029336600461189d565b610713565b3480156102a457600080fd5b50600154600054035b6040519081526020016101f3565b3480156102c757600080fd5b506102766102d6366004611791565b610759565b3480156102e757600080fd5b50610276610764565b3480156102fc57600080fd5b5061027661079f565b34801561031157600080fd5b50610276610320366004611791565b61083d565b34801561033157600080fd5b50600a546101e790610100900460ff1681565b34801561035057600080fd5b5061027661035f3660046118f2565b610858565b34801561037057600080fd5b50600a546101e79060ff1681565b34801561038a57600080fd5b5061023e61039936600461193b565b610899565b3480156103aa57600080fd5b506102116108ab565b3480156103bf57600080fd5b506102ad6103ce36600461173c565b610939565b3480156103df57600080fd5b50610276610988565b3480156103f457600080fd5b506102ad668e1bc9bf04000081565b34801561040f57600080fd5b506008546001600160a01b031661023e565b34801561042d57600080fd5b506102ad6103e881565b34801561044357600080fd5b506102116109be565b61027661045a36600461193b565b6109cd565b34801561046b57600080fd5b5061027661047a366004611849565b610ba4565b34801561048b57600080fd5b506102ad600a81565b3480156104a057600080fd5b506102766104af3660046117cd565b610c3a565b3480156104c057600080fd5b506102116104cf36600461193b565b610c8b565b3480156104e057600080fd5b506101e76104ef36600461175e565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561052957600080fd5b50610276610538366004611954565b610d49565b34801561054957600080fd5b5061027661055836600461173c565b610d7d565b60006001600160e01b031982166380ac58cd60e01b148061058e57506001600160e01b03198216635b5e139f60e01b145b806105a957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546105be90611af5565b80601f01602080910402602001604051908101604052809291908181526020018280546105ea90611af5565b80156106375780601f1061060c57610100808354040283529160200191610637565b820191906000526020600020905b81548152906001019060200180831161061a57829003601f168201915b5050505050905090565b600061064c82610e24565b610669576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061069082610899565b9050806001600160a01b0316836001600160a01b031614156106c55760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906106e557506106e381336104ef565b155b15610703576040516367d9dca160e11b815260040160405180910390fd5b61070e838383610e4f565b505050565b6008546001600160a01b031633146107465760405162461bcd60e51b815260040161073d90611a32565b60405180910390fd5b600a805460ff1916911515919091179055565b61070e838383610eab565b6008546001600160a01b0316331461078e5760405162461bcd60e51b815260040161073d90611a32565b600a805461ff001916610100179055565b6008546001600160a01b031633146107c95760405162461bcd60e51b815260040161073d90611a32565b60006107dd6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610827576040519150601f19603f3d011682016040523d82523d6000602084013e61082c565b606091505b505090508061083a57600080fd5b50565b61070e83838360405180602001604052806000815250610c3a565b6008546001600160a01b031633146108825760405162461bcd60e51b815260040161073d90611a32565b8051610895906009906020840190611601565b5050565b60006108a48261109b565b5192915050565b600980546108b890611af5565b80601f01602080910402602001604051908101604052809291908181526020018280546108e490611af5565b80156109315780601f1061090657610100808354040283529160200191610931565b820191906000526020600020905b81548152906001019060200180831161091457829003601f168201915b505050505081565b60006001600160a01b038216610962576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146109b25760405162461bcd60e51b815260040161073d90611a32565b6109bc60006111b7565b565b6060600380546105be90611af5565b600a5460ff1615610a155760405162461bcd60e51b815260206004820152601260248201527126b4b73a34b7339034b9903830bab9b2b21760711b604482015260640161073d565b333214610a755760405162461bcd60e51b815260206004820152602860248201527f596f752063616e2774206d696e74207468726f75676820616e6f7468657220636044820152676f6e74726163742160c01b606482015260840161073d565b6103e881610a866001546000540390565b610a909190611a67565b1115610ad55760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161073d565b600a811115610b445760405162461bcd60e51b815260206004820152603560248201527f596f752063616e6e6f74206d696e74206d6f7265207468616e20313020696e20604482015274612073696e676c65207472616e73616374696f6e2160581b606482015260840161073d565b610b5581668e1bc9bf040000611a93565b341015610b9a5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161073d565b61083a3382611209565b6001600160a01b038216331415610bce5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c45848484610eab565b6001600160a01b0383163b15158015610c675750610c6584848484611223565b155b15610c85576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610c9682610e24565b610cfa5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161073d565b600a54610100900460ff16610d11576105a961131b565b610d1961131b565b610d228361132a565b604051602001610d339291906119a3565b6040516020818303038152906040529050919050565b6008546001600160a01b03163314610d735760405162461bcd60e51b815260040161073d90611a32565b6108958183611209565b6008546001600160a01b03163314610da75760405162461bcd60e51b815260040161073d90611a32565b6001600160a01b038116610e0c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161073d565b61083a816111b7565b6001600160a01b03163b151590565b60008054821080156105a9575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610eb68261109b565b9050836001600160a01b031681600001516001600160a01b031614610eed5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610f0b5750610f0b85336104ef565b80610f26575033610f1b84610641565b6001600160a01b0316145b905080610f4657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610f6d57604051633a954ecd60e21b815260040160405180910390fd5b610f7960008487610e4f565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661104f57600054821461104f578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528160005481101561119e57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061119c5780516001600160a01b031615611132579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611197579392505050565b611132565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610895828260405180602001604052806000815250611428565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906112589033908990889088906004016119e2565b602060405180830381600087803b15801561127257600080fd5b505af19250505080156112a2575060408051601f3d908101601f1916820190925261129f918101906118d5565b60015b6112fd573d8080156112d0576040519150601f19603f3d011682016040523d82523d6000602084013e6112d5565b606091505b5080516112f5576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546105be90611af5565b60608161134e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611378578061136281611b30565b91506113719050600a83611a7f565b9150611352565b60008167ffffffffffffffff81111561139357611393611ba1565b6040519080825280601f01601f1916602001820160405280156113bd576020820181803683370190505b5090505b8415611313576113d2600183611ab2565b91506113df600a86611b4b565b6113ea906030611a67565b60f81b8183815181106113ff576113ff611b8b565b60200101906001600160f81b031916908160001a905350611421600a86611a7f565b94506113c1565b61070e83838360016000546001600160a01b03851661145957604051622e076360e81b815260040160405180910390fd5b836114775760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561152957506001600160a01b0387163b15155b156115b2575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461157a6000888480600101955088611223565b611597576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561152f5782600054146115ad57600080fd5b6115f8565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156115b3575b50600055611094565b82805461160d90611af5565b90600052602060002090601f01602090048101928261162f5760008555611675565b82601f1061164857805160ff1916838001178555611675565b82800160010185558215611675579182015b8281111561167557825182559160200191906001019061165a565b50611681929150611685565b5090565b5b808211156116815760008155600101611686565b600067ffffffffffffffff808411156116b5576116b5611ba1565b604051601f8501601f19908116603f011681019082821181831017156116dd576116dd611ba1565b816040528093508581528686860111156116f657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461172757600080fd5b919050565b8035801515811461172757600080fd5b60006020828403121561174e57600080fd5b61175782611710565b9392505050565b6000806040838503121561177157600080fd5b61177a83611710565b915061178860208401611710565b90509250929050565b6000806000606084860312156117a657600080fd5b6117af84611710565b92506117bd60208501611710565b9150604084013590509250925092565b600080600080608085870312156117e357600080fd5b6117ec85611710565b93506117fa60208601611710565b925060408501359150606085013567ffffffffffffffff81111561181d57600080fd5b8501601f8101871361182e57600080fd5b61183d8782356020840161169a565b91505092959194509250565b6000806040838503121561185c57600080fd5b61186583611710565b91506117886020840161172c565b6000806040838503121561188657600080fd5b61188f83611710565b946020939093013593505050565b6000602082840312156118af57600080fd5b6117578261172c565b6000602082840312156118ca57600080fd5b813561175781611bb7565b6000602082840312156118e757600080fd5b815161175781611bb7565b60006020828403121561190457600080fd5b813567ffffffffffffffff81111561191b57600080fd5b8201601f8101841361192c57600080fd5b6113138482356020840161169a565b60006020828403121561194d57600080fd5b5035919050565b6000806040838503121561196757600080fd5b8235915061178860208401611710565b6000815180845261198f816020860160208601611ac9565b601f01601f19169290920160200192915050565b600083516119b5818460208801611ac9565b8351908301906119c9818360208801611ac9565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a1590830184611977565b9695505050505050565b6020815260006117576020830184611977565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611a7a57611a7a611b5f565b500190565b600082611a8e57611a8e611b75565b500490565b6000816000190483118215151615611aad57611aad611b5f565b500290565b600082821015611ac457611ac4611b5f565b500390565b60005b83811015611ae4578181015183820152602001611acc565b83811115610c855750506000910152565b600181811c90821680611b0957607f821691505b60208210811415611b2a57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611b4457611b44611b5f565b5060010190565b600082611b5a57611b5a611b75565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461083a57600080fdfea26469706673582212209596581713b4128ab638fd52a5dfebba4de842f2793970d6de0c0b2bd8fd4d7464736f6c63430008070033ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000064b617a756b69000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034b5a4b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045697066733a2f2f516d6344396d544c53637970356a543759507277316e42413967436a6d38366d6455554a4c524150315747646d692f756e72657665616c65642e6a736f6e000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101c25760003560e01c80636c0360eb116100f7578063a0712d6811610095578063c87b56dd11610064578063c87b56dd146104b4578063e985e9c5146104d4578063efbd73f41461051d578063f2fde38b1461053d57600080fd5b8063a0712d681461044c578063a22cb4651461045f578063b6fd509b1461047f578063b88d4fde1461049457600080fd5b80638d859f3e116100d15780638d859f3e146103e85780638da5cb5b14610403578063958f6ed61461042157806395d89b411461043757600080fd5b80636c0360eb1461039e57806370a08231146103b3578063715018a6146103d357600080fd5b80633bd6496811610164578063518302271161013e578063518302271461032557806355f804b3146103445780635d08c1ae146103645780636352211e1461037e57600080fd5b80633bd64968146102db5780633ccfd60b146102f057806342842e0e1461030557600080fd5b8063095ea7b3116101a0578063095ea7b3146102565780630cfed2a21461027857806318160ddd1461029857806323b872dd146102bb57600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e23660046118b8565b61055d565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b506102116105af565b6040516101f39190611a1f565b34801561022a57600080fd5b5061023e61023936600461193b565b610641565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004611873565b610685565b005b34801561028457600080fd5b5061027661029336600461189d565b610713565b3480156102a457600080fd5b50600154600054035b6040519081526020016101f3565b3480156102c757600080fd5b506102766102d6366004611791565b610759565b3480156102e757600080fd5b50610276610764565b3480156102fc57600080fd5b5061027661079f565b34801561031157600080fd5b50610276610320366004611791565b61083d565b34801561033157600080fd5b50600a546101e790610100900460ff1681565b34801561035057600080fd5b5061027661035f3660046118f2565b610858565b34801561037057600080fd5b50600a546101e79060ff1681565b34801561038a57600080fd5b5061023e61039936600461193b565b610899565b3480156103aa57600080fd5b506102116108ab565b3480156103bf57600080fd5b506102ad6103ce36600461173c565b610939565b3480156103df57600080fd5b50610276610988565b3480156103f457600080fd5b506102ad668e1bc9bf04000081565b34801561040f57600080fd5b506008546001600160a01b031661023e565b34801561042d57600080fd5b506102ad6103e881565b34801561044357600080fd5b506102116109be565b61027661045a36600461193b565b6109cd565b34801561046b57600080fd5b5061027661047a366004611849565b610ba4565b34801561048b57600080fd5b506102ad600a81565b3480156104a057600080fd5b506102766104af3660046117cd565b610c3a565b3480156104c057600080fd5b506102116104cf36600461193b565b610c8b565b3480156104e057600080fd5b506101e76104ef36600461175e565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561052957600080fd5b50610276610538366004611954565b610d49565b34801561054957600080fd5b5061027661055836600461173c565b610d7d565b60006001600160e01b031982166380ac58cd60e01b148061058e57506001600160e01b03198216635b5e139f60e01b145b806105a957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546105be90611af5565b80601f01602080910402602001604051908101604052809291908181526020018280546105ea90611af5565b80156106375780601f1061060c57610100808354040283529160200191610637565b820191906000526020600020905b81548152906001019060200180831161061a57829003601f168201915b5050505050905090565b600061064c82610e24565b610669576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061069082610899565b9050806001600160a01b0316836001600160a01b031614156106c55760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906106e557506106e381336104ef565b155b15610703576040516367d9dca160e11b815260040160405180910390fd5b61070e838383610e4f565b505050565b6008546001600160a01b031633146107465760405162461bcd60e51b815260040161073d90611a32565b60405180910390fd5b600a805460ff1916911515919091179055565b61070e838383610eab565b6008546001600160a01b0316331461078e5760405162461bcd60e51b815260040161073d90611a32565b600a805461ff001916610100179055565b6008546001600160a01b031633146107c95760405162461bcd60e51b815260040161073d90611a32565b60006107dd6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610827576040519150601f19603f3d011682016040523d82523d6000602084013e61082c565b606091505b505090508061083a57600080fd5b50565b61070e83838360405180602001604052806000815250610c3a565b6008546001600160a01b031633146108825760405162461bcd60e51b815260040161073d90611a32565b8051610895906009906020840190611601565b5050565b60006108a48261109b565b5192915050565b600980546108b890611af5565b80601f01602080910402602001604051908101604052809291908181526020018280546108e490611af5565b80156109315780601f1061090657610100808354040283529160200191610931565b820191906000526020600020905b81548152906001019060200180831161091457829003601f168201915b505050505081565b60006001600160a01b038216610962576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146109b25760405162461bcd60e51b815260040161073d90611a32565b6109bc60006111b7565b565b6060600380546105be90611af5565b600a5460ff1615610a155760405162461bcd60e51b815260206004820152601260248201527126b4b73a34b7339034b9903830bab9b2b21760711b604482015260640161073d565b333214610a755760405162461bcd60e51b815260206004820152602860248201527f596f752063616e2774206d696e74207468726f75676820616e6f7468657220636044820152676f6e74726163742160c01b606482015260840161073d565b6103e881610a866001546000540390565b610a909190611a67565b1115610ad55760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161073d565b600a811115610b445760405162461bcd60e51b815260206004820152603560248201527f596f752063616e6e6f74206d696e74206d6f7265207468616e20313020696e20604482015274612073696e676c65207472616e73616374696f6e2160581b606482015260840161073d565b610b5581668e1bc9bf040000611a93565b341015610b9a5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161073d565b61083a3382611209565b6001600160a01b038216331415610bce5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c45848484610eab565b6001600160a01b0383163b15158015610c675750610c6584848484611223565b155b15610c85576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610c9682610e24565b610cfa5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161073d565b600a54610100900460ff16610d11576105a961131b565b610d1961131b565b610d228361132a565b604051602001610d339291906119a3565b6040516020818303038152906040529050919050565b6008546001600160a01b03163314610d735760405162461bcd60e51b815260040161073d90611a32565b6108958183611209565b6008546001600160a01b03163314610da75760405162461bcd60e51b815260040161073d90611a32565b6001600160a01b038116610e0c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161073d565b61083a816111b7565b6001600160a01b03163b151590565b60008054821080156105a9575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610eb68261109b565b9050836001600160a01b031681600001516001600160a01b031614610eed5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610f0b5750610f0b85336104ef565b80610f26575033610f1b84610641565b6001600160a01b0316145b905080610f4657604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610f6d57604051633a954ecd60e21b815260040160405180910390fd5b610f7960008487610e4f565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661104f57600054821461104f578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b60408051606081018252600080825260208201819052918101919091528160005481101561119e57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061119c5780516001600160a01b031615611132579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611197579392505050565b611132565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610895828260405180602001604052806000815250611428565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906112589033908990889088906004016119e2565b602060405180830381600087803b15801561127257600080fd5b505af19250505080156112a2575060408051601f3d908101601f1916820190925261129f918101906118d5565b60015b6112fd573d8080156112d0576040519150601f19603f3d011682016040523d82523d6000602084013e6112d5565b606091505b5080516112f5576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600980546105be90611af5565b60608161134e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611378578061136281611b30565b91506113719050600a83611a7f565b9150611352565b60008167ffffffffffffffff81111561139357611393611ba1565b6040519080825280601f01601f1916602001820160405280156113bd576020820181803683370190505b5090505b8415611313576113d2600183611ab2565b91506113df600a86611b4b565b6113ea906030611a67565b60f81b8183815181106113ff576113ff611b8b565b60200101906001600160f81b031916908160001a905350611421600a86611a7f565b94506113c1565b61070e83838360016000546001600160a01b03851661145957604051622e076360e81b815260040160405180910390fd5b836114775760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561152957506001600160a01b0387163b15155b156115b2575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461157a6000888480600101955088611223565b611597576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561152f5782600054146115ad57600080fd5b6115f8565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156115b3575b50600055611094565b82805461160d90611af5565b90600052602060002090601f01602090048101928261162f5760008555611675565b82601f1061164857805160ff1916838001178555611675565b82800160010185558215611675579182015b8281111561167557825182559160200191906001019061165a565b50611681929150611685565b5090565b5b808211156116815760008155600101611686565b600067ffffffffffffffff808411156116b5576116b5611ba1565b604051601f8501601f19908116603f011681019082821181831017156116dd576116dd611ba1565b816040528093508581528686860111156116f657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461172757600080fd5b919050565b8035801515811461172757600080fd5b60006020828403121561174e57600080fd5b61175782611710565b9392505050565b6000806040838503121561177157600080fd5b61177a83611710565b915061178860208401611710565b90509250929050565b6000806000606084860312156117a657600080fd5b6117af84611710565b92506117bd60208501611710565b9150604084013590509250925092565b600080600080608085870312156117e357600080fd5b6117ec85611710565b93506117fa60208601611710565b925060408501359150606085013567ffffffffffffffff81111561181d57600080fd5b8501601f8101871361182e57600080fd5b61183d8782356020840161169a565b91505092959194509250565b6000806040838503121561185c57600080fd5b61186583611710565b91506117886020840161172c565b6000806040838503121561188657600080fd5b61188f83611710565b946020939093013593505050565b6000602082840312156118af57600080fd5b6117578261172c565b6000602082840312156118ca57600080fd5b813561175781611bb7565b6000602082840312156118e757600080fd5b815161175781611bb7565b60006020828403121561190457600080fd5b813567ffffffffffffffff81111561191b57600080fd5b8201601f8101841361192c57600080fd5b6113138482356020840161169a565b60006020828403121561194d57600080fd5b5035919050565b6000806040838503121561196757600080fd5b8235915061178860208401611710565b6000815180845261198f816020860160208601611ac9565b601f01601f19169290920160200192915050565b600083516119b5818460208801611ac9565b8351908301906119c9818360208801611ac9565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a1590830184611977565b9695505050505050565b6020815260006117576020830184611977565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611a7a57611a7a611b5f565b500190565b600082611a8e57611a8e611b75565b500490565b6000816000190483118215151615611aad57611aad611b5f565b500290565b600082821015611ac457611ac4611b5f565b500390565b60005b83811015611ae4578181015183820152602001611acc565b83811115610c855750506000910152565b600181811c90821680611b0957607f821691505b60208210811415611b2a57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611b4457611b44611b5f565b5060010190565b600082611b5a57611b5a611b75565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461083a57600080fdfea26469706673582212209596581713b4128ab638fd52a5dfebba4de842f2793970d6de0c0b2bd8fd4d7464736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000064b617a756b69000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034b5a4b00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045697066733a2f2f516d6344396d544c53637970356a543759507277316e42413967436a6d38366d6455554a4c524150315747646d692f756e72657665616c65642e6a736f6e000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Kazuki
Arg [1] : _symbol (string): KZK
Arg [2] : _initBaseURI (string): ipfs://QmcD9mTLScyp5jT7YPrw1nBA9gCjm86mdUUJLRAP1WGdmi/unrevealed.json
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [4] : 4b617a756b690000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4b5a4b0000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000045
Arg [8] : 697066733a2f2f516d6344396d544c53637970356a543759507277316e424139
Arg [9] : 67436a6d38366d6455554a4c524150315747646d692f756e72657665616c6564
Arg [10] : 2e6a736f6e000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
44795:2044:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26972:305;;;;;;;;;;-1:-1:-1;26972:305:0;;;;;:::i;:::-;;:::i;:::-;;;6539:14:1;;6532:22;6514:41;;6502:2;6487:18;26972:305:0;;;;;;;;30085:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31588:204::-;;;;;;;;;;-1:-1:-1;31588:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5837:32:1;;;5819:51;;5807:2;5792:18;31588:204:0;5673:203:1;31151:371:0;;;;;;;;;;-1:-1:-1;31151:371:0;;;;;:::i;:::-;;:::i;:::-;;46041:81;;;;;;;;;;-1:-1:-1;46041:81:0;;;;;:::i;:::-;;:::i;26221:303::-;;;;;;;;;;-1:-1:-1;26475:12:0;;26265:7;26459:13;:28;26221:303;;;9995:25:1;;;9983:2;9968:18;26221:303:0;9849:177:1;32453:170:0;;;;;;;;;;-1:-1:-1;32453:170:0;;;;;:::i;:::-;;:::i;45967:68::-;;;;;;;;;;;;;:::i;46128:137::-;;;;;;;;;;;;;:::i;32694:185::-;;;;;;;;;;-1:-1:-1;32694:185:0;;;;;:::i;:::-;;:::i;45071:20::-;;;;;;;;;;-1:-1:-1;45071:20:0;;;;;;;;;;;46379:100;;;;;;;;;;-1:-1:-1;46379:100:0;;;;;:::i;:::-;;:::i;45044:22::-;;;;;;;;;;-1:-1:-1;45044:22:0;;;;;;;;29893:125;;;;;;;;;;-1:-1:-1;29893:125:0;;;;;:::i;:::-;;:::i;44868:21::-;;;;;;;;;;;;;:::i;27341:206::-;;;;;;;;;;-1:-1:-1;27341:206:0;;;;;:::i;:::-;;:::i;4730:103::-;;;;;;;;;;;;;:::i;44898:42::-;;;;;;;;;;;;44930:10;44898:42;;4079:87;;;;;;;;;;-1:-1:-1;4152:6:0;;-1:-1:-1;;;;;4152:6:0;4079:87;;44945:41;;;;;;;;;;;;44982:4;44945:41;;30254:104;;;;;;;;;;;;;:::i;45316:510::-;;;;;;:::i;:::-;;:::i;31864:287::-;;;;;;;;;;-1:-1:-1;31864:287:0;;;;;:::i;:::-;;:::i;44991:46::-;;;;;;;;;;;;45035:2;44991:46;;32950:369;;;;;;;;;;-1:-1:-1;32950:369:0;;;;;:::i;:::-;;:::i;46485:349::-;;;;;;;;;;-1:-1:-1;46485:349:0;;;;;:::i;:::-;;:::i;32222:164::-;;;;;;;;;;-1:-1:-1;32222:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32343:25:0;;;32319:4;32343:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32222:164;45834:127;;;;;;;;;;-1:-1:-1;45834:127:0;;;;;:::i;:::-;;:::i;4988:201::-;;;;;;;;;;-1:-1:-1;4988:201:0;;;;;:::i;:::-;;:::i;26972:305::-;27074:4;-1:-1:-1;;;;;;27111:40:0;;-1:-1:-1;;;27111:40:0;;:105;;-1:-1:-1;;;;;;;27168:48:0;;-1:-1:-1;;;27168:48:0;27111:105;:158;;;-1:-1:-1;;;;;;;;;;16972:40:0;;;27233:36;27091:178;26972:305;-1:-1:-1;;26972:305:0:o;30085:100::-;30139:13;30172:5;30165:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30085:100;:::o;31588:204::-;31656:7;31681:16;31689:7;31681;:16::i;:::-;31676:64;;31706:34;;-1:-1:-1;;;31706:34:0;;;;;;;;;;;31676:64;-1:-1:-1;31760:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31760:24:0;;31588:204::o;31151:371::-;31224:13;31240:24;31256:7;31240:15;:24::i;:::-;31224:40;;31285:5;-1:-1:-1;;;;;31279:11:0;:2;-1:-1:-1;;;;;31279:11:0;;31275:48;;;31299:24;;-1:-1:-1;;;31299:24:0;;;;;;;;;;;31275:48;2883:10;-1:-1:-1;;;;;31340:21:0;;;;;;:63;;-1:-1:-1;31366:37:0;31383:5;2883:10;32222:164;:::i;31366:37::-;31365:38;31340:63;31336:138;;;31427:35;;-1:-1:-1;;;31427:35:0;;;;;;;;;;;31336:138;31486:28;31495:2;31499:7;31508:5;31486:8;:28::i;:::-;31213:309;31151:371;;:::o;46041:81::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;;;;;;;;;46097:10:::1;:19:::0;;-1:-1:-1;;46097:19:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46041:81::o;32453:170::-;32587:28;32597:4;32603:2;32607:7;32587:9;:28::i;45967:68::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;46014:8:::1;:15:::0;;-1:-1:-1;;46014:15:0::1;;;::::0;;45967:68::o;46128:137::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;46173:7:::1;46194;4152:6:::0;;-1:-1:-1;;;;;4152:6:0;;4079:87;46194:7:::1;-1:-1:-1::0;;;;;46186:21:0::1;46215;46186:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46172:69;;;46256:2;46248:11;;;::::0;::::1;;46165:100;46128:137::o:0;32694:185::-;32832:39;32849:4;32855:2;32859:7;32832:39;;;;;;;;;;;;:16;:39::i;46379:100::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;46452:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;46379:100:::0;:::o;29893:125::-;29957:7;29984:21;29997:7;29984:12;:21::i;:::-;:26;;29893:125;-1:-1:-1;;29893:125:0:o;44868:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27341:206::-;27405:7;-1:-1:-1;;;;;27429:19:0;;27425:60;;27457:28;;-1:-1:-1;;;27457:28:0;;;;;;;;;;;27425:60;-1:-1:-1;;;;;;27511:19:0;;;;;:12;:19;;;;;:27;;;;27341:206::o;4730:103::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;30254:104::-;30310:13;30343:7;30336:14;;;;;:::i;45316:510::-;45395:10;;;;45394:11;45386:42;;;;-1:-1:-1;;;45386:42:0;;6992:2:1;45386:42:0;;;6974:21:1;7031:2;7011:18;;;7004:30;-1:-1:-1;;;7050:18:1;;;7043:48;7108:18;;45386:42:0;6790:342:1;45386:42:0;45443:10;45457:9;45443:23;45435:76;;;;-1:-1:-1;;;45435:76:0;;9294:2:1;45435:76:0;;;9276:21:1;9333:2;9313:18;;;9306:30;9372:34;9352:18;;;9345:62;-1:-1:-1;;;9423:18:1;;;9416:38;9471:19;;45435:76:0;9092:404:1;45435:76:0;44982:4;45561:8;45545:13;26475:12;;26265:7;26459:13;:28;;26221:303;45545:13;:24;;;;:::i;:::-;:38;;45537:71;;;;-1:-1:-1;;;45537:71:0;;8945:2:1;45537:71:0;;;8927:21:1;8984:2;8964:18;;;8957:30;-1:-1:-1;;;9003:18:1;;;8996:50;9063:18;;45537:71:0;8743:344:1;45537:71:0;45035:2;45623:8;:29;;45615:95;;;;-1:-1:-1;;;45615:95:0;;7746:2:1;45615:95:0;;;7728:21:1;7785:2;7765:18;;;7758:30;7824:34;7804:18;;;7797:62;-1:-1:-1;;;7875:18:1;;;7868:51;7936:19;;45615:95:0;7544:417:1;45615:95:0;45739:16;45747:8;44930:10;45739:16;:::i;:::-;45725:9;:31;;45717:63;;;;-1:-1:-1;;;45717:63:0;;9703:2:1;45717:63:0;;;9685:21:1;9742:2;9722:18;;;9715:30;-1:-1:-1;;;9761:18:1;;;9754:49;9820:18;;45717:63:0;9501:343:1;45717:63:0;45789:31;45799:10;45811:8;45789:9;:31::i;31864:287::-;-1:-1:-1;;;;;31963:24:0;;2883:10;31963:24;31959:54;;;31996:17;;-1:-1:-1;;;31996:17:0;;;;;;;;;;;31959:54;2883:10;32026:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32026:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32026:53:0;;;;;;;;;;32095:48;;6514:41:1;;;32026:42:0;;2883:10;32095:48;;6487:18:1;32095:48:0;;;;;;;31864:287;;:::o;32950:369::-;33117:28;33127:4;33133:2;33137:7;33117:9;:28::i;:::-;-1:-1:-1;;;;;33160:13:0;;7075:19;:23;;33160:76;;;;;33180:56;33211:4;33217:2;33221:7;33230:5;33180:30;:56::i;:::-;33179:57;33160:76;33156:156;;;33260:40;;-1:-1:-1;;;33260:40:0;;;;;;;;;;;33156:156;32950:369;;;;:::o;46485:349::-;46584:13;46625:17;46633:8;46625:7;:17::i;:::-;46609:98;;;;-1:-1:-1;;;46609:98:0;;8529:2:1;46609:98:0;;;8511:21:1;8568:2;8548:18;;;8541:30;8607:34;8587:18;;;8580:62;-1:-1:-1;;;8658:18:1;;;8651:45;8713:19;;46609:98:0;8327:411:1;46609:98:0;46721:8;;;;;;;46716:32;;46738:10;:8;:10::i;46716:32::-;46786:10;:8;:10::i;:::-;46798:19;:8;:17;:19::i;:::-;46769:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46755:73;;46485:349;;;:::o;45834:127::-;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;45922:33:::1;45932:9;45943:11;45922:9;:33::i;4988:201::-:0;4152:6;;-1:-1:-1;;;;;4152:6:0;2883:10;4299:23;4291:68;;;;-1:-1:-1;;;4291:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5077:22:0;::::1;5069:73;;;::::0;-1:-1:-1;;;5069:73:0;;7339:2:1;5069:73:0::1;::::0;::::1;7321:21:1::0;7378:2;7358:18;;;7351:30;7417:34;7397:18;;;7390:62;-1:-1:-1;;;7468:18:1;;;7461:36;7514:19;;5069:73:0::1;7137:402:1::0;5069:73:0::1;5153:28;5172:8;5153:18;:28::i;6780:326::-:0;-1:-1:-1;;;;;7075:19:0;;:23;;;6780:326::o;33574:187::-;33631:4;33695:13;;33685:7;:23;33655:98;;;;-1:-1:-1;;33726:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;33726:27:0;;;;33725:28;;33574:187::o;41744:196::-;41859:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;41859:29:0;-1:-1:-1;;;;;41859:29:0;;;;;;;;;41904:28;;41859:24;;41904:28;;;;;;;41744:196;;;:::o;36687:2130::-;36802:35;36840:21;36853:7;36840:12;:21::i;:::-;36802:59;;36900:4;-1:-1:-1;;;;;36878:26:0;:13;:18;;;-1:-1:-1;;;;;36878:26:0;;36874:67;;36913:28;;-1:-1:-1;;;36913:28:0;;;;;;;;;;;36874:67;36954:22;2883:10;-1:-1:-1;;;;;36980:20:0;;;;:73;;-1:-1:-1;37017:36:0;37034:4;2883:10;32222:164;:::i;37017:36::-;36980:126;;;-1:-1:-1;2883:10:0;37070:20;37082:7;37070:11;:20::i;:::-;-1:-1:-1;;;;;37070:36:0;;36980:126;36954:153;;37125:17;37120:66;;37151:35;;-1:-1:-1;;;37151:35:0;;;;;;;;;;;37120:66;-1:-1:-1;;;;;37201:16:0;;37197:52;;37226:23;;-1:-1:-1;;;37226:23:0;;;;;;;;;;;37197:52;37370:35;37387:1;37391:7;37400:4;37370:8;:35::i;:::-;-1:-1:-1;;;;;37701:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;37701:31:0;;;;;;;-1:-1:-1;;37701:31:0;;;;;;;37747:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;37747:29:0;;;;;;;;;;;37827:20;;;:11;:20;;;;;;37862:18;;-1:-1:-1;;;;;;37895:49:0;;;;-1:-1:-1;;;37928:15:0;37895:49;;;;;;;;;;38218:11;;38278:24;;;;;38321:13;;37827:20;;38278:24;;38321:13;38317:384;;38531:13;;38516:11;:28;38512:174;;38569:20;;38638:28;;;;38612:54;;-1:-1:-1;;;38612:54:0;-1:-1:-1;;;;;;38612:54:0;;;-1:-1:-1;;;;;38569:20:0;;38612:54;;;;38512:174;37676:1036;;;38748:7;38744:2;-1:-1:-1;;;;;38729:27:0;38738:4;-1:-1:-1;;;;;38729:27:0;;;;;;;;;;;38767:42;36791:2026;;36687:2130;;;:::o;28722:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;28833:7:0;28916:13;;28909:4;:20;28878:886;;;28950:31;28984:17;;;:11;:17;;;;;;;;;28950:51;;;;;;;;;-1:-1:-1;;;;;28950:51:0;;;;-1:-1:-1;;;28950:51:0;;;;;;;;;;;-1:-1:-1;;;28950:51:0;;;;;;;;;;;;;;29020:729;;29070:14;;-1:-1:-1;;;;;29070:28:0;;29066:101;;29134:9;28722:1109;-1:-1:-1;;;28722:1109:0:o;29066:101::-;-1:-1:-1;;;29509:6:0;29554:17;;;;:11;:17;;;;;;;;;29542:29;;;;;;;;;-1:-1:-1;;;;;29542:29:0;;;;;-1:-1:-1;;;29542:29:0;;;;;;;;;;;-1:-1:-1;;;29542:29:0;;;;;;;;;;;;;29602:28;29598:109;;29670:9;28722:1109;-1:-1:-1;;;28722:1109:0:o;29598:109::-;29469:261;;;28931:833;28878:886;29792:31;;-1:-1:-1;;;29792:31:0;;;;;;;;;;;5349:191;5442:6;;;-1:-1:-1;;;;;5459:17:0;;;-1:-1:-1;;;;;;5459:17:0;;;;;;;5492:40;;5442:6;;;5459:17;5442:6;;5492:40;;5423:16;;5492:40;5412:128;5349:191;:::o;33769:104::-;33838:27;33848:2;33852:8;33838:27;;;;;;;;;;;;:9;:27::i;42432:667::-;42616:72;;-1:-1:-1;;;42616:72:0;;42595:4;;-1:-1:-1;;;;;42616:36:0;;;;;:72;;2883:10;;42667:4;;42673:7;;42682:5;;42616:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42616:72:0;;;;;;;;-1:-1:-1;;42616:72:0;;;;;;;;;;;;:::i;:::-;;;42612:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42850:13:0;;42846:235;;42896:40;;-1:-1:-1;;;42896:40:0;;;;;;;;;;;42846:235;43039:6;43033:13;43024:6;43020:2;43016:15;43009:38;42612:480;-1:-1:-1;;;;;;42735:55:0;-1:-1:-1;;;42735:55:0;;-1:-1:-1;42612:480:0;42432:667;;;;;;:::o;46271:102::-;46331:13;46360:7;46353:14;;;;;:::i;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;34236:163;34359:32;34365:2;34369:8;34379:5;34386:4;34797:20;34820:13;-1:-1:-1;;;;;34848:16:0;;34844:48;;34873:19;;-1:-1:-1;;;34873:19:0;;;;;;;;;;;34844:48;34907:13;34903:44;;34929:18;;-1:-1:-1;;;34929:18:0;;;;;;;;;;;34903:44;-1:-1:-1;;;;;35298:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;35357:49:0;;35298:44;;;;;;;;35357:49;;;;-1:-1:-1;;35298:44:0;;;;;;35357:49;;;;;;;;;;;;;;;;35423:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;35473:66:0;;;;-1:-1:-1;;;35523:15:0;35473:66;;;;;;;;;;35423:25;35620:23;;;35664:4;:23;;;;-1:-1:-1;;;;;;35672:13:0;;7075:19;:23;;35672:15;35660:641;;;35708:314;35739:38;;35764:12;;-1:-1:-1;;;;;35739:38:0;;;35756:1;;35739:38;;35756:1;;35739:38;35805:69;35844:1;35848:2;35852:14;;;;;;35868:5;35805:30;:69::i;:::-;35800:174;;35910:40;;-1:-1:-1;;;35910:40:0;;;;;;;;;;;35800:174;36017:3;36001:12;:19;;35708:314;;36103:12;36086:13;;:29;36082:43;;36117:8;;;36082:43;35660:641;;;36166:120;36197:40;;36222:14;;;;;-1:-1:-1;;;;;36197:40:0;;;36214:1;;36197:40;;36214:1;;36197:40;36281:3;36265:12;:19;;36166:120;;35660:641;-1:-1:-1;36315:13:0;:28;36365:60;32950:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;:::-;1134:39;993:186;-1:-1:-1;;;993:186:1:o;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:254::-;4368:6;4376;4429:2;4417:9;4408:7;4404:23;4400:32;4397:52;;;4445:1;4442;4435:12;4397:52;4481:9;4468:23;4458:33;;4510:38;4544:2;4533:9;4529:18;4510:38;:::i;4559:257::-;4600:3;4638:5;4632:12;4665:6;4660:3;4653:19;4681:63;4737:6;4730:4;4725:3;4721:14;4714:4;4707:5;4703:16;4681:63;:::i;:::-;4798:2;4777:15;-1:-1:-1;;4773:29:1;4764:39;;;;4805:4;4760:50;;4559:257;-1:-1:-1;;4559:257:1:o;4821:637::-;5101:3;5139:6;5133:13;5155:53;5201:6;5196:3;5189:4;5181:6;5177:17;5155:53;:::i;:::-;5271:13;;5230:16;;;;5293:57;5271:13;5230:16;5327:4;5315:17;;5293:57;:::i;:::-;-1:-1:-1;;;5372:20:1;;5401:22;;;5450:1;5439:13;;4821:637;-1:-1:-1;;;;4821:637:1:o;5881:488::-;-1:-1:-1;;;;;6150:15:1;;;6132:34;;6202:15;;6197:2;6182:18;;6175:43;6249:2;6234:18;;6227:34;;;6297:3;6292:2;6277:18;;6270:31;;;6075:4;;6318:45;;6343:19;;6335:6;6318:45;:::i;:::-;6310:53;5881:488;-1:-1:-1;;;;;;5881:488:1:o;6566:219::-;6715:2;6704:9;6697:21;6678:4;6735:44;6775:2;6764:9;6760:18;6752:6;6735:44;:::i;7966:356::-;8168:2;8150:21;;;8187:18;;;8180:30;8246:34;8241:2;8226:18;;8219:62;8313:2;8298:18;;7966:356::o;10031:128::-;10071:3;10102:1;10098:6;10095:1;10092:13;10089:39;;;10108:18;;:::i;:::-;-1:-1:-1;10144:9:1;;10031:128::o;10164:120::-;10204:1;10230;10220:35;;10235:18;;:::i;:::-;-1:-1:-1;10269:9:1;;10164:120::o;10289:168::-;10329:7;10395:1;10391;10387:6;10383:14;10380:1;10377:21;10372:1;10365:9;10358:17;10354:45;10351:71;;;10402:18;;:::i;:::-;-1:-1:-1;10442:9:1;;10289:168::o;10462:125::-;10502:4;10530:1;10527;10524:8;10521:34;;;10535:18;;:::i;:::-;-1:-1:-1;10572:9:1;;10462:125::o;10592:258::-;10664:1;10674:113;10688:6;10685:1;10682:13;10674:113;;;10764:11;;;10758:18;10745:11;;;10738:39;10710:2;10703:10;10674:113;;;10805:6;10802:1;10799:13;10796:48;;;-1:-1:-1;;10840:1:1;10822:16;;10815:27;10592:258::o;10855:380::-;10934:1;10930:12;;;;10977;;;10998:61;;11052:4;11044:6;11040:17;11030:27;;10998:61;11105:2;11097:6;11094:14;11074:18;11071:38;11068:161;;;11151:10;11146:3;11142:20;11139:1;11132:31;11186:4;11183:1;11176:15;11214:4;11211:1;11204:15;11068:161;;10855:380;;;:::o;11240:135::-;11279:3;-1:-1:-1;;11300:17:1;;11297:43;;;11320:18;;:::i;:::-;-1:-1:-1;11367:1:1;11356:13;;11240:135::o;11380:112::-;11412:1;11438;11428:35;;11443:18;;:::i;:::-;-1:-1:-1;11477:9:1;;11380:112::o;11497:127::-;11558:10;11553:3;11549:20;11546:1;11539:31;11589:4;11586:1;11579:15;11613:4;11610:1;11603:15;11629:127;11690:10;11685:3;11681:20;11678:1;11671:31;11721:4;11718:1;11711:15;11745:4;11742:1;11735:15;11761:127;11822:10;11817:3;11813:20;11810:1;11803:31;11853:4;11850:1;11843:15;11877:4;11874:1;11867:15;11893:127;11954:10;11949:3;11945:20;11942:1;11935:31;11985:4;11982:1;11975:15;12009:4;12006:1;11999:15;12025:131;-1:-1:-1;;;;;;12099:32:1;;12089:43;;12079:71;;12146:1;12143;12136:12
Swarm Source
ipfs://9596581713b4128ab638fd52a5dfebba4de842f2793970d6de0c0b2bd8fd4d74
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.