ETH Price: $3,457.98 (+2.07%)
Gas: 10 Gwei

Token

ethv (INSCRIPTION)
 

Overview

Max Total Supply

24,134 INSCRIPTION

Holders

4,627

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
Null: 0x000...000
Balance
0 INSCRIPTION
0x0000000000000000000000000000000000000000
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:
ethv

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 10000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-12-15
*/

// File: contracts/Idata.sol


pragma solidity ^0.8.19;

interface Idata {
    function tokenData(uint tokenid) external  view returns (string memory);
    function ownerComment1(uint tokenId) external view returns(string memory);
    
}
// File: @openzeppelin/[email protected]/utils/Counters.sol


// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/[email protected]/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/[email protected]/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/[email protected]/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: @openzeppelin/[email protected]/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/[email protected]/token/ERC721/IERC721Receiver.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/[email protected]/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/[email protected]/utils/introspection/ERC165.sol


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

pragma solidity ^0.8.0;


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

// File: @openzeppelin/[email protected]/token/ERC721/IERC721.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/[email protected]/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/[email protected]/token/ERC721/extensions/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/[email protected]/token/ERC721/ERC721.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: @openzeppelin/[email protected]/token/ERC721/extensions/ERC721Enumerable.sol


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/vivibsc.sol


pragma solidity ^0.8;







contract ethv is ERC721, ERC721Enumerable,Ownable {

    Idata data;

    uint256 private _nextTokenId;
    using Strings for uint256;
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIds;
    string description;

    

    mapping(uint256 => uint256) public tokenIdBalance;
    mapping(address => mapping(address => uint)) public tokenApproved;//owner spender tokenid
    mapping (address => mapping (address =>mapping (uint => uint)))public tokenApprovedByallowanc;//owner spender tokenid amount
    mapping (address => uint) public userMintedAmount;

    //uint No;
    uint public MAX_PER_MINT;
    uint public inscription_token_amount;
    uint public MAX_LIQUIDITY_AMOUNT;
    uint public MINTED_LIQUIDITY_AMOUNT;
    uint public MAX_SUPPLY;
    uint public MAX_PERMINT_AMOUNT;


    fallback() external payable {
        inscribeForInternal2(MAX_PERMINT_AMOUNT);
    }
    receive() external payable { 
        inscribeForInternal2(MAX_PERMINT_AMOUNT);
    }



    constructor(string memory _name, string memory _description,uint _maxTotalSupply,uint _maxPermint_Amount,uint _max_per_mint)
        ERC721(_name, "INSCRIPTION")
    {
        description = _description;
        MAX_SUPPLY = _maxTotalSupply;
        MAX_PERMINT_AMOUNT = _maxPermint_Amount;
        MAX_PER_MINT = _max_per_mint;
        MAX_LIQUIDITY_AMOUNT =  MAX_SUPPLY;

    }

    function setData(address _data) public onlyOwner {
        data = Idata(_data);
    }

    function approvedByallowanc(address spender,uint tokenId,uint amount) public {
        require(ownerOf(tokenId)==msg.sender,"not owner");
        tokenApprovedByallowanc[msg.sender][spender][tokenId] = amount;

    }


    function approveTokenIdToken(uint tokenId,address spender) public {
        require(ownerOf(tokenId)==msg.sender,"not owner");
        tokenApproved[msg.sender][spender] = tokenId;

    }
    function revokeApproveTokenIdToken(uint tokenId,address spender) public {
        require(ownerOf(tokenId)==msg.sender,"not owner");
        tokenApproved[msg.sender][spender] = 0;

    }

    function transferFromBalanceAmount(uint fromTokenId,uint toTokenId,uint amount) public{
        //require(ownerOf(fromTokenId) == msg.sender,"not owner");
        require(_exists(toTokenId), "ERC721Metadata: URI query for nonexistent token");
        require(tokenApproved[ownerOf(fromTokenId)][msg.sender] == fromTokenId,"not approve");
        require(tokenIdBalance[toTokenId] >= amount,"not enought token in balance");
        tokenIdBalance[fromTokenId] -= amount;
        tokenIdBalance[toTokenId] += amount;
    }

    function transferFromBalanceAmountByAllowance(uint fromTokenId,uint toTokenId,uint amount) public{
        require(_exists(toTokenId), "ERC721Metadata: URI query for nonexistent token");
        //require(ownerOf(fromTokenId) == msg.sender,"not owner");
        require(tokenApprovedByallowanc[ownerOf(fromTokenId)][msg.sender][fromTokenId] > 0,"not approve");
        require(tokenIdBalance[toTokenId] >= amount,"not enought token in balance");
        tokenApprovedByallowanc[ownerOf(fromTokenId)][msg.sender][fromTokenId] -= amount;
        tokenIdBalance[fromTokenId] -= amount;
        tokenIdBalance[toTokenId] += amount;
    }


    function transferBalanceAmount(uint fromTokenId,uint toTokenId,uint amount) public{
        require(_exists(toTokenId), "ERC721Metadata: URI query for nonexistent token");
        require(ownerOf(fromTokenId) == msg.sender,"not owner");
        require(tokenIdBalance[toTokenId] >= amount,"not enought token in balance");
        tokenIdBalance[fromTokenId] -= amount;
        tokenIdBalance[toTokenId] += amount;
    }

    function addBalanceToTokenId(uint tokenId,uint amount) public onlyOwner {
        require(amount + MINTED_LIQUIDITY_AMOUNT  <= MAX_LIQUIDITY_AMOUNT,"exceed max quilidity amount");
        MINTED_LIQUIDITY_AMOUNT += amount;
        tokenIdBalance[tokenId] += amount;
        MAX_SUPPLY += amount;
        inscription_token_amount;

    }


    // The following functions are overrides required by Solidity.





    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }





    function addrToString(address addr) public pure returns (string memory) {
        return uint256(uint160(addr)).toString();
    }

    function getLevels(uint256 tokenId) public view returns (string memory) {
        uint256 levels = tokenIdBalance[tokenId];
        return levels.toString();
    }

    function getLevels_Num(uint256 tokenId) public view returns (uint) {
        uint256 levels = tokenIdBalance[tokenId];
        return levels;
    }

    function tokenURI(uint256 tokenId) public override view returns (string memory){
        return data.tokenData(tokenId);
    }

    function inscribe(uint _amount) public {
        require(_amount <= MAX_PERMINT_AMOUNT,"exceed max permint amount");
        require(inscription_token_amount + _amount <= MAX_SUPPLY,"inscribe ended");
        require(userMintedAmount[msg.sender] + 1 <= MAX_PER_MINT,"exceed per user max mint amount");
        _tokenIds.increment();
        userMintedAmount[msg.sender] ++;
        uint256 newItemId = _tokenIds.current();
        _safeMint(msg.sender, newItemId);
        tokenIdBalance[newItemId] = _amount;
        inscription_token_amount += _amount;

        //_setTokenURI(newItemId, getTokenURI(newItemId));
    }

    function inscribeForInternal(uint _amount) internal {
        //require(_amount <= MAX_PERMINT_AMOUNT,"exceed max permint amount");
        require(inscription_token_amount + _amount <= MAX_SUPPLY,"inscribe ended");
        _tokenIds.increment();
        uint256 newItemId = _tokenIds.current();
        _safeMint(msg.sender, newItemId);
        tokenIdBalance[newItemId] = _amount;
        inscription_token_amount += _amount;
        //_setTokenURI(newItemId, getTokenURI(newItemId));
    }

    function inscribeForInternal2(uint _amount) internal {
        require(_amount <= MAX_PERMINT_AMOUNT,"exceed max permint amount");
        require(inscription_token_amount + _amount <= MAX_SUPPLY,"inscribe ended");
        _tokenIds.increment();
        userMintedAmount[msg.sender] ++;
        uint256 newItemId = _tokenIds.current();
        _safeMint(msg.sender, newItemId);
        tokenIdBalance[newItemId] = _amount;
        inscription_token_amount += _amount;
        //_setTokenURI(newItemId, getTokenURI(newItemId));
    }

    function merge(uint [] memory _tokenIdArr) public {
        uint amount;
        for(uint i; i < _tokenIdArr.length; i++)
        {
            amount += getLevels_Num(_tokenIdArr[i]);
            burn(_tokenIdArr[i]);
            
        }
        //inscription_token_amount += amount;

        //uint amount = getLevels_Num(tokenId1) + getLevels_Num(tokenId2);
        inscribeForInternal(amount);
    }
    function seperate(uint _tokenId,uint [] memory _amountArr) public {
        uint sum;

        for(uint i; i < _amountArr.length; i++)
        {
            inscribeForInternal(_amountArr[i]);
            sum += _amountArr[i];
        }
        require(getLevels_Num(_tokenId) == sum,"no equal");

        burn(_tokenId);
        


    }

    function burn(uint _tokenId) public {
        require(ownerOf(_tokenId) == msg.sender,"no owner");
        inscription_token_amount -= getLevels_Num(_tokenId);
        _burn(_tokenId);
        tokenIdBalance[_tokenId] = 0;
    }

    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }
    /**
     * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
     * - When `from` is zero, the tokens were minted for `to`.
     * - When `to` is zero, ``from``'s tokens were burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 firstTokenId, uint256 batchSize) internal virtual {}

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_description","type":"string"},{"internalType":"uint256","name":"_maxTotalSupply","type":"uint256"},{"internalType":"uint256","name":"_maxPermint_Amount","type":"uint256"},{"internalType":"uint256","name":"_max_per_mint","type":"uint256"}],"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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"MAX_LIQUIDITY_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PERMINT_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTED_LIQUIDITY_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"addBalanceToTokenId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"addrToString","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"spender","type":"address"}],"name":"approveTokenIdToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approvedByallowanc","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getLevels","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getLevels_Num","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"inscribe","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"inscription_token_amount","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":"uint256[]","name":"_tokenIdArr","type":"uint256[]"}],"name":"merge","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"spender","type":"address"}],"name":"revokeApproveTokenIdToken","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":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256[]","name":"_amountArr","type":"uint256[]"}],"name":"seperate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_data","type":"address"}],"name":"setData","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":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"tokenApproved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenApprovedByallowanc","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenIdBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"internalType":"uint256","name":"toTokenId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferBalanceAmount","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":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"internalType":"uint256","name":"toTokenId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFromBalanceAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"internalType":"uint256","name":"toTokenId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFromBalanceAmountByAllowance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userMintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040523480156200001157600080fd5b50604051620037c2380380620037c28339810160408190526200003491620001d6565b60408051808201909152600b81526a24a729a1a924a82a24a7a760a91b602082015285906000620000668382620002ea565b506001620000758282620002ea565b505050620000926200008c620000bb60201b60201c565b620000bf565b600e620000a08582620002ea565b50601783905560189190915560135560155550620003b69050565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200013957600080fd5b81516001600160401b038082111562000156576200015662000111565b604051601f8301601f19908116603f0116810190828211818310171562000181576200018162000111565b816040528381526020925086838588010111156200019e57600080fd5b600091505b83821015620001c25785820183015181830184015290820190620001a3565b600093810190920192909252949350505050565b600080600080600060a08688031215620001ef57600080fd5b85516001600160401b03808211156200020757600080fd5b6200021589838a0162000127565b965060208801519150808211156200022c57600080fd5b506200023b8882890162000127565b60408801516060890151608090990151979a919950979695509350505050565b600181811c908216806200027057607f821691505b6020821081036200029157634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002e557600081815260208120601f850160051c81016020861015620002c05750805b601f850160051c820191505b81811015620002e157828155600101620002cc565b5050505b505050565b81516001600160401b0381111562000306576200030662000111565b6200031e816200031784546200025b565b8462000297565b602080601f8311600181146200035657600084156200033d5750858301515b600019600386901b1c1916600185901b178555620002e1565b600085815260208120601f198616915b82811015620003875788860151825594840194600190910190840162000366565b5085821015620003a65787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6133fc80620003c66000396000f3fe6080604052600436106102eb5760003560e01c8063715018a611610184578063c87b56dd116100d6578063e86750291161008a578063f2fde38b11610064578063f2fde38b1461088c578063f43785f9146108ac578063f4edce3b146108cc576102fd565b8063e86750291461080d578063e985e9c51461082d578063ea04007e14610876576102fd565b8063de442602116100bb578063de44260214610795578063de62d842146107b5578063e15be0a6146107d5576102fd565b8063c87b56dd14610755578063ce04ed9214610775576102fd565b8063a22cb46511610138578063b88d4fde11610112578063b88d4fde146106d7578063c450b954146106f7578063c47f158214610735576102fd565b8063a22cb46514610677578063aed7b37f14610697578063b7d534a1146106b7576102fd565b80638da5cb5b116101695780638da5cb5b1461061757806395d89b41146106355780639c6e3a171461064a576102fd565b8063715018a6146105ec57806387ce765714610601576102fd565b80632f745c591161023d57806342966c68116101f15780636352211e116101cb5780636352211e1461057f57806364a8c9d41461059f57806370a08231146105cc576102fd565b806342966c681461051f5780634f6ccce71461053f57806361dfdae61461055f576102fd565b806337d4c60c1161022257806337d4c60c146104c95780633a9aa17d146104e957806342842e0e146104ff576102fd565b80632f745c591461049357806332cb6b0c146104b3576102fd565b8063129072101161029f57806323b872dd1161027957806323b872dd1461042657806325656307146104465780632b36690614610473576102fd565b806312907210146103db57806318160ddd146103fb5780631c492ad714610410576102fd565b8063081812fc116102d0578063081812fc1461035f578063095ea7b31461039757806309d42b30146103b7576102fd565b806301ffc9a71461030857806306fdde031461033d576102fd565b366102fd576102fb6018546108ec565b005b6102fb6018546108ec565b34801561031457600080fd5b50610328610323366004612c8f565b610a13565b60405190151581526020015b60405180910390f35b34801561034957600080fd5b50610352610a24565b6040516103349190612d1a565b34801561036b57600080fd5b5061037f61037a366004612d2d565b610ab6565b6040516001600160a01b039091168152602001610334565b3480156103a357600080fd5b506102fb6103b2366004612d62565b610b5c565b3480156103c357600080fd5b506103cd60135481565b604051908152602001610334565b3480156103e757600080fd5b506102fb6103f6366004612d8c565b610c8d565b34801561040757600080fd5b506008546103cd565b34801561041c57600080fd5b506103cd60145481565b34801561043257600080fd5b506102fb610441366004612db8565b610e9c565b34801561045257600080fd5b506103cd610461366004612df4565b60126020526000908152604090205481565b34801561047f57600080fd5b506102fb61048e366004612e0f565b610f23565b34801561049f57600080fd5b506103cd6104ae366004612d62565b610fad565b3480156104bf57600080fd5b506103cd60175481565b3480156104d557600080fd5b506102fb6104e4366004612d8c565b611055565b3480156104f557600080fd5b506103cd60165481565b34801561050b57600080fd5b506102fb61051a366004612db8565b6111dd565b34801561052b57600080fd5b506102fb61053a366004612d2d565b6111f8565b34801561054b57600080fd5b506103cd61055a366004612d2d565b611298565b34801561056b57600080fd5b506102fb61057a366004612df4565b61133c565b34801561058b57600080fd5b5061037f61059a366004612d2d565b6113d0565b3480156105ab57600080fd5b506103cd6105ba366004612d2d565b6000908152600f602052604090205490565b3480156105d857600080fd5b506103cd6105e7366004612df4565b61145b565b3480156105f857600080fd5b506102fb6114f5565b34801561060d57600080fd5b506103cd60155481565b34801561062357600080fd5b50600a546001600160a01b031661037f565b34801561064157600080fd5b5061035261155b565b34801561065657600080fd5b506103cd610665366004612d2d565b600f6020526000908152604090205481565b34801561068357600080fd5b506102fb610692366004612e3b565b61156a565b3480156106a357600080fd5b506102fb6106b2366004612e77565b611579565b3480156106c357600080fd5b506103526106d2366004612df4565b61167f565b3480156106e357600080fd5b506102fb6106f2366004612f5d565b611693565b34801561070357600080fd5b506103cd610712366004612db8565b601160209081526000938452604080852082529284528284209052825290205481565b34801561074157600080fd5b506102fb610750366004613008565b611721565b34801561076157600080fd5b50610352610770366004612d2d565b6117b4565b34801561078157600080fd5b506102fb610790366004612e0f565b61185d565b3480156107a157600080fd5b506102fb6107b0366004612d2d565b6118e4565b3480156107c157600080fd5b506102fb6107d03660046130bb565b611a01565b3480156107e157600080fd5b506103cd6107f03660046130f0565b601060209081526000928352604080842090915290825290205481565b34801561081957600080fd5b506102fb61082836600461311a565b611a87565b34801561083957600080fd5b506103286108483660046130f0565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561088257600080fd5b506103cd60185481565b34801561089857600080fd5b506102fb6108a7366004612df4565b611b56565b3480156108b857600080fd5b506103526108c7366004612d2d565b611c38565b3480156108d857600080fd5b506102fb6108e7366004612d8c565b611c5a565b6018548111156109435760405162461bcd60e51b815260206004820152601960248201527f657863656564206d6178207065726d696e7420616d6f756e740000000000000060448201526064015b60405180910390fd5b601754816014546109549190613190565b11156109a25760405162461bcd60e51b815260206004820152600e60248201527f696e73637269626520656e646564000000000000000000000000000000000000604482015260640161093a565b6109b0600d80546001019055565b3360009081526012602052604081208054916109cb836131a3565b919050555060006109db600d5490565b90506109e73382611d44565b6000818152600f6020526040812083905560148054849290610a0a908490613190565b90915550505050565b6000610a1e82611d5e565b92915050565b606060008054610a33906131db565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5f906131db565b8015610aac5780601f10610a8157610100808354040283529160200191610aac565b820191906000526020600020905b815481529060010190602001808311610a8f57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610b405760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e0000000000000000000000000000000000000000606482015260840161093a565b506000908152600460205260409020546001600160a01b031690565b6000610b67826113d0565b9050806001600160a01b0316836001600160a01b031603610bf05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f7200000000000000000000000000000000000000000000000000000000000000606482015260840161093a565b336001600160a01b0382161480610c0c5750610c0c8133610848565b610c7e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161093a565b610c888383611db4565b505050565b6000828152600260205260409020546001600160a01b0316610d175760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161093a565b600060116000610d26866113d0565b6001600160a01b0316815260208082019290925260409081016000908120338252835281812087825290925290205411610da25760405162461bcd60e51b815260206004820152600b60248201527f6e6f7420617070726f7665000000000000000000000000000000000000000000604482015260640161093a565b6000828152600f6020526040902054811115610e005760405162461bcd60e51b815260206004820152601c60248201527f6e6f7420656e6f7567687420746f6b656e20696e2062616c616e636500000000604482015260640161093a565b8060116000610e0e866113d0565b6001600160a01b0316815260208082019290925260409081016000908120338252835281812087825290925281208054909190610e4c90849061322e565b90915550506000838152600f602052604081208054839290610e6f90849061322e565b90915550506000828152600f602052604081208054839290610e92908490613190565b9091555050505050565b610ea63382611e3a565b610f185760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161093a565b610c88838383611f42565b33610f2d836113d0565b6001600160a01b031614610f835760405162461bcd60e51b815260206004820152600960248201527f6e6f74206f776e65720000000000000000000000000000000000000000000000604482015260640161093a565b3360009081526010602090815260408083206001600160a01b039490941683529290529081205550565b6000610fb88361145b565b821061102c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e6473000000000000000000000000000000000000000000606482015260840161093a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000828152600260205260409020546001600160a01b03166110df5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161093a565b82601060006110ed866113d0565b6001600160a01b0316815260208082019290925260409081016000908120338252909252902054146111615760405162461bcd60e51b815260206004820152600b60248201527f6e6f7420617070726f7665000000000000000000000000000000000000000000604482015260640161093a565b6000828152600f60205260409020548111156111bf5760405162461bcd60e51b815260206004820152601c60248201527f6e6f7420656e6f7567687420746f6b656e20696e2062616c616e636500000000604482015260640161093a565b6000838152600f602052604081208054839290610e6f90849061322e565b610c8883838360405180602001604052806000815250611693565b33611202826113d0565b6001600160a01b0316146112585760405162461bcd60e51b815260206004820152600860248201527f6e6f206f776e6572000000000000000000000000000000000000000000000000604482015260640161093a565b6000818152600f602052604090205460146000828254611278919061322e565b90915550611287905081612132565b6000908152600f6020526040812055565b60006112a360085490565b82106113175760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e64730000000000000000000000000000000000000000606482015260840161093a565b6008828154811061132a5761132a613241565b90600052602060002001549050919050565b600a546001600160a01b031633146113965760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161093a565b600b80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6000818152600260205260408120546001600160a01b031680610a1e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606482015260840161093a565b60006001600160a01b0382166114d95760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f206164647265737300000000000000000000000000000000000000000000606482015260840161093a565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461154f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161093a565b61155960006121f1565b565b606060018054610a33906131db565b61157533838361225b565b5050565b600a546001600160a01b031633146115d35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161093a565b6015546016546115e39083613190565b11156116315760405162461bcd60e51b815260206004820152601b60248201527f657863656564206d6178207175696c696469747920616d6f756e740000000000604482015260640161093a565b80601660008282546116439190613190565b90915550506000828152600f602052604081208054839290611666908490613190565b925050819055508060176000828254610a0a9190613190565b6060610a1e826001600160a01b0316612347565b61169d3383611e3a565b61170f5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161093a565b61171b8484848461247c565b50505050565b3361172b836113d0565b6001600160a01b0316146117815760405162461bcd60e51b815260206004820152600960248201527f6e6f74206f776e65720000000000000000000000000000000000000000000000604482015260640161093a565b3360009081526011602090815260408083206001600160a01b039690961683529481528482209382529290925291902055565b600b546040517fb4b5b48f000000000000000000000000000000000000000000000000000000008152600481018390526060916001600160a01b03169063b4b5b48f90602401600060405180830381865afa158015611817573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201604052610a1e9190810190613270565b33611867836113d0565b6001600160a01b0316146118bd5760405162461bcd60e51b815260206004820152600960248201527f6e6f74206f776e65720000000000000000000000000000000000000000000000604482015260640161093a565b3360009081526010602090815260408083206001600160a01b039490941683529290522055565b6018548111156119365760405162461bcd60e51b815260206004820152601960248201527f657863656564206d6178207065726d696e7420616d6f756e7400000000000000604482015260640161093a565b601754816014546119479190613190565b11156119955760405162461bcd60e51b815260206004820152600e60248201527f696e73637269626520656e646564000000000000000000000000000000000000604482015260640161093a565b601354336000908152601260205260409020546119b3906001613190565b11156109a25760405162461bcd60e51b815260206004820152601f60248201527f657863656564207065722075736572206d6178206d696e7420616d6f756e7400604482015260640161093a565b6000805b8251811015611a7d57611a3d838281518110611a2357611a23613241565b60200260200101516000908152600f602052604090205490565b611a479083613190565b9150611a6b838281518110611a5e57611a5e613241565b60200260200101516111f8565b80611a75816131a3565b915050611a05565b5061157581612505565b6000805b8251811015611aef57611ab6838281518110611aa957611aa9613241565b6020026020010151612505565b828181518110611ac857611ac8613241565b602002602001015182611adb9190613190565b915080611ae7816131a3565b915050611a8b565b506000838152600f60205260409020548114611b4d5760405162461bcd60e51b815260206004820152600860248201527f6e6f20657175616c000000000000000000000000000000000000000000000000604482015260640161093a565b610c88836111f8565b600a546001600160a01b03163314611bb05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161093a565b6001600160a01b038116611c2c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161093a565b611c35816121f1565b50565b6000818152600f6020526040902054606090611c5381612347565b9392505050565b6000828152600260205260409020546001600160a01b0316611ce45760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161093a565b33611cee846113d0565b6001600160a01b0316146111615760405162461bcd60e51b815260206004820152600960248201527f6e6f74206f776e65720000000000000000000000000000000000000000000000604482015260640161093a565b61157582826040518060200160405280600081525061257d565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d63000000000000000000000000000000000000000000000000000000001480610a1e5750610a1e82612606565b600081815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0384169081179091558190611e01826113d0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611ec45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e0000000000000000000000000000000000000000606482015260840161093a565b6000611ecf836113d0565b9050806001600160a01b0316846001600160a01b03161480611f0a5750836001600160a01b0316611eff84610ab6565b6001600160a01b0316145b80611f3a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611f55826113d0565b6001600160a01b031614611fd15760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e6572000000000000000000000000000000000000000000000000000000606482015260840161093a565b6001600160a01b03821661204c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161093a565b6120578383836126e9565b612062600082611db4565b6001600160a01b038316600090815260036020526040812080546001929061208b90849061322e565b90915550506001600160a01b03821660009081526003602052604081208054600192906120b9908490613190565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061213d826113d0565b905061214b816000846126e9565b612156600083611db4565b6001600160a01b038116600090815260036020526040812080546001929061217f90849061322e565b909155505060008281526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316036122bc5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161093a565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b60608160000361238a57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156123b4578061239e816131a3565b91506123ad9050600a83613316565b915061238e565b60008167ffffffffffffffff8111156123cf576123cf612e99565b6040519080825280601f01601f1916602001820160405280156123f9576020820181803683370190505b5090505b8415611f3a5761240e60018361322e565b915061241b600a8661332a565b612426906030613190565b60f81b81838151811061243b5761243b613241565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612475600a86613316565b94506123fd565b612487848484611f42565b612493848484846126f4565b61171b5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161093a565b601754816014546125169190613190565b11156125645760405162461bcd60e51b815260206004820152600e60248201527f696e73637269626520656e646564000000000000000000000000000000000000604482015260640161093a565b612572600d80546001019055565b60006109db600d5490565b61258783836128b3565b61259460008484846126f4565b610c885760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161093a565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061269957507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610a1e57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610a1e565b610c88838383612a19565b60006001600160a01b0384163b156128a8576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a029061275190339089908890889060040161333e565b6020604051808303816000875af19250505080156127aa575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526127a79181019061337a565b60015b61285d573d8080156127d8576040519150601f19603f3d011682016040523d82523d6000602084013e6127dd565b606091505b5080516000036128555760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161093a565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611f3a565b506001949350505050565b6001600160a01b0382166129095760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161093a565b6000818152600260205260409020546001600160a01b03161561296e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161093a565b61297a600083836126e9565b6001600160a01b03821660009081526003602052604081208054600192906129a3908490613190565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160a01b038316612a7457612a6f81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612a97565b816001600160a01b0316836001600160a01b031614612a9757612a978382612ad1565b6001600160a01b038216612aae57610c8881612b6e565b826001600160a01b0316826001600160a01b031614610c8857610c888282612c1d565b60006001612ade8461145b565b612ae8919061322e565b600083815260076020526040902054909150808214612b3b576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612b809060019061322e565b60008381526009602052604081205460088054939450909284908110612ba857612ba8613241565b906000526020600020015490508060088381548110612bc957612bc9613241565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612c0157612c01613397565b6001900381819060005260206000200160009055905550505050565b6000612c288361145b565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114611c3557600080fd5b600060208284031215612ca157600080fd5b8135611c5381612c61565b60005b83811015612cc7578181015183820152602001612caf565b50506000910152565b60008151808452612ce8816020860160208601612cac565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000611c536020830184612cd0565b600060208284031215612d3f57600080fd5b5035919050565b80356001600160a01b0381168114612d5d57600080fd5b919050565b60008060408385031215612d7557600080fd5b612d7e83612d46565b946020939093013593505050565b600080600060608486031215612da157600080fd5b505081359360208301359350604090920135919050565b600080600060608486031215612dcd57600080fd5b612dd684612d46565b9250612de460208501612d46565b9150604084013590509250925092565b600060208284031215612e0657600080fd5b611c5382612d46565b60008060408385031215612e2257600080fd5b82359150612e3260208401612d46565b90509250929050565b60008060408385031215612e4e57600080fd5b612e5783612d46565b915060208301358015158114612e6c57600080fd5b809150509250929050565b60008060408385031215612e8a57600080fd5b50508035926020909101359150565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff81118282101715612f0f57612f0f612e99565b604052919050565b600067ffffffffffffffff821115612f3157612f31612e99565b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01660200190565b60008060008060808587031215612f7357600080fd5b612f7c85612d46565b9350612f8a60208601612d46565b925060408501359150606085013567ffffffffffffffff811115612fad57600080fd5b8501601f81018713612fbe57600080fd5b8035612fd1612fcc82612f17565b612ec8565b818152886020838501011115612fe657600080fd5b8160208401602083013760006020838301015280935050505092959194509250565b60008060006060848603121561301d57600080fd5b61302684612d46565b95602085013595506040909401359392505050565b600082601f83011261304c57600080fd5b8135602067ffffffffffffffff82111561306857613068612e99565b8160051b613077828201612ec8565b928352848101820192828101908785111561309157600080fd5b83870192505b848310156130b057823582529183019190830190613097565b979650505050505050565b6000602082840312156130cd57600080fd5b813567ffffffffffffffff8111156130e457600080fd5b611f3a8482850161303b565b6000806040838503121561310357600080fd5b61310c83612d46565b9150612e3260208401612d46565b6000806040838503121561312d57600080fd5b82359150602083013567ffffffffffffffff81111561314b57600080fd5b6131578582860161303b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b80820180821115610a1e57610a1e613161565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036131d4576131d4613161565b5060010190565b600181811c908216806131ef57607f821691505b602082108103613228577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b81810381811115610a1e57610a1e613161565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006020828403121561328257600080fd5b815167ffffffffffffffff81111561329957600080fd5b8201601f810184136132aa57600080fd5b80516132b8612fcc82612f17565b8181528560208385010111156132cd57600080fd5b6132de826020830160208601612cac565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082613325576133256132e7565b500490565b600082613339576133396132e7565b500690565b60006001600160a01b038087168352808616602084015250836040830152608060608301526133706080830184612cd0565b9695505050505050565b60006020828403121561338c57600080fd5b8151611c5381612c61565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea264697066735822122097de926ffaa9e540413f0fbc41eb461e3f5247b6c0746413aeafccf1ae19162864736f6c6343000813003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000c8458800000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000001e0000000000000000000000000000000000000000000000000000000000000004657468760000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000447468652066697273742066756c6c79206f6e20636861696e20696e736372697074696f6e206465666920616e642067616d6566692070726f746f636f6c206f6e2065766d00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102eb5760003560e01c8063715018a611610184578063c87b56dd116100d6578063e86750291161008a578063f2fde38b11610064578063f2fde38b1461088c578063f43785f9146108ac578063f4edce3b146108cc576102fd565b8063e86750291461080d578063e985e9c51461082d578063ea04007e14610876576102fd565b8063de442602116100bb578063de44260214610795578063de62d842146107b5578063e15be0a6146107d5576102fd565b8063c87b56dd14610755578063ce04ed9214610775576102fd565b8063a22cb46511610138578063b88d4fde11610112578063b88d4fde146106d7578063c450b954146106f7578063c47f158214610735576102fd565b8063a22cb46514610677578063aed7b37f14610697578063b7d534a1146106b7576102fd565b80638da5cb5b116101695780638da5cb5b1461061757806395d89b41146106355780639c6e3a171461064a576102fd565b8063715018a6146105ec57806387ce765714610601576102fd565b80632f745c591161023d57806342966c68116101f15780636352211e116101cb5780636352211e1461057f57806364a8c9d41461059f57806370a08231146105cc576102fd565b806342966c681461051f5780634f6ccce71461053f57806361dfdae61461055f576102fd565b806337d4c60c1161022257806337d4c60c146104c95780633a9aa17d146104e957806342842e0e146104ff576102fd565b80632f745c591461049357806332cb6b0c146104b3576102fd565b8063129072101161029f57806323b872dd1161027957806323b872dd1461042657806325656307146104465780632b36690614610473576102fd565b806312907210146103db57806318160ddd146103fb5780631c492ad714610410576102fd565b8063081812fc116102d0578063081812fc1461035f578063095ea7b31461039757806309d42b30146103b7576102fd565b806301ffc9a71461030857806306fdde031461033d576102fd565b366102fd576102fb6018546108ec565b005b6102fb6018546108ec565b34801561031457600080fd5b50610328610323366004612c8f565b610a13565b60405190151581526020015b60405180910390f35b34801561034957600080fd5b50610352610a24565b6040516103349190612d1a565b34801561036b57600080fd5b5061037f61037a366004612d2d565b610ab6565b6040516001600160a01b039091168152602001610334565b3480156103a357600080fd5b506102fb6103b2366004612d62565b610b5c565b3480156103c357600080fd5b506103cd60135481565b604051908152602001610334565b3480156103e757600080fd5b506102fb6103f6366004612d8c565b610c8d565b34801561040757600080fd5b506008546103cd565b34801561041c57600080fd5b506103cd60145481565b34801561043257600080fd5b506102fb610441366004612db8565b610e9c565b34801561045257600080fd5b506103cd610461366004612df4565b60126020526000908152604090205481565b34801561047f57600080fd5b506102fb61048e366004612e0f565b610f23565b34801561049f57600080fd5b506103cd6104ae366004612d62565b610fad565b3480156104bf57600080fd5b506103cd60175481565b3480156104d557600080fd5b506102fb6104e4366004612d8c565b611055565b3480156104f557600080fd5b506103cd60165481565b34801561050b57600080fd5b506102fb61051a366004612db8565b6111dd565b34801561052b57600080fd5b506102fb61053a366004612d2d565b6111f8565b34801561054b57600080fd5b506103cd61055a366004612d2d565b611298565b34801561056b57600080fd5b506102fb61057a366004612df4565b61133c565b34801561058b57600080fd5b5061037f61059a366004612d2d565b6113d0565b3480156105ab57600080fd5b506103cd6105ba366004612d2d565b6000908152600f602052604090205490565b3480156105d857600080fd5b506103cd6105e7366004612df4565b61145b565b3480156105f857600080fd5b506102fb6114f5565b34801561060d57600080fd5b506103cd60155481565b34801561062357600080fd5b50600a546001600160a01b031661037f565b34801561064157600080fd5b5061035261155b565b34801561065657600080fd5b506103cd610665366004612d2d565b600f6020526000908152604090205481565b34801561068357600080fd5b506102fb610692366004612e3b565b61156a565b3480156106a357600080fd5b506102fb6106b2366004612e77565b611579565b3480156106c357600080fd5b506103526106d2366004612df4565b61167f565b3480156106e357600080fd5b506102fb6106f2366004612f5d565b611693565b34801561070357600080fd5b506103cd610712366004612db8565b601160209081526000938452604080852082529284528284209052825290205481565b34801561074157600080fd5b506102fb610750366004613008565b611721565b34801561076157600080fd5b50610352610770366004612d2d565b6117b4565b34801561078157600080fd5b506102fb610790366004612e0f565b61185d565b3480156107a157600080fd5b506102fb6107b0366004612d2d565b6118e4565b3480156107c157600080fd5b506102fb6107d03660046130bb565b611a01565b3480156107e157600080fd5b506103cd6107f03660046130f0565b601060209081526000928352604080842090915290825290205481565b34801561081957600080fd5b506102fb61082836600461311a565b611a87565b34801561083957600080fd5b506103286108483660046130f0565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561088257600080fd5b506103cd60185481565b34801561089857600080fd5b506102fb6108a7366004612df4565b611b56565b3480156108b857600080fd5b506103526108c7366004612d2d565b611c38565b3480156108d857600080fd5b506102fb6108e7366004612d8c565b611c5a565b6018548111156109435760405162461bcd60e51b815260206004820152601960248201527f657863656564206d6178207065726d696e7420616d6f756e740000000000000060448201526064015b60405180910390fd5b601754816014546109549190613190565b11156109a25760405162461bcd60e51b815260206004820152600e60248201527f696e73637269626520656e646564000000000000000000000000000000000000604482015260640161093a565b6109b0600d80546001019055565b3360009081526012602052604081208054916109cb836131a3565b919050555060006109db600d5490565b90506109e73382611d44565b6000818152600f6020526040812083905560148054849290610a0a908490613190565b90915550505050565b6000610a1e82611d5e565b92915050565b606060008054610a33906131db565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5f906131db565b8015610aac5780601f10610a8157610100808354040283529160200191610aac565b820191906000526020600020905b815481529060010190602001808311610a8f57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610b405760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e0000000000000000000000000000000000000000606482015260840161093a565b506000908152600460205260409020546001600160a01b031690565b6000610b67826113d0565b9050806001600160a01b0316836001600160a01b031603610bf05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f7200000000000000000000000000000000000000000000000000000000000000606482015260840161093a565b336001600160a01b0382161480610c0c5750610c0c8133610848565b610c7e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161093a565b610c888383611db4565b505050565b6000828152600260205260409020546001600160a01b0316610d175760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161093a565b600060116000610d26866113d0565b6001600160a01b0316815260208082019290925260409081016000908120338252835281812087825290925290205411610da25760405162461bcd60e51b815260206004820152600b60248201527f6e6f7420617070726f7665000000000000000000000000000000000000000000604482015260640161093a565b6000828152600f6020526040902054811115610e005760405162461bcd60e51b815260206004820152601c60248201527f6e6f7420656e6f7567687420746f6b656e20696e2062616c616e636500000000604482015260640161093a565b8060116000610e0e866113d0565b6001600160a01b0316815260208082019290925260409081016000908120338252835281812087825290925281208054909190610e4c90849061322e565b90915550506000838152600f602052604081208054839290610e6f90849061322e565b90915550506000828152600f602052604081208054839290610e92908490613190565b9091555050505050565b610ea63382611e3a565b610f185760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161093a565b610c88838383611f42565b33610f2d836113d0565b6001600160a01b031614610f835760405162461bcd60e51b815260206004820152600960248201527f6e6f74206f776e65720000000000000000000000000000000000000000000000604482015260640161093a565b3360009081526010602090815260408083206001600160a01b039490941683529290529081205550565b6000610fb88361145b565b821061102c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e6473000000000000000000000000000000000000000000606482015260840161093a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000828152600260205260409020546001600160a01b03166110df5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161093a565b82601060006110ed866113d0565b6001600160a01b0316815260208082019290925260409081016000908120338252909252902054146111615760405162461bcd60e51b815260206004820152600b60248201527f6e6f7420617070726f7665000000000000000000000000000000000000000000604482015260640161093a565b6000828152600f60205260409020548111156111bf5760405162461bcd60e51b815260206004820152601c60248201527f6e6f7420656e6f7567687420746f6b656e20696e2062616c616e636500000000604482015260640161093a565b6000838152600f602052604081208054839290610e6f90849061322e565b610c8883838360405180602001604052806000815250611693565b33611202826113d0565b6001600160a01b0316146112585760405162461bcd60e51b815260206004820152600860248201527f6e6f206f776e6572000000000000000000000000000000000000000000000000604482015260640161093a565b6000818152600f602052604090205460146000828254611278919061322e565b90915550611287905081612132565b6000908152600f6020526040812055565b60006112a360085490565b82106113175760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e64730000000000000000000000000000000000000000606482015260840161093a565b6008828154811061132a5761132a613241565b90600052602060002001549050919050565b600a546001600160a01b031633146113965760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161093a565b600b80547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b6000818152600260205260408120546001600160a01b031680610a1e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606482015260840161093a565b60006001600160a01b0382166114d95760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f206164647265737300000000000000000000000000000000000000000000606482015260840161093a565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461154f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161093a565b61155960006121f1565b565b606060018054610a33906131db565b61157533838361225b565b5050565b600a546001600160a01b031633146115d35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161093a565b6015546016546115e39083613190565b11156116315760405162461bcd60e51b815260206004820152601b60248201527f657863656564206d6178207175696c696469747920616d6f756e740000000000604482015260640161093a565b80601660008282546116439190613190565b90915550506000828152600f602052604081208054839290611666908490613190565b925050819055508060176000828254610a0a9190613190565b6060610a1e826001600160a01b0316612347565b61169d3383611e3a565b61170f5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606482015260840161093a565b61171b8484848461247c565b50505050565b3361172b836113d0565b6001600160a01b0316146117815760405162461bcd60e51b815260206004820152600960248201527f6e6f74206f776e65720000000000000000000000000000000000000000000000604482015260640161093a565b3360009081526011602090815260408083206001600160a01b039690961683529481528482209382529290925291902055565b600b546040517fb4b5b48f000000000000000000000000000000000000000000000000000000008152600481018390526060916001600160a01b03169063b4b5b48f90602401600060405180830381865afa158015611817573d6000803e3d6000fd5b505050506040513d6000823e601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201604052610a1e9190810190613270565b33611867836113d0565b6001600160a01b0316146118bd5760405162461bcd60e51b815260206004820152600960248201527f6e6f74206f776e65720000000000000000000000000000000000000000000000604482015260640161093a565b3360009081526010602090815260408083206001600160a01b039490941683529290522055565b6018548111156119365760405162461bcd60e51b815260206004820152601960248201527f657863656564206d6178207065726d696e7420616d6f756e7400000000000000604482015260640161093a565b601754816014546119479190613190565b11156119955760405162461bcd60e51b815260206004820152600e60248201527f696e73637269626520656e646564000000000000000000000000000000000000604482015260640161093a565b601354336000908152601260205260409020546119b3906001613190565b11156109a25760405162461bcd60e51b815260206004820152601f60248201527f657863656564207065722075736572206d6178206d696e7420616d6f756e7400604482015260640161093a565b6000805b8251811015611a7d57611a3d838281518110611a2357611a23613241565b60200260200101516000908152600f602052604090205490565b611a479083613190565b9150611a6b838281518110611a5e57611a5e613241565b60200260200101516111f8565b80611a75816131a3565b915050611a05565b5061157581612505565b6000805b8251811015611aef57611ab6838281518110611aa957611aa9613241565b6020026020010151612505565b828181518110611ac857611ac8613241565b602002602001015182611adb9190613190565b915080611ae7816131a3565b915050611a8b565b506000838152600f60205260409020548114611b4d5760405162461bcd60e51b815260206004820152600860248201527f6e6f20657175616c000000000000000000000000000000000000000000000000604482015260640161093a565b610c88836111f8565b600a546001600160a01b03163314611bb05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161093a565b6001600160a01b038116611c2c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840161093a565b611c35816121f1565b50565b6000818152600f6020526040902054606090611c5381612347565b9392505050565b6000828152600260205260409020546001600160a01b0316611ce45760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606482015260840161093a565b33611cee846113d0565b6001600160a01b0316146111615760405162461bcd60e51b815260206004820152600960248201527f6e6f74206f776e65720000000000000000000000000000000000000000000000604482015260640161093a565b61157582826040518060200160405280600081525061257d565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d63000000000000000000000000000000000000000000000000000000001480610a1e5750610a1e82612606565b600081815260046020526040902080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0384169081179091558190611e01826113d0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611ec45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e0000000000000000000000000000000000000000606482015260840161093a565b6000611ecf836113d0565b9050806001600160a01b0316846001600160a01b03161480611f0a5750836001600160a01b0316611eff84610ab6565b6001600160a01b0316145b80611f3a57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611f55826113d0565b6001600160a01b031614611fd15760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e6572000000000000000000000000000000000000000000000000000000606482015260840161093a565b6001600160a01b03821661204c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161093a565b6120578383836126e9565b612062600082611db4565b6001600160a01b038316600090815260036020526040812080546001929061208b90849061322e565b90915550506001600160a01b03821660009081526003602052604081208054600192906120b9908490613190565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061213d826113d0565b905061214b816000846126e9565b612156600083611db4565b6001600160a01b038116600090815260036020526040812080546001929061217f90849061322e565b909155505060008281526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316036122bc5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161093a565b6001600160a01b0383811660008181526005602090815260408083209487168084529482529182902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b60608160000361238a57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156123b4578061239e816131a3565b91506123ad9050600a83613316565b915061238e565b60008167ffffffffffffffff8111156123cf576123cf612e99565b6040519080825280601f01601f1916602001820160405280156123f9576020820181803683370190505b5090505b8415611f3a5761240e60018361322e565b915061241b600a8661332a565b612426906030613190565b60f81b81838151811061243b5761243b613241565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612475600a86613316565b94506123fd565b612487848484611f42565b612493848484846126f4565b61171b5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161093a565b601754816014546125169190613190565b11156125645760405162461bcd60e51b815260206004820152600e60248201527f696e73637269626520656e646564000000000000000000000000000000000000604482015260640161093a565b612572600d80546001019055565b60006109db600d5490565b61258783836128b3565b61259460008484846126f4565b610c885760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161093a565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061269957507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610a1e57507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610a1e565b610c88838383612a19565b60006001600160a01b0384163b156128a8576040517f150b7a020000000000000000000000000000000000000000000000000000000081526001600160a01b0385169063150b7a029061275190339089908890889060040161333e565b6020604051808303816000875af19250505080156127aa575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019092526127a79181019061337a565b60015b61285d573d8080156127d8576040519150601f19603f3d011682016040523d82523d6000602084013e6127dd565b606091505b5080516000036128555760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e7465720000000000000000000000000000606482015260840161093a565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050611f3a565b506001949350505050565b6001600160a01b0382166129095760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161093a565b6000818152600260205260409020546001600160a01b03161561296e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161093a565b61297a600083836126e9565b6001600160a01b03821660009081526003602052604081208054600192906129a3908490613190565b909155505060008181526002602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160a01b038316612a7457612a6f81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612a97565b816001600160a01b0316836001600160a01b031614612a9757612a978382612ad1565b6001600160a01b038216612aae57610c8881612b6e565b826001600160a01b0316826001600160a01b031614610c8857610c888282612c1d565b60006001612ade8461145b565b612ae8919061322e565b600083815260076020526040902054909150808214612b3b576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612b809060019061322e565b60008381526009602052604081205460088054939450909284908110612ba857612ba8613241565b906000526020600020015490508060088381548110612bc957612bc9613241565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612c0157612c01613397565b6001900381819060005260206000200160009055905550505050565b6000612c288361145b565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114611c3557600080fd5b600060208284031215612ca157600080fd5b8135611c5381612c61565b60005b83811015612cc7578181015183820152602001612caf565b50506000910152565b60008151808452612ce8816020860160208601612cac565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000611c536020830184612cd0565b600060208284031215612d3f57600080fd5b5035919050565b80356001600160a01b0381168114612d5d57600080fd5b919050565b60008060408385031215612d7557600080fd5b612d7e83612d46565b946020939093013593505050565b600080600060608486031215612da157600080fd5b505081359360208301359350604090920135919050565b600080600060608486031215612dcd57600080fd5b612dd684612d46565b9250612de460208501612d46565b9150604084013590509250925092565b600060208284031215612e0657600080fd5b611c5382612d46565b60008060408385031215612e2257600080fd5b82359150612e3260208401612d46565b90509250929050565b60008060408385031215612e4e57600080fd5b612e5783612d46565b915060208301358015158114612e6c57600080fd5b809150509250929050565b60008060408385031215612e8a57600080fd5b50508035926020909101359150565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016810167ffffffffffffffff81118282101715612f0f57612f0f612e99565b604052919050565b600067ffffffffffffffff821115612f3157612f31612e99565b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01660200190565b60008060008060808587031215612f7357600080fd5b612f7c85612d46565b9350612f8a60208601612d46565b925060408501359150606085013567ffffffffffffffff811115612fad57600080fd5b8501601f81018713612fbe57600080fd5b8035612fd1612fcc82612f17565b612ec8565b818152886020838501011115612fe657600080fd5b8160208401602083013760006020838301015280935050505092959194509250565b60008060006060848603121561301d57600080fd5b61302684612d46565b95602085013595506040909401359392505050565b600082601f83011261304c57600080fd5b8135602067ffffffffffffffff82111561306857613068612e99565b8160051b613077828201612ec8565b928352848101820192828101908785111561309157600080fd5b83870192505b848310156130b057823582529183019190830190613097565b979650505050505050565b6000602082840312156130cd57600080fd5b813567ffffffffffffffff8111156130e457600080fd5b611f3a8482850161303b565b6000806040838503121561310357600080fd5b61310c83612d46565b9150612e3260208401612d46565b6000806040838503121561312d57600080fd5b82359150602083013567ffffffffffffffff81111561314b57600080fd5b6131578582860161303b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b80820180821115610a1e57610a1e613161565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036131d4576131d4613161565b5060010190565b600181811c908216806131ef57607f821691505b602082108103613228577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b81810381811115610a1e57610a1e613161565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006020828403121561328257600080fd5b815167ffffffffffffffff81111561329957600080fd5b8201601f810184136132aa57600080fd5b80516132b8612fcc82612f17565b8181528560208385010111156132cd57600080fd5b6132de826020830160208601612cac565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082613325576133256132e7565b500490565b600082613339576133396132e7565b500690565b60006001600160a01b038087168352808616602084015250836040830152608060608301526133706080830184612cd0565b9695505050505050565b60006020828403121561338c57600080fd5b8151611c5381612c61565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea264697066735822122097de926ffaa9e540413f0fbc41eb461e3f5247b6c0746413aeafccf1ae19162864736f6c63430008130033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000c8458800000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000001e0000000000000000000000000000000000000000000000000000000000000004657468760000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000447468652066697273742066756c6c79206f6e20636861696e20696e736372697074696f6e206465666920616e642067616d6566692070726f746f636f6c206f6e2065766d00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): ethv
Arg [1] : _description (string): the first fully on chain inscription defi and gamefi protocol on evm
Arg [2] : _maxTotalSupply (uint256): 210000000
Arg [3] : _maxPermint_Amount (uint256): 10000
Arg [4] : _max_per_mint (uint256): 30

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 000000000000000000000000000000000000000000000000000000000c845880
Arg [3] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [4] : 000000000000000000000000000000000000000000000000000000000000001e
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 6574687600000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [8] : 7468652066697273742066756c6c79206f6e20636861696e20696e7363726970
Arg [9] : 74696f6e206465666920616e642067616d6566692070726f746f636f6c206f6e
Arg [10] : 2065766d00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

47326:8782:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48301:40;48322:18;;48301:20;:40::i;:::-;47326:8782;;48208:40;48229:18;;48208:20;:40::i;51528:212::-;;;;;;;;;;-1:-1:-1;51528:212:0;;;;;:::i;:::-;;:::i;:::-;;;611:14:1;;604:22;586:41;;574:2;559:18;51528:212:0;;;;;;;;27919:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29478:221::-;;;;;;;;;;-1:-1:-1;29478:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1802:55:1;;;1784:74;;1772:2;1757:18;29478:221:0;1638:226:1;29001:411:0;;;;;;;;;;-1:-1:-1;29001:411:0;;;;;:::i;:::-;;:::i;47944:24::-;;;;;;;;;;;;;;;;;;;2475:25:1;;;2463:2;2448:18;47944:24:0;2329:177:1;50013:641:0;;;;;;;;;;-1:-1:-1;50013:641:0;;;;;:::i;:::-;;:::i;41745:113::-;;;;;;;;;;-1:-1:-1;41833:10:0;:17;41745:113;;47975:36;;;;;;;;;;;;;;;;30228:339;;;;;;;;;;-1:-1:-1;30228:339:0;;;;;:::i;:::-;;:::i;47870:49::-;;;;;;;;;;-1:-1:-1;47870:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;49279:191;;;;;;;;;;-1:-1:-1;49279:191:0;;;;;:::i;:::-;;:::i;41413:256::-;;;;;;;;;;-1:-1:-1;41413:256:0;;;;;:::i;:::-;;:::i;48099:22::-;;;;;;;;;;;;;;;;49478:527;;;;;;;;;;-1:-1:-1;49478:527:0;;;;;:::i;:::-;;:::i;48057:35::-;;;;;;;;;;;;;;;;30638:185;;;;;;;;;;-1:-1:-1;30638:185:0;;;;;:::i;:::-;;:::i;54846:233::-;;;;;;;;;;-1:-1:-1;54846:233:0;;;;;:::i;:::-;;:::i;41935:::-;;;;;;;;;;-1:-1:-1;41935:233:0;;;;;:::i;:::-;;:::i;48757:87::-;;;;;;;;;;-1:-1:-1;48757:87:0;;;;;:::i;:::-;;:::i;27613:239::-;;;;;;;;;;-1:-1:-1;27613:239:0;;;;;:::i;:::-;;:::i;52069:150::-;;;;;;;;;;-1:-1:-1;52069:150:0;;;;;:::i;:::-;52130:4;52164:23;;;:14;:23;;;;;;;52069:150;27343:208;;;;;;;;;;-1:-1:-1;27343:208:0;;;;;:::i;:::-;;:::i;6467:103::-;;;;;;;;;;;;;:::i;48018:32::-;;;;;;;;;;;;;;;;5816:87;;;;;;;;;;-1:-1:-1;5889:6:0;;-1:-1:-1;;;;;5889:6:0;5816:87;;28088:104;;;;;;;;;;;;;:::i;47589:49::-;;;;;;;;;;-1:-1:-1;47589:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;29771:155;;;;;;;;;;-1:-1:-1;29771:155:0;;;;;:::i;:::-;;:::i;51097:343::-;;;;;;;;;;-1:-1:-1;51097:343:0;;;;;:::i;:::-;;:::i;51756:131::-;;;;;;;;;;-1:-1:-1;51756:131:0;;;;;:::i;:::-;;:::i;30894:328::-;;;;;;;;;;-1:-1:-1;30894:328:0;;;;;:::i;:::-;;:::i;47740:93::-;;;;;;;;;;-1:-1:-1;47740:93:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48852:220;;;;;;;;;;-1:-1:-1;48852:220:0;;;;;:::i;:::-;;:::i;52227:128::-;;;;;;;;;;-1:-1:-1;52227:128:0;;;;;:::i;:::-;;:::i;49082:191::-;;;;;;;;;;-1:-1:-1;49082:191:0;;;;;:::i;:::-;;:::i;52363:632::-;;;;;;;;;;-1:-1:-1;52363:632:0;;;;;:::i;:::-;;:::i;54062:418::-;;;;;;;;;;-1:-1:-1;54062:418:0;;;;;:::i;:::-;;:::i;47645:65::-;;;;;;;;;;-1:-1:-1;47645:65:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;54486:352;;;;;;;;;;-1:-1:-1;54486:352:0;;;;;:::i;:::-;;:::i;29997:164::-;;;;;;;;;;-1:-1:-1;29997:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30118:25:0;;;30094:4;30118:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29997:164;48128:30;;;;;;;;;;;;;;;;6725:201;;;;;;;;;;-1:-1:-1;6725:201:0;;;;;:::i;:::-;;:::i;51895:166::-;;;;;;;;;;-1:-1:-1;51895:166:0;;;;;:::i;:::-;;:::i;50664:425::-;;;;;;;;;;-1:-1:-1;50664:425:0;;;;;:::i;:::-;;:::i;53512:542::-;53595:18;;53584:7;:29;;53576:66;;;;-1:-1:-1;;;53576:66:0;;8176:2:1;53576:66:0;;;8158:21:1;8215:2;8195:18;;;8188:30;8254:27;8234:18;;;8227:55;8299:18;;53576:66:0;;;;;;;;;53699:10;;53688:7;53661:24;;:34;;;;:::i;:::-;:48;;53653:74;;;;-1:-1:-1;;;53653:74:0;;8849:2:1;53653:74:0;;;8831:21:1;8888:2;8868:18;;;8861:30;8927:16;8907:18;;;8900:44;8961:18;;53653:74:0;8647:338:1;53653:74:0;53738:21;:9;1337:19;;1355:1;1337:19;;;1248:127;53738:21;53787:10;53770:28;;;;:16;:28;;;;;:31;;;;;;:::i;:::-;;;;;;53812:17;53832:19;:9;1218:14;;1126:114;53832:19;53812:39;;53862:32;53872:10;53884:9;53862;:32::i;:::-;53905:25;;;;:14;:25;;;;;:35;;;53951:24;:35;;53933:7;;53905:25;53951:35;;53933:7;;53951:35;:::i;:::-;;;;-1:-1:-1;;;;53512:542:0:o;51528:212::-;51667:4;51696:36;51720:11;51696:23;:36::i;:::-;51689:43;51528:212;-1:-1:-1;;51528:212:0:o;27919:100::-;27973:13;28006:5;27999:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27919:100;:::o;29478:221::-;29554:7;32821:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32821:16:0;29574:73;;;;-1:-1:-1;;;29574:73:0;;9834:2:1;29574:73:0;;;9816:21:1;9873:2;9853:18;;;9846:30;9912:34;9892:18;;;9885:62;9983:14;9963:18;;;9956:42;10015:19;;29574:73:0;9632:408:1;29574:73:0;-1:-1:-1;29667:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29667:24:0;;29478:221::o;29001:411::-;29082:13;29098:23;29113:7;29098:14;:23::i;:::-;29082:39;;29146:5;-1:-1:-1;;;;;29140:11:0;:2;-1:-1:-1;;;;;29140:11:0;;29132:57;;;;-1:-1:-1;;;29132:57:0;;10247:2:1;29132:57:0;;;10229:21:1;10286:2;10266:18;;;10259:30;10325:34;10305:18;;;10298:62;10396:3;10376:18;;;10369:31;10417:19;;29132:57:0;10045:397:1;29132:57:0;4614:10;-1:-1:-1;;;;;29224:21:0;;;;:62;;-1:-1:-1;29249:37:0;29266:5;4614:10;29997:164;:::i;29249:37::-;29202:168;;;;-1:-1:-1;;;29202:168:0;;10649:2:1;29202:168:0;;;10631:21:1;10688:2;10668:18;;;10661:30;10727:34;10707:18;;;10700:62;10798:26;10778:18;;;10771:54;10842:19;;29202:168:0;10447:420:1;29202:168:0;29383:21;29392:2;29396:7;29383:8;:21::i;:::-;29071:341;29001:411;;:::o;50013:641::-;32797:4;32821:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32821:16:0;50121:78;;;;-1:-1:-1;;;50121:78:0;;11074:2:1;50121:78:0;;;11056:21:1;11113:2;11093:18;;;11086:30;11152:34;11132:18;;;11125:62;11223:17;11203:18;;;11196:45;11258:19;;50121:78:0;10872:411:1;50121:78:0;50359:1;50286:23;:45;50310:20;50318:11;50310:7;:20::i;:::-;-1:-1:-1;;;;;50286:45:0;;;;;;;;;;;;;;;-1:-1:-1;50286:45:0;;;50332:10;50286:57;;;;;;;:70;;;;;;;;;:74;50278:97;;;;-1:-1:-1;;;50278:97:0;;11490:2:1;50278:97:0;;;11472:21:1;11529:2;11509:18;;;11502:30;11568:13;11548:18;;;11541:41;11599:18;;50278:97:0;11288:335:1;50278:97:0;50394:25;;;;:14;:25;;;;;;:35;-1:-1:-1;50394:35:0;50386:75;;;;-1:-1:-1;;;50386:75:0;;11830:2:1;50386:75:0;;;11812:21:1;11869:2;11849:18;;;11842:30;11908;11888:18;;;11881:58;11956:18;;50386:75:0;11628:352:1;50386:75:0;50546:6;50472:23;:45;50496:20;50504:11;50496:7;:20::i;:::-;-1:-1:-1;;;;;50472:45:0;;;;;;;;;;;;;;;-1:-1:-1;50472:45:0;;;50518:10;50472:57;;;;;;;:70;;;;;;;;:80;;:70;;-1:-1:-1;50472:80:0;;;;;:::i;:::-;;;;-1:-1:-1;;50563:27:0;;;;:14;:27;;;;;:37;;50594:6;;50563:27;:37;;50594:6;;50563:37;:::i;:::-;;;;-1:-1:-1;;50611:25:0;;;;:14;:25;;;;;:35;;50640:6;;50611:25;:35;;50640:6;;50611:35;:::i;:::-;;;;-1:-1:-1;;;;;50013:641:0:o;30228:339::-;30423:41;4614:10;30456:7;30423:18;:41::i;:::-;30415:103;;;;-1:-1:-1;;;30415:103:0;;12320:2:1;30415:103:0;;;12302:21:1;12359:2;12339:18;;;12332:30;12398:34;12378:18;;;12371:62;12469:19;12449:18;;;12442:47;12506:19;;30415:103:0;12118:413:1;30415:103:0;30531:28;30541:4;30547:2;30551:7;30531:9;:28::i;49279:191::-;49388:10;49370:16;49378:7;49370;:16::i;:::-;-1:-1:-1;;;;;49370:28:0;;49362:49;;;;-1:-1:-1;;;49362:49:0;;12738:2:1;49362:49:0;;;12720:21:1;12777:1;12757:18;;;12750:29;12815:11;12795:18;;;12788:39;12844:18;;49362:49:0;12536:332:1;49362:49:0;49436:10;49459:1;49422:25;;;:13;:25;;;;;;;;-1:-1:-1;;;;;49422:34:0;;;;;;;;;;;;:38;-1:-1:-1;49279:191:0:o;41413:256::-;41510:7;41546:23;41563:5;41546:16;:23::i;:::-;41538:5;:31;41530:87;;;;-1:-1:-1;;;41530:87:0;;13075:2:1;41530:87:0;;;13057:21:1;13114:2;13094:18;;;13087:30;13153:34;13133:18;;;13126:62;13224:13;13204:18;;;13197:41;13255:19;;41530:87:0;12873:407:1;41530:87:0;-1:-1:-1;;;;;;41635:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;41413:256::o;49478:527::-;32797:4;32821:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32821:16:0;49643:78;;;;-1:-1:-1;;;49643:78:0;;11074:2:1;49643:78:0;;;11056:21:1;11113:2;11093:18;;;11086:30;11152:34;11132:18;;;11125:62;11223:17;11203:18;;;11196:45;11258:19;;49643:78:0;10872:411:1;49643:78:0;49791:11;49740:13;:35;49754:20;49762:11;49754:7;:20::i;:::-;-1:-1:-1;;;;;49740:35:0;;;;;;;;;;;;;;;-1:-1:-1;49740:35:0;;;49776:10;49740:47;;;;;;;;:62;49732:85;;;;-1:-1:-1;;;49732:85:0;;11490:2:1;49732:85:0;;;11472:21:1;11529:2;11509:18;;;11502:30;11568:13;11548:18;;;11541:41;11599:18;;49732:85:0;11288:335:1;49732:85:0;49836:25;;;;:14;:25;;;;;;:35;-1:-1:-1;49836:35:0;49828:75;;;;-1:-1:-1;;;49828:75:0;;11830:2:1;49828:75:0;;;11812:21:1;11869:2;11849:18;;;11842:30;11908;11888:18;;;11881:58;11956:18;;49828:75:0;11628:352:1;49828:75:0;49914:27;;;;:14;:27;;;;;:37;;49945:6;;49914:27;:37;;49945:6;;49914:37;:::i;30638:185::-;30776:39;30793:4;30799:2;30803:7;30776:39;;;;;;;;;;;;:16;:39::i;54846:233::-;54922:10;54901:17;54909:8;54901:7;:17::i;:::-;-1:-1:-1;;;;;54901:31:0;;54893:51;;;;-1:-1:-1;;;54893:51:0;;13487:2:1;54893:51:0;;;13469:21:1;13526:1;13506:18;;;13499:29;13564:10;13544:18;;;13537:38;13592:18;;54893:51:0;13285:331:1;54893:51:0;52130:4;52164:23;;;:14;:23;;;;;;54955:24;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;55017:15:0;;-1:-1:-1;55023:8:0;55017:5;:15::i;:::-;55070:1;55043:24;;;:14;:24;;;;;:28;54846:233::o;41935:::-;42010:7;42046:30;41833:10;:17;;41745:113;42046:30;42038:5;:38;42030:95;;;;-1:-1:-1;;;42030:95:0;;13823:2:1;42030:95:0;;;13805:21:1;13862:2;13842:18;;;13835:30;13901:34;13881:18;;;13874:62;13972:14;13952:18;;;13945:42;14004:19;;42030:95:0;13621:408:1;42030:95:0;42143:10;42154:5;42143:17;;;;;;;;:::i;:::-;;;;;;;;;42136:24;;41935:233;;;:::o;48757:87::-;5889:6;;-1:-1:-1;;;;;5889:6:0;4614:10;6036:23;6028:68;;;;-1:-1:-1;;;6028:68:0;;14425:2:1;6028:68:0;;;14407:21:1;;;14444:18;;;14437:30;14503:34;14483:18;;;14476:62;14555:18;;6028:68:0;14223:356:1;6028:68:0;48817:4:::1;:19:::0;;;::::1;-1:-1:-1::0;;;;;48817:19:0;;;::::1;::::0;;;::::1;::::0;;48757:87::o;27613:239::-;27685:7;27721:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27721:16:0;;27748:73;;;;-1:-1:-1;;;27748:73:0;;14786:2:1;27748:73:0;;;14768:21:1;14825:2;14805:18;;;14798:30;14864:34;14844:18;;;14837:62;14935:11;14915:18;;;14908:39;14964:19;;27748:73:0;14584:405:1;27343:208:0;27415:7;-1:-1:-1;;;;;27443:19:0;;27435:74;;;;-1:-1:-1;;;27435:74:0;;15196:2:1;27435:74:0;;;15178:21:1;15235:2;15215:18;;;15208:30;15274:34;15254:18;;;15247:62;15345:12;15325:18;;;15318:40;15375:19;;27435:74:0;14994:406:1;27435:74:0;-1:-1:-1;;;;;;27527:16:0;;;;;:9;:16;;;;;;;27343:208::o;6467:103::-;5889:6;;-1:-1:-1;;;;;5889:6:0;4614:10;6036:23;6028:68;;;;-1:-1:-1;;;6028:68:0;;14425:2:1;6028:68:0;;;14407:21:1;;;14444:18;;;14437:30;14503:34;14483:18;;;14476:62;14555:18;;6028:68:0;14223:356:1;6028:68:0;6532:30:::1;6559:1;6532:18;:30::i;:::-;6467:103::o:0;28088:104::-;28144:13;28177:7;28170:14;;;;;:::i;29771:155::-;29866:52;4614:10;29899:8;29909;29866:18;:52::i;:::-;29771:155;;:::o;51097:343::-;5889:6;;-1:-1:-1;;;;;5889:6:0;4614:10;6036:23;6028:68;;;;-1:-1:-1;;;6028:68:0;;14425:2:1;6028:68:0;;;14407:21:1;;;14444:18;;;14437:30;14503:34;14483:18;;;14476:62;14555:18;;6028:68:0;14223:356:1;6028:68:0;51225:20:::1;::::0;51197:23:::1;::::0;51188:32:::1;::::0;:6;:32:::1;:::i;:::-;:57;;51180:96;;;::::0;-1:-1:-1;;;51180:96:0;;15607:2:1;51180:96:0::1;::::0;::::1;15589:21:1::0;15646:2;15626:18;;;15619:30;15685:29;15665:18;;;15658:57;15732:18;;51180:96:0::1;15405:351:1::0;51180:96:0::1;51314:6;51287:23;;:33;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;51331:23:0::1;::::0;;;:14:::1;:23;::::0;;;;:33;;51358:6;;51331:23;:33:::1;::::0;51358:6;;51331:33:::1;:::i;:::-;;;;;;;;51389:6;51375:10;;:20;;;;;;;:::i;51756:131::-:0;51813:13;51846:33;51862:4;-1:-1:-1;;;;;51846:22:0;:31;:33::i;30894:328::-;31069:41;4614:10;31102:7;31069:18;:41::i;:::-;31061:103;;;;-1:-1:-1;;;31061:103:0;;12320:2:1;31061:103:0;;;12302:21:1;12359:2;12339:18;;;12332:30;12398:34;12378:18;;;12371:62;12469:19;12449:18;;;12442:47;12506:19;;31061:103:0;12118:413:1;31061:103:0;31175:39;31189:4;31195:2;31199:7;31208:5;31175:13;:39::i;:::-;30894:328;;;;:::o;48852:220::-;48966:10;48948:16;48956:7;48948;:16::i;:::-;-1:-1:-1;;;;;48948:28:0;;48940:49;;;;-1:-1:-1;;;48940:49:0;;12738:2:1;48940:49:0;;;12720:21:1;12777:1;12757:18;;;12750:29;12815:11;12795:18;;;12788:39;12844:18;;48940:49:0;12536:332:1;48940:49:0;49024:10;49000:35;;;;:23;:35;;;;;;;;-1:-1:-1;;;;;49000:44:0;;;;;;;;;;;;:53;;;;;;;;;;:62;48852:220::o;52227:128::-;52324:4;;:23;;;;;;;;2475:25:1;;;52292:13:0;;-1:-1:-1;;;;;52324:4:0;;:14;;2448:18:1;;52324:23:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;49082:191::-;49185:10;49167:16;49175:7;49167;:16::i;:::-;-1:-1:-1;;;;;49167:28:0;;49159:49;;;;-1:-1:-1;;;49159:49:0;;12738:2:1;49159:49:0;;;12720:21:1;12777:1;12757:18;;;12750:29;12815:11;12795:18;;;12788:39;12844:18;;49159:49:0;12536:332:1;49159:49:0;49233:10;49219:25;;;;:13;:25;;;;;;;;-1:-1:-1;;;;;49219:34:0;;;;;;;;;;:44;49082:191::o;52363:632::-;52432:18;;52421:7;:29;;52413:66;;;;-1:-1:-1;;;52413:66:0;;8176:2:1;52413:66:0;;;8158:21:1;8215:2;8195:18;;;8188:30;8254:27;8234:18;;;8227:55;8299:18;;52413:66:0;7974:349:1;52413:66:0;52536:10;;52525:7;52498:24;;:34;;;;:::i;:::-;:48;;52490:74;;;;-1:-1:-1;;;52490:74:0;;8849:2:1;52490:74:0;;;8831:21:1;8888:2;8868:18;;;8861:30;8927:16;8907:18;;;8900:44;8961:18;;52490:74:0;8647:338:1;52490:74:0;52619:12;;52600:10;52583:28;;;;:16;:28;;;;;;:32;;52614:1;52583:32;:::i;:::-;:48;;52575:91;;;;-1:-1:-1;;;52575:91:0;;16616:2:1;52575:91:0;;;16598:21:1;16655:2;16635:18;;;16628:30;16694:33;16674:18;;;16667:61;16745:18;;52575:91:0;16414:355:1;54062:418:0;54123:11;54149:6;54145:165;54161:11;:18;54157:1;:22;54145:165;;;54220:29;54234:11;54246:1;54234:14;;;;;;;;:::i;:::-;;;;;;;52130:4;52164:23;;;:14;:23;;;;;;;52069:150;54220:29;54210:39;;;;:::i;:::-;;;54264:20;54269:11;54281:1;54269:14;;;;;;;;:::i;:::-;;;;;;;54264:4;:20::i;:::-;54181:3;;;;:::i;:::-;;;;54145:165;;;;54445:27;54465:6;54445:19;:27::i;54486:352::-;54563:8;54588:6;54584:145;54600:10;:17;54596:1;:21;54584:145;;;54648:34;54668:10;54679:1;54668:13;;;;;;;;:::i;:::-;;;;;;;54648:19;:34::i;:::-;54704:10;54715:1;54704:13;;;;;;;;:::i;:::-;;;;;;;54697:20;;;;;:::i;:::-;;-1:-1:-1;54619:3:0;;;;:::i;:::-;;;;54584:145;;;-1:-1:-1;52130:4:0;52164:23;;;:14;:23;;;;;;54774:3;54747:30;54739:50;;;;-1:-1:-1;;;54739:50:0;;16976:2:1;54739:50:0;;;16958:21:1;17015:1;16995:18;;;16988:29;17053:10;17033:18;;;17026:38;17081:18;;54739:50:0;16774:331:1;54739:50:0;54802:14;54807:8;54802:4;:14::i;6725:201::-;5889:6;;-1:-1:-1;;;;;5889:6:0;4614:10;6036:23;6028:68;;;;-1:-1:-1;;;6028:68:0;;14425:2:1;6028:68:0;;;14407:21:1;;;14444:18;;;14437:30;14503:34;14483:18;;;14476:62;14555:18;;6028:68:0;14223:356:1;6028:68:0;-1:-1:-1;;;;;6814:22:0;::::1;6806:73;;;::::0;-1:-1:-1;;;6806:73:0;;17312:2:1;6806:73:0::1;::::0;::::1;17294:21:1::0;17351:2;17331:18;;;17324:30;17390:34;17370:18;;;17363:62;17461:8;17441:18;;;17434:36;17487:19;;6806:73:0::1;17110:402:1::0;6806:73:0::1;6890:28;6909:8;6890:18;:28::i;:::-;6725:201:::0;:::o;51895:166::-;51978:14;51995:23;;;:14;:23;;;;;;51952:13;;52036:17;51995:23;52036:15;:17::i;:::-;52029:24;51895:166;-1:-1:-1;;;51895:166:0:o;50664:425::-;32797:4;32821:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32821:16:0;50757:78;;;;-1:-1:-1;;;50757:78:0;;11074:2:1;50757:78:0;;;11056:21:1;11113:2;11093:18;;;11086:30;11152:34;11132:18;;;11125:62;11223:17;11203:18;;;11196:45;11258:19;;50757:78:0;10872:411:1;50757:78:0;50878:10;50854:20;50862:11;50854:7;:20::i;:::-;-1:-1:-1;;;;;50854:34:0;;50846:55;;;;-1:-1:-1;;;50846:55:0;;12738:2:1;50846:55:0;;;12720:21:1;12777:1;12757:18;;;12750:29;12815:11;12795:18;;;12788:39;12844:18;;50846:55:0;12536:332:1;33716:110:0;33792:26;33802:2;33806:7;33792:26;;;;;;;;;;;;:9;:26::i;41105:224::-;41207:4;41231:50;;;41246:35;41231:50;;:90;;;41285:36;41309:11;41285:23;:36::i;36878:174::-;36953:24;;;;:15;:24;;;;;:29;;;;-1:-1:-1;;;;;36953:29:0;;;;;;;;:24;;37007:23;36953:24;37007:14;:23::i;:::-;-1:-1:-1;;;;;36998:46:0;;;;;;;;;;;36878:174;;:::o;33026:348::-;33119:4;32821:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32821:16:0;33136:73;;;;-1:-1:-1;;;33136:73:0;;17719:2:1;33136:73:0;;;17701:21:1;17758:2;17738:18;;;17731:30;17797:34;17777:18;;;17770:62;17868:14;17848:18;;;17841:42;17900:19;;33136:73:0;17517:408:1;33136:73:0;33220:13;33236:23;33251:7;33236:14;:23::i;:::-;33220:39;;33289:5;-1:-1:-1;;;;;33278:16:0;:7;-1:-1:-1;;;;;33278:16:0;;:51;;;;33322:7;-1:-1:-1;;;;;33298:31:0;:20;33310:7;33298:11;:20::i;:::-;-1:-1:-1;;;;;33298:31:0;;33278:51;:87;;;-1:-1:-1;;;;;;30118:25:0;;;30094:4;30118:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;33333:32;33270:96;33026:348;-1:-1:-1;;;;33026:348:0:o;36135:625::-;36294:4;-1:-1:-1;;;;;36267:31:0;:23;36282:7;36267:14;:23::i;:::-;-1:-1:-1;;;;;36267:31:0;;36259:81;;;;-1:-1:-1;;;36259:81:0;;18132:2:1;36259:81:0;;;18114:21:1;18171:2;18151:18;;;18144:30;18210:34;18190:18;;;18183:62;18281:7;18261:18;;;18254:35;18306:19;;36259:81:0;17930:401:1;36259:81:0;-1:-1:-1;;;;;36359:16:0;;36351:65;;;;-1:-1:-1;;;36351:65:0;;18538:2:1;36351:65:0;;;18520:21:1;18577:2;18557:18;;;18550:30;18616:34;18596:18;;;18589:62;18687:6;18667:18;;;18660:34;18711:19;;36351:65:0;18336:400:1;36351:65:0;36429:39;36450:4;36456:2;36460:7;36429:20;:39::i;:::-;36533:29;36550:1;36554:7;36533:8;:29::i;:::-;-1:-1:-1;;;;;36575:15:0;;;;;;:9;:15;;;;;:20;;36594:1;;36575:15;:20;;36594:1;;36575:20;:::i;:::-;;;;-1:-1:-1;;;;;;;36606:13:0;;;;;;:9;:13;;;;;:18;;36623:1;;36606:13;:18;;36623:1;;36606:18;:::i;:::-;;;;-1:-1:-1;;36635:16:0;;;;:7;:16;;;;;;:21;;;;-1:-1:-1;;;;;36635:21:0;;;;;;;;;36674:27;;36635:16;;36674:27;;;;;;;29071:341;29001:411;;:::o;35378:420::-;35438:13;35454:23;35469:7;35454:14;:23::i;:::-;35438:39;;35490:48;35511:5;35526:1;35530:7;35490:20;:48::i;:::-;35579:29;35596:1;35600:7;35579:8;:29::i;:::-;-1:-1:-1;;;;;35621:16:0;;;;;;:9;:16;;;;;:21;;35641:1;;35621:16;:21;;35641:1;;35621:21;:::i;:::-;;;;-1:-1:-1;;35660:16:0;;;;:7;:16;;;;;;35653:23;;;;;;35694:36;35668:7;;35660:16;-1:-1:-1;;;;;35694:36:0;;;;;35660:16;;35694:36;29771:155;;:::o;7086:191::-;7179:6;;;-1:-1:-1;;;;;7196:17:0;;;;;;;;;;;7229:40;;7179:6;;;7196:17;7179:6;;7229:40;;7160:16;;7229:40;7149:128;7086:191;:::o;37194:315::-;37349:8;-1:-1:-1;;;;;37340:17:0;:5;-1:-1:-1;;;;;37340:17:0;;37332:55;;;;-1:-1:-1;;;37332:55:0;;18943:2:1;37332:55:0;;;18925:21:1;18982:2;18962:18;;;18955:30;19021:27;19001:18;;;18994:55;19066:18;;37332:55:0;18741:349:1;37332:55:0;-1:-1:-1;;;;;37398:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;;;;;;;;;;;;37460:41;;586::1;;;37460::0;;559:18:1;37460:41:0;;;;;;;37194:315;;;:::o;2090:723::-;2146:13;2367:5;2376:1;2367:10;2363:53;;-1:-1:-1;;2394:10:0;;;;;;;;;;;;;;;;;;2090:723::o;2363:53::-;2441:5;2426:12;2482:78;2489:9;;2482:78;;2515:8;;;;:::i;:::-;;-1:-1:-1;2538:10:0;;-1:-1:-1;2546:2:0;2538:10;;:::i;:::-;;;2482:78;;;2570:19;2602:6;2592:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2592:17:0;;2570:39;;2620:154;2627:10;;2620:154;;2654:11;2664:1;2654:11;;:::i;:::-;;-1:-1:-1;2723:10:0;2731:2;2723:5;:10;:::i;:::-;2710:24;;:2;:24;:::i;:::-;2697:39;;2680:6;2687;2680:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;2751:11:0;2760:2;2751:11;;:::i;:::-;;;2620:154;;32104:315;32261:28;32271:4;32277:2;32281:7;32261:9;:28::i;:::-;32308:48;32331:4;32337:2;32341:7;32350:5;32308:22;:48::i;:::-;32300:111;;;;-1:-1:-1;;;32300:111:0;;19728:2:1;32300:111:0;;;19710:21:1;19767:2;19747:18;;;19740:30;19806:34;19786:18;;;19779:62;19877:20;19857:18;;;19850:48;19915:19;;32300:111:0;19526:414:1;53003:501:0;53191:10;;53180:7;53153:24;;:34;;;;:::i;:::-;:48;;53145:74;;;;-1:-1:-1;;;53145:74:0;;8849:2:1;53145:74:0;;;8831:21:1;8888:2;8868:18;;;8861:30;8927:16;8907:18;;;8900:44;8961:18;;53145:74:0;8647:338:1;53145:74:0;53230:21;:9;1337:19;;1355:1;1337:19;;;1248:127;53230:21;53262:17;53282:19;:9;1218:14;;1126:114;34053:321;34183:18;34189:2;34193:7;34183:5;:18::i;:::-;34234:54;34265:1;34269:2;34273:7;34282:5;34234:22;:54::i;:::-;34212:154;;;;-1:-1:-1;;;34212:154:0;;19728:2:1;34212:154:0;;;19710:21:1;19767:2;19747:18;;;19740:30;19806:34;19786:18;;;19779:62;19877:20;19857:18;;;19850:48;19915:19;;34212:154:0;19526:414:1;26974:305:0;27076:4;27113:40;;;27128:25;27113:40;;:105;;-1:-1:-1;27170:48:0;;;27185:33;27170:48;27113:105;:158;;;-1:-1:-1;18748:25:0;18733:40;;;;27235:36;18624:157;55087:181;55215:45;55242:4;55248:2;55252:7;55215:26;:45::i;38074:799::-;38229:4;-1:-1:-1;;;;;38250:13:0;;8818:19;:23;38246:620;;38286:72;;;;;-1:-1:-1;;;;;38286:36:0;;;;;:72;;4614:10;;38337:4;;38343:7;;38352:5;;38286:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38286:72:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38282:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38528:6;:13;38545:1;38528:18;38524:272;;38571:60;;-1:-1:-1;;;38571:60:0;;19728:2:1;38571:60:0;;;19710:21:1;19767:2;19747:18;;;19740:30;19806:34;19786:18;;;19779:62;19877:20;19857:18;;;19850:48;19915:19;;38571:60:0;19526:414:1;38524:272:0;38746:6;38740:13;38731:6;38727:2;38723:15;38716:38;38282:529;38409:51;;38419:41;38409:51;;-1:-1:-1;38402:58:0;;38246:620;-1:-1:-1;38850:4:0;38074:799;;;;;;:::o;34710:439::-;-1:-1:-1;;;;;34790:16:0;;34782:61;;;;-1:-1:-1;;;34782:61:0;;20918:2:1;34782:61:0;;;20900:21:1;;;20937:18;;;20930:30;20996:34;20976:18;;;20969:62;21048:18;;34782:61:0;20716:356:1;34782:61:0;32797:4;32821:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32821:16:0;:30;34854:58;;;;-1:-1:-1;;;34854:58:0;;21279:2:1;34854:58:0;;;21261:21:1;21318:2;21298:18;;;21291:30;21357;21337:18;;;21330:58;21405:18;;34854:58:0;21077:352:1;34854:58:0;34925:45;34954:1;34958:2;34962:7;34925:20;:45::i;:::-;-1:-1:-1;;;;;34983:13:0;;;;;;:9;:13;;;;;:18;;35000:1;;34983:13;:18;;35000:1;;34983:18;:::i;:::-;;;;-1:-1:-1;;35012:16:0;;;;:7;:16;;;;;;:21;;;;-1:-1:-1;;;;;35012:21:0;;;;;;;;35051:33;;35012:16;;;35051:33;;35012:16;;35051:33;29771:155;;:::o;42781:589::-;-1:-1:-1;;;;;42987:18:0;;42983:187;;43022:40;43054:7;44197:10;:17;;44170:24;;;;:15;:24;;;;;:44;;;44225:24;;;;;;;;;;;;44093:164;43022:40;42983:187;;;43092:2;-1:-1:-1;;;;;43084:10:0;:4;-1:-1:-1;;;;;43084:10:0;;43080:90;;43111:47;43144:4;43150:7;43111:32;:47::i;:::-;-1:-1:-1;;;;;43184:16:0;;43180:183;;43217:45;43254:7;43217:36;:45::i;43180:183::-;43290:4;-1:-1:-1;;;;;43284:10:0;:2;-1:-1:-1;;;;;43284:10:0;;43280:83;;43311:40;43339:2;43343:7;43311:27;:40::i;44884:988::-;45150:22;45200:1;45175:22;45192:4;45175:16;:22::i;:::-;:26;;;;:::i;:::-;45212:18;45233:26;;;:17;:26;;;;;;45150:51;;-1:-1:-1;45366:28:0;;;45362:328;;-1:-1:-1;;;;;45433:18:0;;45411:19;45433:18;;;:12;:18;;;;;;;;:34;;;;;;;;;45484:30;;;;;;:44;;;45601:30;;:17;:30;;;;;:43;;;45362:328;-1:-1:-1;45786:26:0;;;;:17;:26;;;;;;;;45779:33;;;-1:-1:-1;;;;;45830:18:0;;;;;:12;:18;;;;;:34;;;;;;;45823:41;44884:988::o;46167:1079::-;46445:10;:17;46420:22;;46445:21;;46465:1;;46445:21;:::i;:::-;46477:18;46498:24;;;:15;:24;;;;;;46871:10;:26;;46420:46;;-1:-1:-1;46498:24:0;;46420:46;;46871:26;;;;;;:::i;:::-;;;;;;;;;46849:48;;46935:11;46910:10;46921;46910:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;47015:28;;;:15;:28;;;;;;;:41;;;47187:24;;;;;47180:31;47222:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;46238:1008;;;46167:1079;:::o;43671:221::-;43756:14;43773:20;43790:2;43773:16;:20::i;:::-;-1:-1:-1;;;;;43804:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;43849:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;43671:221:0:o;14:177:1:-;99:66;92:5;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;638:250::-;723:1;733:113;747:6;744:1;741:13;733:113;;;823:11;;;817:18;804:11;;;797:39;769:2;762:10;733:113;;;-1:-1:-1;;880:1:1;862:16;;855:27;638:250::o;893:330::-;935:3;973:5;967:12;1000:6;995:3;988:19;1016:76;1085:6;1078:4;1073:3;1069:14;1062:4;1055:5;1051:16;1016:76;:::i;:::-;1137:2;1125:15;1142:66;1121:88;1112:98;;;;1212:4;1108:109;;893:330;-1:-1:-1;;893:330:1:o;1228:220::-;1377:2;1366:9;1359:21;1340:4;1397:45;1438:2;1427:9;1423:18;1415:6;1397:45;:::i;1453:180::-;1512:6;1565:2;1553:9;1544:7;1540:23;1536:32;1533:52;;;1581:1;1578;1571:12;1533:52;-1:-1:-1;1604:23:1;;1453:180;-1:-1:-1;1453:180:1:o;1869:196::-;1937:20;;-1:-1:-1;;;;;1986:54:1;;1976:65;;1966:93;;2055:1;2052;2045:12;1966:93;1869:196;;;:::o;2070:254::-;2138:6;2146;2199:2;2187:9;2178:7;2174:23;2170:32;2167:52;;;2215:1;2212;2205:12;2167:52;2238:29;2257:9;2238:29;:::i;:::-;2228:39;2314:2;2299:18;;;;2286:32;;-1:-1:-1;;;2070:254:1:o;2511:316::-;2588:6;2596;2604;2657:2;2645:9;2636:7;2632:23;2628:32;2625:52;;;2673:1;2670;2663:12;2625:52;-1:-1:-1;;2696:23:1;;;2766:2;2751:18;;2738:32;;-1:-1:-1;2817:2:1;2802:18;;;2789:32;;2511:316;-1:-1:-1;2511:316:1:o;2832:328::-;2909:6;2917;2925;2978:2;2966:9;2957:7;2953:23;2949:32;2946:52;;;2994:1;2991;2984:12;2946:52;3017:29;3036:9;3017:29;:::i;:::-;3007:39;;3065:38;3099:2;3088:9;3084:18;3065:38;:::i;:::-;3055:48;;3150:2;3139:9;3135:18;3122:32;3112:42;;2832:328;;;;;:::o;3165:186::-;3224:6;3277:2;3265:9;3256:7;3252:23;3248:32;3245:52;;;3293:1;3290;3283:12;3245:52;3316:29;3335:9;3316:29;:::i;3356:254::-;3424:6;3432;3485:2;3473:9;3464:7;3460:23;3456:32;3453:52;;;3501:1;3498;3491:12;3453:52;3537:9;3524:23;3514:33;;3566:38;3600:2;3589:9;3585:18;3566:38;:::i;:::-;3556:48;;3356:254;;;;;:::o;3615:347::-;3680:6;3688;3741:2;3729:9;3720:7;3716:23;3712:32;3709:52;;;3757:1;3754;3747:12;3709:52;3780:29;3799:9;3780:29;:::i;:::-;3770:39;;3859:2;3848:9;3844:18;3831:32;3906:5;3899:13;3892:21;3885:5;3882:32;3872:60;;3928:1;3925;3918:12;3872:60;3951:5;3941:15;;;3615:347;;;;;:::o;3967:248::-;4035:6;4043;4096:2;4084:9;4075:7;4071:23;4067:32;4064:52;;;4112:1;4109;4102:12;4064:52;-1:-1:-1;;4135:23:1;;;4205:2;4190:18;;;4177:32;;-1:-1:-1;3967:248:1:o;4220:184::-;4272:77;4269:1;4262:88;4369:4;4366:1;4359:15;4393:4;4390:1;4383:15;4409:334;4480:2;4474:9;4536:2;4526:13;;4541:66;4522:86;4510:99;;4639:18;4624:34;;4660:22;;;4621:62;4618:88;;;4686:18;;:::i;:::-;4722:2;4715:22;4409:334;;-1:-1:-1;4409:334:1:o;4748:245::-;4796:4;4829:18;4821:6;4818:30;4815:56;;;4851:18;;:::i;:::-;-1:-1:-1;4908:2:1;4896:15;4913:66;4892:88;4982:4;4888:99;;4748:245::o;4998:888::-;5093:6;5101;5109;5117;5170:3;5158:9;5149:7;5145:23;5141:33;5138:53;;;5187:1;5184;5177:12;5138:53;5210:29;5229:9;5210:29;:::i;:::-;5200:39;;5258:38;5292:2;5281:9;5277:18;5258:38;:::i;:::-;5248:48;;5343:2;5332:9;5328:18;5315:32;5305:42;;5398:2;5387:9;5383:18;5370:32;5425:18;5417:6;5414:30;5411:50;;;5457:1;5454;5447:12;5411:50;5480:22;;5533:4;5525:13;;5521:27;-1:-1:-1;5511:55:1;;5562:1;5559;5552:12;5511:55;5598:2;5585:16;5623:48;5639:31;5667:2;5639:31;:::i;:::-;5623:48;:::i;:::-;5694:2;5687:5;5680:17;5734:7;5729:2;5724;5720;5716:11;5712:20;5709:33;5706:53;;;5755:1;5752;5745:12;5706:53;5810:2;5805;5801;5797:11;5792:2;5785:5;5781:14;5768:45;5854:1;5849:2;5844;5837:5;5833:14;5829:23;5822:34;5875:5;5865:15;;;;;4998:888;;;;;;;:::o;5891:322::-;5968:6;5976;5984;6037:2;6025:9;6016:7;6012:23;6008:32;6005:52;;;6053:1;6050;6043:12;6005:52;6076:29;6095:9;6076:29;:::i;:::-;6066:39;6152:2;6137:18;;6124:32;;-1:-1:-1;6203:2:1;6188:18;;;6175:32;;5891:322;-1:-1:-1;;;5891:322:1:o;6218:712::-;6272:5;6325:3;6318:4;6310:6;6306:17;6302:27;6292:55;;6343:1;6340;6333:12;6292:55;6379:6;6366:20;6405:4;6428:18;6424:2;6421:26;6418:52;;;6450:18;;:::i;:::-;6496:2;6493:1;6489:10;6519:28;6543:2;6539;6535:11;6519:28;:::i;:::-;6581:15;;;6651;;;6647:24;;;6612:12;;;;6683:15;;;6680:35;;;6711:1;6708;6701:12;6680:35;6747:2;6739:6;6735:15;6724:26;;6759:142;6775:6;6770:3;6767:15;6759:142;;;6841:17;;6829:30;;6792:12;;;;6879;;;;6759:142;;;6919:5;6218:712;-1:-1:-1;;;;;;;6218:712:1:o;6935:348::-;7019:6;7072:2;7060:9;7051:7;7047:23;7043:32;7040:52;;;7088:1;7085;7078:12;7040:52;7128:9;7115:23;7161:18;7153:6;7150:30;7147:50;;;7193:1;7190;7183:12;7147:50;7216:61;7269:7;7260:6;7249:9;7245:22;7216:61;:::i;7288:260::-;7356:6;7364;7417:2;7405:9;7396:7;7392:23;7388:32;7385:52;;;7433:1;7430;7423:12;7385:52;7456:29;7475:9;7456:29;:::i;:::-;7446:39;;7504:38;7538:2;7527:9;7523:18;7504:38;:::i;7553:416::-;7646:6;7654;7707:2;7695:9;7686:7;7682:23;7678:32;7675:52;;;7723:1;7720;7713:12;7675:52;7759:9;7746:23;7736:33;;7820:2;7809:9;7805:18;7792:32;7847:18;7839:6;7836:30;7833:50;;;7879:1;7876;7869:12;7833:50;7902:61;7955:7;7946:6;7935:9;7931:22;7902:61;:::i;:::-;7892:71;;;7553:416;;;;;:::o;8328:184::-;8380:77;8377:1;8370:88;8477:4;8474:1;8467:15;8501:4;8498:1;8491:15;8517:125;8582:9;;;8603:10;;;8600:36;;;8616:18;;:::i;8990:195::-;9029:3;9060:66;9053:5;9050:77;9047:103;;9130:18;;:::i;:::-;-1:-1:-1;9177:1:1;9166:13;;8990:195::o;9190:437::-;9269:1;9265:12;;;;9312;;;9333:61;;9387:4;9379:6;9375:17;9365:27;;9333:61;9440:2;9432:6;9429:14;9409:18;9406:38;9403:218;;9477:77;9474:1;9467:88;9578:4;9575:1;9568:15;9606:4;9603:1;9596:15;9403:218;;9190:437;;;:::o;11985:128::-;12052:9;;;12073:11;;;12070:37;;;12087:18;;:::i;14034:184::-;14086:77;14083:1;14076:88;14183:4;14180:1;14173:15;14207:4;14204:1;14197:15;15761:648;15841:6;15894:2;15882:9;15873:7;15869:23;15865:32;15862:52;;;15910:1;15907;15900:12;15862:52;15943:9;15937:16;15976:18;15968:6;15965:30;15962:50;;;16008:1;16005;15998:12;15962:50;16031:22;;16084:4;16076:13;;16072:27;-1:-1:-1;16062:55:1;;16113:1;16110;16103:12;16062:55;16142:2;16136:9;16167:48;16183:31;16211:2;16183:31;:::i;16167:48::-;16238:2;16231:5;16224:17;16278:7;16273:2;16268;16264;16260:11;16256:20;16253:33;16250:53;;;16299:1;16296;16289:12;16250:53;16312:67;16376:2;16371;16364:5;16360:14;16355:2;16351;16347:11;16312:67;:::i;:::-;16398:5;15761:648;-1:-1:-1;;;;;15761:648:1:o;19095:184::-;19147:77;19144:1;19137:88;19244:4;19241:1;19234:15;19268:4;19265:1;19258:15;19284:120;19324:1;19350;19340:35;;19355:18;;:::i;:::-;-1:-1:-1;19389:9:1;;19284:120::o;19409:112::-;19441:1;19467;19457:35;;19472:18;;:::i;:::-;-1:-1:-1;19506:9:1;;19409:112::o;19945:512::-;20139:4;-1:-1:-1;;;;;20249:2:1;20241:6;20237:15;20226:9;20219:34;20301:2;20293:6;20289:15;20284:2;20273:9;20269:18;20262:43;;20341:6;20336:2;20325:9;20321:18;20314:34;20384:3;20379:2;20368:9;20364:18;20357:31;20405:46;20446:3;20435:9;20431:19;20423:6;20405:46;:::i;:::-;20397:54;19945:512;-1:-1:-1;;;;;;19945:512:1:o;20462:249::-;20531:6;20584:2;20572:9;20563:7;20559:23;20555:32;20552:52;;;20600:1;20597;20590:12;20552:52;20632:9;20626:16;20651:30;20675:5;20651:30;:::i;21434:184::-;21486:77;21483:1;21476:88;21583:4;21580:1;21573:15;21607:4;21604:1;21597:15

Swarm Source

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