ETH Price: $2,362.52 (-4.09%)

Token

Ishida Social Club (ISC)
 

Overview

Max Total Supply

179 ISC

Holders

66

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 ISC
0xDA11c7475da3D28bc7F041851E640FF88d00E9b5
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The Ishida Social Club is a collection of 1001 Ishida Dead Punk NFTs - unique digital collectibles stored on the Ethereum blockchain as ERC-721 tokens with files hosted on IPFS.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
IshidaSocialClub

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-22
*/

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_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 {
        _setOwner(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"
        );
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        external
        view
        returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            owner != address(0),
            "ERC721: balance query for the zero address"
        );
        return _balances[owner];
    }

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

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(
            ERC721.ownerOf(tokenId) == from,
            "ERC721: transfer of token that is not own"
        );
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try
                IERC721Receiver(to).onERC721Received(
                    _msgSender(),
                    from,
                    tokenId,
                    _data
                )
            returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert(
                        "ERC721: transfer to non ERC721Receiver implementer"
                    );
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

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

pragma solidity ^0.8.0;

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            index < ERC721.balanceOf(owner),
            "ERC721Enumerable: owner index out of bounds"
        );
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            index < ERC721Enumerable.totalSupply(),
            "ERC721Enumerable: global index out of bounds"
        );
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId)
        private
    {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

/*

 _     _     _     _                        _       _        _       _     
(_)   | |   (_)   | |                      (_)     | |      | |     | |    
 _ ___| |__  _  __| | __ _   ___  ___   ___ _  __ _| |   ___| |_   _| |__  
| / __| '_ \| |/ _` |/ _` | / __|/ _ \ / __| |/ _` | |  / __| | | | | '_ \ 
| \__ \ | | | | (_| | (_| | \__ \ (_) | (__| | (_| | | | (__| | |_| | |_) |
|_|___/_| |_|_|\__,_|\__,_| |___/\___/ \___|_|\__,_|_|  \___|_|\__,_|_.__/ 

                               By Devko.dev#7286 
*/


contract IshidaSocialClub is ERC721Enumerable, Ownable {
    using Strings for uint256;

    uint256 public constant ISC_MAX = 1001;
    uint256 public constant ISC_PRICE = 0.05 ether;
    uint256 public constant ISC_PER_MINT = 5;
    string private _contractURI = "https://api.ishidasocialclub.com/api/contract/";
    string private _tokenBaseURI = "https://api.ishidasocialclub.com/api/token/";
    address private member1 = 0x058772C526637B72026e766a397625500F88026B;
    address private member2 = 0x0000003f9A1FBB7348f3a4BF96BbBE68b6dEafcD; // Devko
    // You can use this hash to verify the image file containing all the IshidaDeadPunks™
    string public proof = "815e3bd9cda399c7b40562f9c18d2bbe19ae4832d7011957a5dfc5b1f06d56a1";
    bool public saleLive;
    bool public locked;
    
    constructor() ERC721("Ishida Social Club", "ISC") {}
    
    modifier notLocked {
        require(!locked, "Contract metadata methods are locked");
        _;
    }
    
    function buy(uint256 tokenQuantity) external payable {
        require(saleLive, "SALE_CLOSED");
        require(totalSupply() + tokenQuantity <= ISC_MAX, "OUT_OF_STOCK");
        require(tokenQuantity <= ISC_PER_MINT, "EXCEED_ISC_PER_MINT");
        require(ISC_PRICE * tokenQuantity <= msg.value, "INSUFFICIENT_ETH");
        
        for(uint256 i = 0; i < tokenQuantity; i++) {
            _safeMint(msg.sender, totalSupply() + 1);
        }
    }
    
    function withdraw() external {
        payable(member1).transfer(address(this).balance * 75 / 100);
        payable(member2).transfer(address(this).balance);
    }
    
    
    function lockMetadata() external onlyOwner {
        locked = true;
    }
    
    function toggleSaleStatus() external onlyOwner {
        saleLive = !saleLive;
    }
    
    function setContractURI(string calldata URI) external onlyOwner notLocked {
        _contractURI = URI;
    }
    
    function setBaseURI(string calldata URI) external onlyOwner notLocked {
        _tokenBaseURI = URI;
    }

    function contractURI() public view returns (string memory) {
        return _contractURI;
    }
    
    function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) {
        require(_exists(tokenId), "Cannot query non-existent token");
        
        return string(abi.encodePacked(_tokenBaseURI, tokenId.toString()));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ISC_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ISC_PER_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ISC_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"locked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proof","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e0604052602e6080818152906200251660a03980516200002991600b91602090910190620001c0565b506040518060600160405280602b815260200162002544602b913980516200005a91600c91602090910190620001c0565b50600d80546001600160a01b031990811673058772c526637b72026e766a397625500f88026b17909155600e8054909116703f9a1fbb7348f3a4bf96bbbe68b6deafcd1790556040805160608101825281815290620024d660208301398051620000cd91600f91602090910190620001c0565b50348015620000db57600080fd5b50604080518082018252601281527124b9b434b2309029b7b1b4b0b61021b63ab160711b60208083019182528351808501909452600384526249534360e81b9084015281519192916200013191600091620001c0565b50805162000147906001906020840190620001c0565b505050620001646200015e6200016a60201b60201c565b6200016e565b620002a3565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001ce9062000266565b90600052602060002090601f016020900481019282620001f257600085556200023d565b82601f106200020d57805160ff19168380011785556200023d565b828001600101855582156200023d579182015b828111156200023d57825182559160200191906001019062000220565b506200024b9291506200024f565b5090565b5b808211156200024b576000815560010162000250565b600181811c908216806200027b57607f821691505b602082108114156200029d57634e487b7160e01b600052602260045260246000fd5b50919050565b61222380620002b36000396000f3fe6080604052600436106101e35760003560e01c80638da5cb5b11610102578063c87b56dd11610095578063e8a3d48511610064578063e8a3d48514610531578063e985e9c514610546578063f2fde38b1461058f578063faf924cf146105af57600080fd5b8063c87b56dd146104c5578063cf309012146104e5578063d96a094a14610504578063e081b7811461051757600080fd5b8063989bdbb6116100d1578063989bdbb61461045a578063a22cb4651461046f578063b7ea456e1461048f578063b88d4fde146104a557600080fd5b80638da5cb5b146103f2578063938e3d7b14610410578063944936971461043057806395d89b411461044557600080fd5b806337da86131161017a57806355f804b31161014957806355f804b31461037d5780636352211e1461039d57806370a08231146103bd578063715018a6146103dd57600080fd5b806337da86131461030d5780633ccfd60b1461032857806342842e0e1461033d5780634f6ccce71461035d57600080fd5b8063095ea7b3116101b6578063095ea7b31461028e57806318160ddd146102ae57806323b872dd146102cd5780632f745c59146102ed57600080fd5b806301ffc9a7146101e8578063049c5c491461021d57806306fdde0314610234578063081812fc14610256575b600080fd5b3480156101f457600080fd5b50610208610203366004611d86565b6105c4565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b506102326105ef565b005b34801561024057600080fd5b50610249610636565b6040516102149190611f6e565b34801561026257600080fd5b50610276610271366004611e2b565b6106c8565b6040516001600160a01b039091168152602001610214565b34801561029a57600080fd5b506102326102a9366004611d5d565b61075d565b3480156102ba57600080fd5b506008545b604051908152602001610214565b3480156102d957600080fd5b506102326102e8366004611c13565b610873565b3480156102f957600080fd5b506102bf610308366004611d5d565b6108a4565b34801561031957600080fd5b506102bf66b1a2bc2ec5000081565b34801561033457600080fd5b5061023261093a565b34801561034957600080fd5b50610232610358366004611c13565b6109c5565b34801561036957600080fd5b506102bf610378366004611e2b565b6109e0565b34801561038957600080fd5b50610232610398366004611dbe565b610a81565b3480156103a957600080fd5b506102766103b8366004611e2b565b610adf565b3480156103c957600080fd5b506102bf6103d8366004611bc0565b610b56565b3480156103e957600080fd5b50610232610bdd565b3480156103fe57600080fd5b50600a546001600160a01b0316610276565b34801561041c57600080fd5b5061023261042b366004611dbe565b610c13565b34801561043c57600080fd5b506102bf600581565b34801561045157600080fd5b50610249610c71565b34801561046657600080fd5b50610232610c80565b34801561047b57600080fd5b5061023261048a366004611d23565b610cbb565b34801561049b57600080fd5b506102bf6103e981565b3480156104b157600080fd5b506102326104c0366004611c4e565b610d80565b3480156104d157600080fd5b506102496104e0366004611e2b565b610db8565b3480156104f157600080fd5b5060105461020890610100900460ff1681565b610232610512366004611e2b565b610e51565b34801561052357600080fd5b506010546102089060ff1681565b34801561053d57600080fd5b50610249610fbd565b34801561055257600080fd5b50610208610561366004611be1565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561059b57600080fd5b506102326105aa366004611bc0565b610fcc565b3480156105bb57600080fd5b50610249611064565b60006001600160e01b0319821663780e9d6360e01b14806105e957506105e9826110f2565b92915050565b600a546001600160a01b031633146106225760405162461bcd60e51b815260040161061990611fd3565b60405180910390fd5b6010805460ff19811660ff90911615179055565b6060600080546106459061212b565b80601f01602080910402602001604051908101604052809291908181526020018280546106719061212b565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107415760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610619565b506000908152600460205260409020546001600160a01b031690565b600061076882610adf565b9050806001600160a01b0316836001600160a01b031614156107d65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610619565b336001600160a01b03821614806107f257506107f28133610561565b6108645760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610619565b61086e8383611142565b505050565b61087d33826111b0565b6108995760405162461bcd60e51b81526004016106199061204c565b61086e8383836112a7565b60006108af83610b56565b82106109115760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610619565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600d546001600160a01b03166108fc606461095647604b6120c9565b61096091906120b5565b6040518115909202916000818181858888f19350505050158015610988573d6000803e3d6000fd5b50600e546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156109c2573d6000803e3d6000fd5b50565b61086e83838360405180602001604052806000815250610d80565b60006109eb60085490565b8210610a4e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610619565b60088281548110610a6f57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610aab5760405162461bcd60e51b815260040161061990611fd3565b601054610100900460ff1615610ad35760405162461bcd60e51b815260040161061990612008565b61086e600c8383611b0b565b6000818152600260205260408120546001600160a01b0316806105e95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610619565b60006001600160a01b038216610bc15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610619565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610c075760405162461bcd60e51b815260040161061990611fd3565b610c116000611452565b565b600a546001600160a01b03163314610c3d5760405162461bcd60e51b815260040161061990611fd3565b601054610100900460ff1615610c655760405162461bcd60e51b815260040161061990612008565b61086e600b8383611b0b565b6060600180546106459061212b565b600a546001600160a01b03163314610caa5760405162461bcd60e51b815260040161061990611fd3565b6010805461ff001916610100179055565b6001600160a01b038216331415610d145760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610619565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d8a33836111b0565b610da65760405162461bcd60e51b81526004016106199061204c565b610db2848484846114a4565b50505050565b6000818152600260205260409020546060906001600160a01b0316610e1f5760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e006044820152606401610619565b600c610e2a836114d7565b604051602001610e3b929190611e8b565b6040516020818303038152906040529050919050565b60105460ff16610e915760405162461bcd60e51b815260206004820152600b60248201526a14d0531157d0d313d4d15160aa1b6044820152606401610619565b6103e981610e9e60085490565b610ea8919061209d565b1115610ee55760405162461bcd60e51b815260206004820152600c60248201526b4f55545f4f465f53544f434b60a01b6044820152606401610619565b6005811115610f2c5760405162461bcd60e51b8152602060048201526013602482015272115610d1515117d254d0d7d4115497d3525395606a1b6044820152606401610619565b34610f3e8266b1a2bc2ec500006120c9565b1115610f7f5760405162461bcd60e51b815260206004820152601060248201526f0929ca6aa8c8c9286928a9ca8be8aa8960831b6044820152606401610619565b60005b81811015610fb957610fa733610f9760085490565b610fa290600161209d565b6115f1565b80610fb181612166565b915050610f82565b5050565b6060600b80546106459061212b565b600a546001600160a01b03163314610ff65760405162461bcd60e51b815260040161061990611fd3565b6001600160a01b03811661105b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610619565b6109c281611452565b600f80546110719061212b565b80601f016020809104026020016040519081016040528092919081815260200182805461109d9061212b565b80156110ea5780601f106110bf576101008083540402835291602001916110ea565b820191906000526020600020905b8154815290600101906020018083116110cd57829003601f168201915b505050505081565b60006001600160e01b031982166380ac58cd60e01b148061112357506001600160e01b03198216635b5e139f60e01b145b806105e957506301ffc9a760e01b6001600160e01b03198316146105e9565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061117782610adf565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166112295760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610619565b600061123483610adf565b9050806001600160a01b0316846001600160a01b0316148061126f5750836001600160a01b0316611264846106c8565b6001600160a01b0316145b8061129f57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166112ba82610adf565b6001600160a01b0316146113225760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610619565b6001600160a01b0382166113845760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610619565b61138f83838361160b565b61139a600082611142565b6001600160a01b03831660009081526003602052604081208054600192906113c39084906120e8565b90915550506001600160a01b03821660009081526003602052604081208054600192906113f190849061209d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6114af8484846112a7565b6114bb848484846116c3565b610db25760405162461bcd60e51b815260040161061990611f81565b6060816114fb5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611525578061150f81612166565b915061151e9050600a836120b5565b91506114ff565b60008167ffffffffffffffff81111561154e57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611578576020820181803683370190505b5090505b841561129f5761158d6001836120e8565b915061159a600a86612181565b6115a590603061209d565b60f81b8183815181106115c857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506115ea600a866120b5565b945061157c565b610fb98282604051806020016040528060008152506117d0565b6001600160a01b0383166116665761166181600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611689565b816001600160a01b0316836001600160a01b031614611689576116898382611803565b6001600160a01b0382166116a05761086e816118a0565b826001600160a01b0316826001600160a01b03161461086e5761086e8282611979565b60006001600160a01b0384163b156117c557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611707903390899088908890600401611f31565b602060405180830381600087803b15801561172157600080fd5b505af1925050508015611751575060408051601f3d908101601f1916820190925261174e91810190611da2565b60015b6117ab573d80801561177f576040519150601f19603f3d011682016040523d82523d6000602084013e611784565b606091505b5080516117a35760405162461bcd60e51b815260040161061990611f81565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061129f565b506001949350505050565b6117da83836119bd565b6117e760008484846116c3565b61086e5760405162461bcd60e51b815260040161061990611f81565b6000600161181084610b56565b61181a91906120e8565b60008381526007602052604090205490915080821461186d576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906118b2906001906120e8565b600083815260096020526040812054600880549394509092849081106118e857634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061191757634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061195d57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061198483610b56565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611a135760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610619565b6000818152600260205260409020546001600160a01b031615611a785760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610619565b611a846000838361160b565b6001600160a01b0382166000908152600360205260408120805460019290611aad90849061209d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611b179061212b565b90600052602060002090601f016020900481019282611b395760008555611b7f565b82601f10611b525782800160ff19823516178555611b7f565b82800160010185558215611b7f579182015b82811115611b7f578235825591602001919060010190611b64565b50611b8b929150611b8f565b5090565b5b80821115611b8b5760008155600101611b90565b80356001600160a01b0381168114611bbb57600080fd5b919050565b600060208284031215611bd1578081fd5b611bda82611ba4565b9392505050565b60008060408385031215611bf3578081fd5b611bfc83611ba4565b9150611c0a60208401611ba4565b90509250929050565b600080600060608486031215611c27578081fd5b611c3084611ba4565b9250611c3e60208501611ba4565b9150604084013590509250925092565b60008060008060808587031215611c63578081fd5b611c6c85611ba4565b9350611c7a60208601611ba4565b925060408501359150606085013567ffffffffffffffff80821115611c9d578283fd5b818701915087601f830112611cb0578283fd5b813581811115611cc257611cc26121c1565b604051601f8201601f19908116603f01168101908382118183101715611cea57611cea6121c1565b816040528281528a6020848701011115611d02578586fd5b82602086016020830137918201602001949094529598949750929550505050565b60008060408385031215611d35578182fd5b611d3e83611ba4565b915060208301358015158114611d52578182fd5b809150509250929050565b60008060408385031215611d6f578182fd5b611d7883611ba4565b946020939093013593505050565b600060208284031215611d97578081fd5b8135611bda816121d7565b600060208284031215611db3578081fd5b8151611bda816121d7565b60008060208385031215611dd0578182fd5b823567ffffffffffffffff80821115611de7578384fd5b818501915085601f830112611dfa578384fd5b813581811115611e08578485fd5b866020828501011115611e19578485fd5b60209290920196919550909350505050565b600060208284031215611e3c578081fd5b5035919050565b60008151808452611e5b8160208601602086016120ff565b601f01601f19169290920160200192915050565b60008151611e818185602086016120ff565b9290920192915050565b600080845482600182811c915080831680611ea757607f831692505b6020808410821415611ec757634e487b7160e01b87526022600452602487fd5b818015611edb5760018114611eec57611f18565b60ff19861689528489019650611f18565b60008b815260209020885b86811015611f105781548b820152908501908301611ef7565b505084890196505b505050505050611f288185611e6f565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f6490830184611e43565b9695505050505050565b602081526000611bda6020830184611e43565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526024908201527f436f6e7472616374206d65746164617461206d6574686f647320617265206c6f60408201526318dad95960e21b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156120b0576120b0612195565b500190565b6000826120c4576120c46121ab565b500490565b60008160001904831182151516156120e3576120e3612195565b500290565b6000828210156120fa576120fa612195565b500390565b60005b8381101561211a578181015183820152602001612102565b83811115610db25750506000910152565b600181811c9082168061213f57607f821691505b6020821081141561216057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561217a5761217a612195565b5060010190565b600082612190576121906121ab565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146109c257600080fdfea2646970667358221220b7d8985126b106a33088cca302745443fa7cdec65794defef87e12d5aefc579f64736f6c634300080400333831356533626439636461333939633762343035363266396331386432626265313961653438333264373031313935376135646663356231663036643536613168747470733a2f2f6170692e697368696461736f6369616c636c75622e636f6d2f6170692f636f6e74726163742f68747470733a2f2f6170692e697368696461736f6369616c636c75622e636f6d2f6170692f746f6b656e2f

Deployed Bytecode

0x6080604052600436106101e35760003560e01c80638da5cb5b11610102578063c87b56dd11610095578063e8a3d48511610064578063e8a3d48514610531578063e985e9c514610546578063f2fde38b1461058f578063faf924cf146105af57600080fd5b8063c87b56dd146104c5578063cf309012146104e5578063d96a094a14610504578063e081b7811461051757600080fd5b8063989bdbb6116100d1578063989bdbb61461045a578063a22cb4651461046f578063b7ea456e1461048f578063b88d4fde146104a557600080fd5b80638da5cb5b146103f2578063938e3d7b14610410578063944936971461043057806395d89b411461044557600080fd5b806337da86131161017a57806355f804b31161014957806355f804b31461037d5780636352211e1461039d57806370a08231146103bd578063715018a6146103dd57600080fd5b806337da86131461030d5780633ccfd60b1461032857806342842e0e1461033d5780634f6ccce71461035d57600080fd5b8063095ea7b3116101b6578063095ea7b31461028e57806318160ddd146102ae57806323b872dd146102cd5780632f745c59146102ed57600080fd5b806301ffc9a7146101e8578063049c5c491461021d57806306fdde0314610234578063081812fc14610256575b600080fd5b3480156101f457600080fd5b50610208610203366004611d86565b6105c4565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b506102326105ef565b005b34801561024057600080fd5b50610249610636565b6040516102149190611f6e565b34801561026257600080fd5b50610276610271366004611e2b565b6106c8565b6040516001600160a01b039091168152602001610214565b34801561029a57600080fd5b506102326102a9366004611d5d565b61075d565b3480156102ba57600080fd5b506008545b604051908152602001610214565b3480156102d957600080fd5b506102326102e8366004611c13565b610873565b3480156102f957600080fd5b506102bf610308366004611d5d565b6108a4565b34801561031957600080fd5b506102bf66b1a2bc2ec5000081565b34801561033457600080fd5b5061023261093a565b34801561034957600080fd5b50610232610358366004611c13565b6109c5565b34801561036957600080fd5b506102bf610378366004611e2b565b6109e0565b34801561038957600080fd5b50610232610398366004611dbe565b610a81565b3480156103a957600080fd5b506102766103b8366004611e2b565b610adf565b3480156103c957600080fd5b506102bf6103d8366004611bc0565b610b56565b3480156103e957600080fd5b50610232610bdd565b3480156103fe57600080fd5b50600a546001600160a01b0316610276565b34801561041c57600080fd5b5061023261042b366004611dbe565b610c13565b34801561043c57600080fd5b506102bf600581565b34801561045157600080fd5b50610249610c71565b34801561046657600080fd5b50610232610c80565b34801561047b57600080fd5b5061023261048a366004611d23565b610cbb565b34801561049b57600080fd5b506102bf6103e981565b3480156104b157600080fd5b506102326104c0366004611c4e565b610d80565b3480156104d157600080fd5b506102496104e0366004611e2b565b610db8565b3480156104f157600080fd5b5060105461020890610100900460ff1681565b610232610512366004611e2b565b610e51565b34801561052357600080fd5b506010546102089060ff1681565b34801561053d57600080fd5b50610249610fbd565b34801561055257600080fd5b50610208610561366004611be1565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561059b57600080fd5b506102326105aa366004611bc0565b610fcc565b3480156105bb57600080fd5b50610249611064565b60006001600160e01b0319821663780e9d6360e01b14806105e957506105e9826110f2565b92915050565b600a546001600160a01b031633146106225760405162461bcd60e51b815260040161061990611fd3565b60405180910390fd5b6010805460ff19811660ff90911615179055565b6060600080546106459061212b565b80601f01602080910402602001604051908101604052809291908181526020018280546106719061212b565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107415760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610619565b506000908152600460205260409020546001600160a01b031690565b600061076882610adf565b9050806001600160a01b0316836001600160a01b031614156107d65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610619565b336001600160a01b03821614806107f257506107f28133610561565b6108645760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610619565b61086e8383611142565b505050565b61087d33826111b0565b6108995760405162461bcd60e51b81526004016106199061204c565b61086e8383836112a7565b60006108af83610b56565b82106109115760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610619565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600d546001600160a01b03166108fc606461095647604b6120c9565b61096091906120b5565b6040518115909202916000818181858888f19350505050158015610988573d6000803e3d6000fd5b50600e546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156109c2573d6000803e3d6000fd5b50565b61086e83838360405180602001604052806000815250610d80565b60006109eb60085490565b8210610a4e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610619565b60088281548110610a6f57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b03163314610aab5760405162461bcd60e51b815260040161061990611fd3565b601054610100900460ff1615610ad35760405162461bcd60e51b815260040161061990612008565b61086e600c8383611b0b565b6000818152600260205260408120546001600160a01b0316806105e95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610619565b60006001600160a01b038216610bc15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610619565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610c075760405162461bcd60e51b815260040161061990611fd3565b610c116000611452565b565b600a546001600160a01b03163314610c3d5760405162461bcd60e51b815260040161061990611fd3565b601054610100900460ff1615610c655760405162461bcd60e51b815260040161061990612008565b61086e600b8383611b0b565b6060600180546106459061212b565b600a546001600160a01b03163314610caa5760405162461bcd60e51b815260040161061990611fd3565b6010805461ff001916610100179055565b6001600160a01b038216331415610d145760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610619565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d8a33836111b0565b610da65760405162461bcd60e51b81526004016106199061204c565b610db2848484846114a4565b50505050565b6000818152600260205260409020546060906001600160a01b0316610e1f5760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e006044820152606401610619565b600c610e2a836114d7565b604051602001610e3b929190611e8b565b6040516020818303038152906040529050919050565b60105460ff16610e915760405162461bcd60e51b815260206004820152600b60248201526a14d0531157d0d313d4d15160aa1b6044820152606401610619565b6103e981610e9e60085490565b610ea8919061209d565b1115610ee55760405162461bcd60e51b815260206004820152600c60248201526b4f55545f4f465f53544f434b60a01b6044820152606401610619565b6005811115610f2c5760405162461bcd60e51b8152602060048201526013602482015272115610d1515117d254d0d7d4115497d3525395606a1b6044820152606401610619565b34610f3e8266b1a2bc2ec500006120c9565b1115610f7f5760405162461bcd60e51b815260206004820152601060248201526f0929ca6aa8c8c9286928a9ca8be8aa8960831b6044820152606401610619565b60005b81811015610fb957610fa733610f9760085490565b610fa290600161209d565b6115f1565b80610fb181612166565b915050610f82565b5050565b6060600b80546106459061212b565b600a546001600160a01b03163314610ff65760405162461bcd60e51b815260040161061990611fd3565b6001600160a01b03811661105b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610619565b6109c281611452565b600f80546110719061212b565b80601f016020809104026020016040519081016040528092919081815260200182805461109d9061212b565b80156110ea5780601f106110bf576101008083540402835291602001916110ea565b820191906000526020600020905b8154815290600101906020018083116110cd57829003601f168201915b505050505081565b60006001600160e01b031982166380ac58cd60e01b148061112357506001600160e01b03198216635b5e139f60e01b145b806105e957506301ffc9a760e01b6001600160e01b03198316146105e9565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061117782610adf565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166112295760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610619565b600061123483610adf565b9050806001600160a01b0316846001600160a01b0316148061126f5750836001600160a01b0316611264846106c8565b6001600160a01b0316145b8061129f57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166112ba82610adf565b6001600160a01b0316146113225760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610619565b6001600160a01b0382166113845760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610619565b61138f83838361160b565b61139a600082611142565b6001600160a01b03831660009081526003602052604081208054600192906113c39084906120e8565b90915550506001600160a01b03821660009081526003602052604081208054600192906113f190849061209d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6114af8484846112a7565b6114bb848484846116c3565b610db25760405162461bcd60e51b815260040161061990611f81565b6060816114fb5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611525578061150f81612166565b915061151e9050600a836120b5565b91506114ff565b60008167ffffffffffffffff81111561154e57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611578576020820181803683370190505b5090505b841561129f5761158d6001836120e8565b915061159a600a86612181565b6115a590603061209d565b60f81b8183815181106115c857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506115ea600a866120b5565b945061157c565b610fb98282604051806020016040528060008152506117d0565b6001600160a01b0383166116665761166181600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611689565b816001600160a01b0316836001600160a01b031614611689576116898382611803565b6001600160a01b0382166116a05761086e816118a0565b826001600160a01b0316826001600160a01b03161461086e5761086e8282611979565b60006001600160a01b0384163b156117c557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611707903390899088908890600401611f31565b602060405180830381600087803b15801561172157600080fd5b505af1925050508015611751575060408051601f3d908101601f1916820190925261174e91810190611da2565b60015b6117ab573d80801561177f576040519150601f19603f3d011682016040523d82523d6000602084013e611784565b606091505b5080516117a35760405162461bcd60e51b815260040161061990611f81565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061129f565b506001949350505050565b6117da83836119bd565b6117e760008484846116c3565b61086e5760405162461bcd60e51b815260040161061990611f81565b6000600161181084610b56565b61181a91906120e8565b60008381526007602052604090205490915080821461186d576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906118b2906001906120e8565b600083815260096020526040812054600880549394509092849081106118e857634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061191757634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061195d57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061198483610b56565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611a135760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610619565b6000818152600260205260409020546001600160a01b031615611a785760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610619565b611a846000838361160b565b6001600160a01b0382166000908152600360205260408120805460019290611aad90849061209d565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611b179061212b565b90600052602060002090601f016020900481019282611b395760008555611b7f565b82601f10611b525782800160ff19823516178555611b7f565b82800160010185558215611b7f579182015b82811115611b7f578235825591602001919060010190611b64565b50611b8b929150611b8f565b5090565b5b80821115611b8b5760008155600101611b90565b80356001600160a01b0381168114611bbb57600080fd5b919050565b600060208284031215611bd1578081fd5b611bda82611ba4565b9392505050565b60008060408385031215611bf3578081fd5b611bfc83611ba4565b9150611c0a60208401611ba4565b90509250929050565b600080600060608486031215611c27578081fd5b611c3084611ba4565b9250611c3e60208501611ba4565b9150604084013590509250925092565b60008060008060808587031215611c63578081fd5b611c6c85611ba4565b9350611c7a60208601611ba4565b925060408501359150606085013567ffffffffffffffff80821115611c9d578283fd5b818701915087601f830112611cb0578283fd5b813581811115611cc257611cc26121c1565b604051601f8201601f19908116603f01168101908382118183101715611cea57611cea6121c1565b816040528281528a6020848701011115611d02578586fd5b82602086016020830137918201602001949094529598949750929550505050565b60008060408385031215611d35578182fd5b611d3e83611ba4565b915060208301358015158114611d52578182fd5b809150509250929050565b60008060408385031215611d6f578182fd5b611d7883611ba4565b946020939093013593505050565b600060208284031215611d97578081fd5b8135611bda816121d7565b600060208284031215611db3578081fd5b8151611bda816121d7565b60008060208385031215611dd0578182fd5b823567ffffffffffffffff80821115611de7578384fd5b818501915085601f830112611dfa578384fd5b813581811115611e08578485fd5b866020828501011115611e19578485fd5b60209290920196919550909350505050565b600060208284031215611e3c578081fd5b5035919050565b60008151808452611e5b8160208601602086016120ff565b601f01601f19169290920160200192915050565b60008151611e818185602086016120ff565b9290920192915050565b600080845482600182811c915080831680611ea757607f831692505b6020808410821415611ec757634e487b7160e01b87526022600452602487fd5b818015611edb5760018114611eec57611f18565b60ff19861689528489019650611f18565b60008b815260209020885b86811015611f105781548b820152908501908301611ef7565b505084890196505b505050505050611f288185611e6f565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f6490830184611e43565b9695505050505050565b602081526000611bda6020830184611e43565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526024908201527f436f6e7472616374206d65746164617461206d6574686f647320617265206c6f60408201526318dad95960e21b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156120b0576120b0612195565b500190565b6000826120c4576120c46121ab565b500490565b60008160001904831182151516156120e3576120e3612195565b500290565b6000828210156120fa576120fa612195565b500390565b60005b8381101561211a578181015183820152602001612102565b83811115610db25750506000910152565b600181811c9082168061213f57607f821691505b6020821081141561216057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561217a5761217a612195565b5060010190565b600082612190576121906121ab565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146109c257600080fdfea2646970667358221220b7d8985126b106a33088cca302745443fa7cdec65794defef87e12d5aefc579f64736f6c63430008040033

Deployed Bytecode Sourcemap

46783:2442:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39782:300;;;;;;;;;;-1:-1:-1;39782:300:0;;;;;:::i;:::-;;:::i;:::-;;;6707:14:1;;6700:22;6682:41;;6670:2;6655:18;39782:300:0;;;;;;;;48522:86;;;;;;;;;;;;;:::i;:::-;;26942:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28635:308::-;;;;;;;;;;-1:-1:-1;28635:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6005:32:1;;;5987:51;;5975:2;5960:18;28635:308:0;5942:102:1;28158:411:0;;;;;;;;;;-1:-1:-1;28158:411:0;;;;;:::i;:::-;;:::i;40585:113::-;;;;;;;;;;-1:-1:-1;40673:10:0;:17;40585:113;;;16034:25:1;;;16022:2;16007:18;40585:113:0;15989:76:1;29694:376:0;;;;;;;;;;-1:-1:-1;29694:376:0;;;;;:::i;:::-;;:::i;40166:343::-;;;;;;;;;;-1:-1:-1;40166:343:0;;;;;:::i;:::-;;:::i;46924:46::-;;;;;;;;;;;;46960:10;46924:46;;48251:166;;;;;;;;;;;;;:::i;30141:185::-;;;;;;;;;;-1:-1:-1;30141:185:0;;;;;:::i;:::-;;:::i;40775:320::-;;;;;;;;;;-1:-1:-1;40775:320:0;;;;;:::i;:::-;;:::i;48743:108::-;;;;;;;;;;-1:-1:-1;48743:108:0;;;;;:::i;:::-;;:::i;26549:326::-;;;;;;;;;;-1:-1:-1;26549:326:0;;;;;:::i;:::-;;:::i;26192:295::-;;;;;;;;;;-1:-1:-1;26192:295:0;;;;;:::i;:::-;;:::i;9649:94::-;;;;;;;;;;;;;:::i;8998:87::-;;;;;;;;;;-1:-1:-1;9071:6:0;;-1:-1:-1;;;;;9071:6:0;8998:87;;48620:111;;;;;;;;;;-1:-1:-1;48620:111:0;;;;;:::i;:::-;;:::i;46977:40::-;;;;;;;;;;;;47016:1;46977:40;;27111:104;;;;;;;;;;;;;:::i;48435:75::-;;;;;;;;;;;;;:::i;29015:327::-;;;;;;;;;;-1:-1:-1;29015:327:0;;;;;:::i;:::-;;:::i;46879:38::-;;;;;;;;;;;;46913:4;46879:38;;30397:365;;;;;;;;;;-1:-1:-1;30397:365:0;;;;;:::i;:::-;;:::i;48968:254::-;;;;;;;;;;-1:-1:-1;48968:254:0;;;;;:::i;:::-;;:::i;47566:18::-;;;;;;;;;;-1:-1:-1;47566:18:0;;;;;;;;;;;47779:460;;;;;;:::i;:::-;;:::i;47539:20::-;;;;;;;;;;-1:-1:-1;47539:20:0;;;;;;;;48859:97;;;;;;;;;;;;;:::i;29413:214::-;;;;;;;;;;-1:-1:-1;29413:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;29584:25:0;;;29555:4;29584:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29413:214;9898:229;;;;;;;;;;-1:-1:-1;9898:229:0;;;;;:::i;:::-;;:::i;47444:88::-;;;;;;;;;;;;;:::i;39782:300::-;39929:4;-1:-1:-1;;;;;;39971:50:0;;-1:-1:-1;;;39971:50:0;;:103;;;40038:36;40062:11;40038:23;:36::i;:::-;39951:123;39782:300;-1:-1:-1;;39782:300:0:o;48522:86::-;9071:6;;-1:-1:-1;;;;;9071:6:0;2051:10;9218:23;9210:68;;;;-1:-1:-1;;;9210:68:0;;;;;;;:::i;:::-;;;;;;;;;48592:8:::1;::::0;;-1:-1:-1;;48580:20:0;::::1;48592:8;::::0;;::::1;48591:9;48580:20;::::0;;48522:86::o;26942:100::-;26996:13;27029:5;27022:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26942:100;:::o;28635:308::-;28756:7;32398:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32398:16:0;28781:110;;;;-1:-1:-1;;;28781:110:0;;12563:2:1;28781:110:0;;;12545:21:1;12602:2;12582:18;;;12575:30;12641:34;12621:18;;;12614:62;-1:-1:-1;;;12692:18:1;;;12685:42;12744:19;;28781:110:0;12535:234:1;28781:110:0;-1:-1:-1;28911:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28911:24:0;;28635:308::o;28158:411::-;28239:13;28255:23;28270:7;28255:14;:23::i;:::-;28239:39;;28303:5;-1:-1:-1;;;;;28297:11:0;:2;-1:-1:-1;;;;;28297:11:0;;;28289:57;;;;-1:-1:-1;;;28289:57:0;;14512:2:1;28289:57:0;;;14494:21:1;14551:2;14531:18;;;14524:30;14590:34;14570:18;;;14563:62;-1:-1:-1;;;14641:18:1;;;14634:31;14682:19;;28289:57:0;14484:223:1;28289:57:0;2051:10;-1:-1:-1;;;;;28381:21:0;;;;:62;;-1:-1:-1;28406:37:0;28423:5;2051:10;29413:214;:::i;28406:37::-;28359:168;;;;-1:-1:-1;;;28359:168:0;;10956:2:1;28359:168:0;;;10938:21:1;10995:2;10975:18;;;10968:30;11034:34;11014:18;;;11007:62;11105:26;11085:18;;;11078:54;11149:19;;28359:168:0;10928:246:1;28359:168:0;28540:21;28549:2;28553:7;28540:8;:21::i;:::-;28158:411;;;:::o;29694:376::-;29903:41;2051:10;29936:7;29903:18;:41::i;:::-;29881:140;;;;-1:-1:-1;;;29881:140:0;;;;;;;:::i;:::-;30034:28;30044:4;30050:2;30054:7;30034:9;:28::i;40166:343::-;40308:7;40363:23;40380:5;40363:16;:23::i;:::-;40355:5;:31;40333:124;;;;-1:-1:-1;;;40333:124:0;;7160:2:1;40333:124:0;;;7142:21:1;7199:2;7179:18;;;7172:30;7238:34;7218:18;;;7211:62;-1:-1:-1;;;7289:18:1;;;7282:41;7340:19;;40333:124:0;7132:233:1;40333:124:0;-1:-1:-1;;;;;;40475:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;40166:343::o;48251:166::-;48299:7;;-1:-1:-1;;;;;48299:7:0;48291:59;48346:3;48317:26;:21;48341:2;48317:26;:::i;:::-;:32;;;;:::i;:::-;48291:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48369:7:0;;48361:48;;-1:-1:-1;;;;;48369:7:0;;;;48387:21;48361:48;;;;;48369:7;48361:48;48369:7;48361:48;48387:21;48369:7;48361:48;;;;;;;;;;;;;;;;;;;;;48251:166::o;30141:185::-;30279:39;30296:4;30302:2;30306:7;30279:39;;;;;;;;;;;;:16;:39::i;40775:320::-;40895:7;40950:30;40673:10;:17;;40585:113;40950:30;40942:5;:38;40920:132;;;;-1:-1:-1;;;40920:132:0;;15332:2:1;40920:132:0;;;15314:21:1;15371:2;15351:18;;;15344:30;15410:34;15390:18;;;15383:62;-1:-1:-1;;;15461:18:1;;;15454:42;15513:19;;40920:132:0;15304:234:1;40920:132:0;41070:10;41081:5;41070:17;;;;;;-1:-1:-1;;;41070:17:0;;;;;;;;;;;;;;;;;41063:24;;40775:320;;;:::o;48743:108::-;9071:6;;-1:-1:-1;;;;;9071:6:0;2051:10;9218:23;9210:68;;;;-1:-1:-1;;;9210:68:0;;;;;;;:::i;:::-;47700:6:::1;::::0;::::1;::::0;::::1;;;47699:7;47691:56;;;;-1:-1:-1::0;;;47691:56:0::1;;;;;;;:::i;:::-;48824:19:::2;:13;48840:3:::0;;48824:19:::2;:::i;26549:326::-:0;26666:7;26707:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26707:16:0;26756:19;26734:110;;;;-1:-1:-1;;;26734:110:0;;11792:2:1;26734:110:0;;;11774:21:1;11831:2;11811:18;;;11804:30;11870:34;11850:18;;;11843:62;-1:-1:-1;;;11921:18:1;;;11914:39;11970:19;;26734:110:0;11764:231:1;26192:295:0;26309:7;-1:-1:-1;;;;;26356:19:0;;26334:111;;;;-1:-1:-1;;;26334:111:0;;11381:2:1;26334:111:0;;;11363:21:1;11420:2;11400:18;;;11393:30;11459:34;11439:18;;;11432:62;-1:-1:-1;;;11510:18:1;;;11503:40;11560:19;;26334:111:0;11353:232:1;26334:111:0;-1:-1:-1;;;;;;26463:16:0;;;;;:9;:16;;;;;;;26192:295::o;9649:94::-;9071:6;;-1:-1:-1;;;;;9071:6:0;2051:10;9218:23;9210:68;;;;-1:-1:-1;;;9210:68:0;;;;;;;:::i;:::-;9714:21:::1;9732:1;9714:9;:21::i;:::-;9649:94::o:0;48620:111::-;9071:6;;-1:-1:-1;;;;;9071:6:0;2051:10;9218:23;9210:68;;;;-1:-1:-1;;;9210:68:0;;;;;;;:::i;:::-;47700:6:::1;::::0;::::1;::::0;::::1;;;47699:7;47691:56;;;;-1:-1:-1::0;;;47691:56:0::1;;;;;;;:::i;:::-;48705:18:::2;:12;48720:3:::0;;48705:18:::2;:::i;27111:104::-:0;27167:13;27200:7;27193:14;;;;;:::i;48435:75::-;9071:6;;-1:-1:-1;;;;;9071:6:0;2051:10;9218:23;9210:68;;;;-1:-1:-1;;;9210:68:0;;;;;;;:::i;:::-;48489:6:::1;:13:::0;;-1:-1:-1;;48489:13:0::1;;;::::0;;48435:75::o;29015:327::-;-1:-1:-1;;;;;29150:24:0;;2051:10;29150:24;;29142:62;;;;-1:-1:-1;;;29142:62:0;;9160:2:1;29142:62:0;;;9142:21:1;9199:2;9179:18;;;9172:30;9238:27;9218:18;;;9211:55;9283:18;;29142:62:0;9132:175:1;29142:62:0;2051:10;29217:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29217:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29217:53:0;;;;;;;;;;29286:48;;6682:41:1;;;29217:42:0;;2051:10;29286:48;;6655:18:1;29286:48:0;;;;;;;29015:327;;:::o;30397:365::-;30586:41;2051:10;30619:7;30586:18;:41::i;:::-;30564:140;;;;-1:-1:-1;;;30564:140:0;;;;;;;:::i;:::-;30715:39;30729:4;30735:2;30739:7;30748:5;30715:13;:39::i;:::-;30397:365;;;;:::o;48968:254::-;32374:4;32398:16;;;:7;:16;;;;;;49041:13;;-1:-1:-1;;;;;32398:16:0;49067:60;;;;-1:-1:-1;;;49067:60:0;;14152:2:1;49067:60:0;;;14134:21:1;14191:2;14171:18;;;14164:30;14230:33;14210:18;;;14203:61;14281:18;;49067:60:0;14124:181:1;49067:60:0;49179:13;49194:18;:7;:16;:18::i;:::-;49162:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49148:66;;48968:254;;;:::o;47779:460::-;47851:8;;;;47843:32;;;;-1:-1:-1;;;47843:32:0;;9855:2:1;47843:32:0;;;9837:21:1;9894:2;9874:18;;;9867:30;-1:-1:-1;;;9913:18:1;;;9906:41;9964:18;;47843:32:0;9827:161:1;47843:32:0;46913:4;47910:13;47894;40673:10;:17;;40585:113;47894:13;:29;;;;:::i;:::-;:40;;47886:65;;;;-1:-1:-1;;;47886:65:0;;9514:2:1;47886:65:0;;;9496:21:1;9553:2;9533:18;;;9526:30;-1:-1:-1;;;9572:18:1;;;9565:42;9624:18;;47886:65:0;9486:162:1;47886:65:0;47016:1;47970:13;:29;;47962:61;;;;-1:-1:-1;;;47962:61:0;;10608:2:1;47962:61:0;;;10590:21:1;10647:2;10627:18;;;10620:30;-1:-1:-1;;;10666:18:1;;;10659:49;10725:18;;47962:61:0;10580:169:1;47962:61:0;48071:9;48042:25;48054:13;46960:10;48042:25;:::i;:::-;:38;;48034:67;;;;-1:-1:-1;;;48034:67:0;;15745:2:1;48034:67:0;;;15727:21:1;15784:2;15764:18;;;15757:30;-1:-1:-1;;;15803:18:1;;;15796:46;15859:18;;48034:67:0;15717:166:1;48034:67:0;48126:9;48122:110;48145:13;48141:1;:17;48122:110;;;48180:40;48190:10;48202:13;40673:10;:17;;40585:113;48202:13;:17;;48218:1;48202:17;:::i;:::-;48180:9;:40::i;:::-;48160:3;;;;:::i;:::-;;;;48122:110;;;;47779:460;:::o;48859:97::-;48903:13;48936:12;48929:19;;;;;:::i;9898:229::-;9071:6;;-1:-1:-1;;;;;9071:6:0;2051:10;9218:23;9210:68;;;;-1:-1:-1;;;9210:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10001:22:0;::::1;9979:110;;;::::0;-1:-1:-1;;;9979:110:0;;7991:2:1;9979:110:0::1;::::0;::::1;7973:21:1::0;8030:2;8010:18;;;8003:30;8069:34;8049:18;;;8042:62;-1:-1:-1;;;8120:18:1;;;8113:36;8166:19;;9979:110:0::1;7963:228:1::0;9979:110:0::1;10100:19;10110:8;10100:9;:19::i;47444:88::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25773:355::-;25920:4;-1:-1:-1;;;;;;25962:40:0;;-1:-1:-1;;;25962:40:0;;:105;;-1:-1:-1;;;;;;;26019:48:0;;-1:-1:-1;;;26019:48:0;25962:105;:158;;;-1:-1:-1;;;;;;;;;;12278:40:0;;;26084:36;12119:207;36432:174;36507:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;36507:29:0;-1:-1:-1;;;;;36507:29:0;;;;;;;;:24;;36561:23;36507:24;36561:14;:23::i;:::-;-1:-1:-1;;;;;36552:46:0;;;;;;;;;;;36432:174;;:::o;32603:452::-;32732:4;32398:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32398:16:0;32754:110;;;;-1:-1:-1;;;32754:110:0;;10195:2:1;32754:110:0;;;10177:21:1;10234:2;10214:18;;;10207:30;10273:34;10253:18;;;10246:62;-1:-1:-1;;;10324:18:1;;;10317:42;10376:19;;32754:110:0;10167:234:1;32754:110:0;32875:13;32891:23;32906:7;32891:14;:23::i;:::-;32875:39;;32944:5;-1:-1:-1;;;;;32933:16:0;:7;-1:-1:-1;;;;;32933:16:0;;:64;;;;32990:7;-1:-1:-1;;;;;32966:31:0;:20;32978:7;32966:11;:20::i;:::-;-1:-1:-1;;;;;32966:31:0;;32933:64;:113;;;-1:-1:-1;;;;;;29584:25:0;;;29555:4;29584:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;33014:32;32925:122;32603:452;-1:-1:-1;;;;32603:452:0:o;35699:615::-;35872:4;-1:-1:-1;;;;;35845:31:0;:23;35860:7;35845:14;:23::i;:::-;-1:-1:-1;;;;;35845:31:0;;35823:122;;;;-1:-1:-1;;;35823:122:0;;13337:2:1;35823:122:0;;;13319:21:1;13376:2;13356:18;;;13349:30;13415:34;13395:18;;;13388:62;-1:-1:-1;;;13466:18:1;;;13459:39;13515:19;;35823:122:0;13309:231:1;35823:122:0;-1:-1:-1;;;;;35964:16:0;;35956:65;;;;-1:-1:-1;;;35956:65:0;;8755:2:1;35956:65:0;;;8737:21:1;8794:2;8774:18;;;8767:30;8833:34;8813:18;;;8806:62;-1:-1:-1;;;8884:18:1;;;8877:34;8928:19;;35956:65:0;8727:226:1;35956:65:0;36034:39;36055:4;36061:2;36065:7;36034:20;:39::i;:::-;36138:29;36155:1;36159:7;36138:8;:29::i;:::-;-1:-1:-1;;;;;36180:15:0;;;;;;:9;:15;;;;;:20;;36199:1;;36180:15;:20;;36199:1;;36180:20;:::i;:::-;;;;-1:-1:-1;;;;;;;36211:13:0;;;;;;:9;:13;;;;;:18;;36228:1;;36211:13;:18;;36228:1;;36211:18;:::i;:::-;;;;-1:-1:-1;;36240:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36240:21:0;-1:-1:-1;;;;;36240:21:0;;;;;;;;;36279:27;;36240:16;;36279:27;;;;;;;35699:615;;;:::o;10135:173::-;10210:6;;;-1:-1:-1;;;;;10227:17:0;;;-1:-1:-1;;;;;;10227:17:0;;;;;;;10260:40;;10210:6;;;10227:17;10210:6;;10260:40;;10191:16;;10260:40;10135:173;;:::o;31644:352::-;31801:28;31811:4;31817:2;31821:7;31801:9;:28::i;:::-;31862:48;31885:4;31891:2;31895:7;31904:5;31862:22;:48::i;:::-;31840:148;;;;-1:-1:-1;;;31840:148:0;;;;;;;:::i;12640:723::-;12696:13;12917:10;12913:53;;-1:-1:-1;;12944:10:0;;;;;;;;;;;;-1:-1:-1;;;12944:10:0;;;;;12640:723::o;12913:53::-;12991:5;12976:12;13032:78;13039:9;;13032:78;;13065:8;;;;:::i;:::-;;-1:-1:-1;13088:10:0;;-1:-1:-1;13096:2:0;13088:10;;:::i;:::-;;;13032:78;;;13120:19;13152:6;13142:17;;;;;;-1:-1:-1;;;13142:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13142:17:0;;13120:39;;13170:154;13177:10;;13170:154;;13204:11;13214:1;13204:11;;:::i;:::-;;-1:-1:-1;13273:10:0;13281:2;13273:5;:10;:::i;:::-;13260:24;;:2;:24;:::i;:::-;13247:39;;13230:6;13237;13230:14;;;;;;-1:-1:-1;;;13230:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;13230:56:0;;;;;;;;-1:-1:-1;13301:11:0;13310:2;13301:11;;:::i;:::-;;;13170:154;;33397:110;33473:26;33483:2;33487:7;33473:26;;;;;;;;;;;;:9;:26::i;41708:589::-;-1:-1:-1;;;;;41914:18:0;;41910:187;;41949:40;41981:7;43124:10;:17;;43097:24;;;;:15;:24;;;;;:44;;;43152:24;;;;;;;;;;;;43020:164;41949:40;41910:187;;;42019:2;-1:-1:-1;;;;;42011:10:0;:4;-1:-1:-1;;;;;42011:10:0;;42007:90;;42038:47;42071:4;42077:7;42038:32;:47::i;:::-;-1:-1:-1;;;;;42111:16:0;;42107:183;;42144:45;42181:7;42144:36;:45::i;42107:183::-;42217:4;-1:-1:-1;;;;;42211:10:0;:2;-1:-1:-1;;;;;42211:10:0;;42207:83;;42238:40;42266:2;42270:7;42238:27;:40::i;37171:984::-;37326:4;-1:-1:-1;;;;;37347:13:0;;15516:20;15564:8;37343:805;;37400:175;;-1:-1:-1;;;37400:175:0;;-1:-1:-1;;;;;37400:36:0;;;;;:175;;2051:10;;37494:4;;37521:7;;37551:5;;37400:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37400:175:0;;;;;;;;-1:-1:-1;;37400:175:0;;;;;;;;;;;;:::i;:::-;;;37379:714;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37762:13:0;;37758:320;;37805:108;;-1:-1:-1;;;37805:108:0;;;;;;;:::i;37758:320::-;38028:6;38022:13;38013:6;38009:2;38005:15;37998:38;37379:714;-1:-1:-1;;;;;;37639:55:0;-1:-1:-1;;;37639:55:0;;-1:-1:-1;37632:62:0;;37343:805;-1:-1:-1;38132:4:0;37171:984;;;;;;:::o;33734:321::-;33864:18;33870:2;33874:7;33864:5;:18::i;:::-;33915:54;33946:1;33950:2;33954:7;33963:5;33915:22;:54::i;:::-;33893:154;;;;-1:-1:-1;;;33893:154:0;;;;;;;:::i;43811:1002::-;44091:22;44141:1;44116:22;44133:4;44116:16;:22::i;:::-;:26;;;;:::i;:::-;44153:18;44174:26;;;:17;:26;;;;;;44091:51;;-1:-1:-1;44307:28:0;;;44303:328;;-1:-1:-1;;;;;44374:18:0;;44352:19;44374:18;;;:12;:18;;;;;;;;:34;;;;;;;;;44425:30;;;;;;:44;;;44542:30;;:17;:30;;;;;:43;;;44303:328;-1:-1:-1;44727:26:0;;;;:17;:26;;;;;;;;44720:33;;;-1:-1:-1;;;;;44771:18:0;;;;;:12;:18;;;;;:34;;;;;;;44764:41;43811:1002::o;45108:1079::-;45386:10;:17;45361:22;;45386:21;;45406:1;;45386:21;:::i;:::-;45418:18;45439:24;;;:15;:24;;;;;;45812:10;:26;;45361:46;;-1:-1:-1;45439:24:0;;45361:46;;45812:26;;;;-1:-1:-1;;;45812:26:0;;;;;;;;;;;;;;;;;45790:48;;45876:11;45851:10;45862;45851:22;;;;;;-1:-1:-1;;;45851:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;45956:28;;;:15;:28;;;;;;;:41;;;46128:24;;;;;46121:31;46163:10;:16;;;;;-1:-1:-1;;;46163:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;45108:1079;;;;:::o;42598:221::-;42683:14;42700:20;42717:2;42700:16;:20::i;:::-;-1:-1:-1;;;;;42731:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;42776:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;42598:221:0:o;34391:382::-;-1:-1:-1;;;;;34471:16:0;;34463:61;;;;-1:-1:-1;;;34463:61:0;;12202:2:1;34463:61:0;;;12184:21:1;;;12221:18;;;12214:30;12280:34;12260:18;;;12253:62;12332:18;;34463:61:0;12174:182:1;34463:61:0;32374:4;32398:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32398:16:0;:30;34535:58;;;;-1:-1:-1;;;34535:58:0;;8398:2:1;34535:58:0;;;8380:21:1;8437:2;8417:18;;;8410:30;8476;8456:18;;;8449:58;8524:18;;34535:58:0;8370:178:1;34535:58:0;34606:45;34635:1;34639:2;34643:7;34606:20;:45::i;:::-;-1:-1:-1;;;;;34664:13:0;;;;;;:9;:13;;;;;:18;;34681:1;;34664:13;:18;;34681:1;;34664:18;:::i;:::-;;;;-1:-1:-1;;34693:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34693:21:0;-1:-1:-1;;;;;34693:21:0;;;;;;;;34732:33;;34693:16;;;34732:33;;34693:16;;34732:33;34391:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:196::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;:::-;343:39;262:126;-1:-1:-1;;;262:126:1:o;393:270::-;461:6;469;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;745:6;753;761;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:1183::-;1106:6;1114;1122;1130;1183:3;1171:9;1162:7;1158:23;1154:33;1151:2;;;1205:6;1197;1190:22;1151:2;1233:29;1252:9;1233:29;:::i;:::-;1223:39;;1281:38;1315:2;1304:9;1300:18;1281:38;:::i;:::-;1271:48;;1366:2;1355:9;1351:18;1338:32;1328:42;;1421:2;1410:9;1406:18;1393:32;1444:18;1485:2;1477:6;1474:14;1471:2;;;1506:6;1498;1491:22;1471:2;1549:6;1538:9;1534:22;1524:32;;1594:7;1587:4;1583:2;1579:13;1575:27;1565:2;;1621:6;1613;1606:22;1565:2;1662;1649:16;1684:2;1680;1677:10;1674:2;;;1690:18;;:::i;:::-;1765:2;1759:9;1733:2;1819:13;;-1:-1:-1;;1815:22:1;;;1839:2;1811:31;1807:40;1795:53;;;1863:18;;;1883:22;;;1860:46;1857:2;;;1909:18;;:::i;:::-;1949:10;1945:2;1938:22;1984:2;1976:6;1969:18;2024:7;2019:2;2014;2010;2006:11;2002:20;1999:33;1996:2;;;2050:6;2042;2035:22;1996:2;2111;2106;2102;2098:11;2093:2;2085:6;2081:15;2068:46;2134:15;;;2151:2;2130:24;2123:40;;;;1141:1053;;;;-1:-1:-1;1141:1053:1;;-1:-1:-1;;;;1141:1053:1:o;2199:367::-;2264:6;2272;2325:2;2313:9;2304:7;2300:23;2296:32;2293:2;;;2346:6;2338;2331:22;2293:2;2374:29;2393:9;2374:29;:::i;:::-;2364:39;;2453:2;2442:9;2438:18;2425:32;2500:5;2493:13;2486:21;2479:5;2476:32;2466:2;;2527:6;2519;2512:22;2466:2;2555:5;2545:15;;;2283:283;;;;;:::o;2571:264::-;2639:6;2647;2700:2;2688:9;2679:7;2675:23;2671:32;2668:2;;;2721:6;2713;2706:22;2668:2;2749:29;2768:9;2749:29;:::i;:::-;2739:39;2825:2;2810:18;;;;2797:32;;-1:-1:-1;;;2658:177:1:o;2840:255::-;2898:6;2951:2;2939:9;2930:7;2926:23;2922:32;2919:2;;;2972:6;2964;2957:22;2919:2;3016:9;3003:23;3035:30;3059:5;3035:30;:::i;3100:259::-;3169:6;3222:2;3210:9;3201:7;3197:23;3193:32;3190:2;;;3243:6;3235;3228:22;3190:2;3280:9;3274:16;3299:30;3323:5;3299:30;:::i;3364:642::-;3435:6;3443;3496:2;3484:9;3475:7;3471:23;3467:32;3464:2;;;3517:6;3509;3502:22;3464:2;3562:9;3549:23;3591:18;3632:2;3624:6;3621:14;3618:2;;;3653:6;3645;3638:22;3618:2;3696:6;3685:9;3681:22;3671:32;;3741:7;3734:4;3730:2;3726:13;3722:27;3712:2;;3768:6;3760;3753:22;3712:2;3813;3800:16;3839:2;3831:6;3828:14;3825:2;;;3860:6;3852;3845:22;3825:2;3910:7;3905:2;3896:6;3892:2;3888:15;3884:24;3881:37;3878:2;;;3936:6;3928;3921:22;3878:2;3972;3964:11;;;;;3994:6;;-1:-1:-1;3454:552:1;;-1:-1:-1;;;;3454:552:1:o;4011:190::-;4070:6;4123:2;4111:9;4102:7;4098:23;4094:32;4091:2;;;4144:6;4136;4129:22;4091:2;-1:-1:-1;4172:23:1;;4081:120;-1:-1:-1;4081:120:1:o;4206:257::-;4247:3;4285:5;4279:12;4312:6;4307:3;4300:19;4328:63;4384:6;4377:4;4372:3;4368:14;4361:4;4354:5;4350:16;4328:63;:::i;:::-;4445:2;4424:15;-1:-1:-1;;4420:29:1;4411:39;;;;4452:4;4407:50;;4255:208;-1:-1:-1;;4255:208:1:o;4468:185::-;4510:3;4548:5;4542:12;4563:52;4608:6;4603:3;4596:4;4589:5;4585:16;4563:52;:::i;:::-;4631:16;;;;;4518:135;-1:-1:-1;;4518:135:1:o;4658:1178::-;4834:3;4863;4898:6;4892:13;4928:3;4950:1;4978:9;4974:2;4970:18;4960:28;;5038:2;5027:9;5023:18;5060;5050:2;;5104:4;5096:6;5092:17;5082:27;;5050:2;5130;5178;5170:6;5167:14;5147:18;5144:38;5141:2;;;-1:-1:-1;;;5205:33:1;;5261:4;5258:1;5251:15;5291:4;5212:3;5279:17;5141:2;5322:18;5349:104;;;;5467:1;5462:322;;;;5315:469;;5349:104;-1:-1:-1;;5382:24:1;;5370:37;;5427:16;;;;-1:-1:-1;5349:104:1;;5462:322;16117:4;16136:17;;;16186:4;16170:21;;5557:3;5573:165;5587:6;5584:1;5581:13;5573:165;;;5665:14;;5652:11;;;5645:35;5708:16;;;;5602:10;;5573:165;;;5577:3;;5767:6;5762:3;5758:16;5751:23;;5315:469;;;;;;;5800:30;5826:3;5818:6;5800:30;:::i;:::-;5793:37;4842:994;-1:-1:-1;;;;;4842:994:1:o;6049:488::-;-1:-1:-1;;;;;6318:15:1;;;6300:34;;6370:15;;6365:2;6350:18;;6343:43;6417:2;6402:18;;6395:34;;;6465:3;6460:2;6445:18;;6438:31;;;6243:4;;6486:45;;6511:19;;6503:6;6486:45;:::i;:::-;6478:53;6252:285;-1:-1:-1;;;;;;6252:285:1:o;6734:219::-;6883:2;6872:9;6865:21;6846:4;6903:44;6943:2;6932:9;6928:18;6920:6;6903:44;:::i;7370:414::-;7572:2;7554:21;;;7611:2;7591:18;;;7584:30;7650:34;7645:2;7630:18;;7623:62;-1:-1:-1;;;7716:2:1;7701:18;;7694:48;7774:3;7759:19;;7544:240::o;12774:356::-;12976:2;12958:21;;;12995:18;;;12988:30;13054:34;13049:2;13034:18;;13027:62;13121:2;13106:18;;12948:182::o;13545:400::-;13747:2;13729:21;;;13786:2;13766:18;;;13759:30;13825:34;13820:2;13805:18;;13798:62;-1:-1:-1;;;13891:2:1;13876:18;;13869:34;13935:3;13920:19;;13719:226::o;14712:413::-;14914:2;14896:21;;;14953:2;14933:18;;;14926:30;14992:34;14987:2;14972:18;;14965:62;-1:-1:-1;;;15058:2:1;15043:18;;15036:47;15115:3;15100:19;;14886:239::o;16202:128::-;16242:3;16273:1;16269:6;16266:1;16263:13;16260:2;;;16279:18;;:::i;:::-;-1:-1:-1;16315:9:1;;16250:80::o;16335:120::-;16375:1;16401;16391:2;;16406:18;;:::i;:::-;-1:-1:-1;16440:9:1;;16381:74::o;16460:168::-;16500:7;16566:1;16562;16558:6;16554:14;16551:1;16548:21;16543:1;16536:9;16529:17;16525:45;16522:2;;;16573:18;;:::i;:::-;-1:-1:-1;16613:9:1;;16512:116::o;16633:125::-;16673:4;16701:1;16698;16695:8;16692:2;;;16706:18;;:::i;:::-;-1:-1:-1;16743:9:1;;16682:76::o;16763:258::-;16835:1;16845:113;16859:6;16856:1;16853:13;16845:113;;;16935:11;;;16929:18;16916:11;;;16909:39;16881:2;16874:10;16845:113;;;16976:6;16973:1;16970:13;16967:2;;;-1:-1:-1;;17011:1:1;16993:16;;16986:27;16816:205::o;17026:380::-;17105:1;17101:12;;;;17148;;;17169:2;;17223:4;17215:6;17211:17;17201:27;;17169:2;17276;17268:6;17265:14;17245:18;17242:38;17239:2;;;17322:10;17317:3;17313:20;17310:1;17303:31;17357:4;17354:1;17347:15;17385:4;17382:1;17375:15;17239:2;;17081:325;;;:::o;17411:135::-;17450:3;-1:-1:-1;;17471:17:1;;17468:2;;;17491:18;;:::i;:::-;-1:-1:-1;17538:1:1;17527:13;;17458:88::o;17551:112::-;17583:1;17609;17599:2;;17614:18;;:::i;:::-;-1:-1:-1;17648:9:1;;17589:74::o;17668:127::-;17729:10;17724:3;17720:20;17717:1;17710:31;17760:4;17757:1;17750:15;17784:4;17781:1;17774:15;17800:127;17861:10;17856:3;17852:20;17849:1;17842:31;17892:4;17889:1;17882:15;17916:4;17913:1;17906:15;17932:127;17993:10;17988:3;17984:20;17981:1;17974:31;18024:4;18021:1;18014:15;18048:4;18045:1;18038:15;18064:131;-1:-1:-1;;;;;;18138:32:1;;18128:43;;18118:2;;18185:1;18182;18175:12

Swarm Source

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