ETH Price: $3,510.57 (+4.57%)
Gas: 4 Gwei

Token

OGs by JakNFT x Kotegawa (OG)
 

Overview

Max Total Supply

369 OG

Holders

213

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
8 OG
0x0c7631385e22d78a04f0f6de877c23cf8a02cd2b
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

OGs are a limited edition PFP collection that blend the styles of JakNFT and Hiroji Kotegawa into an entirely new art form. OGs were created using a special process that combines glitch, animation, sculpting and 3D modeling.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
OGsbyJakNFTxKotegawa

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-17
*/

// File: @openzeppelin/contracts/utils/Counters.sol


// OpenZeppelin Contracts v4.4.0 (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: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.0 (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: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/interfaces/IERC165.sol


// OpenZeppelin Contracts v4.4.0 (interfaces/IERC165.sol)

pragma solidity ^0.8.0;


// File: @openzeppelin/contracts/interfaces/IERC2981.sol


// OpenZeppelin Contracts v4.4.0 (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Called with the sale price to determine how much royalty is owed and to whom.
     * @param tokenId - the NFT asset queried for royalty information
     * @param salePrice - the sale price of the NFT asset specified by `tokenId`
     * @return receiver - address of who should be sent the royalty payment
     * @return royaltyAmount - the royalty payment amount for `salePrice`
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.0 (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: @openzeppelin/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts v4.4.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 overriden 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);
    }

    /**
     * @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);
    }

    /**
     * @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 of token that is not own");
        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);
    }

    /**
     * @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 {}
}

// File: OG.sol



//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
//                                                                                                                                                              //
//                                                                                                                                                              //
//                                                                                                                                                              //
//                                                      ......                                                                                                  //
//                                                    .';llcc:'..............                                                                                   //
//                                                   .,:cloool:;;;;;;;::;:::::;'....                                                                            //
//                                                 ..;ccclllooooolc:::;;;:cccccc::::;;,.       .''''.                                                           //
//                                                ..;:cccllccclloolllcclllloolcccc::ccc:,'.....',,''.. ..                                                       //
//                                                .,ccccccccccccllllllloollccc::::::::::,,,,',,,,;;;;;,,'                                                       //
//                                               .';ccc:cccc::::::::::::::;;;;;::::::cc:::;,''',;ccclc:;'     .........                                         //
//                                               .;cc:::::::::;;;;,;::::::;;;;;;;;:::cccc::;,,,'',;:cc::,.  ..',,;::cc:;,.......   .                            //
//                                              ..,::::cc::;:::::::::;;;;;;;;;;;;;:ccc:::::::::;;,,;::::;,..,;;;;;;;::::;;;;;;,,'','                            //
//                                             ..;:cccccc:::::cccc:::::;;;;;;;;;;;::::::::::::cc::;:::;;;;,,;;,,,;;;::::;,;::c:::;,.                            //
//                                             .,:cc:::::::::::c:::;:cccc::::::;;;;;;;;:::;::::::::::cc:;,''''','',;:ccc::;:ccllc:;'                            //
//                                             .';;;::cc:::::::;;;;,,::::;::::::::::::::::;:::::::;;::cc:;,,'..''',,;::::::::::lc::'.                           //
//                                            ..,;;;;;;:::::::;;;;;;;::::;;;;:::::;;:::::::::::::::::;::ccc::,'',;;;;,,,;;:ccc:::;;,.                           //
//                                           ..,;:::;;;:;;;;:;,,;:::::;;:;;;:::::::;;;;;;;;::::::;;;;;;;;;;;;;;;:::;;,,,;:cccc:cc;,,.                           //
//                                          ..,;:c:;;;;;,,;,,,,,;;:cc:;:clcccc:;;;;;,;;;;::::::::;;;:;;;;;,,,,,;;::;;,',,;:::;;:::;,.                           //
//                                         ...,,;:;;;;;,,,,,,;;;;:::::;;:::;::::;;;;;;;::::;;::::;::;;;;;;,,,,,;;;;;;,'',,;;;;::::;,.                           //
//                    ...........   ....,,,,,,,,,,;;;;;;;;;;;;::::;;:::;;;;;;:::::;;;;;;:::::::::::::;::::;;,,,;;;;;;;;,,,,,;;::::;;..                          //
//              ..'''..'',;;;,,,,,,,;;;;:::;;,,,,,,,;:::;;;;;;:::;;;:::::::;;;:cc::;;::::::;::::;;;;:::::::;;;;;;;;:::::;,,,;::cc:;'..                          //
//              ..,;;;;;;:::::::::::::cc:;;,,,,,,''',,,,;;;;;;;;:;;;;;;;::;;;;;;;::;;:::;:::;;;:::;;;;;;;;;;;;;:;;;;:::::;,,;;;:::;...                          //
//               .,;;;::;;;,,;;;;;;;,,,;;;:;;;;;;,,;;;;;,,,,;;;;;::;;;;;;;;::::::c::::::::::;;;;;;;;;;;,,,,;;;;::::::::::;,,,,;;;;,'..                          //
//               ..,;;;;::;,,,,,,,;;;;;;;::;;;;;;:;;;;;;;,,,,;;;;;;;;;;;;;;;:::::::;;;::;;;;;;;;;;;;;;;,,'.'',;:::::::::::;,,,,;;;,'.                           //
//                ..',;;;::;;;;;;;,;;:;;;:;;;;;;;;;::::;;;;;;;;;;;;:::::;;;;;;:;;;;;;;,,,,,,',;;;;;;;;;,,,''',;::;::;;;;:c::;,,;;,''.                           //
//                 .',::;;;;;;;,,,,,,,,,,,'',,,,,,,,;;;;;;;;;;;;;;;;;;;;::;;;:;;;;;,,,,,,;:;;;;;;;;;;;;;;;;;,,,;;;:::;;;::::;,,;;;;,'.                          //
//                ..',,,,''''''''...'''....'',,',,,,',,;;;,;;,,,,,,,,,,;;;;;;;:;,,,,,,,;;;;;;;;;;;::;;;;;,,;;;;;;;;;;;;;;;:::::;:::;;'                          //
//                ....'........................'',,,,,,,,,''''..',,,''',;:cllodolllloolc;;;;;,,;;;;,,;,,,,,,,,;;;;;,,,;;;;;;;,,,,;;,;,.                         //
//                 ..............................'','''''.......',;codxkOkO000000000000Okkxxdodxxolc;,,'.'','''',,,,,,,;,''..'''''''..                          //
//                   ..........................................;okO0KKKKK0OOkxkkkkkkxxkxO0OOOO000OOOkxdc::lolc;''''','''...'........                            //
//                   .':loooollccc:;;'..'....    .......    .'lO00K00000KK0kxxddxddxxxxxkOOOOkkOO00OO00000K0Okxdddodxddolc;,'.....                              //
//                   .o000000OOOOOOkOxddxolc;,,,;:;:lllcc:::lkKK00000000K0OkddodddddddxkxkkkkkxdxxxxOOOO0KKKKXK00OO00O00K0Okdolc:'..                            //
//                  .:dO00OO0000000O0OOOOOkkkxkkkOOOOOOOO00KKK00OOOkkkkOO00OdlllllodollooooooolloodxkkkOO0KKKXXK0OOkxxxxxkOkkkOO0Oxooc'...                      //
//                  :xxkOOOkOOkOOO00000OOOOOOOOkOOO00KKKKKKK0OkkxxkkxkkO0KKkdoc:::ccc:cccc:;,;:cclodddxxk000KXXKOxxxddolooodxxxkOO00KK0kdl,                     //
//                  ;xOOOOOkkkkkkkOOOOOOOOOOkOOO000000K0000K0kxxxxxxxkO0XX0kxolc:;;::cool:;,,;clllclddloxkOOKX0kdoooooooodddxdodxkOKKKOkxl'                     //
//                  ,x0OkkxxkkkkkkkkkkOOOOkkkkO000OOOOOOOOOOOkdooddxxkOKXKOkxol:;,,;llcc:,,,,;;:cccldolodkO0K0kdolloolccllcccccoxkkO00xxl'                      //
//                 .lkkOkkkkkxxxkkxxxkkxxkxxkkkOOOkkkOOOOOOkddlllloxkkkO0Oxdollc::codoodollc::;:clllollooxOKKOxoldxxdl:;;;:c:cllodxk00kxo,.                     //
//                 .ldxkxxxdxxdxxxxxxxxxxkkxxxxxkkxxkkkkkkkxolcloodxkkkOOOxl:;;:cclloool:::llc::::;::::clx0XKkoloddol;;:clccclodxO000OOxo:.                     //
//                 .,:loooddddooddddxddxxxxxxxxxxxxkkkxkxxkxxdlcodxxxkkOOxoollc:ccccllll:;;ccc:;;;;;,,;cokKXKOoclolc:::::cccllodk00Okolc,.                      //
//                  'clllcc::::;:;;ccclllllloooodxdxdddxxxxxkOkddxddxkOOOxocclollcc:::clc::;:cc::::;;,;ldOKXKkocccclllcc::cclodkO0Okkdlc,                       //
//                 .';;;;;;,;;;:c::clllolllllllllllllllooooddddooddxxkOO0koc:codoooocclllc:::cll::;,;;:dk0KK0ko:;;:::;;;;;clloxxkkkkkolc'                       //
//                  .,;;;;;;;;;::::cc:;:;;;,,;:::::cclllcllloolllloxxxkO0kxdlcllcccc::;::::::ccc:;,,,:oxO00KOxl:;;;,''',,;;;:loollodxkxo:'                      //
//                  ..,;;;''''','',,,'',;:c:;:::c:;;,;:;,;;::c::clldodk00Okdl:;;,,,;;;;::::::;:;,,,',:oxk0KK0kdc:cc:;,;;;;;;:llcclodxxolc'                      //
//                    ..'''.''''''',,,,,;;;;,''',,,,',,,,,;;;:;:::cloox0KKOo:;,,,,;;;::::ccc:,,,,,'.';cdk0K0Oxl;,:::;;;;:;:::cldxkkkkkdlc'                      //
//                      .........'.','''''''..'''.',,,,,',,,;;,',;:lodxOKKkoc::clddxddoc:::c:,'''','';lx0KK0kd:,;:::;;,;,',;:cdkOOOkkxocc,.                     //
//                         .........'''..........''''...........';;clodxO00OOOkO00000OOkkxxdoc:,',,:ldkO0KXKOdc;:c::::::;,;::clodxkkxdlc,.                      //
//                         .....  ...............................',;codxk0KKKKKKKK0000KKKKKK0OkkxxkkO0000KXX0ko;',,''',;;;:::;:okOkkkxol;.                      //
//                                            .    ..    ........',;cclodxkkkOO0000OOO0K00KKK0KKK00OOOOO0KKK0Odc,,,''';:ccllc:ldxkxxkxoo:.                      //
//                                                           ...',,;;;:::cllodxkkxkkkkkOOOOOOOOOOkkkkkO00000000Oxolc::clddolc:lodkOOxol:.                       //
//                                                            ....',,;;:::cclcclllllllooooodoooddxxxxxxkkkO0000KK0000000000OkkkO00KKOxdl.                       //
//                                                            ....',,,''''''',,;::::ccccc::cc:ccclllllloxkkkOOOO00000000000KK0KKK0000kxo:.                      //
//                                                             ...'''..........''',,;:;::::;'';ccc::::cccllooooooooooddxxxkOOkO00OOO0OOkdl,.                    //
//                                                               ...... ..    .......''.......,cc:;,,''',;;:::cccccccloxxdoooddkO00kxxddoc:.                    //
//                                                                                .....     ..............',,,;:::;:odddoc;:cdk0KK0Oxo:'..                      //
//                                                                                                    ........',:coddol:::cdOO0Okdl;'.                          //
//                                                                                                      .......',;:;,'',;:loolc;..                              //
//                                                                                                          ........ .'',;,...                                  //
//                                                                                                                                                              //
//                                                                                                                                                              //
//    JakNFT x Kotegawa OGs                                                                                                                                     //
//                                                                                                                                                              //
//                                                                                                                                                              //
//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

pragma solidity ^0.8.9;







contract OGsbyJakNFTxKotegawa is ERC721, IERC2981, ReentrancyGuard, Ownable {
  using Counters for Counters.Counter;

  constructor(string memory customBaseURI_)
    ERC721("OGs by JakNFT x Kotegawa", "OG")
  {
    customBaseURI = customBaseURI_;
  }

  /** MINTING **/

  uint256 public constant MAX_SUPPLY = 369;

  uint256 public constant PRICE = 169000000000000000;

  Counters.Counter private supplyCounter;

  function mint() public payable nonReentrant {
    require(saleIsActive, "Sale not active");

    require(totalSupply() < MAX_SUPPLY, "Exceeds max supply");

    require(msg.value >= PRICE, "Insufficient payment, 0.169 ETH per item");

    _mint(msg.sender, totalSupply());

    supplyCounter.increment();
  }

  function totalSupply() public view returns (uint256) {
    return supplyCounter.current();
  }

  /** ACTIVATION **/

  bool public saleIsActive = true;

  function setSaleIsActive(bool saleIsActive_) external onlyOwner {
    saleIsActive = saleIsActive_;
  }

  /** URI HANDLING **/

  string private customBaseURI;

  function setBaseURI(string memory customBaseURI_) external onlyOwner {
    customBaseURI = customBaseURI_;
  }

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

  function tokenURI(uint256 tokenId) public view override
    returns (string memory)
  {
    return string(abi.encodePacked(super.tokenURI(tokenId), ".json"));
  }

  /** PAYOUT **/

  function withdraw() public nonReentrant {
    uint256 balance = address(this).balance;

    Address.sendValue(payable(owner()), balance);
  }

  /** ROYALTIES **/

  function royaltyInfo(uint256, uint256 salePrice) external view override
    returns (address receiver, uint256 royaltyAmount)
  {
    return (address(this), (salePrice * 1000) / 10000);
  }

  function supportsInterface(bytes4 interfaceId)
    public
    view
    virtual
    override(ERC721, IERC165)
    returns (bool)
  {
    return (
      interfaceId == type(IERC2981).interfaceId ||
      super.supportsInterface(interfaceId)
    );
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"customBaseURI_","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":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"customBaseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"saleIsActive_","type":"bool"}],"name":"setSaleIsActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526009805460ff191660011790553480156200001e57600080fd5b506040516200203d3803806200203d8339810160408190526200004191620001f4565b604080518082018252601881527f4f4773206279204a616b4e46542078204b6f74656761776100000000000000006020808301918252835180850190945260028452614f4760f01b908401528151919291620000a09160009162000138565b508051620000b690600190602084019062000138565b5050600160065550620000c933620000e6565b8051620000de90600a90602084019062000138565b50506200030d565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014690620002d0565b90600052602060002090601f0160209004810192826200016a5760008555620001b5565b82601f106200018557805160ff1916838001178555620001b5565b82800160010185558215620001b5579182015b82811115620001b557825182559160200191906001019062000198565b50620001c3929150620001c7565b5090565b5b80821115620001c35760008155600101620001c8565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156200020857600080fd5b82516001600160401b03808211156200022057600080fd5b818501915085601f8301126200023557600080fd5b8151818111156200024a576200024a620001de565b604051601f8201601f19908116603f01168101908382118183101715620002755762000275620001de565b8160405282815288868487010111156200028e57600080fd5b600093505b82841015620002b2578484018601518185018701529285019262000293565b82841115620002c45760008684830101525b98975050505050505050565b600181811c90821680620002e557607f821691505b602082108114156200030757634e487b7160e01b600052602260045260246000fd5b50919050565b611d20806200031d6000396000f3fe6080604052600436106101665760003560e01c806355f804b3116100d157806395d89b411161008a578063c87b56dd11610064578063c87b56dd14610415578063e985e9c514610435578063eb8d24441461047e578063f2fde38b1461049857600080fd5b806395d89b41146103c0578063a22cb465146103d5578063b88d4fde146103f557600080fd5b806355f804b3146103115780636352211e1461033157806370a0823114610351578063715018a6146103715780638d859f3e146103865780638da5cb5b146103a257600080fd5b806318160ddd1161012357806318160ddd1461024457806323b872dd146102675780632a55205a1461028757806332cb6b0c146102c65780633ccfd60b146102dc57806342842e0e146102f157600080fd5b806301ffc9a71461016b57806302c88989146101a057806306fdde03146101c2578063081812fc146101e4578063095ea7b31461021c5780631249c58b1461023c575b600080fd5b34801561017757600080fd5b5061018b610186366004611719565b6104b8565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506101c06101bb36600461174b565b6104e3565b005b3480156101ce57600080fd5b506101d7610529565b60405161019791906117be565b3480156101f057600080fd5b506102046101ff3660046117d1565b6105bb565b6040516001600160a01b039091168152602001610197565b34801561022857600080fd5b506101c0610237366004611801565b610650565b6101c0610766565b34801561025057600080fd5b506102596108de565b604051908152602001610197565b34801561027357600080fd5b506101c061028236600461182b565b6108ee565b34801561029357600080fd5b506102a76102a2366004611867565b61091f565b604080516001600160a01b039093168352602083019190915201610197565b3480156102d257600080fd5b5061025961017181565b3480156102e857600080fd5b506101c0610947565b3480156102fd57600080fd5b506101c061030c36600461182b565b6109c3565b34801561031d57600080fd5b506101c061032c366004611915565b6109de565b34801561033d57600080fd5b5061020461034c3660046117d1565b610a1f565b34801561035d57600080fd5b5061025961036c36600461195e565b610a96565b34801561037d57600080fd5b506101c0610b1d565b34801561039257600080fd5b50610259670258689ac70a800081565b3480156103ae57600080fd5b506007546001600160a01b0316610204565b3480156103cc57600080fd5b506101d7610b53565b3480156103e157600080fd5b506101c06103f0366004611979565b610b62565b34801561040157600080fd5b506101c06104103660046119ac565b610b6d565b34801561042157600080fd5b506101d76104303660046117d1565b610ba5565b34801561044157600080fd5b5061018b610450366004611a28565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561048a57600080fd5b5060095461018b9060ff1681565b3480156104a457600080fd5b506101c06104b336600461195e565b610bd6565b60006001600160e01b0319821663152a902d60e11b14806104dd57506104dd82610c71565b92915050565b6007546001600160a01b031633146105165760405162461bcd60e51b815260040161050d90611a52565b60405180910390fd5b6009805460ff1916911515919091179055565b60606000805461053890611a87565b80601f016020809104026020016040519081016040528092919081815260200182805461056490611a87565b80156105b15780601f10610586576101008083540402835291602001916105b1565b820191906000526020600020905b81548152906001019060200180831161059457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106345760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161050d565b506000908152600460205260409020546001600160a01b031690565b600061065b82610a1f565b9050806001600160a01b0316836001600160a01b031614156106c95760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161050d565b336001600160a01b03821614806106e557506106e58133610450565b6107575760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161050d565b6107618383610cc1565b505050565b600260065414156107b95760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161050d565b600260065560095460ff166108025760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b604482015260640161050d565b61017161080d6108de565b1061084f5760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b604482015260640161050d565b670258689ac70a80003410156108b85760405162461bcd60e51b815260206004820152602860248201527f496e73756666696369656e74207061796d656e742c20302e3136392045544820604482015267706572206974656d60c01b606482015260840161050d565b6108c9336108c46108de565b610d2f565b6108d7600880546001019055565b6001600655565b60006108e960085490565b905090565b6108f83382610e71565b6109145760405162461bcd60e51b815260040161050d90611ac2565b610761838383610f68565b60008030612710610932856103e8611b29565b61093c9190611b5e565b915091509250929050565b6002600654141561099a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161050d565b6002600655476109bb6109b56007546001600160a01b031690565b82611108565b506001600655565b61076183838360405180602001604052806000815250610b6d565b6007546001600160a01b03163314610a085760405162461bcd60e51b815260040161050d90611a52565b8051610a1b90600a90602084019061166a565b5050565b6000818152600260205260408120546001600160a01b0316806104dd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161050d565b60006001600160a01b038216610b015760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161050d565b506001600160a01b031660009081526003602052604090205490565b6007546001600160a01b03163314610b475760405162461bcd60e51b815260040161050d90611a52565b610b516000611221565b565b60606001805461053890611a87565b610a1b338383611273565b610b773383610e71565b610b935760405162461bcd60e51b815260040161050d90611ac2565b610b9f84848484611342565b50505050565b6060610bb082611375565b604051602001610bc09190611b72565b6040516020818303038152906040529050919050565b6007546001600160a01b03163314610c005760405162461bcd60e51b815260040161050d90611a52565b6001600160a01b038116610c655760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161050d565b610c6e81611221565b50565b60006001600160e01b031982166380ac58cd60e01b1480610ca257506001600160e01b03198216635b5e139f60e01b145b806104dd57506301ffc9a760e01b6001600160e01b03198316146104dd565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610cf682610a1f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6001600160a01b038216610d855760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161050d565b6000818152600260205260409020546001600160a01b031615610dea5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161050d565b6001600160a01b0382166000908152600360205260408120805460019290610e13908490611b9b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000818152600260205260408120546001600160a01b0316610eea5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161050d565b6000610ef583610a1f565b9050806001600160a01b0316846001600160a01b03161480610f305750836001600160a01b0316610f25846105bb565b6001600160a01b0316145b80610f6057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610f7b82610a1f565b6001600160a01b031614610fe35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161050d565b6001600160a01b0382166110455760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161050d565b611050600082610cc1565b6001600160a01b0383166000908152600360205260408120805460019290611079908490611bb3565b90915550506001600160a01b03821660009081526003602052604081208054600192906110a7908490611b9b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b804710156111585760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161050d565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146111a5576040519150601f19603f3d011682016040523d82523d6000602084013e6111aa565b606091505b50509050806107615760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161050d565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156112d55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161050d565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61134d848484610f68565b61135984848484611450565b610b9f5760405162461bcd60e51b815260040161050d90611bca565b6000818152600260205260409020546060906001600160a01b03166113f45760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161050d565b60006113fe61155d565b9050600081511161141e5760405180602001604052806000815250611449565b806114288461156c565b604051602001611439929190611c1c565b6040516020818303038152906040525b9392505050565b60006001600160a01b0384163b1561155257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611494903390899088908890600401611c4b565b602060405180830381600087803b1580156114ae57600080fd5b505af19250505080156114de575060408051601f3d908101601f191682019092526114db91810190611c88565b60015b611538573d80801561150c576040519150601f19603f3d011682016040523d82523d6000602084013e611511565b606091505b5080516115305760405162461bcd60e51b815260040161050d90611bca565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f60565b506001949350505050565b6060600a805461053890611a87565b6060816115905750506040805180820190915260018152600360fc1b602082015290565b8160005b81156115ba57806115a481611ca5565b91506115b39050600a83611b5e565b9150611594565b60008167ffffffffffffffff8111156115d5576115d5611889565b6040519080825280601f01601f1916602001820160405280156115ff576020820181803683370190505b5090505b8415610f6057611614600183611bb3565b9150611621600a86611cc0565b61162c906030611b9b565b60f81b81838151811061164157611641611cd4565b60200101906001600160f81b031916908160001a905350611663600a86611b5e565b9450611603565b82805461167690611a87565b90600052602060002090601f01602090048101928261169857600085556116de565b82601f106116b157805160ff19168380011785556116de565b828001600101855582156116de579182015b828111156116de5782518255916020019190600101906116c3565b506116ea9291506116ee565b5090565b5b808211156116ea57600081556001016116ef565b6001600160e01b031981168114610c6e57600080fd5b60006020828403121561172b57600080fd5b813561144981611703565b8035801515811461174657600080fd5b919050565b60006020828403121561175d57600080fd5b61144982611736565b60005b83811015611781578181015183820152602001611769565b83811115610b9f5750506000910152565b600081518084526117aa816020860160208601611766565b601f01601f19169290920160200192915050565b6020815260006114496020830184611792565b6000602082840312156117e357600080fd5b5035919050565b80356001600160a01b038116811461174657600080fd5b6000806040838503121561181457600080fd5b61181d836117ea565b946020939093013593505050565b60008060006060848603121561184057600080fd5b611849846117ea565b9250611857602085016117ea565b9150604084013590509250925092565b6000806040838503121561187a57600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156118ba576118ba611889565b604051601f8501601f19908116603f011681019082821181831017156118e2576118e2611889565b816040528093508581528686860111156118fb57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561192757600080fd5b813567ffffffffffffffff81111561193e57600080fd5b8201601f8101841361194f57600080fd5b610f608482356020840161189f565b60006020828403121561197057600080fd5b611449826117ea565b6000806040838503121561198c57600080fd5b611995836117ea565b91506119a360208401611736565b90509250929050565b600080600080608085870312156119c257600080fd5b6119cb856117ea565b93506119d9602086016117ea565b925060408501359150606085013567ffffffffffffffff8111156119fc57600080fd5b8501601f81018713611a0d57600080fd5b611a1c8782356020840161189f565b91505092959194509250565b60008060408385031215611a3b57600080fd5b611a44836117ea565b91506119a3602084016117ea565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611a9b57607f821691505b60208210811415611abc57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611b4357611b43611b13565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611b6d57611b6d611b48565b500490565b60008251611b84818460208701611766565b64173539b7b760d91b920191825250600501919050565b60008219821115611bae57611bae611b13565b500190565b600082821015611bc557611bc5611b13565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008351611c2e818460208801611766565b835190830190611c42818360208801611766565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c7e90830184611792565b9695505050505050565b600060208284031215611c9a57600080fd5b815161144981611703565b6000600019821415611cb957611cb9611b13565b5060010190565b600082611ccf57611ccf611b48565b500690565b634e487b7160e01b600052603260045260246000fdfea264697066735822122059c778c4526e691e86a13f5b14b72c48f587f9ed1d73a44c4526c0de03d213da64736f6c6343000809003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101665760003560e01c806355f804b3116100d157806395d89b411161008a578063c87b56dd11610064578063c87b56dd14610415578063e985e9c514610435578063eb8d24441461047e578063f2fde38b1461049857600080fd5b806395d89b41146103c0578063a22cb465146103d5578063b88d4fde146103f557600080fd5b806355f804b3146103115780636352211e1461033157806370a0823114610351578063715018a6146103715780638d859f3e146103865780638da5cb5b146103a257600080fd5b806318160ddd1161012357806318160ddd1461024457806323b872dd146102675780632a55205a1461028757806332cb6b0c146102c65780633ccfd60b146102dc57806342842e0e146102f157600080fd5b806301ffc9a71461016b57806302c88989146101a057806306fdde03146101c2578063081812fc146101e4578063095ea7b31461021c5780631249c58b1461023c575b600080fd5b34801561017757600080fd5b5061018b610186366004611719565b6104b8565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506101c06101bb36600461174b565b6104e3565b005b3480156101ce57600080fd5b506101d7610529565b60405161019791906117be565b3480156101f057600080fd5b506102046101ff3660046117d1565b6105bb565b6040516001600160a01b039091168152602001610197565b34801561022857600080fd5b506101c0610237366004611801565b610650565b6101c0610766565b34801561025057600080fd5b506102596108de565b604051908152602001610197565b34801561027357600080fd5b506101c061028236600461182b565b6108ee565b34801561029357600080fd5b506102a76102a2366004611867565b61091f565b604080516001600160a01b039093168352602083019190915201610197565b3480156102d257600080fd5b5061025961017181565b3480156102e857600080fd5b506101c0610947565b3480156102fd57600080fd5b506101c061030c36600461182b565b6109c3565b34801561031d57600080fd5b506101c061032c366004611915565b6109de565b34801561033d57600080fd5b5061020461034c3660046117d1565b610a1f565b34801561035d57600080fd5b5061025961036c36600461195e565b610a96565b34801561037d57600080fd5b506101c0610b1d565b34801561039257600080fd5b50610259670258689ac70a800081565b3480156103ae57600080fd5b506007546001600160a01b0316610204565b3480156103cc57600080fd5b506101d7610b53565b3480156103e157600080fd5b506101c06103f0366004611979565b610b62565b34801561040157600080fd5b506101c06104103660046119ac565b610b6d565b34801561042157600080fd5b506101d76104303660046117d1565b610ba5565b34801561044157600080fd5b5061018b610450366004611a28565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561048a57600080fd5b5060095461018b9060ff1681565b3480156104a457600080fd5b506101c06104b336600461195e565b610bd6565b60006001600160e01b0319821663152a902d60e11b14806104dd57506104dd82610c71565b92915050565b6007546001600160a01b031633146105165760405162461bcd60e51b815260040161050d90611a52565b60405180910390fd5b6009805460ff1916911515919091179055565b60606000805461053890611a87565b80601f016020809104026020016040519081016040528092919081815260200182805461056490611a87565b80156105b15780601f10610586576101008083540402835291602001916105b1565b820191906000526020600020905b81548152906001019060200180831161059457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106345760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161050d565b506000908152600460205260409020546001600160a01b031690565b600061065b82610a1f565b9050806001600160a01b0316836001600160a01b031614156106c95760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161050d565b336001600160a01b03821614806106e557506106e58133610450565b6107575760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161050d565b6107618383610cc1565b505050565b600260065414156107b95760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161050d565b600260065560095460ff166108025760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b604482015260640161050d565b61017161080d6108de565b1061084f5760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b604482015260640161050d565b670258689ac70a80003410156108b85760405162461bcd60e51b815260206004820152602860248201527f496e73756666696369656e74207061796d656e742c20302e3136392045544820604482015267706572206974656d60c01b606482015260840161050d565b6108c9336108c46108de565b610d2f565b6108d7600880546001019055565b6001600655565b60006108e960085490565b905090565b6108f83382610e71565b6109145760405162461bcd60e51b815260040161050d90611ac2565b610761838383610f68565b60008030612710610932856103e8611b29565b61093c9190611b5e565b915091509250929050565b6002600654141561099a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161050d565b6002600655476109bb6109b56007546001600160a01b031690565b82611108565b506001600655565b61076183838360405180602001604052806000815250610b6d565b6007546001600160a01b03163314610a085760405162461bcd60e51b815260040161050d90611a52565b8051610a1b90600a90602084019061166a565b5050565b6000818152600260205260408120546001600160a01b0316806104dd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161050d565b60006001600160a01b038216610b015760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161050d565b506001600160a01b031660009081526003602052604090205490565b6007546001600160a01b03163314610b475760405162461bcd60e51b815260040161050d90611a52565b610b516000611221565b565b60606001805461053890611a87565b610a1b338383611273565b610b773383610e71565b610b935760405162461bcd60e51b815260040161050d90611ac2565b610b9f84848484611342565b50505050565b6060610bb082611375565b604051602001610bc09190611b72565b6040516020818303038152906040529050919050565b6007546001600160a01b03163314610c005760405162461bcd60e51b815260040161050d90611a52565b6001600160a01b038116610c655760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161050d565b610c6e81611221565b50565b60006001600160e01b031982166380ac58cd60e01b1480610ca257506001600160e01b03198216635b5e139f60e01b145b806104dd57506301ffc9a760e01b6001600160e01b03198316146104dd565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610cf682610a1f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6001600160a01b038216610d855760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161050d565b6000818152600260205260409020546001600160a01b031615610dea5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161050d565b6001600160a01b0382166000908152600360205260408120805460019290610e13908490611b9b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000818152600260205260408120546001600160a01b0316610eea5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161050d565b6000610ef583610a1f565b9050806001600160a01b0316846001600160a01b03161480610f305750836001600160a01b0316610f25846105bb565b6001600160a01b0316145b80610f6057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610f7b82610a1f565b6001600160a01b031614610fe35760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161050d565b6001600160a01b0382166110455760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161050d565b611050600082610cc1565b6001600160a01b0383166000908152600360205260408120805460019290611079908490611bb3565b90915550506001600160a01b03821660009081526003602052604081208054600192906110a7908490611b9b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b804710156111585760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161050d565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146111a5576040519150601f19603f3d011682016040523d82523d6000602084013e6111aa565b606091505b50509050806107615760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161050d565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156112d55760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161050d565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61134d848484610f68565b61135984848484611450565b610b9f5760405162461bcd60e51b815260040161050d90611bca565b6000818152600260205260409020546060906001600160a01b03166113f45760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161050d565b60006113fe61155d565b9050600081511161141e5760405180602001604052806000815250611449565b806114288461156c565b604051602001611439929190611c1c565b6040516020818303038152906040525b9392505050565b60006001600160a01b0384163b1561155257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611494903390899088908890600401611c4b565b602060405180830381600087803b1580156114ae57600080fd5b505af19250505080156114de575060408051601f3d908101601f191682019092526114db91810190611c88565b60015b611538573d80801561150c576040519150601f19603f3d011682016040523d82523d6000602084013e611511565b606091505b5080516115305760405162461bcd60e51b815260040161050d90611bca565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f60565b506001949350505050565b6060600a805461053890611a87565b6060816115905750506040805180820190915260018152600360fc1b602082015290565b8160005b81156115ba57806115a481611ca5565b91506115b39050600a83611b5e565b9150611594565b60008167ffffffffffffffff8111156115d5576115d5611889565b6040519080825280601f01601f1916602001820160405280156115ff576020820181803683370190505b5090505b8415610f6057611614600183611bb3565b9150611621600a86611cc0565b61162c906030611b9b565b60f81b81838151811061164157611641611cd4565b60200101906001600160f81b031916908160001a905350611663600a86611b5e565b9450611603565b82805461167690611a87565b90600052602060002090601f01602090048101928261169857600085556116de565b82601f106116b157805160ff19168380011785556116de565b828001600101855582156116de579182015b828111156116de5782518255916020019190600101906116c3565b506116ea9291506116ee565b5090565b5b808211156116ea57600081556001016116ef565b6001600160e01b031981168114610c6e57600080fd5b60006020828403121561172b57600080fd5b813561144981611703565b8035801515811461174657600080fd5b919050565b60006020828403121561175d57600080fd5b61144982611736565b60005b83811015611781578181015183820152602001611769565b83811115610b9f5750506000910152565b600081518084526117aa816020860160208601611766565b601f01601f19169290920160200192915050565b6020815260006114496020830184611792565b6000602082840312156117e357600080fd5b5035919050565b80356001600160a01b038116811461174657600080fd5b6000806040838503121561181457600080fd5b61181d836117ea565b946020939093013593505050565b60008060006060848603121561184057600080fd5b611849846117ea565b9250611857602085016117ea565b9150604084013590509250925092565b6000806040838503121561187a57600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156118ba576118ba611889565b604051601f8501601f19908116603f011681019082821181831017156118e2576118e2611889565b816040528093508581528686860111156118fb57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561192757600080fd5b813567ffffffffffffffff81111561193e57600080fd5b8201601f8101841361194f57600080fd5b610f608482356020840161189f565b60006020828403121561197057600080fd5b611449826117ea565b6000806040838503121561198c57600080fd5b611995836117ea565b91506119a360208401611736565b90509250929050565b600080600080608085870312156119c257600080fd5b6119cb856117ea565b93506119d9602086016117ea565b925060408501359150606085013567ffffffffffffffff8111156119fc57600080fd5b8501601f81018713611a0d57600080fd5b611a1c8782356020840161189f565b91505092959194509250565b60008060408385031215611a3b57600080fd5b611a44836117ea565b91506119a3602084016117ea565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611a9b57607f821691505b60208210811415611abc57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611b4357611b43611b13565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611b6d57611b6d611b48565b500490565b60008251611b84818460208701611766565b64173539b7b760d91b920191825250600501919050565b60008219821115611bae57611bae611b13565b500190565b600082821015611bc557611bc5611b13565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008351611c2e818460208801611766565b835190830190611c42818360208801611766565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c7e90830184611792565b9695505050505050565b600060208284031215611c9a57600080fd5b815161144981611703565b6000600019821415611cb957611cb9611b13565b5060010190565b600082611ccf57611ccf611b48565b500690565b634e487b7160e01b600052603260045260246000fdfea264697066735822122059c778c4526e691e86a13f5b14b72c48f587f9ed1d73a44c4526c0de03d213da64736f6c63430008090033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : customBaseURI_ (string):

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

51934:2153:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53824:260;;;;;;;;;;-1:-1:-1;53824:260:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;53824:260:0;;;;;;;;52855:105;;;;;;;;;;-1:-1:-1;52855:105:0;;;;;:::i;:::-;;:::i;:::-;;29879:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31438:221::-;;;;;;;;;;-1:-1:-1;31438:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2042:32:1;;;2024:51;;2012:2;1997:18;31438:221:0;1878:203:1;30961:411:0;;;;;;;;;;-1:-1:-1;30961:411:0;;;;;:::i;:::-;;:::i;52367:318::-;;;:::i;52691:96::-;;;;;;;;;;;;;:::i;:::-;;;2669:25:1;;;2657:2;2642:18;52691:96:0;2523:177:1;32188:339:0;;;;;;;;;;-1:-1:-1;32188:339:0;;;;;:::i;:::-;;:::i;53625:193::-;;;;;;;;;;-1:-1:-1;53625:193:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3483:32:1;;;3465:51;;3547:2;3532:18;;3525:34;;;;3438:18;53625:193:0;3291:274:1;52218:40:0;;;;;;;;;;;;52255:3;52218:40;;53451:145;;;;;;;;;;;;;:::i;32598:185::-;;;;;;;;;;-1:-1:-1;32598:185:0;;;;;:::i;:::-;;:::i;53027:112::-;;;;;;;;;;-1:-1:-1;53027:112:0;;;;;:::i;:::-;;:::i;29573:239::-;;;;;;;;;;-1:-1:-1;29573:239:0;;;;;:::i;:::-;;:::i;29303:208::-;;;;;;;;;;-1:-1:-1;29303:208:0;;;;;:::i;:::-;;:::i;8954:103::-;;;;;;;;;;;;;:::i;52265:50::-;;;;;;;;;;;;52297:18;52265:50;;8303:87;;;;;;;;;;-1:-1:-1;8376:6:0;;-1:-1:-1;;;;;8376:6:0;8303:87;;30048:104;;;;;;;;;;;;;:::i;31731:155::-;;;;;;;;;;-1:-1:-1;31731:155:0;;;;;:::i;:::-;;:::i;32854:328::-;;;;;;;;;;-1:-1:-1;32854:328:0;;;;;:::i;:::-;;:::i;53259:166::-;;;;;;;;;;-1:-1:-1;53259:166:0;;;;;:::i;:::-;;:::i;31957:164::-;;;;;;;;;;-1:-1:-1;31957:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;32078:25:0;;;32054:4;32078:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31957:164;52817:31;;;;;;;;;;-1:-1:-1;52817:31:0;;;;;;;;9212:201;;;;;;;;;;-1:-1:-1;9212:201:0;;;;;:::i;:::-;;:::i;53824:260::-;53951:4;-1:-1:-1;;;;;;53983:41:0;;-1:-1:-1;;;53983:41:0;;:88;;;54035:36;54059:11;54035:23;:36::i;:::-;53967:111;53824:260;-1:-1:-1;;53824:260:0:o;52855:105::-;8376:6;;-1:-1:-1;;;;;8376:6:0;7107:10;8523:23;8515:68;;;;-1:-1:-1;;;8515:68:0;;;;;;;:::i;:::-;;;;;;;;;52926:12:::1;:28:::0;;-1:-1:-1;;52926:28:0::1;::::0;::::1;;::::0;;;::::1;::::0;;52855:105::o;29879:100::-;29933:13;29966:5;29959:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29879:100;:::o;31438:221::-;31514:7;34781:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34781:16:0;31534:73;;;;-1:-1:-1;;;31534:73:0;;7130:2:1;31534:73:0;;;7112:21:1;7169:2;7149:18;;;7142:30;7208:34;7188:18;;;7181:62;-1:-1:-1;;;7259:18:1;;;7252:42;7311:19;;31534:73:0;6928:408:1;31534:73:0;-1:-1:-1;31627:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31627:24:0;;31438:221::o;30961:411::-;31042:13;31058:23;31073:7;31058:14;:23::i;:::-;31042:39;;31106:5;-1:-1:-1;;;;;31100:11:0;:2;-1:-1:-1;;;;;31100:11:0;;;31092:57;;;;-1:-1:-1;;;31092:57:0;;7543:2:1;31092:57:0;;;7525:21:1;7582:2;7562:18;;;7555:30;7621:34;7601:18;;;7594:62;-1:-1:-1;;;7672:18:1;;;7665:31;7713:19;;31092:57:0;7341:397:1;31092:57:0;7107:10;-1:-1:-1;;;;;31184:21:0;;;;:62;;-1:-1:-1;31209:37:0;31226:5;7107:10;31957:164;:::i;31209:37::-;31162:168;;;;-1:-1:-1;;;31162:168:0;;7945:2:1;31162:168:0;;;7927:21:1;7984:2;7964:18;;;7957:30;8023:34;8003:18;;;7996:62;8094:26;8074:18;;;8067:54;8138:19;;31162:168:0;7743:420:1;31162:168:0;31343:21;31352:2;31356:7;31343:8;:21::i;:::-;31031:341;30961:411;;:::o;52367:318::-;3277:1;3875:7;;:19;;3867:63;;;;-1:-1:-1;;;3867:63:0;;8370:2:1;3867:63:0;;;8352:21:1;8409:2;8389:18;;;8382:30;8448:33;8428:18;;;8421:61;8499:18;;3867:63:0;8168:355:1;3867:63:0;3277:1;4008:7;:18;52426:12:::1;::::0;::::1;;52418:40;;;::::0;-1:-1:-1;;;52418:40:0;;8730:2:1;52418:40:0::1;::::0;::::1;8712:21:1::0;8769:2;8749:18;;;8742:30;-1:-1:-1;;;8788:18:1;;;8781:45;8843:18;;52418:40:0::1;8528:339:1::0;52418:40:0::1;52255:3;52475:13;:11;:13::i;:::-;:26;52467:57;;;::::0;-1:-1:-1;;;52467:57:0;;9074:2:1;52467:57:0::1;::::0;::::1;9056:21:1::0;9113:2;9093:18;;;9086:30;-1:-1:-1;;;9132:18:1;;;9125:48;9190:18;;52467:57:0::1;8872:342:1::0;52467:57:0::1;52297:18;52541:9;:18;;52533:71;;;::::0;-1:-1:-1;;;52533:71:0;;9421:2:1;52533:71:0::1;::::0;::::1;9403:21:1::0;9460:2;9440:18;;;9433:30;9499:34;9479:18;;;9472:62;-1:-1:-1;;;9550:18:1;;;9543:38;9598:19;;52533:71:0::1;9219:404:1::0;52533:71:0::1;52613:32;52619:10;52631:13;:11;:13::i;:::-;52613:5;:32::i;:::-;52654:25;:13;1083:19:::0;;1101:1;1083:19;;;994:127;52654:25:::1;3233:1:::0;4187:7;:22;52367:318::o;52691:96::-;52735:7;52758:23;:13;964:14;;872:114;52758:23;52751:30;;52691:96;:::o;32188:339::-;32383:41;7107:10;32416:7;32383:18;:41::i;:::-;32375:103;;;;-1:-1:-1;;;32375:103:0;;;;;;;:::i;:::-;32491:28;32501:4;32507:2;32511:7;32491:9;:28::i;53625:193::-;53711:16;;53778:4;53806:5;53786:16;:9;53798:4;53786:16;:::i;:::-;53785:26;;;;:::i;:::-;53762:50;;;;53625:193;;;;;:::o;53451:145::-;3277:1;3875:7;;:19;;3867:63;;;;-1:-1:-1;;;3867:63:0;;8370:2:1;3867:63:0;;;8352:21:1;8409:2;8389:18;;;8382:30;8448:33;8428:18;;;8421:61;8499:18;;3867:63:0;8168:355:1;3867:63:0;3277:1;4008:7;:18;53516:21:::1;53546:44;53572:7;8376:6:::0;;-1:-1:-1;;;;;8376:6:0;;8303:87;53572:7:::1;53582;53546:17;:44::i;:::-;-1:-1:-1::0;3233:1:0;4187:7;:22;53451:145::o;32598:185::-;32736:39;32753:4;32759:2;32763:7;32736:39;;;;;;;;;;;;:16;:39::i;53027:112::-;8376:6;;-1:-1:-1;;;;;8376:6:0;7107:10;8523:23;8515:68;;;;-1:-1:-1;;;8515:68:0;;;;;;;:::i;:::-;53103:30;;::::1;::::0;:13:::1;::::0;:30:::1;::::0;::::1;::::0;::::1;:::i;:::-;;53027:112:::0;:::o;29573:239::-;29645:7;29681:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29681:16:0;29716:19;29708:73;;;;-1:-1:-1;;;29708:73:0;;10810:2:1;29708:73:0;;;10792:21:1;10849:2;10829:18;;;10822:30;10888:34;10868:18;;;10861:62;-1:-1:-1;;;10939:18:1;;;10932:39;10988:19;;29708:73:0;10608:405:1;29303:208:0;29375:7;-1:-1:-1;;;;;29403:19:0;;29395:74;;;;-1:-1:-1;;;29395:74:0;;11220:2:1;29395:74:0;;;11202:21:1;11259:2;11239:18;;;11232:30;11298:34;11278:18;;;11271:62;-1:-1:-1;;;11349:18:1;;;11342:40;11399:19;;29395:74:0;11018:406:1;29395:74:0;-1:-1:-1;;;;;;29487:16:0;;;;;:9;:16;;;;;;;29303:208::o;8954:103::-;8376:6;;-1:-1:-1;;;;;8376:6:0;7107:10;8523:23;8515:68;;;;-1:-1:-1;;;8515:68:0;;;;;;;:::i;:::-;9019:30:::1;9046:1;9019:18;:30::i;:::-;8954:103::o:0;30048:104::-;30104:13;30137:7;30130:14;;;;;:::i;31731:155::-;31826:52;7107:10;31859:8;31869;31826:18;:52::i;32854:328::-;33029:41;7107:10;33062:7;33029:18;:41::i;:::-;33021:103;;;;-1:-1:-1;;;33021:103:0;;;;;;;:::i;:::-;33135:39;33149:4;33155:2;33159:7;33168:5;33135:13;:39::i;:::-;32854:328;;;;:::o;53259:166::-;53329:13;53385:23;53400:7;53385:14;:23::i;:::-;53368:50;;;;;;;;:::i;:::-;;;;;;;;;;;;;53354:65;;53259:166;;;:::o;9212:201::-;8376:6;;-1:-1:-1;;;;;8376:6:0;7107:10;8523:23;8515:68;;;;-1:-1:-1;;;8515:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;9301:22:0;::::1;9293:73;;;::::0;-1:-1:-1;;;9293:73:0;;12079:2:1;9293:73:0::1;::::0;::::1;12061:21:1::0;12118:2;12098:18;;;12091:30;12157:34;12137:18;;;12130:62;-1:-1:-1;;;12208:18:1;;;12201:36;12254:19;;9293:73:0::1;11877:402:1::0;9293:73:0::1;9377:28;9396:8;9377:18;:28::i;:::-;9212:201:::0;:::o;28934:305::-;29036:4;-1:-1:-1;;;;;;29073:40:0;;-1:-1:-1;;;29073:40:0;;:105;;-1:-1:-1;;;;;;;29130:48:0;;-1:-1:-1;;;29130:48:0;29073:105;:158;;;-1:-1:-1;;;;;;;;;;21812:40:0;;;29195:36;21703:157;38674:174;38749:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;38749:29:0;-1:-1:-1;;;;;38749:29:0;;;;;;;;:24;;38803:23;38749:24;38803:14;:23::i;:::-;-1:-1:-1;;;;;38794:46:0;;;;;;;;;;;38674:174;;:::o;36670:382::-;-1:-1:-1;;;;;36750:16:0;;36742:61;;;;-1:-1:-1;;;36742:61:0;;12486:2:1;36742:61:0;;;12468:21:1;;;12505:18;;;12498:30;12564:34;12544:18;;;12537:62;12616:18;;36742:61:0;12284:356:1;36742:61:0;34757:4;34781:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34781:16:0;:30;36814:58;;;;-1:-1:-1;;;36814:58:0;;12847:2:1;36814:58:0;;;12829:21:1;12886:2;12866:18;;;12859:30;12925;12905:18;;;12898:58;12973:18;;36814:58:0;12645:352:1;36814:58:0;-1:-1:-1;;;;;36943:13:0;;;;;;:9;:13;;;;;:18;;36960:1;;36943:13;:18;;36960:1;;36943:18;:::i;:::-;;;;-1:-1:-1;;36972:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36972:21:0;-1:-1:-1;;;;;36972:21:0;;;;;;;;37011:33;;36972:16;;;37011:33;;36972:16;;37011:33;36670:382;;:::o;34986:348::-;35079:4;34781:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34781:16:0;35096:73;;;;-1:-1:-1;;;35096:73:0;;13337:2:1;35096:73:0;;;13319:21:1;13376:2;13356:18;;;13349:30;13415:34;13395:18;;;13388:62;-1:-1:-1;;;13466:18:1;;;13459:42;13518:19;;35096:73:0;13135:408:1;35096:73:0;35180:13;35196:23;35211:7;35196:14;:23::i;:::-;35180:39;;35249:5;-1:-1:-1;;;;;35238:16:0;:7;-1:-1:-1;;;;;35238:16:0;;:51;;;;35282:7;-1:-1:-1;;;;;35258:31:0;:20;35270:7;35258:11;:20::i;:::-;-1:-1:-1;;;;;35258:31:0;;35238:51;:87;;;-1:-1:-1;;;;;;32078:25:0;;;32054:4;32078:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;35293:32;35230:96;34986:348;-1:-1:-1;;;;34986:348:0:o;37978:578::-;38137:4;-1:-1:-1;;;;;38110:31:0;:23;38125:7;38110:14;:23::i;:::-;-1:-1:-1;;;;;38110:31:0;;38102:85;;;;-1:-1:-1;;;38102:85:0;;13750:2:1;38102:85:0;;;13732:21:1;13789:2;13769:18;;;13762:30;13828:34;13808:18;;;13801:62;-1:-1:-1;;;13879:18:1;;;13872:39;13928:19;;38102:85:0;13548:405:1;38102:85:0;-1:-1:-1;;;;;38206:16:0;;38198:65;;;;-1:-1:-1;;;38198:65:0;;14160:2:1;38198:65:0;;;14142:21:1;14199:2;14179:18;;;14172:30;14238:34;14218:18;;;14211:62;-1:-1:-1;;;14289:18:1;;;14282:34;14333:19;;38198:65:0;13958:400:1;38198:65:0;38380:29;38397:1;38401:7;38380:8;:29::i;:::-;-1:-1:-1;;;;;38422:15:0;;;;;;:9;:15;;;;;:20;;38441:1;;38422:15;:20;;38441:1;;38422:20;:::i;:::-;;;;-1:-1:-1;;;;;;;38453:13:0;;;;;;:9;:13;;;;;:18;;38470:1;;38453:13;:18;;38470:1;;38453:18;:::i;:::-;;;;-1:-1:-1;;38482:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38482:21:0;-1:-1:-1;;;;;38482:21:0;;;;;;;;;38521:27;;38482:16;;38521:27;;;;;;;37978:578;;;:::o;11913:317::-;12028:6;12003:21;:31;;11995:73;;;;-1:-1:-1;;;11995:73:0;;14695:2:1;11995:73:0;;;14677:21:1;14734:2;14714:18;;;14707:30;14773:31;14753:18;;;14746:59;14822:18;;11995:73:0;14493:353:1;11995:73:0;12082:12;12100:9;-1:-1:-1;;;;;12100:14:0;12122:6;12100:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12081:52;;;12152:7;12144:78;;;;-1:-1:-1;;;12144:78:0;;15263:2:1;12144:78:0;;;15245:21:1;15302:2;15282:18;;;15275:30;15341:34;15321:18;;;15314:62;15412:28;15392:18;;;15385:56;15458:19;;12144:78:0;15061:422:1;9573:191:0;9666:6;;;-1:-1:-1;;;;;9683:17:0;;;-1:-1:-1;;;;;;9683:17:0;;;;;;;9716:40;;9666:6;;;9683:17;9666:6;;9716:40;;9647:16;;9716:40;9636:128;9573:191;:::o;38990:315::-;39145:8;-1:-1:-1;;;;;39136:17:0;:5;-1:-1:-1;;;;;39136:17:0;;;39128:55;;;;-1:-1:-1;;;39128:55:0;;15690:2:1;39128:55:0;;;15672:21:1;15729:2;15709:18;;;15702:30;15768:27;15748:18;;;15741:55;15813:18;;39128:55:0;15488:349:1;39128:55:0;-1:-1:-1;;;;;39194:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;39194:46:0;;;;;;;;;;39256:41;;540::1;;;39256::0;;513:18:1;39256:41:0;;;;;;;38990:315;;;:::o;34064:::-;34221:28;34231:4;34237:2;34241:7;34221:9;:28::i;:::-;34268:48;34291:4;34297:2;34301:7;34310:5;34268:22;:48::i;:::-;34260:111;;;;-1:-1:-1;;;34260:111:0;;;;;;;:::i;30223:334::-;34757:4;34781:16;;;:7;:16;;;;;;30296:13;;-1:-1:-1;;;;;34781:16:0;30322:76;;;;-1:-1:-1;;;30322:76:0;;16463:2:1;30322:76:0;;;16445:21:1;16502:2;16482:18;;;16475:30;16541:34;16521:18;;;16514:62;-1:-1:-1;;;16592:18:1;;;16585:45;16647:19;;30322:76:0;16261:411:1;30322:76:0;30411:21;30435:10;:8;:10::i;:::-;30411:34;;30487:1;30469:7;30463:21;:25;:86;;;;;;;;;;;;;;;;;30515:7;30524:18;:7;:16;:18::i;:::-;30498:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30463:86;30456:93;30223:334;-1:-1:-1;;;30223:334:0:o;39870:799::-;40025:4;-1:-1:-1;;;;;40046:13:0;;10914:20;10962:8;40042:620;;40082:72;;-1:-1:-1;;;40082:72:0;;-1:-1:-1;;;;;40082:36:0;;;;;:72;;7107:10;;40133:4;;40139:7;;40148:5;;40082:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40082:72:0;;;;;;;;-1:-1:-1;;40082:72:0;;;;;;;;;;;;:::i;:::-;;;40078:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40324:13:0;;40320:272;;40367:60;;-1:-1:-1;;;40367:60:0;;;;;;;:::i;40320:272::-;40542:6;40536:13;40527:6;40523:2;40519:15;40512:38;40078:529;-1:-1:-1;;;;;;40205:51:0;-1:-1:-1;;;40205:51:0;;-1:-1:-1;40198:58:0;;40042:620;-1:-1:-1;40646:4:0;39870:799;;;;;;:::o;53145:108::-;53205:13;53234;53227:20;;;;;:::i;4589:723::-;4645:13;4866:10;4862:53;;-1:-1:-1;;4893:10:0;;;;;;;;;;;;-1:-1:-1;;;4893:10:0;;;;;4589:723::o;4862:53::-;4940:5;4925:12;4981:78;4988:9;;4981:78;;5014:8;;;;:::i;:::-;;-1:-1:-1;5037:10:0;;-1:-1:-1;5045:2:0;5037:10;;:::i;:::-;;;4981:78;;;5069:19;5101:6;5091:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5091:17:0;;5069:39;;5119:154;5126:10;;5119:154;;5153:11;5163:1;5153:11;;:::i;:::-;;-1:-1:-1;5222:10:0;5230:2;5222:5;:10;:::i;:::-;5209:24;;:2;:24;:::i;:::-;5196:39;;5179:6;5186;5179:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;5179:56:0;;;;;;;;-1:-1:-1;5250:11:0;5259:2;5250:11;;:::i;:::-;;;5119:154;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:258::-;1014:1;1024:113;1038:6;1035:1;1032:13;1024:113;;;1114:11;;;1108:18;1095:11;;;1088:39;1060:2;1053:10;1024:113;;;1155:6;1152:1;1149:13;1146:48;;;-1:-1:-1;;1190:1:1;1172:16;;1165:27;942:258::o;1205:::-;1247:3;1285:5;1279:12;1312:6;1307:3;1300:19;1328:63;1384:6;1377:4;1372:3;1368:14;1361:4;1354:5;1350:16;1328:63;:::i;:::-;1445:2;1424:15;-1:-1:-1;;1420:29:1;1411:39;;;;1452:4;1407:50;;1205:258;-1:-1:-1;;1205:258:1:o;1468:220::-;1617:2;1606:9;1599:21;1580:4;1637:45;1678:2;1667:9;1663:18;1655:6;1637:45;:::i;1693:180::-;1752:6;1805:2;1793:9;1784:7;1780:23;1776:32;1773:52;;;1821:1;1818;1811:12;1773:52;-1:-1:-1;1844:23:1;;1693:180;-1:-1:-1;1693:180:1:o;2086:173::-;2154:20;;-1:-1:-1;;;;;2203:31:1;;2193:42;;2183:70;;2249:1;2246;2239:12;2264:254;2332:6;2340;2393:2;2381:9;2372:7;2368:23;2364:32;2361:52;;;2409:1;2406;2399:12;2361:52;2432:29;2451:9;2432:29;:::i;:::-;2422:39;2508:2;2493:18;;;;2480:32;;-1:-1:-1;;;2264:254:1:o;2705:328::-;2782:6;2790;2798;2851:2;2839:9;2830:7;2826:23;2822:32;2819:52;;;2867:1;2864;2857:12;2819:52;2890:29;2909:9;2890:29;:::i;:::-;2880:39;;2938:38;2972:2;2961:9;2957:18;2938:38;:::i;:::-;2928:48;;3023:2;3012:9;3008:18;2995:32;2985:42;;2705:328;;;;;:::o;3038:248::-;3106:6;3114;3167:2;3155:9;3146:7;3142:23;3138:32;3135:52;;;3183:1;3180;3173:12;3135:52;-1:-1:-1;;3206:23:1;;;3276:2;3261:18;;;3248:32;;-1:-1:-1;3038:248:1:o;3570:127::-;3631:10;3626:3;3622:20;3619:1;3612:31;3662:4;3659:1;3652:15;3686:4;3683:1;3676:15;3702:632;3767:5;3797:18;3838:2;3830:6;3827:14;3824:40;;;3844:18;;:::i;:::-;3919:2;3913:9;3887:2;3973:15;;-1:-1:-1;;3969:24:1;;;3995:2;3965:33;3961:42;3949:55;;;4019:18;;;4039:22;;;4016:46;4013:72;;;4065:18;;:::i;:::-;4105:10;4101:2;4094:22;4134:6;4125:15;;4164:6;4156;4149:22;4204:3;4195:6;4190:3;4186:16;4183:25;4180:45;;;4221:1;4218;4211:12;4180:45;4271:6;4266:3;4259:4;4251:6;4247:17;4234:44;4326:1;4319:4;4310:6;4302;4298:19;4294:30;4287:41;;;;3702:632;;;;;:::o;4339:451::-;4408:6;4461:2;4449:9;4440:7;4436:23;4432:32;4429:52;;;4477:1;4474;4467:12;4429:52;4517:9;4504:23;4550:18;4542:6;4539:30;4536:50;;;4582:1;4579;4572:12;4536:50;4605:22;;4658:4;4650:13;;4646:27;-1:-1:-1;4636:55:1;;4687:1;4684;4677:12;4636:55;4710:74;4776:7;4771:2;4758:16;4753:2;4749;4745:11;4710:74;:::i;4795:186::-;4854:6;4907:2;4895:9;4886:7;4882:23;4878:32;4875:52;;;4923:1;4920;4913:12;4875:52;4946:29;4965:9;4946:29;:::i;4986:254::-;5051:6;5059;5112:2;5100:9;5091:7;5087:23;5083:32;5080:52;;;5128:1;5125;5118:12;5080:52;5151:29;5170:9;5151:29;:::i;:::-;5141:39;;5199:35;5230:2;5219:9;5215:18;5199:35;:::i;:::-;5189:45;;4986:254;;;;;:::o;5245:667::-;5340:6;5348;5356;5364;5417:3;5405:9;5396:7;5392:23;5388:33;5385:53;;;5434:1;5431;5424:12;5385:53;5457:29;5476:9;5457:29;:::i;:::-;5447:39;;5505:38;5539:2;5528:9;5524:18;5505:38;:::i;:::-;5495:48;;5590:2;5579:9;5575:18;5562:32;5552:42;;5645:2;5634:9;5630:18;5617:32;5672:18;5664:6;5661:30;5658:50;;;5704:1;5701;5694:12;5658:50;5727:22;;5780:4;5772:13;;5768:27;-1:-1:-1;5758:55:1;;5809:1;5806;5799:12;5758:55;5832:74;5898:7;5893:2;5880:16;5875:2;5871;5867:11;5832:74;:::i;:::-;5822:84;;;5245:667;;;;;;;:::o;5917:260::-;5985:6;5993;6046:2;6034:9;6025:7;6021:23;6017:32;6014:52;;;6062:1;6059;6052:12;6014:52;6085:29;6104:9;6085:29;:::i;:::-;6075:39;;6133:38;6167:2;6156:9;6152:18;6133:38;:::i;6182:356::-;6384:2;6366:21;;;6403:18;;;6396:30;6462:34;6457:2;6442:18;;6435:62;6529:2;6514:18;;6182:356::o;6543:380::-;6622:1;6618:12;;;;6665;;;6686:61;;6740:4;6732:6;6728:17;6718:27;;6686:61;6793:2;6785:6;6782:14;6762:18;6759:38;6756:161;;;6839:10;6834:3;6830:20;6827:1;6820:31;6874:4;6871:1;6864:15;6902:4;6899:1;6892:15;6756:161;;6543:380;;;:::o;9628:413::-;9830:2;9812:21;;;9869:2;9849:18;;;9842:30;9908:34;9903:2;9888:18;;9881:62;-1:-1:-1;;;9974:2:1;9959:18;;9952:47;10031:3;10016:19;;9628:413::o;10046:127::-;10107:10;10102:3;10098:20;10095:1;10088:31;10138:4;10135:1;10128:15;10162:4;10159:1;10152:15;10178:168;10218:7;10284:1;10280;10276:6;10272:14;10269:1;10266:21;10261:1;10254:9;10247:17;10243:45;10240:71;;;10291:18;;:::i;:::-;-1:-1:-1;10331:9:1;;10178:168::o;10351:127::-;10412:10;10407:3;10403:20;10400:1;10393:31;10443:4;10440:1;10433:15;10467:4;10464:1;10457:15;10483:120;10523:1;10549;10539:35;;10554:18;;:::i;:::-;-1:-1:-1;10588:9:1;;10483:120::o;11429:443::-;11661:3;11699:6;11693:13;11715:53;11761:6;11756:3;11749:4;11741:6;11737:17;11715:53;:::i;:::-;-1:-1:-1;;;11790:16:1;;11815:22;;;-1:-1:-1;11864:1:1;11853:13;;11429:443;-1:-1:-1;11429:443:1:o;13002:128::-;13042:3;13073:1;13069:6;13066:1;13063:13;13060:39;;;13079:18;;:::i;:::-;-1:-1:-1;13115:9:1;;13002:128::o;14363:125::-;14403:4;14431:1;14428;14425:8;14422:34;;;14436:18;;:::i;:::-;-1:-1:-1;14473:9:1;;14363:125::o;15842:414::-;16044:2;16026:21;;;16083:2;16063:18;;;16056:30;16122:34;16117:2;16102:18;;16095:62;-1:-1:-1;;;16188:2:1;16173:18;;16166:48;16246:3;16231:19;;15842:414::o;16677:470::-;16856:3;16894:6;16888:13;16910:53;16956:6;16951:3;16944:4;16936:6;16932:17;16910:53;:::i;:::-;17026:13;;16985:16;;;;17048:57;17026:13;16985:16;17082:4;17070:17;;17048:57;:::i;:::-;17121:20;;16677:470;-1:-1:-1;;;;16677:470:1:o;17152:489::-;-1:-1:-1;;;;;17421:15:1;;;17403:34;;17473:15;;17468:2;17453:18;;17446:43;17520:2;17505:18;;17498:34;;;17568:3;17563:2;17548:18;;17541:31;;;17346:4;;17589:46;;17615:19;;17607:6;17589:46;:::i;:::-;17581:54;17152:489;-1:-1:-1;;;;;;17152:489:1:o;17646:249::-;17715:6;17768:2;17756:9;17747:7;17743:23;17739:32;17736:52;;;17784:1;17781;17774:12;17736:52;17816:9;17810:16;17835:30;17859:5;17835:30;:::i;17900:135::-;17939:3;-1:-1:-1;;17960:17:1;;17957:43;;;17980:18;;:::i;:::-;-1:-1:-1;18027:1:1;18016:13;;17900:135::o;18040:112::-;18072:1;18098;18088:35;;18103:18;;:::i;:::-;-1:-1:-1;18137:9:1;;18040:112::o;18157:127::-;18218:10;18213:3;18209:20;18206:1;18199:31;18249:4;18246:1;18239:15;18273:4;18270:1;18263:15

Swarm Source

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