ETH Price: $3,468.19 (+2.18%)
Gas: 14 Gwei

Token

 

Overview

Max Total Supply

3,000

Holders

1

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
0xf557597fed3f7fbfb2d4cc7ce304e2e4b7927053
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
EsionMusic

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : EsionMusic.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.7;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/token/common/ERC2981.sol";

contract EsionMusic is ERC1155, ERC2981, Ownable {
    uint256 private constant eachTokenAmount = 500;
    uint8 public constant INTRO = 0;
    uint8 public constant MOMMYSON = 1;
    uint8 public constant CHANJU = 2;
    uint8 public constant WONSTEINZIORPARK = 3;
    uint8 public constant SIONJUNG = 4;
    uint8 public constant OUTTRO = 5;
    uint8 public constant LAST_TOKEN_ID = OUTTRO;

    string private metadataUri = "";

    using Strings for uint256;

    constructor(
        string memory _metadataUri,
        address _royaltyReceiver,
        uint96 _royaltyFeeNumerator
    ) ERC1155(_metadataUri) {
        _mint(msg.sender, INTRO, eachTokenAmount, "");
        _mint(msg.sender, MOMMYSON, eachTokenAmount, "");
        _mint(msg.sender, CHANJU, eachTokenAmount, "");
        _mint(msg.sender, WONSTEINZIORPARK, eachTokenAmount, "");
        _mint(msg.sender, SIONJUNG, eachTokenAmount, "");
        _mint(msg.sender, OUTTRO, eachTokenAmount, "");
        _setDefaultRoyalty(_royaltyReceiver, _royaltyFeeNumerator);

        metadataUri = _metadataUri;
    }

    function uri(uint256 _id) public view virtual override returns (string memory) {
        require(_isTokenExist(_id), "Not Exist Token");
        return string(abi.encodePacked(metadataUri, _id.toString()));
    }

    function contractURI() public view returns (string memory) {
        return string(abi.encodePacked(metadataUri, "contractURI"));
    }

    function _isTokenExist(uint256 _id) private pure returns (bool) {
        return _id <= LAST_TOKEN_ID;
    }

    function setMetadataUri(string calldata _metadataUri) external onlyOwner {
        metadataUri = _metadataUri;
    }

    function burn(
        address from,
        uint256 id,
        uint256 amount
    ) external onlyOwner {
        _burn(from, id, amount);
    }

    function mint(
        address from,
        uint256 id,
        uint256 amount
    ) external onlyOwner {
        _mint(from, id, amount, "");
    }

    function setDefaultRoyalty(address receiver, uint96 feeNumerator) external onlyOwner {
        super._setDefaultRoyalty(receiver, feeNumerator);
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC1155, ERC2981) returns (bool) {
        return super.supportsInterface(interfaceId);
    }
}

File 2 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @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 3 of 14 : ERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;

import "./IERC1155.sol";
import "./IERC1155Receiver.sol";
import "./extensions/IERC1155MetadataURI.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

    // Mapping from account to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC1155).interfaceId ||
            interfaceId == type(IERC1155MetadataURI).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: balance query for the zero address");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC1155-isApprovedForAll}.
     */
    function isApprovedForAll(address account, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[account][operator];
    }

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, _asSingletonArray(id), _asSingletonArray(amount), data);

        _balances[id][to] += amount;
        emit TransferSingle(operator, address(0), to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `from`
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address from,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }

        emit TransferSingle(operator, from, address(0), id, amount);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address from,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

        emit TransferBatch(operator, from, address(0), ids, amounts);
    }

    /**
     * @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, "ERC1155: setting approval status for self");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

File 4 of 14 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 5 of 14 : ERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;

import "../../interfaces/IERC2981.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) {
        return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice)
        external
        view
        virtual
        override
        returns (address, uint256)
    {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `tokenId` must be already minted.
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

File 6 of 14 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 7 of 14 : IERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

File 8 of 14 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
     * @dev Handles the receipt of a single ERC1155 token type. This function is
     * called at the end of a `safeTransferFrom` after the balance has been updated.
     *
     * NOTE: To accept the transfer, this must return
     * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
     * (i.e. 0xf23a6e61, or its own function selector).
     *
     * @param operator The address which initiated the transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param id The ID of the token being transferred
     * @param value The amount of tokens being transferred
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
     */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
     * @dev Handles the receipt of a multiple ERC1155 token types. This function
     * is called at the end of a `safeBatchTransferFrom` after the balances have
     * been updated.
     *
     * NOTE: To accept the transfer(s), this must return
     * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
     * (i.e. 0xbc197c81, or its own function selector).
     *
     * @param operator The address which initiated the batch transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param ids An array containing ids of each token being transferred (order and length must match values array)
     * @param values An array containing amounts of each token being transferred (order and length must match ids array)
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
     */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

File 9 of 14 : IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;

import "../IERC1155.sol";

/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

File 10 of 14 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 11 of 14 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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 12 of 14 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

File 13 of 14 : IERC2981.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be payed in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

File 14 of 14 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol)

pragma solidity ^0.8.0;

import "../utils/introspection/IERC165.sol";

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_metadataUri","type":"string"},{"internalType":"address","name":"_royaltyReceiver","type":"address"},{"internalType":"uint96","name":"_royaltyFeeNumerator","type":"uint96"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","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":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"CHANJU","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INTRO","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LAST_TOKEN_ID","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MOMMYSON","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OUTTRO","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SIONJUNG","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WONSTEINZIORPARK","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_metadataUri","type":"string"}],"name":"setMetadataUri","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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

608060405260405180602001604052806000815250600690805190602001906200002b929190620008cf565b503480156200003957600080fd5b50604051620053743803806200537483398181016040528101906200005f919062000a74565b826200007181620001bc60201b60201c565b506200009262000086620001d860201b60201c565b620001e060201b60201c565b620000bb33600060ff166101f460405180602001604052806000815250620002a660201b60201c565b620000e433600160ff166101f460405180602001604052806000815250620002a660201b60201c565b6200010d33600260ff166101f460405180602001604052806000815250620002a660201b60201c565b6200013633600360ff166101f460405180602001604052806000815250620002a660201b60201c565b6200015f33600460ff166101f460405180602001604052806000815250620002a660201b60201c565b6200018833600560ff166101f460405180602001604052806000815250620002a660201b60201c565b6200019a82826200046b60201b60201c565b8260069080519060200190620001b2929190620008cf565b5050505062001335565b8060029080519060200190620001d4929190620008cf565b5050565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141562000319576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003109062000d44565b60405180910390fd5b60006200032b620001d860201b60201c565b9050620003648160008762000346886200060f60201b60201c565b62000357886200060f60201b60201c565b876200069060201b60201c565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620003c5919062000e4c565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516200044592919062000d88565b60405180910390a462000464816000878787876200069860201b60201c565b5050505050565b6200047b620008a260201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115620004dc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004d39062000d22565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200054f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005469062000d66565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600360008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b60606000600167ffffffffffffffff8111156200063157620006306200105a565b5b604051908082528060200260200182016040528015620006605781602001602082028036833780820191505090505b50905082816000815181106200067b576200067a6200102b565b5b60200260200101818152505080915050919050565b505050505050565b620006c48473ffffffffffffffffffffffffffffffffffffffff16620008ac60201b62000ef51760201c565b156200089a578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016200070d95949392919062000c56565b602060405180830381600087803b1580156200072857600080fd5b505af19250505080156200075c57506040513d601f19601f8201168201806040525081019062000759919062000a42565b60015b6200080e576200076b62001089565b806308c379a01415620007cf57506200078362001245565b80620007905750620007d1565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007c6919062000cba565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008059062000cde565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161462000898576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200088f9062000d00565b60405180910390fd5b505b505050505050565b6000612710905090565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054620008dd9062000f61565b90600052602060002090601f0160209004810192826200090157600085556200094d565b82601f106200091c57805160ff19168380011785556200094d565b828001600101855582156200094d579182015b828111156200094c5782518255916020019190600101906200092f565b5b5090506200095c919062000960565b5090565b5b808211156200097b57600081600090555060010162000961565b5090565b600062000996620009908462000dde565b62000db5565b905082815260208101848484011115620009b557620009b4620010b3565b5b620009c284828562000f2b565b509392505050565b600081519050620009db81620012e7565b92915050565b600081519050620009f28162001301565b92915050565b600082601f83011262000a105762000a0f620010ae565b5b815162000a228482602086016200097f565b91505092915050565b60008151905062000a3c816200131b565b92915050565b60006020828403121562000a5b5762000a5a620010bd565b5b600062000a6b84828501620009e1565b91505092915050565b60008060006060848603121562000a905762000a8f620010bd565b5b600084015167ffffffffffffffff81111562000ab15762000ab0620010b8565b5b62000abf86828701620009f8565b935050602062000ad286828701620009ca565b925050604062000ae58682870162000a2b565b9150509250925092565b62000afa8162000ea9565b82525050565b600062000b0d8262000e14565b62000b19818562000e2a565b935062000b2b81856020860162000f2b565b62000b3681620010c2565b840191505092915050565b600062000b4e8262000e1f565b62000b5a818562000e3b565b935062000b6c81856020860162000f2b565b62000b7781620010c2565b840191505092915050565b600062000b9160348362000e3b565b915062000b9e82620010e0565b604082019050919050565b600062000bb860288362000e3b565b915062000bc5826200112f565b604082019050919050565b600062000bdf602a8362000e3b565b915062000bec826200117e565b604082019050919050565b600062000c0660218362000e3b565b915062000c1382620011cd565b604082019050919050565b600062000c2d60198362000e3b565b915062000c3a826200121c565b602082019050919050565b62000c508162000f09565b82525050565b600060a08201905062000c6d600083018862000aef565b62000c7c602083018762000aef565b62000c8b604083018662000c45565b62000c9a606083018562000c45565b818103608083015262000cae818462000b00565b90509695505050505050565b6000602082019050818103600083015262000cd6818462000b41565b905092915050565b6000602082019050818103600083015262000cf98162000b82565b9050919050565b6000602082019050818103600083015262000d1b8162000ba9565b9050919050565b6000602082019050818103600083015262000d3d8162000bd0565b9050919050565b6000602082019050818103600083015262000d5f8162000bf7565b9050919050565b6000602082019050818103600083015262000d818162000c1e565b9050919050565b600060408201905062000d9f600083018562000c45565b62000dae602083018462000c45565b9392505050565b600062000dc162000dd4565b905062000dcf828262000f97565b919050565b6000604051905090565b600067ffffffffffffffff82111562000dfc5762000dfb6200105a565b5b62000e0782620010c2565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062000e598262000f09565b915062000e668362000f09565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e9e5762000e9d62000fcd565b5b828201905092915050565b600062000eb68262000ee9565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006bffffffffffffffffffffffff82169050919050565b60005b8381101562000f4b57808201518184015260208101905062000f2e565b8381111562000f5b576000848401525b50505050565b6000600282049050600182168062000f7a57607f821691505b6020821081141562000f915762000f9062000ffc565b5b50919050565b62000fa282620010c2565b810181811067ffffffffffffffff8211171562000fc45762000fc36200105a565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d1115620010ab5760046000803e620010a8600051620010d3565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b600060443d10156200125757620012e4565b6200126162000dd4565b60043d036004823e80513d602482011167ffffffffffffffff821117156200128b575050620012e4565b808201805167ffffffffffffffff811115620012ab5750505050620012e4565b80602083010160043d038501811115620012ca575050505050620012e4565b620012db8260200185018662000f97565b82955050505050505b90565b620012f28162000ea9565b8114620012fe57600080fd5b50565b6200130c8162000ebd565b81146200131857600080fd5b50565b620013268162000f13565b81146200133257600080fd5b50565b61402f80620013456000396000f3fe608060405234801561001057600080fd5b50600436106101575760003560e01c80638589e162116100c3578063e8a3d4851161007c578063e8a3d485146103b5578063e985e9c5146103d3578063ec45a02014610403578063f242432a14610421578063f2fde38b1461043d578063f5298aca1461045957610157565b80638589e162146103035780638da5cb5b146103215780639d42026e1461033f5780639eac63231461035d578063a22cb4651461037b578063d3a361e91461039757610157565b8063156e29f611610115578063156e29f6146102425780632a55205a1461025e5780632eb2c2d61461028f5780632ed2af47146102ab5780634e1273f4146102c9578063715018a6146102f957610157565b8062fdd58e1461015c57806301ffc9a71461018c57806304634d8d146101bc5780630ba58be4146101d85780630e89341c146101f65780631130630c14610226575b600080fd5b610176600480360381019061017191906128fa565b610475565b60405161018391906133f7565b60405180910390f35b6101a660048036038101906101a19190612a45565b61053e565b6040516101b3919061317a565b60405180910390f35b6101d660048036038101906101d1919061298d565b610550565b005b6101e06105da565b6040516101ed919061343b565b60405180910390f35b610210600480360381019061020b9190612aec565b6105df565b60405161021d9190613195565b60405180910390f35b610240600480360381019061023b9190612a9f565b61065b565b005b61025c6004803603810190610257919061293a565b6106ed565b005b61027860048036038101906102739190612b19565b610789565b6040516102869291906130f8565b60405180910390f35b6102a960048036038101906102a49190612754565b610974565b005b6102b3610a15565b6040516102c0919061343b565b60405180910390f35b6102e360048036038101906102de91906129cd565b610a1a565b6040516102f09190613121565b60405180910390f35b610301610b33565b005b61030b610bbb565b604051610318919061343b565b60405180910390f35b610329610bc0565b604051610336919061301b565b60405180910390f35b610347610bea565b604051610354919061343b565b60405180910390f35b610365610bef565b604051610372919061343b565b60405180910390f35b610395600480360381019061039091906128ba565b610bf4565b005b61039f610c0a565b6040516103ac919061343b565b60405180910390f35b6103bd610c0f565b6040516103ca9190613195565b60405180910390f35b6103ed60048036038101906103e89190612714565b610c37565b6040516103fa919061317a565b60405180910390f35b61040b610ccb565b604051610418919061343b565b60405180910390f35b61043b60048036038101906104369190612823565b610cd0565b005b610457600480360381019061045291906126e7565b610d71565b005b610473600480360381019061046e919061293a565b610e69565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156104e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104dd906131f7565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600061054982610f18565b9050919050565b610558610f92565b73ffffffffffffffffffffffffffffffffffffffff16610576610bc0565b73ffffffffffffffffffffffffffffffffffffffff16146105cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105c390613317565b60405180910390fd5b6105d68282610f9a565b5050565b600481565b60606105ea82611130565b610629576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062090613277565b60405180910390fd5b600661063483611141565b604051602001610645929190612fd5565b6040516020818303038152906040529050919050565b610663610f92565b73ffffffffffffffffffffffffffffffffffffffff16610681610bc0565b73ffffffffffffffffffffffffffffffffffffffff16146106d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ce90613317565b60405180910390fd5b8181600691906106e89291906123c4565b505050565b6106f5610f92565b73ffffffffffffffffffffffffffffffffffffffff16610713610bc0565b73ffffffffffffffffffffffffffffffffffffffff1614610769576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076090613317565b60405180910390fd5b610784838383604051806020016040528060008152506112a2565b505050565b6000806000600460008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16141561091f5760036040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610929611438565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610955919061361c565b61095f91906135eb565b90508160000151819350935050509250929050565b61097c610f92565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806109c257506109c1856109bc610f92565b610c37565b5b610a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f8906132b7565b60405180910390fd5b610a0e8585858585611442565b5050505050565b600381565b60608151835114610a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5790613377565b60405180910390fd5b6000835167ffffffffffffffff811115610a7d57610a7c61391e565b5b604051908082528060200260200182016040528015610aab5781602001602082028036833780820191505090505b50905060005b8451811015610b2857610af8858281518110610ad057610acf6138ef565b5b6020026020010151858381518110610aeb57610aea6138ef565b5b6020026020010151610475565b828281518110610b0b57610b0a6138ef565b5b60200260200101818152505080610b21906137e8565b9050610ab1565b508091505092915050565b610b3b610f92565b73ffffffffffffffffffffffffffffffffffffffff16610b59610bc0565b73ffffffffffffffffffffffffffffffffffffffff1614610baf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba690613317565b60405180910390fd5b610bb96000611756565b565b600581565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600581565b600081565b610c06610bff610f92565b838361181c565b5050565b600281565b60606006604051602001610c239190612ff9565b604051602081830303815290604052905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600181565b610cd8610f92565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610d1e5750610d1d85610d18610f92565b610c37565b5b610d5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5490613257565b60405180910390fd5b610d6a8585858585611989565b5050505050565b610d79610f92565b73ffffffffffffffffffffffffffffffffffffffff16610d97610bc0565b73ffffffffffffffffffffffffffffffffffffffff1614610ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de490613317565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5490613217565b60405180910390fd5b610e6681611756565b50565b610e71610f92565b73ffffffffffffffffffffffffffffffffffffffff16610e8f610bc0565b73ffffffffffffffffffffffffffffffffffffffff1614610ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edc90613317565b60405180910390fd5b610ef0838383611c0b565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610f8b5750610f8a82611e28565b5b9050919050565b600033905090565b610fa2611438565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115611000576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff790613337565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611070576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611067906133d7565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600360008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6000600560ff168211159050919050565b60606000821415611189576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061129d565b600082905060005b600082146111bb5780806111a4906137e8565b915050600a826111b491906135eb565b9150611191565b60008167ffffffffffffffff8111156111d7576111d661391e565b5b6040519080825280601f01601f1916602001820160405280156112095781602001600182028036833780820191505090505b5090505b60008514611296576001826112229190613676565b9150600a856112319190613831565b603061123d9190613595565b60f81b818381518110611253576112526138ef565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561128f91906135eb565b945061120d565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611312576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611309906133b7565b60405180910390fd5b600061131c610f92565b905061133d8160008761132e88611f0a565b61133788611f0a565b87611f84565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461139c9190613595565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62878760405161141a929190613412565b60405180910390a461143181600087878787611f8c565b5050505050565b6000612710905090565b8151835114611486576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147d90613397565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156114f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ed90613297565b60405180910390fd5b6000611500610f92565b9050611510818787878787611f84565b60005b84518110156116c1576000858281518110611531576115306138ef565b5b6020026020010151905060008583815181106115505761154f6138ef565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156115f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e8906132f7565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116a69190613595565b92505081905550505050806116ba906137e8565b9050611513565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611738929190613143565b60405180910390a461174e818787878787612173565b505050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561188b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188290613357565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161197c919061317a565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156119f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f090613297565b60405180910390fd5b6000611a03610f92565b9050611a23818787611a1488611f0a565b611a1d88611f0a565b87611f84565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab1906132f7565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b6f9190613595565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051611bec929190613412565b60405180910390a4611c02828888888888611f8c565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c72906132d7565b60405180910390fd5b6000611c85610f92565b9050611cb581856000611c9787611f0a565b611ca087611f0a565b60405180602001604052806000815250611f84565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611d4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4390613237565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611e19929190613412565b60405180910390a45050505050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ef357507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611f035750611f028261235a565b5b9050919050565b60606000600167ffffffffffffffff811115611f2957611f2861391e565b5b604051908082528060200260200182016040528015611f575781602001602082028036833780820191505090505b5090508281600081518110611f6f57611f6e6138ef565b5b60200260200101818152505080915050919050565b505050505050565b611fab8473ffffffffffffffffffffffffffffffffffffffff16610ef5565b1561216b578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401611ff195949392919061309e565b602060405180830381600087803b15801561200b57600080fd5b505af192505050801561203c57506040513d601f19601f820116820180604052508101906120399190612a72565b60015b6120e25761204861394d565b806308c379a014156120a5575061205d613ef0565b8061206857506120a7565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209c9190613195565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d9906131b7565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612169576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612160906131d7565b60405180910390fd5b505b505050505050565b6121928473ffffffffffffffffffffffffffffffffffffffff16610ef5565b15612352578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016121d8959493929190613036565b602060405180830381600087803b1580156121f257600080fd5b505af192505050801561222357506040513d601f19601f820116820180604052508101906122209190612a72565b60015b6122c95761222f61394d565b806308c379a0141561228c5750612244613ef0565b8061224f575061228e565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122839190613195565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c0906131b7565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612350576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612347906131d7565b60405180910390fd5b505b505050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b8280546123d090613785565b90600052602060002090601f0160209004810192826123f25760008555612439565b82601f1061240b57803560ff1916838001178555612439565b82800160010185558215612439579182015b8281111561243857823582559160200191906001019061241d565b5b509050612446919061244a565b5090565b5b8082111561246357600081600090555060010161244b565b5090565b600061247a6124758461347b565b613456565b9050808382526020820190508285602086028201111561249d5761249c613979565b5b60005b858110156124cd57816124b38882612589565b8452602084019350602083019250506001810190506124a0565b5050509392505050565b60006124ea6124e5846134a7565b613456565b9050808382526020820190508285602086028201111561250d5761250c613979565b5b60005b8581101561253d578161252388826126bd565b845260208401935060208301925050600181019050612510565b5050509392505050565b600061255a612555846134d3565b613456565b9050828152602081018484840111156125765761257561397e565b5b612581848285613743565b509392505050565b60008135905061259881613f86565b92915050565b600082601f8301126125b3576125b2613974565b5b81356125c3848260208601612467565b91505092915050565b600082601f8301126125e1576125e0613974565b5b81356125f18482602086016124d7565b91505092915050565b60008135905061260981613f9d565b92915050565b60008135905061261e81613fb4565b92915050565b60008151905061263381613fb4565b92915050565b600082601f83011261264e5761264d613974565b5b813561265e848260208601612547565b91505092915050565b60008083601f84011261267d5761267c613974565b5b8235905067ffffffffffffffff81111561269a5761269961396f565b5b6020830191508360018202830111156126b6576126b5613979565b5b9250929050565b6000813590506126cc81613fcb565b92915050565b6000813590506126e181613fe2565b92915050565b6000602082840312156126fd576126fc613988565b5b600061270b84828501612589565b91505092915050565b6000806040838503121561272b5761272a613988565b5b600061273985828601612589565b925050602061274a85828601612589565b9150509250929050565b600080600080600060a086880312156127705761276f613988565b5b600061277e88828901612589565b955050602061278f88828901612589565b945050604086013567ffffffffffffffff8111156127b0576127af613983565b5b6127bc888289016125cc565b935050606086013567ffffffffffffffff8111156127dd576127dc613983565b5b6127e9888289016125cc565b925050608086013567ffffffffffffffff81111561280a57612809613983565b5b61281688828901612639565b9150509295509295909350565b600080600080600060a0868803121561283f5761283e613988565b5b600061284d88828901612589565b955050602061285e88828901612589565b945050604061286f888289016126bd565b9350506060612880888289016126bd565b925050608086013567ffffffffffffffff8111156128a1576128a0613983565b5b6128ad88828901612639565b9150509295509295909350565b600080604083850312156128d1576128d0613988565b5b60006128df85828601612589565b92505060206128f0858286016125fa565b9150509250929050565b6000806040838503121561291157612910613988565b5b600061291f85828601612589565b9250506020612930858286016126bd565b9150509250929050565b60008060006060848603121561295357612952613988565b5b600061296186828701612589565b9350506020612972868287016126bd565b9250506040612983868287016126bd565b9150509250925092565b600080604083850312156129a4576129a3613988565b5b60006129b285828601612589565b92505060206129c3858286016126d2565b9150509250929050565b600080604083850312156129e4576129e3613988565b5b600083013567ffffffffffffffff811115612a0257612a01613983565b5b612a0e8582860161259e565b925050602083013567ffffffffffffffff811115612a2f57612a2e613983565b5b612a3b858286016125cc565b9150509250929050565b600060208284031215612a5b57612a5a613988565b5b6000612a698482850161260f565b91505092915050565b600060208284031215612a8857612a87613988565b5b6000612a9684828501612624565b91505092915050565b60008060208385031215612ab657612ab5613988565b5b600083013567ffffffffffffffff811115612ad457612ad3613983565b5b612ae085828601612667565b92509250509250929050565b600060208284031215612b0257612b01613988565b5b6000612b10848285016126bd565b91505092915050565b60008060408385031215612b3057612b2f613988565b5b6000612b3e858286016126bd565b9250506020612b4f858286016126bd565b9150509250929050565b6000612b658383612fa8565b60208301905092915050565b612b7a816136aa565b82525050565b6000612b8b82613529565b612b958185613557565b9350612ba083613504565b8060005b83811015612bd1578151612bb88882612b59565b9750612bc38361354a565b925050600181019050612ba4565b5085935050505092915050565b612be7816136bc565b82525050565b6000612bf882613534565b612c028185613568565b9350612c12818560208601613752565b612c1b8161398d565b840191505092915050565b6000612c318261353f565b612c3b8185613579565b9350612c4b818560208601613752565b612c548161398d565b840191505092915050565b6000612c6a8261353f565b612c74818561358a565b9350612c84818560208601613752565b80840191505092915050565b60008154612c9d81613785565b612ca7818661358a565b94506001821660008114612cc25760018114612cd357612d06565b60ff19831686528186019350612d06565b612cdc85613514565b60005b83811015612cfe57815481890152600182019150602081019050612cdf565b838801955050505b50505092915050565b6000612d1c603483613579565b9150612d27826139ab565b604082019050919050565b6000612d3f602883613579565b9150612d4a826139fa565b604082019050919050565b6000612d62602b83613579565b9150612d6d82613a49565b604082019050919050565b6000612d85602683613579565b9150612d9082613a98565b604082019050919050565b6000612da8602483613579565b9150612db382613ae7565b604082019050919050565b6000612dcb600b8361358a565b9150612dd682613b36565b600b82019050919050565b6000612dee602983613579565b9150612df982613b5f565b604082019050919050565b6000612e11600f83613579565b9150612e1c82613bae565b602082019050919050565b6000612e34602583613579565b9150612e3f82613bd7565b604082019050919050565b6000612e57603283613579565b9150612e6282613c26565b604082019050919050565b6000612e7a602383613579565b9150612e8582613c75565b604082019050919050565b6000612e9d602a83613579565b9150612ea882613cc4565b604082019050919050565b6000612ec0602083613579565b9150612ecb82613d13565b602082019050919050565b6000612ee3602a83613579565b9150612eee82613d3c565b604082019050919050565b6000612f06602983613579565b9150612f1182613d8b565b604082019050919050565b6000612f29602983613579565b9150612f3482613dda565b604082019050919050565b6000612f4c602883613579565b9150612f5782613e29565b604082019050919050565b6000612f6f602183613579565b9150612f7a82613e78565b604082019050919050565b6000612f92601983613579565b9150612f9d82613ec7565b602082019050919050565b612fb181613714565b82525050565b612fc081613714565b82525050565b612fcf8161371e565b82525050565b6000612fe18285612c90565b9150612fed8284612c5f565b91508190509392505050565b60006130058284612c90565b915061301082612dbe565b915081905092915050565b60006020820190506130306000830184612b71565b92915050565b600060a08201905061304b6000830188612b71565b6130586020830187612b71565b818103604083015261306a8186612b80565b9050818103606083015261307e8185612b80565b905081810360808301526130928184612bed565b90509695505050505050565b600060a0820190506130b36000830188612b71565b6130c06020830187612b71565b6130cd6040830186612fb7565b6130da6060830185612fb7565b81810360808301526130ec8184612bed565b90509695505050505050565b600060408201905061310d6000830185612b71565b61311a6020830184612fb7565b9392505050565b6000602082019050818103600083015261313b8184612b80565b905092915050565b6000604082019050818103600083015261315d8185612b80565b905081810360208301526131718184612b80565b90509392505050565b600060208201905061318f6000830184612bde565b92915050565b600060208201905081810360008301526131af8184612c26565b905092915050565b600060208201905081810360008301526131d081612d0f565b9050919050565b600060208201905081810360008301526131f081612d32565b9050919050565b6000602082019050818103600083015261321081612d55565b9050919050565b6000602082019050818103600083015261323081612d78565b9050919050565b6000602082019050818103600083015261325081612d9b565b9050919050565b6000602082019050818103600083015261327081612de1565b9050919050565b6000602082019050818103600083015261329081612e04565b9050919050565b600060208201905081810360008301526132b081612e27565b9050919050565b600060208201905081810360008301526132d081612e4a565b9050919050565b600060208201905081810360008301526132f081612e6d565b9050919050565b6000602082019050818103600083015261331081612e90565b9050919050565b6000602082019050818103600083015261333081612eb3565b9050919050565b6000602082019050818103600083015261335081612ed6565b9050919050565b6000602082019050818103600083015261337081612ef9565b9050919050565b6000602082019050818103600083015261339081612f1c565b9050919050565b600060208201905081810360008301526133b081612f3f565b9050919050565b600060208201905081810360008301526133d081612f62565b9050919050565b600060208201905081810360008301526133f081612f85565b9050919050565b600060208201905061340c6000830184612fb7565b92915050565b60006040820190506134276000830185612fb7565b6134346020830184612fb7565b9392505050565b60006020820190506134506000830184612fc6565b92915050565b6000613460613471565b905061346c82826137b7565b919050565b6000604051905090565b600067ffffffffffffffff8211156134965761349561391e565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156134c2576134c161391e565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156134ee576134ed61391e565b5b6134f78261398d565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006135a082613714565b91506135ab83613714565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135e0576135df613862565b5b828201905092915050565b60006135f682613714565b915061360183613714565b92508261361157613610613891565b5b828204905092915050565b600061362782613714565b915061363283613714565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561366b5761366a613862565b5b828202905092915050565b600061368182613714565b915061368c83613714565b92508282101561369f5761369e613862565b5b828203905092915050565b60006136b5826136f4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006bffffffffffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015613770578082015181840152602081019050613755565b8381111561377f576000848401525b50505050565b6000600282049050600182168061379d57607f821691505b602082108114156137b1576137b06138c0565b5b50919050565b6137c08261398d565b810181811067ffffffffffffffff821117156137df576137de61391e565b5b80604052505050565b60006137f382613714565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561382657613825613862565b5b600182019050919050565b600061383c82613714565b915061384783613714565b92508261385757613856613891565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d111561396c5760046000803e61396960005161399e565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f636f6e7472616374555249000000000000000000000000000000000000000000600082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f4e6f7420457869737420546f6b656e0000000000000000000000000000000000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b600060443d1015613f0057613f83565b613f08613471565b60043d036004823e80513d602482011167ffffffffffffffff82111715613f30575050613f83565b808201805167ffffffffffffffff811115613f4e5750505050613f83565b80602083010160043d038501811115613f6b575050505050613f83565b613f7a826020018501866137b7565b82955050505050505b90565b613f8f816136aa565b8114613f9a57600080fd5b50565b613fa6816136bc565b8114613fb157600080fd5b50565b613fbd816136c8565b8114613fc857600080fd5b50565b613fd481613714565b8114613fdf57600080fd5b50565b613feb8161372b565b8114613ff657600080fd5b5056fea264697066735822122028a911b9b3eee7a1d5efafb5c65dfb9036c08888c28f68ec2e1b6c22ffb2488664736f6c634300080700330000000000000000000000000000000000000000000000000000000000000060000000000000000000000000f557597fed3f7fbfb2d4cc7ce304e2e4b792705300000000000000000000000000000000000000000000000000000000000001f4000000000000000000000000000000000000000000000000000000000000004b68747470733a2f2f696e667572612d697066732e696f2f697066732f516d54317757475063457736614b533156733250543947336a4b365676696d674d554571616b4e5834776841464c2f000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101575760003560e01c80638589e162116100c3578063e8a3d4851161007c578063e8a3d485146103b5578063e985e9c5146103d3578063ec45a02014610403578063f242432a14610421578063f2fde38b1461043d578063f5298aca1461045957610157565b80638589e162146103035780638da5cb5b146103215780639d42026e1461033f5780639eac63231461035d578063a22cb4651461037b578063d3a361e91461039757610157565b8063156e29f611610115578063156e29f6146102425780632a55205a1461025e5780632eb2c2d61461028f5780632ed2af47146102ab5780634e1273f4146102c9578063715018a6146102f957610157565b8062fdd58e1461015c57806301ffc9a71461018c57806304634d8d146101bc5780630ba58be4146101d85780630e89341c146101f65780631130630c14610226575b600080fd5b610176600480360381019061017191906128fa565b610475565b60405161018391906133f7565b60405180910390f35b6101a660048036038101906101a19190612a45565b61053e565b6040516101b3919061317a565b60405180910390f35b6101d660048036038101906101d1919061298d565b610550565b005b6101e06105da565b6040516101ed919061343b565b60405180910390f35b610210600480360381019061020b9190612aec565b6105df565b60405161021d9190613195565b60405180910390f35b610240600480360381019061023b9190612a9f565b61065b565b005b61025c6004803603810190610257919061293a565b6106ed565b005b61027860048036038101906102739190612b19565b610789565b6040516102869291906130f8565b60405180910390f35b6102a960048036038101906102a49190612754565b610974565b005b6102b3610a15565b6040516102c0919061343b565b60405180910390f35b6102e360048036038101906102de91906129cd565b610a1a565b6040516102f09190613121565b60405180910390f35b610301610b33565b005b61030b610bbb565b604051610318919061343b565b60405180910390f35b610329610bc0565b604051610336919061301b565b60405180910390f35b610347610bea565b604051610354919061343b565b60405180910390f35b610365610bef565b604051610372919061343b565b60405180910390f35b610395600480360381019061039091906128ba565b610bf4565b005b61039f610c0a565b6040516103ac919061343b565b60405180910390f35b6103bd610c0f565b6040516103ca9190613195565b60405180910390f35b6103ed60048036038101906103e89190612714565b610c37565b6040516103fa919061317a565b60405180910390f35b61040b610ccb565b604051610418919061343b565b60405180910390f35b61043b60048036038101906104369190612823565b610cd0565b005b610457600480360381019061045291906126e7565b610d71565b005b610473600480360381019061046e919061293a565b610e69565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156104e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104dd906131f7565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600061054982610f18565b9050919050565b610558610f92565b73ffffffffffffffffffffffffffffffffffffffff16610576610bc0565b73ffffffffffffffffffffffffffffffffffffffff16146105cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105c390613317565b60405180910390fd5b6105d68282610f9a565b5050565b600481565b60606105ea82611130565b610629576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062090613277565b60405180910390fd5b600661063483611141565b604051602001610645929190612fd5565b6040516020818303038152906040529050919050565b610663610f92565b73ffffffffffffffffffffffffffffffffffffffff16610681610bc0565b73ffffffffffffffffffffffffffffffffffffffff16146106d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ce90613317565b60405180910390fd5b8181600691906106e89291906123c4565b505050565b6106f5610f92565b73ffffffffffffffffffffffffffffffffffffffff16610713610bc0565b73ffffffffffffffffffffffffffffffffffffffff1614610769576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076090613317565b60405180910390fd5b610784838383604051806020016040528060008152506112a2565b505050565b6000806000600460008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16141561091f5760036040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610929611438565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686610955919061361c565b61095f91906135eb565b90508160000151819350935050509250929050565b61097c610f92565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806109c257506109c1856109bc610f92565b610c37565b5b610a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f8906132b7565b60405180910390fd5b610a0e8585858585611442565b5050505050565b600381565b60608151835114610a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5790613377565b60405180910390fd5b6000835167ffffffffffffffff811115610a7d57610a7c61391e565b5b604051908082528060200260200182016040528015610aab5781602001602082028036833780820191505090505b50905060005b8451811015610b2857610af8858281518110610ad057610acf6138ef565b5b6020026020010151858381518110610aeb57610aea6138ef565b5b6020026020010151610475565b828281518110610b0b57610b0a6138ef565b5b60200260200101818152505080610b21906137e8565b9050610ab1565b508091505092915050565b610b3b610f92565b73ffffffffffffffffffffffffffffffffffffffff16610b59610bc0565b73ffffffffffffffffffffffffffffffffffffffff1614610baf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba690613317565b60405180910390fd5b610bb96000611756565b565b600581565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600581565b600081565b610c06610bff610f92565b838361181c565b5050565b600281565b60606006604051602001610c239190612ff9565b604051602081830303815290604052905090565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600181565b610cd8610f92565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610d1e5750610d1d85610d18610f92565b610c37565b5b610d5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5490613257565b60405180910390fd5b610d6a8585858585611989565b5050505050565b610d79610f92565b73ffffffffffffffffffffffffffffffffffffffff16610d97610bc0565b73ffffffffffffffffffffffffffffffffffffffff1614610ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de490613317565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5490613217565b60405180910390fd5b610e6681611756565b50565b610e71610f92565b73ffffffffffffffffffffffffffffffffffffffff16610e8f610bc0565b73ffffffffffffffffffffffffffffffffffffffff1614610ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edc90613317565b60405180910390fd5b610ef0838383611c0b565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610f8b5750610f8a82611e28565b5b9050919050565b600033905090565b610fa2611438565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115611000576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff790613337565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611070576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611067906133d7565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600360008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6000600560ff168211159050919050565b60606000821415611189576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061129d565b600082905060005b600082146111bb5780806111a4906137e8565b915050600a826111b491906135eb565b9150611191565b60008167ffffffffffffffff8111156111d7576111d661391e565b5b6040519080825280601f01601f1916602001820160405280156112095781602001600182028036833780820191505090505b5090505b60008514611296576001826112229190613676565b9150600a856112319190613831565b603061123d9190613595565b60f81b818381518110611253576112526138ef565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561128f91906135eb565b945061120d565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611312576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611309906133b7565b60405180910390fd5b600061131c610f92565b905061133d8160008761132e88611f0a565b61133788611f0a565b87611f84565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461139c9190613595565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62878760405161141a929190613412565b60405180910390a461143181600087878787611f8c565b5050505050565b6000612710905090565b8151835114611486576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147d90613397565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156114f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ed90613297565b60405180910390fd5b6000611500610f92565b9050611510818787878787611f84565b60005b84518110156116c1576000858281518110611531576115306138ef565b5b6020026020010151905060008583815181106115505761154f6138ef565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156115f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e8906132f7565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546116a69190613595565b92505081905550505050806116ba906137e8565b9050611513565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611738929190613143565b60405180910390a461174e818787878787612173565b505050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561188b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188290613357565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161197c919061317a565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156119f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f090613297565b60405180910390fd5b6000611a03610f92565b9050611a23818787611a1488611f0a565b611a1d88611f0a565b87611f84565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611aba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab1906132f7565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b6f9190613595565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051611bec929190613412565b60405180910390a4611c02828888888888611f8c565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c72906132d7565b60405180910390fd5b6000611c85610f92565b9050611cb581856000611c9787611f0a565b611ca087611f0a565b60405180602001604052806000815250611f84565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611d4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4390613237565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611e19929190613412565b60405180910390a45050505050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ef357507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611f035750611f028261235a565b5b9050919050565b60606000600167ffffffffffffffff811115611f2957611f2861391e565b5b604051908082528060200260200182016040528015611f575781602001602082028036833780820191505090505b5090508281600081518110611f6f57611f6e6138ef565b5b60200260200101818152505080915050919050565b505050505050565b611fab8473ffffffffffffffffffffffffffffffffffffffff16610ef5565b1561216b578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b8152600401611ff195949392919061309e565b602060405180830381600087803b15801561200b57600080fd5b505af192505050801561203c57506040513d601f19601f820116820180604052508101906120399190612a72565b60015b6120e25761204861394d565b806308c379a014156120a5575061205d613ef0565b8061206857506120a7565b806040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209c9190613195565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d9906131b7565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612169576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612160906131d7565b60405180910390fd5b505b505050505050565b6121928473ffffffffffffffffffffffffffffffffffffffff16610ef5565b15612352578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016121d8959493929190613036565b602060405180830381600087803b1580156121f257600080fd5b505af192505050801561222357506040513d601f19601f820116820180604052508101906122209190612a72565b60015b6122c95761222f61394d565b806308c379a0141561228c5750612244613ef0565b8061224f575061228e565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122839190613195565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c0906131b7565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612350576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612347906131d7565b60405180910390fd5b505b505050505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b8280546123d090613785565b90600052602060002090601f0160209004810192826123f25760008555612439565b82601f1061240b57803560ff1916838001178555612439565b82800160010185558215612439579182015b8281111561243857823582559160200191906001019061241d565b5b509050612446919061244a565b5090565b5b8082111561246357600081600090555060010161244b565b5090565b600061247a6124758461347b565b613456565b9050808382526020820190508285602086028201111561249d5761249c613979565b5b60005b858110156124cd57816124b38882612589565b8452602084019350602083019250506001810190506124a0565b5050509392505050565b60006124ea6124e5846134a7565b613456565b9050808382526020820190508285602086028201111561250d5761250c613979565b5b60005b8581101561253d578161252388826126bd565b845260208401935060208301925050600181019050612510565b5050509392505050565b600061255a612555846134d3565b613456565b9050828152602081018484840111156125765761257561397e565b5b612581848285613743565b509392505050565b60008135905061259881613f86565b92915050565b600082601f8301126125b3576125b2613974565b5b81356125c3848260208601612467565b91505092915050565b600082601f8301126125e1576125e0613974565b5b81356125f18482602086016124d7565b91505092915050565b60008135905061260981613f9d565b92915050565b60008135905061261e81613fb4565b92915050565b60008151905061263381613fb4565b92915050565b600082601f83011261264e5761264d613974565b5b813561265e848260208601612547565b91505092915050565b60008083601f84011261267d5761267c613974565b5b8235905067ffffffffffffffff81111561269a5761269961396f565b5b6020830191508360018202830111156126b6576126b5613979565b5b9250929050565b6000813590506126cc81613fcb565b92915050565b6000813590506126e181613fe2565b92915050565b6000602082840312156126fd576126fc613988565b5b600061270b84828501612589565b91505092915050565b6000806040838503121561272b5761272a613988565b5b600061273985828601612589565b925050602061274a85828601612589565b9150509250929050565b600080600080600060a086880312156127705761276f613988565b5b600061277e88828901612589565b955050602061278f88828901612589565b945050604086013567ffffffffffffffff8111156127b0576127af613983565b5b6127bc888289016125cc565b935050606086013567ffffffffffffffff8111156127dd576127dc613983565b5b6127e9888289016125cc565b925050608086013567ffffffffffffffff81111561280a57612809613983565b5b61281688828901612639565b9150509295509295909350565b600080600080600060a0868803121561283f5761283e613988565b5b600061284d88828901612589565b955050602061285e88828901612589565b945050604061286f888289016126bd565b9350506060612880888289016126bd565b925050608086013567ffffffffffffffff8111156128a1576128a0613983565b5b6128ad88828901612639565b9150509295509295909350565b600080604083850312156128d1576128d0613988565b5b60006128df85828601612589565b92505060206128f0858286016125fa565b9150509250929050565b6000806040838503121561291157612910613988565b5b600061291f85828601612589565b9250506020612930858286016126bd565b9150509250929050565b60008060006060848603121561295357612952613988565b5b600061296186828701612589565b9350506020612972868287016126bd565b9250506040612983868287016126bd565b9150509250925092565b600080604083850312156129a4576129a3613988565b5b60006129b285828601612589565b92505060206129c3858286016126d2565b9150509250929050565b600080604083850312156129e4576129e3613988565b5b600083013567ffffffffffffffff811115612a0257612a01613983565b5b612a0e8582860161259e565b925050602083013567ffffffffffffffff811115612a2f57612a2e613983565b5b612a3b858286016125cc565b9150509250929050565b600060208284031215612a5b57612a5a613988565b5b6000612a698482850161260f565b91505092915050565b600060208284031215612a8857612a87613988565b5b6000612a9684828501612624565b91505092915050565b60008060208385031215612ab657612ab5613988565b5b600083013567ffffffffffffffff811115612ad457612ad3613983565b5b612ae085828601612667565b92509250509250929050565b600060208284031215612b0257612b01613988565b5b6000612b10848285016126bd565b91505092915050565b60008060408385031215612b3057612b2f613988565b5b6000612b3e858286016126bd565b9250506020612b4f858286016126bd565b9150509250929050565b6000612b658383612fa8565b60208301905092915050565b612b7a816136aa565b82525050565b6000612b8b82613529565b612b958185613557565b9350612ba083613504565b8060005b83811015612bd1578151612bb88882612b59565b9750612bc38361354a565b925050600181019050612ba4565b5085935050505092915050565b612be7816136bc565b82525050565b6000612bf882613534565b612c028185613568565b9350612c12818560208601613752565b612c1b8161398d565b840191505092915050565b6000612c318261353f565b612c3b8185613579565b9350612c4b818560208601613752565b612c548161398d565b840191505092915050565b6000612c6a8261353f565b612c74818561358a565b9350612c84818560208601613752565b80840191505092915050565b60008154612c9d81613785565b612ca7818661358a565b94506001821660008114612cc25760018114612cd357612d06565b60ff19831686528186019350612d06565b612cdc85613514565b60005b83811015612cfe57815481890152600182019150602081019050612cdf565b838801955050505b50505092915050565b6000612d1c603483613579565b9150612d27826139ab565b604082019050919050565b6000612d3f602883613579565b9150612d4a826139fa565b604082019050919050565b6000612d62602b83613579565b9150612d6d82613a49565b604082019050919050565b6000612d85602683613579565b9150612d9082613a98565b604082019050919050565b6000612da8602483613579565b9150612db382613ae7565b604082019050919050565b6000612dcb600b8361358a565b9150612dd682613b36565b600b82019050919050565b6000612dee602983613579565b9150612df982613b5f565b604082019050919050565b6000612e11600f83613579565b9150612e1c82613bae565b602082019050919050565b6000612e34602583613579565b9150612e3f82613bd7565b604082019050919050565b6000612e57603283613579565b9150612e6282613c26565b604082019050919050565b6000612e7a602383613579565b9150612e8582613c75565b604082019050919050565b6000612e9d602a83613579565b9150612ea882613cc4565b604082019050919050565b6000612ec0602083613579565b9150612ecb82613d13565b602082019050919050565b6000612ee3602a83613579565b9150612eee82613d3c565b604082019050919050565b6000612f06602983613579565b9150612f1182613d8b565b604082019050919050565b6000612f29602983613579565b9150612f3482613dda565b604082019050919050565b6000612f4c602883613579565b9150612f5782613e29565b604082019050919050565b6000612f6f602183613579565b9150612f7a82613e78565b604082019050919050565b6000612f92601983613579565b9150612f9d82613ec7565b602082019050919050565b612fb181613714565b82525050565b612fc081613714565b82525050565b612fcf8161371e565b82525050565b6000612fe18285612c90565b9150612fed8284612c5f565b91508190509392505050565b60006130058284612c90565b915061301082612dbe565b915081905092915050565b60006020820190506130306000830184612b71565b92915050565b600060a08201905061304b6000830188612b71565b6130586020830187612b71565b818103604083015261306a8186612b80565b9050818103606083015261307e8185612b80565b905081810360808301526130928184612bed565b90509695505050505050565b600060a0820190506130b36000830188612b71565b6130c06020830187612b71565b6130cd6040830186612fb7565b6130da6060830185612fb7565b81810360808301526130ec8184612bed565b90509695505050505050565b600060408201905061310d6000830185612b71565b61311a6020830184612fb7565b9392505050565b6000602082019050818103600083015261313b8184612b80565b905092915050565b6000604082019050818103600083015261315d8185612b80565b905081810360208301526131718184612b80565b90509392505050565b600060208201905061318f6000830184612bde565b92915050565b600060208201905081810360008301526131af8184612c26565b905092915050565b600060208201905081810360008301526131d081612d0f565b9050919050565b600060208201905081810360008301526131f081612d32565b9050919050565b6000602082019050818103600083015261321081612d55565b9050919050565b6000602082019050818103600083015261323081612d78565b9050919050565b6000602082019050818103600083015261325081612d9b565b9050919050565b6000602082019050818103600083015261327081612de1565b9050919050565b6000602082019050818103600083015261329081612e04565b9050919050565b600060208201905081810360008301526132b081612e27565b9050919050565b600060208201905081810360008301526132d081612e4a565b9050919050565b600060208201905081810360008301526132f081612e6d565b9050919050565b6000602082019050818103600083015261331081612e90565b9050919050565b6000602082019050818103600083015261333081612eb3565b9050919050565b6000602082019050818103600083015261335081612ed6565b9050919050565b6000602082019050818103600083015261337081612ef9565b9050919050565b6000602082019050818103600083015261339081612f1c565b9050919050565b600060208201905081810360008301526133b081612f3f565b9050919050565b600060208201905081810360008301526133d081612f62565b9050919050565b600060208201905081810360008301526133f081612f85565b9050919050565b600060208201905061340c6000830184612fb7565b92915050565b60006040820190506134276000830185612fb7565b6134346020830184612fb7565b9392505050565b60006020820190506134506000830184612fc6565b92915050565b6000613460613471565b905061346c82826137b7565b919050565b6000604051905090565b600067ffffffffffffffff8211156134965761349561391e565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156134c2576134c161391e565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156134ee576134ed61391e565b5b6134f78261398d565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006135a082613714565b91506135ab83613714565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135e0576135df613862565b5b828201905092915050565b60006135f682613714565b915061360183613714565b92508261361157613610613891565b5b828204905092915050565b600061362782613714565b915061363283613714565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561366b5761366a613862565b5b828202905092915050565b600061368182613714565b915061368c83613714565b92508282101561369f5761369e613862565b5b828203905092915050565b60006136b5826136f4565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006bffffffffffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015613770578082015181840152602081019050613755565b8381111561377f576000848401525b50505050565b6000600282049050600182168061379d57607f821691505b602082108114156137b1576137b06138c0565b5b50919050565b6137c08261398d565b810181811067ffffffffffffffff821117156137df576137de61391e565b5b80604052505050565b60006137f382613714565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561382657613825613862565b5b600182019050919050565b600061383c82613714565b915061384783613714565b92508261385757613856613891565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d111561396c5760046000803e61396960005161399e565b90505b90565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f636f6e7472616374555249000000000000000000000000000000000000000000600082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f4e6f7420457869737420546f6b656e0000000000000000000000000000000000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b600060443d1015613f0057613f83565b613f08613471565b60043d036004823e80513d602482011167ffffffffffffffff82111715613f30575050613f83565b808201805167ffffffffffffffff811115613f4e5750505050613f83565b80602083010160043d038501811115613f6b575050505050613f83565b613f7a826020018501866137b7565b82955050505050505b90565b613f8f816136aa565b8114613f9a57600080fd5b50565b613fa6816136bc565b8114613fb157600080fd5b50565b613fbd816136c8565b8114613fc857600080fd5b50565b613fd481613714565b8114613fdf57600080fd5b50565b613feb8161372b565b8114613ff657600080fd5b5056fea264697066735822122028a911b9b3eee7a1d5efafb5c65dfb9036c08888c28f68ec2e1b6c22ffb2488664736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000f557597fed3f7fbfb2d4cc7ce304e2e4b792705300000000000000000000000000000000000000000000000000000000000001f4000000000000000000000000000000000000000000000000000000000000004b68747470733a2f2f696e667572612d697066732e696f2f697066732f516d54317757475063457736614b533156733250543947336a4b365676696d674d554571616b4e5834776841464c2f000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _metadataUri (string): https://infura-ipfs.io/ipfs/QmT1wWGPcEw6aKS1Vs2PT9G3jK6VvimgMUEqakNX4whAFL/
Arg [1] : _royaltyReceiver (address): 0xf557597FEd3f7FBfB2d4Cc7Ce304E2E4B7927053
Arg [2] : _royaltyFeeNumerator (uint96): 500

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 000000000000000000000000f557597fed3f7fbfb2d4cc7ce304e2e4b7927053
Arg [2] : 00000000000000000000000000000000000000000000000000000000000001f4
Arg [3] : 000000000000000000000000000000000000000000000000000000000000004b
Arg [4] : 68747470733a2f2f696e667572612d697066732e696f2f697066732f516d5431
Arg [5] : 7757475063457736614b533156733250543947336a4b365676696d674d554571
Arg [6] : 616b4e5834776841464c2f000000000000000000000000000000000000000000


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.