ETH Price: $3,363.24 (-0.56%)
Gas: 13 Gwei

Token

0xBatz (0xBatz)
 

Overview

Max Total Supply

978 0xBatz

Holders

256

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 0xBatz
0x9E886c3a1fe69756B5006C6431F600c6EBeD6dfE
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:
xBatz

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-12
*/

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;


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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

pragma solidity ^0.8.0;


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

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

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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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

// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

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

// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: contracts/0xBatz.sol

pragma solidity ^0.8.10;






contract xBatz is ERC721Enumerable, Ownable {
  using Strings for uint256;
  using Address for address;

  
  address public teamWallet;
  bool public mintEnabled = false;
  uint8 public perMint = 3;
  uint256 public price = 0 ether;
  uint256 public mintPrice = .01 ether;
  uint16 public maxSupply = 6666;
  uint16 public reserved = 250;
  string private baseURI;
  string private defaultURI;
  uint16 private psupply;

  /**
   * @notice Setup ERC721
   */
  constructor(
      string memory name,
      string memory symbol,
      string memory _defaultURI,
      address _teamWallet
  ) ERC721(name, symbol) {
      require(_teamWallet != address(0), "Zero address error");
      defaultURI = _defaultURI; 
      psupply = 0;
      teamWallet = _teamWallet;
  }

  /**
   * @notice Send ETH to owners wallet 
   */
  function ownerWithdraw() public onlyOwner {
      uint256 balance = address(this).balance;
      payable(msg.sender).transfer(balance);
  }

  /**
   * @notice Send ETH to team wallet 
   */
  function teamWithdraw() public onlyOwner {
      uint256 balance = address(this).balance;
      payable(teamWallet).transfer(balance);
  }

  /**
   * @notice Make New 0xBatz 
   * @param amount Amount of 0xBatz to mint
   * @dev Utilize unchecked {} and calldata for gas savings.
   */
  function mint(uint256 amount) public payable {
      if ((psupply + amount > 666) && (psupply + amount < 669)) {
        require(mintPrice * (psupply + amount - 666) <= msg.value, "Ether value sent is not correct.");
      }
      require(mintEnabled, "Minting is disabled.");
      require(psupply + amount <= maxSupply - reserved, "Amount exceeds maximum supply of 0xBatz.");
      require(amount <= perMint, "Amount exceeds current maximum 0xBatz per mint.");
      require(price * amount <= msg.value, "Ether value sent is not correct.");
      uint16 supply = psupply;
      unchecked {
          for (uint16 i = 0; i < amount; i++) {
              _safeMint(msg.sender, supply++);
          }
      }
      psupply = supply;

      if (psupply >= 666) {
        price = mintPrice;
        perMint = 10;
      }

  }

  /**
   * @notice Send reserved 0xBatz 
   * @param _to address to send reserved nfts to.
   * @param _amount number of nfts to send 
   */
  function fetchTeamReserved(address _to, uint16 _amount)
      public
      onlyOwner
  {
      require( _to !=  address(0), "Zero address error");
      require( _amount <= reserved, "Exceeds reserved babies supply");
      uint16 supply = psupply;
      unchecked {
        for (uint8 i = 0; i < _amount; i++) {
            _safeMint(_to, supply++);
        }
      }
      psupply = supply;
      reserved -= _amount;
  }

  /**
   * @notice Set price.
   * @param newPrice new minting price
   * @dev Only authorized accounts.
   */
  function setPrice(uint256 newPrice) public onlyOwner {
      price = newPrice;
  }

  /**
   * @notice Return mint price.
   */
  function getMintPrice() public view returns (uint256) {
      return price;
  }

  /**
   * @notice Toggles minting state.
   */
  function toggleMintEnabled() public onlyOwner {
      mintEnabled = !mintEnabled;
  }

  /**
   * @notice Sets max 0xBatz per mint.
   */
  function setPerMint(uint8 _perMint) public onlyOwner {
      perMint = _perMint;
  }

  /**
   * @notice Set base URI.
   */
  function setBaseURI(string memory _baseURI) public onlyOwner {
      baseURI = _baseURI;
  }


  /**
   * @notice Set default URI.
   */
  function setDefaultURI(string memory _defaultURI) public onlyOwner {
      defaultURI = _defaultURI;
  }


  /**
   * @notice Set reserved.
   * @param _reserved new reserved amount. 
   * @dev Only authorized accounts.
   */
  function setReserved(uint16 _reserved) public onlyOwner {
      reserved = _reserved;
  }

  /**
   * @notice Set team wallet.
   * @param _teamWallet new team wallet address 
   * @dev Only authorized accounts.
   */
  function setTeamWallet(address _teamWallet) public onlyOwner {
      require(_teamWallet != address(0), "Zero address error");
      teamWallet = _teamWallet;
  }

  function tokenURI(uint256 tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(_exists(tokenId), "Token does not exist.");

        if (bytes(baseURI).length == 0) {
            return defaultURI;
        } else {
            return string(abi.encodePacked(baseURI, (tokenId).toString()));
        }
    }

  function burn(uint256 tokenId) public virtual {
      //solhint-disable-next-line max-line-length
      require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
      _burn(tokenId);
  }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"_defaultURI","type":"string"},{"internalType":"address","name":"_teamWallet","type":"address"}],"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":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint16","name":"_amount","type":"uint16"}],"name":"fetchTeamReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ownerWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"perMint","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserved","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_defaultURI","type":"string"}],"name":"setDefaultURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_perMint","type":"uint8"}],"name":"setPerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_reserved","type":"uint16"}],"name":"setReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_teamWallet","type":"address"}],"name":"setTeamWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600b805461ffff60a01b1916600360a81b1790556000600c55662386f26fc10000600d55600e805463ffffffff191662fa1a0a1790553480156200004757600080fd5b5060405162002ce138038062002ce18339810160408190526200006a916200031a565b83518490849062000083906000906020850190620001a7565b50805162000099906001906020840190620001a7565b505050620000b6620000b06200015160201b60201c565b62000155565b6001600160a01b038116620001065760405162461bcd60e51b81526020600482015260126024820152712d32b9379030b2323932b9b99032b93937b960711b604482015260640160405180910390fd5b81516200011b906010906020850190620001a7565b506011805461ffff19169055600b80546001600160a01b0319166001600160a01b0392909216919091179055506200040a915050565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001b590620003cd565b90600052602060002090601f016020900481019282620001d9576000855562000224565b82601f10620001f457805160ff191683800117855562000224565b8280016001018555821562000224579182015b828111156200022457825182559160200191906001019062000207565b506200023292915062000236565b5090565b5b8082111562000232576000815560010162000237565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200027557600080fd5b81516001600160401b03808211156200029257620002926200024d565b604051601f8301601f19908116603f01168101908282118183101715620002bd57620002bd6200024d565b81604052838152602092508683858801011115620002da57600080fd5b600091505b83821015620002fe5785820183015181830184015290820190620002df565b83821115620003105760008385830101525b9695505050505050565b600080600080608085870312156200033157600080fd5b84516001600160401b03808211156200034957600080fd5b620003578883890162000263565b955060208701519150808211156200036e57600080fd5b6200037c8883890162000263565b945060408701519150808211156200039357600080fd5b50620003a28782880162000263565b606087015190935090506001600160a01b0381168114620003c257600080fd5b939692955090935050565b600181811c90821680620003e257607f821691505b602082108114156200040457634e487b7160e01b600052602260045260246000fd5b50919050565b6128c7806200041a6000396000f3fe6080604052600436106102305760003560e01c806370a082311161012e578063b88d4fde116100ab578063d5abeb011161006f578063d5abeb0114610654578063da1b9e0814610682578063e985e9c5146106a2578063f2fde38b146106eb578063fe60d12c1461070b57600080fd5b8063b88d4fde146105be578063c87b56dd146105de578063cb6f238d146105fe578063cfbb7d361461061e578063d12397301461063357600080fd5b806395d89b41116100f257806395d89b411461054b578063a035b1fe14610560578063a0712d6814610576578063a22cb46514610589578063a7f93ebd146105a957600080fd5b806370a08231146104b8578063715018a6146104d857806372c19498146104ed5780638da5cb5b1461050d57806391b7f5ed1461052b57600080fd5b806342842e0e116101bc57806355f804b31161018057806355f804b31461042d578063599270441461044d57806361f5baeb1461046d5780636352211e146104825780636817c76c146104a257600080fd5b806342842e0e1461039857806342966c68146103b85780634311de8f146103d85780634f6ccce7146103ed578063523907731461040d57600080fd5b80630ed62b02116102035780630ed62b02146102e65780631525ff7d1461031957806318160ddd1461033957806323b872dd146103585780632f745c591461037857600080fd5b806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c578063095ea7b3146102c4575b600080fd5b34801561024157600080fd5b506102556102503660046121db565b61072c565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f610757565b6040516102619190612257565b34801561029857600080fd5b506102ac6102a736600461226a565b6107e9565b6040516001600160a01b039091168152602001610261565b3480156102d057600080fd5b506102e46102df36600461229a565b610883565b005b3480156102f257600080fd5b50600b5461030790600160a81b900460ff1681565b60405160ff9091168152602001610261565b34801561032557600080fd5b506102e46103343660046122c4565b610999565b34801561034557600080fd5b506008545b604051908152602001610261565b34801561036457600080fd5b506102e46103733660046122df565b610a30565b34801561038457600080fd5b5061034a61039336600461229a565b610a62565b3480156103a457600080fd5b506102e46103b33660046122df565b610af8565b3480156103c457600080fd5b506102e46103d336600461226a565b610b13565b3480156103e457600080fd5b506102e4610b8d565b3480156103f957600080fd5b5061034a61040836600461226a565b610bea565b34801561041957600080fd5b506102e461042836600461232d565b610c7d565b34801561043957600080fd5b506102e46104483660046123d4565b610cc7565b34801561045957600080fd5b50600b546102ac906001600160a01b031681565b34801561047957600080fd5b506102e4610d04565b34801561048e57600080fd5b506102ac61049d36600461226a565b610d4f565b3480156104ae57600080fd5b5061034a600d5481565b3480156104c457600080fd5b5061034a6104d33660046122c4565b610dc6565b3480156104e457600080fd5b506102e4610e4d565b3480156104f957600080fd5b506102e461050836600461241d565b610e83565b34801561051957600080fd5b50600a546001600160a01b03166102ac565b34801561053757600080fd5b506102e461054636600461226a565b610fde565b34801561055757600080fd5b5061027f61100d565b34801561056c57600080fd5b5061034a600c5481565b6102e461058436600461226a565b61101c565b34801561059557600080fd5b506102e46105a4366004612450565b6112ef565b3480156105b557600080fd5b50600c5461034a565b3480156105ca57600080fd5b506102e46105d936600461248c565b6112fa565b3480156105ea57600080fd5b5061027f6105f936600461226a565b611332565b34801561060a57600080fd5b506102e4610619366004612508565b61146f565b34801561062a57600080fd5b506102e46114b9565b34801561063f57600080fd5b50600b5461025590600160a01b900460ff1681565b34801561066057600080fd5b50600e5461066f9061ffff1681565b60405161ffff9091168152602001610261565b34801561068e57600080fd5b506102e461069d3660046123d4565b61151d565b3480156106ae57600080fd5b506102556106bd36600461252b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106f757600080fd5b506102e46107063660046122c4565b61155a565b34801561071757600080fd5b50600e5461066f9062010000900461ffff1681565b60006001600160e01b0319821663780e9d6360e01b14806107515750610751826115f2565b92915050565b60606000805461076690612555565b80601f016020809104026020016040519081016040528092919081815260200182805461079290612555565b80156107df5780601f106107b4576101008083540402835291602001916107df565b820191906000526020600020905b8154815290600101906020018083116107c257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108675760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061088e82610d4f565b9050806001600160a01b0316836001600160a01b031614156108fc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161085e565b336001600160a01b0382161480610918575061091881336106bd565b61098a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161085e565b6109948383611642565b505050565b600a546001600160a01b031633146109c35760405162461bcd60e51b815260040161085e90612590565b6001600160a01b038116610a0e5760405162461bcd60e51b81526020600482015260126024820152712d32b9379030b2323932b9b99032b93937b960711b604482015260640161085e565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b610a3b335b826116b0565b610a575760405162461bcd60e51b815260040161085e906125c5565b6109948383836117a7565b6000610a6d83610dc6565b8210610acf5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161085e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610994838383604051806020016040528060008152506112fa565b610b1c33610a35565b610b815760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b606482015260840161085e565b610b8a81611952565b50565b600a546001600160a01b03163314610bb75760405162461bcd60e51b815260040161085e90612590565b6040514790339082156108fc029083906000818181858888f19350505050158015610be6573d6000803e3d6000fd5b5050565b6000610bf560085490565b8210610c585760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161085e565b60088281548110610c6b57610c6b612616565b90600052602060002001549050919050565b600a546001600160a01b03163314610ca75760405162461bcd60e51b815260040161085e90612590565b600e805461ffff909216620100000263ffff000019909216919091179055565b600a546001600160a01b03163314610cf15760405162461bcd60e51b815260040161085e90612590565b8051610be690600f90602084019061212c565b600a546001600160a01b03163314610d2e5760405162461bcd60e51b815260040161085e90612590565b600b805460ff60a01b198116600160a01b9182900460ff1615909102179055565b6000818152600260205260408120546001600160a01b0316806107515760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161085e565b60006001600160a01b038216610e315760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161085e565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610e775760405162461bcd60e51b815260040161085e90612590565b610e8160006119f9565b565b600a546001600160a01b03163314610ead5760405162461bcd60e51b815260040161085e90612590565b6001600160a01b038216610ef85760405162461bcd60e51b81526020600482015260126024820152712d32b9379030b2323932b9b99032b93937b960711b604482015260640161085e565b600e5461ffff6201000090910481169082161115610f585760405162461bcd60e51b815260206004820152601e60248201527f457863656564732072657365727665642062616269657320737570706c790000604482015260640161085e565b60115461ffff1660005b8261ffff168160ff161015610f8d57610f85848380600101945061ffff16611a4b565b600101610f62565b506011805461ffff191661ffff83811691909117909155600e80548492600291610fbf91859162010000900416612642565b92506101000a81548161ffff021916908361ffff160217905550505050565b600a546001600160a01b031633146110085760405162461bcd60e51b815260040161085e90612590565b600c55565b60606001805461076690612555565b60115461029a9061103290839061ffff16612665565b118015611052575060115461029d9061105090839061ffff16612665565b105b156110d457601154349061029a9061106f90849061ffff16612665565b611079919061267d565b600d546110869190612694565b11156110d45760405162461bcd60e51b815260206004820181905260248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563742e604482015260640161085e565b600b54600160a01b900460ff166111245760405162461bcd60e51b815260206004820152601460248201527326b4b73a34b7339034b9903234b9b0b13632b21760611b604482015260640161085e565b600e5461113d9061ffff62010000820481169116612642565b60115461ffff9182169161115391849116612665565b11156111b25760405162461bcd60e51b815260206004820152602860248201527f416d6f756e742065786365656473206d6178696d756d20737570706c79206f6660448201526710183c2130ba3d1760c11b606482015260840161085e565b600b54600160a81b900460ff168111156112265760405162461bcd60e51b815260206004820152602f60248201527f416d6f756e7420657863656564732063757272656e74206d6178696d756d203060448201526e3c2130ba3d103832b91036b4b73a1760891b606482015260840161085e565b3481600c546112359190612694565b11156112835760405162461bcd60e51b815260206004820181905260248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563742e604482015260640161085e565b60115461ffff1660005b828161ffff1610156112b5576112ad338380600101945061ffff16611a4b565b60010161128d565b506011805461ffff191661ffff831690811790915561029a11610be6575050600d54600c55600b805460ff60a81b1916600560a91b179055565b610be6338383611a65565b61130433836116b0565b6113205760405162461bcd60e51b815260040161085e906125c5565b61132c84848484611b34565b50505050565b6000818152600260205260409020546060906001600160a01b03166113915760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b604482015260640161085e565b600f805461139e90612555565b1515905061143857601080546113b390612555565b80601f01602080910402602001604051908101604052809291908181526020018280546113df90612555565b801561142c5780601f106114015761010080835404028352916020019161142c565b820191906000526020600020905b81548152906001019060200180831161140f57829003601f168201915b50505050509050919050565b600f61144383611b67565b6040516020016114549291906126cf565b6040516020818303038152906040529050919050565b919050565b600a546001600160a01b031633146114995760405162461bcd60e51b815260040161085e90612590565b600b805460ff909216600160a81b0260ff60a81b19909216919091179055565b600a546001600160a01b031633146114e35760405162461bcd60e51b815260040161085e90612590565b600b5460405147916001600160a01b03169082156108fc029083906000818181858888f19350505050158015610be6573d6000803e3d6000fd5b600a546001600160a01b031633146115475760405162461bcd60e51b815260040161085e90612590565b8051610be690601090602084019061212c565b600a546001600160a01b031633146115845760405162461bcd60e51b815260040161085e90612590565b6001600160a01b0381166115e95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161085e565b610b8a816119f9565b60006001600160e01b031982166380ac58cd60e01b148061162357506001600160e01b03198216635b5e139f60e01b145b8061075157506301ffc9a760e01b6001600160e01b0319831614610751565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061167782610d4f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117295760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161085e565b600061173483610d4f565b9050806001600160a01b0316846001600160a01b0316148061176f5750836001600160a01b0316611764846107e9565b6001600160a01b0316145b8061179f57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166117ba82610d4f565b6001600160a01b0316146118225760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161085e565b6001600160a01b0382166118845760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161085e565b61188f838383611c65565b61189a600082611642565b6001600160a01b03831660009081526003602052604081208054600192906118c390849061267d565b90915550506001600160a01b03821660009081526003602052604081208054600192906118f1908490612665565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061195d82610d4f565b905061196b81600084611c65565b611976600083611642565b6001600160a01b038116600090815260036020526040812080546001929061199f90849061267d565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610be6828260405180602001604052806000815250611d1d565b816001600160a01b0316836001600160a01b03161415611ac75760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161085e565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611b3f8484846117a7565b611b4b84848484611d50565b61132c5760405162461bcd60e51b815260040161085e90612776565b606081611b8b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611bb55780611b9f816127c8565b9150611bae9050600a836127f9565b9150611b8f565b60008167ffffffffffffffff811115611bd057611bd0612348565b6040519080825280601f01601f191660200182016040528015611bfa576020820181803683370190505b5090505b841561179f57611c0f60018361267d565b9150611c1c600a8661280d565b611c27906030612665565b60f81b818381518110611c3c57611c3c612616565b60200101906001600160f81b031916908160001a905350611c5e600a866127f9565b9450611bfe565b6001600160a01b038316611cc057611cbb81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611ce3565b816001600160a01b0316836001600160a01b031614611ce357611ce38382611e4e565b6001600160a01b038216611cfa5761099481611eeb565b826001600160a01b0316826001600160a01b031614610994576109948282611f9a565b611d278383611fde565b611d346000848484611d50565b6109945760405162461bcd60e51b815260040161085e90612776565b60006001600160a01b0384163b15611e4357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d94903390899088908890600401612821565b6020604051808303816000875af1925050508015611dcf575060408051601f3d908101601f19168201909252611dcc9181019061285e565b60015b611e29573d808015611dfd576040519150601f19603f3d011682016040523d82523d6000602084013e611e02565b606091505b508051611e215760405162461bcd60e51b815260040161085e90612776565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061179f565b506001949350505050565b60006001611e5b84610dc6565b611e65919061267d565b600083815260076020526040902054909150808214611eb8576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611efd9060019061267d565b60008381526009602052604081205460088054939450909284908110611f2557611f25612616565b906000526020600020015490508060088381548110611f4657611f46612616565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611f7e57611f7e61287b565b6001900381819060005260206000200160009055905550505050565b6000611fa583610dc6565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166120345760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161085e565b6000818152600260205260409020546001600160a01b0316156120995760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161085e565b6120a560008383611c65565b6001600160a01b03821660009081526003602052604081208054600192906120ce908490612665565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461213890612555565b90600052602060002090601f01602090048101928261215a57600085556121a0565b82601f1061217357805160ff19168380011785556121a0565b828001600101855582156121a0579182015b828111156121a0578251825591602001919060010190612185565b506121ac9291506121b0565b5090565b5b808211156121ac57600081556001016121b1565b6001600160e01b031981168114610b8a57600080fd5b6000602082840312156121ed57600080fd5b81356121f8816121c5565b9392505050565b60005b8381101561221a578181015183820152602001612202565b8381111561132c5750506000910152565b600081518084526122438160208601602086016121ff565b601f01601f19169290920160200192915050565b6020815260006121f8602083018461222b565b60006020828403121561227c57600080fd5b5035919050565b80356001600160a01b038116811461146a57600080fd5b600080604083850312156122ad57600080fd5b6122b683612283565b946020939093013593505050565b6000602082840312156122d657600080fd5b6121f882612283565b6000806000606084860312156122f457600080fd5b6122fd84612283565b925061230b60208501612283565b9150604084013590509250925092565b803561ffff8116811461146a57600080fd5b60006020828403121561233f57600080fd5b6121f88261231b565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561237957612379612348565b604051601f8501601f19908116603f011681019082821181831017156123a1576123a1612348565b816040528093508581528686860111156123ba57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156123e657600080fd5b813567ffffffffffffffff8111156123fd57600080fd5b8201601f8101841361240e57600080fd5b61179f8482356020840161235e565b6000806040838503121561243057600080fd5b61243983612283565b91506124476020840161231b565b90509250929050565b6000806040838503121561246357600080fd5b61246c83612283565b91506020830135801515811461248157600080fd5b809150509250929050565b600080600080608085870312156124a257600080fd5b6124ab85612283565b93506124b960208601612283565b925060408501359150606085013567ffffffffffffffff8111156124dc57600080fd5b8501601f810187136124ed57600080fd5b6124fc8782356020840161235e565b91505092959194509250565b60006020828403121561251a57600080fd5b813560ff811681146121f857600080fd5b6000806040838503121561253e57600080fd5b61254783612283565b915061244760208401612283565b600181811c9082168061256957607f821691505b6020821081141561258a57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600061ffff8381169083168181101561265d5761265d61262c565b039392505050565b600082198211156126785761267861262c565b500190565b60008282101561268f5761268f61262c565b500390565b60008160001904831182151516156126ae576126ae61262c565b500290565b600081516126c58185602086016121ff565b9290920192915050565b600080845481600182811c9150808316806126eb57607f831692505b602080841082141561270b57634e487b7160e01b86526022600452602486fd5b81801561271f57600181146127305761275d565b60ff1986168952848901965061275d565b60008b81526020902060005b868110156127555781548b82015290850190830161273c565b505084890196505b50505050505061276d81856126b3565b95945050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60006000198214156127dc576127dc61262c565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082612808576128086127e3565b500490565b60008261281c5761281c6127e3565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128549083018461222b565b9695505050505050565b60006020828403121561287057600080fd5b81516121f8816121c5565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220f685e6b3c9b6e9ab8e75625886bc58a8c9edec6cb47363ccd511632d8ff8c4d364736f6c634300080a0033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000842835a3d317e38f18619b7dadf5cd5ad60e4690000000000000000000000000000000000000000000000000000000000000000630784261747a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000630784261747a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5a46704542574e473877774a38764e68716348567131334745685869486a387a434b55776e4b416a3850504600000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102305760003560e01c806370a082311161012e578063b88d4fde116100ab578063d5abeb011161006f578063d5abeb0114610654578063da1b9e0814610682578063e985e9c5146106a2578063f2fde38b146106eb578063fe60d12c1461070b57600080fd5b8063b88d4fde146105be578063c87b56dd146105de578063cb6f238d146105fe578063cfbb7d361461061e578063d12397301461063357600080fd5b806395d89b41116100f257806395d89b411461054b578063a035b1fe14610560578063a0712d6814610576578063a22cb46514610589578063a7f93ebd146105a957600080fd5b806370a08231146104b8578063715018a6146104d857806372c19498146104ed5780638da5cb5b1461050d57806391b7f5ed1461052b57600080fd5b806342842e0e116101bc57806355f804b31161018057806355f804b31461042d578063599270441461044d57806361f5baeb1461046d5780636352211e146104825780636817c76c146104a257600080fd5b806342842e0e1461039857806342966c68146103b85780634311de8f146103d85780634f6ccce7146103ed578063523907731461040d57600080fd5b80630ed62b02116102035780630ed62b02146102e65780631525ff7d1461031957806318160ddd1461033957806323b872dd146103585780632f745c591461037857600080fd5b806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c578063095ea7b3146102c4575b600080fd5b34801561024157600080fd5b506102556102503660046121db565b61072c565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f610757565b6040516102619190612257565b34801561029857600080fd5b506102ac6102a736600461226a565b6107e9565b6040516001600160a01b039091168152602001610261565b3480156102d057600080fd5b506102e46102df36600461229a565b610883565b005b3480156102f257600080fd5b50600b5461030790600160a81b900460ff1681565b60405160ff9091168152602001610261565b34801561032557600080fd5b506102e46103343660046122c4565b610999565b34801561034557600080fd5b506008545b604051908152602001610261565b34801561036457600080fd5b506102e46103733660046122df565b610a30565b34801561038457600080fd5b5061034a61039336600461229a565b610a62565b3480156103a457600080fd5b506102e46103b33660046122df565b610af8565b3480156103c457600080fd5b506102e46103d336600461226a565b610b13565b3480156103e457600080fd5b506102e4610b8d565b3480156103f957600080fd5b5061034a61040836600461226a565b610bea565b34801561041957600080fd5b506102e461042836600461232d565b610c7d565b34801561043957600080fd5b506102e46104483660046123d4565b610cc7565b34801561045957600080fd5b50600b546102ac906001600160a01b031681565b34801561047957600080fd5b506102e4610d04565b34801561048e57600080fd5b506102ac61049d36600461226a565b610d4f565b3480156104ae57600080fd5b5061034a600d5481565b3480156104c457600080fd5b5061034a6104d33660046122c4565b610dc6565b3480156104e457600080fd5b506102e4610e4d565b3480156104f957600080fd5b506102e461050836600461241d565b610e83565b34801561051957600080fd5b50600a546001600160a01b03166102ac565b34801561053757600080fd5b506102e461054636600461226a565b610fde565b34801561055757600080fd5b5061027f61100d565b34801561056c57600080fd5b5061034a600c5481565b6102e461058436600461226a565b61101c565b34801561059557600080fd5b506102e46105a4366004612450565b6112ef565b3480156105b557600080fd5b50600c5461034a565b3480156105ca57600080fd5b506102e46105d936600461248c565b6112fa565b3480156105ea57600080fd5b5061027f6105f936600461226a565b611332565b34801561060a57600080fd5b506102e4610619366004612508565b61146f565b34801561062a57600080fd5b506102e46114b9565b34801561063f57600080fd5b50600b5461025590600160a01b900460ff1681565b34801561066057600080fd5b50600e5461066f9061ffff1681565b60405161ffff9091168152602001610261565b34801561068e57600080fd5b506102e461069d3660046123d4565b61151d565b3480156106ae57600080fd5b506102556106bd36600461252b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106f757600080fd5b506102e46107063660046122c4565b61155a565b34801561071757600080fd5b50600e5461066f9062010000900461ffff1681565b60006001600160e01b0319821663780e9d6360e01b14806107515750610751826115f2565b92915050565b60606000805461076690612555565b80601f016020809104026020016040519081016040528092919081815260200182805461079290612555565b80156107df5780601f106107b4576101008083540402835291602001916107df565b820191906000526020600020905b8154815290600101906020018083116107c257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108675760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061088e82610d4f565b9050806001600160a01b0316836001600160a01b031614156108fc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161085e565b336001600160a01b0382161480610918575061091881336106bd565b61098a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161085e565b6109948383611642565b505050565b600a546001600160a01b031633146109c35760405162461bcd60e51b815260040161085e90612590565b6001600160a01b038116610a0e5760405162461bcd60e51b81526020600482015260126024820152712d32b9379030b2323932b9b99032b93937b960711b604482015260640161085e565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b610a3b335b826116b0565b610a575760405162461bcd60e51b815260040161085e906125c5565b6109948383836117a7565b6000610a6d83610dc6565b8210610acf5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161085e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610994838383604051806020016040528060008152506112fa565b610b1c33610a35565b610b815760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b606482015260840161085e565b610b8a81611952565b50565b600a546001600160a01b03163314610bb75760405162461bcd60e51b815260040161085e90612590565b6040514790339082156108fc029083906000818181858888f19350505050158015610be6573d6000803e3d6000fd5b5050565b6000610bf560085490565b8210610c585760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161085e565b60088281548110610c6b57610c6b612616565b90600052602060002001549050919050565b600a546001600160a01b03163314610ca75760405162461bcd60e51b815260040161085e90612590565b600e805461ffff909216620100000263ffff000019909216919091179055565b600a546001600160a01b03163314610cf15760405162461bcd60e51b815260040161085e90612590565b8051610be690600f90602084019061212c565b600a546001600160a01b03163314610d2e5760405162461bcd60e51b815260040161085e90612590565b600b805460ff60a01b198116600160a01b9182900460ff1615909102179055565b6000818152600260205260408120546001600160a01b0316806107515760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161085e565b60006001600160a01b038216610e315760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161085e565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610e775760405162461bcd60e51b815260040161085e90612590565b610e8160006119f9565b565b600a546001600160a01b03163314610ead5760405162461bcd60e51b815260040161085e90612590565b6001600160a01b038216610ef85760405162461bcd60e51b81526020600482015260126024820152712d32b9379030b2323932b9b99032b93937b960711b604482015260640161085e565b600e5461ffff6201000090910481169082161115610f585760405162461bcd60e51b815260206004820152601e60248201527f457863656564732072657365727665642062616269657320737570706c790000604482015260640161085e565b60115461ffff1660005b8261ffff168160ff161015610f8d57610f85848380600101945061ffff16611a4b565b600101610f62565b506011805461ffff191661ffff83811691909117909155600e80548492600291610fbf91859162010000900416612642565b92506101000a81548161ffff021916908361ffff160217905550505050565b600a546001600160a01b031633146110085760405162461bcd60e51b815260040161085e90612590565b600c55565b60606001805461076690612555565b60115461029a9061103290839061ffff16612665565b118015611052575060115461029d9061105090839061ffff16612665565b105b156110d457601154349061029a9061106f90849061ffff16612665565b611079919061267d565b600d546110869190612694565b11156110d45760405162461bcd60e51b815260206004820181905260248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563742e604482015260640161085e565b600b54600160a01b900460ff166111245760405162461bcd60e51b815260206004820152601460248201527326b4b73a34b7339034b9903234b9b0b13632b21760611b604482015260640161085e565b600e5461113d9061ffff62010000820481169116612642565b60115461ffff9182169161115391849116612665565b11156111b25760405162461bcd60e51b815260206004820152602860248201527f416d6f756e742065786365656473206d6178696d756d20737570706c79206f6660448201526710183c2130ba3d1760c11b606482015260840161085e565b600b54600160a81b900460ff168111156112265760405162461bcd60e51b815260206004820152602f60248201527f416d6f756e7420657863656564732063757272656e74206d6178696d756d203060448201526e3c2130ba3d103832b91036b4b73a1760891b606482015260840161085e565b3481600c546112359190612694565b11156112835760405162461bcd60e51b815260206004820181905260248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563742e604482015260640161085e565b60115461ffff1660005b828161ffff1610156112b5576112ad338380600101945061ffff16611a4b565b60010161128d565b506011805461ffff191661ffff831690811790915561029a11610be6575050600d54600c55600b805460ff60a81b1916600560a91b179055565b610be6338383611a65565b61130433836116b0565b6113205760405162461bcd60e51b815260040161085e906125c5565b61132c84848484611b34565b50505050565b6000818152600260205260409020546060906001600160a01b03166113915760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b604482015260640161085e565b600f805461139e90612555565b1515905061143857601080546113b390612555565b80601f01602080910402602001604051908101604052809291908181526020018280546113df90612555565b801561142c5780601f106114015761010080835404028352916020019161142c565b820191906000526020600020905b81548152906001019060200180831161140f57829003601f168201915b50505050509050919050565b600f61144383611b67565b6040516020016114549291906126cf565b6040516020818303038152906040529050919050565b919050565b600a546001600160a01b031633146114995760405162461bcd60e51b815260040161085e90612590565b600b805460ff909216600160a81b0260ff60a81b19909216919091179055565b600a546001600160a01b031633146114e35760405162461bcd60e51b815260040161085e90612590565b600b5460405147916001600160a01b03169082156108fc029083906000818181858888f19350505050158015610be6573d6000803e3d6000fd5b600a546001600160a01b031633146115475760405162461bcd60e51b815260040161085e90612590565b8051610be690601090602084019061212c565b600a546001600160a01b031633146115845760405162461bcd60e51b815260040161085e90612590565b6001600160a01b0381166115e95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161085e565b610b8a816119f9565b60006001600160e01b031982166380ac58cd60e01b148061162357506001600160e01b03198216635b5e139f60e01b145b8061075157506301ffc9a760e01b6001600160e01b0319831614610751565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061167782610d4f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117295760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161085e565b600061173483610d4f565b9050806001600160a01b0316846001600160a01b0316148061176f5750836001600160a01b0316611764846107e9565b6001600160a01b0316145b8061179f57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166117ba82610d4f565b6001600160a01b0316146118225760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161085e565b6001600160a01b0382166118845760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161085e565b61188f838383611c65565b61189a600082611642565b6001600160a01b03831660009081526003602052604081208054600192906118c390849061267d565b90915550506001600160a01b03821660009081526003602052604081208054600192906118f1908490612665565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061195d82610d4f565b905061196b81600084611c65565b611976600083611642565b6001600160a01b038116600090815260036020526040812080546001929061199f90849061267d565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610be6828260405180602001604052806000815250611d1d565b816001600160a01b0316836001600160a01b03161415611ac75760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161085e565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611b3f8484846117a7565b611b4b84848484611d50565b61132c5760405162461bcd60e51b815260040161085e90612776565b606081611b8b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611bb55780611b9f816127c8565b9150611bae9050600a836127f9565b9150611b8f565b60008167ffffffffffffffff811115611bd057611bd0612348565b6040519080825280601f01601f191660200182016040528015611bfa576020820181803683370190505b5090505b841561179f57611c0f60018361267d565b9150611c1c600a8661280d565b611c27906030612665565b60f81b818381518110611c3c57611c3c612616565b60200101906001600160f81b031916908160001a905350611c5e600a866127f9565b9450611bfe565b6001600160a01b038316611cc057611cbb81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611ce3565b816001600160a01b0316836001600160a01b031614611ce357611ce38382611e4e565b6001600160a01b038216611cfa5761099481611eeb565b826001600160a01b0316826001600160a01b031614610994576109948282611f9a565b611d278383611fde565b611d346000848484611d50565b6109945760405162461bcd60e51b815260040161085e90612776565b60006001600160a01b0384163b15611e4357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611d94903390899088908890600401612821565b6020604051808303816000875af1925050508015611dcf575060408051601f3d908101601f19168201909252611dcc9181019061285e565b60015b611e29573d808015611dfd576040519150601f19603f3d011682016040523d82523d6000602084013e611e02565b606091505b508051611e215760405162461bcd60e51b815260040161085e90612776565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061179f565b506001949350505050565b60006001611e5b84610dc6565b611e65919061267d565b600083815260076020526040902054909150808214611eb8576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611efd9060019061267d565b60008381526009602052604081205460088054939450909284908110611f2557611f25612616565b906000526020600020015490508060088381548110611f4657611f46612616565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611f7e57611f7e61287b565b6001900381819060005260206000200160009055905550505050565b6000611fa583610dc6565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166120345760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161085e565b6000818152600260205260409020546001600160a01b0316156120995760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161085e565b6120a560008383611c65565b6001600160a01b03821660009081526003602052604081208054600192906120ce908490612665565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461213890612555565b90600052602060002090601f01602090048101928261215a57600085556121a0565b82601f1061217357805160ff19168380011785556121a0565b828001600101855582156121a0579182015b828111156121a0578251825591602001919060010190612185565b506121ac9291506121b0565b5090565b5b808211156121ac57600081556001016121b1565b6001600160e01b031981168114610b8a57600080fd5b6000602082840312156121ed57600080fd5b81356121f8816121c5565b9392505050565b60005b8381101561221a578181015183820152602001612202565b8381111561132c5750506000910152565b600081518084526122438160208601602086016121ff565b601f01601f19169290920160200192915050565b6020815260006121f8602083018461222b565b60006020828403121561227c57600080fd5b5035919050565b80356001600160a01b038116811461146a57600080fd5b600080604083850312156122ad57600080fd5b6122b683612283565b946020939093013593505050565b6000602082840312156122d657600080fd5b6121f882612283565b6000806000606084860312156122f457600080fd5b6122fd84612283565b925061230b60208501612283565b9150604084013590509250925092565b803561ffff8116811461146a57600080fd5b60006020828403121561233f57600080fd5b6121f88261231b565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561237957612379612348565b604051601f8501601f19908116603f011681019082821181831017156123a1576123a1612348565b816040528093508581528686860111156123ba57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156123e657600080fd5b813567ffffffffffffffff8111156123fd57600080fd5b8201601f8101841361240e57600080fd5b61179f8482356020840161235e565b6000806040838503121561243057600080fd5b61243983612283565b91506124476020840161231b565b90509250929050565b6000806040838503121561246357600080fd5b61246c83612283565b91506020830135801515811461248157600080fd5b809150509250929050565b600080600080608085870312156124a257600080fd5b6124ab85612283565b93506124b960208601612283565b925060408501359150606085013567ffffffffffffffff8111156124dc57600080fd5b8501601f810187136124ed57600080fd5b6124fc8782356020840161235e565b91505092959194509250565b60006020828403121561251a57600080fd5b813560ff811681146121f857600080fd5b6000806040838503121561253e57600080fd5b61254783612283565b915061244760208401612283565b600181811c9082168061256957607f821691505b6020821081141561258a57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600061ffff8381169083168181101561265d5761265d61262c565b039392505050565b600082198211156126785761267861262c565b500190565b60008282101561268f5761268f61262c565b500390565b60008160001904831182151516156126ae576126ae61262c565b500290565b600081516126c58185602086016121ff565b9290920192915050565b600080845481600182811c9150808316806126eb57607f831692505b602080841082141561270b57634e487b7160e01b86526022600452602486fd5b81801561271f57600181146127305761275d565b60ff1986168952848901965061275d565b60008b81526020902060005b868110156127555781548b82015290850190830161273c565b505084890196505b50505050505061276d81856126b3565b95945050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60006000198214156127dc576127dc61262c565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082612808576128086127e3565b500490565b60008261281c5761281c6127e3565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906128549083018461222b565b9695505050505050565b60006020828403121561287057600080fd5b81516121f8816121c5565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220f685e6b3c9b6e9ab8e75625886bc58a8c9edec6cb47363ccd511632d8ff8c4d364736f6c634300080a0033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000842835a3d317e38f18619b7dadf5cd5ad60e4690000000000000000000000000000000000000000000000000000000000000000630784261747a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000630784261747a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5a46704542574e473877774a38764e68716348567131334745685869486a387a434b55776e4b416a3850504600000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): 0xBatz
Arg [1] : symbol (string): 0xBatz
Arg [2] : _defaultURI (string): https://gateway.pinata.cloud/ipfs/QmZFpEBWNG8wwJ8vNhqcHVq13GEhXiHj8zCKUwnKAj8PPF
Arg [3] : _teamWallet (address): 0x842835A3d317e38f18619b7Dadf5CD5aD60e4690

-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 000000000000000000000000842835a3d317e38f18619b7dadf5cd5ad60e4690
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [5] : 30784261747a0000000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [7] : 30784261747a0000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000050
Arg [9] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [10] : 732f516d5a46704542574e473877774a38764e68716348567131334745685869
Arg [11] : 486a387a434b55776e4b416a3850504600000000000000000000000000000000


Deployed Bytecode Sourcemap

44461:4871:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35714:224;;;;;;;;;;-1:-1:-1;35714:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;35714:224:0;;;;;;;;22139:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23698:221::-;;;;;;;;;;-1:-1:-1;23698:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1714:32:1;;;1696:51;;1684:2;1669:18;23698:221:0;1550:203:1;23221:411:0;;;;;;;;;;-1:-1:-1;23221:411:0;;;;;:::i;:::-;;:::i;:::-;;44642:24;;;;;;;;;;-1:-1:-1;44642:24:0;;;;-1:-1:-1;;;44642:24:0;;;;;;;;;2367:4:1;2355:17;;;2337:36;;2325:2;2310:18;44642:24:0;2195:184:1;48540:165:0;;;;;;;;;;-1:-1:-1;48540:165:0;;;;;:::i;:::-;;:::i;36354:113::-;;;;;;;;;;-1:-1:-1;36442:10:0;:17;36354:113;;;2721:25:1;;;2709:2;2694:18;36354:113:0;2575:177:1;24448:339:0;;;;;;;;;;-1:-1:-1;24448:339:0;;;;;:::i;:::-;;:::i;36022:256::-;;;;;;;;;;-1:-1:-1;36022:256:0;;;;;:::i;:::-;;:::i;24858:185::-;;;;;;;;;;-1:-1:-1;24858:185:0;;;;;:::i;:::-;;:::i;49090:237::-;;;;;;;;;;-1:-1:-1;49090:237:0;;;;;:::i;:::-;;:::i;45317:142::-;;;;;;;;;;;;;:::i;36544:233::-;;;;;;;;;;-1:-1:-1;36544:233:0;;;;;:::i;:::-;;:::i;48311:91::-;;;;;;;;;;-1:-1:-1;48311:91:0;;;;;:::i;:::-;;:::i;47926:94::-;;;;;;;;;;-1:-1:-1;47926:94:0;;;;;:::i;:::-;;:::i;44576:25::-;;;;;;;;;;-1:-1:-1;44576:25:0;;;;-1:-1:-1;;;;;44576:25:0;;;47645:87;;;;;;;;;;;;;:::i;21833:239::-;;;;;;;;;;-1:-1:-1;21833:239:0;;;;;:::i;:::-;;:::i;44706:36::-;;;;;;;;;;;;;;;;21563:208;;;;;;;;;;-1:-1:-1;21563:208:0;;;;;:::i;:::-;;:::i;43573:103::-;;;;;;;;;;;;;:::i;46811:437::-;;;;;;;;;;-1:-1:-1;46811:437:0;;;;;:::i;:::-;;:::i;42922:87::-;;;;;;;;;;-1:-1:-1;42995:6:0;;-1:-1:-1;;;;;42995:6:0;42922:87;;47370:84;;;;;;;;;;-1:-1:-1;47370:84:0;;;;;:::i;:::-;;:::i;22308:104::-;;;;;;;;;;;;;:::i;44671:30::-;;;;;;;;;;;;;;;;45817:842;;;;;;:::i;:::-;;:::i;23991:155::-;;;;;;;;;;-1:-1:-1;23991:155:0;;;;;:::i;:::-;;:::i;47507:81::-;;;;;;;;;;-1:-1:-1;47577:5:0;;47507:81;;25114:328;;;;;;;;;;-1:-1:-1;25114:328:0;;;;;:::i;:::-;;:::i;48711:373::-;;;;;;;;;;-1:-1:-1;48711:373:0;;;;;:::i;:::-;;:::i;47792:86::-;;;;;;;;;;-1:-1:-1;47792:86:0;;;;;:::i;:::-;;:::i;45518:141::-;;;;;;;;;;;;;:::i;44606:31::-;;;;;;;;;;-1:-1:-1;44606:31:0;;;;-1:-1:-1;;;44606:31:0;;;;;;44747:30;;;;;;;;;;-1:-1:-1;44747:30:0;;;;;;;;;;;6403:6:1;6391:19;;;6373:38;;6361:2;6346:18;44747:30:0;6229:188:1;48073:106:0;;;;;;;;;;-1:-1:-1;48073:106:0;;;;;:::i;:::-;;:::i;24217:164::-;;;;;;;;;;-1:-1:-1;24217:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24338:25:0;;;24314:4;24338:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24217:164;43831:201;;;;;;;;;;-1:-1:-1;43831:201:0;;;;;:::i;:::-;;:::i;44782:28::-;;;;;;;;;;-1:-1:-1;44782:28:0;;;;;;;;;;;35714:224;35816:4;-1:-1:-1;;;;;;35840:50:0;;-1:-1:-1;;;35840:50:0;;:90;;;35894:36;35918:11;35894:23;:36::i;:::-;35833:97;35714:224;-1:-1:-1;;35714:224:0:o;22139:100::-;22193:13;22226:5;22219:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22139:100;:::o;23698:221::-;23774:7;27041:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27041:16:0;23794:73;;;;-1:-1:-1;;;23794:73:0;;7274:2:1;23794:73:0;;;7256:21:1;7313:2;7293:18;;;7286:30;7352:34;7332:18;;;7325:62;-1:-1:-1;;;7403:18:1;;;7396:42;7455:19;;23794:73:0;;;;;;;;;-1:-1:-1;23887:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23887:24:0;;23698:221::o;23221:411::-;23302:13;23318:23;23333:7;23318:14;:23::i;:::-;23302:39;;23366:5;-1:-1:-1;;;;;23360:11:0;:2;-1:-1:-1;;;;;23360:11:0;;;23352:57;;;;-1:-1:-1;;;23352:57:0;;7687:2:1;23352:57:0;;;7669:21:1;7726:2;7706:18;;;7699:30;7765:34;7745:18;;;7738:62;-1:-1:-1;;;7816:18:1;;;7809:31;7857:19;;23352:57:0;7485:397:1;23352:57:0;16521:10;-1:-1:-1;;;;;23444:21:0;;;;:62;;-1:-1:-1;23469:37:0;23486:5;16521:10;24217:164;:::i;23469:37::-;23422:168;;;;-1:-1:-1;;;23422:168:0;;8089:2:1;23422:168:0;;;8071:21:1;8128:2;8108:18;;;8101:30;8167:34;8147:18;;;8140:62;8238:26;8218:18;;;8211:54;8282:19;;23422:168:0;7887:420:1;23422:168:0;23603:21;23612:2;23616:7;23603:8;:21::i;:::-;23291:341;23221:411;;:::o;48540:165::-;42995:6;;-1:-1:-1;;;;;42995:6:0;16521:10;43142:23;43134:68;;;;-1:-1:-1;;;43134:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;48618:25:0;::::1;48610:56;;;::::0;-1:-1:-1;;;48610:56:0;;8875:2:1;48610:56:0::1;::::0;::::1;8857:21:1::0;8914:2;8894:18;;;8887:30;-1:-1:-1;;;8933:18:1;;;8926:48;8991:18;;48610:56:0::1;8673:342:1::0;48610:56:0::1;48675:10;:24:::0;;-1:-1:-1;;;;;;48675:24:0::1;-1:-1:-1::0;;;;;48675:24:0;;;::::1;::::0;;;::::1;::::0;;48540:165::o;24448:339::-;24643:41;16521:10;24662:12;24676:7;24643:18;:41::i;:::-;24635:103;;;;-1:-1:-1;;;24635:103:0;;;;;;;:::i;:::-;24751:28;24761:4;24767:2;24771:7;24751:9;:28::i;36022:256::-;36119:7;36155:23;36172:5;36155:16;:23::i;:::-;36147:5;:31;36139:87;;;;-1:-1:-1;;;36139:87:0;;9640:2:1;36139:87:0;;;9622:21:1;9679:2;9659:18;;;9652:30;9718:34;9698:18;;;9691:62;-1:-1:-1;;;9769:18:1;;;9762:41;9820:19;;36139:87:0;9438:407:1;36139:87:0;-1:-1:-1;;;;;;36244:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;36022:256::o;24858:185::-;24996:39;25013:4;25019:2;25023:7;24996:39;;;;;;;;;;;;:16;:39::i;49090:237::-;49204:41;16521:10;49223:12;16441:98;49204:41;49196:102;;;;-1:-1:-1;;;49196:102:0;;10052:2:1;49196:102:0;;;10034:21:1;10091:2;10071:18;;;10064:30;10130:34;10110:18;;;10103:62;-1:-1:-1;;;10181:18:1;;;10174:46;10237:19;;49196:102:0;9850:412:1;49196:102:0;49307:14;49313:7;49307:5;:14::i;:::-;49090:237;:::o;45317:142::-;42995:6;;-1:-1:-1;;;;;42995:6:0;16521:10;43142:23;43134:68;;;;-1:-1:-1;;;43134:68:0;;;;;;;:::i;:::-;45416:37:::1;::::0;45386:21:::1;::::0;45424:10:::1;::::0;45416:37;::::1;;;::::0;45386:21;;45368:15:::1;45416:37:::0;45368:15;45416:37;45386:21;45424:10;45416:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;45359:100;45317:142::o:0;36544:233::-;36619:7;36655:30;36442:10;:17;;36354:113;36655:30;36647:5;:38;36639:95;;;;-1:-1:-1;;;36639:95:0;;10469:2:1;36639:95:0;;;10451:21:1;10508:2;10488:18;;;10481:30;10547:34;10527:18;;;10520:62;-1:-1:-1;;;10598:18:1;;;10591:42;10650:19;;36639:95:0;10267:408:1;36639:95:0;36752:10;36763:5;36752:17;;;;;;;;:::i;:::-;;;;;;;;;36745:24;;36544:233;;;:::o;48311:91::-;42995:6;;-1:-1:-1;;;;;42995:6:0;16521:10;43142:23;43134:68;;;;-1:-1:-1;;;43134:68:0;;;;;;;:::i;:::-;48376:8:::1;:20:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;48376:20:0;;::::1;::::0;;;::::1;::::0;;48311:91::o;47926:94::-;42995:6;;-1:-1:-1;;;;;42995:6:0;16521:10;43142:23;43134:68;;;;-1:-1:-1;;;43134:68:0;;;;;;;:::i;:::-;47996:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;47645:87::-:0;42995:6;;-1:-1:-1;;;;;42995:6:0;16521:10;43142:23;43134:68;;;;-1:-1:-1;;;43134:68:0;;;;;;;:::i;:::-;47715:11:::1;::::0;;-1:-1:-1;;;;47700:26:0;::::1;-1:-1:-1::0;;;47715:11:0;;;::::1;;;47714:12;47700:26:::0;;::::1;;::::0;;47645:87::o;21833:239::-;21905:7;21941:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21941:16:0;21976:19;21968:73;;;;-1:-1:-1;;;21968:73:0;;11014:2:1;21968:73:0;;;10996:21:1;11053:2;11033:18;;;11026:30;11092:34;11072:18;;;11065:62;-1:-1:-1;;;11143:18:1;;;11136:39;11192:19;;21968:73:0;10812:405:1;21563:208:0;21635:7;-1:-1:-1;;;;;21663:19:0;;21655:74;;;;-1:-1:-1;;;21655:74:0;;11424:2:1;21655:74:0;;;11406:21:1;11463:2;11443:18;;;11436:30;11502:34;11482:18;;;11475:62;-1:-1:-1;;;11553:18:1;;;11546:40;11603:19;;21655:74:0;11222:406:1;21655:74:0;-1:-1:-1;;;;;;21747:16:0;;;;;:9;:16;;;;;;;21563:208::o;43573:103::-;42995:6;;-1:-1:-1;;;;;42995:6:0;16521:10;43142:23;43134:68;;;;-1:-1:-1;;;43134:68:0;;;;;;;:::i;:::-;43638:30:::1;43665:1;43638:18;:30::i;:::-;43573:103::o:0;46811:437::-;42995:6;;-1:-1:-1;;;;;42995:6:0;16521:10;43142:23;43134:68;;;;-1:-1:-1;;;43134:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46919:18:0;::::1;46910:50;;;::::0;-1:-1:-1;;;46910:50:0;;8875:2:1;46910:50:0::1;::::0;::::1;8857:21:1::0;8914:2;8894:18;;;8887:30;-1:-1:-1;;;8933:18:1;;;8926:48;8991:18;;46910:50:0::1;8673:342:1::0;46910:50:0::1;46989:8;::::0;::::1;::::0;;;::::1;::::0;::::1;46978:19:::0;;::::1;;;46969:63;;;::::0;-1:-1:-1;;;46969:63:0;;11835:2:1;46969:63:0::1;::::0;::::1;11817:21:1::0;11874:2;11854:18;;;11847:30;11913:32;11893:18;;;11886:60;11963:18;;46969:63:0::1;11633:354:1::0;46969:63:0::1;47057:7;::::0;::::1;;47041:13;47094:87;47116:7;47112:11;;:1;:11;;;47094:87;;;47145:24;47155:3;47160:8;;;;;;47145:24;;:9;:24::i;:::-;47125:3;;47094:87;;;-1:-1:-1::0;47198:7:0::1;:16:::0;;-1:-1:-1;;47198:16:0::1;;::::0;;::::1;::::0;;;::::1;::::0;;;47223:8:::1;:19:::0;;47235:7;;47223:8:::1;::::0;:19:::1;::::0;47235:7;;47223:19;;::::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;46901:347;46811:437:::0;;:::o;47370:84::-;42995:6;;-1:-1:-1;;;;;42995:6:0;16521:10;43142:23;43134:68;;;;-1:-1:-1;;;43134:68:0;;;;;;;:::i;:::-;47432:5:::1;:16:::0;47370:84::o;22308:104::-;22364:13;22397:7;22390:14;;;;;:::i;45817:842::-;45876:7;;45895:3;;45876:16;;45886:6;;45876:7;;:16;:::i;:::-;:22;45875:52;;;;-1:-1:-1;45904:7:0;;45923:3;;45904:16;;45914:6;;45904:7;;:16;:::i;:::-;:22;45875:52;45871:173;;;45961:7;;45988:9;;45980:3;;45961:16;;45971:6;;45961:7;;:16;:::i;:::-;:22;;;;:::i;:::-;45948:9;;:36;;;;:::i;:::-;:49;;45940:94;;;;-1:-1:-1;;;45940:94:0;;12984:2:1;45940:94:0;;;12966:21:1;;;13003:18;;;12996:30;13062:34;13042:18;;;13035:62;13114:18;;45940:94:0;12782:356:1;45940:94:0;46060:11;;-1:-1:-1;;;46060:11:0;;;;46052:44;;;;-1:-1:-1;;;46052:44:0;;13345:2:1;46052:44:0;;;13327:21:1;13384:2;13364:18;;;13357:30;-1:-1:-1;;;13403:18:1;;;13396:50;13463:18;;46052:44:0;13143:344:1;46052:44:0;46145:8;;46133:20;;46145:8;;;;;;;46133:9;:20;:::i;:::-;46113:7;;:40;;;;;:16;;46123:6;;46113:7;:16;:::i;:::-;:40;;46105:93;;;;-1:-1:-1;;;46105:93:0;;13694:2:1;46105:93:0;;;13676:21:1;13733:2;13713:18;;;13706:30;13772:34;13752:18;;;13745:62;-1:-1:-1;;;13823:18:1;;;13816:38;13871:19;;46105:93:0;13492:404:1;46105:93:0;46225:7;;-1:-1:-1;;;46225:7:0;;;;46215:17;;;46207:77;;;;-1:-1:-1;;;46207:77:0;;14103:2:1;46207:77:0;;;14085:21:1;14142:2;14122:18;;;14115:30;14181:34;14161:18;;;14154:62;-1:-1:-1;;;14232:18:1;;;14225:45;14287:19;;46207:77:0;13901:411:1;46207:77:0;46319:9;46309:6;46301:5;;:14;;;;:::i;:::-;:27;;46293:72;;;;-1:-1:-1;;;46293:72:0;;12984:2:1;46293:72:0;;;12966:21:1;;;13003:18;;;12996:30;13062:34;13042:18;;;13035:62;13114:18;;46293:72:0;12782:356:1;46293:72:0;46390:7;;;;46374:13;46429:98;46452:6;46448:1;:10;;;46429:98;;;46482:31;46492:10;46504:8;;;;;;46482:31;;:9;:31::i;:::-;46460:3;;46429:98;;;-1:-1:-1;46544:7:0;:16;;-1:-1:-1;;46544:16:0;;;;;;;;;;46586:3;-1:-1:-1;46571:81:0;;-1:-1:-1;;46610:9:0;;46602:5;:17;46630:7;:12;;-1:-1:-1;;;;46630:12:0;-1:-1:-1;;;46630:12:0;;;45817:842::o;23991:155::-;24086:52;16521:10;24119:8;24129;24086:18;:52::i;25114:328::-;25289:41;16521:10;25322:7;25289:18;:41::i;:::-;25281:103;;;;-1:-1:-1;;;25281:103:0;;;;;;;:::i;:::-;25395:39;25409:4;25415:2;25419:7;25428:5;25395:13;:39::i;:::-;25114:328;;;;:::o;48711:373::-;27017:4;27041:16;;;:7;:16;;;;;;48812:13;;-1:-1:-1;;;;;27041:16:0;48843:50;;;;-1:-1:-1;;;48843:50:0;;14519:2:1;48843:50:0;;;14501:21:1;14558:2;14538:18;;;14531:30;-1:-1:-1;;;14577:18:1;;;14570:51;14638:18;;48843:50:0;14317:345:1;48843:50:0;48916:7;48910:21;;;;;:::i;:::-;:26;48906:171;;-1:-1:-1;48906:171:0;;48960:10;48953:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48711:373;;;:::o;48906:171::-;49034:7;49043:20;49044:7;49043:18;:20::i;:::-;49017:47;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49003:62;;48711:373;;;:::o;48906:171::-;48711:373;;;:::o;47792:86::-;42995:6;;-1:-1:-1;;;;;42995:6:0;16521:10;43142:23;43134:68;;;;-1:-1:-1;;;43134:68:0;;;;;;;:::i;:::-;47854:7:::1;:18:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;;47854:18:0::1;-1:-1:-1::0;;;;47854:18:0;;::::1;::::0;;;::::1;::::0;;47792:86::o;45518:141::-;42995:6;;-1:-1:-1;;;;;42995:6:0;16521:10;43142:23;43134:68;;;;-1:-1:-1;;;43134:68:0;;;;;;;:::i;:::-;45624:10:::1;::::0;45616:37:::1;::::0;45586:21:::1;::::0;-1:-1:-1;;;;;45624:10:0::1;::::0;45616:37;::::1;;;::::0;45586:21;;45568:15:::1;45616:37:::0;45568:15;45616:37;45586:21;45624:10;45616:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;48073:106:::0;42995:6;;-1:-1:-1;;;;;42995:6:0;16521:10;43142:23;43134:68;;;;-1:-1:-1;;;43134:68:0;;;;;;;:::i;:::-;48149:24;;::::1;::::0;:10:::1;::::0;:24:::1;::::0;::::1;::::0;::::1;:::i;43831:201::-:0;42995:6;;-1:-1:-1;;;;;42995:6:0;16521:10;43142:23;43134:68;;;;-1:-1:-1;;;43134:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43920:22:0;::::1;43912:73;;;::::0;-1:-1:-1;;;43912:73:0;;16364:2:1;43912:73:0::1;::::0;::::1;16346:21:1::0;16403:2;16383:18;;;16376:30;16442:34;16422:18;;;16415:62;-1:-1:-1;;;16493:18:1;;;16486:36;16539:19;;43912:73:0::1;16162:402:1::0;43912:73:0::1;43996:28;44015:8;43996:18;:28::i;21194:305::-:0;21296:4;-1:-1:-1;;;;;;21333:40:0;;-1:-1:-1;;;21333:40:0;;:105;;-1:-1:-1;;;;;;;21390:48:0;;-1:-1:-1;;;21390:48:0;21333:105;:158;;;-1:-1:-1;;;;;;;;;;19749:40:0;;;21455:36;19640:157;30934:174;31009:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31009:29:0;-1:-1:-1;;;;;31009:29:0;;;;;;;;:24;;31063:23;31009:24;31063:14;:23::i;:::-;-1:-1:-1;;;;;31054:46:0;;;;;;;;;;;30934:174;;:::o;27246:348::-;27339:4;27041:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27041:16:0;27356:73;;;;-1:-1:-1;;;27356:73:0;;16771:2:1;27356:73:0;;;16753:21:1;16810:2;16790:18;;;16783:30;16849:34;16829:18;;;16822:62;-1:-1:-1;;;16900:18:1;;;16893:42;16952:19;;27356:73:0;16569:408:1;27356:73:0;27440:13;27456:23;27471:7;27456:14;:23::i;:::-;27440:39;;27509:5;-1:-1:-1;;;;;27498:16:0;:7;-1:-1:-1;;;;;27498:16:0;;:51;;;;27542:7;-1:-1:-1;;;;;27518:31:0;:20;27530:7;27518:11;:20::i;:::-;-1:-1:-1;;;;;27518:31:0;;27498:51;:87;;;-1:-1:-1;;;;;;24338:25:0;;;24314:4;24338:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27553:32;27490:96;27246:348;-1:-1:-1;;;;27246:348:0:o;30238:578::-;30397:4;-1:-1:-1;;;;;30370:31:0;:23;30385:7;30370:14;:23::i;:::-;-1:-1:-1;;;;;30370:31:0;;30362:85;;;;-1:-1:-1;;;30362:85:0;;17184:2:1;30362:85:0;;;17166:21:1;17223:2;17203:18;;;17196:30;17262:34;17242:18;;;17235:62;-1:-1:-1;;;17313:18:1;;;17306:39;17362:19;;30362:85:0;16982:405:1;30362:85:0;-1:-1:-1;;;;;30466:16:0;;30458:65;;;;-1:-1:-1;;;30458:65:0;;17594:2:1;30458:65:0;;;17576:21:1;17633:2;17613:18;;;17606:30;17672:34;17652:18;;;17645:62;-1:-1:-1;;;17723:18:1;;;17716:34;17767:19;;30458:65:0;17392:400:1;30458:65:0;30536:39;30557:4;30563:2;30567:7;30536:20;:39::i;:::-;30640:29;30657:1;30661:7;30640:8;:29::i;:::-;-1:-1:-1;;;;;30682:15:0;;;;;;:9;:15;;;;;:20;;30701:1;;30682:15;:20;;30701:1;;30682:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30713:13:0;;;;;;:9;:13;;;;;:18;;30730:1;;30713:13;:18;;30730:1;;30713:18;:::i;:::-;;;;-1:-1:-1;;30742:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30742:21:0;-1:-1:-1;;;;;30742:21:0;;;;;;;;;30781:27;;30742:16;;30781:27;;;;;;;30238:578;;;:::o;29541:360::-;29601:13;29617:23;29632:7;29617:14;:23::i;:::-;29601:39;;29653:48;29674:5;29689:1;29693:7;29653:20;:48::i;:::-;29742:29;29759:1;29763:7;29742:8;:29::i;:::-;-1:-1:-1;;;;;29784:16:0;;;;;;:9;:16;;;;;:21;;29804:1;;29784:16;:21;;29804:1;;29784:21;:::i;:::-;;;;-1:-1:-1;;29823:16:0;;;;:7;:16;;;;;;29816:23;;-1:-1:-1;;;;;;29816:23:0;;;29857:36;29831:7;;29823:16;-1:-1:-1;;;;;29857:36:0;;;;;29823:16;;29857:36;29590:311;29541:360;:::o;44192:191::-;44285:6;;;-1:-1:-1;;;;;44302:17:0;;;-1:-1:-1;;;;;;44302:17:0;;;;;;;44335:40;;44285:6;;;44302:17;44285:6;;44335:40;;44266:16;;44335:40;44255:128;44192:191;:::o;27936:110::-;28012:26;28022:2;28026:7;28012:26;;;;;;;;;;;;:9;:26::i;31250:315::-;31405:8;-1:-1:-1;;;;;31396:17:0;:5;-1:-1:-1;;;;;31396:17:0;;;31388:55;;;;-1:-1:-1;;;31388:55:0;;17999:2:1;31388:55:0;;;17981:21:1;18038:2;18018:18;;;18011:30;18077:27;18057:18;;;18050:55;18122:18;;31388:55:0;17797:349:1;31388:55:0;-1:-1:-1;;;;;31454:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;31454:46:0;;;;;;;;;;31516:41;;540::1;;;31516::0;;513:18:1;31516:41:0;;;;;;;31250:315;;;:::o;26324:::-;26481:28;26491:4;26497:2;26501:7;26481:9;:28::i;:::-;26528:48;26551:4;26557:2;26561:7;26570:5;26528:22;:48::i;:::-;26520:111;;;;-1:-1:-1;;;26520:111:0;;;;;;;:::i;17018:723::-;17074:13;17295:10;17291:53;;-1:-1:-1;;17322:10:0;;;;;;;;;;;;-1:-1:-1;;;17322:10:0;;;;;17018:723::o;17291:53::-;17369:5;17354:12;17410:78;17417:9;;17410:78;;17443:8;;;;:::i;:::-;;-1:-1:-1;17466:10:0;;-1:-1:-1;17474:2:0;17466:10;;:::i;:::-;;;17410:78;;;17498:19;17530:6;17520:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17520:17:0;;17498:39;;17548:154;17555:10;;17548:154;;17582:11;17592:1;17582:11;;:::i;:::-;;-1:-1:-1;17651:10:0;17659:2;17651:5;:10;:::i;:::-;17638:24;;:2;:24;:::i;:::-;17625:39;;17608:6;17615;17608:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;17608:56:0;;;;;;;;-1:-1:-1;17679:11:0;17688:2;17679:11;;:::i;:::-;;;17548:154;;37390:589;-1:-1:-1;;;;;37596:18:0;;37592:187;;37631:40;37663:7;38806:10;:17;;38779:24;;;;:15;:24;;;;;:44;;;38834:24;;;;;;;;;;;;38702:164;37631:40;37592:187;;;37701:2;-1:-1:-1;;;;;37693:10:0;:4;-1:-1:-1;;;;;37693:10:0;;37689:90;;37720:47;37753:4;37759:7;37720:32;:47::i;:::-;-1:-1:-1;;;;;37793:16:0;;37789:183;;37826:45;37863:7;37826:36;:45::i;37789:183::-;37899:4;-1:-1:-1;;;;;37893:10:0;:2;-1:-1:-1;;;;;37893:10:0;;37889:83;;37920:40;37948:2;37952:7;37920:27;:40::i;28273:321::-;28403:18;28409:2;28413:7;28403:5;:18::i;:::-;28454:54;28485:1;28489:2;28493:7;28502:5;28454:22;:54::i;:::-;28432:154;;;;-1:-1:-1;;;28432:154:0;;;;;;;:::i;32130:799::-;32285:4;-1:-1:-1;;;;;32306:13:0;;8756:20;8804:8;32302:620;;32342:72;;-1:-1:-1;;;32342:72:0;;-1:-1:-1;;;;;32342:36:0;;;;;:72;;16521:10;;32393:4;;32399:7;;32408:5;;32342:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32342:72:0;;;;;;;;-1:-1:-1;;32342:72:0;;;;;;;;;;;;:::i;:::-;;;32338:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32584:13:0;;32580:272;;32627:60;;-1:-1:-1;;;32627:60:0;;;;;;;:::i;32580:272::-;32802:6;32796:13;32787:6;32783:2;32779:15;32772:38;32338:529;-1:-1:-1;;;;;;32465:51:0;-1:-1:-1;;;32465:51:0;;-1:-1:-1;32458:58:0;;32302:620;-1:-1:-1;32906:4:0;32130:799;;;;;;:::o;39493:988::-;39759:22;39809:1;39784:22;39801:4;39784:16;:22::i;:::-;:26;;;;:::i;:::-;39821:18;39842:26;;;:17;:26;;;;;;39759:51;;-1:-1:-1;39975:28:0;;;39971:328;;-1:-1:-1;;;;;40042:18:0;;40020:19;40042:18;;;:12;:18;;;;;;;;:34;;;;;;;;;40093:30;;;;;;:44;;;40210:30;;:17;:30;;;;;:43;;;39971:328;-1:-1:-1;40395:26:0;;;;:17;:26;;;;;;;;40388:33;;;-1:-1:-1;;;;;40439:18:0;;;;;:12;:18;;;;;:34;;;;;;;40432:41;39493:988::o;40776:1079::-;41054:10;:17;41029:22;;41054:21;;41074:1;;41054:21;:::i;:::-;41086:18;41107:24;;;:15;:24;;;;;;41480:10;:26;;41029:46;;-1:-1:-1;41107:24:0;;41029:46;;41480:26;;;;;;:::i;:::-;;;;;;;;;41458:48;;41544:11;41519:10;41530;41519:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;41624:28;;;:15;:28;;;;;;;:41;;;41796:24;;;;;41789:31;41831:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;40847:1008;;;40776:1079;:::o;38280:221::-;38365:14;38382:20;38399:2;38382:16;:20::i;:::-;-1:-1:-1;;;;;38413:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;38458:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;38280:221:0:o;28930:382::-;-1:-1:-1;;;;;29010:16:0;;29002:61;;;;-1:-1:-1;;;29002:61:0;;20177:2:1;29002:61:0;;;20159:21:1;;;20196:18;;;20189:30;20255:34;20235:18;;;20228:62;20307:18;;29002:61:0;19975:356:1;29002:61:0;27017:4;27041:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27041:16:0;:30;29074:58;;;;-1:-1:-1;;;29074:58:0;;20538:2:1;29074:58:0;;;20520:21:1;20577:2;20557:18;;;20550:30;20616;20596:18;;;20589:58;20664:18;;29074:58:0;20336:352:1;29074:58:0;29145:45;29174:1;29178:2;29182:7;29145:20;:45::i;:::-;-1:-1:-1;;;;;29203:13:0;;;;;;:9;:13;;;;;:18;;29220:1;;29203:13;:18;;29220:1;;29203:18;:::i;:::-;;;;-1:-1:-1;;29232:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29232:21:0;-1:-1:-1;;;;;29232:21:0;;;;;;;;29271:33;;29232:16;;;29271:33;;29232:16;;29271:33;28930:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:269::-;908:3;946:5;940:12;973:6;968:3;961:19;989:63;1045:6;1038:4;1033:3;1029:14;1022:4;1015:5;1011:16;989:63;:::i;:::-;1106:2;1085:15;-1:-1:-1;;1081:29:1;1072:39;;;;1113:4;1068:50;;855:269;-1:-1:-1;;855:269:1:o;1129:231::-;1278:2;1267:9;1260:21;1241:4;1298:56;1350:2;1339:9;1335:18;1327:6;1298:56;:::i;1365:180::-;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;-1:-1:-1;1516:23:1;;1365:180;-1:-1:-1;1365:180:1:o;1758:173::-;1826:20;;-1:-1:-1;;;;;1875:31:1;;1865:42;;1855:70;;1921:1;1918;1911:12;1936:254;2004:6;2012;2065:2;2053:9;2044:7;2040:23;2036:32;2033:52;;;2081:1;2078;2071:12;2033:52;2104:29;2123:9;2104:29;:::i;:::-;2094:39;2180:2;2165:18;;;;2152:32;;-1:-1:-1;;;1936:254:1:o;2384:186::-;2443:6;2496:2;2484:9;2475:7;2471:23;2467:32;2464:52;;;2512:1;2509;2502:12;2464:52;2535:29;2554:9;2535:29;:::i;2757:328::-;2834:6;2842;2850;2903:2;2891:9;2882:7;2878:23;2874:32;2871:52;;;2919:1;2916;2909:12;2871:52;2942:29;2961:9;2942:29;:::i;:::-;2932:39;;2990:38;3024:2;3013:9;3009:18;2990:38;:::i;:::-;2980:48;;3075:2;3064:9;3060:18;3047:32;3037:42;;2757:328;;;;;:::o;3090:159::-;3157:20;;3217:6;3206:18;;3196:29;;3186:57;;3239:1;3236;3229:12;3254:184;3312:6;3365:2;3353:9;3344:7;3340:23;3336:32;3333:52;;;3381:1;3378;3371:12;3333:52;3404:28;3422:9;3404:28;:::i;3443:127::-;3504:10;3499:3;3495:20;3492:1;3485:31;3535:4;3532:1;3525:15;3559:4;3556:1;3549:15;3575:632;3640:5;3670:18;3711:2;3703:6;3700:14;3697:40;;;3717:18;;:::i;:::-;3792:2;3786:9;3760:2;3846:15;;-1:-1:-1;;3842:24:1;;;3868:2;3838:33;3834:42;3822:55;;;3892:18;;;3912:22;;;3889:46;3886:72;;;3938:18;;:::i;:::-;3978:10;3974:2;3967:22;4007:6;3998:15;;4037:6;4029;4022:22;4077:3;4068:6;4063:3;4059:16;4056:25;4053:45;;;4094:1;4091;4084:12;4053:45;4144:6;4139:3;4132:4;4124:6;4120:17;4107:44;4199:1;4192:4;4183:6;4175;4171:19;4167:30;4160:41;;;;3575:632;;;;;:::o;4212:451::-;4281:6;4334:2;4322:9;4313:7;4309:23;4305:32;4302:52;;;4350:1;4347;4340:12;4302:52;4390:9;4377:23;4423:18;4415:6;4412:30;4409:50;;;4455:1;4452;4445:12;4409:50;4478:22;;4531:4;4523:13;;4519:27;-1:-1:-1;4509:55:1;;4560:1;4557;4550:12;4509:55;4583:74;4649:7;4644:2;4631:16;4626:2;4622;4618:11;4583:74;:::i;4668:258::-;4735:6;4743;4796:2;4784:9;4775:7;4771:23;4767:32;4764:52;;;4812:1;4809;4802:12;4764:52;4835:29;4854:9;4835:29;:::i;:::-;4825:39;;4883:37;4916:2;4905:9;4901:18;4883:37;:::i;:::-;4873:47;;4668:258;;;;;:::o;4931:347::-;4996:6;5004;5057:2;5045:9;5036:7;5032:23;5028:32;5025:52;;;5073:1;5070;5063:12;5025:52;5096:29;5115:9;5096:29;:::i;:::-;5086:39;;5175:2;5164:9;5160:18;5147:32;5222:5;5215:13;5208:21;5201:5;5198:32;5188:60;;5244:1;5241;5234:12;5188:60;5267:5;5257:15;;;4931:347;;;;;:::o;5283:667::-;5378:6;5386;5394;5402;5455:3;5443:9;5434:7;5430:23;5426:33;5423:53;;;5472:1;5469;5462:12;5423:53;5495:29;5514:9;5495:29;:::i;:::-;5485:39;;5543:38;5577:2;5566:9;5562:18;5543:38;:::i;:::-;5533:48;;5628:2;5617:9;5613:18;5600:32;5590:42;;5683:2;5672:9;5668:18;5655:32;5710:18;5702:6;5699:30;5696:50;;;5742:1;5739;5732:12;5696:50;5765:22;;5818:4;5810:13;;5806:27;-1:-1:-1;5796:55:1;;5847:1;5844;5837:12;5796:55;5870:74;5936:7;5931:2;5918:16;5913:2;5909;5905:11;5870:74;:::i;:::-;5860:84;;;5283:667;;;;;;;:::o;5955:269::-;6012:6;6065:2;6053:9;6044:7;6040:23;6036:32;6033:52;;;6081:1;6078;6071:12;6033:52;6120:9;6107:23;6170:4;6163:5;6159:16;6152:5;6149:27;6139:55;;6190:1;6187;6180:12;6422:260;6490:6;6498;6551:2;6539:9;6530:7;6526:23;6522:32;6519:52;;;6567:1;6564;6557:12;6519:52;6590:29;6609:9;6590:29;:::i;:::-;6580:39;;6638:38;6672:2;6661:9;6657:18;6638:38;:::i;6687:380::-;6766:1;6762:12;;;;6809;;;6830:61;;6884:4;6876:6;6872:17;6862:27;;6830:61;6937:2;6929:6;6926:14;6906:18;6903:38;6900:161;;;6983:10;6978:3;6974:20;6971:1;6964:31;7018:4;7015:1;7008:15;7046:4;7043:1;7036:15;6900:161;;6687:380;;;:::o;8312:356::-;8514:2;8496:21;;;8533:18;;;8526:30;8592:34;8587:2;8572:18;;8565:62;8659:2;8644:18;;8312:356::o;9020:413::-;9222:2;9204:21;;;9261:2;9241:18;;;9234:30;9300:34;9295:2;9280:18;;9273:62;-1:-1:-1;;;9366:2:1;9351:18;;9344:47;9423:3;9408:19;;9020:413::o;10680:127::-;10741:10;10736:3;10732:20;10729:1;10722:31;10772:4;10769:1;10762:15;10796:4;10793:1;10786:15;11992:127;12053:10;12048:3;12044:20;12041:1;12034:31;12084:4;12081:1;12074:15;12108:4;12105:1;12098:15;12124:217;12163:4;12192:6;12248:10;;;;12218;;12270:12;;;12267:38;;;12285:18;;:::i;:::-;12322:13;;12124:217;-1:-1:-1;;;12124:217:1:o;12346:128::-;12386:3;12417:1;12413:6;12410:1;12407:13;12404:39;;;12423:18;;:::i;:::-;-1:-1:-1;12459:9:1;;12346:128::o;12479:125::-;12519:4;12547:1;12544;12541:8;12538:34;;;12552:18;;:::i;:::-;-1:-1:-1;12589:9:1;;12479:125::o;12609:168::-;12649:7;12715:1;12711;12707:6;12703:14;12700:1;12697:21;12692:1;12685:9;12678:17;12674:45;12671:71;;;12722:18;;:::i;:::-;-1:-1:-1;12762:9:1;;12609:168::o;14793:185::-;14835:3;14873:5;14867:12;14888:52;14933:6;14928:3;14921:4;14914:5;14910:16;14888:52;:::i;:::-;14956:16;;;;;14793:185;-1:-1:-1;;14793:185:1:o;14983:1174::-;15159:3;15188:1;15221:6;15215:13;15251:3;15273:1;15301:9;15297:2;15293:18;15283:28;;15361:2;15350:9;15346:18;15383;15373:61;;15427:4;15419:6;15415:17;15405:27;;15373:61;15453:2;15501;15493:6;15490:14;15470:18;15467:38;15464:165;;;-1:-1:-1;;;15528:33:1;;15584:4;15581:1;15574:15;15614:4;15535:3;15602:17;15464:165;15645:18;15672:104;;;;15790:1;15785:320;;;;15638:467;;15672:104;-1:-1:-1;;15705:24:1;;15693:37;;15750:16;;;;-1:-1:-1;15672:104:1;;15785:320;14740:1;14733:14;;;14777:4;14764:18;;15880:1;15894:165;15908:6;15905:1;15902:13;15894:165;;;15986:14;;15973:11;;;15966:35;16029:16;;;;15923:10;;15894:165;;;15898:3;;16088:6;16083:3;16079:16;16072:23;;15638:467;;;;;;;16121:30;16147:3;16139:6;16121:30;:::i;:::-;16114:37;14983:1174;-1:-1:-1;;;;;14983:1174:1:o;18151:414::-;18353:2;18335:21;;;18392:2;18372:18;;;18365:30;18431:34;18426:2;18411:18;;18404:62;-1:-1:-1;;;18497:2:1;18482:18;;18475:48;18555:3;18540:19;;18151:414::o;18570:135::-;18609:3;-1:-1:-1;;18630:17:1;;18627:43;;;18650:18;;:::i;:::-;-1:-1:-1;18697:1:1;18686:13;;18570:135::o;18710:127::-;18771:10;18766:3;18762:20;18759:1;18752:31;18802:4;18799:1;18792:15;18826:4;18823:1;18816:15;18842:120;18882:1;18908;18898:35;;18913:18;;:::i;:::-;-1:-1:-1;18947:9:1;;18842:120::o;18967:112::-;18999:1;19025;19015:35;;19030:18;;:::i;:::-;-1:-1:-1;19064:9:1;;18967:112::o;19084:500::-;-1:-1:-1;;;;;19353:15:1;;;19335:34;;19405:15;;19400:2;19385:18;;19378:43;19452:2;19437:18;;19430:34;;;19500:3;19495:2;19480:18;;19473:31;;;19278:4;;19521:57;;19558:19;;19550:6;19521:57;:::i;:::-;19513:65;19084:500;-1:-1:-1;;;;;;19084:500:1:o;19589:249::-;19658:6;19711:2;19699:9;19690:7;19686:23;19682:32;19679:52;;;19727:1;19724;19717:12;19679:52;19759:9;19753:16;19778:30;19802:5;19778:30;:::i;19843:127::-;19904:10;19899:3;19895:20;19892:1;19885:31;19935:4;19932:1;19925:15;19959:4;19956:1;19949:15

Swarm Source

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