ETH Price: $3,254.84 (+3.19%)
Gas: 4 Gwei

Token

Katsu (KAT)
 

Overview

Max Total Supply

100 KAT

Holders

11

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
cokeceo.eth
Balance
5 KAT
0xb807d3c907f3aebd0e9de7c148baa91098d6183d
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Katsu

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-08
*/

// SPDX-License-Identifier: MIT

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);
}

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;
}

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);
}

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);
}

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);
            }
        }
    }
}

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;
    }
}

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);
    }
}

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;
    }
}

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 {}
}

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);
    }
}

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf)
        internal
        pure
        returns (bytes32)
    {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b)
        private
        pure
        returns (bytes32 value)
    {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

pragma solidity >=0.7.0 <0.9.0;

contract Katsu is ERC721A, Ownable, ReentrancyGuard {
    using Strings for uint256;

    string uriPrefix = "";
    string public uriSuffix = ".json";
    string public hiddenMetadataUri =
        "ipfs://QmRuiSeJD7rZSzsAdNx5vffh7tCCdUsQ7C3cTCGezUcPqz/hidden.json";
    uint256 public cost = 0 ether;
    uint256 public bulkCost = 0.005 ether;
    uint256 public maxSupply = 10000;
    uint256 public maxMintAmountPerTx = 20;
    bool public paused = false;
    bool public revealed = false;
    uint256 public nftPerAddressLimit = 6;
    bytes32 public merkleRoot;
    bool public whitelistMintEnabled = false;

    constructor(string memory _uriPrefix) ERC721A("Katsu", "KAT") {
        uriPrefix = _uriPrefix;
    }

    modifier mintCompliance(uint256 _mintAmount) {
        require(!paused, "The minting is paused");
        require(_mintAmount <= maxMintAmountPerTx, "Invalid mint amount");
        require(
            totalSupply() + _mintAmount <= maxSupply,
            "Max supply exceeded!"
        );
        _;
    }

    function whitelistMintKatsu(
        uint256 _mintAmount,
        bytes32[] calldata _merkleProof
    ) public payable mintCompliance(_mintAmount) {
        require(whitelistMintEnabled, "Whitelist not enabled!");
        uint256 ownerTokenCount = balanceOf(msg.sender);
        require(
            ownerTokenCount + _mintAmount <= nftPerAddressLimit,
            "max NFT per address exceeded"
        );
        require(msg.value >= cost * _mintAmount, "Insufficient funds!");
        bytes32 leaf = keccak256(abi.encodePacked(_msgSender()));
        require(
            MerkleProof.verify(_merkleProof, merkleRoot, leaf),
            "Invalid proof!"
        );
        _safeMint(_msgSender(), _mintAmount);
    }

    function mintKatsu(uint256 _mintAmount)
        public
        payable
        mintCompliance(_mintAmount)
    {
        if (msg.sender != owner()) {
            require(!whitelistMintEnabled, "Whitelist ongoing");
            require(msg.value >= cost * _mintAmount, "Insufficient funds");
            if(_mintAmount>5) {
                require(msg.value >= (cost * _mintAmount + bulkCost * (_mintAmount - 5)), "Bulk minting funds insufficient");
            }
        }
        _safeMint(msg.sender, _mintAmount);
    }

    function minter(address _user, uint256 _amount) private mintCompliance(_amount) {
        _safeMint(_user, _amount);
    }

    function airdropKatsu(address[] calldata _users, uint256[] calldata _mintAmounts) public onlyOwner {
        for (uint256 i = 0; i < _users.length; i++) {
            minter(_users[i], _mintAmounts[i]);
        }
    }

    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = 1;
        uint256 ownedTokenIndex = 0;

        while (
            ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply
        ) {
            address currentTokenOwner = ownerOf(currentTokenId);

            if (currentTokenOwner == _owner) {
                ownedTokenIds[ownedTokenIndex] = currentTokenId;

                ownedTokenIndex++;
            }

            currentTokenId++;
        }

        return ownedTokenIds;
    }

    function tokenURI(uint256 _tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(_tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        if (revealed == false) {
            return hiddenMetadataUri;
        }

        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        currentBaseURI,
                        _tokenId.toString(),
                        uriSuffix
                    )
                )
                : "";
    }

    function setRevealed(bool _state) public onlyOwner {
        revealed = _state;
    }

    function setCost(uint256 _cost) public onlyOwner {
        cost = _cost;
    }

    function setBulkCost(uint256 _cost) public onlyOwner {
        bulkCost = _cost;
    }

    function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx)
        public
        onlyOwner
    {
        maxMintAmountPerTx = _maxMintAmountPerTx;
    }

    function setUriPrefix(string memory _uriPrefix) public onlyOwner {
        uriPrefix = _uriPrefix;
    }

    function setUriSuffix(string memory _uriSuffix) public onlyOwner {
        uriSuffix = _uriSuffix;
    }

    function setPaused(bool _state) public onlyOwner {
        paused = _state;
    }

    function setWhitelistMintEnabled(bool _state) public onlyOwner {
        whitelistMintEnabled = _state;
    }

    function withdraw() public onlyOwner {
        (bool bs, ) = payable(owner()).call{value: address(this).balance}("");
        require(bs);
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return uriPrefix;
    }

    function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
        merkleRoot = _merkleRoot;
    }
}

// @Author: wizznft.com

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_uriPrefix","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":[{"internalType":"address[]","name":"_users","type":"address[]"},{"internalType":"uint256[]","name":"_mintAmounts","type":"uint256[]"}],"name":"airdropKatsu","outputs":[],"stateMutability":"nonpayable","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":"bulkCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintKatsu","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setBulkCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWhitelistMintEnabled","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":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMintKatsu","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b91600a91620001c5565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a91600b91620001c5565b5060405180608001604052806041815260200162002a546041913980516200007b91600c91602090910190620001c5565b506000600d556611c37937e08000600e55612710600f55601460108190556011805461ffff191690556006601255805460ff19169055348015620000be57600080fd5b5060405162002a9538038062002a95833981016040819052620000e1916200026b565b60408051808201825260058152644b6174737560d81b60208083019182528351808501909452600384526212d05560ea1b9084015281519192916200012991600291620001c5565b5080516200013f906003906020840190620001c5565b50506000805550620001513362000173565b600160095580516200016b90600a906020840190620001c5565b50506200039a565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001d39062000347565b90600052602060002090601f016020900481019282620001f7576000855562000242565b82601f106200021257805160ff191683800117855562000242565b8280016001018555821562000242579182015b828111156200024257825182559160200191906001019062000225565b506200025092915062000254565b5090565b5b8082111562000250576000815560010162000255565b600060208083850312156200027f57600080fd5b82516001600160401b03808211156200029757600080fd5b818501915085601f830112620002ac57600080fd5b815181811115620002c157620002c162000384565b604051601f8201601f19908116603f01168101908382118183101715620002ec57620002ec62000384565b8160405282815288868487010111156200030557600080fd5b600093505b828410156200032957848401860151818501870152928501926200030a565b828411156200033b5760008684830101525b98975050505050505050565b600181811c908216806200035c57607f821691505b602082108114156200037e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6126aa80620003aa6000396000f3fe6080604052600436106102515760003560e01c80635c975abb11610139578063a22cb465116100b6578063ba7d2c761161007a578063ba7d2c7614610693578063c87b56dd146106a9578063d5abeb01146106c9578063e0a80853146106df578063e985e9c5146106ff578063f2fde38b1461074857600080fd5b8063a22cb465146105fe578063a45ba8e71461061e578063b071401b14610633578063b767a09814610653578063b88d4fde1461067357600080fd5b80637cb64759116100fd5780637cb64759146105755780637ec4a659146105955780638da5cb5b146105b557806394354fd0146105d357806395d89b41146105e957600080fd5b80635c975abb146104ec5780636352211e146105065780636caede3d1461052657806370a0823114610540578063715018a61461056057600080fd5b806323b872dd116101d257806342842e0e1161019657806342842e0e1461042b578063438b63001461044b57806344a0d68a1461047857806351830227146104985780635307b750146104b75780635503a0e8146104d757600080fd5b806323b872dd146103ad578063286bc34f146103cd5780632eb4a7ab146103e05780633920c1a4146103f65780633ccfd60b1461041657600080fd5b806314f1d0a51161021957806314f1d0a51461032b57806316ba10e01461033e57806316c38b3c1461035e57806318160ddd1461037e578063215b53051461039757600080fd5b806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad578063095ea7b3146102e557806313faede614610307575b600080fd5b34801561026257600080fd5b506102766102713660046121fe565b610768565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a06107ba565b604051610282919061243c565b3480156102b957600080fd5b506102cd6102c83660046121e5565b61084c565b6040516001600160a01b039091168152602001610282565b3480156102f157600080fd5b50610305610300366004612135565b610890565b005b34801561031357600080fd5b5061031d600d5481565b604051908152602001610282565b6103056103393660046121e5565b61091e565b34801561034a57600080fd5b50610305610359366004612238565b610ae8565b34801561036a57600080fd5b506103056103793660046121ca565b610b25565b34801561038a57600080fd5b506001546000540361031d565b3480156103a357600080fd5b5061031d600e5481565b3480156103b957600080fd5b506103056103c8366004612054565b610b62565b6103056103db366004612280565b610b6d565b3480156103ec57600080fd5b5061031d60135481565b34801561040257600080fd5b5061030561041136600461215f565b610dbd565b34801561042257600080fd5b50610305610e53565b34801561043757600080fd5b50610305610446366004612054565b610ef1565b34801561045757600080fd5b5061046b610466366004612006565b610f0c565b60405161028291906123f8565b34801561048457600080fd5b506103056104933660046121e5565b610fec565b3480156104a457600080fd5b5060115461027690610100900460ff1681565b3480156104c357600080fd5b506103056104d23660046121e5565b61101b565b3480156104e357600080fd5b506102a061104a565b3480156104f857600080fd5b506011546102769060ff1681565b34801561051257600080fd5b506102cd6105213660046121e5565b6110d8565b34801561053257600080fd5b506014546102769060ff1681565b34801561054c57600080fd5b5061031d61055b366004612006565b6110ea565b34801561056c57600080fd5b50610305611138565b34801561058157600080fd5b506103056105903660046121e5565b61116e565b3480156105a157600080fd5b506103056105b0366004612238565b61119d565b3480156105c157600080fd5b506008546001600160a01b03166102cd565b3480156105df57600080fd5b5061031d60105481565b3480156105f557600080fd5b506102a06111da565b34801561060a57600080fd5b5061030561061936600461210b565b6111e9565b34801561062a57600080fd5b506102a061127f565b34801561063f57600080fd5b5061030561064e3660046121e5565b61128c565b34801561065f57600080fd5b5061030561066e3660046121ca565b6112bb565b34801561067f57600080fd5b5061030561068e366004612090565b6112f8565b34801561069f57600080fd5b5061031d60125481565b3480156106b557600080fd5b506102a06106c43660046121e5565b611349565b3480156106d557600080fd5b5061031d600f5481565b3480156106eb57600080fd5b506103056106fa3660046121ca565b6114b8565b34801561070b57600080fd5b5061027661071a366004612021565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561075457600080fd5b50610305610763366004612006565b6114fc565b60006001600160e01b031982166380ac58cd60e01b148061079957506001600160e01b03198216635b5e139f60e01b145b806107b457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107c99061259c565b80601f01602080910402602001604051908101604052809291908181526020018280546107f59061259c565b80156108425780601f1061081757610100808354040283529160200191610842565b820191906000526020600020905b81548152906001019060200180831161082557829003601f168201915b5050505050905090565b600061085782611594565b610874576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061089b826110d8565b9050806001600160a01b0316836001600160a01b031614156108d05760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108f057506108ee813361071a565b155b1561090e576040516367d9dca160e11b815260040160405180910390fd5b6109198383836115bf565b505050565b601154819060ff161561094c5760405162461bcd60e51b81526004016109439061244f565b60405180910390fd5b60105481111561096e5760405162461bcd60e51b8152600401610943906124e1565b600f548161097f6001546000540390565b610989919061250e565b11156109a75760405162461bcd60e51b8152600401610943906124b3565b6008546001600160a01b03163314610ada5760145460ff1615610a005760405162461bcd60e51b815260206004820152601160248201527057686974656c697374206f6e676f696e6760781b6044820152606401610943565b81600d54610a0e919061253a565b341015610a525760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610943565b6005821115610ada57610a66600583612559565b600e54610a73919061253a565b82600d54610a81919061253a565b610a8b919061250e565b341015610ada5760405162461bcd60e51b815260206004820152601f60248201527f42756c6b206d696e74696e672066756e647320696e73756666696369656e74006044820152606401610943565b610ae4338361161b565b5050565b6008546001600160a01b03163314610b125760405162461bcd60e51b81526004016109439061247e565b8051610ae490600b906020840190611e81565b6008546001600160a01b03163314610b4f5760405162461bcd60e51b81526004016109439061247e565b6011805460ff1916911515919091179055565b610919838383611635565b601154839060ff1615610b925760405162461bcd60e51b81526004016109439061244f565b601054811115610bb45760405162461bcd60e51b8152600401610943906124e1565b600f5481610bc56001546000540390565b610bcf919061250e565b1115610bed5760405162461bcd60e51b8152600401610943906124b3565b60145460ff16610c385760405162461bcd60e51b815260206004820152601660248201527557686974656c697374206e6f7420656e61626c65642160501b6044820152606401610943565b6000610c43336110ea565b601254909150610c53868361250e565b1115610ca15760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610943565b84600d54610caf919061253a565b341015610cf45760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610943565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610d6e858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506013549150849050611820565b610dab5760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b6044820152606401610943565b610db5338761161b565b505050505050565b6008546001600160a01b03163314610de75760405162461bcd60e51b81526004016109439061247e565b60005b83811015610e4c57610e3a858583818110610e0757610e07612632565b9050602002016020810190610e1c9190612006565b848484818110610e2e57610e2e612632565b90506020020135611836565b80610e44816125d7565b915050610dea565b5050505050565b6008546001600160a01b03163314610e7d5760405162461bcd60e51b81526004016109439061247e565b6000610e916008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610edb576040519150601f19603f3d011682016040523d82523d6000602084013e610ee0565b606091505b5050905080610eee57600080fd5b50565b610919838383604051806020016040528060008152506112f8565b60606000610f19836110ea565b90506000816001600160401b03811115610f3557610f35612648565b604051908082528060200260200182016040528015610f5e578160200160208202803683370190505b509050600160005b8381108015610f775750600f548211155b15610fe2576000610f87836110d8565b9050866001600160a01b0316816001600160a01b03161415610fcf5782848381518110610fb657610fb6612632565b602090810291909101015281610fcb816125d7565b9250505b82610fd9816125d7565b93505050610f66565b5090949350505050565b6008546001600160a01b031633146110165760405162461bcd60e51b81526004016109439061247e565b600d55565b6008546001600160a01b031633146110455760405162461bcd60e51b81526004016109439061247e565b600e55565b600b80546110579061259c565b80601f01602080910402602001604051908101604052809291908181526020018280546110839061259c565b80156110d05780601f106110a5576101008083540402835291602001916110d0565b820191906000526020600020905b8154815290600101906020018083116110b357829003601f168201915b505050505081565b60006110e3826118c0565b5192915050565b60006001600160a01b038216611113576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b031633146111625760405162461bcd60e51b81526004016109439061247e565b61116c60006119da565b565b6008546001600160a01b031633146111985760405162461bcd60e51b81526004016109439061247e565b601355565b6008546001600160a01b031633146111c75760405162461bcd60e51b81526004016109439061247e565b8051610ae490600a906020840190611e81565b6060600380546107c99061259c565b6001600160a01b0382163314156112135760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c80546110579061259c565b6008546001600160a01b031633146112b65760405162461bcd60e51b81526004016109439061247e565b601055565b6008546001600160a01b031633146112e55760405162461bcd60e51b81526004016109439061247e565b6014805460ff1916911515919091179055565b611303848484611635565b6001600160a01b0383163b15158015611325575061132384848484611a2c565b155b15611343576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061135482611594565b6113b85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610943565b601154610100900460ff1661145957600c80546113d49061259c565b80601f01602080910402602001604051908101604052809291908181526020018280546114009061259c565b801561144d5780601f106114225761010080835404028352916020019161144d565b820191906000526020600020905b81548152906001019060200180831161143057829003601f168201915b50505050509050919050565b6000611463611b24565b9050600081511161148357604051806020016040528060008152506114b1565b8061148d84611b33565b600b6040516020016114a1939291906122f7565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146114e25760405162461bcd60e51b81526004016109439061247e565b601180549115156101000261ff0019909216919091179055565b6008546001600160a01b031633146115265760405162461bcd60e51b81526004016109439061247e565b6001600160a01b03811661158b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610943565b610eee816119da565b60008054821080156107b4575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610ae4828260405180602001604052806000815250611c30565b6000611640826118c0565b9050836001600160a01b031681600001516001600160a01b0316146116775760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806116955750611695853361071a565b806116b05750336116a58461084c565b6001600160a01b0316145b9050806116d057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166116f757604051633a954ecd60e21b815260040160405180910390fd5b611703600084876115bf565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166117d75760005482146117d757805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e4c565b60008261182d8584611c3d565b14949350505050565b601154819060ff161561185b5760405162461bcd60e51b81526004016109439061244f565b60105481111561187d5760405162461bcd60e51b8152600401610943906124e1565b600f548161188e6001546000540390565b611898919061250e565b11156118b65760405162461bcd60e51b8152600401610943906124b3565b610919838361161b565b6040805160608101825260008082526020820181905291810191909152816000548110156119c157600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906119bf5780516001600160a01b031615611956579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156119ba579392505050565b611956565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611a619033908990889088906004016123bb565b602060405180830381600087803b158015611a7b57600080fd5b505af1925050508015611aab575060408051601f3d908101601f19168201909252611aa89181019061221b565b60015b611b06573d808015611ad9576040519150601f19603f3d011682016040523d82523d6000602084013e611ade565b606091505b508051611afe576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a80546107c99061259c565b606081611b575750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b815780611b6b816125d7565b9150611b7a9050600a83612526565b9150611b5b565b6000816001600160401b03811115611b9b57611b9b612648565b6040519080825280601f01601f191660200182016040528015611bc5576020820181803683370190505b5090505b8415611b1c57611bda600183612559565b9150611be7600a866125f2565b611bf290603061250e565b60f81b818381518110611c0757611c07612632565b60200101906001600160f81b031916908160001a905350611c29600a86612526565b9450611bc9565b6109198383836001611cb1565b600081815b8451811015611ca9576000858281518110611c5f57611c5f612632565b60200260200101519050808311611c855760008381526020829052604090209250611c96565b600081815260208490526040902092505b5080611ca1816125d7565b915050611c42565b509392505050565b6000546001600160a01b038516611cda57604051622e076360e81b815260040160405180910390fd5b83611cf85760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611da957506001600160a01b0387163b15155b15611e32575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611dfa6000888480600101955088611a2c565b611e17576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611daf578260005414611e2d57600080fd5b611e78565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611e33575b50600055610e4c565b828054611e8d9061259c565b90600052602060002090601f016020900481019282611eaf5760008555611ef5565b82601f10611ec857805160ff1916838001178555611ef5565b82800160010185558215611ef5579182015b82811115611ef5578251825591602001919060010190611eda565b50611f01929150611f05565b5090565b5b80821115611f015760008155600101611f06565b60006001600160401b0380841115611f3457611f34612648565b604051601f8501601f19908116603f01168101908282118183101715611f5c57611f5c612648565b81604052809350858152868686011115611f7557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611fa657600080fd5b919050565b60008083601f840112611fbd57600080fd5b5081356001600160401b03811115611fd457600080fd5b6020830191508360208260051b8501011115611fef57600080fd5b9250929050565b80358015158114611fa657600080fd5b60006020828403121561201857600080fd5b6114b182611f8f565b6000806040838503121561203457600080fd5b61203d83611f8f565b915061204b60208401611f8f565b90509250929050565b60008060006060848603121561206957600080fd5b61207284611f8f565b925061208060208501611f8f565b9150604084013590509250925092565b600080600080608085870312156120a657600080fd5b6120af85611f8f565b93506120bd60208601611f8f565b92506040850135915060608501356001600160401b038111156120df57600080fd5b8501601f810187136120f057600080fd5b6120ff87823560208401611f1a565b91505092959194509250565b6000806040838503121561211e57600080fd5b61212783611f8f565b915061204b60208401611ff6565b6000806040838503121561214857600080fd5b61215183611f8f565b946020939093013593505050565b6000806000806040858703121561217557600080fd5b84356001600160401b038082111561218c57600080fd5b61219888838901611fab565b909650945060208701359150808211156121b157600080fd5b506121be87828801611fab565b95989497509550505050565b6000602082840312156121dc57600080fd5b6114b182611ff6565b6000602082840312156121f757600080fd5b5035919050565b60006020828403121561221057600080fd5b81356114b18161265e565b60006020828403121561222d57600080fd5b81516114b18161265e565b60006020828403121561224a57600080fd5b81356001600160401b0381111561226057600080fd5b8201601f8101841361227157600080fd5b611b1c84823560208401611f1a565b60008060006040848603121561229557600080fd5b8335925060208401356001600160401b038111156122b257600080fd5b6122be86828701611fab565b9497909650939450505050565b600081518084526122e3816020860160208601612570565b601f01601f19169290920160200192915050565b60008451602061230a8285838a01612570565b85519184019161231d8184848a01612570565b8554920191600090600181811c908083168061233a57607f831692505b85831081141561235857634e487b7160e01b85526022600452602485fd5b80801561236c576001811461237d576123aa565b60ff198516885283880195506123aa565b60008b81526020902060005b858110156123a25781548a820152908401908801612389565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123ee908301846122cb565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561243057835183529284019291840191600101612414565b50909695505050505050565b6020815260006114b160208301846122cb565b602080825260159082015274151a19481b5a5b9d1a5b99c81a5cc81c185d5cd959605a1b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b602080825260139082015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b604082015260600190565b6000821982111561252157612521612606565b500190565b6000826125355761253561261c565b500490565b600081600019048311821515161561255457612554612606565b500290565b60008282101561256b5761256b612606565b500390565b60005b8381101561258b578181015183820152602001612573565b838111156113435750506000910152565b600181811c908216806125b057607f821691505b602082108114156125d157634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125eb576125eb612606565b5060010190565b6000826126015761260161261c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610eee57600080fdfea2646970667358221220f8dec43c339380208a73587be3a5b099f2e9b79fc55b0d99936e1174c0e7580c64736f6c63430008070033697066733a2f2f516d52756953654a4437725a537a7341644e783576666668377443436455735137433363544347657a556350717a2f68696464656e2e6a736f6e0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000b697066733a2f2f78797a2f000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102515760003560e01c80635c975abb11610139578063a22cb465116100b6578063ba7d2c761161007a578063ba7d2c7614610693578063c87b56dd146106a9578063d5abeb01146106c9578063e0a80853146106df578063e985e9c5146106ff578063f2fde38b1461074857600080fd5b8063a22cb465146105fe578063a45ba8e71461061e578063b071401b14610633578063b767a09814610653578063b88d4fde1461067357600080fd5b80637cb64759116100fd5780637cb64759146105755780637ec4a659146105955780638da5cb5b146105b557806394354fd0146105d357806395d89b41146105e957600080fd5b80635c975abb146104ec5780636352211e146105065780636caede3d1461052657806370a0823114610540578063715018a61461056057600080fd5b806323b872dd116101d257806342842e0e1161019657806342842e0e1461042b578063438b63001461044b57806344a0d68a1461047857806351830227146104985780635307b750146104b75780635503a0e8146104d757600080fd5b806323b872dd146103ad578063286bc34f146103cd5780632eb4a7ab146103e05780633920c1a4146103f65780633ccfd60b1461041657600080fd5b806314f1d0a51161021957806314f1d0a51461032b57806316ba10e01461033e57806316c38b3c1461035e57806318160ddd1461037e578063215b53051461039757600080fd5b806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad578063095ea7b3146102e557806313faede614610307575b600080fd5b34801561026257600080fd5b506102766102713660046121fe565b610768565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a06107ba565b604051610282919061243c565b3480156102b957600080fd5b506102cd6102c83660046121e5565b61084c565b6040516001600160a01b039091168152602001610282565b3480156102f157600080fd5b50610305610300366004612135565b610890565b005b34801561031357600080fd5b5061031d600d5481565b604051908152602001610282565b6103056103393660046121e5565b61091e565b34801561034a57600080fd5b50610305610359366004612238565b610ae8565b34801561036a57600080fd5b506103056103793660046121ca565b610b25565b34801561038a57600080fd5b506001546000540361031d565b3480156103a357600080fd5b5061031d600e5481565b3480156103b957600080fd5b506103056103c8366004612054565b610b62565b6103056103db366004612280565b610b6d565b3480156103ec57600080fd5b5061031d60135481565b34801561040257600080fd5b5061030561041136600461215f565b610dbd565b34801561042257600080fd5b50610305610e53565b34801561043757600080fd5b50610305610446366004612054565b610ef1565b34801561045757600080fd5b5061046b610466366004612006565b610f0c565b60405161028291906123f8565b34801561048457600080fd5b506103056104933660046121e5565b610fec565b3480156104a457600080fd5b5060115461027690610100900460ff1681565b3480156104c357600080fd5b506103056104d23660046121e5565b61101b565b3480156104e357600080fd5b506102a061104a565b3480156104f857600080fd5b506011546102769060ff1681565b34801561051257600080fd5b506102cd6105213660046121e5565b6110d8565b34801561053257600080fd5b506014546102769060ff1681565b34801561054c57600080fd5b5061031d61055b366004612006565b6110ea565b34801561056c57600080fd5b50610305611138565b34801561058157600080fd5b506103056105903660046121e5565b61116e565b3480156105a157600080fd5b506103056105b0366004612238565b61119d565b3480156105c157600080fd5b506008546001600160a01b03166102cd565b3480156105df57600080fd5b5061031d60105481565b3480156105f557600080fd5b506102a06111da565b34801561060a57600080fd5b5061030561061936600461210b565b6111e9565b34801561062a57600080fd5b506102a061127f565b34801561063f57600080fd5b5061030561064e3660046121e5565b61128c565b34801561065f57600080fd5b5061030561066e3660046121ca565b6112bb565b34801561067f57600080fd5b5061030561068e366004612090565b6112f8565b34801561069f57600080fd5b5061031d60125481565b3480156106b557600080fd5b506102a06106c43660046121e5565b611349565b3480156106d557600080fd5b5061031d600f5481565b3480156106eb57600080fd5b506103056106fa3660046121ca565b6114b8565b34801561070b57600080fd5b5061027661071a366004612021565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561075457600080fd5b50610305610763366004612006565b6114fc565b60006001600160e01b031982166380ac58cd60e01b148061079957506001600160e01b03198216635b5e139f60e01b145b806107b457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107c99061259c565b80601f01602080910402602001604051908101604052809291908181526020018280546107f59061259c565b80156108425780601f1061081757610100808354040283529160200191610842565b820191906000526020600020905b81548152906001019060200180831161082557829003601f168201915b5050505050905090565b600061085782611594565b610874576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061089b826110d8565b9050806001600160a01b0316836001600160a01b031614156108d05760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108f057506108ee813361071a565b155b1561090e576040516367d9dca160e11b815260040160405180910390fd5b6109198383836115bf565b505050565b601154819060ff161561094c5760405162461bcd60e51b81526004016109439061244f565b60405180910390fd5b60105481111561096e5760405162461bcd60e51b8152600401610943906124e1565b600f548161097f6001546000540390565b610989919061250e565b11156109a75760405162461bcd60e51b8152600401610943906124b3565b6008546001600160a01b03163314610ada5760145460ff1615610a005760405162461bcd60e51b815260206004820152601160248201527057686974656c697374206f6e676f696e6760781b6044820152606401610943565b81600d54610a0e919061253a565b341015610a525760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610943565b6005821115610ada57610a66600583612559565b600e54610a73919061253a565b82600d54610a81919061253a565b610a8b919061250e565b341015610ada5760405162461bcd60e51b815260206004820152601f60248201527f42756c6b206d696e74696e672066756e647320696e73756666696369656e74006044820152606401610943565b610ae4338361161b565b5050565b6008546001600160a01b03163314610b125760405162461bcd60e51b81526004016109439061247e565b8051610ae490600b906020840190611e81565b6008546001600160a01b03163314610b4f5760405162461bcd60e51b81526004016109439061247e565b6011805460ff1916911515919091179055565b610919838383611635565b601154839060ff1615610b925760405162461bcd60e51b81526004016109439061244f565b601054811115610bb45760405162461bcd60e51b8152600401610943906124e1565b600f5481610bc56001546000540390565b610bcf919061250e565b1115610bed5760405162461bcd60e51b8152600401610943906124b3565b60145460ff16610c385760405162461bcd60e51b815260206004820152601660248201527557686974656c697374206e6f7420656e61626c65642160501b6044820152606401610943565b6000610c43336110ea565b601254909150610c53868361250e565b1115610ca15760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e4654207065722061646472657373206578636565646564000000006044820152606401610943565b84600d54610caf919061253a565b341015610cf45760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610943565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610d6e858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506013549150849050611820565b610dab5760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b6044820152606401610943565b610db5338761161b565b505050505050565b6008546001600160a01b03163314610de75760405162461bcd60e51b81526004016109439061247e565b60005b83811015610e4c57610e3a858583818110610e0757610e07612632565b9050602002016020810190610e1c9190612006565b848484818110610e2e57610e2e612632565b90506020020135611836565b80610e44816125d7565b915050610dea565b5050505050565b6008546001600160a01b03163314610e7d5760405162461bcd60e51b81526004016109439061247e565b6000610e916008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610edb576040519150601f19603f3d011682016040523d82523d6000602084013e610ee0565b606091505b5050905080610eee57600080fd5b50565b610919838383604051806020016040528060008152506112f8565b60606000610f19836110ea565b90506000816001600160401b03811115610f3557610f35612648565b604051908082528060200260200182016040528015610f5e578160200160208202803683370190505b509050600160005b8381108015610f775750600f548211155b15610fe2576000610f87836110d8565b9050866001600160a01b0316816001600160a01b03161415610fcf5782848381518110610fb657610fb6612632565b602090810291909101015281610fcb816125d7565b9250505b82610fd9816125d7565b93505050610f66565b5090949350505050565b6008546001600160a01b031633146110165760405162461bcd60e51b81526004016109439061247e565b600d55565b6008546001600160a01b031633146110455760405162461bcd60e51b81526004016109439061247e565b600e55565b600b80546110579061259c565b80601f01602080910402602001604051908101604052809291908181526020018280546110839061259c565b80156110d05780601f106110a5576101008083540402835291602001916110d0565b820191906000526020600020905b8154815290600101906020018083116110b357829003601f168201915b505050505081565b60006110e3826118c0565b5192915050565b60006001600160a01b038216611113576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b031633146111625760405162461bcd60e51b81526004016109439061247e565b61116c60006119da565b565b6008546001600160a01b031633146111985760405162461bcd60e51b81526004016109439061247e565b601355565b6008546001600160a01b031633146111c75760405162461bcd60e51b81526004016109439061247e565b8051610ae490600a906020840190611e81565b6060600380546107c99061259c565b6001600160a01b0382163314156112135760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600c80546110579061259c565b6008546001600160a01b031633146112b65760405162461bcd60e51b81526004016109439061247e565b601055565b6008546001600160a01b031633146112e55760405162461bcd60e51b81526004016109439061247e565b6014805460ff1916911515919091179055565b611303848484611635565b6001600160a01b0383163b15158015611325575061132384848484611a2c565b155b15611343576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b606061135482611594565b6113b85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610943565b601154610100900460ff1661145957600c80546113d49061259c565b80601f01602080910402602001604051908101604052809291908181526020018280546114009061259c565b801561144d5780601f106114225761010080835404028352916020019161144d565b820191906000526020600020905b81548152906001019060200180831161143057829003601f168201915b50505050509050919050565b6000611463611b24565b9050600081511161148357604051806020016040528060008152506114b1565b8061148d84611b33565b600b6040516020016114a1939291906122f7565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146114e25760405162461bcd60e51b81526004016109439061247e565b601180549115156101000261ff0019909216919091179055565b6008546001600160a01b031633146115265760405162461bcd60e51b81526004016109439061247e565b6001600160a01b03811661158b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610943565b610eee816119da565b60008054821080156107b4575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610ae4828260405180602001604052806000815250611c30565b6000611640826118c0565b9050836001600160a01b031681600001516001600160a01b0316146116775760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806116955750611695853361071a565b806116b05750336116a58461084c565b6001600160a01b0316145b9050806116d057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166116f757604051633a954ecd60e21b815260040160405180910390fd5b611703600084876115bf565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166117d75760005482146117d757805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610e4c565b60008261182d8584611c3d565b14949350505050565b601154819060ff161561185b5760405162461bcd60e51b81526004016109439061244f565b60105481111561187d5760405162461bcd60e51b8152600401610943906124e1565b600f548161188e6001546000540390565b611898919061250e565b11156118b65760405162461bcd60e51b8152600401610943906124b3565b610919838361161b565b6040805160608101825260008082526020820181905291810191909152816000548110156119c157600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906119bf5780516001600160a01b031615611956579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156119ba579392505050565b611956565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611a619033908990889088906004016123bb565b602060405180830381600087803b158015611a7b57600080fd5b505af1925050508015611aab575060408051601f3d908101601f19168201909252611aa89181019061221b565b60015b611b06573d808015611ad9576040519150601f19603f3d011682016040523d82523d6000602084013e611ade565b606091505b508051611afe576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a80546107c99061259c565b606081611b575750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b815780611b6b816125d7565b9150611b7a9050600a83612526565b9150611b5b565b6000816001600160401b03811115611b9b57611b9b612648565b6040519080825280601f01601f191660200182016040528015611bc5576020820181803683370190505b5090505b8415611b1c57611bda600183612559565b9150611be7600a866125f2565b611bf290603061250e565b60f81b818381518110611c0757611c07612632565b60200101906001600160f81b031916908160001a905350611c29600a86612526565b9450611bc9565b6109198383836001611cb1565b600081815b8451811015611ca9576000858281518110611c5f57611c5f612632565b60200260200101519050808311611c855760008381526020829052604090209250611c96565b600081815260208490526040902092505b5080611ca1816125d7565b915050611c42565b509392505050565b6000546001600160a01b038516611cda57604051622e076360e81b815260040160405180910390fd5b83611cf85760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611da957506001600160a01b0387163b15155b15611e32575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611dfa6000888480600101955088611a2c565b611e17576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611daf578260005414611e2d57600080fd5b611e78565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611e33575b50600055610e4c565b828054611e8d9061259c565b90600052602060002090601f016020900481019282611eaf5760008555611ef5565b82601f10611ec857805160ff1916838001178555611ef5565b82800160010185558215611ef5579182015b82811115611ef5578251825591602001919060010190611eda565b50611f01929150611f05565b5090565b5b80821115611f015760008155600101611f06565b60006001600160401b0380841115611f3457611f34612648565b604051601f8501601f19908116603f01168101908282118183101715611f5c57611f5c612648565b81604052809350858152868686011115611f7557600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611fa657600080fd5b919050565b60008083601f840112611fbd57600080fd5b5081356001600160401b03811115611fd457600080fd5b6020830191508360208260051b8501011115611fef57600080fd5b9250929050565b80358015158114611fa657600080fd5b60006020828403121561201857600080fd5b6114b182611f8f565b6000806040838503121561203457600080fd5b61203d83611f8f565b915061204b60208401611f8f565b90509250929050565b60008060006060848603121561206957600080fd5b61207284611f8f565b925061208060208501611f8f565b9150604084013590509250925092565b600080600080608085870312156120a657600080fd5b6120af85611f8f565b93506120bd60208601611f8f565b92506040850135915060608501356001600160401b038111156120df57600080fd5b8501601f810187136120f057600080fd5b6120ff87823560208401611f1a565b91505092959194509250565b6000806040838503121561211e57600080fd5b61212783611f8f565b915061204b60208401611ff6565b6000806040838503121561214857600080fd5b61215183611f8f565b946020939093013593505050565b6000806000806040858703121561217557600080fd5b84356001600160401b038082111561218c57600080fd5b61219888838901611fab565b909650945060208701359150808211156121b157600080fd5b506121be87828801611fab565b95989497509550505050565b6000602082840312156121dc57600080fd5b6114b182611ff6565b6000602082840312156121f757600080fd5b5035919050565b60006020828403121561221057600080fd5b81356114b18161265e565b60006020828403121561222d57600080fd5b81516114b18161265e565b60006020828403121561224a57600080fd5b81356001600160401b0381111561226057600080fd5b8201601f8101841361227157600080fd5b611b1c84823560208401611f1a565b60008060006040848603121561229557600080fd5b8335925060208401356001600160401b038111156122b257600080fd5b6122be86828701611fab565b9497909650939450505050565b600081518084526122e3816020860160208601612570565b601f01601f19169290920160200192915050565b60008451602061230a8285838a01612570565b85519184019161231d8184848a01612570565b8554920191600090600181811c908083168061233a57607f831692505b85831081141561235857634e487b7160e01b85526022600452602485fd5b80801561236c576001811461237d576123aa565b60ff198516885283880195506123aa565b60008b81526020902060005b858110156123a25781548a820152908401908801612389565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123ee908301846122cb565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561243057835183529284019291840191600101612414565b50909695505050505050565b6020815260006114b160208301846122cb565b602080825260159082015274151a19481b5a5b9d1a5b99c81a5cc81c185d5cd959605a1b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b602080825260139082015272125b9d985b1a59081b5a5b9d08185b5bdd5b9d606a1b604082015260600190565b6000821982111561252157612521612606565b500190565b6000826125355761253561261c565b500490565b600081600019048311821515161561255457612554612606565b500290565b60008282101561256b5761256b612606565b500390565b60005b8381101561258b578181015183820152602001612573565b838111156113435750506000910152565b600181811c908216806125b057607f821691505b602082108114156125d157634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125eb576125eb612606565b5060010190565b6000826126015761260161261c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610eee57600080fdfea2646970667358221220f8dec43c339380208a73587be3a5b099f2e9b79fc55b0d99936e1174c0e7580c64736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000000b697066733a2f2f78797a2f000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _uriPrefix (string): ipfs://xyz/

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [2] : 697066733a2f2f78797a2f000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

49878:5466:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24031:355;;;;;;;;;;-1:-1:-1;24031:355:0;;;;;:::i;:::-;;:::i;:::-;;;9886:14:1;;9879:22;9861:41;;9849:2;9834:18;24031:355:0;;;;;;;;27226:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28826:245::-;;;;;;;;;;-1:-1:-1;28826:245:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8547:32:1;;;8529:51;;8517:2;8502:18;28826:245:0;8383:203:1;28389:371:0;;;;;;;;;;-1:-1:-1;28389:371:0;;;;;:::i;:::-;;:::i;:::-;;50156:29;;;;;;;;;;;;;;;;;;;10059:25:1;;;10047:2;10032:18;50156:29:0;9913:177:1;51689:535:0;;;;;;:::i;:::-;;:::i;54640:106::-;;;;;;;;;;-1:-1:-1;54640:106:0;;;;;:::i;:::-;;:::i;54754:83::-;;;;;;;;;;-1:-1:-1;54754:83:0;;;;;:::i;:::-;;:::i;23280:303::-;;;;;;;;;;-1:-1:-1;23534:12:0;;23324:7;23518:13;:28;23280:303;;50192:37;;;;;;;;;;;;;;;;29814:170;;;;;;;;;;-1:-1:-1;29814:170:0;;;;;:::i;:::-;;:::i;50946:735::-;;;;;;:::i;:::-;;:::i;50432:25::-;;;;;;;;;;;;;;;;52364:222;;;;;;;;;;-1:-1:-1;52364:222:0;;;;;:::i;:::-;;:::i;54964:147::-;;;;;;;;;;;;;:::i;30055:185::-;;;;;;;;;;-1:-1:-1;30055:185:0;;;;;:::i;:::-;;:::i;52594:743::-;;;;;;;;;;-1:-1:-1;52594:743:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;54175:80::-;;;;;;;;;;-1:-1:-1;54175:80:0;;;;;:::i;:::-;;:::i;50353:28::-;;;;;;;;;;-1:-1:-1;50353:28:0;;;;;;;;;;;54263:88;;;;;;;;;;-1:-1:-1;54263:88:0;;;;;:::i;:::-;;:::i;49999:33::-;;;;;;;;;;;;;:::i;50320:26::-;;;;;;;;;;-1:-1:-1;50320:26:0;;;;;;;;27034:125;;;;;;;;;;-1:-1:-1;27034:125:0;;;;;:::i;:::-;;:::i;50464:40::-;;;;;;;;;;-1:-1:-1;50464:40:0;;;;;;;;24450:206;;;;;;;;;;-1:-1:-1;24450:206:0;;;;;:::i;:::-;;:::i;44072:103::-;;;;;;;;;;;;;:::i;55237:104::-;;;;;;;;;;-1:-1:-1;55237:104:0;;;;;:::i;:::-;;:::i;54526:106::-;;;;;;;;;;-1:-1:-1;54526:106:0;;;;;:::i;:::-;;:::i;43421:87::-;;;;;;;;;;-1:-1:-1;43494:6:0;;-1:-1:-1;;;;;43494:6:0;43421:87;;50275:38;;;;;;;;;;;;;;;;27395:104;;;;;;;;;;;;;:::i;29143:319::-;;;;;;;;;;-1:-1:-1;29143:319:0;;;;;:::i;:::-;;:::i;50039:110::-;;;;;;;;;;;;;:::i;54359:159::-;;;;;;;;;;-1:-1:-1;54359:159:0;;;;;:::i;:::-;;:::i;54845:111::-;;;;;;;;;;-1:-1:-1;54845:111:0;;;;;:::i;:::-;;:::i;30311:406::-;;;;;;;;;;-1:-1:-1;30311:406:0;;;;;:::i;:::-;;:::i;50388:37::-;;;;;;;;;;;;;;;;53345:727;;;;;;;;;;-1:-1:-1;53345:727:0;;;;;:::i;:::-;;:::i;50236:32::-;;;;;;;;;;;;;;;;54080:87;;;;;;;;;;-1:-1:-1;54080:87:0;;;;;:::i;:::-;;:::i;29533:214::-;;;;;;;;;;-1:-1:-1;29533:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;29704:25:0;;;29675:4;29704:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29533:214;44330:238;;;;;;;;;;-1:-1:-1;44330:238:0;;;;;:::i;:::-;;:::i;24031:355::-;24178:4;-1:-1:-1;;;;;;24220:40:0;;-1:-1:-1;;;24220:40:0;;:105;;-1:-1:-1;;;;;;;24277:48:0;;-1:-1:-1;;;24277:48:0;24220:105;:158;;;-1:-1:-1;;;;;;;;;;19790:40:0;;;24342:36;24200:178;24031:355;-1:-1:-1;;24031:355:0:o;27226:100::-;27280:13;27313:5;27306:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27226:100;:::o;28826:245::-;28930:7;28960:16;28968:7;28960;:16::i;:::-;28955:64;;28985:34;;-1:-1:-1;;;28985:34:0;;;;;;;;;;;28955:64;-1:-1:-1;29039:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29039:24:0;;28826:245::o;28389:371::-;28462:13;28478:24;28494:7;28478:15;:24::i;:::-;28462:40;;28523:5;-1:-1:-1;;;;;28517:11:0;:2;-1:-1:-1;;;;;28517:11:0;;28513:48;;;28537:24;;-1:-1:-1;;;28537:24:0;;;;;;;;;;;28513:48;16728:10;-1:-1:-1;;;;;28578:21:0;;;;;;:63;;-1:-1:-1;28604:37:0;28621:5;16728:10;29533:214;:::i;28604:37::-;28603:38;28578:63;28574:138;;;28665:35;;-1:-1:-1;;;28665:35:0;;;;;;;;;;;28574:138;28724:28;28733:2;28737:7;28746:5;28724:8;:28::i;:::-;28451:309;28389:371;;:::o;51689:535::-;50689:6;;51786:11;;50689:6;;50688:7;50680:41;;;;-1:-1:-1;;;50680:41:0;;;;;;;:::i;:::-;;;;;;;;;50755:18;;50740:11;:33;;50732:65;;;;-1:-1:-1;;;50732:65:0;;;;;;;:::i;:::-;50861:9;;50846:11;50830:13;23534:12;;23324:7;23518:13;:28;;23280:303;50830:13;:27;;;;:::i;:::-;:40;;50808:110;;;;-1:-1:-1;;;50808:110:0;;;;;;;:::i;:::-;43494:6;;-1:-1:-1;;;;;43494:6:0;51819:10:::1;:21;51815:357;;51866:20;::::0;::::1;;51865:21;51857:51;;;::::0;-1:-1:-1;;;51857:51:0;;13462:2:1;51857:51:0::1;::::0;::::1;13444:21:1::0;13501:2;13481:18;;;13474:30;-1:-1:-1;;;13520:18:1;;;13513:47;13577:18;;51857:51:0::1;13260:341:1::0;51857:51:0::1;51951:11;51944:4;;:18;;;;:::i;:::-;51931:9;:31;;51923:62;;;::::0;-1:-1:-1;;;51923:62:0;;11628:2:1;51923:62:0::1;::::0;::::1;11610:21:1::0;11667:2;11647:18;;;11640:30;-1:-1:-1;;;11686:18:1;;;11679:48;11744:18;;51923:62:0::1;11426:342:1::0;51923:62:0::1;52015:1;52003:11;:13;52000:161;;;52092:15;52106:1;52092:11:::0;:15:::1;:::i;:::-;52080:8;;:28;;;;:::i;:::-;52066:11;52059:4;;:18;;;;:::i;:::-;:49;;;;:::i;:::-;52045:9;:64;;52037:108;;;::::0;-1:-1:-1;;;52037:108:0;;13102:2:1;52037:108:0::1;::::0;::::1;13084:21:1::0;13141:2;13121:18;;;13114:30;13180:33;13160:18;;;13153:61;13231:18;;52037:108:0::1;12900:355:1::0;52037:108:0::1;52182:34;52192:10;52204:11;52182:9;:34::i;:::-;51689:535:::0;;:::o;54640:106::-;43494:6;;-1:-1:-1;;;;;43494:6:0;16728:10;43641:23;43633:68;;;;-1:-1:-1;;;43633:68:0;;;;;;;:::i;:::-;54716:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;54754:83::-:0;43494:6;;-1:-1:-1;;;;;43494:6:0;16728:10;43641:23;43633:68;;;;-1:-1:-1;;;43633:68:0;;;;;;;:::i;:::-;54814:6:::1;:15:::0;;-1:-1:-1;;54814:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;54754:83::o;29814:170::-;29948:28;29958:4;29964:2;29968:7;29948:9;:28::i;50946:735::-;50689:6;;51083:11;;50689:6;;50688:7;50680:41;;;;-1:-1:-1;;;50680:41:0;;;;;;;:::i;:::-;50755:18;;50740:11;:33;;50732:65;;;;-1:-1:-1;;;50732:65:0;;;;;;;:::i;:::-;50861:9;;50846:11;50830:13;23534:12;;23324:7;23518:13;:28;;23280:303;50830:13;:27;;;;:::i;:::-;:40;;50808:110;;;;-1:-1:-1;;;50808:110:0;;;;;;;:::i;:::-;51115:20:::1;::::0;::::1;;51107:55;;;::::0;-1:-1:-1;;;51107:55:0;;13808:2:1;51107:55:0::1;::::0;::::1;13790:21:1::0;13847:2;13827:18;;;13820:30;-1:-1:-1;;;13866:18:1;;;13859:52;13928:18;;51107:55:0::1;13606:346:1::0;51107:55:0::1;51173:23;51199:21;51209:10;51199:9;:21::i;:::-;51286:18;::::0;51173:47;;-1:-1:-1;51253:29:0::1;51271:11:::0;51173:47;51253:29:::1;:::i;:::-;:51;;51231:129;;;::::0;-1:-1:-1;;;51231:129:0;;11271:2:1;51231:129:0::1;::::0;::::1;11253:21:1::0;11310:2;11290:18;;;11283:30;11349;11329:18;;;11322:58;11397:18;;51231:129:0::1;11069:352:1::0;51231:129:0::1;51399:11;51392:4;;:18;;;;:::i;:::-;51379:9;:31;;51371:63;;;::::0;-1:-1:-1;;;51371:63:0;;14856:2:1;51371:63:0::1;::::0;::::1;14838:21:1::0;14895:2;14875:18;;;14868:30;-1:-1:-1;;;14914:18:1;;;14907:49;14973:18;;51371:63:0::1;14654:343:1::0;51371:63:0::1;51470:30;::::0;-1:-1:-1;;16728:10:0;6556:2:1;6552:15;6548:53;51470:30:0::1;::::0;::::1;6536:66:1::0;51445:12:0::1;::::0;6618::1;;51470:30:0::1;;;;;;;;;;;;51460:41;;;;;;51445:56;;51534:50;51553:12;;51534:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;51567:10:0::1;::::0;;-1:-1:-1;51579:4:0;;-1:-1:-1;51534:18:0::1;:50::i;:::-;51512:114;;;::::0;-1:-1:-1;;;51512:114:0;;10521:2:1;51512:114:0::1;::::0;::::1;10503:21:1::0;10560:2;10540:18;;;10533:30;-1:-1:-1;;;10579:18:1;;;10572:44;10633:18;;51512:114:0::1;10319:338:1::0;51512:114:0::1;51637:36;16728:10:::0;51661:11:::1;51637:9;:36::i;:::-;51096:585;;50946:735:::0;;;;:::o;52364:222::-;43494:6;;-1:-1:-1;;;;;43494:6:0;16728:10;43641:23;43633:68;;;;-1:-1:-1;;;43633:68:0;;;;;;;:::i;:::-;52479:9:::1;52474:105;52494:17:::0;;::::1;52474:105;;;52533:34;52540:6;;52547:1;52540:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;52551:12;;52564:1;52551:15;;;;;;;:::i;:::-;;;;;;;52533:6;:34::i;:::-;52513:3:::0;::::1;::::0;::::1;:::i;:::-;;;;52474:105;;;;52364:222:::0;;;;:::o;54964:147::-;43494:6;;-1:-1:-1;;;;;43494:6:0;16728:10;43641:23;43633:68;;;;-1:-1:-1;;;43633:68:0;;;;;;;:::i;:::-;55013:7:::1;55034;43494:6:::0;;-1:-1:-1;;;;;43494:6:0;;43421:87;55034:7:::1;-1:-1:-1::0;;;;;55026:21:0::1;55055;55026:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55012:69;;;55100:2;55092:11;;;::::0;::::1;;55001:110;54964:147::o:0;30055:185::-;30193:39;30210:4;30216:2;30220:7;30193:39;;;;;;;;;;;;:16;:39::i;52594:743::-;52681:16;52715:23;52741:17;52751:6;52741:9;:17::i;:::-;52715:43;;52769:30;52816:15;-1:-1:-1;;;;;52802:30:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52802:30:0;-1:-1:-1;52769:63:0;-1:-1:-1;52868:1:0;52843:22;52920:377;52959:15;52941;:33;:64;;;;;52996:9;;52978:14;:27;;52941:64;52920:377;;;53032:25;53060:23;53068:14;53060:7;:23::i;:::-;53032:51;;53125:6;-1:-1:-1;;;;;53104:27:0;:17;-1:-1:-1;;;;;53104:27:0;;53100:153;;;53185:14;53152:13;53166:15;53152:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;53220:17;;;;:::i;:::-;;;;53100:153;53269:16;;;;:::i;:::-;;;;53017:280;52920:377;;;-1:-1:-1;53316:13:0;;52594:743;-1:-1:-1;;;;52594:743:0:o;54175:80::-;43494:6;;-1:-1:-1;;;;;43494:6:0;16728:10;43641:23;43633:68;;;;-1:-1:-1;;;43633:68:0;;;;;;;:::i;:::-;54235:4:::1;:12:::0;54175:80::o;54263:88::-;43494:6;;-1:-1:-1;;;;;43494:6:0;16728:10;43641:23;43633:68;;;;-1:-1:-1;;;43633:68:0;;;;;;;:::i;:::-;54327:8:::1;:16:::0;54263:88::o;49999:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27034:125::-;27098:7;27125:21;27138:7;27125:12;:21::i;:::-;:26;;27034:125;-1:-1:-1;;27034:125:0:o;24450:206::-;24514:7;-1:-1:-1;;;;;24538:19:0;;24534:60;;24566:28;;-1:-1:-1;;;24566:28:0;;;;;;;;;;;24534:60;-1:-1:-1;;;;;;24620:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;24620:27:0;;24450:206::o;44072:103::-;43494:6;;-1:-1:-1;;;;;43494:6:0;16728:10;43641:23;43633:68;;;;-1:-1:-1;;;43633:68:0;;;;;;;:::i;:::-;44137:30:::1;44164:1;44137:18;:30::i;:::-;44072:103::o:0;55237:104::-;43494:6;;-1:-1:-1;;;;;43494:6:0;16728:10;43641:23;43633:68;;;;-1:-1:-1;;;43633:68:0;;;;;;;:::i;:::-;55309:10:::1;:24:::0;55237:104::o;54526:106::-;43494:6;;-1:-1:-1;;;;;43494:6:0;16728:10;43641:23;43633:68;;;;-1:-1:-1;;;43633:68:0;;;;;;;:::i;:::-;54602:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;27395:104::-:0;27451:13;27484:7;27477:14;;;;;:::i;29143:319::-;-1:-1:-1;;;;;29274:24:0;;16728:10;29274:24;29270:54;;;29307:17;;-1:-1:-1;;;29307:17:0;;;;;;;;;;;29270:54;16728:10;29337:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29337:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29337:53:0;;;;;;;;;;29406:48;;9861:41:1;;;29337:42:0;;16728:10;29406:48;;9834:18:1;29406:48:0;;;;;;;29143:319;;:::o;50039:110::-;;;;;;;:::i;54359:159::-;43494:6;;-1:-1:-1;;;;;43494:6:0;16728:10;43641:23;43633:68;;;;-1:-1:-1;;;43633:68:0;;;;;;;:::i;:::-;54470:18:::1;:40:::0;54359:159::o;54845:111::-;43494:6;;-1:-1:-1;;;;;43494:6:0;16728:10;43641:23;43633:68;;;;-1:-1:-1;;;43633:68:0;;;;;;;:::i;:::-;54919:20:::1;:29:::0;;-1:-1:-1;;54919:29:0::1;::::0;::::1;;::::0;;;::::1;::::0;;54845:111::o;30311:406::-;30478:28;30488:4;30494:2;30498:7;30478:9;:28::i;:::-;-1:-1:-1;;;;;30535:13:0;;8639:19;:23;;30535:89;;;;;30568:56;30599:4;30605:2;30609:7;30618:5;30568:30;:56::i;:::-;30567:57;30535:89;30517:193;;;30658:40;;-1:-1:-1;;;30658:40:0;;;;;;;;;;;30517:193;30311:406;;;;:::o;53345:727::-;53464:13;53517:17;53525:8;53517:7;:17::i;:::-;53495:114;;;;-1:-1:-1;;;53495:114:0;;12686:2:1;53495:114:0;;;12668:21:1;12725:2;12705:18;;;12698:30;12764:34;12744:18;;;12737:62;-1:-1:-1;;;12815:18:1;;;12808:45;12870:19;;53495:114:0;12484:411:1;53495:114:0;53626:8;;;;;;;53622:74;;53667:17;53660:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53345:727;;;:::o;53622:74::-;53708:28;53739:10;:8;:10::i;:::-;53708:41;;53811:1;53786:14;53780:28;:32;:284;;;;;;;;;;;;;;;;;53904:14;53945:19;:8;:17;:19::i;:::-;53991:9;53861:162;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53780:284;53760:304;53345:727;-1:-1:-1;;;53345:727:0:o;54080:87::-;43494:6;;-1:-1:-1;;;;;43494:6:0;16728:10;43641:23;43633:68;;;;-1:-1:-1;;;43633:68:0;;;;;;;:::i;:::-;54142:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;54142:17:0;;::::1;::::0;;;::::1;::::0;;54080:87::o;44330:238::-;43494:6;;-1:-1:-1;;;;;43494:6:0;16728:10;43641:23;43633:68;;;;-1:-1:-1;;;43633:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44433:22:0;::::1;44411:110;;;::::0;-1:-1:-1;;;44411:110:0;;10864:2:1;44411:110:0::1;::::0;::::1;10846:21:1::0;10903:2;10883:18;;;10876:30;10942:34;10922:18;;;10915:62;-1:-1:-1;;;10993:18:1;;;10986:36;11039:19;;44411:110:0::1;10662:402:1::0;44411:110:0::1;44532:28;44551:8;44532:18;:28::i;30972:213::-:0;31029:4;31119:13;;31109:7;:23;31066:111;;;;-1:-1:-1;;31150:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;31150:27:0;;;;31149:28;;30972:213::o;39359:196::-;39474:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39474:29:0;-1:-1:-1;;;;;39474:29:0;;;;;;;;;39519:28;;39474:24;;39519:28;;;;;;;39359:196;;;:::o;31193:104::-;31262:27;31272:2;31276:8;31262:27;;;;;;;;;;;;:9;:27::i;34302:2130::-;34417:35;34455:21;34468:7;34455:12;:21::i;:::-;34417:59;;34515:4;-1:-1:-1;;;;;34493:26:0;:13;:18;;;-1:-1:-1;;;;;34493:26:0;;34489:67;;34528:28;;-1:-1:-1;;;34528:28:0;;;;;;;;;;;34489:67;34569:22;16728:10;-1:-1:-1;;;;;34595:20:0;;;;:73;;-1:-1:-1;34632:36:0;34649:4;16728:10;29533:214;:::i;34632:36::-;34595:126;;;-1:-1:-1;16728:10:0;34685:20;34697:7;34685:11;:20::i;:::-;-1:-1:-1;;;;;34685:36:0;;34595:126;34569:153;;34740:17;34735:66;;34766:35;;-1:-1:-1;;;34766:35:0;;;;;;;;;;;34735:66;-1:-1:-1;;;;;34816:16:0;;34812:52;;34841:23;;-1:-1:-1;;;34841:23:0;;;;;;;;;;;34812:52;34985:35;35002:1;35006:7;35015:4;34985:8;:35::i;:::-;-1:-1:-1;;;;;35316:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;35316:31:0;;;-1:-1:-1;;;;;35316:31:0;;;-1:-1:-1;;35316:31:0;;;;;;;35362:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;35362:29:0;;;;;;;;;;;35442:20;;;:11;:20;;;;;;35477:18;;-1:-1:-1;;;;;;35510:49:0;;;;-1:-1:-1;;;35543:15:0;35510:49;;;;;;;;;;35833:11;;35893:24;;;;;35936:13;;35442:20;;35893:24;;35936:13;35932:384;;36146:13;;36131:11;:28;36127:174;;36184:20;;36253:28;;;;-1:-1:-1;;;;;36227:54:0;-1:-1:-1;;;36227:54:0;-1:-1:-1;;;;;;36227:54:0;;;-1:-1:-1;;;;;36184:20:0;;36227:54;;;;36127:174;35291:1036;;;36363:7;36359:2;-1:-1:-1;;;;;36344:27:0;36353:4;-1:-1:-1;;;;;36344:27:0;;;;;;;;;;;36382:42;30311:406;45688:190;45813:4;45866;45837:25;45850:5;45857:4;45837:12;:25::i;:::-;:33;;45688:190;-1:-1:-1;;;;45688:190:0:o;52232:124::-;50689:6;;52303:7;;50689:6;;50688:7;50680:41;;;;-1:-1:-1;;;50680:41:0;;;;;;;:::i;:::-;50755:18;;50740:11;:33;;50732:65;;;;-1:-1:-1;;;50732:65:0;;;;;;;:::i;:::-;50861:9;;50846:11;50830:13;23534:12;;23324:7;23518:13;:28;;23280:303;50830:13;:27;;;;:::i;:::-;:40;;50808:110;;;;-1:-1:-1;;;50808:110:0;;;;;;;:::i;:::-;52323:25:::1;52333:5;52340:7;52323:9;:25::i;25831:1141::-:0;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;25974:7:0;26057:13;;26050:4;:20;26019:886;;;26091:31;26125:17;;;:11;:17;;;;;;;;;26091:51;;;;;;;;;-1:-1:-1;;;;;26091:51:0;;;;-1:-1:-1;;;26091:51:0;;-1:-1:-1;;;;;26091:51:0;;;;;;;;-1:-1:-1;;;26091:51:0;;;;;;;;;;;;;;26161:729;;26211:14;;-1:-1:-1;;;;;26211:28:0;;26207:101;;26275:9;25831:1141;-1:-1:-1;;;25831:1141:0:o;26207:101::-;-1:-1:-1;;;26650:6:0;26695:17;;;;:11;:17;;;;;;;;;26683:29;;;;;;;;;-1:-1:-1;;;;;26683:29:0;;;;;-1:-1:-1;;;26683:29:0;;-1:-1:-1;;;;;26683:29:0;;;;;;;;-1:-1:-1;;;26683:29:0;;;;;;;;;;;;;26743:28;26739:109;;26811:9;25831:1141;-1:-1:-1;;;25831:1141:0:o;26739:109::-;26610:261;;;26072:833;26019:886;26933:31;;-1:-1:-1;;;26933:31:0;;;;;;;;;;;44728:191;44821:6;;;-1:-1:-1;;;;;44838:17:0;;;-1:-1:-1;;;;;;44838:17:0;;;;;;;44871:40;;44821:6;;;44838:17;44821:6;;44871:40;;44802:16;;44871:40;44791:128;44728:191;:::o;40047:772::-;40244:155;;-1:-1:-1;;;40244:155:0;;40210:4;;-1:-1:-1;;;;;40244:36:0;;;;;:155;;16728:10;;40330:4;;40353:7;;40379:5;;40244:155;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40244:155:0;;;;;;;;-1:-1:-1;;40244:155:0;;;;;;;;;;;;:::i;:::-;;;40227:585;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40570:13:0;;40566:235;;40616:40;;-1:-1:-1;;;40616:40:0;;;;;;;;;;;40566:235;40759:6;40753:13;40744:6;40740:2;40736:15;40729:38;40227:585;-1:-1:-1;;;;;;40455:55:0;-1:-1:-1;;;40455:55:0;;-1:-1:-1;40227:585:0;40047:772;;;;;;:::o;55119:110::-;55179:13;55212:9;55205:16;;;;;:::i;17115:723::-;17171:13;17392:10;17388:53;;-1:-1:-1;;17419:10:0;;;;;;;;;;;;-1:-1:-1;;;17419:10:0;;;;;17115:723::o;17388:53::-;17466:5;17451:12;17507:78;17514:9;;17507:78;;17540:8;;;;:::i;:::-;;-1:-1:-1;17563:10:0;;-1:-1:-1;17571:2:0;17563:10;;:::i;:::-;;;17507:78;;;17595:19;17627:6;-1:-1:-1;;;;;17617:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17617:17:0;;17595:39;;17645:154;17652:10;;17645:154;;17679:11;17689:1;17679:11;;:::i;:::-;;-1:-1:-1;17748:10:0;17756:2;17748:5;:10;:::i;:::-;17735:24;;:2;:24;:::i;:::-;17722:39;;17705:6;17712;17705:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;17705:56:0;;;;;;;;-1:-1:-1;17776:11:0;17785:2;17776:11;;:::i;:::-;;;17645:154;;31660:163;31783:32;31789:2;31793:8;31803:5;31810:4;31783:5;:32::i;46240:707::-;46350:7;46398:4;46350:7;46413:497;46437:5;:12;46433:1;:16;46413:497;;;46471:20;46494:5;46500:1;46494:8;;;;;;;;:::i;:::-;;;;;;;46471:31;;46537:12;46521;:28;46517:382;;47050:13;47105:15;;;47141:4;47134:15;;;47188:4;47172:21;;46649:57;;46517:382;;;47050:13;47105:15;;;47141:4;47134:15;;;47188:4;47172:21;;46826:57;;46517:382;-1:-1:-1;46451:3:0;;;;:::i;:::-;;;;46413:497;;;-1:-1:-1;46927:12:0;46240:707;-1:-1:-1;;;46240:707:0:o;32082:1966::-;32221:20;32244:13;-1:-1:-1;;;;;32272:16:0;;32268:48;;32297:19;;-1:-1:-1;;;32297:19:0;;;;;;;;;;;32268:48;32331:13;32327:44;;32353:18;;-1:-1:-1;;;32353:18:0;;;;;;;;;;;32327:44;-1:-1:-1;;;;;32722:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;32781:49:0;;-1:-1:-1;;;;;32722:44:0;;;;;;;32781:49;;;;-1:-1:-1;;32722:44:0;;;;;;32781:49;;;;;;;;;;;;;;;;32847:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;32897:66:0;;;;-1:-1:-1;;;32947:15:0;32897:66;;;;;;;;;;32847:25;33044:23;;;33088:4;:23;;;;-1:-1:-1;;;;;;33096:13:0;;8639:19;:23;;33096:15;33084:832;;;33132:505;33163:38;;33188:12;;-1:-1:-1;;;;;33163:38:0;;;33180:1;;33163:38;;33180:1;;33163:38;33255:212;33324:1;33357:2;33390:14;;;;;;33435:5;33255:30;:212::i;:::-;33224:365;;33525:40;;-1:-1:-1;;;33525:40:0;;;;;;;;;;;33224:365;33632:3;33616:12;:19;;33132:505;;33718:12;33701:13;;:29;33697:43;;33732:8;;;33697:43;33084:832;;;33781:120;33812:40;;33837:14;;;;;-1:-1:-1;;;;;33812:40:0;;;33829:1;;33812:40;;33829:1;;33812:40;33896:3;33880:12;:19;;33781:120;;33084:832;-1:-1:-1;33930:13:0;:28;33980:60;30311:406;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;-1:-1:-1;;;;;149:2:1;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:367::-;891:8;901:6;955:3;948:4;940:6;936:17;932:27;922:55;;973:1;970;963:12;922:55;-1:-1:-1;996:20:1;;-1:-1:-1;;;;;1028:30:1;;1025:50;;;1071:1;1068;1061:12;1025:50;1108:4;1100:6;1096:17;1084:29;;1168:3;1161:4;1151:6;1148:1;1144:14;1136:6;1132:27;1128:38;1125:47;1122:67;;;1185:1;1182;1175:12;1122:67;828:367;;;;;:::o;1200:160::-;1265:20;;1321:13;;1314:21;1304:32;;1294:60;;1350:1;1347;1340:12;1365:186;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;1516:29;1535:9;1516:29;:::i;1556:260::-;1624:6;1632;1685:2;1673:9;1664:7;1660:23;1656:32;1653:52;;;1701:1;1698;1691:12;1653:52;1724:29;1743:9;1724:29;:::i;:::-;1714:39;;1772:38;1806:2;1795:9;1791:18;1772:38;:::i;:::-;1762:48;;1556:260;;;;;:::o;1821:328::-;1898:6;1906;1914;1967:2;1955:9;1946:7;1942:23;1938:32;1935:52;;;1983:1;1980;1973:12;1935:52;2006:29;2025:9;2006:29;:::i;:::-;1996:39;;2054:38;2088:2;2077:9;2073:18;2054:38;:::i;:::-;2044:48;;2139:2;2128:9;2124:18;2111:32;2101:42;;1821:328;;;;;:::o;2154:666::-;2249:6;2257;2265;2273;2326:3;2314:9;2305:7;2301:23;2297:33;2294:53;;;2343:1;2340;2333:12;2294:53;2366:29;2385:9;2366:29;:::i;:::-;2356:39;;2414:38;2448:2;2437:9;2433:18;2414:38;:::i;:::-;2404:48;;2499:2;2488:9;2484:18;2471:32;2461:42;;2554:2;2543:9;2539:18;2526:32;-1:-1:-1;;;;;2573:6:1;2570:30;2567:50;;;2613:1;2610;2603:12;2567:50;2636:22;;2689:4;2681:13;;2677:27;-1:-1:-1;2667:55:1;;2718:1;2715;2708:12;2667:55;2741:73;2806:7;2801:2;2788:16;2783:2;2779;2775:11;2741:73;:::i;:::-;2731:83;;;2154:666;;;;;;;:::o;2825:254::-;2890:6;2898;2951:2;2939:9;2930:7;2926:23;2922:32;2919:52;;;2967:1;2964;2957:12;2919:52;2990:29;3009:9;2990:29;:::i;:::-;2980:39;;3038:35;3069:2;3058:9;3054:18;3038:35;:::i;3084:254::-;3152:6;3160;3213:2;3201:9;3192:7;3188:23;3184:32;3181:52;;;3229:1;3226;3219:12;3181:52;3252:29;3271:9;3252:29;:::i;:::-;3242:39;3328:2;3313:18;;;;3300:32;;-1:-1:-1;;;3084:254:1:o;3343:773::-;3465:6;3473;3481;3489;3542:2;3530:9;3521:7;3517:23;3513:32;3510:52;;;3558:1;3555;3548:12;3510:52;3598:9;3585:23;-1:-1:-1;;;;;3668:2:1;3660:6;3657:14;3654:34;;;3684:1;3681;3674:12;3654:34;3723:70;3785:7;3776:6;3765:9;3761:22;3723:70;:::i;:::-;3812:8;;-1:-1:-1;3697:96:1;-1:-1:-1;3900:2:1;3885:18;;3872:32;;-1:-1:-1;3916:16:1;;;3913:36;;;3945:1;3942;3935:12;3913:36;;3984:72;4048:7;4037:8;4026:9;4022:24;3984:72;:::i;:::-;3343:773;;;;-1:-1:-1;4075:8:1;-1:-1:-1;;;;3343:773:1:o;4121:180::-;4177:6;4230:2;4218:9;4209:7;4205:23;4201:32;4198:52;;;4246:1;4243;4236:12;4198:52;4269:26;4285:9;4269:26;:::i;4306:180::-;4365:6;4418:2;4406:9;4397:7;4393:23;4389:32;4386:52;;;4434:1;4431;4424:12;4386:52;-1:-1:-1;4457:23:1;;4306:180;-1:-1:-1;4306:180:1:o;4491:245::-;4549:6;4602:2;4590:9;4581:7;4577:23;4573:32;4570:52;;;4618:1;4615;4608:12;4570:52;4657:9;4644:23;4676:30;4700:5;4676:30;:::i;4741:249::-;4810:6;4863:2;4851:9;4842:7;4838:23;4834:32;4831:52;;;4879:1;4876;4869:12;4831:52;4911:9;4905:16;4930:30;4954:5;4930:30;:::i;4995:450::-;5064:6;5117:2;5105:9;5096:7;5092:23;5088:32;5085:52;;;5133:1;5130;5123:12;5085:52;5173:9;5160:23;-1:-1:-1;;;;;5198:6:1;5195:30;5192:50;;;5238:1;5235;5228:12;5192:50;5261:22;;5314:4;5306:13;;5302:27;-1:-1:-1;5292:55:1;;5343:1;5340;5333:12;5292:55;5366:73;5431:7;5426:2;5413:16;5408:2;5404;5400:11;5366:73;:::i;5635:505::-;5730:6;5738;5746;5799:2;5787:9;5778:7;5774:23;5770:32;5767:52;;;5815:1;5812;5805:12;5767:52;5851:9;5838:23;5828:33;;5912:2;5901:9;5897:18;5884:32;-1:-1:-1;;;;;5931:6:1;5928:30;5925:50;;;5971:1;5968;5961:12;5925:50;6010:70;6072:7;6063:6;6052:9;6048:22;6010:70;:::i;:::-;5635:505;;6099:8;;-1:-1:-1;5984:96:1;;-1:-1:-1;;;;5635:505:1:o;6145:257::-;6186:3;6224:5;6218:12;6251:6;6246:3;6239:19;6267:63;6323:6;6316:4;6311:3;6307:14;6300:4;6293:5;6289:16;6267:63;:::i;:::-;6384:2;6363:15;-1:-1:-1;;6359:29:1;6350:39;;;;6391:4;6346:50;;6145:257;-1:-1:-1;;6145:257:1:o;6641:1527::-;6865:3;6903:6;6897:13;6929:4;6942:51;6986:6;6981:3;6976:2;6968:6;6964:15;6942:51;:::i;:::-;7056:13;;7015:16;;;;7078:55;7056:13;7015:16;7100:15;;;7078:55;:::i;:::-;7222:13;;7155:20;;;7195:1;;7282;7304:18;;;;7357;;;;7384:93;;7462:4;7452:8;7448:19;7436:31;;7384:93;7525:2;7515:8;7512:16;7492:18;7489:40;7486:167;;;-1:-1:-1;;;7552:33:1;;7608:4;7605:1;7598:15;7638:4;7559:3;7626:17;7486:167;7669:18;7696:110;;;;7820:1;7815:328;;;;7662:481;;7696:110;-1:-1:-1;;7731:24:1;;7717:39;;7776:20;;;;-1:-1:-1;7696:110:1;;7815:328;15257:1;15250:14;;;15294:4;15281:18;;7910:1;7924:169;7938:8;7935:1;7932:15;7924:169;;;8020:14;;8005:13;;;7998:37;8063:16;;;;7955:10;;7924:169;;;7928:3;;8124:8;8117:5;8113:20;8106:27;;7662:481;-1:-1:-1;8159:3:1;;6641:1527;-1:-1:-1;;;;;;;;;;;6641:1527:1:o;8591:488::-;-1:-1:-1;;;;;8860:15:1;;;8842:34;;8912:15;;8907:2;8892:18;;8885:43;8959:2;8944:18;;8937:34;;;9007:3;9002:2;8987:18;;8980:31;;;8785:4;;9028:45;;9053:19;;9045:6;9028:45;:::i;:::-;9020:53;8591:488;-1:-1:-1;;;;;;8591:488:1:o;9084:632::-;9255:2;9307:21;;;9377:13;;9280:18;;;9399:22;;;9226:4;;9255:2;9478:15;;;;9452:2;9437:18;;;9226:4;9521:169;9535:6;9532:1;9529:13;9521:169;;;9596:13;;9584:26;;9665:15;;;;9630:12;;;;9557:1;9550:9;9521:169;;;-1:-1:-1;9707:3:1;;9084:632;-1:-1:-1;;;;;;9084:632:1:o;10095:219::-;10244:2;10233:9;10226:21;10207:4;10264:44;10304:2;10293:9;10289:18;10281:6;10264:44;:::i;11773:345::-;11975:2;11957:21;;;12014:2;11994:18;;;11987:30;-1:-1:-1;;;12048:2:1;12033:18;;12026:51;12109:2;12094:18;;11773:345::o;12123:356::-;12325:2;12307:21;;;12344:18;;;12337:30;12403:34;12398:2;12383:18;;12376:62;12470:2;12455:18;;12123:356::o;13957:344::-;14159:2;14141:21;;;14198:2;14178:18;;;14171:30;-1:-1:-1;;;14232:2:1;14217:18;;14210:50;14292:2;14277:18;;13957:344::o;14306:343::-;14508:2;14490:21;;;14547:2;14527:18;;;14520:30;-1:-1:-1;;;14581:2:1;14566:18;;14559:49;14640:2;14625:18;;14306:343::o;15310:128::-;15350:3;15381:1;15377:6;15374:1;15371:13;15368:39;;;15387:18;;:::i;:::-;-1:-1:-1;15423:9:1;;15310:128::o;15443:120::-;15483:1;15509;15499:35;;15514:18;;:::i;:::-;-1:-1:-1;15548:9:1;;15443:120::o;15568:168::-;15608:7;15674:1;15670;15666:6;15662:14;15659:1;15656:21;15651:1;15644:9;15637:17;15633:45;15630:71;;;15681:18;;:::i;:::-;-1:-1:-1;15721:9:1;;15568:168::o;15741:125::-;15781:4;15809:1;15806;15803:8;15800:34;;;15814:18;;:::i;:::-;-1:-1:-1;15851:9:1;;15741:125::o;15871:258::-;15943:1;15953:113;15967:6;15964:1;15961:13;15953:113;;;16043:11;;;16037:18;16024:11;;;16017:39;15989:2;15982:10;15953:113;;;16084:6;16081:1;16078:13;16075:48;;;-1:-1:-1;;16119:1:1;16101:16;;16094:27;15871:258::o;16134:380::-;16213:1;16209:12;;;;16256;;;16277:61;;16331:4;16323:6;16319:17;16309:27;;16277:61;16384:2;16376:6;16373:14;16353:18;16350:38;16347:161;;;16430:10;16425:3;16421:20;16418:1;16411:31;16465:4;16462:1;16455:15;16493:4;16490:1;16483:15;16347:161;;16134:380;;;:::o;16519:135::-;16558:3;-1:-1:-1;;16579:17:1;;16576:43;;;16599:18;;:::i;:::-;-1:-1:-1;16646:1:1;16635:13;;16519:135::o;16659:112::-;16691:1;16717;16707:35;;16722:18;;:::i;:::-;-1:-1:-1;16756:9:1;;16659:112::o;16776:127::-;16837:10;16832:3;16828:20;16825:1;16818:31;16868:4;16865:1;16858:15;16892:4;16889:1;16882:15;16908:127;16969:10;16964:3;16960:20;16957:1;16950:31;17000:4;16997:1;16990:15;17024:4;17021:1;17014:15;17040:127;17101:10;17096:3;17092:20;17089:1;17082:31;17132:4;17129:1;17122:15;17156:4;17153:1;17146:15;17172:127;17233:10;17228:3;17224:20;17221:1;17214:31;17264:4;17261:1;17254:15;17288:4;17285:1;17278:15;17304:131;-1:-1:-1;;;;;;17378:32:1;;17368:43;;17358:71;;17425:1;17422;17415:12

Swarm Source

ipfs://f8dec43c339380208a73587be3a5b099f2e9b79fc55b0d99936e1174c0e7580c
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.