ETH Price: $3,069.66 (+3.32%)
Gas: 8 Gwei

Token

Tennis Bits (TNNISBTS)
 

Overview

Max Total Supply

215 TNNISBTS

Holders

103

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 TNNISBTS
0x970c21da3d93b5e94d04df8a5e024623f91183a9
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
TennisBits

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-01
*/

// SPDX-License-Identifier: MIT

/*
 ___________  _______  _____  ___   _____  ___    __      ________
("     _   ")/"     "|(\"   \|"  \ (\"   \|"  \  |" \    /"       )
 )__/  \\__/(: ______)|.\\   \    ||.\\   \    | ||  |  (:   \___/
    \\_ /    \/    |  |: \.   \\  ||: \.   \\  | |:  |   \___  \
    |.  |    // ___)_ |.  \    \. ||.  \    \. | |.  |    __/  \\
    \:  |   (:      "||    \    \ ||    \    \ | /\  |\  /" \   :)
     \__|    \_______) \___|\____\) \___|\____\)(__\_|_)(_______/

 _______   __  ___________  ________
|   _  "\ |" \("     _   ")/"       )
(. |_)  :)||  |)__/  \\__/(:   \___/
|:     \/ |:  |   \\_ /    \___  \                                  
(|  _  \\ |.  |   |.  |     __/  \\
|: |_)  :)/\  |\  \:  |    /" \   :)
(_______/(__\_|_)  \__|   (_______/

*/

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;
/**
 * @title 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);
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;


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

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

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

pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity >=0.7.0 <0.9.0;

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

  string public baseURI;
  string public baseExtension = ".json";
  uint256 public cost = 0.055 ether;
  uint256 public maxSupply = 2074;
  uint256 public maxMintAmount = 20;

  uint256 public ogCost = 0 ether;
  uint256 public ogMaxSupply = 200;
  uint256 public ogMaxMintAmount = 1;
  uint256 public ogPerAddressLimit = 1;

  bool public paused = false;

  bool public enableOG = true;
  address[] public ogPlayerAddresses;
  mapping(address => uint256) public addressMintedBalance;

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI
  ) ERC721(_name, _symbol) {
    setBaseURI(_initBaseURI);
  }

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

  // public
  function mint(uint256 _mintAmount) public payable {
    require(!paused);
    uint256 supply = totalSupply();
    require(_mintAmount > 0);
    require(_mintAmount <= maxMintAmount);
    require(supply + _mintAmount <= maxSupply);

    if (msg.sender != owner()) {
        require(msg.value >= cost * _mintAmount);
    }

    for (uint256 i = 1; i <= _mintAmount; i++) {
        _safeMint(msg.sender, supply + i);
    }
  }

  // og
  function mintOG(uint256 _mintAmount) public payable {
    require(!paused);
    uint256 supply = totalSupply();
    require(_mintAmount > 0);
    require(_mintAmount <= ogMaxMintAmount);
    require(supply + _mintAmount <= ogMaxSupply);

    if (msg.sender != owner()) {
        if (enableOG == true) {
            require(isOgPlayer(msg.sender));
            uint256 ownerMintedCount = addressMintedBalance[msg.sender];
            require(ownerMintedCount + _mintAmount <= ogPerAddressLimit);
        }
        require(msg.value >= ogCost * _mintAmount);
    }

    for (uint256 i = 1; i <= _mintAmount; i++) {
        addressMintedBalance[msg.sender]++;
        _safeMint(msg.sender, supply + i);
    }
  }

  function isOgPlayer(address _user) public view returns (bool) {
    for (uint i = 0; i < ogPlayerAddresses.length; i++) {
      if (ogPlayerAddresses[i] == _user) {
          return true;
      }
    }
    return false;
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

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

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

  //only owner
  function setNftPerAddressLimit(uint256 _limit) public onlyOwner() {
    ogPerAddressLimit = _limit;
  }

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

  function setMaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner() {
    maxMintAmount = _newmaxMintAmount;
  }

  function setMaxSupplyOG(uint256 _newMaxSupplyOG) public onlyOwner() {
    ogMaxSupply = _newMaxSupplyOG;
  }

  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }

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

  function setEnableOG(bool _state) public onlyOwner {
    enableOG = _state;
  }

  function ogUsers(address[] calldata _users) public onlyOwner {
    delete ogPlayerAddresses;
    ogPlayerAddresses = _users;
  }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","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":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableOG","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"_user","type":"address"}],"name":"isOgPlayer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintOG","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogMaxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"ogPlayerAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"ogUsers","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setEnableOG","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSupplyOG","type":"uint256"}],"name":"setMaxSupplyOG","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c9190620001bf565b5066c3663566a58000600d5561081a600e556014600f819055600060105560c860115560016012819055601355805461ffff19166101001790553480156200006f57600080fd5b5060405162002e9a38038062002e9a833981016040819052620000929162000310565b825183908390620000ab906000906020850190620001bf565b508051620000c1906001906020840190620001bf565b505050620000de620000d8620000f260201b60201c565b620000f6565b620000e98162000148565b50505062000425565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b62000152620000f2565b6001600160a01b031662000165620001b0565b6001600160a01b031614620001975760405162461bcd60e51b81526004016200018e906200039d565b60405180910390fd5b8051620001ac90600b906020840190620001bf565b5050565b600a546001600160a01b031690565b828054620001cd90620003d2565b90600052602060002090601f016020900481019282620001f157600085556200023c565b82601f106200020c57805160ff19168380011785556200023c565b828001600101855582156200023c579182015b828111156200023c5782518255916020019190600101906200021f565b506200024a9291506200024e565b5090565b5b808211156200024a57600081556001016200024f565b600082601f83011262000276578081fd5b81516001600160401b03808211156200029357620002936200040f565b6040516020601f8401601f1916820181018381118382101715620002bb57620002bb6200040f565b6040528382528584018101871015620002d2578485fd5b8492505b83831015620002f55785830181015182840182015291820191620002d6565b838311156200030657848185840101525b5095945050505050565b60008060006060848603121562000325578283fd5b83516001600160401b03808211156200033c578485fd5b6200034a8783880162000265565b9450602086015191508082111562000360578384fd5b6200036e8783880162000265565b9350604086015191508082111562000384578283fd5b50620003938682870162000265565b9150509250925092565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600281046001821680620003e757607f821691505b602082108114156200040957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612a6580620004356000396000f3fe60806040526004361061027d5760003560e01c806370a082311161014f578063b8949597116100c1578063d5abeb011161007a578063d5abeb0114610702578063da3ef23f14610717578063da88d39114610737578063e985e9c51461074c578063ec8a31811461076c578063f2fde38b1461078c5761027d565b8063b894959714610658578063bd4dfbf814610678578063c39614be1461068d578063c6682862146106ad578063c87b56dd146106c2578063d0eb26b0146106e25761027d565b806394bb4c041161011357806394bb4c04146105c857806395d89b41146105db578063a0712d68146105f0578063a22cb46514610603578063a787cb8c14610623578063b88d4fde146106385761027d565b806370a082311461053e578063715018a61461055e57806374050f3f1461057357806374cfdf57146105935780638da5cb5b146105b35761027d565b80632d95aea7116101f35780634f6ccce7116101ac5780634f6ccce71461049f57806355f804b3146104bf5780635c975abb146104df5780636352211e146104f457806369aff65f146105145780636c0360eb146105295761027d565b80632d95aea7146103f55780632f745c591461040a5780633ccfd60b1461042a57806342842e0e14610432578063438b63001461045257806344a0d68a1461047f5761027d565b8063095ea7b311610245578063095ea7b31461034957806313faede61461036957806318160ddd1461038b57806318cae269146103a0578063239c70ae146103c057806323b872dd146103d55761027d565b806301ffc9a71461028257806302329a29146102b857806306fdde03146102da578063081812fc146102fc578063088a4ed014610329575b600080fd5b34801561028e57600080fd5b506102a261029d366004612193565b6107ac565b6040516102af91906123af565b60405180910390f35b3480156102c457600080fd5b506102d86102d3366004612179565b6107d9565b005b3480156102e657600080fd5b506102ef610834565b6040516102af91906123ba565b34801561030857600080fd5b5061031c610317366004612211565b6108c6565b6040516102af919061231a565b34801561033557600080fd5b506102d8610344366004612211565b610909565b34801561035557600080fd5b506102d86103643660046120e1565b61094d565b34801561037557600080fd5b5061037e6109e5565b6040516102af91906128ca565b34801561039757600080fd5b5061037e6109eb565b3480156103ac57600080fd5b5061037e6103bb366004611fb8565b6109f1565b3480156103cc57600080fd5b5061037e610a03565b3480156103e157600080fd5b506102d86103f0366004612004565b610a09565b34801561040157600080fd5b5061037e610a41565b34801561041657600080fd5b5061037e6104253660046120e1565b610a47565b6102d8610a99565b34801561043e57600080fd5b506102d861044d366004612004565b610b44565b34801561045e57600080fd5b5061047261046d366004611fb8565b610b5f565b6040516102af919061236b565b34801561048b57600080fd5b506102d861049a366004612211565b610c1d565b3480156104ab57600080fd5b5061037e6104ba366004612211565b610c61565b3480156104cb57600080fd5b506102d86104da3660046121cb565b610cbc565b3480156104eb57600080fd5b506102a2610d12565b34801561050057600080fd5b5061031c61050f366004612211565b610d1b565b34801561052057600080fd5b5061037e610d50565b34801561053557600080fd5b506102ef610d56565b34801561054a57600080fd5b5061037e610559366004611fb8565b610de4565b34801561056a57600080fd5b506102d8610e28565b34801561057f57600080fd5b506102d861058e36600461210a565b610e73565b34801561059f57600080fd5b506102d86105ae366004612211565b610eca565b3480156105bf57600080fd5b5061031c610f0e565b6102d86105d6366004612211565b610f1d565b3480156105e757600080fd5b506102ef611049565b6102d86105fe366004612211565b611058565b34801561060f57600080fd5b506102d861061e3660046120b8565b61110c565b34801561062f57600080fd5b5061037e6111da565b34801561064457600080fd5b506102d861065336600461203f565b6111e0565b34801561066457600080fd5b506102d8610673366004612179565b61121f565b34801561068457600080fd5b5061037e611278565b34801561069957600080fd5b506102a26106a8366004611fb8565b61127e565b3480156106b957600080fd5b506102ef6112f7565b3480156106ce57600080fd5b506102ef6106dd366004612211565b611304565b3480156106ee57600080fd5b506102d86106fd366004612211565b61138a565b34801561070e57600080fd5b5061037e6113ce565b34801561072357600080fd5b506102d86107323660046121cb565b6113d4565b34801561074357600080fd5b506102a2611426565b34801561075857600080fd5b506102a2610767366004611fd2565b611434565b34801561077857600080fd5b5061031c610787366004612211565b611462565b34801561079857600080fd5b506102d86107a7366004611fb8565b61148c565b60006001600160e01b0319821663780e9d6360e01b14806107d157506107d1826114fa565b90505b919050565b6107e161153a565b6001600160a01b03166107f2610f0e565b6001600160a01b0316146108215760405162461bcd60e51b81526004016108189061271f565b60405180910390fd5b6014805460ff1916911515919091179055565b6060600080546108439061296d565b80601f016020809104026020016040519081016040528092919081815260200182805461086f9061296d565b80156108bc5780601f10610891576101008083540402835291602001916108bc565b820191906000526020600020905b81548152906001019060200180831161089f57829003601f168201915b5050505050905090565b60006108d18261153e565b6108ed5760405162461bcd60e51b8152600401610818906126d3565b506000908152600460205260409020546001600160a01b031690565b61091161153a565b6001600160a01b0316610922610f0e565b6001600160a01b0316146109485760405162461bcd60e51b81526004016108189061271f565b600f55565b600061095882610d1b565b9050806001600160a01b0316836001600160a01b0316141561098c5760405162461bcd60e51b8152600401610818906127ec565b806001600160a01b031661099e61153a565b6001600160a01b031614806109ba57506109ba8161076761153a565b6109d65760405162461bcd60e51b8152600401610818906125ae565b6109e0838361155b565b505050565b600d5481565b60085490565b60166020526000908152604090205481565b600f5481565b610a1a610a1461153a565b826115c9565b610a365760405162461bcd60e51b81526004016108189061282d565b6109e083838361164e565b60115481565b6000610a5283610de4565b8210610a705760405162461bcd60e51b8152600401610818906123cd565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610aa161153a565b6001600160a01b0316610ab2610f0e565b6001600160a01b031614610ad85760405162461bcd60e51b81526004016108189061271f565b6000336001600160a01b031647604051610af190612317565b60006040518083038185875af1925050503d8060008114610b2e576040519150601f19603f3d011682016040523d82523d6000602084013e610b33565b606091505b5050905080610b4157600080fd5b50565b6109e0838383604051806020016040528060008152506111e0565b60606000610b6c83610de4565b905060008167ffffffffffffffff811115610b9757634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610bc0578160200160208202803683370190505b50905060005b82811015610c1557610bd88582610a47565b828281518110610bf857634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610c0d816129a8565b915050610bc6565b509392505050565b610c2561153a565b6001600160a01b0316610c36610f0e565b6001600160a01b031614610c5c5760405162461bcd60e51b81526004016108189061271f565b600d55565b6000610c6b6109eb565b8210610c895760405162461bcd60e51b81526004016108189061287e565b60088281548110610caa57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610cc461153a565b6001600160a01b0316610cd5610f0e565b6001600160a01b031614610cfb5760405162461bcd60e51b81526004016108189061271f565b8051610d0e90600b906020840190611e17565b5050565b60145460ff1681565b6000818152600260205260408120546001600160a01b0316806107d15760405162461bcd60e51b815260040161081890612655565b60105481565b600b8054610d639061296d565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8f9061296d565b8015610ddc5780601f10610db157610100808354040283529160200191610ddc565b820191906000526020600020905b815481529060010190602001808311610dbf57829003601f168201915b505050505081565b60006001600160a01b038216610e0c5760405162461bcd60e51b81526004016108189061260b565b506001600160a01b031660009081526003602052604090205490565b610e3061153a565b6001600160a01b0316610e41610f0e565b6001600160a01b031614610e675760405162461bcd60e51b81526004016108189061271f565b610e71600061177b565b565b610e7b61153a565b6001600160a01b0316610e8c610f0e565b6001600160a01b031614610eb25760405162461bcd60e51b81526004016108189061271f565b610ebe60156000611e9b565b6109e060158383611eb9565b610ed261153a565b6001600160a01b0316610ee3610f0e565b6001600160a01b031614610f095760405162461bcd60e51b81526004016108189061271f565b601155565b600a546001600160a01b031690565b60145460ff1615610f2d57600080fd5b6000610f376109eb565b905060008211610f4657600080fd5b601254821115610f5557600080fd5b601154610f6283836128df565b1115610f6d57600080fd5b610f75610f0e565b6001600160a01b0316336001600160a01b031614610ff95760145460ff61010090910416151560011415610fdf57610fac3361127e565b610fb557600080fd5b33600090815260166020526040902054601354610fd284836128df565b1115610fdd57600080fd5b505b81601054610fed919061290b565b341015610ff957600080fd5b60015b8281116109e05733600090815260166020526040812080549161101e836129a8565b9091555061103790503361103283856128df565b6117cd565b80611041816129a8565b915050610ffc565b6060600180546108439061296d565b60145460ff161561106857600080fd5b60006110726109eb565b90506000821161108157600080fd5b600f5482111561109057600080fd5b600e5461109d83836128df565b11156110a857600080fd5b6110b0610f0e565b6001600160a01b0316336001600160a01b0316146110e25781600d546110d6919061290b565b3410156110e257600080fd5b60015b8281116109e0576110fa3361103283856128df565b80611104816129a8565b9150506110e5565b61111461153a565b6001600160a01b0316826001600160a01b031614156111455760405162461bcd60e51b81526004016108189061252b565b806005600061115261153a565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561119661153a565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111ce91906123af565b60405180910390a35050565b60125481565b6111f16111eb61153a565b836115c9565b61120d5760405162461bcd60e51b81526004016108189061282d565b611219848484846117e7565b50505050565b61122761153a565b6001600160a01b0316611238610f0e565b6001600160a01b03161461125e5760405162461bcd60e51b81526004016108189061271f565b601480549115156101000261ff0019909216919091179055565b60135481565b6000805b6015548110156112ee57826001600160a01b0316601582815481106112b757634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b031614156112dc5760019150506107d4565b806112e6816129a8565b915050611282565b50600092915050565b600c8054610d639061296d565b606061130f8261153e565b61132b5760405162461bcd60e51b81526004016108189061279d565b600061133561181a565b905060008151116113555760405180602001604052806000815250611383565b8061135f84611829565b600c60405160200161137393929190612255565b6040516020818303038152906040525b9392505050565b61139261153a565b6001600160a01b03166113a3610f0e565b6001600160a01b0316146113c95760405162461bcd60e51b81526004016108189061271f565b601355565b600e5481565b6113dc61153a565b6001600160a01b03166113ed610f0e565b6001600160a01b0316146114135760405162461bcd60e51b81526004016108189061271f565b8051610d0e90600c906020840190611e17565b601454610100900460ff1681565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6015818154811061147257600080fd5b6000918252602090912001546001600160a01b0316905081565b61149461153a565b6001600160a01b03166114a5610f0e565b6001600160a01b0316146114cb5760405162461bcd60e51b81526004016108189061271f565b6001600160a01b0381166114f15760405162461bcd60e51b81526004016108189061246a565b610b418161177b565b60006001600160e01b031982166380ac58cd60e01b148061152b57506001600160e01b03198216635b5e139f60e01b145b806107d157506107d182611944565b3390565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061159082610d1b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006115d48261153e565b6115f05760405162461bcd60e51b815260040161081890612562565b60006115fb83610d1b565b9050806001600160a01b0316846001600160a01b031614806116365750836001600160a01b031661162b846108c6565b6001600160a01b0316145b8061164657506116468185611434565b949350505050565b826001600160a01b031661166182610d1b565b6001600160a01b0316146116875760405162461bcd60e51b815260040161081890612754565b6001600160a01b0382166116ad5760405162461bcd60e51b8152600401610818906124e7565b6116b883838361195d565b6116c360008261155b565b6001600160a01b03831660009081526003602052604081208054600192906116ec90849061292a565b90915550506001600160a01b038216600090815260036020526040812080546001929061171a9084906128df565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610d0e8282604051806020016040528060008152506119e6565b6117f284848461164e565b6117fe84848484611a19565b6112195760405162461bcd60e51b815260040161081890612418565b6060600b80546108439061296d565b60608161184e57506040805180820190915260018152600360fc1b60208201526107d4565b8160005b81156118785780611862816129a8565b91506118719050600a836128f7565b9150611852565b60008167ffffffffffffffff8111156118a157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156118cb576020820181803683370190505b5090505b8415611646576118e060018361292a565b91506118ed600a866129c3565b6118f89060306128df565b60f81b81838151811061191b57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061193d600a866128f7565b94506118cf565b6001600160e01b031981166301ffc9a760e01b14919050565b6119688383836109e0565b6001600160a01b0383166119845761197f81611b34565b6119a7565b816001600160a01b0316836001600160a01b0316146119a7576119a78382611b78565b6001600160a01b0382166119c3576119be81611c15565b6109e0565b826001600160a01b0316826001600160a01b0316146109e0576109e08282611cee565b6119f08383611d32565b6119fd6000848484611a19565b6109e05760405162461bcd60e51b815260040161081890612418565b6000611a2d846001600160a01b0316611e11565b15611b2957836001600160a01b031663150b7a02611a4961153a565b8786866040518563ffffffff1660e01b8152600401611a6b949392919061232e565b602060405180830381600087803b158015611a8557600080fd5b505af1925050508015611ab5575060408051601f3d908101601f19168201909252611ab2918101906121af565b60015b611b0f573d808015611ae3576040519150601f19603f3d011682016040523d82523d6000602084013e611ae8565b606091505b508051611b075760405162461bcd60e51b815260040161081890612418565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611646565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611b8584610de4565b611b8f919061292a565b600083815260076020526040902054909150808214611be2576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611c279060019061292a565b60008381526009602052604081205460088054939450909284908110611c5d57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611c8c57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611cd257634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611cf983610de4565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611d585760405162461bcd60e51b81526004016108189061269e565b611d618161153e565b15611d7e5760405162461bcd60e51b8152600401610818906124b0565b611d8a6000838361195d565b6001600160a01b0382166000908152600360205260408120805460019290611db39084906128df565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b828054611e239061296d565b90600052602060002090601f016020900481019282611e455760008555611e8b565b82601f10611e5e57805160ff1916838001178555611e8b565b82800160010185558215611e8b579182015b82811115611e8b578251825591602001919060010190611e70565b50611e97929150611f0c565b5090565b5080546000825590600052602060002090810190610b419190611f0c565b828054828255906000526020600020908101928215611e8b579160200282015b82811115611e8b5781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190611ed9565b5b80821115611e975760008155600101611f0d565b600067ffffffffffffffff80841115611f3c57611f3c612a03565b604051601f8501601f191681016020018281118282101715611f6057611f60612a03565b604052848152915081838501861015611f7857600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146107d457600080fd5b803580151581146107d457600080fd5b600060208284031215611fc9578081fd5b61138382611f91565b60008060408385031215611fe4578081fd5b611fed83611f91565b9150611ffb60208401611f91565b90509250929050565b600080600060608486031215612018578081fd5b61202184611f91565b925061202f60208501611f91565b9150604084013590509250925092565b60008060008060808587031215612054578081fd5b61205d85611f91565b935061206b60208601611f91565b925060408501359150606085013567ffffffffffffffff81111561208d578182fd5b8501601f8101871361209d578182fd5b6120ac87823560208401611f21565b91505092959194509250565b600080604083850312156120ca578182fd5b6120d383611f91565b9150611ffb60208401611fa8565b600080604083850312156120f3578182fd5b6120fc83611f91565b946020939093013593505050565b6000806020838503121561211c578182fd5b823567ffffffffffffffff80821115612133578384fd5b818501915085601f830112612146578384fd5b813581811115612154578485fd5b8660208083028501011115612167578485fd5b60209290920196919550909350505050565b60006020828403121561218a578081fd5b61138382611fa8565b6000602082840312156121a4578081fd5b813561138381612a19565b6000602082840312156121c0578081fd5b815161138381612a19565b6000602082840312156121dc578081fd5b813567ffffffffffffffff8111156121f2578182fd5b8201601f81018413612202578182fd5b61164684823560208401611f21565b600060208284031215612222578081fd5b5035919050565b60008151808452612241816020860160208601612941565b601f01601f19169290920160200192915050565b6000845160206122688285838a01612941565b85519184019161227b8184848a01612941565b855492019183906002810460018083168061229757607f831692505b8583108114156122b557634e487b7160e01b88526022600452602488fd5b8080156122c957600181146122da57612306565b60ff19851688528388019550612306565b6122e38b6128d3565b895b858110156122fe5781548a8201529084019088016122e5565b505083880195505b50939b9a5050505050505050505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061236190830184612229565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156123a357835183529284019291840191600101612387565b50909695505050505050565b901515815260200190565b6000602082526113836020830184612229565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b90815260200190565b60009081526020902090565b600082198211156128f2576128f26129d7565b500190565b600082612906576129066129ed565b500490565b6000816000190483118215151615612925576129256129d7565b500290565b60008282101561293c5761293c6129d7565b500390565b60005b8381101561295c578181015183820152602001612944565b838111156112195750506000910152565b60028104600182168061298157607f821691505b602082108114156129a257634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129bc576129bc6129d7565b5060010190565b6000826129d2576129d26129ed565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b4157600080fdfea26469706673582212200dc3c1fadea9309175f0748173ee11827fb724ffedd6841f049e6f06f406e4c164736f6c63430008000033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000b54656e6e697320426974730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008544e4e49534254530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d556d574e3835646e76367878396e7a3532433674704b4b7633587877727050386b62695175563831794a31452f00000000000000000000

Deployed Bytecode

0x60806040526004361061027d5760003560e01c806370a082311161014f578063b8949597116100c1578063d5abeb011161007a578063d5abeb0114610702578063da3ef23f14610717578063da88d39114610737578063e985e9c51461074c578063ec8a31811461076c578063f2fde38b1461078c5761027d565b8063b894959714610658578063bd4dfbf814610678578063c39614be1461068d578063c6682862146106ad578063c87b56dd146106c2578063d0eb26b0146106e25761027d565b806394bb4c041161011357806394bb4c04146105c857806395d89b41146105db578063a0712d68146105f0578063a22cb46514610603578063a787cb8c14610623578063b88d4fde146106385761027d565b806370a082311461053e578063715018a61461055e57806374050f3f1461057357806374cfdf57146105935780638da5cb5b146105b35761027d565b80632d95aea7116101f35780634f6ccce7116101ac5780634f6ccce71461049f57806355f804b3146104bf5780635c975abb146104df5780636352211e146104f457806369aff65f146105145780636c0360eb146105295761027d565b80632d95aea7146103f55780632f745c591461040a5780633ccfd60b1461042a57806342842e0e14610432578063438b63001461045257806344a0d68a1461047f5761027d565b8063095ea7b311610245578063095ea7b31461034957806313faede61461036957806318160ddd1461038b57806318cae269146103a0578063239c70ae146103c057806323b872dd146103d55761027d565b806301ffc9a71461028257806302329a29146102b857806306fdde03146102da578063081812fc146102fc578063088a4ed014610329575b600080fd5b34801561028e57600080fd5b506102a261029d366004612193565b6107ac565b6040516102af91906123af565b60405180910390f35b3480156102c457600080fd5b506102d86102d3366004612179565b6107d9565b005b3480156102e657600080fd5b506102ef610834565b6040516102af91906123ba565b34801561030857600080fd5b5061031c610317366004612211565b6108c6565b6040516102af919061231a565b34801561033557600080fd5b506102d8610344366004612211565b610909565b34801561035557600080fd5b506102d86103643660046120e1565b61094d565b34801561037557600080fd5b5061037e6109e5565b6040516102af91906128ca565b34801561039757600080fd5b5061037e6109eb565b3480156103ac57600080fd5b5061037e6103bb366004611fb8565b6109f1565b3480156103cc57600080fd5b5061037e610a03565b3480156103e157600080fd5b506102d86103f0366004612004565b610a09565b34801561040157600080fd5b5061037e610a41565b34801561041657600080fd5b5061037e6104253660046120e1565b610a47565b6102d8610a99565b34801561043e57600080fd5b506102d861044d366004612004565b610b44565b34801561045e57600080fd5b5061047261046d366004611fb8565b610b5f565b6040516102af919061236b565b34801561048b57600080fd5b506102d861049a366004612211565b610c1d565b3480156104ab57600080fd5b5061037e6104ba366004612211565b610c61565b3480156104cb57600080fd5b506102d86104da3660046121cb565b610cbc565b3480156104eb57600080fd5b506102a2610d12565b34801561050057600080fd5b5061031c61050f366004612211565b610d1b565b34801561052057600080fd5b5061037e610d50565b34801561053557600080fd5b506102ef610d56565b34801561054a57600080fd5b5061037e610559366004611fb8565b610de4565b34801561056a57600080fd5b506102d8610e28565b34801561057f57600080fd5b506102d861058e36600461210a565b610e73565b34801561059f57600080fd5b506102d86105ae366004612211565b610eca565b3480156105bf57600080fd5b5061031c610f0e565b6102d86105d6366004612211565b610f1d565b3480156105e757600080fd5b506102ef611049565b6102d86105fe366004612211565b611058565b34801561060f57600080fd5b506102d861061e3660046120b8565b61110c565b34801561062f57600080fd5b5061037e6111da565b34801561064457600080fd5b506102d861065336600461203f565b6111e0565b34801561066457600080fd5b506102d8610673366004612179565b61121f565b34801561068457600080fd5b5061037e611278565b34801561069957600080fd5b506102a26106a8366004611fb8565b61127e565b3480156106b957600080fd5b506102ef6112f7565b3480156106ce57600080fd5b506102ef6106dd366004612211565b611304565b3480156106ee57600080fd5b506102d86106fd366004612211565b61138a565b34801561070e57600080fd5b5061037e6113ce565b34801561072357600080fd5b506102d86107323660046121cb565b6113d4565b34801561074357600080fd5b506102a2611426565b34801561075857600080fd5b506102a2610767366004611fd2565b611434565b34801561077857600080fd5b5061031c610787366004612211565b611462565b34801561079857600080fd5b506102d86107a7366004611fb8565b61148c565b60006001600160e01b0319821663780e9d6360e01b14806107d157506107d1826114fa565b90505b919050565b6107e161153a565b6001600160a01b03166107f2610f0e565b6001600160a01b0316146108215760405162461bcd60e51b81526004016108189061271f565b60405180910390fd5b6014805460ff1916911515919091179055565b6060600080546108439061296d565b80601f016020809104026020016040519081016040528092919081815260200182805461086f9061296d565b80156108bc5780601f10610891576101008083540402835291602001916108bc565b820191906000526020600020905b81548152906001019060200180831161089f57829003601f168201915b5050505050905090565b60006108d18261153e565b6108ed5760405162461bcd60e51b8152600401610818906126d3565b506000908152600460205260409020546001600160a01b031690565b61091161153a565b6001600160a01b0316610922610f0e565b6001600160a01b0316146109485760405162461bcd60e51b81526004016108189061271f565b600f55565b600061095882610d1b565b9050806001600160a01b0316836001600160a01b0316141561098c5760405162461bcd60e51b8152600401610818906127ec565b806001600160a01b031661099e61153a565b6001600160a01b031614806109ba57506109ba8161076761153a565b6109d65760405162461bcd60e51b8152600401610818906125ae565b6109e0838361155b565b505050565b600d5481565b60085490565b60166020526000908152604090205481565b600f5481565b610a1a610a1461153a565b826115c9565b610a365760405162461bcd60e51b81526004016108189061282d565b6109e083838361164e565b60115481565b6000610a5283610de4565b8210610a705760405162461bcd60e51b8152600401610818906123cd565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610aa161153a565b6001600160a01b0316610ab2610f0e565b6001600160a01b031614610ad85760405162461bcd60e51b81526004016108189061271f565b6000336001600160a01b031647604051610af190612317565b60006040518083038185875af1925050503d8060008114610b2e576040519150601f19603f3d011682016040523d82523d6000602084013e610b33565b606091505b5050905080610b4157600080fd5b50565b6109e0838383604051806020016040528060008152506111e0565b60606000610b6c83610de4565b905060008167ffffffffffffffff811115610b9757634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610bc0578160200160208202803683370190505b50905060005b82811015610c1557610bd88582610a47565b828281518110610bf857634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610c0d816129a8565b915050610bc6565b509392505050565b610c2561153a565b6001600160a01b0316610c36610f0e565b6001600160a01b031614610c5c5760405162461bcd60e51b81526004016108189061271f565b600d55565b6000610c6b6109eb565b8210610c895760405162461bcd60e51b81526004016108189061287e565b60088281548110610caa57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610cc461153a565b6001600160a01b0316610cd5610f0e565b6001600160a01b031614610cfb5760405162461bcd60e51b81526004016108189061271f565b8051610d0e90600b906020840190611e17565b5050565b60145460ff1681565b6000818152600260205260408120546001600160a01b0316806107d15760405162461bcd60e51b815260040161081890612655565b60105481565b600b8054610d639061296d565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8f9061296d565b8015610ddc5780601f10610db157610100808354040283529160200191610ddc565b820191906000526020600020905b815481529060010190602001808311610dbf57829003601f168201915b505050505081565b60006001600160a01b038216610e0c5760405162461bcd60e51b81526004016108189061260b565b506001600160a01b031660009081526003602052604090205490565b610e3061153a565b6001600160a01b0316610e41610f0e565b6001600160a01b031614610e675760405162461bcd60e51b81526004016108189061271f565b610e71600061177b565b565b610e7b61153a565b6001600160a01b0316610e8c610f0e565b6001600160a01b031614610eb25760405162461bcd60e51b81526004016108189061271f565b610ebe60156000611e9b565b6109e060158383611eb9565b610ed261153a565b6001600160a01b0316610ee3610f0e565b6001600160a01b031614610f095760405162461bcd60e51b81526004016108189061271f565b601155565b600a546001600160a01b031690565b60145460ff1615610f2d57600080fd5b6000610f376109eb565b905060008211610f4657600080fd5b601254821115610f5557600080fd5b601154610f6283836128df565b1115610f6d57600080fd5b610f75610f0e565b6001600160a01b0316336001600160a01b031614610ff95760145460ff61010090910416151560011415610fdf57610fac3361127e565b610fb557600080fd5b33600090815260166020526040902054601354610fd284836128df565b1115610fdd57600080fd5b505b81601054610fed919061290b565b341015610ff957600080fd5b60015b8281116109e05733600090815260166020526040812080549161101e836129a8565b9091555061103790503361103283856128df565b6117cd565b80611041816129a8565b915050610ffc565b6060600180546108439061296d565b60145460ff161561106857600080fd5b60006110726109eb565b90506000821161108157600080fd5b600f5482111561109057600080fd5b600e5461109d83836128df565b11156110a857600080fd5b6110b0610f0e565b6001600160a01b0316336001600160a01b0316146110e25781600d546110d6919061290b565b3410156110e257600080fd5b60015b8281116109e0576110fa3361103283856128df565b80611104816129a8565b9150506110e5565b61111461153a565b6001600160a01b0316826001600160a01b031614156111455760405162461bcd60e51b81526004016108189061252b565b806005600061115261153a565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561119661153a565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516111ce91906123af565b60405180910390a35050565b60125481565b6111f16111eb61153a565b836115c9565b61120d5760405162461bcd60e51b81526004016108189061282d565b611219848484846117e7565b50505050565b61122761153a565b6001600160a01b0316611238610f0e565b6001600160a01b03161461125e5760405162461bcd60e51b81526004016108189061271f565b601480549115156101000261ff0019909216919091179055565b60135481565b6000805b6015548110156112ee57826001600160a01b0316601582815481106112b757634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b031614156112dc5760019150506107d4565b806112e6816129a8565b915050611282565b50600092915050565b600c8054610d639061296d565b606061130f8261153e565b61132b5760405162461bcd60e51b81526004016108189061279d565b600061133561181a565b905060008151116113555760405180602001604052806000815250611383565b8061135f84611829565b600c60405160200161137393929190612255565b6040516020818303038152906040525b9392505050565b61139261153a565b6001600160a01b03166113a3610f0e565b6001600160a01b0316146113c95760405162461bcd60e51b81526004016108189061271f565b601355565b600e5481565b6113dc61153a565b6001600160a01b03166113ed610f0e565b6001600160a01b0316146114135760405162461bcd60e51b81526004016108189061271f565b8051610d0e90600c906020840190611e17565b601454610100900460ff1681565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6015818154811061147257600080fd5b6000918252602090912001546001600160a01b0316905081565b61149461153a565b6001600160a01b03166114a5610f0e565b6001600160a01b0316146114cb5760405162461bcd60e51b81526004016108189061271f565b6001600160a01b0381166114f15760405162461bcd60e51b81526004016108189061246a565b610b418161177b565b60006001600160e01b031982166380ac58cd60e01b148061152b57506001600160e01b03198216635b5e139f60e01b145b806107d157506107d182611944565b3390565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061159082610d1b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006115d48261153e565b6115f05760405162461bcd60e51b815260040161081890612562565b60006115fb83610d1b565b9050806001600160a01b0316846001600160a01b031614806116365750836001600160a01b031661162b846108c6565b6001600160a01b0316145b8061164657506116468185611434565b949350505050565b826001600160a01b031661166182610d1b565b6001600160a01b0316146116875760405162461bcd60e51b815260040161081890612754565b6001600160a01b0382166116ad5760405162461bcd60e51b8152600401610818906124e7565b6116b883838361195d565b6116c360008261155b565b6001600160a01b03831660009081526003602052604081208054600192906116ec90849061292a565b90915550506001600160a01b038216600090815260036020526040812080546001929061171a9084906128df565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610d0e8282604051806020016040528060008152506119e6565b6117f284848461164e565b6117fe84848484611a19565b6112195760405162461bcd60e51b815260040161081890612418565b6060600b80546108439061296d565b60608161184e57506040805180820190915260018152600360fc1b60208201526107d4565b8160005b81156118785780611862816129a8565b91506118719050600a836128f7565b9150611852565b60008167ffffffffffffffff8111156118a157634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156118cb576020820181803683370190505b5090505b8415611646576118e060018361292a565b91506118ed600a866129c3565b6118f89060306128df565b60f81b81838151811061191b57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061193d600a866128f7565b94506118cf565b6001600160e01b031981166301ffc9a760e01b14919050565b6119688383836109e0565b6001600160a01b0383166119845761197f81611b34565b6119a7565b816001600160a01b0316836001600160a01b0316146119a7576119a78382611b78565b6001600160a01b0382166119c3576119be81611c15565b6109e0565b826001600160a01b0316826001600160a01b0316146109e0576109e08282611cee565b6119f08383611d32565b6119fd6000848484611a19565b6109e05760405162461bcd60e51b815260040161081890612418565b6000611a2d846001600160a01b0316611e11565b15611b2957836001600160a01b031663150b7a02611a4961153a565b8786866040518563ffffffff1660e01b8152600401611a6b949392919061232e565b602060405180830381600087803b158015611a8557600080fd5b505af1925050508015611ab5575060408051601f3d908101601f19168201909252611ab2918101906121af565b60015b611b0f573d808015611ae3576040519150601f19603f3d011682016040523d82523d6000602084013e611ae8565b606091505b508051611b075760405162461bcd60e51b815260040161081890612418565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611646565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611b8584610de4565b611b8f919061292a565b600083815260076020526040902054909150808214611be2576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611c279060019061292a565b60008381526009602052604081205460088054939450909284908110611c5d57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611c8c57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611cd257634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611cf983610de4565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611d585760405162461bcd60e51b81526004016108189061269e565b611d618161153e565b15611d7e5760405162461bcd60e51b8152600401610818906124b0565b611d8a6000838361195d565b6001600160a01b0382166000908152600360205260408120805460019290611db39084906128df565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b828054611e239061296d565b90600052602060002090601f016020900481019282611e455760008555611e8b565b82601f10611e5e57805160ff1916838001178555611e8b565b82800160010185558215611e8b579182015b82811115611e8b578251825591602001919060010190611e70565b50611e97929150611f0c565b5090565b5080546000825590600052602060002090810190610b419190611f0c565b828054828255906000526020600020908101928215611e8b579160200282015b82811115611e8b5781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190611ed9565b5b80821115611e975760008155600101611f0d565b600067ffffffffffffffff80841115611f3c57611f3c612a03565b604051601f8501601f191681016020018281118282101715611f6057611f60612a03565b604052848152915081838501861015611f7857600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146107d457600080fd5b803580151581146107d457600080fd5b600060208284031215611fc9578081fd5b61138382611f91565b60008060408385031215611fe4578081fd5b611fed83611f91565b9150611ffb60208401611f91565b90509250929050565b600080600060608486031215612018578081fd5b61202184611f91565b925061202f60208501611f91565b9150604084013590509250925092565b60008060008060808587031215612054578081fd5b61205d85611f91565b935061206b60208601611f91565b925060408501359150606085013567ffffffffffffffff81111561208d578182fd5b8501601f8101871361209d578182fd5b6120ac87823560208401611f21565b91505092959194509250565b600080604083850312156120ca578182fd5b6120d383611f91565b9150611ffb60208401611fa8565b600080604083850312156120f3578182fd5b6120fc83611f91565b946020939093013593505050565b6000806020838503121561211c578182fd5b823567ffffffffffffffff80821115612133578384fd5b818501915085601f830112612146578384fd5b813581811115612154578485fd5b8660208083028501011115612167578485fd5b60209290920196919550909350505050565b60006020828403121561218a578081fd5b61138382611fa8565b6000602082840312156121a4578081fd5b813561138381612a19565b6000602082840312156121c0578081fd5b815161138381612a19565b6000602082840312156121dc578081fd5b813567ffffffffffffffff8111156121f2578182fd5b8201601f81018413612202578182fd5b61164684823560208401611f21565b600060208284031215612222578081fd5b5035919050565b60008151808452612241816020860160208601612941565b601f01601f19169290920160200192915050565b6000845160206122688285838a01612941565b85519184019161227b8184848a01612941565b855492019183906002810460018083168061229757607f831692505b8583108114156122b557634e487b7160e01b88526022600452602488fd5b8080156122c957600181146122da57612306565b60ff19851688528388019550612306565b6122e38b6128d3565b895b858110156122fe5781548a8201529084019088016122e5565b505083880195505b50939b9a5050505050505050505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061236190830184612229565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156123a357835183529284019291840191600101612387565b50909695505050505050565b901515815260200190565b6000602082526113836020830184612229565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b90815260200190565b60009081526020902090565b600082198211156128f2576128f26129d7565b500190565b600082612906576129066129ed565b500490565b6000816000190483118215151615612925576129256129d7565b500290565b60008282101561293c5761293c6129d7565b500390565b60005b8381101561295c578181015183820152602001612944565b838111156112195750506000910152565b60028104600182168061298157607f821691505b602082108114156129a257634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129bc576129bc6129d7565b5060010190565b6000826129d2576129d26129ed565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b4157600080fdfea26469706673582212200dc3c1fadea9309175f0748173ee11827fb724ffedd6841f049e6f06f406e4c164736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000b54656e6e697320426974730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008544e4e49534254530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d556d574e3835646e76367878396e7a3532433674704b4b7633587877727050386b62695175563831794a31452f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Tennis Bits
Arg [1] : _symbol (string): TNNISBTS
Arg [2] : _initBaseURI (string): ipfs://QmUmWN85dnv6xx9nz52C6tpKKv3XxwrpP8kbiQuV81yJ1E/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [4] : 54656e6e69732042697473000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [6] : 544e4e4953425453000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d556d574e3835646e76367878396e7a3532433674704b4b
Arg [9] : 7633587877727050386b62695175563831794a31452f00000000000000000000


Deployed Bytecode Sourcemap

43102:4252:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34702:224;;;;;;;;;;-1:-1:-1;34702:224:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46890:73;;;;;;;;;;-1:-1:-1;46890:73:0;;;;;:::i;:::-;;:::i;:::-;;22683:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24242:221::-;;;;;;;;;;-1:-1:-1;24242:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;46418:118::-;;;;;;;;;;-1:-1:-1;46418:118:0;;;;;:::i;:::-;;:::i;23765:411::-;;;;;;;;;;-1:-1:-1;23765:411:0;;;;;:::i;:::-;;:::i;43256:33::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35342:113::-;;;;;;;;;;;;;:::i;43629:55::-;;;;;;;;;;-1:-1:-1;43629:55:0;;;;;:::i;:::-;;:::i;43330:33::-;;;;;;;;;;;;;:::i;25132:339::-;;;;;;;;;;-1:-1:-1;25132:339:0;;;;;:::i;:::-;;:::i;43406:32::-;;;;;;;;;;;;;:::i;35010:256::-;;;;;;;;;;-1:-1:-1;35010:256:0;;;;;:::i;:::-;;:::i;47193:158::-;;;:::i;25542:185::-;;;;;;;;;;-1:-1:-1;25542:185:0;;;;;:::i;:::-;;:::i;45420:348::-;;;;;;;;;;-1:-1:-1;45420:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;46330:82::-;;;;;;;;;;-1:-1:-1;46330:82:0;;;;;:::i;:::-;;:::i;35532:233::-;;;;;;;;;;-1:-1:-1;35532:233:0;;;;;:::i;:::-;;:::i;46658:98::-;;;;;;;;;;-1:-1:-1;46658:98:0;;;;;:::i;:::-;;:::i;43525:26::-;;;;;;;;;;;;;:::i;22377:239::-;;;;;;;;;;-1:-1:-1;22377:239:0;;;;;:::i;:::-;;:::i;43370:31::-;;;;;;;;;;;;;:::i;43188:21::-;;;;;;;;;;;;;:::i;22107:208::-;;;;;;;;;;-1:-1:-1;22107:208:0;;;;;:::i;:::-;;:::i;42438:94::-;;;;;;;;;;;;;:::i;47056:131::-;;;;;;;;;;-1:-1:-1;47056:131:0;;;;;:::i;:::-;;:::i;46542:110::-;;;;;;;;;;-1:-1:-1;46542:110:0;;;;;:::i;:::-;;:::i;41787:87::-;;;;;;;;;;;;;:::i;44449:729::-;;;;;;:::i;:::-;;:::i;22852:104::-;;;;;;;;;;;;;:::i;43997:437::-;;;;;;:::i;:::-;;:::i;24535:295::-;;;;;;;;;;-1:-1:-1;24535:295:0;;;;;:::i;:::-;;:::i;43443:34::-;;;;;;;;;;;;;:::i;25798:328::-;;;;;;;;;;-1:-1:-1;25798:328:0;;;;;:::i;:::-;;:::i;46969:81::-;;;;;;;;;;-1:-1:-1;46969:81:0;;;;;:::i;:::-;;:::i;43482:36::-;;;;;;;;;;;;;:::i;45184:230::-;;;;;;;;;;-1:-1:-1;45184:230:0;;;;;:::i;:::-;;:::i;43214:37::-;;;;;;;;;;;;;:::i;45774:423::-;;;;;;;;;;-1:-1:-1;45774:423:0;;;;;:::i;:::-;;:::i;46219:105::-;;;;;;;;;;-1:-1:-1;46219:105:0;;;;;:::i;:::-;;:::i;43294:31::-;;;;;;;;;;;;;:::i;46762:122::-;;;;;;;;;;-1:-1:-1;46762:122:0;;;;;:::i;:::-;;:::i;43558:27::-;;;;;;;;;;;;;:::i;24901:164::-;;;;;;;;;;-1:-1:-1;24901:164:0;;;;;:::i;:::-;;:::i;43590:34::-;;;;;;;;;;-1:-1:-1;43590:34:0;;;;;:::i;:::-;;:::i;42687:192::-;;;;;;;;;;-1:-1:-1;42687:192:0;;;;;:::i;:::-;;:::i;34702:224::-;34804:4;-1:-1:-1;;;;;;34828:50:0;;-1:-1:-1;;;34828:50:0;;:90;;;34882:36;34906:11;34882:23;:36::i;:::-;34821:97;;34702:224;;;;:::o;46890:73::-;42018:12;:10;:12::i;:::-;-1:-1:-1;;;;;42007:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42007:23:0;;41999:68;;;;-1:-1:-1;;;41999:68:0;;;;;;;:::i;:::-;;;;;;;;;46942:6:::1;:15:::0;;-1:-1:-1;;46942:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46890:73::o;22683:100::-;22737:13;22770:5;22763:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22683:100;:::o;24242:221::-;24318:7;24346:16;24354:7;24346;:16::i;:::-;24338:73;;;;-1:-1:-1;;;24338:73:0;;;;;;;:::i;:::-;-1:-1:-1;24431:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24431:24:0;;24242:221::o;46418:118::-;42018:12;:10;:12::i;:::-;-1:-1:-1;;;;;42007:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42007:23:0;;41999:68;;;;-1:-1:-1;;;41999:68:0;;;;;;;:::i;:::-;46497:13:::1;:33:::0;46418:118::o;23765:411::-;23846:13;23862:23;23877:7;23862:14;:23::i;:::-;23846:39;;23910:5;-1:-1:-1;;;;;23904:11:0;:2;-1:-1:-1;;;;;23904:11:0;;;23896:57;;;;-1:-1:-1;;;23896:57:0;;;;;;;:::i;:::-;24004:5;-1:-1:-1;;;;;23988:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;23988:21:0;;:62;;;;24013:37;24030:5;24037:12;:10;:12::i;24013:37::-;23966:168;;;;-1:-1:-1;;;23966:168:0;;;;;;;:::i;:::-;24147:21;24156:2;24160:7;24147:8;:21::i;:::-;23765:411;;;:::o;43256:33::-;;;;:::o;35342:113::-;35430:10;:17;35342:113;:::o;43629:55::-;;;;;;;;;;;;;:::o;43330:33::-;;;;:::o;25132:339::-;25327:41;25346:12;:10;:12::i;:::-;25360:7;25327:18;:41::i;:::-;25319:103;;;;-1:-1:-1;;;25319:103:0;;;;;;;:::i;:::-;25435:28;25445:4;25451:2;25455:7;25435:9;:28::i;43406:32::-;;;;:::o;35010:256::-;35107:7;35143:23;35160:5;35143:16;:23::i;:::-;35135:5;:31;35127:87;;;;-1:-1:-1;;;35127:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;35232:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;35010:256::o;47193:158::-;42018:12;:10;:12::i;:::-;-1:-1:-1;;;;;42007:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42007:23:0;;41999:68;;;;-1:-1:-1;;;41999:68:0;;;;;;;:::i;:::-;47246:12:::1;47272:10;-1:-1:-1::0;;;;;47264:24:0::1;47296:21;47264:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47245:77;;;47337:7;47329:16;;;::::0;::::1;;42078:1;47193:158::o:0;25542:185::-;25680:39;25697:4;25703:2;25707:7;25680:39;;;;;;;;;;;;:16;:39::i;45420:348::-;45495:16;45523:23;45549:17;45559:6;45549:9;:17::i;:::-;45523:43;;45573:25;45615:15;45601:30;;;;;;-1:-1:-1;;;45601:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45601:30:0;;45573:58;;45643:9;45638:103;45658:15;45654:1;:19;45638:103;;;45703:30;45723:6;45731:1;45703:19;:30::i;:::-;45689:8;45698:1;45689:11;;;;;;-1:-1:-1;;;45689:11:0;;;;;;;;;;;;;;;;;;:44;45675:3;;;;:::i;:::-;;;;45638:103;;;-1:-1:-1;45754:8:0;45420:348;-1:-1:-1;;;45420:348:0:o;46330:82::-;42018:12;:10;:12::i;:::-;-1:-1:-1;;;;;42007:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42007:23:0;;41999:68;;;;-1:-1:-1;;;41999:68:0;;;;;;;:::i;:::-;46391:4:::1;:15:::0;46330:82::o;35532:233::-;35607:7;35643:30;:28;:30::i;:::-;35635:5;:38;35627:95;;;;-1:-1:-1;;;35627:95:0;;;;;;;:::i;:::-;35740:10;35751:5;35740:17;;;;;;-1:-1:-1;;;35740:17:0;;;;;;;;;;;;;;;;;35733:24;;35532:233;;;:::o;46658:98::-;42018:12;:10;:12::i;:::-;-1:-1:-1;;;;;42007:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42007:23:0;;41999:68;;;;-1:-1:-1;;;41999:68:0;;;;;;;:::i;:::-;46729:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;46658:98:::0;:::o;43525:26::-;;;;;;:::o;22377:239::-;22449:7;22485:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22485:16:0;22520:19;22512:73;;;;-1:-1:-1;;;22512:73:0;;;;;;;:::i;43370:31::-;;;;:::o;43188:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22107:208::-;22179:7;-1:-1:-1;;;;;22207:19:0;;22199:74;;;;-1:-1:-1;;;22199:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;22291:16:0;;;;;:9;:16;;;;;;;22107:208::o;42438:94::-;42018:12;:10;:12::i;:::-;-1:-1:-1;;;;;42007:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42007:23:0;;41999:68;;;;-1:-1:-1;;;41999:68:0;;;;;;;:::i;:::-;42503:21:::1;42521:1;42503:9;:21::i;:::-;42438:94::o:0;47056:131::-;42018:12;:10;:12::i;:::-;-1:-1:-1;;;;;42007:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42007:23:0;;41999:68;;;;-1:-1:-1;;;41999:68:0;;;;;;;:::i;:::-;47124:24:::1;47131:17;;47124:24;:::i;:::-;47155:26;:17;47175:6:::0;;47155:26:::1;:::i;46542:110::-:0;42018:12;:10;:12::i;:::-;-1:-1:-1;;;;;42007:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42007:23:0;;41999:68;;;;-1:-1:-1;;;41999:68:0;;;;;;;:::i;:::-;46617:11:::1;:29:::0;46542:110::o;41787:87::-;41860:6;;-1:-1:-1;;;;;41860:6:0;41787:87;:::o;44449:729::-;44517:6;;;;44516:7;44508:16;;;;;;44531:14;44548:13;:11;:13::i;:::-;44531:30;;44590:1;44576:11;:15;44568:24;;;;;;44622:15;;44607:11;:30;;44599:39;;;;;;44677:11;;44653:20;44662:11;44653:6;:20;:::i;:::-;:35;;44645:44;;;;;;44716:7;:5;:7::i;:::-;-1:-1:-1;;;;;44702:21:0;:10;-1:-1:-1;;;;;44702:21:0;;44698:327;;44740:8;;;;;;;;:16;;:8;:16;44736:229;;;44781:22;44792:10;44781;:22::i;:::-;44773:31;;;;;;44867:10;44819:24;44846:32;;;:20;:32;;;;;;44935:17;;44901:30;44920:11;44846:32;44901:30;:::i;:::-;:51;;44893:60;;;;;;44736:229;;45005:11;44996:6;;:20;;;;:::i;:::-;44983:9;:33;;44975:42;;;;;;45050:1;45033:140;45058:11;45053:1;:16;45033:140;;45108:10;45087:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;-1:-1:-1;45132:33:0;;-1:-1:-1;45142:10:0;45154;45163:1;45154:6;:10;:::i;:::-;45132:9;:33::i;:::-;45071:3;;;;:::i;:::-;;;;45033:140;;22852:104;22908:13;22941:7;22934:14;;;;;:::i;43997:437::-;44063:6;;;;44062:7;44054:16;;;;;;44077:14;44094:13;:11;:13::i;:::-;44077:30;;44136:1;44122:11;:15;44114:24;;;;;;44168:13;;44153:11;:28;;44145:37;;;;;;44221:9;;44197:20;44206:11;44197:6;:20;:::i;:::-;:33;;44189:42;;;;;;44258:7;:5;:7::i;:::-;-1:-1:-1;;;;;44244:21:0;:10;-1:-1:-1;;;;;44244:21:0;;44240:86;;44306:11;44299:4;;:18;;;;:::i;:::-;44286:9;:31;;44278:40;;;;;;44351:1;44334:95;44359:11;44354:1;:16;44334:95;;44388:33;44398:10;44410;44419:1;44410:6;:10;:::i;44388:33::-;44372:3;;;;:::i;:::-;;;;44334:95;;24535:295;24650:12;:10;:12::i;:::-;-1:-1:-1;;;;;24638:24:0;:8;-1:-1:-1;;;;;24638:24:0;;;24630:62;;;;-1:-1:-1;;;24630:62:0;;;;;;;:::i;:::-;24750:8;24705:18;:32;24724:12;:10;:12::i;:::-;-1:-1:-1;;;;;24705:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;24705:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;24705:53:0;;;;;;;;;;;24789:12;:10;:12::i;:::-;-1:-1:-1;;;;;24774:48:0;;24813:8;24774:48;;;;;;:::i;:::-;;;;;;;;24535:295;;:::o;43443:34::-;;;;:::o;25798:328::-;25973:41;25992:12;:10;:12::i;:::-;26006:7;25973:18;:41::i;:::-;25965:103;;;;-1:-1:-1;;;25965:103:0;;;;;;;:::i;:::-;26079:39;26093:4;26099:2;26103:7;26112:5;26079:13;:39::i;:::-;25798:328;;;;:::o;46969:81::-;42018:12;:10;:12::i;:::-;-1:-1:-1;;;;;42007:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42007:23:0;;41999:68;;;;-1:-1:-1;;;41999:68:0;;;;;;;:::i;:::-;47027:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;47027:17:0;;::::1;::::0;;;::::1;::::0;;46969:81::o;43482:36::-;;;;:::o;45184:230::-;45240:4;;45253:137;45274:17;:24;45270:28;;45253:137;;;45342:5;-1:-1:-1;;;;;45318:29:0;:17;45336:1;45318:20;;;;;;-1:-1:-1;;;45318:20:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45318:20:0;:29;45314:69;;;45369:4;45362:11;;;;;45314:69;45300:3;;;;:::i;:::-;;;;45253:137;;;-1:-1:-1;45403:5:0;;45184:230;-1:-1:-1;;45184:230:0:o;43214:37::-;;;;;;;:::i;45774:423::-;45872:13;45913:16;45921:7;45913;:16::i;:::-;45897:97;;;;-1:-1:-1;;;45897:97:0;;;;;;;:::i;:::-;46003:28;46034:10;:8;:10::i;:::-;46003:41;;46089:1;46064:14;46058:28;:32;:133;;;;;;;;;;;;;;;;;46126:14;46142:18;:7;:16;:18::i;:::-;46162:13;46109:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46058:133;46051:140;45774:423;-1:-1:-1;;;45774:423:0:o;46219:105::-;42018:12;:10;:12::i;:::-;-1:-1:-1;;;;;42007:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42007:23:0;;41999:68;;;;-1:-1:-1;;;41999:68:0;;;;;;;:::i;:::-;46292:17:::1;:26:::0;46219:105::o;43294:31::-;;;;:::o;46762:122::-;42018:12;:10;:12::i;:::-;-1:-1:-1;;;;;42007:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42007:23:0;;41999:68;;;;-1:-1:-1;;;41999:68:0;;;;;;;:::i;:::-;46845:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;43558:27::-:0;;;;;;;;;:::o;24901:164::-;-1:-1:-1;;;;;25022:25:0;;;24998:4;25022:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24901:164::o;43590:34::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43590:34:0;;-1:-1:-1;43590:34:0;:::o;42687:192::-;42018:12;:10;:12::i;:::-;-1:-1:-1;;;;;42007:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42007:23:0;;41999:68;;;;-1:-1:-1;;;41999:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42776:22:0;::::1;42768:73;;;;-1:-1:-1::0;;;42768:73:0::1;;;;;;;:::i;:::-;42852:19;42862:8;42852:9;:19::i;21738:305::-:0;21840:4;-1:-1:-1;;;;;;21877:40:0;;-1:-1:-1;;;21877:40:0;;:105;;-1:-1:-1;;;;;;;21934:48:0;;-1:-1:-1;;;21934:48:0;21877:105;:158;;;;21999:36;22023:11;21999:23;:36::i;20270:98::-;20350:10;20270:98;:::o;27636:127::-;27701:4;27725:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27725:16:0;:30;;;27636:127::o;31618:174::-;31693:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31693:29:0;-1:-1:-1;;;;;31693:29:0;;;;;;;;:24;;31747:23;31693:24;31747:14;:23::i;:::-;-1:-1:-1;;;;;31738:46:0;;;;;;;;;;;31618:174;;:::o;27930:348::-;28023:4;28048:16;28056:7;28048;:16::i;:::-;28040:73;;;;-1:-1:-1;;;28040:73:0;;;;;;;:::i;:::-;28124:13;28140:23;28155:7;28140:14;:23::i;:::-;28124:39;;28193:5;-1:-1:-1;;;;;28182:16:0;:7;-1:-1:-1;;;;;28182:16:0;;:51;;;;28226:7;-1:-1:-1;;;;;28202:31:0;:20;28214:7;28202:11;:20::i;:::-;-1:-1:-1;;;;;28202:31:0;;28182:51;:87;;;;28237:32;28254:5;28261:7;28237:16;:32::i;:::-;28174:96;27930:348;-1:-1:-1;;;;27930:348:0:o;30922:578::-;31081:4;-1:-1:-1;;;;;31054:31:0;:23;31069:7;31054:14;:23::i;:::-;-1:-1:-1;;;;;31054:31:0;;31046:85;;;;-1:-1:-1;;;31046:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31150:16:0;;31142:65;;;;-1:-1:-1;;;31142:65:0;;;;;;;:::i;:::-;31220:39;31241:4;31247:2;31251:7;31220:20;:39::i;:::-;31324:29;31341:1;31345:7;31324:8;:29::i;:::-;-1:-1:-1;;;;;31366:15:0;;;;;;:9;:15;;;;;:20;;31385:1;;31366:15;:20;;31385:1;;31366:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31397:13:0;;;;;;:9;:13;;;;;:18;;31414:1;;31397:13;:18;;31414:1;;31397:18;:::i;:::-;;;;-1:-1:-1;;31426:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31426:21:0;-1:-1:-1;;;;;31426:21:0;;;;;;;;;31465:27;;31426:16;;31465:27;;;;;;;30922:578;;;:::o;42887:173::-;42962:6;;;-1:-1:-1;;;;;42979:17:0;;;-1:-1:-1;;;;;;42979:17:0;;;;;;;43012:40;;42962:6;;;42979:17;42962:6;;43012:40;;42943:16;;43012:40;42887:173;;:::o;28620:110::-;28696:26;28706:2;28710:7;28696:26;;;;;;;;;;;;:9;:26::i;27008:315::-;27165:28;27175:4;27181:2;27185:7;27165:9;:28::i;:::-;27212:48;27235:4;27241:2;27245:7;27254:5;27212:22;:48::i;:::-;27204:111;;;;-1:-1:-1;;;27204:111:0;;;;;;;:::i;43876:102::-;43936:13;43965:7;43958:14;;;;;:::i;8367:723::-;8423:13;8644:10;8640:53;;-1:-1:-1;8671:10:0;;;;;;;;;;;;-1:-1:-1;;;8671:10:0;;;;;;8640:53;8718:5;8703:12;8759:78;8766:9;;8759:78;;8792:8;;;;:::i;:::-;;-1:-1:-1;8815:10:0;;-1:-1:-1;8823:2:0;8815:10;;:::i;:::-;;;8759:78;;;8847:19;8879:6;8869:17;;;;;;-1:-1:-1;;;8869:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8869:17:0;;8847:39;;8897:154;8904:10;;8897:154;;8931:11;8941:1;8931:11;;:::i;:::-;;-1:-1:-1;9000:10:0;9008:2;9000:5;:10;:::i;:::-;8987:24;;:2;:24;:::i;:::-;8974:39;;8957:6;8964;8957:14;;;;;;-1:-1:-1;;;8957:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;8957:56:0;;;;;;;;-1:-1:-1;9028:11:0;9037:2;9028:11;;:::i;:::-;;;8897:154;;7950:157;-1:-1:-1;;;;;;8059:40:0;;-1:-1:-1;;;8059:40:0;7950:157;;;:::o;36378:589::-;36522:45;36549:4;36555:2;36559:7;36522:26;:45::i;:::-;-1:-1:-1;;;;;36584:18:0;;36580:187;;36619:40;36651:7;36619:31;:40::i;:::-;36580:187;;;36689:2;-1:-1:-1;;;;;36681:10:0;:4;-1:-1:-1;;;;;36681:10:0;;36677:90;;36708:47;36741:4;36747:7;36708:32;:47::i;:::-;-1:-1:-1;;;;;36781:16:0;;36777:183;;36814:45;36851:7;36814:36;:45::i;:::-;36777:183;;;36887:4;-1:-1:-1;;;;;36881:10:0;:2;-1:-1:-1;;;;;36881:10:0;;36877:83;;36908:40;36936:2;36940:7;36908:27;:40::i;28957:321::-;29087:18;29093:2;29097:7;29087:5;:18::i;:::-;29138:54;29169:1;29173:2;29177:7;29186:5;29138:22;:54::i;:::-;29116:154;;;;-1:-1:-1;;;29116:154:0;;;;;;;:::i;32357:799::-;32512:4;32533:15;:2;-1:-1:-1;;;;;32533:13:0;;:15::i;:::-;32529:620;;;32585:2;-1:-1:-1;;;;;32569:36:0;;32606:12;:10;:12::i;:::-;32620:4;32626:7;32635:5;32569:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32569:72:0;;;;;;;;-1:-1:-1;;32569:72:0;;;;;;;;;;;;:::i;:::-;;;32565:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32811:13:0;;32807:272;;32854:60;;-1:-1:-1;;;32854:60:0;;;;;;;:::i;32807:272::-;33029:6;33023:13;33014:6;33010:2;33006:15;32999:38;32565:529;-1:-1:-1;;;;;;32692:51:0;-1:-1:-1;;;32692:51:0;;-1:-1:-1;32685:58:0;;32529:620;-1:-1:-1;33133:4:0;32357:799;;;;;;:::o;37690:164::-;37794:10;:17;;37767:24;;;;:15;:24;;;;;:44;;;37822:24;;;;;;;;;;;;37690:164::o;38481:988::-;38747:22;38797:1;38772:22;38789:4;38772:16;:22::i;:::-;:26;;;;:::i;:::-;38809:18;38830:26;;;:17;:26;;;;;;38747:51;;-1:-1:-1;38963:28:0;;;38959:328;;-1:-1:-1;;;;;39030:18:0;;39008:19;39030:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39081:30;;;;;;:44;;;39198:30;;:17;:30;;;;;:43;;;38959:328;-1:-1:-1;39383:26:0;;;;:17;:26;;;;;;;;39376:33;;;-1:-1:-1;;;;;39427:18:0;;;;;:12;:18;;;;;:34;;;;;;;39420:41;38481:988::o;39764:1079::-;40042:10;:17;40017:22;;40042:21;;40062:1;;40042:21;:::i;:::-;40074:18;40095:24;;;:15;:24;;;;;;40468:10;:26;;40017:46;;-1:-1:-1;40095:24:0;;40017:46;;40468:26;;;;-1:-1:-1;;;40468:26:0;;;;;;;;;;;;;;;;;40446:48;;40532:11;40507:10;40518;40507:22;;;;;;-1:-1:-1;;;40507:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;40612:28;;;:15;:28;;;;;;;:41;;;40784:24;;;;;40777:31;40819:10;:16;;;;;-1:-1:-1;;;40819:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;39764:1079;;;;:::o;37268:221::-;37353:14;37370:20;37387:2;37370:16;:20::i;:::-;-1:-1:-1;;;;;37401:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37446:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37268:221:0:o;29614:382::-;-1:-1:-1;;;;;29694:16:0;;29686:61;;;;-1:-1:-1;;;29686:61:0;;;;;;;:::i;:::-;29767:16;29775:7;29767;:16::i;:::-;29766:17;29758:58;;;;-1:-1:-1;;;29758:58:0;;;;;;;:::i;:::-;29829:45;29858:1;29862:2;29866:7;29829:20;:45::i;:::-;-1:-1:-1;;;;;29887:13:0;;;;;;:9;:13;;;;;:18;;29904:1;;29887:13;:18;;29904:1;;29887:18;:::i;:::-;;;;-1:-1:-1;;29916:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29916:21:0;-1:-1:-1;;;;;29916:21:0;;;;;;;;29955:33;;29916:16;;;29955:33;;29916:16;;29955:33;29614:382;;:::o;10834:387::-;11157:20;11205:8;;;10834:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:162;873:20;;929:13;;922:21;912:32;;902:2;;958:1;955;948:12;973:198;;1085:2;1073:9;1064:7;1060:23;1056:32;1053:2;;;1106:6;1098;1091:22;1053:2;1134:31;1155:9;1134:31;:::i;1176:274::-;;;1305:2;1293:9;1284:7;1280:23;1276:32;1273:2;;;1326:6;1318;1311:22;1273:2;1354:31;1375:9;1354:31;:::i;:::-;1344:41;;1404:40;1440:2;1429:9;1425:18;1404:40;:::i;:::-;1394:50;;1263:187;;;;;:::o;1455:342::-;;;;1601:2;1589:9;1580:7;1576:23;1572:32;1569:2;;;1622:6;1614;1607:22;1569:2;1650:31;1671:9;1650:31;:::i;:::-;1640:41;;1700:40;1736:2;1725:9;1721:18;1700:40;:::i;:::-;1690:50;;1787:2;1776:9;1772:18;1759:32;1749:42;;1559:238;;;;;:::o;1802:702::-;;;;;1974:3;1962:9;1953:7;1949:23;1945:33;1942:2;;;1996:6;1988;1981:22;1942:2;2024:31;2045:9;2024:31;:::i;:::-;2014:41;;2074:40;2110:2;2099:9;2095:18;2074:40;:::i;:::-;2064:50;;2161:2;2150:9;2146:18;2133:32;2123:42;;2216:2;2205:9;2201:18;2188:32;2243:18;2235:6;2232:30;2229:2;;;2280:6;2272;2265:22;2229:2;2308:22;;2361:4;2353:13;;2349:27;-1:-1:-1;2339:2:1;;2395:6;2387;2380:22;2339:2;2423:75;2490:7;2485:2;2472:16;2467:2;2463;2459:11;2423:75;:::i;:::-;2413:85;;;1932:572;;;;;;;:::o;2509:268::-;;;2635:2;2623:9;2614:7;2610:23;2606:32;2603:2;;;2656:6;2648;2641:22;2603:2;2684:31;2705:9;2684:31;:::i;:::-;2674:41;;2734:37;2767:2;2756:9;2752:18;2734:37;:::i;2782:266::-;;;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:31;2981:9;2960:31;:::i;:::-;2950:41;3038:2;3023:18;;;;3010:32;;-1:-1:-1;;;2869:179:1:o;3053:666::-;;;3200:2;3188:9;3179:7;3175:23;3171:32;3168:2;;;3221:6;3213;3206:22;3168:2;3266:9;3253:23;3295:18;3336:2;3328:6;3325:14;3322:2;;;3357:6;3349;3342:22;3322:2;3400:6;3389:9;3385:22;3375:32;;3445:7;3438:4;3434:2;3430:13;3426:27;3416:2;;3472:6;3464;3457:22;3416:2;3517;3504:16;3543:2;3535:6;3532:14;3529:2;;;3564:6;3556;3549:22;3529:2;3623:7;3618:2;3612;3604:6;3600:15;3596:2;3592:24;3588:33;3585:46;3582:2;;;3649:6;3641;3634:22;3582:2;3685;3677:11;;;;;3707:6;;-1:-1:-1;3158:561:1;;-1:-1:-1;;;;3158:561:1:o;3724:192::-;;3833:2;3821:9;3812:7;3808:23;3804:32;3801:2;;;3854:6;3846;3839:22;3801:2;3882:28;3900:9;3882:28;:::i;3921:257::-;;4032:2;4020:9;4011:7;4007:23;4003:32;4000:2;;;4053:6;4045;4038:22;4000:2;4097:9;4084:23;4116:32;4142:5;4116:32;:::i;4183:261::-;;4305:2;4293:9;4284:7;4280:23;4276:32;4273:2;;;4326:6;4318;4311:22;4273:2;4363:9;4357:16;4382:32;4408:5;4382:32;:::i;4449:482::-;;4571:2;4559:9;4550:7;4546:23;4542:32;4539:2;;;4592:6;4584;4577:22;4539:2;4637:9;4624:23;4670:18;4662:6;4659:30;4656:2;;;4707:6;4699;4692:22;4656:2;4735:22;;4788:4;4780:13;;4776:27;-1:-1:-1;4766:2:1;;4822:6;4814;4807:22;4766:2;4850:75;4917:7;4912:2;4899:16;4894:2;4890;4886:11;4850:75;:::i;4936:190::-;;5048:2;5036:9;5027:7;5023:23;5019:32;5016:2;;;5069:6;5061;5054:22;5016:2;-1:-1:-1;5097:23:1;;5006:120;-1:-1:-1;5006:120:1:o;5131:259::-;;5212:5;5206:12;5239:6;5234:3;5227:19;5255:63;5311:6;5304:4;5299:3;5295:14;5288:4;5281:5;5277:16;5255:63;:::i;:::-;5372:2;5351:15;-1:-1:-1;;5347:29:1;5338:39;;;;5379:4;5334:50;;5182:208;-1:-1:-1;;5182:208:1:o;5395:1532::-;;5657:6;5651:13;5683:4;5696:51;5740:6;5735:3;5730:2;5722:6;5718:15;5696:51;:::i;:::-;5810:13;;5769:16;;;;5832:55;5810:13;5769:16;5854:15;;;5832:55;:::i;:::-;5978:13;;5909:20;;;5949:3;;6055:1;6040:17;;6076:1;6112:18;;;;6139:2;;6217:4;6207:8;6203:19;6191:31;;6139:2;6280;6270:8;6267:16;6247:18;6244:40;6241:2;;;-1:-1:-1;;;6307:33:1;;6363:4;6360:1;6353:15;6393:4;6314:3;6381:17;6241:2;6424:18;6451:110;;;;6575:1;6570:332;;;;6417:485;;6451:110;-1:-1:-1;;6486:24:1;;6472:39;;6531:20;;;;-1:-1:-1;6451:110:1;;6570:332;6606:39;6638:6;6606:39;:::i;:::-;6667:3;6683:169;6697:8;6694:1;6691:15;6683:169;;;6779:14;;6764:13;;;6757:37;6822:16;;;;6714:10;;6683:169;;;6687:3;;6883:8;6876:5;6872:20;6865:27;;6417:485;-1:-1:-1;6918:3:1;;5627:1300;-1:-1:-1;;;;;;;;;;;5627:1300:1:o;6932:205::-;7132:3;7123:14::o;7142:203::-;-1:-1:-1;;;;;7306:32:1;;;;7288:51;;7276:2;7261:18;;7243:102::o;7350:490::-;-1:-1:-1;;;;;7619:15:1;;;7601:34;;7671:15;;7666:2;7651:18;;7644:43;7718:2;7703:18;;7696:34;;;7766:3;7761:2;7746:18;;7739:31;;;7350:490;;7787:47;;7814:19;;7806:6;7787:47;:::i;:::-;7779:55;7553:287;-1:-1:-1;;;;;;7553:287:1:o;7845:635::-;8016:2;8068:21;;;8138:13;;8041:18;;;8160:22;;;7845:635;;8016:2;8239:15;;;;8213:2;8198:18;;;7845:635;8285:169;8299:6;8296:1;8293:13;8285:169;;;8360:13;;8348:26;;8429:15;;;;8394:12;;;;8321:1;8314:9;8285:169;;;-1:-1:-1;8471:3:1;;7996:484;-1:-1:-1;;;;;;7996:484:1:o;8485:187::-;8650:14;;8643:22;8625:41;;8613:2;8598:18;;8580:92::o;8677:221::-;;8826:2;8815:9;8808:21;8846:46;8888:2;8877:9;8873:18;8865:6;8846:46;:::i;8903:407::-;9105:2;9087:21;;;9144:2;9124:18;;;9117:30;9183:34;9178:2;9163:18;;9156:62;-1:-1:-1;;;9249:2:1;9234:18;;9227:41;9300:3;9285:19;;9077:233::o;9315:414::-;9517:2;9499:21;;;9556:2;9536:18;;;9529:30;9595:34;9590:2;9575:18;;9568:62;-1:-1:-1;;;9661:2:1;9646:18;;9639:48;9719:3;9704:19;;9489:240::o;9734:402::-;9936:2;9918:21;;;9975:2;9955:18;;;9948:30;10014:34;10009:2;9994:18;;9987:62;-1:-1:-1;;;10080:2:1;10065:18;;10058:36;10126:3;10111:19;;9908:228::o;10141:352::-;10343:2;10325:21;;;10382:2;10362:18;;;10355:30;10421;10416:2;10401:18;;10394:58;10484:2;10469:18;;10315:178::o;10498:400::-;10700:2;10682:21;;;10739:2;10719:18;;;10712:30;10778:34;10773:2;10758:18;;10751:62;-1:-1:-1;;;10844:2:1;10829:18;;10822:34;10888:3;10873:19;;10672:226::o;10903:349::-;11105:2;11087:21;;;11144:2;11124:18;;;11117:30;11183:27;11178:2;11163:18;;11156:55;11243:2;11228:18;;11077:175::o;11257:408::-;11459:2;11441:21;;;11498:2;11478:18;;;11471:30;11537:34;11532:2;11517:18;;11510:62;-1:-1:-1;;;11603:2:1;11588:18;;11581:42;11655:3;11640:19;;11431:234::o;11670:420::-;11872:2;11854:21;;;11911:2;11891:18;;;11884:30;11950:34;11945:2;11930:18;;11923:62;12021:26;12016:2;12001:18;;11994:54;12080:3;12065:19;;11844:246::o;12095:406::-;12297:2;12279:21;;;12336:2;12316:18;;;12309:30;12375:34;12370:2;12355:18;;12348:62;-1:-1:-1;;;12441:2:1;12426:18;;12419:40;12491:3;12476:19;;12269:232::o;12506:405::-;12708:2;12690:21;;;12747:2;12727:18;;;12720:30;12786:34;12781:2;12766:18;;12759:62;-1:-1:-1;;;12852:2:1;12837:18;;12830:39;12901:3;12886:19;;12680:231::o;12916:356::-;13118:2;13100:21;;;13137:18;;;13130:30;13196:34;13191:2;13176:18;;13169:62;13263:2;13248:18;;13090:182::o;13277:408::-;13479:2;13461:21;;;13518:2;13498:18;;;13491:30;13557:34;13552:2;13537:18;;13530:62;-1:-1:-1;;;13623:2:1;13608:18;;13601:42;13675:3;13660:19;;13451:234::o;13690:356::-;13892:2;13874:21;;;13911:18;;;13904:30;13970:34;13965:2;13950:18;;13943:62;14037:2;14022:18;;13864:182::o;14051:405::-;14253:2;14235:21;;;14292:2;14272:18;;;14265:30;14331:34;14326:2;14311:18;;14304:62;-1:-1:-1;;;14397:2:1;14382:18;;14375:39;14446:3;14431:19;;14225:231::o;14461:411::-;14663:2;14645:21;;;14702:2;14682:18;;;14675:30;14741:34;14736:2;14721:18;;14714:62;-1:-1:-1;;;14807:2:1;14792:18;;14785:45;14862:3;14847:19;;14635:237::o;14877:397::-;15079:2;15061:21;;;15118:2;15098:18;;;15091:30;15157:34;15152:2;15137:18;;15130:62;-1:-1:-1;;;15223:2:1;15208:18;;15201:31;15264:3;15249:19;;15051:223::o;15279:413::-;15481:2;15463:21;;;15520:2;15500:18;;;15493:30;15559:34;15554:2;15539:18;;15532:62;-1:-1:-1;;;15625:2:1;15610:18;;15603:47;15682:3;15667:19;;15453:239::o;15697:408::-;15899:2;15881:21;;;15938:2;15918:18;;;15911:30;15977:34;15972:2;15957:18;;15950:62;-1:-1:-1;;;16043:2:1;16028:18;;16021:42;16095:3;16080:19;;15871:234::o;16110:177::-;16256:25;;;16244:2;16229:18;;16211:76::o;16292:129::-;;16360:17;;;16410:4;16394:21;;;16350:71::o;16426:128::-;;16497:1;16493:6;16490:1;16487:13;16484:2;;;16503:18;;:::i;:::-;-1:-1:-1;16539:9:1;;16474:80::o;16559:120::-;;16625:1;16615:2;;16630:18;;:::i;:::-;-1:-1:-1;16664:9:1;;16605:74::o;16684:168::-;;16790:1;16786;16782:6;16778:14;16775:1;16772:21;16767:1;16760:9;16753:17;16749:45;16746:2;;;16797:18;;:::i;:::-;-1:-1:-1;16837:9:1;;16736:116::o;16857:125::-;;16925:1;16922;16919:8;16916:2;;;16930:18;;:::i;:::-;-1:-1:-1;16967:9:1;;16906:76::o;16987:258::-;17059:1;17069:113;17083:6;17080:1;17077:13;17069:113;;;17159:11;;;17153:18;17140:11;;;17133:39;17105:2;17098:10;17069:113;;;17200:6;17197:1;17194:13;17191:2;;;-1:-1:-1;;17235:1:1;17217:16;;17210:27;17040:205::o;17250:380::-;17335:1;17325:12;;17382:1;17372:12;;;17393:2;;17447:4;17439:6;17435:17;17425:27;;17393:2;17500;17492:6;17489:14;17469:18;17466:38;17463:2;;;17546:10;17541:3;17537:20;17534:1;17527:31;17581:4;17578:1;17571:15;17609:4;17606:1;17599:15;17463:2;;17305:325;;;:::o;17635:135::-;;-1:-1:-1;;17695:17:1;;17692:2;;;17715:18;;:::i;:::-;-1:-1:-1;17762:1:1;17751:13;;17682:88::o;17775:112::-;;17833:1;17823:2;;17838:18;;:::i;:::-;-1:-1:-1;17872:9:1;;17813:74::o;17892:127::-;17953:10;17948:3;17944:20;17941:1;17934:31;17984:4;17981:1;17974:15;18008:4;18005:1;17998:15;18024:127;18085:10;18080:3;18076:20;18073:1;18066:31;18116:4;18113:1;18106:15;18140:4;18137:1;18130:15;18156:127;18217:10;18212:3;18208:20;18205:1;18198:31;18248:4;18245:1;18238:15;18272:4;18269:1;18262:15;18288:133;-1:-1:-1;;;;;;18364:32:1;;18354:43;;18344:2;;18411:1;18408;18401:12

Swarm Source

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