ETH Price: $3,514.92 (+4.78%)

Token

Wolverinu Reloaded (Wolverinu Reloaded)
 

Overview

Max Total Supply

0 Wolverinu Reloaded

Holders

124

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 Wolverinu Reloaded
0x2d06634c40b9bd208ba17fa5b245ef5467f1f0de
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:
NFTcontract

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;
 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);
}

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

interface IBEP20 {

  function totalSupply() external view returns (uint256);
  
  function decimals() external view returns (uint8);
  
  function symbol() external view returns (string memory);
  
  function name() external view returns (string memory);
  
  function getOwner() external view returns (address);
  
  function balanceOf(address account) external view returns (uint256);
    
  function allowance(address _owner, address spender) external view returns (uint256);
  
  function approve(address spender, uint256 amount) external returns (bool); 

  function Holdingtime(address _owner) external returns (uint256);
}

contract NFTcontract is ERC721, ERC721URIStorage, Ownable {
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIdCounter;
    using SafeMath for uint256;
    string public baseURI = "https://ipfs.infura.io:5001/api/v0/cat?arg=";

    mapping(address => uint256[]) public ownedTokens;
    mapping(address => bool) public _iswhiteListed;
    mapping(address => bool) public _isMinter;

    constructor() ERC721("Wolverinu Reloaded", "Wolverinu Reloaded") {}

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

    function mintNFT(string memory data) public {
        require(
            _iswhiteListed[msg.sender],
            "Only WhiteList users can mint nfts"
        );
        require(!_isMinter[msg.sender],"Permission declined to Mint again");

        _tokenIdCounter.increment();
        uint256 newTokenId = _tokenIdCounter.current();
        _safeMint(msg.sender, newTokenId);
        _setTokenURI(newTokenId, data);
        _isMinter[msg.sender] = true;
        ownedTokens[msg.sender].push(newTokenId);
    }

    function getCurrentTokenId() public view returns (uint256) {
        return _tokenIdCounter.current();
    }

    function WhiteListedUsers(address[] memory _arr,bool _state) public onlyOwner {
        for (uint256 i=0; i < _arr.length; i++) {
            _iswhiteListed[_arr[i]] = _state;
        }
    }

    function newBaseURI(string memory _URI) public onlyOwner {
        baseURI = _URI;
    }

    function readTokenIds(address ownerAddr)
        public
        view
        returns (uint256[] memory)
    {
        return ownedTokens[ownerAddr];
    }

    // The following functions are overrides required by Solidity.
    function _burn(uint256 tokenId)
        internal
        override(ERC721, ERC721URIStorage)
    {
        super._burn(tokenId);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721, ERC721URIStorage)
        returns (string memory)
    {
        return super.tokenURI(tokenId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"_arr","type":"address[]"},{"internalType":"bool","name":"_state","type":"bool"}],"name":"WhiteListedUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_iswhiteListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentTokenId","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":[{"internalType":"string","name":"data","type":"string"}],"name":"mintNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_URI","type":"string"}],"name":"newBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"ownedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"ownerAddr","type":"address"}],"name":"readTokenIds","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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"}]

60806040526040518060600160405280602b815260200162003d24602b91396009908051906020019062000035929190620001d8565b503480156200004357600080fd5b506040518060400160405280601281526020017f576f6c766572696e752052656c6f6164656400000000000000000000000000008152506040518060400160405280601281526020017f576f6c766572696e752052656c6f6164656400000000000000000000000000008152508160009080519060200190620000c8929190620001d8565b508060019080519060200190620000e1929190620001d8565b50505062000104620000f86200010a60201b60201c565b6200011260201b60201c565b620002ed565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001e690620002b7565b90600052602060002090601f0160209004810192826200020a576000855562000256565b82601f106200022557805160ff191683800117855562000256565b8280016001018555821562000256579182015b828111156200025557825182559160200191906001019062000238565b5b50905062000265919062000269565b5090565b5b80821115620002845760008160009055506001016200026a565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002d057607f821691505b60208210811415620002e757620002e662000288565b5b50919050565b613a2780620002fd6000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c8063715018a6116100de578063c87b56dd11610097578063e5df002011610071578063e5df00201461045c578063e985e9c51461048c578063f2fde38b146104bc578063fb37e883146104d857610173565b8063c87b56dd146103e0578063e149f03614610410578063e4e60e1c1461044057610173565b8063715018a61461034657806373b6c14c146103505780638da5cb5b1461036c57806395d89b411461038a578063a22cb465146103a8578063b88d4fde146103c457610173565b806344b8c6851161013057806344b8c6851461024a57806350b9cfd51461027a57806356189236146102aa5780636352211e146102c85780636c0360eb146102f857806370a082311461031657610173565b806301ffc9a71461017857806306fdde03146101a8578063081812fc146101c6578063095ea7b3146101f657806323b872dd1461021257806342842e0e1461022e575b600080fd5b610192600480360381019061018d9190612376565b6104f4565b60405161019f91906123be565b60405180910390f35b6101b06105d6565b6040516101bd9190612472565b60405180910390f35b6101e060048036038101906101db91906124ca565b610668565b6040516101ed9190612538565b60405180910390f35b610210600480360381019061020b919061257f565b6106ed565b005b61022c600480360381019061022791906125bf565b610805565b005b610248600480360381019061024391906125bf565b610865565b005b610264600480360381019061025f9190612612565b610885565b60405161027191906123be565b60405180910390f35b610294600480360381019061028f9190612612565b6108a5565b6040516102a191906126fd565b60405180910390f35b6102b261093c565b6040516102bf919061272e565b60405180910390f35b6102e260048036038101906102dd91906124ca565b61094d565b6040516102ef9190612538565b60405180910390f35b6103006109ff565b60405161030d9190612472565b60405180910390f35b610330600480360381019061032b9190612612565b610a8d565b60405161033d919061272e565b60405180910390f35b61034e610b45565b005b61036a600480360381019061036591906128bd565b610bcd565b005b610374610cde565b6040516103819190612538565b60405180910390f35b610392610d08565b60405161039f9190612472565b60405180910390f35b6103c260048036038101906103bd9190612919565b610d9a565b005b6103de60048036038101906103d99190612a0e565b610f1b565b005b6103fa60048036038101906103f591906124ca565b610f7d565b6040516104079190612472565b60405180910390f35b61042a6004803603810190610425919061257f565b610f8f565b604051610437919061272e565b60405180910390f35b61045a60048036038101906104559190612b32565b610fc0565b005b61047660048036038101906104719190612612565b611056565b60405161048391906123be565b60405180910390f35b6104a660048036038101906104a19190612b7b565b611076565b6040516104b391906123be565b60405180910390f35b6104d660048036038101906104d19190612612565b61110a565b005b6104f260048036038101906104ed9190612b32565b611202565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105bf57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105cf57506105ce82611409565b5b9050919050565b6060600080546105e590612bea565b80601f016020809104026020016040519081016040528092919081815260200182805461061190612bea565b801561065e5780601f106106335761010080835404028352916020019161065e565b820191906000526020600020905b81548152906001019060200180831161064157829003601f168201915b5050505050905090565b600061067382611473565b6106b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a990612c8e565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106f88261094d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610769576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076090612d20565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107886114df565b73ffffffffffffffffffffffffffffffffffffffff1614806107b757506107b6816107b16114df565b611076565b5b6107f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ed90612db2565b60405180910390fd5b61080083836114e7565b505050565b6108166108106114df565b826115a0565b610855576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084c90612e44565b60405180910390fd5b61086083838361167e565b505050565b61088083838360405180602001604052806000815250610f1b565b505050565b600b6020528060005260406000206000915054906101000a900460ff1681565b6060600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080548060200260200160405190810160405280929190818152602001828054801561093057602002820191906000526020600020905b81548152602001906001019080831161091c575b50505050509050919050565b600061094860086118da565b905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156109f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ed90612ed6565b60405180910390fd5b80915050919050565b60098054610a0c90612bea565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3890612bea565b8015610a855780601f10610a5a57610100808354040283529160200191610a85565b820191906000526020600020905b815481529060010190602001808311610a6857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610afe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af590612f68565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b4d6114df565b73ffffffffffffffffffffffffffffffffffffffff16610b6b610cde565b73ffffffffffffffffffffffffffffffffffffffff1614610bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb890612fd4565b60405180910390fd5b610bcb60006118e8565b565b610bd56114df565b73ffffffffffffffffffffffffffffffffffffffff16610bf3610cde565b73ffffffffffffffffffffffffffffffffffffffff1614610c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4090612fd4565b60405180910390fd5b60005b8251811015610cd95781600b6000858481518110610c6d57610c6c612ff4565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610cd190613052565b915050610c4c565b505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610d1790612bea565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4390612bea565b8015610d905780601f10610d6557610100808354040283529160200191610d90565b820191906000526020600020905b815481529060010190602001808311610d7357829003601f168201915b5050505050905090565b610da26114df565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e07906130e7565b60405180910390fd5b8060056000610e1d6114df565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610eca6114df565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f0f91906123be565b60405180910390a35050565b610f2c610f266114df565b836115a0565b610f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6290612e44565b60405180910390fd5b610f77848484846119ae565b50505050565b6060610f8882611a0a565b9050919050565b600a6020528160005260406000208181548110610fab57600080fd5b90600052602060002001600091509150505481565b610fc86114df565b73ffffffffffffffffffffffffffffffffffffffff16610fe6610cde565b73ffffffffffffffffffffffffffffffffffffffff161461103c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103390612fd4565b60405180910390fd5b8060099080519060200190611052929190612267565b5050565b600c6020528060005260406000206000915054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6111126114df565b73ffffffffffffffffffffffffffffffffffffffff16611130610cde565b73ffffffffffffffffffffffffffffffffffffffff1614611186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117d90612fd4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ed90613179565b60405180910390fd5b6111ff816118e8565b50565b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661128e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112859061320b565b60405180910390fd5b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561131b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113129061329d565b60405180910390fd5b6113256008611b5c565b600061133160086118da565b905061133d3382611b72565b6113478183611b90565b6001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190806001815401808255809150506001900390600052602060002001600090919091909150555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661155a8361094d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006115ab82611473565b6115ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e19061332f565b60405180910390fd5b60006115f58361094d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061166457508373ffffffffffffffffffffffffffffffffffffffff1661164c84610668565b73ffffffffffffffffffffffffffffffffffffffff16145b8061167557506116748185611076565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661169e8261094d565b73ffffffffffffffffffffffffffffffffffffffff16146116f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116eb906133c1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611764576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175b90613453565b60405180910390fd5b61176f838383611c04565b61177a6000826114e7565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117ca9190613473565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461182191906134a7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081600001549050919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6119b984848461167e565b6119c584848484611c09565b611a04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fb9061356f565b60405180910390fd5b50505050565b6060611a1582611473565b611a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4b90613601565b60405180910390fd5b6000600660008481526020019081526020016000208054611a7490612bea565b80601f0160208091040260200160405190810160405280929190818152602001828054611aa090612bea565b8015611aed5780601f10611ac257610100808354040283529160200191611aed565b820191906000526020600020905b815481529060010190602001808311611ad057829003601f168201915b505050505090506000611afe611d91565b9050600081511415611b14578192505050611b57565b600082511115611b49578082604051602001611b3192919061365d565b60405160208183030381529060405292505050611b57565b611b5284611e23565b925050505b919050565b6001816000016000828254019250508190555050565b611b8c828260405180602001604052806000815250611eca565b5050565b611b9982611473565b611bd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcf906136f3565b60405180910390fd5b80600660008481526020019081526020016000209080519060200190611bff929190612267565b505050565b505050565b6000611c2a8473ffffffffffffffffffffffffffffffffffffffff16611f25565b15611d84578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c536114df565b8786866040518563ffffffff1660e01b8152600401611c759493929190613768565b6020604051808303816000875af1925050508015611cb157506040513d601f19601f82011682018060405250810190611cae91906137c9565b60015b611d34573d8060008114611ce1576040519150601f19603f3d011682016040523d82523d6000602084013e611ce6565b606091505b50600081511415611d2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d239061356f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611d89565b600190505b949350505050565b606060098054611da090612bea565b80601f0160208091040260200160405190810160405280929190818152602001828054611dcc90612bea565b8015611e195780601f10611dee57610100808354040283529160200191611e19565b820191906000526020600020905b815481529060010190602001808311611dfc57829003601f168201915b5050505050905090565b6060611e2e82611473565b611e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6490613868565b60405180910390fd5b6000611e77611d91565b90506000815111611e975760405180602001604052806000815250611ec2565b80611ea184611f38565b604051602001611eb292919061365d565b6040516020818303038152906040525b915050919050565b611ed48383612099565b611ee16000848484611c09565b611f20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f179061356f565b60405180910390fd5b505050565b600080823b905060008111915050919050565b60606000821415611f80576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612094565b600082905060005b60008214611fb2578080611f9b90613052565b915050600a82611fab91906138b7565b9150611f88565b60008167ffffffffffffffff811115611fce57611fcd61274e565b5b6040519080825280601f01601f1916602001820160405280156120005781602001600182028036833780820191505090505b5090505b6000851461208d576001826120199190613473565b9150600a8561202891906138e8565b603061203491906134a7565b60f81b81838151811061204a57612049612ff4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561208691906138b7565b9450612004565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612109576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210090613965565b60405180910390fd5b61211281611473565b15612152576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612149906139d1565b60405180910390fd5b61215e60008383611c04565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121ae91906134a7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461227390612bea565b90600052602060002090601f01602090048101928261229557600085556122dc565b82601f106122ae57805160ff19168380011785556122dc565b828001600101855582156122dc579182015b828111156122db5782518255916020019190600101906122c0565b5b5090506122e991906122ed565b5090565b5b808211156123065760008160009055506001016122ee565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6123538161231e565b811461235e57600080fd5b50565b6000813590506123708161234a565b92915050565b60006020828403121561238c5761238b612314565b5b600061239a84828501612361565b91505092915050565b60008115159050919050565b6123b8816123a3565b82525050565b60006020820190506123d360008301846123af565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156124135780820151818401526020810190506123f8565b83811115612422576000848401525b50505050565b6000601f19601f8301169050919050565b6000612444826123d9565b61244e81856123e4565b935061245e8185602086016123f5565b61246781612428565b840191505092915050565b6000602082019050818103600083015261248c8184612439565b905092915050565b6000819050919050565b6124a781612494565b81146124b257600080fd5b50565b6000813590506124c48161249e565b92915050565b6000602082840312156124e0576124df612314565b5b60006124ee848285016124b5565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612522826124f7565b9050919050565b61253281612517565b82525050565b600060208201905061254d6000830184612529565b92915050565b61255c81612517565b811461256757600080fd5b50565b60008135905061257981612553565b92915050565b6000806040838503121561259657612595612314565b5b60006125a48582860161256a565b92505060206125b5858286016124b5565b9150509250929050565b6000806000606084860312156125d8576125d7612314565b5b60006125e68682870161256a565b93505060206125f78682870161256a565b9250506040612608868287016124b5565b9150509250925092565b60006020828403121561262857612627612314565b5b60006126368482850161256a565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61267481612494565b82525050565b6000612686838361266b565b60208301905092915050565b6000602082019050919050565b60006126aa8261263f565b6126b4818561264a565b93506126bf8361265b565b8060005b838110156126f05781516126d7888261267a565b97506126e283612692565b9250506001810190506126c3565b5085935050505092915050565b60006020820190508181036000830152612717818461269f565b905092915050565b61272881612494565b82525050565b6000602082019050612743600083018461271f565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61278682612428565b810181811067ffffffffffffffff821117156127a5576127a461274e565b5b80604052505050565b60006127b861230a565b90506127c4828261277d565b919050565b600067ffffffffffffffff8211156127e4576127e361274e565b5b602082029050602081019050919050565b600080fd5b600061280d612808846127c9565b6127ae565b905080838252602082019050602084028301858111156128305761282f6127f5565b5b835b818110156128595780612845888261256a565b845260208401935050602081019050612832565b5050509392505050565b600082601f83011261287857612877612749565b5b81356128888482602086016127fa565b91505092915050565b61289a816123a3565b81146128a557600080fd5b50565b6000813590506128b781612891565b92915050565b600080604083850312156128d4576128d3612314565b5b600083013567ffffffffffffffff8111156128f2576128f1612319565b5b6128fe85828601612863565b925050602061290f858286016128a8565b9150509250929050565b600080604083850312156129305761292f612314565b5b600061293e8582860161256a565b925050602061294f858286016128a8565b9150509250929050565b600080fd5b600067ffffffffffffffff8211156129795761297861274e565b5b61298282612428565b9050602081019050919050565b82818337600083830152505050565b60006129b16129ac8461295e565b6127ae565b9050828152602081018484840111156129cd576129cc612959565b5b6129d884828561298f565b509392505050565b600082601f8301126129f5576129f4612749565b5b8135612a0584826020860161299e565b91505092915050565b60008060008060808587031215612a2857612a27612314565b5b6000612a368782880161256a565b9450506020612a478782880161256a565b9350506040612a58878288016124b5565b925050606085013567ffffffffffffffff811115612a7957612a78612319565b5b612a85878288016129e0565b91505092959194509250565b600067ffffffffffffffff821115612aac57612aab61274e565b5b612ab582612428565b9050602081019050919050565b6000612ad5612ad084612a91565b6127ae565b905082815260208101848484011115612af157612af0612959565b5b612afc84828561298f565b509392505050565b600082601f830112612b1957612b18612749565b5b8135612b29848260208601612ac2565b91505092915050565b600060208284031215612b4857612b47612314565b5b600082013567ffffffffffffffff811115612b6657612b65612319565b5b612b7284828501612b04565b91505092915050565b60008060408385031215612b9257612b91612314565b5b6000612ba08582860161256a565b9250506020612bb18582860161256a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c0257607f821691505b60208210811415612c1657612c15612bbb565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612c78602c836123e4565b9150612c8382612c1c565b604082019050919050565b60006020820190508181036000830152612ca781612c6b565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612d0a6021836123e4565b9150612d1582612cae565b604082019050919050565b60006020820190508181036000830152612d3981612cfd565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000612d9c6038836123e4565b9150612da782612d40565b604082019050919050565b60006020820190508181036000830152612dcb81612d8f565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000612e2e6031836123e4565b9150612e3982612dd2565b604082019050919050565b60006020820190508181036000830152612e5d81612e21565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000612ec06029836123e4565b9150612ecb82612e64565b604082019050919050565b60006020820190508181036000830152612eef81612eb3565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612f52602a836123e4565b9150612f5d82612ef6565b604082019050919050565b60006020820190508181036000830152612f8181612f45565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612fbe6020836123e4565b9150612fc982612f88565b602082019050919050565b60006020820190508181036000830152612fed81612fb1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061305d82612494565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156130905761308f613023565b5b600182019050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006130d16019836123e4565b91506130dc8261309b565b602082019050919050565b60006020820190508181036000830152613100816130c4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006131636026836123e4565b915061316e82613107565b604082019050919050565b6000602082019050818103600083015261319281613156565b9050919050565b7f4f6e6c792057686974654c6973742075736572732063616e206d696e74206e6660008201527f7473000000000000000000000000000000000000000000000000000000000000602082015250565b60006131f56022836123e4565b915061320082613199565b604082019050919050565b60006020820190508181036000830152613224816131e8565b9050919050565b7f5065726d697373696f6e206465636c696e656420746f204d696e74206167616960008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b60006132876021836123e4565b91506132928261322b565b604082019050919050565b600060208201905081810360008301526132b68161327a565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613319602c836123e4565b9150613324826132bd565b604082019050919050565b600060208201905081810360008301526133488161330c565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006133ab6029836123e4565b91506133b68261334f565b604082019050919050565b600060208201905081810360008301526133da8161339e565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061343d6024836123e4565b9150613448826133e1565b604082019050919050565b6000602082019050818103600083015261346c81613430565b9050919050565b600061347e82612494565b915061348983612494565b92508282101561349c5761349b613023565b5b828203905092915050565b60006134b282612494565b91506134bd83612494565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134f2576134f1613023565b5b828201905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006135596032836123e4565b9150613564826134fd565b604082019050919050565b600060208201905081810360008301526135888161354c565b9050919050565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b60006135eb6031836123e4565b91506135f68261358f565b604082019050919050565b6000602082019050818103600083015261361a816135de565b9050919050565b600081905092915050565b6000613637826123d9565b6136418185613621565b93506136518185602086016123f5565b80840191505092915050565b6000613669828561362c565b9150613675828461362c565b91508190509392505050565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b60006136dd602e836123e4565b91506136e882613681565b604082019050919050565b6000602082019050818103600083015261370c816136d0565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061373a82613713565b613744818561371e565b93506137548185602086016123f5565b61375d81612428565b840191505092915050565b600060808201905061377d6000830187612529565b61378a6020830186612529565b613797604083018561271f565b81810360608301526137a9818461372f565b905095945050505050565b6000815190506137c38161234a565b92915050565b6000602082840312156137df576137de612314565b5b60006137ed848285016137b4565b91505092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613852602f836123e4565b915061385d826137f6565b604082019050919050565b6000602082019050818103600083015261388181613845565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006138c282612494565b91506138cd83612494565b9250826138dd576138dc613888565b5b828204905092915050565b60006138f382612494565b91506138fe83612494565b92508261390e5761390d613888565b5b828206905092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061394f6020836123e4565b915061395a82613919565b602082019050919050565b6000602082019050818103600083015261397e81613942565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006139bb601c836123e4565b91506139c682613985565b602082019050919050565b600060208201905081810360008301526139ea816139ae565b905091905056fea264697066735822122003e48b1db57497df3e274f5daf0c47764f570024e5929cbedf10c2b35a60d00c64736f6c634300080b003368747470733a2f2f697066732e696e667572612e696f3a353030312f6170692f76302f6361743f6172673d

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101735760003560e01c8063715018a6116100de578063c87b56dd11610097578063e5df002011610071578063e5df00201461045c578063e985e9c51461048c578063f2fde38b146104bc578063fb37e883146104d857610173565b8063c87b56dd146103e0578063e149f03614610410578063e4e60e1c1461044057610173565b8063715018a61461034657806373b6c14c146103505780638da5cb5b1461036c57806395d89b411461038a578063a22cb465146103a8578063b88d4fde146103c457610173565b806344b8c6851161013057806344b8c6851461024a57806350b9cfd51461027a57806356189236146102aa5780636352211e146102c85780636c0360eb146102f857806370a082311461031657610173565b806301ffc9a71461017857806306fdde03146101a8578063081812fc146101c6578063095ea7b3146101f657806323b872dd1461021257806342842e0e1461022e575b600080fd5b610192600480360381019061018d9190612376565b6104f4565b60405161019f91906123be565b60405180910390f35b6101b06105d6565b6040516101bd9190612472565b60405180910390f35b6101e060048036038101906101db91906124ca565b610668565b6040516101ed9190612538565b60405180910390f35b610210600480360381019061020b919061257f565b6106ed565b005b61022c600480360381019061022791906125bf565b610805565b005b610248600480360381019061024391906125bf565b610865565b005b610264600480360381019061025f9190612612565b610885565b60405161027191906123be565b60405180910390f35b610294600480360381019061028f9190612612565b6108a5565b6040516102a191906126fd565b60405180910390f35b6102b261093c565b6040516102bf919061272e565b60405180910390f35b6102e260048036038101906102dd91906124ca565b61094d565b6040516102ef9190612538565b60405180910390f35b6103006109ff565b60405161030d9190612472565b60405180910390f35b610330600480360381019061032b9190612612565b610a8d565b60405161033d919061272e565b60405180910390f35b61034e610b45565b005b61036a600480360381019061036591906128bd565b610bcd565b005b610374610cde565b6040516103819190612538565b60405180910390f35b610392610d08565b60405161039f9190612472565b60405180910390f35b6103c260048036038101906103bd9190612919565b610d9a565b005b6103de60048036038101906103d99190612a0e565b610f1b565b005b6103fa60048036038101906103f591906124ca565b610f7d565b6040516104079190612472565b60405180910390f35b61042a6004803603810190610425919061257f565b610f8f565b604051610437919061272e565b60405180910390f35b61045a60048036038101906104559190612b32565b610fc0565b005b61047660048036038101906104719190612612565b611056565b60405161048391906123be565b60405180910390f35b6104a660048036038101906104a19190612b7b565b611076565b6040516104b391906123be565b60405180910390f35b6104d660048036038101906104d19190612612565b61110a565b005b6104f260048036038101906104ed9190612b32565b611202565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105bf57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105cf57506105ce82611409565b5b9050919050565b6060600080546105e590612bea565b80601f016020809104026020016040519081016040528092919081815260200182805461061190612bea565b801561065e5780601f106106335761010080835404028352916020019161065e565b820191906000526020600020905b81548152906001019060200180831161064157829003601f168201915b5050505050905090565b600061067382611473565b6106b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106a990612c8e565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106f88261094d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610769576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076090612d20565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107886114df565b73ffffffffffffffffffffffffffffffffffffffff1614806107b757506107b6816107b16114df565b611076565b5b6107f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ed90612db2565b60405180910390fd5b61080083836114e7565b505050565b6108166108106114df565b826115a0565b610855576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084c90612e44565b60405180910390fd5b61086083838361167e565b505050565b61088083838360405180602001604052806000815250610f1b565b505050565b600b6020528060005260406000206000915054906101000a900460ff1681565b6060600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080548060200260200160405190810160405280929190818152602001828054801561093057602002820191906000526020600020905b81548152602001906001019080831161091c575b50505050509050919050565b600061094860086118da565b905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156109f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ed90612ed6565b60405180910390fd5b80915050919050565b60098054610a0c90612bea565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3890612bea565b8015610a855780601f10610a5a57610100808354040283529160200191610a85565b820191906000526020600020905b815481529060010190602001808311610a6857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610afe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af590612f68565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b4d6114df565b73ffffffffffffffffffffffffffffffffffffffff16610b6b610cde565b73ffffffffffffffffffffffffffffffffffffffff1614610bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb890612fd4565b60405180910390fd5b610bcb60006118e8565b565b610bd56114df565b73ffffffffffffffffffffffffffffffffffffffff16610bf3610cde565b73ffffffffffffffffffffffffffffffffffffffff1614610c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4090612fd4565b60405180910390fd5b60005b8251811015610cd95781600b6000858481518110610c6d57610c6c612ff4565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610cd190613052565b915050610c4c565b505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610d1790612bea565b80601f0160208091040260200160405190810160405280929190818152602001828054610d4390612bea565b8015610d905780601f10610d6557610100808354040283529160200191610d90565b820191906000526020600020905b815481529060010190602001808311610d7357829003601f168201915b5050505050905090565b610da26114df565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e07906130e7565b60405180910390fd5b8060056000610e1d6114df565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610eca6114df565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f0f91906123be565b60405180910390a35050565b610f2c610f266114df565b836115a0565b610f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6290612e44565b60405180910390fd5b610f77848484846119ae565b50505050565b6060610f8882611a0a565b9050919050565b600a6020528160005260406000208181548110610fab57600080fd5b90600052602060002001600091509150505481565b610fc86114df565b73ffffffffffffffffffffffffffffffffffffffff16610fe6610cde565b73ffffffffffffffffffffffffffffffffffffffff161461103c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103390612fd4565b60405180910390fd5b8060099080519060200190611052929190612267565b5050565b600c6020528060005260406000206000915054906101000a900460ff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6111126114df565b73ffffffffffffffffffffffffffffffffffffffff16611130610cde565b73ffffffffffffffffffffffffffffffffffffffff1614611186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117d90612fd4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ed90613179565b60405180910390fd5b6111ff816118e8565b50565b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661128e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112859061320b565b60405180910390fd5b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561131b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113129061329d565b60405180910390fd5b6113256008611b5c565b600061133160086118da565b905061133d3382611b72565b6113478183611b90565b6001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190806001815401808255809150506001900390600052602060002001600090919091909150555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661155a8361094d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006115ab82611473565b6115ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e19061332f565b60405180910390fd5b60006115f58361094d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061166457508373ffffffffffffffffffffffffffffffffffffffff1661164c84610668565b73ffffffffffffffffffffffffffffffffffffffff16145b8061167557506116748185611076565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661169e8261094d565b73ffffffffffffffffffffffffffffffffffffffff16146116f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116eb906133c1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611764576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175b90613453565b60405180910390fd5b61176f838383611c04565b61177a6000826114e7565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117ca9190613473565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461182191906134a7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081600001549050919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6119b984848461167e565b6119c584848484611c09565b611a04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fb9061356f565b60405180910390fd5b50505050565b6060611a1582611473565b611a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4b90613601565b60405180910390fd5b6000600660008481526020019081526020016000208054611a7490612bea565b80601f0160208091040260200160405190810160405280929190818152602001828054611aa090612bea565b8015611aed5780601f10611ac257610100808354040283529160200191611aed565b820191906000526020600020905b815481529060010190602001808311611ad057829003601f168201915b505050505090506000611afe611d91565b9050600081511415611b14578192505050611b57565b600082511115611b49578082604051602001611b3192919061365d565b60405160208183030381529060405292505050611b57565b611b5284611e23565b925050505b919050565b6001816000016000828254019250508190555050565b611b8c828260405180602001604052806000815250611eca565b5050565b611b9982611473565b611bd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcf906136f3565b60405180910390fd5b80600660008481526020019081526020016000209080519060200190611bff929190612267565b505050565b505050565b6000611c2a8473ffffffffffffffffffffffffffffffffffffffff16611f25565b15611d84578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611c536114df565b8786866040518563ffffffff1660e01b8152600401611c759493929190613768565b6020604051808303816000875af1925050508015611cb157506040513d601f19601f82011682018060405250810190611cae91906137c9565b60015b611d34573d8060008114611ce1576040519150601f19603f3d011682016040523d82523d6000602084013e611ce6565b606091505b50600081511415611d2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d239061356f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611d89565b600190505b949350505050565b606060098054611da090612bea565b80601f0160208091040260200160405190810160405280929190818152602001828054611dcc90612bea565b8015611e195780601f10611dee57610100808354040283529160200191611e19565b820191906000526020600020905b815481529060010190602001808311611dfc57829003601f168201915b5050505050905090565b6060611e2e82611473565b611e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6490613868565b60405180910390fd5b6000611e77611d91565b90506000815111611e975760405180602001604052806000815250611ec2565b80611ea184611f38565b604051602001611eb292919061365d565b6040516020818303038152906040525b915050919050565b611ed48383612099565b611ee16000848484611c09565b611f20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f179061356f565b60405180910390fd5b505050565b600080823b905060008111915050919050565b60606000821415611f80576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612094565b600082905060005b60008214611fb2578080611f9b90613052565b915050600a82611fab91906138b7565b9150611f88565b60008167ffffffffffffffff811115611fce57611fcd61274e565b5b6040519080825280601f01601f1916602001820160405280156120005781602001600182028036833780820191505090505b5090505b6000851461208d576001826120199190613473565b9150600a8561202891906138e8565b603061203491906134a7565b60f81b81838151811061204a57612049612ff4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561208691906138b7565b9450612004565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612109576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210090613965565b60405180910390fd5b61211281611473565b15612152576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612149906139d1565b60405180910390fd5b61215e60008383611c04565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121ae91906134a7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461227390612bea565b90600052602060002090601f01602090048101928261229557600085556122dc565b82601f106122ae57805160ff19168380011785556122dc565b828001600101855582156122dc579182015b828111156122db5782518255916020019190600101906122c0565b5b5090506122e991906122ed565b5090565b5b808211156123065760008160009055506001016122ee565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6123538161231e565b811461235e57600080fd5b50565b6000813590506123708161234a565b92915050565b60006020828403121561238c5761238b612314565b5b600061239a84828501612361565b91505092915050565b60008115159050919050565b6123b8816123a3565b82525050565b60006020820190506123d360008301846123af565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156124135780820151818401526020810190506123f8565b83811115612422576000848401525b50505050565b6000601f19601f8301169050919050565b6000612444826123d9565b61244e81856123e4565b935061245e8185602086016123f5565b61246781612428565b840191505092915050565b6000602082019050818103600083015261248c8184612439565b905092915050565b6000819050919050565b6124a781612494565b81146124b257600080fd5b50565b6000813590506124c48161249e565b92915050565b6000602082840312156124e0576124df612314565b5b60006124ee848285016124b5565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612522826124f7565b9050919050565b61253281612517565b82525050565b600060208201905061254d6000830184612529565b92915050565b61255c81612517565b811461256757600080fd5b50565b60008135905061257981612553565b92915050565b6000806040838503121561259657612595612314565b5b60006125a48582860161256a565b92505060206125b5858286016124b5565b9150509250929050565b6000806000606084860312156125d8576125d7612314565b5b60006125e68682870161256a565b93505060206125f78682870161256a565b9250506040612608868287016124b5565b9150509250925092565b60006020828403121561262857612627612314565b5b60006126368482850161256a565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61267481612494565b82525050565b6000612686838361266b565b60208301905092915050565b6000602082019050919050565b60006126aa8261263f565b6126b4818561264a565b93506126bf8361265b565b8060005b838110156126f05781516126d7888261267a565b97506126e283612692565b9250506001810190506126c3565b5085935050505092915050565b60006020820190508181036000830152612717818461269f565b905092915050565b61272881612494565b82525050565b6000602082019050612743600083018461271f565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61278682612428565b810181811067ffffffffffffffff821117156127a5576127a461274e565b5b80604052505050565b60006127b861230a565b90506127c4828261277d565b919050565b600067ffffffffffffffff8211156127e4576127e361274e565b5b602082029050602081019050919050565b600080fd5b600061280d612808846127c9565b6127ae565b905080838252602082019050602084028301858111156128305761282f6127f5565b5b835b818110156128595780612845888261256a565b845260208401935050602081019050612832565b5050509392505050565b600082601f83011261287857612877612749565b5b81356128888482602086016127fa565b91505092915050565b61289a816123a3565b81146128a557600080fd5b50565b6000813590506128b781612891565b92915050565b600080604083850312156128d4576128d3612314565b5b600083013567ffffffffffffffff8111156128f2576128f1612319565b5b6128fe85828601612863565b925050602061290f858286016128a8565b9150509250929050565b600080604083850312156129305761292f612314565b5b600061293e8582860161256a565b925050602061294f858286016128a8565b9150509250929050565b600080fd5b600067ffffffffffffffff8211156129795761297861274e565b5b61298282612428565b9050602081019050919050565b82818337600083830152505050565b60006129b16129ac8461295e565b6127ae565b9050828152602081018484840111156129cd576129cc612959565b5b6129d884828561298f565b509392505050565b600082601f8301126129f5576129f4612749565b5b8135612a0584826020860161299e565b91505092915050565b60008060008060808587031215612a2857612a27612314565b5b6000612a368782880161256a565b9450506020612a478782880161256a565b9350506040612a58878288016124b5565b925050606085013567ffffffffffffffff811115612a7957612a78612319565b5b612a85878288016129e0565b91505092959194509250565b600067ffffffffffffffff821115612aac57612aab61274e565b5b612ab582612428565b9050602081019050919050565b6000612ad5612ad084612a91565b6127ae565b905082815260208101848484011115612af157612af0612959565b5b612afc84828561298f565b509392505050565b600082601f830112612b1957612b18612749565b5b8135612b29848260208601612ac2565b91505092915050565b600060208284031215612b4857612b47612314565b5b600082013567ffffffffffffffff811115612b6657612b65612319565b5b612b7284828501612b04565b91505092915050565b60008060408385031215612b9257612b91612314565b5b6000612ba08582860161256a565b9250506020612bb18582860161256a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c0257607f821691505b60208210811415612c1657612c15612bbb565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612c78602c836123e4565b9150612c8382612c1c565b604082019050919050565b60006020820190508181036000830152612ca781612c6b565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612d0a6021836123e4565b9150612d1582612cae565b604082019050919050565b60006020820190508181036000830152612d3981612cfd565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000612d9c6038836123e4565b9150612da782612d40565b604082019050919050565b60006020820190508181036000830152612dcb81612d8f565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000612e2e6031836123e4565b9150612e3982612dd2565b604082019050919050565b60006020820190508181036000830152612e5d81612e21565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000612ec06029836123e4565b9150612ecb82612e64565b604082019050919050565b60006020820190508181036000830152612eef81612eb3565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612f52602a836123e4565b9150612f5d82612ef6565b604082019050919050565b60006020820190508181036000830152612f8181612f45565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612fbe6020836123e4565b9150612fc982612f88565b602082019050919050565b60006020820190508181036000830152612fed81612fb1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061305d82612494565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156130905761308f613023565b5b600182019050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006130d16019836123e4565b91506130dc8261309b565b602082019050919050565b60006020820190508181036000830152613100816130c4565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006131636026836123e4565b915061316e82613107565b604082019050919050565b6000602082019050818103600083015261319281613156565b9050919050565b7f4f6e6c792057686974654c6973742075736572732063616e206d696e74206e6660008201527f7473000000000000000000000000000000000000000000000000000000000000602082015250565b60006131f56022836123e4565b915061320082613199565b604082019050919050565b60006020820190508181036000830152613224816131e8565b9050919050565b7f5065726d697373696f6e206465636c696e656420746f204d696e74206167616960008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b60006132876021836123e4565b91506132928261322b565b604082019050919050565b600060208201905081810360008301526132b68161327a565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613319602c836123e4565b9150613324826132bd565b604082019050919050565b600060208201905081810360008301526133488161330c565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006133ab6029836123e4565b91506133b68261334f565b604082019050919050565b600060208201905081810360008301526133da8161339e565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061343d6024836123e4565b9150613448826133e1565b604082019050919050565b6000602082019050818103600083015261346c81613430565b9050919050565b600061347e82612494565b915061348983612494565b92508282101561349c5761349b613023565b5b828203905092915050565b60006134b282612494565b91506134bd83612494565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134f2576134f1613023565b5b828201905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006135596032836123e4565b9150613564826134fd565b604082019050919050565b600060208201905081810360008301526135888161354c565b9050919050565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b60006135eb6031836123e4565b91506135f68261358f565b604082019050919050565b6000602082019050818103600083015261361a816135de565b9050919050565b600081905092915050565b6000613637826123d9565b6136418185613621565b93506136518185602086016123f5565b80840191505092915050565b6000613669828561362c565b9150613675828461362c565b91508190509392505050565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b60006136dd602e836123e4565b91506136e882613681565b604082019050919050565b6000602082019050818103600083015261370c816136d0565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061373a82613713565b613744818561371e565b93506137548185602086016123f5565b61375d81612428565b840191505092915050565b600060808201905061377d6000830187612529565b61378a6020830186612529565b613797604083018561271f565b81810360608301526137a9818461372f565b905095945050505050565b6000815190506137c38161234a565b92915050565b6000602082840312156137df576137de612314565b5b60006137ed848285016137b4565b91505092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613852602f836123e4565b915061385d826137f6565b604082019050919050565b6000602082019050818103600083015261388181613845565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006138c282612494565b91506138cd83612494565b9250826138dd576138dc613888565b5b828204905092915050565b60006138f382612494565b91506138fe83612494565b92508261390e5761390d613888565b5b828206905092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061394f6020836123e4565b915061395a82613919565b602082019050919050565b6000602082019050818103600083015261397e81613942565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b60006139bb601c836123e4565b91506139c682613985565b602082019050919050565b600060208201905081810360008301526139ea816139ae565b905091905056fea264697066735822122003e48b1db57497df3e274f5daf0c47764f570024e5929cbedf10c2b35a60d00c64736f6c634300080b0033

Deployed Bytecode Sourcemap

52329:2137:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19682:305;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20627:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22186:221;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21709:411;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23076:339;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23486:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52649:46;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53885:160;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53466:110;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20321:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52516:69;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20051:208;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43014:94;;;:::i;:::-;;53584:195;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42363:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20796:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22479:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23742:328;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54267:196;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52594:48;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53787:90;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52702:41;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22845:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43263:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52935:523;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19682:305;19784:4;19836:25;19821:40;;;:11;:40;;;;:105;;;;19893:33;19878:48;;;:11;:48;;;;19821:105;:158;;;;19943:36;19967:11;19943:23;:36::i;:::-;19821:158;19801:178;;19682:305;;;:::o;20627:100::-;20681:13;20714:5;20707:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20627:100;:::o;22186:221::-;22262:7;22290:16;22298:7;22290;:16::i;:::-;22282:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22375:15;:24;22391:7;22375:24;;;;;;;;;;;;;;;;;;;;;22368:31;;22186:221;;;:::o;21709:411::-;21790:13;21806:23;21821:7;21806:14;:23::i;:::-;21790:39;;21854:5;21848:11;;:2;:11;;;;21840:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;21948:5;21932:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;21957:37;21974:5;21981:12;:10;:12::i;:::-;21957:16;:37::i;:::-;21932:62;21910:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;22091:21;22100:2;22104:7;22091:8;:21::i;:::-;21779:341;21709:411;;:::o;23076:339::-;23271:41;23290:12;:10;:12::i;:::-;23304:7;23271:18;:41::i;:::-;23263:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;23379:28;23389:4;23395:2;23399:7;23379:9;:28::i;:::-;23076:339;;;:::o;23486:185::-;23624:39;23641:4;23647:2;23651:7;23624:39;;;;;;;;;;;;:16;:39::i;:::-;23486:185;;;:::o;52649:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;53885:160::-;53974:16;54015:11;:22;54027:9;54015:22;;;;;;;;;;;;;;;54008:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53885:160;;;:::o;53466:110::-;53516:7;53543:25;:15;:23;:25::i;:::-;53536:32;;53466:110;:::o;20321:239::-;20393:7;20413:13;20429:7;:16;20437:7;20429:16;;;;;;;;;;;;;;;;;;;;;20413:32;;20481:1;20464:19;;:5;:19;;;;20456:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;20547:5;20540:12;;;20321:239;;;:::o;52516:69::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20051:208::-;20123:7;20168:1;20151:19;;:5;:19;;;;20143:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;20235:9;:16;20245:5;20235:16;;;;;;;;;;;;;;;;20228:23;;20051:208;;;:::o;43014:94::-;42594:12;:10;:12::i;:::-;42583:23;;:7;:5;:7::i;:::-;:23;;;42575:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43079:21:::1;43097:1;43079:9;:21::i;:::-;43014:94::o:0;53584:195::-;42594:12;:10;:12::i;:::-;42583:23;;:7;:5;:7::i;:::-;:23;;;42575:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53678:9:::1;53673:99;53695:4;:11;53691:1;:15;53673:99;;;53754:6;53728:14;:23;53743:4;53748:1;53743:7;;;;;;;;:::i;:::-;;;;;;;;53728:23;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;53708:3;;;;;:::i;:::-;;;;53673:99;;;;53584:195:::0;;:::o;42363:87::-;42409:7;42436:6;;;;;;;;;;;42429:13;;42363:87;:::o;20796:104::-;20852:13;20885:7;20878:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20796:104;:::o;22479:295::-;22594:12;:10;:12::i;:::-;22582:24;;:8;:24;;;;22574:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;22694:8;22649:18;:32;22668:12;:10;:12::i;:::-;22649:32;;;;;;;;;;;;;;;:42;22682:8;22649:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;22747:8;22718:48;;22733:12;:10;:12::i;:::-;22718:48;;;22757:8;22718:48;;;;;;:::i;:::-;;;;;;;;22479:295;;:::o;23742:328::-;23917:41;23936:12;:10;:12::i;:::-;23950:7;23917:18;:41::i;:::-;23909:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24023:39;24037:4;24043:2;24047:7;24056:5;24023:13;:39::i;:::-;23742:328;;;;:::o;54267:196::-;54394:13;54432:23;54447:7;54432:14;:23::i;:::-;54425:30;;54267:196;;;:::o;52594:48::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53787:90::-;42594:12;:10;:12::i;:::-;42583:23;;:7;:5;:7::i;:::-;:23;;;42575:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53865:4:::1;53855:7;:14;;;;;;;;;;;;:::i;:::-;;53787:90:::0;:::o;52702:41::-;;;;;;;;;;;;;;;;;;;;;;:::o;22845:164::-;22942:4;22966:18;:25;22985:5;22966:25;;;;;;;;;;;;;;;:35;22992:8;22966:35;;;;;;;;;;;;;;;;;;;;;;;;;22959:42;;22845:164;;;;:::o;43263:192::-;42594:12;:10;:12::i;:::-;42583:23;;:7;:5;:7::i;:::-;:23;;;42575:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43372:1:::1;43352:22;;:8;:22;;;;43344:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;43428:19;43438:8;43428:9;:19::i;:::-;43263:192:::0;:::o;52935:523::-;53012:14;:26;53027:10;53012:26;;;;;;;;;;;;;;;;;;;;;;;;;52990:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;53120:9;:21;53130:10;53120:21;;;;;;;;;;;;;;;;;;;;;;;;;53119:22;53111:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;53191:27;:15;:25;:27::i;:::-;53229:18;53250:25;:15;:23;:25::i;:::-;53229:46;;53286:33;53296:10;53308;53286:9;:33::i;:::-;53330:30;53343:10;53355:4;53330:12;:30::i;:::-;53395:4;53371:9;:21;53381:10;53371:21;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;53410:11;:23;53422:10;53410:23;;;;;;;;;;;;;;;53439:10;53410:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52979:479;52935:523;:::o;18291:157::-;18376:4;18415:25;18400:40;;;:11;:40;;;;18393:47;;18291:157;;;:::o;25580:127::-;25645:4;25697:1;25669:30;;:7;:16;25677:7;25669:16;;;;;;;;;;;;;;;;;;;;;:30;;;;25662:37;;25580:127;;;:::o;15394:98::-;15447:7;15474:10;15467:17;;15394:98;:::o;29562:174::-;29664:2;29637:15;:24;29653:7;29637:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;29720:7;29716:2;29682:46;;29691:23;29706:7;29691:14;:23::i;:::-;29682:46;;;;;;;;;;;;29562:174;;:::o;25874:348::-;25967:4;25992:16;26000:7;25992;:16::i;:::-;25984:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26068:13;26084:23;26099:7;26084:14;:23::i;:::-;26068:39;;26137:5;26126:16;;:7;:16;;;:51;;;;26170:7;26146:31;;:20;26158:7;26146:11;:20::i;:::-;:31;;;26126:51;:87;;;;26181:32;26198:5;26205:7;26181:16;:32::i;:::-;26126:87;26118:96;;;25874:348;;;;:::o;28866:578::-;29025:4;28998:31;;:23;29013:7;28998:14;:23::i;:::-;:31;;;28990:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;29108:1;29094:16;;:2;:16;;;;29086:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;29164:39;29185:4;29191:2;29195:7;29164:20;:39::i;:::-;29268:29;29285:1;29289:7;29268:8;:29::i;:::-;29329:1;29310:9;:15;29320:4;29310:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;29358:1;29341:9;:13;29351:2;29341:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29389:2;29370:7;:16;29378:7;29370:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29428:7;29424:2;29409:27;;29418:4;29409:27;;;;;;;;;;;;28866:578;;;:::o;44374:114::-;44439:7;44466;:14;;;44459:21;;44374:114;;;:::o;43463:173::-;43519:16;43538:6;;;;;;;;;;;43519:25;;43564:8;43555:6;;:17;;;;;;;;;;;;;;;;;;43619:8;43588:40;;43609:8;43588:40;;;;;;;;;;;;43508:128;43463:173;:::o;24952:315::-;25109:28;25119:4;25125:2;25129:7;25109:9;:28::i;:::-;25156:48;25179:4;25185:2;25189:7;25198:5;25156:22;:48::i;:::-;25148:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;24952:315;;;;:::o;39959:679::-;40032:13;40066:16;40074:7;40066;:16::i;:::-;40058:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;40149:23;40175:10;:19;40186:7;40175:19;;;;;;;;;;;40149:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40205:18;40226:10;:8;:10::i;:::-;40205:31;;40334:1;40318:4;40312:18;:23;40308:72;;;40359:9;40352:16;;;;;;40308:72;40510:1;40490:9;40484:23;:27;40480:108;;;40559:4;40565:9;40542:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40528:48;;;;;;40480:108;40607:23;40622:7;40607:14;:23::i;:::-;40600:30;;;;39959:679;;;;:::o;44496:127::-;44603:1;44585:7;:14;;;:19;;;;;;;;;;;44496:127;:::o;26564:110::-;26640:26;26650:2;26654:7;26640:26;;;;;;;;;;;;:9;:26::i;:::-;26564:110;;:::o;40794:217::-;40894:16;40902:7;40894;:16::i;:::-;40886:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;40994:9;40972:10;:19;40983:7;40972:19;;;;;;;;;;;:31;;;;;;;;;;;;:::i;:::-;;40794:217;;:::o;31672:126::-;;;;:::o;30301:799::-;30456:4;30477:15;:2;:13;;;:15::i;:::-;30473:620;;;30529:2;30513:36;;;30550:12;:10;:12::i;:::-;30564:4;30570:7;30579:5;30513:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;30509:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30772:1;30755:6;:13;:18;30751:272;;;30798:60;;;;;;;;;;:::i;:::-;;;;;;;;30751:272;30973:6;30967:13;30958:6;30954:2;30950:15;30943:38;30509:529;30646:41;;;30636:51;;;:6;:51;;;;30629:58;;;;;30473:620;31077:4;31070:11;;30301:799;;;;;;;:::o;52827:100::-;52879:13;52912:7;52905:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52827:100;:::o;20971:334::-;21044:13;21078:16;21086:7;21078;:16::i;:::-;21070:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;21159:21;21183:10;:8;:10::i;:::-;21159:34;;21235:1;21217:7;21211:21;:25;:86;;;;;;;;;;;;;;;;;21263:7;21272:18;:7;:16;:18::i;:::-;21246:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;21211:86;21204:93;;;20971:334;;;:::o;26901:321::-;27031:18;27037:2;27041:7;27031:5;:18::i;:::-;27082:54;27113:1;27117:2;27121:7;27130:5;27082:22;:54::i;:::-;27060:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;26901:321;;;:::o;7523:387::-;7583:4;7791:12;7858:7;7846:20;7838:28;;7901:1;7894:4;:8;7887:15;;;7523:387;;;:::o;15834:723::-;15890:13;16120:1;16111:5;:10;16107:53;;;16138:10;;;;;;;;;;;;;;;;;;;;;16107:53;16170:12;16185:5;16170:20;;16201:14;16226:78;16241:1;16233:4;:9;16226:78;;16259:8;;;;;:::i;:::-;;;;16290:2;16282:10;;;;;:::i;:::-;;;16226:78;;;16314:19;16346:6;16336:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16314:39;;16364:154;16380:1;16371:5;:10;16364:154;;16408:1;16398:11;;;;;:::i;:::-;;;16475:2;16467:5;:10;;;;:::i;:::-;16454:2;:24;;;;:::i;:::-;16441:39;;16424:6;16431;16424:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;16504:2;16495:11;;;;;:::i;:::-;;;16364:154;;;16542:6;16528:21;;;;;15834:723;;;;:::o;27558:382::-;27652:1;27638:16;;:2;:16;;;;27630:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;27711:16;27719:7;27711;:16::i;:::-;27710:17;27702:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;27773:45;27802:1;27806:2;27810:7;27773:20;:45::i;:::-;27848:1;27831:9;:13;27841:2;27831:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;27879:2;27860:7;:16;27868:7;27860:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;27924:7;27920:2;27899:33;;27916:1;27899:33;;;;;;;;;;;;27558:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:619::-;5015:6;5023;5031;5080:2;5068:9;5059:7;5055:23;5051:32;5048:119;;;5086:79;;:::i;:::-;5048:119;5206:1;5231:53;5276:7;5267:6;5256:9;5252:22;5231:53;:::i;:::-;5221:63;;5177:117;5333:2;5359:53;5404:7;5395:6;5384:9;5380:22;5359:53;:::i;:::-;5349:63;;5304:118;5461:2;5487:53;5532:7;5523:6;5512:9;5508:22;5487:53;:::i;:::-;5477:63;;5432:118;4938:619;;;;;:::o;5563:329::-;5622:6;5671:2;5659:9;5650:7;5646:23;5642:32;5639:119;;;5677:79;;:::i;:::-;5639:119;5797:1;5822:53;5867:7;5858:6;5847:9;5843:22;5822:53;:::i;:::-;5812:63;;5768:117;5563:329;;;;:::o;5898:114::-;5965:6;5999:5;5993:12;5983:22;;5898:114;;;:::o;6018:184::-;6117:11;6151:6;6146:3;6139:19;6191:4;6186:3;6182:14;6167:29;;6018:184;;;;:::o;6208:132::-;6275:4;6298:3;6290:11;;6328:4;6323:3;6319:14;6311:22;;6208:132;;;:::o;6346:108::-;6423:24;6441:5;6423:24;:::i;:::-;6418:3;6411:37;6346:108;;:::o;6460:179::-;6529:10;6550:46;6592:3;6584:6;6550:46;:::i;:::-;6628:4;6623:3;6619:14;6605:28;;6460:179;;;;:::o;6645:113::-;6715:4;6747;6742:3;6738:14;6730:22;;6645:113;;;:::o;6794:732::-;6913:3;6942:54;6990:5;6942:54;:::i;:::-;7012:86;7091:6;7086:3;7012:86;:::i;:::-;7005:93;;7122:56;7172:5;7122:56;:::i;:::-;7201:7;7232:1;7217:284;7242:6;7239:1;7236:13;7217:284;;;7318:6;7312:13;7345:63;7404:3;7389:13;7345:63;:::i;:::-;7338:70;;7431:60;7484:6;7431:60;:::i;:::-;7421:70;;7277:224;7264:1;7261;7257:9;7252:14;;7217:284;;;7221:14;7517:3;7510:10;;6918:608;;;6794:732;;;;:::o;7532:373::-;7675:4;7713:2;7702:9;7698:18;7690:26;;7762:9;7756:4;7752:20;7748:1;7737:9;7733:17;7726:47;7790:108;7893:4;7884:6;7790:108;:::i;:::-;7782:116;;7532:373;;;;:::o;7911:118::-;7998:24;8016:5;7998:24;:::i;:::-;7993:3;7986:37;7911:118;;:::o;8035:222::-;8128:4;8166:2;8155:9;8151:18;8143:26;;8179:71;8247:1;8236:9;8232:17;8223:6;8179:71;:::i;:::-;8035:222;;;;:::o;8263:117::-;8372:1;8369;8362:12;8386:180;8434:77;8431:1;8424:88;8531:4;8528:1;8521:15;8555:4;8552:1;8545:15;8572:281;8655:27;8677:4;8655:27;:::i;:::-;8647:6;8643:40;8785:6;8773:10;8770:22;8749:18;8737:10;8734:34;8731:62;8728:88;;;8796:18;;:::i;:::-;8728:88;8836:10;8832:2;8825:22;8615:238;8572:281;;:::o;8859:129::-;8893:6;8920:20;;:::i;:::-;8910:30;;8949:33;8977:4;8969:6;8949:33;:::i;:::-;8859:129;;;:::o;8994:311::-;9071:4;9161:18;9153:6;9150:30;9147:56;;;9183:18;;:::i;:::-;9147:56;9233:4;9225:6;9221:17;9213:25;;9293:4;9287;9283:15;9275:23;;8994:311;;;:::o;9311:117::-;9420:1;9417;9410:12;9451:710;9547:5;9572:81;9588:64;9645:6;9588:64;:::i;:::-;9572:81;:::i;:::-;9563:90;;9673:5;9702:6;9695:5;9688:21;9736:4;9729:5;9725:16;9718:23;;9789:4;9781:6;9777:17;9769:6;9765:30;9818:3;9810:6;9807:15;9804:122;;;9837:79;;:::i;:::-;9804:122;9952:6;9935:220;9969:6;9964:3;9961:15;9935:220;;;10044:3;10073:37;10106:3;10094:10;10073:37;:::i;:::-;10068:3;10061:50;10140:4;10135:3;10131:14;10124:21;;10011:144;9995:4;9990:3;9986:14;9979:21;;9935:220;;;9939:21;9553:608;;9451:710;;;;;:::o;10184:370::-;10255:5;10304:3;10297:4;10289:6;10285:17;10281:27;10271:122;;10312:79;;:::i;:::-;10271:122;10429:6;10416:20;10454:94;10544:3;10536:6;10529:4;10521:6;10517:17;10454:94;:::i;:::-;10445:103;;10261:293;10184:370;;;;:::o;10560:116::-;10630:21;10645:5;10630:21;:::i;:::-;10623:5;10620:32;10610:60;;10666:1;10663;10656:12;10610:60;10560:116;:::o;10682:133::-;10725:5;10763:6;10750:20;10741:29;;10779:30;10803:5;10779:30;:::i;:::-;10682:133;;;;:::o;10821:678::-;10911:6;10919;10968:2;10956:9;10947:7;10943:23;10939:32;10936:119;;;10974:79;;:::i;:::-;10936:119;11122:1;11111:9;11107:17;11094:31;11152:18;11144:6;11141:30;11138:117;;;11174:79;;:::i;:::-;11138:117;11279:78;11349:7;11340:6;11329:9;11325:22;11279:78;:::i;:::-;11269:88;;11065:302;11406:2;11432:50;11474:7;11465:6;11454:9;11450:22;11432:50;:::i;:::-;11422:60;;11377:115;10821:678;;;;;:::o;11505:468::-;11570:6;11578;11627:2;11615:9;11606:7;11602:23;11598:32;11595:119;;;11633:79;;:::i;:::-;11595:119;11753:1;11778:53;11823:7;11814:6;11803:9;11799:22;11778:53;:::i;:::-;11768:63;;11724:117;11880:2;11906:50;11948:7;11939:6;11928:9;11924:22;11906:50;:::i;:::-;11896:60;;11851:115;11505:468;;;;;:::o;11979:117::-;12088:1;12085;12078:12;12102:307;12163:4;12253:18;12245:6;12242:30;12239:56;;;12275:18;;:::i;:::-;12239:56;12313:29;12335:6;12313:29;:::i;:::-;12305:37;;12397:4;12391;12387:15;12379:23;;12102:307;;;:::o;12415:154::-;12499:6;12494:3;12489;12476:30;12561:1;12552:6;12547:3;12543:16;12536:27;12415:154;;;:::o;12575:410::-;12652:5;12677:65;12693:48;12734:6;12693:48;:::i;:::-;12677:65;:::i;:::-;12668:74;;12765:6;12758:5;12751:21;12803:4;12796:5;12792:16;12841:3;12832:6;12827:3;12823:16;12820:25;12817:112;;;12848:79;;:::i;:::-;12817:112;12938:41;12972:6;12967:3;12962;12938:41;:::i;:::-;12658:327;12575:410;;;;;:::o;13004:338::-;13059:5;13108:3;13101:4;13093:6;13089:17;13085:27;13075:122;;13116:79;;:::i;:::-;13075:122;13233:6;13220:20;13258:78;13332:3;13324:6;13317:4;13309:6;13305:17;13258:78;:::i;:::-;13249:87;;13065:277;13004:338;;;;:::o;13348:943::-;13443:6;13451;13459;13467;13516:3;13504:9;13495:7;13491:23;13487:33;13484:120;;;13523:79;;:::i;:::-;13484:120;13643:1;13668:53;13713:7;13704:6;13693:9;13689:22;13668:53;:::i;:::-;13658:63;;13614:117;13770:2;13796:53;13841:7;13832:6;13821:9;13817:22;13796:53;:::i;:::-;13786:63;;13741:118;13898:2;13924:53;13969:7;13960:6;13949:9;13945:22;13924:53;:::i;:::-;13914:63;;13869:118;14054:2;14043:9;14039:18;14026:32;14085:18;14077:6;14074:30;14071:117;;;14107:79;;:::i;:::-;14071:117;14212:62;14266:7;14257:6;14246:9;14242:22;14212:62;:::i;:::-;14202:72;;13997:287;13348:943;;;;;;;:::o;14297:308::-;14359:4;14449:18;14441:6;14438:30;14435:56;;;14471:18;;:::i;:::-;14435:56;14509:29;14531:6;14509:29;:::i;:::-;14501:37;;14593:4;14587;14583:15;14575:23;;14297:308;;;:::o;14611:412::-;14689:5;14714:66;14730:49;14772:6;14730:49;:::i;:::-;14714:66;:::i;:::-;14705:75;;14803:6;14796:5;14789:21;14841:4;14834:5;14830:16;14879:3;14870:6;14865:3;14861:16;14858:25;14855:112;;;14886:79;;:::i;:::-;14855:112;14976:41;15010:6;15005:3;15000;14976:41;:::i;:::-;14695:328;14611:412;;;;;:::o;15043:340::-;15099:5;15148:3;15141:4;15133:6;15129:17;15125:27;15115:122;;15156:79;;:::i;:::-;15115:122;15273:6;15260:20;15298:79;15373:3;15365:6;15358:4;15350:6;15346:17;15298:79;:::i;:::-;15289:88;;15105:278;15043:340;;;;:::o;15389:509::-;15458:6;15507:2;15495:9;15486:7;15482:23;15478:32;15475:119;;;15513:79;;:::i;:::-;15475:119;15661:1;15650:9;15646:17;15633:31;15691:18;15683:6;15680:30;15677:117;;;15713:79;;:::i;:::-;15677:117;15818:63;15873:7;15864:6;15853:9;15849:22;15818:63;:::i;:::-;15808:73;;15604:287;15389:509;;;;:::o;15904:474::-;15972:6;15980;16029:2;16017:9;16008:7;16004:23;16000:32;15997:119;;;16035:79;;:::i;:::-;15997:119;16155:1;16180:53;16225:7;16216:6;16205:9;16201:22;16180:53;:::i;:::-;16170:63;;16126:117;16282:2;16308:53;16353:7;16344:6;16333:9;16329:22;16308:53;:::i;:::-;16298:63;;16253:118;15904:474;;;;;:::o;16384:180::-;16432:77;16429:1;16422:88;16529:4;16526:1;16519:15;16553:4;16550:1;16543:15;16570:320;16614:6;16651:1;16645:4;16641:12;16631:22;;16698:1;16692:4;16688:12;16719:18;16709:81;;16775:4;16767:6;16763:17;16753:27;;16709:81;16837:2;16829:6;16826:14;16806:18;16803:38;16800:84;;;16856:18;;:::i;:::-;16800:84;16621:269;16570:320;;;:::o;16896:231::-;17036:34;17032:1;17024:6;17020:14;17013:58;17105:14;17100:2;17092:6;17088:15;17081:39;16896:231;:::o;17133:366::-;17275:3;17296:67;17360:2;17355:3;17296:67;:::i;:::-;17289:74;;17372:93;17461:3;17372:93;:::i;:::-;17490:2;17485:3;17481:12;17474:19;;17133:366;;;:::o;17505:419::-;17671:4;17709:2;17698:9;17694:18;17686:26;;17758:9;17752:4;17748:20;17744:1;17733:9;17729:17;17722:47;17786:131;17912:4;17786:131;:::i;:::-;17778:139;;17505:419;;;:::o;17930:220::-;18070:34;18066:1;18058:6;18054:14;18047:58;18139:3;18134:2;18126:6;18122:15;18115:28;17930:220;:::o;18156:366::-;18298:3;18319:67;18383:2;18378:3;18319:67;:::i;:::-;18312:74;;18395:93;18484:3;18395:93;:::i;:::-;18513:2;18508:3;18504:12;18497:19;;18156:366;;;:::o;18528:419::-;18694:4;18732:2;18721:9;18717:18;18709:26;;18781:9;18775:4;18771:20;18767:1;18756:9;18752:17;18745:47;18809:131;18935:4;18809:131;:::i;:::-;18801:139;;18528:419;;;:::o;18953:243::-;19093:34;19089:1;19081:6;19077:14;19070:58;19162:26;19157:2;19149:6;19145:15;19138:51;18953:243;:::o;19202:366::-;19344:3;19365:67;19429:2;19424:3;19365:67;:::i;:::-;19358:74;;19441:93;19530:3;19441:93;:::i;:::-;19559:2;19554:3;19550:12;19543:19;;19202:366;;;:::o;19574:419::-;19740:4;19778:2;19767:9;19763:18;19755:26;;19827:9;19821:4;19817:20;19813:1;19802:9;19798:17;19791:47;19855:131;19981:4;19855:131;:::i;:::-;19847:139;;19574:419;;;:::o;19999:236::-;20139:34;20135:1;20127:6;20123:14;20116:58;20208:19;20203:2;20195:6;20191:15;20184:44;19999:236;:::o;20241:366::-;20383:3;20404:67;20468:2;20463:3;20404:67;:::i;:::-;20397:74;;20480:93;20569:3;20480:93;:::i;:::-;20598:2;20593:3;20589:12;20582:19;;20241:366;;;:::o;20613:419::-;20779:4;20817:2;20806:9;20802:18;20794:26;;20866:9;20860:4;20856:20;20852:1;20841:9;20837:17;20830:47;20894:131;21020:4;20894:131;:::i;:::-;20886:139;;20613:419;;;:::o;21038:228::-;21178:34;21174:1;21166:6;21162:14;21155:58;21247:11;21242:2;21234:6;21230:15;21223:36;21038:228;:::o;21272:366::-;21414:3;21435:67;21499:2;21494:3;21435:67;:::i;:::-;21428:74;;21511:93;21600:3;21511:93;:::i;:::-;21629:2;21624:3;21620:12;21613:19;;21272:366;;;:::o;21644:419::-;21810:4;21848:2;21837:9;21833:18;21825:26;;21897:9;21891:4;21887:20;21883:1;21872:9;21868:17;21861:47;21925:131;22051:4;21925:131;:::i;:::-;21917:139;;21644:419;;;:::o;22069:229::-;22209:34;22205:1;22197:6;22193:14;22186:58;22278:12;22273:2;22265:6;22261:15;22254:37;22069:229;:::o;22304:366::-;22446:3;22467:67;22531:2;22526:3;22467:67;:::i;:::-;22460:74;;22543:93;22632:3;22543:93;:::i;:::-;22661:2;22656:3;22652:12;22645:19;;22304:366;;;:::o;22676:419::-;22842:4;22880:2;22869:9;22865:18;22857:26;;22929:9;22923:4;22919:20;22915:1;22904:9;22900:17;22893:47;22957:131;23083:4;22957:131;:::i;:::-;22949:139;;22676:419;;;:::o;23101:182::-;23241:34;23237:1;23229:6;23225:14;23218:58;23101:182;:::o;23289:366::-;23431:3;23452:67;23516:2;23511:3;23452:67;:::i;:::-;23445:74;;23528:93;23617:3;23528:93;:::i;:::-;23646:2;23641:3;23637:12;23630:19;;23289:366;;;:::o;23661:419::-;23827:4;23865:2;23854:9;23850:18;23842:26;;23914:9;23908:4;23904:20;23900:1;23889:9;23885:17;23878:47;23942:131;24068:4;23942:131;:::i;:::-;23934:139;;23661:419;;;:::o;24086:180::-;24134:77;24131:1;24124:88;24231:4;24228:1;24221:15;24255:4;24252:1;24245:15;24272:180;24320:77;24317:1;24310:88;24417:4;24414:1;24407:15;24441:4;24438:1;24431:15;24458:233;24497:3;24520:24;24538:5;24520:24;:::i;:::-;24511:33;;24566:66;24559:5;24556:77;24553:103;;;24636:18;;:::i;:::-;24553:103;24683:1;24676:5;24672:13;24665:20;;24458:233;;;:::o;24697:175::-;24837:27;24833:1;24825:6;24821:14;24814:51;24697:175;:::o;24878:366::-;25020:3;25041:67;25105:2;25100:3;25041:67;:::i;:::-;25034:74;;25117:93;25206:3;25117:93;:::i;:::-;25235:2;25230:3;25226:12;25219:19;;24878:366;;;:::o;25250:419::-;25416:4;25454:2;25443:9;25439:18;25431:26;;25503:9;25497:4;25493:20;25489:1;25478:9;25474:17;25467:47;25531:131;25657:4;25531:131;:::i;:::-;25523:139;;25250:419;;;:::o;25675:225::-;25815:34;25811:1;25803:6;25799:14;25792:58;25884:8;25879:2;25871:6;25867:15;25860:33;25675:225;:::o;25906:366::-;26048:3;26069:67;26133:2;26128:3;26069:67;:::i;:::-;26062:74;;26145:93;26234:3;26145:93;:::i;:::-;26263:2;26258:3;26254:12;26247:19;;25906:366;;;:::o;26278:419::-;26444:4;26482:2;26471:9;26467:18;26459:26;;26531:9;26525:4;26521:20;26517:1;26506:9;26502:17;26495:47;26559:131;26685:4;26559:131;:::i;:::-;26551:139;;26278:419;;;:::o;26703:221::-;26843:34;26839:1;26831:6;26827:14;26820:58;26912:4;26907:2;26899:6;26895:15;26888:29;26703:221;:::o;26930:366::-;27072:3;27093:67;27157:2;27152:3;27093:67;:::i;:::-;27086:74;;27169:93;27258:3;27169:93;:::i;:::-;27287:2;27282:3;27278:12;27271:19;;26930:366;;;:::o;27302:419::-;27468:4;27506:2;27495:9;27491:18;27483:26;;27555:9;27549:4;27545:20;27541:1;27530:9;27526:17;27519:47;27583:131;27709:4;27583:131;:::i;:::-;27575:139;;27302:419;;;:::o;27727:220::-;27867:34;27863:1;27855:6;27851:14;27844:58;27936:3;27931:2;27923:6;27919:15;27912:28;27727:220;:::o;27953:366::-;28095:3;28116:67;28180:2;28175:3;28116:67;:::i;:::-;28109:74;;28192:93;28281:3;28192:93;:::i;:::-;28310:2;28305:3;28301:12;28294:19;;27953:366;;;:::o;28325:419::-;28491:4;28529:2;28518:9;28514:18;28506:26;;28578:9;28572:4;28568:20;28564:1;28553:9;28549:17;28542:47;28606:131;28732:4;28606:131;:::i;:::-;28598:139;;28325:419;;;:::o;28750:231::-;28890:34;28886:1;28878:6;28874:14;28867:58;28959:14;28954:2;28946:6;28942:15;28935:39;28750:231;:::o;28987:366::-;29129:3;29150:67;29214:2;29209:3;29150:67;:::i;:::-;29143:74;;29226:93;29315:3;29226:93;:::i;:::-;29344:2;29339:3;29335:12;29328:19;;28987:366;;;:::o;29359:419::-;29525:4;29563:2;29552:9;29548:18;29540:26;;29612:9;29606:4;29602:20;29598:1;29587:9;29583:17;29576:47;29640:131;29766:4;29640:131;:::i;:::-;29632:139;;29359:419;;;:::o;29784:228::-;29924:34;29920:1;29912:6;29908:14;29901:58;29993:11;29988:2;29980:6;29976:15;29969:36;29784:228;:::o;30018:366::-;30160:3;30181:67;30245:2;30240:3;30181:67;:::i;:::-;30174:74;;30257:93;30346:3;30257:93;:::i;:::-;30375:2;30370:3;30366:12;30359:19;;30018:366;;;:::o;30390:419::-;30556:4;30594:2;30583:9;30579:18;30571:26;;30643:9;30637:4;30633:20;30629:1;30618:9;30614:17;30607:47;30671:131;30797:4;30671:131;:::i;:::-;30663:139;;30390:419;;;:::o;30815:223::-;30955:34;30951:1;30943:6;30939:14;30932:58;31024:6;31019:2;31011:6;31007:15;31000:31;30815:223;:::o;31044:366::-;31186:3;31207:67;31271:2;31266:3;31207:67;:::i;:::-;31200:74;;31283:93;31372:3;31283:93;:::i;:::-;31401:2;31396:3;31392:12;31385:19;;31044:366;;;:::o;31416:419::-;31582:4;31620:2;31609:9;31605:18;31597:26;;31669:9;31663:4;31659:20;31655:1;31644:9;31640:17;31633:47;31697:131;31823:4;31697:131;:::i;:::-;31689:139;;31416:419;;;:::o;31841:191::-;31881:4;31901:20;31919:1;31901:20;:::i;:::-;31896:25;;31935:20;31953:1;31935:20;:::i;:::-;31930:25;;31974:1;31971;31968:8;31965:34;;;31979:18;;:::i;:::-;31965:34;32024:1;32021;32017:9;32009:17;;31841:191;;;;:::o;32038:305::-;32078:3;32097:20;32115:1;32097:20;:::i;:::-;32092:25;;32131:20;32149:1;32131:20;:::i;:::-;32126:25;;32285:1;32217:66;32213:74;32210:1;32207:81;32204:107;;;32291:18;;:::i;:::-;32204:107;32335:1;32332;32328:9;32321:16;;32038:305;;;;:::o;32349:237::-;32489:34;32485:1;32477:6;32473:14;32466:58;32558:20;32553:2;32545:6;32541:15;32534:45;32349:237;:::o;32592:366::-;32734:3;32755:67;32819:2;32814:3;32755:67;:::i;:::-;32748:74;;32831:93;32920:3;32831:93;:::i;:::-;32949:2;32944:3;32940:12;32933:19;;32592:366;;;:::o;32964:419::-;33130:4;33168:2;33157:9;33153:18;33145:26;;33217:9;33211:4;33207:20;33203:1;33192:9;33188:17;33181:47;33245:131;33371:4;33245:131;:::i;:::-;33237:139;;32964:419;;;:::o;33389:236::-;33529:34;33525:1;33517:6;33513:14;33506:58;33598:19;33593:2;33585:6;33581:15;33574:44;33389:236;:::o;33631:366::-;33773:3;33794:67;33858:2;33853:3;33794:67;:::i;:::-;33787:74;;33870:93;33959:3;33870:93;:::i;:::-;33988:2;33983:3;33979:12;33972:19;;33631:366;;;:::o;34003:419::-;34169:4;34207:2;34196:9;34192:18;34184:26;;34256:9;34250:4;34246:20;34242:1;34231:9;34227:17;34220:47;34284:131;34410:4;34284:131;:::i;:::-;34276:139;;34003:419;;;:::o;34428:148::-;34530:11;34567:3;34552:18;;34428:148;;;;:::o;34582:377::-;34688:3;34716:39;34749:5;34716:39;:::i;:::-;34771:89;34853:6;34848:3;34771:89;:::i;:::-;34764:96;;34869:52;34914:6;34909:3;34902:4;34895:5;34891:16;34869:52;:::i;:::-;34946:6;34941:3;34937:16;34930:23;;34692:267;34582:377;;;;:::o;34965:435::-;35145:3;35167:95;35258:3;35249:6;35167:95;:::i;:::-;35160:102;;35279:95;35370:3;35361:6;35279:95;:::i;:::-;35272:102;;35391:3;35384:10;;34965:435;;;;;:::o;35406:233::-;35546:34;35542:1;35534:6;35530:14;35523:58;35615:16;35610:2;35602:6;35598:15;35591:41;35406:233;:::o;35645:366::-;35787:3;35808:67;35872:2;35867:3;35808:67;:::i;:::-;35801:74;;35884:93;35973:3;35884:93;:::i;:::-;36002:2;35997:3;35993:12;35986:19;;35645:366;;;:::o;36017:419::-;36183:4;36221:2;36210:9;36206:18;36198:26;;36270:9;36264:4;36260:20;36256:1;36245:9;36241:17;36234:47;36298:131;36424:4;36298:131;:::i;:::-;36290:139;;36017:419;;;:::o;36442:98::-;36493:6;36527:5;36521:12;36511:22;;36442:98;;;:::o;36546:168::-;36629:11;36663:6;36658:3;36651:19;36703:4;36698:3;36694:14;36679:29;;36546:168;;;;:::o;36720:360::-;36806:3;36834:38;36866:5;36834:38;:::i;:::-;36888:70;36951:6;36946:3;36888:70;:::i;:::-;36881:77;;36967:52;37012:6;37007:3;37000:4;36993:5;36989:16;36967:52;:::i;:::-;37044:29;37066:6;37044:29;:::i;:::-;37039:3;37035:39;37028:46;;36810:270;36720:360;;;;:::o;37086:640::-;37281:4;37319:3;37308:9;37304:19;37296:27;;37333:71;37401:1;37390:9;37386:17;37377:6;37333:71;:::i;:::-;37414:72;37482:2;37471:9;37467:18;37458:6;37414:72;:::i;:::-;37496;37564:2;37553:9;37549:18;37540:6;37496:72;:::i;:::-;37615:9;37609:4;37605:20;37600:2;37589:9;37585:18;37578:48;37643:76;37714:4;37705:6;37643:76;:::i;:::-;37635:84;;37086:640;;;;;;;:::o;37732:141::-;37788:5;37819:6;37813:13;37804:22;;37835:32;37861:5;37835:32;:::i;:::-;37732:141;;;;:::o;37879:349::-;37948:6;37997:2;37985:9;37976:7;37972:23;37968:32;37965:119;;;38003:79;;:::i;:::-;37965:119;38123:1;38148:63;38203:7;38194:6;38183:9;38179:22;38148:63;:::i;:::-;38138:73;;38094:127;37879:349;;;;:::o;38234:234::-;38374:34;38370:1;38362:6;38358:14;38351:58;38443:17;38438:2;38430:6;38426:15;38419:42;38234:234;:::o;38474:366::-;38616:3;38637:67;38701:2;38696:3;38637:67;:::i;:::-;38630:74;;38713:93;38802:3;38713:93;:::i;:::-;38831:2;38826:3;38822:12;38815:19;;38474:366;;;:::o;38846:419::-;39012:4;39050:2;39039:9;39035:18;39027:26;;39099:9;39093:4;39089:20;39085:1;39074:9;39070:17;39063:47;39127:131;39253:4;39127:131;:::i;:::-;39119:139;;38846:419;;;:::o;39271:180::-;39319:77;39316:1;39309:88;39416:4;39413:1;39406:15;39440:4;39437:1;39430:15;39457:185;39497:1;39514:20;39532:1;39514:20;:::i;:::-;39509:25;;39548:20;39566:1;39548:20;:::i;:::-;39543:25;;39587:1;39577:35;;39592:18;;:::i;:::-;39577:35;39634:1;39631;39627:9;39622:14;;39457:185;;;;:::o;39648:176::-;39680:1;39697:20;39715:1;39697:20;:::i;:::-;39692:25;;39731:20;39749:1;39731:20;:::i;:::-;39726:25;;39770:1;39760:35;;39775:18;;:::i;:::-;39760:35;39816:1;39813;39809:9;39804:14;;39648:176;;;;:::o;39830:182::-;39970:34;39966:1;39958:6;39954:14;39947:58;39830:182;:::o;40018:366::-;40160:3;40181:67;40245:2;40240:3;40181:67;:::i;:::-;40174:74;;40257:93;40346:3;40257:93;:::i;:::-;40375:2;40370:3;40366:12;40359:19;;40018:366;;;:::o;40390:419::-;40556:4;40594:2;40583:9;40579:18;40571:26;;40643:9;40637:4;40633:20;40629:1;40618:9;40614:17;40607:47;40671:131;40797:4;40671:131;:::i;:::-;40663:139;;40390:419;;;:::o;40815:178::-;40955:30;40951:1;40943:6;40939:14;40932:54;40815:178;:::o;40999:366::-;41141:3;41162:67;41226:2;41221:3;41162:67;:::i;:::-;41155:74;;41238:93;41327:3;41238:93;:::i;:::-;41356:2;41351:3;41347:12;41340:19;;40999:366;;;:::o;41371:419::-;41537:4;41575:2;41564:9;41560:18;41552:26;;41624:9;41618:4;41614:20;41610:1;41599:9;41595:17;41588:47;41652:131;41778:4;41652:131;:::i;:::-;41644:139;;41371:419;;;:::o

Swarm Source

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