ETH Price: $3,104.08 (+1.17%)
Gas: 11 Gwei

Token

Ukiyo Players (UKIYO)
 

Overview

Max Total Supply

5,555 UKIYO

Holders

1,166

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
tikihakamiki.eth
Balance
2 UKIYO
0x0475838254ce7055d290ed43fd4a61d6e89221de
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:
UkiyoPlayers

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-05-03
*/

// SPDX-License-Identifier: MIT
// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Counters.sol


// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        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 overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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 {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _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 {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);

        _afterTokenTransfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a 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 _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: ukiyo.sol



pragma solidity 0.8.7;





contract UkiyoPlayers is ERC721, Ownable, ReentrancyGuard {

    using Address for address;
    using Strings for uint256;
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdTracker;

    bytes32 public merkleRoot = 0x562d4b1be9d90e9822f4beccbd2d0411f7eaf3e465a000804f2f9915169dc8ba;

    string public baseURI;
    string public baseExtension = ".json";

    uint256 public maxSupplyPostsale = 5555;
    uint256 public maxSupply = 4855;
    uint256 public mintPrice = 0.04 ether;
    uint256 public presaleMax = 1;
    uint256 public mainsaleMax = 5;

    bool public whitelistOpen = false;
    bool public publicSaleOpen = false;

    mapping (address => uint256) whitelistClaimed;
    mapping (address => uint256) mainsaleClaimed;
    mapping (address => bool) public whitelistedWallets;

    constructor(string memory _initBaseURI) ERC721("Ukiyo Players", "UKIYO")
    {
        setBaseURI(_initBaseURI);

        for(uint256 i=0;i<1000;i++)
        {
            _tokenIdTracker.increment();
            _safeMint(msg.sender, totalSupply());
        }
    }

    modifier onlySender {
        require(msg.sender == tx.origin);
        _;
    }

    modifier whitelistIsOpen {
         require(whitelistOpen == true);
         _;
    }

    modifier mainsaleIsOpen {
         require(publicSaleOpen == true);
         _;
    }
    
    function whitelistMintUkiyoPlayer(uint256 howManyUkiyoPlayers) public payable nonReentrant onlySender whitelistIsOpen
    {
        require(whitelistedWallets[msg.sender] == true, "You aren't whitelisted!");
        require((totalSupply() + howManyUkiyoPlayers) <= maxSupplyPostsale, "Ukiyo Players SOLD OUT!");
        require((whitelistClaimed[msg.sender] + howManyUkiyoPlayers) <= presaleMax);

        for(uint256 i=0; i<howManyUkiyoPlayers; i++)
        {
            whitelistClaimed[msg.sender] += 1;
            _tokenIdTracker.increment();
            _safeMint(msg.sender, totalSupply());
        }
    }

    function mintUkiyoPlayer(uint256 howManyUkiyoPlayers) public payable nonReentrant onlySender mainsaleIsOpen
    {
        require(msg.value >= (mintPrice * howManyUkiyoPlayers), "Minting a Ukiyo Player 0.04 Ether Each!");
        require((totalSupply() + howManyUkiyoPlayers) <= maxSupply, "Ukiyo Players SOLD OUT!");
        require((mainsaleClaimed[msg.sender] + howManyUkiyoPlayers) <= mainsaleMax);

        for(uint256 i=0; i<howManyUkiyoPlayers; i++)
        {
            mainsaleClaimed[msg.sender] += 1;
            _tokenIdTracker.increment();
            _safeMint(msg.sender, totalSupply());
        }

    }

    function addWhiteList(address[] memory whiteListedAddresses) public onlyOwner
    {
        for(uint256 i=0; i<whiteListedAddresses.length;i++)
        {
            whitelistedWallets[whiteListedAddresses[i]] = true;
        }
    }

    function withdrawEther() external onlyOwner {
        (bool hs, ) = payable(0xDFfF0915a584D29d3bf1b7D4783698ED2a3ED403).call{value: (address(this).balance * 250 / 10000)}("");
        require(hs);

        (bool os, ) = payable(msg.sender).call{value: address(this).balance}("");
        require(os);
    }

    function flipWL() public onlyOwner
    {
        whitelistOpen = !whitelistOpen;
    }
    function flipPublic() public onlyOwner
    {
        publicSaleOpen = !publicSaleOpen;
    }

    function setMaxSupply(uint256 _newSupply) public onlyOwner
    {
        maxSupply = _newSupply;
    }
    function setMintPrice(uint256 _mainsalePrice) public onlyOwner
    {
        mintPrice = _mainsalePrice;
    }
    function setMaxPresaleTx(uint256 _preMax) public onlyOwner
    {
        presaleMax = _preMax;
    }
    function setMaxMainsaleTx(uint256 _mainMax) public onlyOwner
    {
        mainsaleMax = _mainMax;
    }
    function devMint(uint256 mintAmount) public onlyOwner
    {
        for(uint256 i=0;i<mintAmount;i++)
        {
            _tokenIdTracker.increment();
            _safeMint(msg.sender, totalSupply());
        }
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }   
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory)
    {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : "";
    }
    function totalSupply() public view returns (uint256) {
            return _tokenIdTracker.current();
    }

    function walletOfOwner(address address_) public virtual view returns (uint256[] memory) {
        uint256 _balance = balanceOf(address_);
        uint256[] memory _tokens = new uint256[] (_balance);
        uint256 _index;
        uint256 _loopThrough = totalSupply();
        for (uint256 i = 0; i < _loopThrough; i++) {
            bool _exists = _exists(i);
            if (_exists) {
                if (ownerOf(i) == address_) { _tokens[_index] = i; _index++; }
            }
            else if (!_exists && _tokens[_balance - 1] == 0) { _loopThrough++; }
        }
        return _tokens;
    }

    function multiTransferFrom(address from_, address to_, uint256[] calldata tokenIds_) public {
        for (uint256 i = 0; i < tokenIds_.length; i++) {
            ERC721.transferFrom(from_, to_, tokenIds_[i]);
        }
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"whiteListedAddresses","type":"address[]"}],"name":"addWhiteList","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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mainsaleMax","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":"maxSupplyPostsale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"howManyUkiyoPlayers","type":"uint256"}],"name":"mintUkiyoPlayer","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from_","type":"address"},{"internalType":"address","name":"to_","type":"address"},{"internalType":"uint256[]","name":"tokenIds_","type":"uint256[]"}],"name":"multiTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mainMax","type":"uint256"}],"name":"setMaxMainsaleTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_preMax","type":"uint256"}],"name":"setMaxPresaleTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mainsalePrice","type":"uint256"}],"name":"setMintPrice","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":[{"internalType":"address","name":"address_","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"howManyUkiyoPlayers","type":"uint256"}],"name":"whitelistMintUkiyoPlayer","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistedWallets","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawEther","outputs":[],"stateMutability":"nonpayable","type":"function"}]

7f562d4b1be9d90e9822f4beccbd2d0411f7eaf3e465a000804f2f9915169dc8ba60095560c06040526005608081905264173539b7b760d91b60a09081526200004c91600b9190620005e9565b506115b3600c556112f7600d55668e1bc9bf040000600e556001600f5560056010556011805461ffff191690553480156200008657600080fd5b5060405162002fed38038062002fed833981016040819052620000a991620006c2565b604080518082018252600d81526c556b69796f20506c617965727360981b602080830191825283518085019094526005845264554b49594f60d81b908401528151919291620000fb91600091620005e9565b50805162000111906001906020840190620005e9565b5050506200012e620001286200019560201b60201c565b62000199565b60016007556200013e81620001eb565b60005b6103e88110156200018d576200016360086200026460201b6200167b1760201c565b6200017833620001726200026d565b6200028b565b8062000184816200085b565b91505062000141565b5050620008a5565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b031633146200024b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b80516200026090600a906020840190620005e9565b5050565b80546001019055565b6000620002866008620002ad60201b620016841760201c565b905090565b62000260828260405180602001604052806000815250620002b160201b60201c565b5490565b620002bd838362000329565b620002cc600084848462000471565b620003245760405162461bcd60e51b8152602060048201526032602482015260008051602062002fcd83398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840162000242565b505050565b6001600160a01b038216620003815760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640162000242565b6000818152600260205260409020546001600160a01b031615620003e85760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640162000242565b6001600160a01b038216600090815260036020526040812080546001929062000413908490620007d0565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600062000492846001600160a01b0316620005da60201b620016881760201c565b15620005ce57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290620004cc9033908990889088906004016200077a565b602060405180830381600087803b158015620004e757600080fd5b505af19250505080156200051a575060408051601f3d908101601f1916820190925262000517918101906200068f565b60015b620005b3573d8080156200054b576040519150601f19603f3d011682016040523d82523d6000602084013e62000550565b606091505b508051620005ab5760405162461bcd60e51b8152602060048201526032602482015260008051602062002fcd83398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606482015260840162000242565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050620005d2565b5060015b949350505050565b6001600160a01b03163b151590565b828054620005f7906200081e565b90600052602060002090601f0160209004810192826200061b576000855562000666565b82601f106200063657805160ff191683800117855562000666565b8280016001018555821562000666579182015b828111156200066657825182559160200191906001019062000649565b506200067492915062000678565b5090565b5b8082111562000674576000815560010162000679565b600060208284031215620006a257600080fd5b81516001600160e01b031981168114620006bb57600080fd5b9392505050565b600060208284031215620006d557600080fd5b81516001600160401b0380821115620006ed57600080fd5b818401915084601f8301126200070257600080fd5b8151818111156200071757620007176200088f565b604051601f8201601f19908116603f011681019083821181831017156200074257620007426200088f565b816040528281528760208487010111156200075c57600080fd5b6200076f836020830160208801620007eb565b979650505050505050565b600060018060a01b038087168352808616602084015250836040830152608060608301528251806080840152620007b98160a0850160208701620007eb565b601f01601f19169190910160a00195945050505050565b60008219821115620007e657620007e662000879565b500190565b60005b8381101562000808578181015183820152602001620007ee565b8381111562000818576000848401525b50505050565b600181811c908216806200083357607f821691505b602082108114156200085557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141562000872576200087262000879565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b61271880620008b56000396000f3fe6080604052600436106102515760003560e01c80637362377b11610139578063c877142b116100b6578063f2fde38b1161007a578063f2fde38b146106af578063f34acb7c146106cf578063f487c602146106e5578063f4a0a52814610705578063f618611e14610725578063f9e237991461074557600080fd5b8063c877142b146105fb578063c87b56dd14610610578063d5abeb0114610630578063e985e9c514610646578063eedd85811461068f57600080fd5b8063a80dcfee116100fd578063a80dcfee1461056a578063b4c7d2c31461059a578063b88d4fde146105b0578063c1cf7477146105d0578063c6682862146105e657600080fd5b80637362377b146104e85780637db3aecc146104fd5780638da5cb5b1461051757806395d89b4114610535578063a22cb4651461054a57600080fd5b8063438b6300116101d25780636352211e116101965780636352211e146104485780636817c76c146104685780636c0360eb1461047e5780636f8b44b01461049357806370a08231146104b3578063715018a6146104d357600080fd5b8063438b6300146103b55780634d53e3c8146103e257806353f80bc4146103f557806355f804b3146104085780635e1045ec1461042857600080fd5b806318160ddd1161021957806318160ddd1461031c57806323b872dd1461033f5780632eb4a7ab1461035f578063375a069a1461037557806342842e0e1461039557600080fd5b806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad578063095ea7b3146102e5578063100d251414610307575b600080fd5b34801561026257600080fd5b50610276610271366004612253565b610764565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a06107b6565b6040516102829190612460565b3480156102b957600080fd5b506102cd6102c83660046122d6565b610848565b6040516001600160a01b039091168152602001610282565b3480156102f157600080fd5b50610305610300366004612175565b6108e2565b005b34801561031357600080fd5b506103056109f8565b34801561032857600080fd5b50610331610a36565b604051908152602001610282565b34801561034b57600080fd5b5061030561035a366004612081565b610a46565b34801561036b57600080fd5b5061033160095481565b34801561038157600080fd5b506103056103903660046122d6565b610a77565b3480156103a157600080fd5b506103056103b0366004612081565b610ae1565b3480156103c157600080fd5b506103d56103d0366004611fa2565b610afc565b604051610282919061241c565b6103056103f03660046122d6565b610c3f565b6103056104033660046122d6565b610e11565b34801561041457600080fd5b5061030561042336600461228d565b610fcb565b34801561043457600080fd5b5061030561044336600461219f565b611008565b34801561045457600080fd5b506102cd6104633660046122d6565b61109a565b34801561047457600080fd5b50610331600e5481565b34801561048a57600080fd5b506102a0611111565b34801561049f57600080fd5b506103056104ae3660046122d6565b61119f565b3480156104bf57600080fd5b506103316104ce366004611fa2565b6111ce565b3480156104df57600080fd5b50610305611255565b3480156104f457600080fd5b5061030561128b565b34801561050957600080fd5b506011546102769060ff1681565b34801561052357600080fd5b506006546001600160a01b03166102cd565b34801561054157600080fd5b506102a0611388565b34801561055657600080fd5b50610305610565366004612139565b611397565b34801561057657600080fd5b50610276610585366004611fa2565b60146020526000908152604090205460ff1681565b3480156105a657600080fd5b5061033160105481565b3480156105bc57600080fd5b506103056105cb3660046120bd565b6113a2565b3480156105dc57600080fd5b50610331600c5481565b3480156105f257600080fd5b506102a06113da565b34801561060757600080fd5b506103056113e7565b34801561061c57600080fd5b506102a061062b3660046122d6565b61142e565b34801561063c57600080fd5b50610331600d5481565b34801561065257600080fd5b50610276610661366004611fbd565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561069b57600080fd5b506103056106aa3660046122d6565b61150c565b3480156106bb57600080fd5b506103056106ca366004611fa2565b61153b565b3480156106db57600080fd5b50610331600f5481565b3480156106f157600080fd5b50610305610700366004611ff0565b6115d6565b34801561071157600080fd5b506103056107203660046122d6565b61161d565b34801561073157600080fd5b506103056107403660046122d6565b61164c565b34801561075157600080fd5b5060115461027690610100900460ff1681565b60006001600160e01b031982166380ac58cd60e01b148061079557506001600160e01b03198216635b5e139f60e01b145b806107b057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546107c59061260a565b80601f01602080910402602001604051908101604052809291908181526020018280546107f19061260a565b801561083e5780601f106108135761010080835404028352916020019161083e565b820191906000526020600020905b81548152906001019060200180831161082157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108c65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108ed8261109a565b9050806001600160a01b0316836001600160a01b0316141561095b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108bd565b336001600160a01b038216148061097757506109778133610661565b6109e95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108bd565b6109f38383611697565b505050565b6006546001600160a01b03163314610a225760405162461bcd60e51b81526004016108bd906124c5565b6011805460ff19811660ff90911615179055565b6000610a4160085490565b905090565b610a503382611705565b610a6c5760405162461bcd60e51b81526004016108bd906124fa565b6109f38383836117fc565b6006546001600160a01b03163314610aa15760405162461bcd60e51b81526004016108bd906124c5565b60005b81811015610add57610aba600880546001019055565b610acb33610ac6610a36565b611998565b80610ad581612645565b915050610aa4565b5050565b6109f3838383604051806020016040528060008152506113a2565b60606000610b09836111ce565b905060008167ffffffffffffffff811115610b2657610b266126b6565b604051908082528060200260200182016040528015610b4f578160200160208202803683370190505b509050600080610b5d610a36565b905060005b81811015610c34576000818152600260205260409020546001600160a01b031615801590610bdd57876001600160a01b0316610b9d8361109a565b6001600160a01b03161415610bd85781858581518110610bbf57610bbf6126a0565b602090810291909101015283610bd481612645565b9450505b610c21565b80158015610c0e575084610bf26001886125c7565b81518110610c0257610c026126a0565b60200260200101516000145b15610c215782610c1d81612645565b9350505b5080610c2c81612645565b915050610b62565b509195945050505050565b60026007541415610c925760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108bd565b6002600755333214610ca357600080fd5b60115460ff610100909104161515600114610cbd57600080fd5b80600e54610ccb91906125a8565b341015610d2a5760405162461bcd60e51b815260206004820152602760248201527f4d696e74696e67206120556b69796f20506c6179657220302e303420457468656044820152667220456163682160c81b60648201526084016108bd565b600d5481610d36610a36565b610d40919061257c565b1115610d885760405162461bcd60e51b8152602060048201526017602482015276556b69796f20506c617965727320534f4c44204f55542160481b60448201526064016108bd565b60105433600090815260136020526040902054610da690839061257c565b1115610db157600080fd5b60005b81811015610e0857336000908152601360205260408120805460019290610ddc90849061257c565b9091555050600880546001019055610df633610ac6610a36565b80610e0081612645565b915050610db4565b50506001600755565b60026007541415610e645760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108bd565b6002600755333214610e7557600080fd5b60115460ff161515600114610e8957600080fd5b3360009081526014602052604090205460ff161515600114610eed5760405162461bcd60e51b815260206004820152601760248201527f596f75206172656e27742077686974656c69737465642100000000000000000060448201526064016108bd565b600c5481610ef9610a36565b610f03919061257c565b1115610f4b5760405162461bcd60e51b8152602060048201526017602482015276556b69796f20506c617965727320534f4c44204f55542160481b60448201526064016108bd565b600f5433600090815260126020526040902054610f6990839061257c565b1115610f7457600080fd5b60005b81811015610e0857336000908152601260205260408120805460019290610f9f90849061257c565b9091555050600880546001019055610fb933610ac6610a36565b80610fc381612645565b915050610f77565b6006546001600160a01b03163314610ff55760405162461bcd60e51b81526004016108bd906124c5565b8051610add90600a906020840190611e95565b6006546001600160a01b031633146110325760405162461bcd60e51b81526004016108bd906124c5565b60005b8151811015610add57600160146000848481518110611056576110566126a0565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061109281612645565b915050611035565b6000818152600260205260408120546001600160a01b0316806107b05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108bd565b600a805461111e9061260a565b80601f016020809104026020016040519081016040528092919081815260200182805461114a9061260a565b80156111975780601f1061116c57610100808354040283529160200191611197565b820191906000526020600020905b81548152906001019060200180831161117a57829003601f168201915b505050505081565b6006546001600160a01b031633146111c95760405162461bcd60e51b81526004016108bd906124c5565b600d55565b60006001600160a01b0382166112395760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108bd565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b0316331461127f5760405162461bcd60e51b81526004016108bd906124c5565b61128960006119b2565b565b6006546001600160a01b031633146112b55760405162461bcd60e51b81526004016108bd906124c5565b600073dfff0915a584d29d3bf1b7d4783698ed2a3ed4036127106112da4760fa6125a8565b6112e49190612594565b604051600081818185875af1925050503d8060008114611320576040519150601f19603f3d011682016040523d82523d6000602084013e611325565b606091505b505090508061133357600080fd5b604051600090339047908381818185875af1925050503d8060008114611375576040519150601f19603f3d011682016040523d82523d6000602084013e61137a565b606091505b5050905080610add57600080fd5b6060600180546107c59061260a565b610add338383611a04565b6113ac3383611705565b6113c85760405162461bcd60e51b81526004016108bd906124fa565b6113d484848484611ad3565b50505050565b600b805461111e9061260a565b6006546001600160a01b031633146114115760405162461bcd60e51b81526004016108bd906124c5565b6011805461ff001981166101009182900460ff1615909102179055565b6000818152600260205260409020546060906001600160a01b03166114ad5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108bd565b60006114b7611b06565b905060008151116114d75760405180602001604052806000815250611505565b806114e184611b15565b600b6040516020016114f59392919061231b565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146115365760405162461bcd60e51b81526004016108bd906124c5565b601055565b6006546001600160a01b031633146115655760405162461bcd60e51b81526004016108bd906124c5565b6001600160a01b0381166115ca5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108bd565b6115d3816119b2565b50565b60005b818110156116165761160485858585858181106115f8576115f86126a0565b90506020020135610a46565b8061160e81612645565b9150506115d9565b5050505050565b6006546001600160a01b031633146116475760405162461bcd60e51b81526004016108bd906124c5565b600e55565b6006546001600160a01b031633146116765760405162461bcd60e51b81526004016108bd906124c5565b600f55565b80546001019055565b5490565b6001600160a01b03163b151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906116cc8261109a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661177e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108bd565b60006117898361109a565b9050806001600160a01b0316846001600160a01b031614806117c45750836001600160a01b03166117b984610848565b6001600160a01b0316145b806117f457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661180f8261109a565b6001600160a01b0316146118735760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016108bd565b6001600160a01b0382166118d55760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108bd565b6118e0600082611697565b6001600160a01b03831660009081526003602052604081208054600192906119099084906125c7565b90915550506001600160a01b038216600090815260036020526040812080546001929061193790849061257c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610add828260405180602001604052806000815250611c13565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611a665760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108bd565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611ade8484846117fc565b611aea84848484611c46565b6113d45760405162461bcd60e51b81526004016108bd90612473565b6060600a80546107c59061260a565b606081611b395750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b635780611b4d81612645565b9150611b5c9050600a83612594565b9150611b3d565b60008167ffffffffffffffff811115611b7e57611b7e6126b6565b6040519080825280601f01601f191660200182016040528015611ba8576020820181803683370190505b5090505b84156117f457611bbd6001836125c7565b9150611bca600a86612660565b611bd590603061257c565b60f81b818381518110611bea57611bea6126a0565b60200101906001600160f81b031916908160001a905350611c0c600a86612594565b9450611bac565b611c1d8383611d53565b611c2a6000848484611c46565b6109f35760405162461bcd60e51b81526004016108bd90612473565b60006001600160a01b0384163b15611d4857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c8a9033908990889088906004016123df565b602060405180830381600087803b158015611ca457600080fd5b505af1925050508015611cd4575060408051601f3d908101601f19168201909252611cd191810190612270565b60015b611d2e573d808015611d02576040519150601f19603f3d011682016040523d82523d6000602084013e611d07565b606091505b508051611d265760405162461bcd60e51b81526004016108bd90612473565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117f4565b506001949350505050565b6001600160a01b038216611da95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108bd565b6000818152600260205260409020546001600160a01b031615611e0e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108bd565b6001600160a01b0382166000908152600360205260408120805460019290611e3790849061257c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611ea19061260a565b90600052602060002090601f016020900481019282611ec35760008555611f09565b82601f10611edc57805160ff1916838001178555611f09565b82800160010185558215611f09579182015b82811115611f09578251825591602001919060010190611eee565b50611f15929150611f19565b5090565b5b80821115611f155760008155600101611f1a565b600067ffffffffffffffff831115611f4857611f486126b6565b611f5b601f8401601f191660200161254b565b9050828152838383011115611f6f57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611f9d57600080fd5b919050565b600060208284031215611fb457600080fd5b61150582611f86565b60008060408385031215611fd057600080fd5b611fd983611f86565b9150611fe760208401611f86565b90509250929050565b6000806000806060858703121561200657600080fd5b61200f85611f86565b935061201d60208601611f86565b9250604085013567ffffffffffffffff8082111561203a57600080fd5b818701915087601f83011261204e57600080fd5b81358181111561205d57600080fd5b8860208260051b850101111561207257600080fd5b95989497505060200194505050565b60008060006060848603121561209657600080fd5b61209f84611f86565b92506120ad60208501611f86565b9150604084013590509250925092565b600080600080608085870312156120d357600080fd5b6120dc85611f86565b93506120ea60208601611f86565b925060408501359150606085013567ffffffffffffffff81111561210d57600080fd5b8501601f8101871361211e57600080fd5b61212d87823560208401611f2e565b91505092959194509250565b6000806040838503121561214c57600080fd5b61215583611f86565b91506020830135801515811461216a57600080fd5b809150509250929050565b6000806040838503121561218857600080fd5b61219183611f86565b946020939093013593505050565b600060208083850312156121b257600080fd5b823567ffffffffffffffff808211156121ca57600080fd5b818501915085601f8301126121de57600080fd5b8135818111156121f0576121f06126b6565b8060051b915061220184830161254b565b8181528481019084860184860187018a101561221c57600080fd5b600095505b838610156122465761223281611f86565b835260019590950194918601918601612221565b5098975050505050505050565b60006020828403121561226557600080fd5b8135611505816126cc565b60006020828403121561228257600080fd5b8151611505816126cc565b60006020828403121561229f57600080fd5b813567ffffffffffffffff8111156122b657600080fd5b8201601f810184136122c757600080fd5b6117f484823560208401611f2e565b6000602082840312156122e857600080fd5b5035919050565b600081518084526123078160208601602086016125de565b601f01601f19169290920160200192915050565b60008451602061232e8285838a016125de565b8551918401916123418184848a016125de565b8554920191600090600181811c908083168061235e57607f831692505b85831081141561237c57634e487b7160e01b85526022600452602485fd5b80801561239057600181146123a1576123ce565b60ff198516885283880195506123ce565b60008b81526020902060005b858110156123c65781548a8201529084019088016123ad565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612412908301846122ef565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561245457835183529284019291840191600101612438565b50909695505050505050565b60208152600061150560208301846122ef565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612574576125746126b6565b604052919050565b6000821982111561258f5761258f612674565b500190565b6000826125a3576125a361268a565b500490565b60008160001904831182151516156125c2576125c2612674565b500290565b6000828210156125d9576125d9612674565b500390565b60005b838110156125f95781810151838201526020016125e1565b838111156113d45750506000910152565b600181811c9082168061261e57607f821691505b6020821081141561263f57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561265957612659612674565b5060010190565b60008261266f5761266f61268a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146115d357600080fdfea26469706673582212203176c2bda0c37773516160c07d400840142e02d2faf2c4c554db8be85f1db56e64736f6c634300080700334552433732313a207472616e7366657220746f206e6f6e2045524337323152650000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005868747470733a2f2f756b69796f706c61796572732e6d7970696e6174612e636c6f75642f697066732f516d56386b4b4a644a377573753344387170477455346f59474a6a3963617673766468334d626e684d6f454d61692f0000000000000000

Deployed Bytecode

0x6080604052600436106102515760003560e01c80637362377b11610139578063c877142b116100b6578063f2fde38b1161007a578063f2fde38b146106af578063f34acb7c146106cf578063f487c602146106e5578063f4a0a52814610705578063f618611e14610725578063f9e237991461074557600080fd5b8063c877142b146105fb578063c87b56dd14610610578063d5abeb0114610630578063e985e9c514610646578063eedd85811461068f57600080fd5b8063a80dcfee116100fd578063a80dcfee1461056a578063b4c7d2c31461059a578063b88d4fde146105b0578063c1cf7477146105d0578063c6682862146105e657600080fd5b80637362377b146104e85780637db3aecc146104fd5780638da5cb5b1461051757806395d89b4114610535578063a22cb4651461054a57600080fd5b8063438b6300116101d25780636352211e116101965780636352211e146104485780636817c76c146104685780636c0360eb1461047e5780636f8b44b01461049357806370a08231146104b3578063715018a6146104d357600080fd5b8063438b6300146103b55780634d53e3c8146103e257806353f80bc4146103f557806355f804b3146104085780635e1045ec1461042857600080fd5b806318160ddd1161021957806318160ddd1461031c57806323b872dd1461033f5780632eb4a7ab1461035f578063375a069a1461037557806342842e0e1461039557600080fd5b806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad578063095ea7b3146102e5578063100d251414610307575b600080fd5b34801561026257600080fd5b50610276610271366004612253565b610764565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a06107b6565b6040516102829190612460565b3480156102b957600080fd5b506102cd6102c83660046122d6565b610848565b6040516001600160a01b039091168152602001610282565b3480156102f157600080fd5b50610305610300366004612175565b6108e2565b005b34801561031357600080fd5b506103056109f8565b34801561032857600080fd5b50610331610a36565b604051908152602001610282565b34801561034b57600080fd5b5061030561035a366004612081565b610a46565b34801561036b57600080fd5b5061033160095481565b34801561038157600080fd5b506103056103903660046122d6565b610a77565b3480156103a157600080fd5b506103056103b0366004612081565b610ae1565b3480156103c157600080fd5b506103d56103d0366004611fa2565b610afc565b604051610282919061241c565b6103056103f03660046122d6565b610c3f565b6103056104033660046122d6565b610e11565b34801561041457600080fd5b5061030561042336600461228d565b610fcb565b34801561043457600080fd5b5061030561044336600461219f565b611008565b34801561045457600080fd5b506102cd6104633660046122d6565b61109a565b34801561047457600080fd5b50610331600e5481565b34801561048a57600080fd5b506102a0611111565b34801561049f57600080fd5b506103056104ae3660046122d6565b61119f565b3480156104bf57600080fd5b506103316104ce366004611fa2565b6111ce565b3480156104df57600080fd5b50610305611255565b3480156104f457600080fd5b5061030561128b565b34801561050957600080fd5b506011546102769060ff1681565b34801561052357600080fd5b506006546001600160a01b03166102cd565b34801561054157600080fd5b506102a0611388565b34801561055657600080fd5b50610305610565366004612139565b611397565b34801561057657600080fd5b50610276610585366004611fa2565b60146020526000908152604090205460ff1681565b3480156105a657600080fd5b5061033160105481565b3480156105bc57600080fd5b506103056105cb3660046120bd565b6113a2565b3480156105dc57600080fd5b50610331600c5481565b3480156105f257600080fd5b506102a06113da565b34801561060757600080fd5b506103056113e7565b34801561061c57600080fd5b506102a061062b3660046122d6565b61142e565b34801561063c57600080fd5b50610331600d5481565b34801561065257600080fd5b50610276610661366004611fbd565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561069b57600080fd5b506103056106aa3660046122d6565b61150c565b3480156106bb57600080fd5b506103056106ca366004611fa2565b61153b565b3480156106db57600080fd5b50610331600f5481565b3480156106f157600080fd5b50610305610700366004611ff0565b6115d6565b34801561071157600080fd5b506103056107203660046122d6565b61161d565b34801561073157600080fd5b506103056107403660046122d6565b61164c565b34801561075157600080fd5b5060115461027690610100900460ff1681565b60006001600160e01b031982166380ac58cd60e01b148061079557506001600160e01b03198216635b5e139f60e01b145b806107b057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546107c59061260a565b80601f01602080910402602001604051908101604052809291908181526020018280546107f19061260a565b801561083e5780601f106108135761010080835404028352916020019161083e565b820191906000526020600020905b81548152906001019060200180831161082157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108c65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108ed8261109a565b9050806001600160a01b0316836001600160a01b0316141561095b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108bd565b336001600160a01b038216148061097757506109778133610661565b6109e95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108bd565b6109f38383611697565b505050565b6006546001600160a01b03163314610a225760405162461bcd60e51b81526004016108bd906124c5565b6011805460ff19811660ff90911615179055565b6000610a4160085490565b905090565b610a503382611705565b610a6c5760405162461bcd60e51b81526004016108bd906124fa565b6109f38383836117fc565b6006546001600160a01b03163314610aa15760405162461bcd60e51b81526004016108bd906124c5565b60005b81811015610add57610aba600880546001019055565b610acb33610ac6610a36565b611998565b80610ad581612645565b915050610aa4565b5050565b6109f3838383604051806020016040528060008152506113a2565b60606000610b09836111ce565b905060008167ffffffffffffffff811115610b2657610b266126b6565b604051908082528060200260200182016040528015610b4f578160200160208202803683370190505b509050600080610b5d610a36565b905060005b81811015610c34576000818152600260205260409020546001600160a01b031615801590610bdd57876001600160a01b0316610b9d8361109a565b6001600160a01b03161415610bd85781858581518110610bbf57610bbf6126a0565b602090810291909101015283610bd481612645565b9450505b610c21565b80158015610c0e575084610bf26001886125c7565b81518110610c0257610c026126a0565b60200260200101516000145b15610c215782610c1d81612645565b9350505b5080610c2c81612645565b915050610b62565b509195945050505050565b60026007541415610c925760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108bd565b6002600755333214610ca357600080fd5b60115460ff610100909104161515600114610cbd57600080fd5b80600e54610ccb91906125a8565b341015610d2a5760405162461bcd60e51b815260206004820152602760248201527f4d696e74696e67206120556b69796f20506c6179657220302e303420457468656044820152667220456163682160c81b60648201526084016108bd565b600d5481610d36610a36565b610d40919061257c565b1115610d885760405162461bcd60e51b8152602060048201526017602482015276556b69796f20506c617965727320534f4c44204f55542160481b60448201526064016108bd565b60105433600090815260136020526040902054610da690839061257c565b1115610db157600080fd5b60005b81811015610e0857336000908152601360205260408120805460019290610ddc90849061257c565b9091555050600880546001019055610df633610ac6610a36565b80610e0081612645565b915050610db4565b50506001600755565b60026007541415610e645760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108bd565b6002600755333214610e7557600080fd5b60115460ff161515600114610e8957600080fd5b3360009081526014602052604090205460ff161515600114610eed5760405162461bcd60e51b815260206004820152601760248201527f596f75206172656e27742077686974656c69737465642100000000000000000060448201526064016108bd565b600c5481610ef9610a36565b610f03919061257c565b1115610f4b5760405162461bcd60e51b8152602060048201526017602482015276556b69796f20506c617965727320534f4c44204f55542160481b60448201526064016108bd565b600f5433600090815260126020526040902054610f6990839061257c565b1115610f7457600080fd5b60005b81811015610e0857336000908152601260205260408120805460019290610f9f90849061257c565b9091555050600880546001019055610fb933610ac6610a36565b80610fc381612645565b915050610f77565b6006546001600160a01b03163314610ff55760405162461bcd60e51b81526004016108bd906124c5565b8051610add90600a906020840190611e95565b6006546001600160a01b031633146110325760405162461bcd60e51b81526004016108bd906124c5565b60005b8151811015610add57600160146000848481518110611056576110566126a0565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061109281612645565b915050611035565b6000818152600260205260408120546001600160a01b0316806107b05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108bd565b600a805461111e9061260a565b80601f016020809104026020016040519081016040528092919081815260200182805461114a9061260a565b80156111975780601f1061116c57610100808354040283529160200191611197565b820191906000526020600020905b81548152906001019060200180831161117a57829003601f168201915b505050505081565b6006546001600160a01b031633146111c95760405162461bcd60e51b81526004016108bd906124c5565b600d55565b60006001600160a01b0382166112395760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108bd565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b0316331461127f5760405162461bcd60e51b81526004016108bd906124c5565b61128960006119b2565b565b6006546001600160a01b031633146112b55760405162461bcd60e51b81526004016108bd906124c5565b600073dfff0915a584d29d3bf1b7d4783698ed2a3ed4036127106112da4760fa6125a8565b6112e49190612594565b604051600081818185875af1925050503d8060008114611320576040519150601f19603f3d011682016040523d82523d6000602084013e611325565b606091505b505090508061133357600080fd5b604051600090339047908381818185875af1925050503d8060008114611375576040519150601f19603f3d011682016040523d82523d6000602084013e61137a565b606091505b5050905080610add57600080fd5b6060600180546107c59061260a565b610add338383611a04565b6113ac3383611705565b6113c85760405162461bcd60e51b81526004016108bd906124fa565b6113d484848484611ad3565b50505050565b600b805461111e9061260a565b6006546001600160a01b031633146114115760405162461bcd60e51b81526004016108bd906124c5565b6011805461ff001981166101009182900460ff1615909102179055565b6000818152600260205260409020546060906001600160a01b03166114ad5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108bd565b60006114b7611b06565b905060008151116114d75760405180602001604052806000815250611505565b806114e184611b15565b600b6040516020016114f59392919061231b565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146115365760405162461bcd60e51b81526004016108bd906124c5565b601055565b6006546001600160a01b031633146115655760405162461bcd60e51b81526004016108bd906124c5565b6001600160a01b0381166115ca5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108bd565b6115d3816119b2565b50565b60005b818110156116165761160485858585858181106115f8576115f86126a0565b90506020020135610a46565b8061160e81612645565b9150506115d9565b5050505050565b6006546001600160a01b031633146116475760405162461bcd60e51b81526004016108bd906124c5565b600e55565b6006546001600160a01b031633146116765760405162461bcd60e51b81526004016108bd906124c5565b600f55565b80546001019055565b5490565b6001600160a01b03163b151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906116cc8261109a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661177e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108bd565b60006117898361109a565b9050806001600160a01b0316846001600160a01b031614806117c45750836001600160a01b03166117b984610848565b6001600160a01b0316145b806117f457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661180f8261109a565b6001600160a01b0316146118735760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016108bd565b6001600160a01b0382166118d55760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108bd565b6118e0600082611697565b6001600160a01b03831660009081526003602052604081208054600192906119099084906125c7565b90915550506001600160a01b038216600090815260036020526040812080546001929061193790849061257c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610add828260405180602001604052806000815250611c13565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611a665760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108bd565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611ade8484846117fc565b611aea84848484611c46565b6113d45760405162461bcd60e51b81526004016108bd90612473565b6060600a80546107c59061260a565b606081611b395750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b635780611b4d81612645565b9150611b5c9050600a83612594565b9150611b3d565b60008167ffffffffffffffff811115611b7e57611b7e6126b6565b6040519080825280601f01601f191660200182016040528015611ba8576020820181803683370190505b5090505b84156117f457611bbd6001836125c7565b9150611bca600a86612660565b611bd590603061257c565b60f81b818381518110611bea57611bea6126a0565b60200101906001600160f81b031916908160001a905350611c0c600a86612594565b9450611bac565b611c1d8383611d53565b611c2a6000848484611c46565b6109f35760405162461bcd60e51b81526004016108bd90612473565b60006001600160a01b0384163b15611d4857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c8a9033908990889088906004016123df565b602060405180830381600087803b158015611ca457600080fd5b505af1925050508015611cd4575060408051601f3d908101601f19168201909252611cd191810190612270565b60015b611d2e573d808015611d02576040519150601f19603f3d011682016040523d82523d6000602084013e611d07565b606091505b508051611d265760405162461bcd60e51b81526004016108bd90612473565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117f4565b506001949350505050565b6001600160a01b038216611da95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108bd565b6000818152600260205260409020546001600160a01b031615611e0e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108bd565b6001600160a01b0382166000908152600360205260408120805460019290611e3790849061257c565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611ea19061260a565b90600052602060002090601f016020900481019282611ec35760008555611f09565b82601f10611edc57805160ff1916838001178555611f09565b82800160010185558215611f09579182015b82811115611f09578251825591602001919060010190611eee565b50611f15929150611f19565b5090565b5b80821115611f155760008155600101611f1a565b600067ffffffffffffffff831115611f4857611f486126b6565b611f5b601f8401601f191660200161254b565b9050828152838383011115611f6f57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611f9d57600080fd5b919050565b600060208284031215611fb457600080fd5b61150582611f86565b60008060408385031215611fd057600080fd5b611fd983611f86565b9150611fe760208401611f86565b90509250929050565b6000806000806060858703121561200657600080fd5b61200f85611f86565b935061201d60208601611f86565b9250604085013567ffffffffffffffff8082111561203a57600080fd5b818701915087601f83011261204e57600080fd5b81358181111561205d57600080fd5b8860208260051b850101111561207257600080fd5b95989497505060200194505050565b60008060006060848603121561209657600080fd5b61209f84611f86565b92506120ad60208501611f86565b9150604084013590509250925092565b600080600080608085870312156120d357600080fd5b6120dc85611f86565b93506120ea60208601611f86565b925060408501359150606085013567ffffffffffffffff81111561210d57600080fd5b8501601f8101871361211e57600080fd5b61212d87823560208401611f2e565b91505092959194509250565b6000806040838503121561214c57600080fd5b61215583611f86565b91506020830135801515811461216a57600080fd5b809150509250929050565b6000806040838503121561218857600080fd5b61219183611f86565b946020939093013593505050565b600060208083850312156121b257600080fd5b823567ffffffffffffffff808211156121ca57600080fd5b818501915085601f8301126121de57600080fd5b8135818111156121f0576121f06126b6565b8060051b915061220184830161254b565b8181528481019084860184860187018a101561221c57600080fd5b600095505b838610156122465761223281611f86565b835260019590950194918601918601612221565b5098975050505050505050565b60006020828403121561226557600080fd5b8135611505816126cc565b60006020828403121561228257600080fd5b8151611505816126cc565b60006020828403121561229f57600080fd5b813567ffffffffffffffff8111156122b657600080fd5b8201601f810184136122c757600080fd5b6117f484823560208401611f2e565b6000602082840312156122e857600080fd5b5035919050565b600081518084526123078160208601602086016125de565b601f01601f19169290920160200192915050565b60008451602061232e8285838a016125de565b8551918401916123418184848a016125de565b8554920191600090600181811c908083168061235e57607f831692505b85831081141561237c57634e487b7160e01b85526022600452602485fd5b80801561239057600181146123a1576123ce565b60ff198516885283880195506123ce565b60008b81526020902060005b858110156123c65781548a8201529084019088016123ad565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612412908301846122ef565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561245457835183529284019291840191600101612438565b50909695505050505050565b60208152600061150560208301846122ef565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612574576125746126b6565b604052919050565b6000821982111561258f5761258f612674565b500190565b6000826125a3576125a361268a565b500490565b60008160001904831182151516156125c2576125c2612674565b500290565b6000828210156125d9576125d9612674565b500390565b60005b838110156125f95781810151838201526020016125e1565b838111156113d45750506000910152565b600181811c9082168061261e57607f821691505b6020821081141561263f57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561265957612659612674565b5060010190565b60008261266f5761266f61268a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146115d357600080fdfea26469706673582212203176c2bda0c37773516160c07d400840142e02d2faf2c4c554db8be85f1db56e64736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005868747470733a2f2f756b69796f706c61796572732e6d7970696e6174612e636c6f75642f697066732f516d56386b4b4a644a377573753344387170477455346f59474a6a3963617673766468334d626e684d6f454d61692f0000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): https://ukiyoplayers.mypinata.cloud/ipfs/QmV8kKJdJ7usu3D8qpGtU4oYGJj9cavsvdh3MbnhMoEMai/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000058
Arg [2] : 68747470733a2f2f756b69796f706c61796572732e6d7970696e6174612e636c
Arg [3] : 6f75642f697066732f516d56386b4b4a644a377573753344387170477455346f
Arg [4] : 59474a6a3963617673766468334d626e684d6f454d61692f0000000000000000


Deployed Bytecode Sourcemap

42185:5725:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29010:305;;;;;;;;;;-1:-1:-1;29010:305:0;;;;;:::i;:::-;;:::i;:::-;;;9061:14:1;;9054:22;9036:41;;9024:2;9009:18;29010:305:0;;;;;;;;29955:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31515:221::-;;;;;;;;;;-1:-1:-1;31515:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7722:32:1;;;7704:51;;7692:2;7677:18;31515:221:0;7558:203:1;31038:411:0;;;;;;;;;;-1:-1:-1;31038:411:0;;;;;:::i;:::-;;:::i;:::-;;45447:89;;;;;;;;;;;;;:::i;46938:108::-;;;;;;;;;;;;;:::i;:::-;;;9234:25:1;;;9222:2;9207:18;46938:108:0;9088:177:1;32265:339:0;;;;;;;;;;-1:-1:-1;32265:339:0;;;;;:::i;:::-;;:::i;42409:94::-;;;;;;;;;;;;;;;;46097:225;;;;;;;;;;-1:-1:-1;46097:225:0;;;;;:::i;:::-;;:::i;32675:185::-;;;;;;;;;;-1:-1:-1;32675:185:0;;;;;:::i;:::-;;:::i;47054:614::-;;;;;;;;;;-1:-1:-1;47054:614:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;44239:633::-;;;;;;:::i;:::-;;:::i;43605:626::-;;;;;;:::i;:::-;;:::i;46330:104::-;;;;;;;;;;-1:-1:-1;46330:104:0;;;;;:::i;:::-;;:::i;44880:239::-;;;;;;;;;;-1:-1:-1;44880:239:0;;;;;:::i;:::-;;:::i;29649:::-;;;;;;;;;;-1:-1:-1;29649:239:0;;;;;:::i;:::-;;:::i;42670:37::-;;;;;;;;;;;;;;;;42512:21;;;;;;;;;;;;;:::i;45645:105::-;;;;;;;;;;-1:-1:-1;45645:105:0;;;;;:::i;:::-;;:::i;29379:208::-;;;;;;;;;;-1:-1:-1;29379:208:0;;;;;:::i;:::-;;:::i;9252:103::-;;;;;;;;;;;;;:::i;45127:312::-;;;;;;;;;;;;;:::i;42789:33::-;;;;;;;;;;-1:-1:-1;42789:33:0;;;;;;;;8601:87;;;;;;;;;;-1:-1:-1;8674:6:0;;-1:-1:-1;;;;;8674:6:0;8601:87;;30124:104;;;;;;;;;;;;;:::i;31808:155::-;;;;;;;;;;-1:-1:-1;31808:155:0;;;;;:::i;:::-;;:::i;42975:51::-;;;;;;;;;;-1:-1:-1;42975:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;42750:30;;;;;;;;;;;;;;;;32931:328;;;;;;;;;;-1:-1:-1;32931:328:0;;;;;:::i;:::-;;:::i;42586:39::-;;;;;;;;;;;;;;;;42540:37;;;;;;;;;;;;;:::i;45542:95::-;;;;;;;;;;;;;:::i;46557:375::-;;;;;;;;;;-1:-1:-1;46557:375:0;;;;;:::i;:::-;;:::i;42632:31::-;;;;;;;;;;;;;;;;32034:164;;;;;;;;;;-1:-1:-1;32034:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32155:25:0;;;32131:4;32155:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32034:164;45984:107;;;;;;;;;;-1:-1:-1;45984:107:0;;;;;:::i;:::-;;:::i;9510:201::-;;;;;;;;;;-1:-1:-1;9510:201:0;;;;;:::i;:::-;;:::i;42714:29::-;;;;;;;;;;;;;;;;47676:229;;;;;;;;;;-1:-1:-1;47676:229:0;;;;;:::i;:::-;;:::i;45756:113::-;;;;;;;;;;-1:-1:-1;45756:113:0;;;;;:::i;:::-;;:::i;45875:103::-;;;;;;;;;;-1:-1:-1;45875:103:0;;;;;:::i;:::-;;:::i;42829:34::-;;;;;;;;;;-1:-1:-1;42829:34:0;;;;;;;;;;;29010:305;29112:4;-1:-1:-1;;;;;;29149:40:0;;-1:-1:-1;;;29149:40:0;;:105;;-1:-1:-1;;;;;;;29206:48:0;;-1:-1:-1;;;29206:48:0;29149:105;:158;;;-1:-1:-1;;;;;;;;;;21714:40:0;;;29271:36;29129:178;29010:305;-1:-1:-1;;29010:305:0:o;29955:100::-;30009:13;30042:5;30035:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29955:100;:::o;31515:221::-;31591:7;34858:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34858:16:0;31611:73;;;;-1:-1:-1;;;31611:73:0;;14416:2:1;31611:73:0;;;14398:21:1;14455:2;14435:18;;;14428:30;14494:34;14474:18;;;14467:62;-1:-1:-1;;;14545:18:1;;;14538:42;14597:19;;31611:73:0;;;;;;;;;-1:-1:-1;31704:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31704:24:0;;31515:221::o;31038:411::-;31119:13;31135:23;31150:7;31135:14;:23::i;:::-;31119:39;;31183:5;-1:-1:-1;;;;;31177:11:0;:2;-1:-1:-1;;;;;31177:11:0;;;31169:57;;;;-1:-1:-1;;;31169:57:0;;15606:2:1;31169:57:0;;;15588:21:1;15645:2;15625:18;;;15618:30;15684:34;15664:18;;;15657:62;-1:-1:-1;;;15735:18:1;;;15728:31;15776:19;;31169:57:0;15404:397:1;31169:57:0;7352:10;-1:-1:-1;;;;;31261:21:0;;;;:62;;-1:-1:-1;31286:37:0;31303:5;7352:10;32034:164;:::i;31286:37::-;31239:168;;;;-1:-1:-1;;;31239:168:0;;12457:2:1;31239:168:0;;;12439:21:1;12496:2;12476:18;;;12469:30;12535:34;12515:18;;;12508:62;12606:26;12586:18;;;12579:54;12650:19;;31239:168:0;12255:420:1;31239:168:0;31420:21;31429:2;31433:7;31420:8;:21::i;:::-;31108:341;31038:411;;:::o;45447:89::-;8674:6;;-1:-1:-1;;;;;8674:6:0;7352:10;8821:23;8813:68;;;;-1:-1:-1;;;8813:68:0;;;;;;;:::i;:::-;45515:13:::1;::::0;;-1:-1:-1;;45498:30:0;::::1;45515:13;::::0;;::::1;45514:14;45498:30;::::0;;45447:89::o;46938:108::-;46982:7;47013:25;:15;1050:14;;958:114;47013:25;47006:32;;46938:108;:::o;32265:339::-;32460:41;7352:10;32493:7;32460:18;:41::i;:::-;32452:103;;;;-1:-1:-1;;;32452:103:0;;;;;;;:::i;:::-;32568:28;32578:4;32584:2;32588:7;32568:9;:28::i;46097:225::-;8674:6;;-1:-1:-1;;;;;8674:6:0;7352:10;8821:23;8813:68;;;;-1:-1:-1;;;8813:68:0;;;;;;;:::i;:::-;46171:9:::1;46167:148;46185:10;46183:1;:12;46167:148;;;46225:27;:15;1169:19:::0;;1187:1;1169:19;;;1080:127;46225:27:::1;46267:36;46277:10;46289:13;:11;:13::i;:::-;46267:9;:36::i;:::-;46196:3:::0;::::1;::::0;::::1;:::i;:::-;;;;46167:148;;;;46097:225:::0;:::o;32675:185::-;32813:39;32830:4;32836:2;32840:7;32813:39;;;;;;;;;;;;:16;:39::i;47054:614::-;47124:16;47153;47172:19;47182:8;47172:9;:19::i;:::-;47153:38;;47202:24;47244:8;47229:24;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47229:24:0;;47202:51;;47264:14;47289:20;47312:13;:11;:13::i;:::-;47289:36;;47341:9;47336:300;47360:12;47356:1;:16;47336:300;;;47394:12;34858:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34858:16:0;:30;;;;47434:191;;47484:8;-1:-1:-1;;;;;47470:22:0;:10;47478:1;47470:7;:10::i;:::-;-1:-1:-1;;;;;47470:22:0;;47466:62;;;47514:1;47496:7;47504:6;47496:15;;;;;;;;:::i;:::-;;;;;;;;;;:19;47517:8;;;;:::i;:::-;;;;47466:62;47434:191;;;47567:7;47566:8;:38;;;;-1:-1:-1;47578:7:0;47586:12;47597:1;47586:8;:12;:::i;:::-;47578:21;;;;;;;;:::i;:::-;;;;;;;47603:1;47578:26;47566:38;47562:63;;;47608:14;;;;:::i;:::-;;;;47562:63;-1:-1:-1;47374:3:0;;;;:::i;:::-;;;;47336:300;;;-1:-1:-1;47653:7:0;;47054:614;-1:-1:-1;;;;;47054:614:0:o;44239:633::-;3416:1;4014:7;;:19;;4006:63;;;;-1:-1:-1;;;4006:63:0;;16778:2:1;4006:63:0;;;16760:21:1;16817:2;16797:18;;;16790:30;16856:33;16836:18;;;16829:61;16907:18;;4006:63:0;16576:355:1;4006:63:0;3416:1;4147:7;:18;43357:10:::1;43371:9;43357:23;43349:32;;;::::0;::::1;;43549:14:::2;::::0;::::2;;::::0;;::::2;;:22;;:14;:22;43541:31;;;::::0;::::2;;44397:19:::3;44385:9;;:31;;;;:::i;:::-;44371:9;:46;;44363:98;;;::::0;-1:-1:-1;;;44363:98:0;;17138:2:1;44363:98:0::3;::::0;::::3;17120:21:1::0;17177:2;17157:18;;;17150:30;17216:34;17196:18;;;17189:62;-1:-1:-1;;;17267:18:1;;;17260:37;17314:19;;44363:98:0::3;16936:403:1::0;44363:98:0::3;44521:9;;44497:19;44481:13;:11;:13::i;:::-;:35;;;;:::i;:::-;44480:50;;44472:86;;;::::0;-1:-1:-1;;;44472:86:0;;12882:2:1;44472:86:0::3;::::0;::::3;12864:21:1::0;12921:2;12901:18;;;12894:30;-1:-1:-1;;;12940:18:1;;;12933:53;13003:18;;44472:86:0::3;12680:347:1::0;44472:86:0::3;44632:11;::::0;44594:10:::3;44578:27;::::0;;;:15:::3;:27;::::0;;;;;:49:::3;::::0;44608:19;;44578:49:::3;:::i;:::-;44577:66;;44569:75;;;::::0;::::3;;44661:9;44657:206;44676:19;44674:1;:21;44657:206;;;44742:10;44726:27;::::0;;;:15:::3;:27;::::0;;;;:32;;44757:1:::3;::::0;44726:27;:32:::3;::::0;44757:1;;44726:32:::3;:::i;:::-;::::0;;;-1:-1:-1;;44773:15:0::3;1169:19:::0;;1187:1;1169:19;;;44815:36:::3;44825:10;44837:13;:11;:13::i;44815:36::-;44697:3:::0;::::3;::::0;::::3;:::i;:::-;;;;44657:206;;;-1:-1:-1::0;;3372:1:0;4326:7;:22;44239:633::o;43605:626::-;3416:1;4014:7;;:19;;4006:63;;;;-1:-1:-1;;;4006:63:0;;16778:2:1;4006:63:0;;;16760:21:1;16817:2;16797:18;;;16790:30;16856:33;16836:18;;;16829:61;16907:18;;4006:63:0;16576:355:1;4006:63:0;3416:1;4147:7;:18;43357:10:::1;43371:9;43357:23;43349:32;;;::::0;::::1;;43454:13:::2;::::0;::::2;;:21;;:13:::0;:21:::2;43446:30;;;::::0;::::2;;43766:10:::3;43747:30;::::0;;;:18:::3;:30;::::0;;;;;::::3;;:38;;:30:::0;:38:::3;43739:74;;;::::0;-1:-1:-1;;;43739:74:0;;16426:2:1;43739:74:0::3;::::0;::::3;16408:21:1::0;16465:2;16445:18;;;16438:30;16504:25;16484:18;;;16477:53;16547:18;;43739:74:0::3;16224:347:1::0;43739:74:0::3;43873:17;;43849:19;43833:13;:11;:13::i;:::-;:35;;;;:::i;:::-;43832:58;;43824:94;;;::::0;-1:-1:-1;;;43824:94:0;;12882:2:1;43824:94:0::3;::::0;::::3;12864:21:1::0;12921:2;12901:18;;;12894:30;-1:-1:-1;;;12940:18:1;;;12933:53;13003:18;;43824:94:0::3;12680:347:1::0;43824:94:0::3;43993:10;::::0;43955::::3;43938:28;::::0;;;:16:::3;:28;::::0;;;;;:50:::3;::::0;43969:19;;43938:50:::3;:::i;:::-;43937:66;;43929:75;;;::::0;::::3;;44021:9;44017:207;44036:19;44034:1;:21;44017:207;;;44103:10;44086:28;::::0;;;:16:::3;:28;::::0;;;;:33;;44118:1:::3;::::0;44086:28;:33:::3;::::0;44118:1;;44086:33:::3;:::i;:::-;::::0;;;-1:-1:-1;;44134:15:0::3;1169:19:::0;;1187:1;1169:19;;;44176:36:::3;44186:10;44198:13;:11;:13::i;44176:36::-;44057:3:::0;::::3;::::0;::::3;:::i;:::-;;;;44017:207;;46330:104:::0;8674:6;;-1:-1:-1;;;;;8674:6:0;7352:10;8821:23;8813:68;;;;-1:-1:-1;;;8813:68:0;;;;;;;:::i;:::-;46405:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;44880:239::-:0;8674:6;;-1:-1:-1;;;;;8674:6:0;7352:10;8821:23;8813:68;;;;-1:-1:-1;;;8813:68:0;;;;;;;:::i;:::-;44978:9:::1;44974:138;44993:20;:27;44991:1;:29;44974:138;;;45096:4;45050:18;:43;45069:20;45090:1;45069:23;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;45050:43:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;45050:43:0;:50;;-1:-1:-1;;45050:50:0::1;::::0;::::1;;::::0;;;::::1;::::0;;45021:3;::::1;::::0;::::1;:::i;:::-;;;;44974:138;;29649:239:::0;29721:7;29757:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29757:16:0;29792:19;29784:73;;;;-1:-1:-1;;;29784:73:0;;13645:2:1;29784:73:0;;;13627:21:1;13684:2;13664:18;;;13657:30;13723:34;13703:18;;;13696:62;-1:-1:-1;;;13774:18:1;;;13767:39;13823:19;;29784:73:0;13443:405:1;42512:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45645:105::-;8674:6;;-1:-1:-1;;;;;8674:6:0;7352:10;8821:23;8813:68;;;;-1:-1:-1;;;8813:68:0;;;;;;;:::i;:::-;45720:9:::1;:22:::0;45645:105::o;29379:208::-;29451:7;-1:-1:-1;;;;;29479:19:0;;29471:74;;;;-1:-1:-1;;;29471:74:0;;13234:2:1;29471:74:0;;;13216:21:1;13273:2;13253:18;;;13246:30;13312:34;13292:18;;;13285:62;-1:-1:-1;;;13363:18:1;;;13356:40;13413:19;;29471:74:0;13032:406:1;29471:74:0;-1:-1:-1;;;;;;29563:16:0;;;;;:9;:16;;;;;;;29379:208::o;9252:103::-;8674:6;;-1:-1:-1;;;;;8674:6:0;7352:10;8821:23;8813:68;;;;-1:-1:-1;;;8813:68:0;;;;;;;:::i;:::-;9317:30:::1;9344:1;9317:18;:30::i;:::-;9252:103::o:0;45127:312::-;8674:6;;-1:-1:-1;;;;;8674:6:0;7352:10;8821:23;8813:68;;;;-1:-1:-1;;;8813:68:0;;;;;;;:::i;:::-;45183:7:::1;45204:42;45291:5;45261:27;:21;45285:3;45261:27;:::i;:::-;:35;;;;:::i;:::-;45196:106;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45182:120;;;45321:2;45313:11;;;::::0;::::1;;45351:58;::::0;45338:7:::1;::::0;45359:10:::1;::::0;45383:21:::1;::::0;45338:7;45351:58;45338:7;45351:58;45383:21;45359:10;45351:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45337:72;;;45428:2;45420:11;;;::::0;::::1;30124:104:::0;30180:13;30213:7;30206:14;;;;;:::i;31808:155::-;31903:52;7352:10;31936:8;31946;31903:18;:52::i;32931:328::-;33106:41;7352:10;33139:7;33106:18;:41::i;:::-;33098:103;;;;-1:-1:-1;;;33098:103:0;;;;;;;:::i;:::-;33212:39;33226:4;33232:2;33236:7;33245:5;33212:13;:39::i;:::-;32931:328;;;;:::o;42540:37::-;;;;;;;:::i;45542:95::-;8674:6;;-1:-1:-1;;;;;8674:6:0;7352:10;8821:23;8813:68;;;;-1:-1:-1;;;8813:68:0;;;;;;;:::i;:::-;45615:14:::1;::::0;;-1:-1:-1;;45597:32:0;::::1;45615:14;::::0;;;::::1;;;45614:15;45597:32:::0;;::::1;;::::0;;45542:95::o;46557:375::-;34834:4;34858:16;;;:7;:16;;;;;;46630:13;;-1:-1:-1;;;;;34858:16:0;46661:76;;;;-1:-1:-1;;;46661:76:0;;15190:2:1;46661:76:0;;;15172:21:1;15229:2;15209:18;;;15202:30;15268:34;15248:18;;;15241:62;-1:-1:-1;;;15319:18:1;;;15312:45;15374:19;;46661:76:0;14988:411:1;46661:76:0;46750:28;46781:10;:8;:10::i;:::-;46750:41;;46840:1;46815:14;46809:28;:32;:115;;;;;;;;;;;;;;;;;46868:14;46884:18;:7;:16;:18::i;:::-;46904:13;46851:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46809:115;46802:122;46557:375;-1:-1:-1;;;46557:375:0:o;45984:107::-;8674:6;;-1:-1:-1;;;;;8674:6:0;7352:10;8821:23;8813:68;;;;-1:-1:-1;;;8813:68:0;;;;;;;:::i;:::-;46061:11:::1;:22:::0;45984:107::o;9510:201::-;8674:6;;-1:-1:-1;;;;;8674:6:0;7352:10;8821:23;8813:68;;;;-1:-1:-1;;;8813:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;9599:22:0;::::1;9591:73;;;::::0;-1:-1:-1;;;9591:73:0;;10115:2:1;9591:73:0::1;::::0;::::1;10097:21:1::0;10154:2;10134:18;;;10127:30;10193:34;10173:18;;;10166:62;-1:-1:-1;;;10244:18:1;;;10237:36;10290:19;;9591:73:0::1;9913:402:1::0;9591:73:0::1;9675:28;9694:8;9675:18;:28::i;:::-;9510:201:::0;:::o;47676:229::-;47784:9;47779:119;47799:20;;;47779:119;;;47841:45;47861:5;47868:3;47873:9;;47883:1;47873:12;;;;;;;:::i;:::-;;;;;;;47841:19;:45::i;:::-;47821:3;;;;:::i;:::-;;;;47779:119;;;;47676:229;;;;:::o;45756:113::-;8674:6;;-1:-1:-1;;;;;8674:6:0;7352:10;8821:23;8813:68;;;;-1:-1:-1;;;8813:68:0;;;;;;;:::i;:::-;45835:9:::1;:26:::0;45756:113::o;45875:103::-;8674:6;;-1:-1:-1;;;;;8674:6:0;7352:10;8821:23;8813:68;;;;-1:-1:-1;;;8813:68:0;;;;;;;:::i;:::-;45950:10:::1;:20:::0;45875:103::o;1080:127::-;1169:19;;1187:1;1169:19;;;1080:127::o;958:114::-;1050:14;;958:114::o;11355:326::-;-1:-1:-1;;;;;11650:19:0;;:23;;;11355:326::o;38915:174::-;38990:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;38990:29:0;-1:-1:-1;;;;;38990:29:0;;;;;;;;:24;;39044:23;38990:24;39044:14;:23::i;:::-;-1:-1:-1;;;;;39035:46:0;;;;;;;;;;;38915:174;;:::o;35063:348::-;35156:4;34858:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34858:16:0;35173:73;;;;-1:-1:-1;;;35173:73:0;;12044:2:1;35173:73:0;;;12026:21:1;12083:2;12063:18;;;12056:30;12122:34;12102:18;;;12095:62;-1:-1:-1;;;12173:18:1;;;12166:42;12225:19;;35173:73:0;11842:408:1;35173:73:0;35257:13;35273:23;35288:7;35273:14;:23::i;:::-;35257:39;;35326:5;-1:-1:-1;;;;;35315:16:0;:7;-1:-1:-1;;;;;35315:16:0;;:51;;;;35359:7;-1:-1:-1;;;;;35335:31:0;:20;35347:7;35335:11;:20::i;:::-;-1:-1:-1;;;;;35335:31:0;;35315:51;:87;;;-1:-1:-1;;;;;;32155:25:0;;;32131:4;32155:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;35370:32;35307:96;35063:348;-1:-1:-1;;;;35063:348:0:o;38172:625::-;38331:4;-1:-1:-1;;;;;38304:31:0;:23;38319:7;38304:14;:23::i;:::-;-1:-1:-1;;;;;38304:31:0;;38296:81;;;;-1:-1:-1;;;38296:81:0;;10522:2:1;38296:81:0;;;10504:21:1;10561:2;10541:18;;;10534:30;10600:34;10580:18;;;10573:62;-1:-1:-1;;;10651:18:1;;;10644:35;10696:19;;38296:81:0;10320:401:1;38296:81:0;-1:-1:-1;;;;;38396:16:0;;38388:65;;;;-1:-1:-1;;;38388:65:0;;11285:2:1;38388:65:0;;;11267:21:1;11324:2;11304:18;;;11297:30;11363:34;11343:18;;;11336:62;-1:-1:-1;;;11414:18:1;;;11407:34;11458:19;;38388:65:0;11083:400:1;38388:65:0;38570:29;38587:1;38591:7;38570:8;:29::i;:::-;-1:-1:-1;;;;;38612:15:0;;;;;;:9;:15;;;;;:20;;38631:1;;38612:15;:20;;38631:1;;38612:20;:::i;:::-;;;;-1:-1:-1;;;;;;;38643:13:0;;;;;;:9;:13;;;;;:18;;38660:1;;38643:13;:18;;38660:1;;38643:18;:::i;:::-;;;;-1:-1:-1;;38672:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38672:21:0;-1:-1:-1;;;;;38672:21:0;;;;;;;;;38711:27;;38672:16;;38711:27;;;;;;;31108:341;31038:411;;:::o;35753:110::-;35829:26;35839:2;35843:7;35829:26;;;;;;;;;;;;:9;:26::i;9871:191::-;9964:6;;;-1:-1:-1;;;;;9981:17:0;;;-1:-1:-1;;;;;;9981:17:0;;;;;;;10014:40;;9964:6;;;9981:17;9964:6;;10014:40;;9945:16;;10014:40;9934:128;9871:191;:::o;39231:315::-;39386:8;-1:-1:-1;;;;;39377:17:0;:5;-1:-1:-1;;;;;39377:17:0;;;39369:55;;;;-1:-1:-1;;;39369:55:0;;11690:2:1;39369:55:0;;;11672:21:1;11729:2;11709:18;;;11702:30;11768:27;11748:18;;;11741:55;11813:18;;39369:55:0;11488:349:1;39369:55:0;-1:-1:-1;;;;;39435:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;39435:46:0;;;;;;;;;;39497:41;;9036::1;;;39497::0;;9009:18:1;39497:41:0;;;;;;;39231:315;;;:::o;34141:::-;34298:28;34308:4;34314:2;34318:7;34298:9;:28::i;:::-;34345:48;34368:4;34374:2;34378:7;34387:5;34345:22;:48::i;:::-;34337:111;;;;-1:-1:-1;;;34337:111:0;;;;;;;:::i;46440:108::-;46500:13;46533:7;46526:14;;;;;:::i;4781:723::-;4837:13;5058:10;5054:53;;-1:-1:-1;;5085:10:0;;;;;;;;;;;;-1:-1:-1;;;5085:10:0;;;;;4781:723::o;5054:53::-;5132:5;5117:12;5173:78;5180:9;;5173:78;;5206:8;;;;:::i;:::-;;-1:-1:-1;5229:10:0;;-1:-1:-1;5237:2:0;5229:10;;:::i;:::-;;;5173:78;;;5261:19;5293:6;5283:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5283:17:0;;5261:39;;5311:154;5318:10;;5311:154;;5345:11;5355:1;5345:11;;:::i;:::-;;-1:-1:-1;5414:10:0;5422:2;5414:5;:10;:::i;:::-;5401:24;;:2;:24;:::i;:::-;5388:39;;5371:6;5378;5371:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;5371:56:0;;;;;;;;-1:-1:-1;5442:11:0;5451:2;5442:11;;:::i;:::-;;;5311:154;;36090:321;36220:18;36226:2;36230:7;36220:5;:18::i;:::-;36271:54;36302:1;36306:2;36310:7;36319:5;36271:22;:54::i;:::-;36249:154;;;;-1:-1:-1;;;36249:154:0;;;;;;;:::i;40111:799::-;40266:4;-1:-1:-1;;;;;40287:13:0;;11650:19;:23;40283:620;;40323:72;;-1:-1:-1;;;40323:72:0;;-1:-1:-1;;;;;40323:36:0;;;;;:72;;7352:10;;40374:4;;40380:7;;40389:5;;40323:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40323:72:0;;;;;;;;-1:-1:-1;;40323:72:0;;;;;;;;;;;;:::i;:::-;;;40319:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40565:13:0;;40561:272;;40608:60;;-1:-1:-1;;;40608:60:0;;;;;;;:::i;40561:272::-;40783:6;40777:13;40768:6;40764:2;40760:15;40753:38;40319:529;-1:-1:-1;;;;;;40446:51:0;-1:-1:-1;;;40446:51:0;;-1:-1:-1;40439:58:0;;40283:620;-1:-1:-1;40887:4:0;40111:799;;;;;;:::o;36747:439::-;-1:-1:-1;;;;;36827:16:0;;36819:61;;;;-1:-1:-1;;;36819:61:0;;14055:2:1;36819:61:0;;;14037:21:1;;;14074:18;;;14067:30;14133:34;14113:18;;;14106:62;14185:18;;36819:61:0;13853:356:1;36819:61:0;34834:4;34858:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34858:16:0;:30;36891:58;;;;-1:-1:-1;;;36891:58:0;;10928:2:1;36891:58:0;;;10910:21:1;10967:2;10947:18;;;10940:30;11006;10986:18;;;10979:58;11054:18;;36891:58:0;10726:352:1;36891:58:0;-1:-1:-1;;;;;37020:13:0;;;;;;:9;:13;;;;;:18;;37037:1;;37020:13;:18;;37037:1;;37020:18;:::i;:::-;;;;-1:-1:-1;;37049:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37049:21:0;-1:-1:-1;;;;;37049:21:0;;;;;;;;37088:33;;37049:16;;;37088:33;;37049:16;;37088:33;46167:148:::1;46097:225:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:186::-;662:6;715:2;703:9;694:7;690:23;686:32;683:52;;;731:1;728;721:12;683:52;754:29;773:9;754:29;:::i;794:260::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;;1010:38;1044:2;1033:9;1029:18;1010:38;:::i;:::-;1000:48;;794:260;;;;;:::o;1059:763::-;1163:6;1171;1179;1187;1240:2;1228:9;1219:7;1215:23;1211:32;1208:52;;;1256:1;1253;1246:12;1208:52;1279:29;1298:9;1279:29;:::i;:::-;1269:39;;1327:38;1361:2;1350:9;1346:18;1327:38;:::i;:::-;1317:48;;1416:2;1405:9;1401:18;1388:32;1439:18;1480:2;1472:6;1469:14;1466:34;;;1496:1;1493;1486:12;1466:34;1534:6;1523:9;1519:22;1509:32;;1579:7;1572:4;1568:2;1564:13;1560:27;1550:55;;1601:1;1598;1591:12;1550:55;1641:2;1628:16;1667:2;1659:6;1656:14;1653:34;;;1683:1;1680;1673:12;1653:34;1736:7;1731:2;1721:6;1718:1;1714:14;1710:2;1706:23;1702:32;1699:45;1696:65;;;1757:1;1754;1747:12;1696:65;1059:763;;;;-1:-1:-1;;1788:2:1;1780:11;;-1:-1:-1;;;1059:763:1:o;1827:328::-;1904:6;1912;1920;1973:2;1961:9;1952:7;1948:23;1944:32;1941:52;;;1989:1;1986;1979:12;1941:52;2012:29;2031:9;2012:29;:::i;:::-;2002:39;;2060:38;2094:2;2083:9;2079:18;2060:38;:::i;:::-;2050:48;;2145:2;2134:9;2130:18;2117:32;2107:42;;1827:328;;;;;:::o;2160:666::-;2255:6;2263;2271;2279;2332:3;2320:9;2311:7;2307:23;2303:33;2300:53;;;2349:1;2346;2339:12;2300:53;2372:29;2391:9;2372:29;:::i;:::-;2362:39;;2420:38;2454:2;2443:9;2439:18;2420:38;:::i;:::-;2410:48;;2505:2;2494:9;2490:18;2477:32;2467:42;;2560:2;2549:9;2545:18;2532:32;2587:18;2579:6;2576:30;2573:50;;;2619:1;2616;2609:12;2573:50;2642:22;;2695:4;2687:13;;2683:27;-1:-1:-1;2673:55:1;;2724:1;2721;2714:12;2673:55;2747:73;2812:7;2807:2;2794:16;2789:2;2785;2781:11;2747:73;:::i;:::-;2737:83;;;2160:666;;;;;;;:::o;2831:347::-;2896:6;2904;2957:2;2945:9;2936:7;2932:23;2928:32;2925:52;;;2973:1;2970;2963:12;2925:52;2996:29;3015:9;2996:29;:::i;:::-;2986:39;;3075:2;3064:9;3060:18;3047:32;3122:5;3115:13;3108:21;3101:5;3098:32;3088:60;;3144:1;3141;3134:12;3088:60;3167:5;3157:15;;;2831:347;;;;;:::o;3183:254::-;3251:6;3259;3312:2;3300:9;3291:7;3287:23;3283:32;3280:52;;;3328:1;3325;3318:12;3280:52;3351:29;3370:9;3351:29;:::i;:::-;3341:39;3427:2;3412:18;;;;3399:32;;-1:-1:-1;;;3183:254:1:o;3442:963::-;3526:6;3557:2;3600;3588:9;3579:7;3575:23;3571:32;3568:52;;;3616:1;3613;3606:12;3568:52;3656:9;3643:23;3685:18;3726:2;3718:6;3715:14;3712:34;;;3742:1;3739;3732:12;3712:34;3780:6;3769:9;3765:22;3755:32;;3825:7;3818:4;3814:2;3810:13;3806:27;3796:55;;3847:1;3844;3837:12;3796:55;3883:2;3870:16;3905:2;3901;3898:10;3895:36;;;3911:18;;:::i;:::-;3957:2;3954:1;3950:10;3940:20;;3980:28;4004:2;4000;3996:11;3980:28;:::i;:::-;4042:15;;;4073:12;;;;4105:11;;;4135;;;4131:20;;4128:33;-1:-1:-1;4125:53:1;;;4174:1;4171;4164:12;4125:53;4196:1;4187:10;;4206:169;4220:2;4217:1;4214:9;4206:169;;;4277:23;4296:3;4277:23;:::i;:::-;4265:36;;4238:1;4231:9;;;;;4321:12;;;;4353;;4206:169;;;-1:-1:-1;4394:5:1;3442:963;-1:-1:-1;;;;;;;;3442:963:1:o;4410:245::-;4468:6;4521:2;4509:9;4500:7;4496:23;4492:32;4489:52;;;4537:1;4534;4527:12;4489:52;4576:9;4563:23;4595:30;4619:5;4595:30;:::i;4660:249::-;4729:6;4782:2;4770:9;4761:7;4757:23;4753:32;4750:52;;;4798:1;4795;4788:12;4750:52;4830:9;4824:16;4849:30;4873:5;4849:30;:::i;4914:450::-;4983:6;5036:2;5024:9;5015:7;5011:23;5007:32;5004:52;;;5052:1;5049;5042:12;5004:52;5092:9;5079:23;5125:18;5117:6;5114:30;5111:50;;;5157:1;5154;5147:12;5111:50;5180:22;;5233:4;5225:13;;5221:27;-1:-1:-1;5211:55:1;;5262:1;5259;5252:12;5211:55;5285:73;5350:7;5345:2;5332:16;5327:2;5323;5319:11;5285:73;:::i;5369:180::-;5428:6;5481:2;5469:9;5460:7;5456:23;5452:32;5449:52;;;5497:1;5494;5487:12;5449:52;-1:-1:-1;5520:23:1;;5369:180;-1:-1:-1;5369:180:1:o;5554:257::-;5595:3;5633:5;5627:12;5660:6;5655:3;5648:19;5676:63;5732:6;5725:4;5720:3;5716:14;5709:4;5702:5;5698:16;5676:63;:::i;:::-;5793:2;5772:15;-1:-1:-1;;5768:29:1;5759:39;;;;5800:4;5755:50;;5554:257;-1:-1:-1;;5554:257:1:o;5816:1527::-;6040:3;6078:6;6072:13;6104:4;6117:51;6161:6;6156:3;6151:2;6143:6;6139:15;6117:51;:::i;:::-;6231:13;;6190:16;;;;6253:55;6231:13;6190:16;6275:15;;;6253:55;:::i;:::-;6397:13;;6330:20;;;6370:1;;6457;6479:18;;;;6532;;;;6559:93;;6637:4;6627:8;6623:19;6611:31;;6559:93;6700:2;6690:8;6687:16;6667:18;6664:40;6661:167;;;-1:-1:-1;;;6727:33:1;;6783:4;6780:1;6773:15;6813:4;6734:3;6801:17;6661:167;6844:18;6871:110;;;;6995:1;6990:328;;;;6837:481;;6871:110;-1:-1:-1;;6906:24:1;;6892:39;;6951:20;;;;-1:-1:-1;6871:110:1;;6990:328;17879:1;17872:14;;;17916:4;17903:18;;7085:1;7099:169;7113:8;7110:1;7107:15;7099:169;;;7195:14;;7180:13;;;7173:37;7238:16;;;;7130:10;;7099:169;;;7103:3;;7299:8;7292:5;7288:20;7281:27;;6837:481;-1:-1:-1;7334:3:1;;5816:1527;-1:-1:-1;;;;;;;;;;;5816:1527:1:o;7766:488::-;-1:-1:-1;;;;;8035:15:1;;;8017:34;;8087:15;;8082:2;8067:18;;8060:43;8134:2;8119:18;;8112:34;;;8182:3;8177:2;8162:18;;8155:31;;;7960:4;;8203:45;;8228:19;;8220:6;8203:45;:::i;:::-;8195:53;7766:488;-1:-1:-1;;;;;;7766:488:1:o;8259:632::-;8430:2;8482:21;;;8552:13;;8455:18;;;8574:22;;;8401:4;;8430:2;8653:15;;;;8627:2;8612:18;;;8401:4;8696:169;8710:6;8707:1;8704:13;8696:169;;;8771:13;;8759:26;;8840:15;;;;8805:12;;;;8732:1;8725:9;8696:169;;;-1:-1:-1;8882:3:1;;8259:632;-1:-1:-1;;;;;;8259:632:1:o;9270:219::-;9419:2;9408:9;9401:21;9382:4;9439:44;9479:2;9468:9;9464:18;9456:6;9439:44;:::i;9494:414::-;9696:2;9678:21;;;9735:2;9715:18;;;9708:30;9774:34;9769:2;9754:18;;9747:62;-1:-1:-1;;;9840:2:1;9825:18;;9818:48;9898:3;9883:19;;9494:414::o;14627:356::-;14829:2;14811:21;;;14848:18;;;14841:30;14907:34;14902:2;14887:18;;14880:62;14974:2;14959:18;;14627:356::o;15806:413::-;16008:2;15990:21;;;16047:2;16027:18;;;16020:30;16086:34;16081:2;16066:18;;16059:62;-1:-1:-1;;;16152:2:1;16137:18;;16130:47;16209:3;16194:19;;15806:413::o;17526:275::-;17597:2;17591:9;17662:2;17643:13;;-1:-1:-1;;17639:27:1;17627:40;;17697:18;17682:34;;17718:22;;;17679:62;17676:88;;;17744:18;;:::i;:::-;17780:2;17773:22;17526:275;;-1:-1:-1;17526:275:1:o;17932:128::-;17972:3;18003:1;17999:6;17996:1;17993:13;17990:39;;;18009:18;;:::i;:::-;-1:-1:-1;18045:9:1;;17932:128::o;18065:120::-;18105:1;18131;18121:35;;18136:18;;:::i;:::-;-1:-1:-1;18170:9:1;;18065:120::o;18190:168::-;18230:7;18296:1;18292;18288:6;18284:14;18281:1;18278:21;18273:1;18266:9;18259:17;18255:45;18252:71;;;18303:18;;:::i;:::-;-1:-1:-1;18343:9:1;;18190:168::o;18363:125::-;18403:4;18431:1;18428;18425:8;18422:34;;;18436:18;;:::i;:::-;-1:-1:-1;18473:9:1;;18363:125::o;18493:258::-;18565:1;18575:113;18589:6;18586:1;18583:13;18575:113;;;18665:11;;;18659:18;18646:11;;;18639:39;18611:2;18604:10;18575:113;;;18706:6;18703:1;18700:13;18697:48;;;-1:-1:-1;;18741:1:1;18723:16;;18716:27;18493:258::o;18756:380::-;18835:1;18831:12;;;;18878;;;18899:61;;18953:4;18945:6;18941:17;18931:27;;18899:61;19006:2;18998:6;18995:14;18975:18;18972:38;18969:161;;;19052:10;19047:3;19043:20;19040:1;19033:31;19087:4;19084:1;19077:15;19115:4;19112:1;19105:15;18969:161;;18756:380;;;:::o;19141:135::-;19180:3;-1:-1:-1;;19201:17:1;;19198:43;;;19221:18;;:::i;:::-;-1:-1:-1;19268:1:1;19257:13;;19141:135::o;19281:112::-;19313:1;19339;19329:35;;19344:18;;:::i;:::-;-1:-1:-1;19378:9:1;;19281:112::o;19398:127::-;19459:10;19454:3;19450:20;19447:1;19440:31;19490:4;19487:1;19480:15;19514:4;19511:1;19504:15;19530:127;19591:10;19586:3;19582:20;19579:1;19572:31;19622:4;19619:1;19612:15;19646:4;19643:1;19636:15;19662:127;19723:10;19718:3;19714:20;19711:1;19704:31;19754:4;19751:1;19744:15;19778:4;19775:1;19768:15;19794:127;19855:10;19850:3;19846:20;19843:1;19836:31;19886:4;19883:1;19876:15;19910:4;19907:1;19900:15;19926:131;-1:-1:-1;;;;;;20000:32:1;;19990:43;;19980:71;;20047:1;20044;20037:12

Swarm Source

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