ETH Price: $2,303.93 (-0.58%)

Token

Villator Mint Pass (VMP)
 

Overview

Max Total Supply

500 VMP

Holders

252

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 VMP
0x319C9097881C5d5765ca45894C60BA942b7EF7BA
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:
VillatorMintPass

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-15
*/

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

// File: @openzeppelin/contracts/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/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.7.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
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/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/contracts/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/contracts/token/ERC721/IERC721.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * 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;

    /**
     * @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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

// File: @openzeppelin/contracts/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/contracts/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/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts (last updated v4.7.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: address zero is not a valid owner");
        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: invalid token ID");
        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) {
        _requireMinted(tokenId);

        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 overridden 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 token owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        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: caller is not token 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: caller is not token 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) {
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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 an {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 an {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 Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

    /**
     * @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 {
                    /// @solidity memory-safe-assembly
                    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/contracts/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/VillFree.sol

// Villator Mint Pass
// "SPDX-License-Identifier: UNLICENSED"

pragma solidity >=0.4.0 <0.9.0;



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

  string public baseURI;
  string public baseExtension = ".json";
  string public notRevealedUri;
  uint256 public cost = 0 ether;
  uint256 public maxSupply = 500;
  uint256 public maxMintAmount = 2;
  uint256 public nftPerAddressLimit = 2;
  bool public paused = false;
  bool public revealed = false;
  mapping(address => uint256) public addressMintedBalance;

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

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

  // public
  function mint(uint256 _mintAmount) public payable {
    require(!paused, "the contract is paused");
    uint256 supply = totalSupply();
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    if (msg.sender != owner()) {
        require(_mintAmount <= maxMintAmount, "max mint amount is 2");
    }
    require(supply + _mintAmount <= maxSupply, "exceeds total supply");

    if (msg.sender != owner()) {
        uint256 ownerMintedCount = addressMintedBalance[msg.sender];
        require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded");
    }

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

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

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
        return notRevealedUri;
    }
  }

  //only owner
  
  function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
    nftPerAddressLimit = _limit;
  }
  
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

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

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
  
 
  function withdraw() public payable onlyOwner {
    (bool ind, ) = payable(0xB4158CC4E70d000D0Be966d5b3F8Ad5eB62bF91A).call{value: address(this).balance * 20 / 100}("");
    require(ind);

    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);

  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c908051906020019062000051929190620002f6565b506000600e556101f4600f55600260105560026011556000601260006101000a81548160ff0219169083151502179055506000601260016101000a81548160ff021916908315150217905550348015620000aa57600080fd5b5060405162004796380380620047968339818101604052810190620000d0919062000424565b83838160009080519060200190620000ea929190620002f6565b50806001908051906020019062000103929190620002f6565b505050620001266200011a6200014160201b60201c565b6200014960201b60201c565b62000137816200020f60201b60201c565b5050505062000719565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200021f6200023b60201b60201c565b80600d908051906020019062000237929190620002f6565b5050565b6200024b6200014160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000271620002cc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002ca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002c19062000539565b60405180910390fd5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003049062000601565b90600052602060002090601f01602090048101928262000328576000855562000374565b82601f106200034357805160ff191683800117855562000374565b8280016001018555821562000374579182015b828111156200037357825182559160200191906001019062000356565b5b50905062000383919062000387565b5090565b5b80821115620003a257600081600090555060010162000388565b5090565b6000620003bd620003b78462000584565b6200055b565b905082815260208101848484011115620003dc57620003db620006d0565b5b620003e9848285620005cb565b509392505050565b600082601f830112620004095762000408620006cb565b5b81516200041b848260208601620003a6565b91505092915050565b60008060008060808587031215620004415762000440620006da565b5b600085015167ffffffffffffffff811115620004625762000461620006d5565b5b6200047087828801620003f1565b945050602085015167ffffffffffffffff811115620004945762000493620006d5565b5b620004a287828801620003f1565b935050604085015167ffffffffffffffff811115620004c657620004c5620006d5565b5b620004d487828801620003f1565b925050606085015167ffffffffffffffff811115620004f857620004f7620006d5565b5b6200050687828801620003f1565b91505092959194509250565b600062000521602083620005ba565b91506200052e82620006f0565b602082019050919050565b60006020820190508181036000830152620005548162000512565b9050919050565b6000620005676200057a565b905062000575828262000637565b919050565b6000604051905090565b600067ffffffffffffffff821115620005a257620005a16200069c565b5b620005ad82620006df565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620005eb578082015181840152602081019050620005ce565b83811115620005fb576000848401525b50505050565b600060028204905060018216806200061a57607f821691505b602082108114156200063157620006306200066d565b5b50919050565b6200064282620006df565b810181811067ffffffffffffffff821117156200066457620006636200069c565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61406d80620007296000396000f3fe60806040526004361061021a5760003560e01c80635c975abb11610123578063b88d4fde116100ab578063d5abeb011161006f578063d5abeb01146107cd578063da3ef23f146107f8578063e985e9c514610821578063f2c4ce1e1461085e578063f2fde38b146108875761021a565b8063b88d4fde146106e8578063ba7d2c7614610711578063c66828621461073c578063c87b56dd14610767578063d0eb26b0146107a45761021a565b8063715018a6116100f2578063715018a6146106365780638da5cb5b1461064d57806395d89b4114610678578063a0712d68146106a3578063a22cb465146106bf5761021a565b80635c975abb146105665780636352211e146105915780636c0360eb146105ce57806370a08231146105f95761021a565b8063239c70ae116101a657806342842e0e1161017557806342842e0e1461046f578063438b63001461049857806344a0d68a146104d55780634f6ccce7146104fe578063518302271461053b5761021a565b8063239c70ae146103d457806323b872dd146103ff5780632f745c59146104285780633ccfd60b146104655761021a565b8063081c8c44116101ed578063081c8c44146102ed578063095ea7b31461031857806313faede61461034157806318160ddd1461036c57806318cae269146103975761021a565b806301ffc9a71461021f57806302329a291461025c57806306fdde0314610285578063081812fc146102b0575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190612d94565b6108b0565b6040516102539190613328565b60405180910390f35b34801561026857600080fd5b50610283600480360381019061027e9190612d67565b61092a565b005b34801561029157600080fd5b5061029a61094f565b6040516102a79190613343565b60405180910390f35b3480156102bc57600080fd5b506102d760048036038101906102d29190612e37565b6109e1565b6040516102e4919061329f565b60405180910390f35b3480156102f957600080fd5b50610302610a27565b60405161030f9190613343565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a9190612d27565b610ab5565b005b34801561034d57600080fd5b50610356610bcd565b6040516103639190613605565b60405180910390f35b34801561037857600080fd5b50610381610bd3565b60405161038e9190613605565b60405180910390f35b3480156103a357600080fd5b506103be60048036038101906103b99190612ba4565b610be0565b6040516103cb9190613605565b60405180910390f35b3480156103e057600080fd5b506103e9610bf8565b6040516103f69190613605565b60405180910390f35b34801561040b57600080fd5b5061042660048036038101906104219190612c11565b610bfe565b005b34801561043457600080fd5b5061044f600480360381019061044a9190612d27565b610c5e565b60405161045c9190613605565b60405180910390f35b61046d610d03565b005b34801561047b57600080fd5b5061049660048036038101906104919190612c11565b610e2e565b005b3480156104a457600080fd5b506104bf60048036038101906104ba9190612ba4565b610e4e565b6040516104cc9190613306565b60405180910390f35b3480156104e157600080fd5b506104fc60048036038101906104f79190612e37565b610efc565b005b34801561050a57600080fd5b5061052560048036038101906105209190612e37565b610f0e565b6040516105329190613605565b60405180910390f35b34801561054757600080fd5b50610550610f7f565b60405161055d9190613328565b60405180910390f35b34801561057257600080fd5b5061057b610f92565b6040516105889190613328565b60405180910390f35b34801561059d57600080fd5b506105b860048036038101906105b39190612e37565b610fa5565b6040516105c5919061329f565b60405180910390f35b3480156105da57600080fd5b506105e3611057565b6040516105f09190613343565b60405180910390f35b34801561060557600080fd5b50610620600480360381019061061b9190612ba4565b6110e5565b60405161062d9190613605565b60405180910390f35b34801561064257600080fd5b5061064b61119d565b005b34801561065957600080fd5b506106626111b1565b60405161066f919061329f565b60405180910390f35b34801561068457600080fd5b5061068d6111db565b60405161069a9190613343565b60405180910390f35b6106bd60048036038101906106b89190612e37565b61126d565b005b3480156106cb57600080fd5b506106e660048036038101906106e19190612ce7565b61153c565b005b3480156106f457600080fd5b5061070f600480360381019061070a9190612c64565b611552565b005b34801561071d57600080fd5b506107266115b4565b6040516107339190613605565b60405180910390f35b34801561074857600080fd5b506107516115ba565b60405161075e9190613343565b60405180910390f35b34801561077357600080fd5b5061078e60048036038101906107899190612e37565b611648565b60405161079b9190613343565b60405180910390f35b3480156107b057600080fd5b506107cb60048036038101906107c69190612e37565b611746565b005b3480156107d957600080fd5b506107e2611758565b6040516107ef9190613605565b60405180910390f35b34801561080457600080fd5b5061081f600480360381019061081a9190612dee565b61175e565b005b34801561082d57600080fd5b5061084860048036038101906108439190612bd1565b611780565b6040516108559190613328565b60405180910390f35b34801561086a57600080fd5b5061088560048036038101906108809190612dee565b611814565b005b34801561089357600080fd5b506108ae60048036038101906108a99190612ba4565b611836565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109235750610922826118ba565b5b9050919050565b61093261199c565b80601260006101000a81548160ff02191690831515021790555050565b60606000805461095e906138ee565b80601f016020809104026020016040519081016040528092919081815260200182805461098a906138ee565b80156109d75780601f106109ac576101008083540402835291602001916109d7565b820191906000526020600020905b8154815290600101906020018083116109ba57829003601f168201915b5050505050905090565b60006109ec82611a1a565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d8054610a34906138ee565b80601f0160208091040260200160405190810160405280929190818152602001828054610a60906138ee565b8015610aad5780601f10610a8257610100808354040283529160200191610aad565b820191906000526020600020905b815481529060010190602001808311610a9057829003601f168201915b505050505081565b6000610ac082610fa5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2890613585565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b50611a65565b73ffffffffffffffffffffffffffffffffffffffff161480610b7f5750610b7e81610b79611a65565b611780565b5b610bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb5906134a5565b60405180910390fd5b610bc88383611a6d565b505050565b600e5481565b6000600880549050905090565b60136020528060005260406000206000915090505481565b60105481565b610c0f610c09611a65565b82611b26565b610c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c45906135c5565b60405180910390fd5b610c59838383611bbb565b505050565b6000610c69836110e5565b8210610caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca190613365565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610d0b61199c565b600073b4158cc4e70d000d0be966d5b3f8ad5eb62bf91a73ffffffffffffffffffffffffffffffffffffffff166064601447610d4791906137aa565b610d519190613779565b604051610d5d9061328a565b60006040518083038185875af1925050503d8060008114610d9a576040519150601f19603f3d011682016040523d82523d6000602084013e610d9f565b606091505b5050905080610dad57600080fd5b6000610db76111b1565b73ffffffffffffffffffffffffffffffffffffffff1647604051610dda9061328a565b60006040518083038185875af1925050503d8060008114610e17576040519150601f19603f3d011682016040523d82523d6000602084013e610e1c565b606091505b5050905080610e2a57600080fd5b5050565b610e4983838360405180602001604052806000815250611552565b505050565b60606000610e5b836110e5565b905060008167ffffffffffffffff811115610e7957610e78613a85565b5b604051908082528060200260200182016040528015610ea75781602001602082028036833780820191505090505b50905060005b82811015610ef157610ebf8582610c5e565b828281518110610ed257610ed1613a56565b5b6020026020010181815250508080610ee990613951565b915050610ead565b508092505050919050565b610f0461199c565b80600e8190555050565b6000610f18610bd3565b8210610f59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f50906135a5565b60405180910390fd5b60088281548110610f6d57610f6c613a56565b5b90600052602060002001549050919050565b601260019054906101000a900460ff1681565b601260009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561104e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104590613565565b60405180910390fd5b80915050919050565b600b8054611064906138ee565b80601f0160208091040260200160405190810160405280929190818152602001828054611090906138ee565b80156110dd5780601f106110b2576101008083540402835291602001916110dd565b820191906000526020600020905b8154815290600101906020018083116110c057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114d90613485565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111a561199c565b6111af6000611e22565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546111ea906138ee565b80601f0160208091040260200160405190810160405280929190818152602001828054611216906138ee565b80156112635780601f1061123857610100808354040283529160200191611263565b820191906000526020600020905b81548152906001019060200180831161124657829003601f168201915b5050505050905090565b601260009054906101000a900460ff16156112bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b490613525565b60405180910390fd5b60006112c7610bd3565b90506000821161130c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611303906135e5565b60405180910390fd5b6113146111b1565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461138c5760105482111561138b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138290613465565b60405180910390fd5b5b600f54828261139b9190613723565b11156113dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d3906134e5565b60405180910390fd5b6113e46111b1565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146114ac576000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060115483826114699190613723565b11156114aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a190613405565b60405180910390fd5b505b6000600190505b82811161153757601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061150a90613951565b919050555061152433828461151f9190613723565b611ee8565b808061152f90613951565b9150506114b3565b505050565b61154e611547611a65565b8383611f06565b5050565b61156361155d611a65565b83611b26565b6115a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611599906135c5565b60405180910390fd5b6115ae84848484612073565b50505050565b60115481565b600c80546115c7906138ee565b80601f01602080910402602001604051908101604052809291908181526020018280546115f3906138ee565b80156116405780601f1061161557610100808354040283529160200191611640565b820191906000526020600020905b81548152906001019060200180831161162357829003601f168201915b505050505081565b6060611653826120cf565b611692576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168990613545565b60405180910390fd5b60001515601260019054906101000a900460ff161515141561174057600d80546116bb906138ee565b80601f01602080910402602001604051908101604052809291908181526020018280546116e7906138ee565b80156117345780601f1061170957610100808354040283529160200191611734565b820191906000526020600020905b81548152906001019060200180831161171757829003601f168201915b50505050509050611741565b5b919050565b61174e61199c565b8060118190555050565b600f5481565b61176661199c565b80600c908051906020019061177c9291906129b8565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61181c61199c565b80600d90805190602001906118329291906129b8565b5050565b61183e61199c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a5906133a5565b60405180910390fd5b6118b781611e22565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061198557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061199557506119948261213b565b5b9050919050565b6119a4611a65565b73ffffffffffffffffffffffffffffffffffffffff166119c26111b1565b73ffffffffffffffffffffffffffffffffffffffff1614611a18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0f90613505565b60405180910390fd5b565b611a23816120cf565b611a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5990613565565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ae083610fa5565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611b3283610fa5565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b745750611b738185611780565b5b80611bb257508373ffffffffffffffffffffffffffffffffffffffff16611b9a846109e1565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611bdb82610fa5565b73ffffffffffffffffffffffffffffffffffffffff1614611c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c28906133c5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9890613425565b60405180910390fd5b611cac8383836121a5565b611cb7600082611a6d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d079190613804565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d5e9190613723565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e1d8383836122b9565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611f028282604051806020016040528060008152506122be565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6c90613445565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120669190613328565b60405180910390a3505050565b61207e848484611bbb565b61208a84848484612319565b6120c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c090613385565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6121b08383836124b0565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121f3576121ee816124b5565b612232565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146122315761223083826124fe565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612275576122708161266b565b6122b4565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146122b3576122b2828261273c565b5b5b505050565b505050565b6122c883836127bb565b6122d56000848484612319565b612314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230b90613385565b60405180910390fd5b505050565b600061233a8473ffffffffffffffffffffffffffffffffffffffff16612995565b156124a3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612363611a65565b8786866040518563ffffffff1660e01b815260040161238594939291906132ba565b602060405180830381600087803b15801561239f57600080fd5b505af19250505080156123d057506040513d601f19601f820116820180604052508101906123cd9190612dc1565b60015b612453573d8060008114612400576040519150601f19603f3d011682016040523d82523d6000602084013e612405565b606091505b5060008151141561244b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244290613385565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124a8565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161250b846110e5565b6125159190613804565b90506000600760008481526020019081526020016000205490508181146125fa576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061267f9190613804565b90506000600960008481526020019081526020016000205490506000600883815481106126af576126ae613a56565b5b9060005260206000200154905080600883815481106126d1576126d0613a56565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806127205761271f613a27565b5b6001900381819060005260206000200160009055905550505050565b6000612747836110e5565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561282b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612822906134c5565b60405180910390fd5b612834816120cf565b15612874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286b906133e5565b60405180910390fd5b612880600083836121a5565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128d09190613723565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612991600083836122b9565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546129c4906138ee565b90600052602060002090601f0160209004810192826129e65760008555612a2d565b82601f106129ff57805160ff1916838001178555612a2d565b82800160010185558215612a2d579182015b82811115612a2c578251825591602001919060010190612a11565b5b509050612a3a9190612a3e565b5090565b5b80821115612a57576000816000905550600101612a3f565b5090565b6000612a6e612a6984613645565b613620565b905082815260208101848484011115612a8a57612a89613ab9565b5b612a958482856138ac565b509392505050565b6000612ab0612aab84613676565b613620565b905082815260208101848484011115612acc57612acb613ab9565b5b612ad78482856138ac565b509392505050565b600081359050612aee81613fdb565b92915050565b600081359050612b0381613ff2565b92915050565b600081359050612b1881614009565b92915050565b600081519050612b2d81614009565b92915050565b600082601f830112612b4857612b47613ab4565b5b8135612b58848260208601612a5b565b91505092915050565b600082601f830112612b7657612b75613ab4565b5b8135612b86848260208601612a9d565b91505092915050565b600081359050612b9e81614020565b92915050565b600060208284031215612bba57612bb9613ac3565b5b6000612bc884828501612adf565b91505092915050565b60008060408385031215612be857612be7613ac3565b5b6000612bf685828601612adf565b9250506020612c0785828601612adf565b9150509250929050565b600080600060608486031215612c2a57612c29613ac3565b5b6000612c3886828701612adf565b9350506020612c4986828701612adf565b9250506040612c5a86828701612b8f565b9150509250925092565b60008060008060808587031215612c7e57612c7d613ac3565b5b6000612c8c87828801612adf565b9450506020612c9d87828801612adf565b9350506040612cae87828801612b8f565b925050606085013567ffffffffffffffff811115612ccf57612cce613abe565b5b612cdb87828801612b33565b91505092959194509250565b60008060408385031215612cfe57612cfd613ac3565b5b6000612d0c85828601612adf565b9250506020612d1d85828601612af4565b9150509250929050565b60008060408385031215612d3e57612d3d613ac3565b5b6000612d4c85828601612adf565b9250506020612d5d85828601612b8f565b9150509250929050565b600060208284031215612d7d57612d7c613ac3565b5b6000612d8b84828501612af4565b91505092915050565b600060208284031215612daa57612da9613ac3565b5b6000612db884828501612b09565b91505092915050565b600060208284031215612dd757612dd6613ac3565b5b6000612de584828501612b1e565b91505092915050565b600060208284031215612e0457612e03613ac3565b5b600082013567ffffffffffffffff811115612e2257612e21613abe565b5b612e2e84828501612b61565b91505092915050565b600060208284031215612e4d57612e4c613ac3565b5b6000612e5b84828501612b8f565b91505092915050565b6000612e70838361326c565b60208301905092915050565b612e8581613838565b82525050565b6000612e96826136b7565b612ea081856136e5565b9350612eab836136a7565b8060005b83811015612edc578151612ec38882612e64565b9750612ece836136d8565b925050600181019050612eaf565b5085935050505092915050565b612ef28161384a565b82525050565b6000612f03826136c2565b612f0d81856136f6565b9350612f1d8185602086016138bb565b612f2681613ac8565b840191505092915050565b6000612f3c826136cd565b612f468185613712565b9350612f568185602086016138bb565b612f5f81613ac8565b840191505092915050565b6000612f77602b83613712565b9150612f8282613ad9565b604082019050919050565b6000612f9a603283613712565b9150612fa582613b28565b604082019050919050565b6000612fbd602683613712565b9150612fc882613b77565b604082019050919050565b6000612fe0602583613712565b9150612feb82613bc6565b604082019050919050565b6000613003601c83613712565b915061300e82613c15565b602082019050919050565b6000613026601c83613712565b915061303182613c3e565b602082019050919050565b6000613049602483613712565b915061305482613c67565b604082019050919050565b600061306c601983613712565b915061307782613cb6565b602082019050919050565b600061308f601483613712565b915061309a82613cdf565b602082019050919050565b60006130b2602983613712565b91506130bd82613d08565b604082019050919050565b60006130d5603e83613712565b91506130e082613d57565b604082019050919050565b60006130f8602083613712565b915061310382613da6565b602082019050919050565b600061311b601483613712565b915061312682613dcf565b602082019050919050565b600061313e602083613712565b915061314982613df8565b602082019050919050565b6000613161601683613712565b915061316c82613e21565b602082019050919050565b6000613184602f83613712565b915061318f82613e4a565b604082019050919050565b60006131a7601883613712565b91506131b282613e99565b602082019050919050565b60006131ca602183613712565b91506131d582613ec2565b604082019050919050565b60006131ed600083613707565b91506131f882613f11565b600082019050919050565b6000613210602c83613712565b915061321b82613f14565b604082019050919050565b6000613233602e83613712565b915061323e82613f63565b604082019050919050565b6000613256601b83613712565b915061326182613fb2565b602082019050919050565b613275816138a2565b82525050565b613284816138a2565b82525050565b6000613295826131e0565b9150819050919050565b60006020820190506132b46000830184612e7c565b92915050565b60006080820190506132cf6000830187612e7c565b6132dc6020830186612e7c565b6132e9604083018561327b565b81810360608301526132fb8184612ef8565b905095945050505050565b600060208201905081810360008301526133208184612e8b565b905092915050565b600060208201905061333d6000830184612ee9565b92915050565b6000602082019050818103600083015261335d8184612f31565b905092915050565b6000602082019050818103600083015261337e81612f6a565b9050919050565b6000602082019050818103600083015261339e81612f8d565b9050919050565b600060208201905081810360008301526133be81612fb0565b9050919050565b600060208201905081810360008301526133de81612fd3565b9050919050565b600060208201905081810360008301526133fe81612ff6565b9050919050565b6000602082019050818103600083015261341e81613019565b9050919050565b6000602082019050818103600083015261343e8161303c565b9050919050565b6000602082019050818103600083015261345e8161305f565b9050919050565b6000602082019050818103600083015261347e81613082565b9050919050565b6000602082019050818103600083015261349e816130a5565b9050919050565b600060208201905081810360008301526134be816130c8565b9050919050565b600060208201905081810360008301526134de816130eb565b9050919050565b600060208201905081810360008301526134fe8161310e565b9050919050565b6000602082019050818103600083015261351e81613131565b9050919050565b6000602082019050818103600083015261353e81613154565b9050919050565b6000602082019050818103600083015261355e81613177565b9050919050565b6000602082019050818103600083015261357e8161319a565b9050919050565b6000602082019050818103600083015261359e816131bd565b9050919050565b600060208201905081810360008301526135be81613203565b9050919050565b600060208201905081810360008301526135de81613226565b9050919050565b600060208201905081810360008301526135fe81613249565b9050919050565b600060208201905061361a600083018461327b565b92915050565b600061362a61363b565b90506136368282613920565b919050565b6000604051905090565b600067ffffffffffffffff8211156136605761365f613a85565b5b61366982613ac8565b9050602081019050919050565b600067ffffffffffffffff82111561369157613690613a85565b5b61369a82613ac8565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600061372e826138a2565b9150613739836138a2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561376e5761376d61399a565b5b828201905092915050565b6000613784826138a2565b915061378f836138a2565b92508261379f5761379e6139c9565b5b828204905092915050565b60006137b5826138a2565b91506137c0836138a2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137f9576137f861399a565b5b828202905092915050565b600061380f826138a2565b915061381a836138a2565b92508282101561382d5761382c61399a565b5b828203905092915050565b600061384382613882565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156138d95780820151818401526020810190506138be565b838111156138e8576000848401525b50505050565b6000600282049050600182168061390657607f821691505b6020821081141561391a576139196139f8565b5b50919050565b61392982613ac8565b810181811067ffffffffffffffff8211171561394857613947613a85565b5b80604052505050565b600061395c826138a2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561398f5761398e61399a565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f6d6178206d696e7420616d6f756e742069732032000000000000000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f6578636565647320746f74616c20737570706c79000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b613fe481613838565b8114613fef57600080fd5b50565b613ffb8161384a565b811461400657600080fd5b50565b61401281613856565b811461401d57600080fd5b50565b614029816138a2565b811461403457600080fd5b5056fea26469706673582212207dcb406bebab0afe17392a63f30daa3eb52dac40f3bb9dcdeec70c4c3b74658964736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000001256696c6c61746f72204d696e74205061737300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003564d50000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061021a5760003560e01c80635c975abb11610123578063b88d4fde116100ab578063d5abeb011161006f578063d5abeb01146107cd578063da3ef23f146107f8578063e985e9c514610821578063f2c4ce1e1461085e578063f2fde38b146108875761021a565b8063b88d4fde146106e8578063ba7d2c7614610711578063c66828621461073c578063c87b56dd14610767578063d0eb26b0146107a45761021a565b8063715018a6116100f2578063715018a6146106365780638da5cb5b1461064d57806395d89b4114610678578063a0712d68146106a3578063a22cb465146106bf5761021a565b80635c975abb146105665780636352211e146105915780636c0360eb146105ce57806370a08231146105f95761021a565b8063239c70ae116101a657806342842e0e1161017557806342842e0e1461046f578063438b63001461049857806344a0d68a146104d55780634f6ccce7146104fe578063518302271461053b5761021a565b8063239c70ae146103d457806323b872dd146103ff5780632f745c59146104285780633ccfd60b146104655761021a565b8063081c8c44116101ed578063081c8c44146102ed578063095ea7b31461031857806313faede61461034157806318160ddd1461036c57806318cae269146103975761021a565b806301ffc9a71461021f57806302329a291461025c57806306fdde0314610285578063081812fc146102b0575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190612d94565b6108b0565b6040516102539190613328565b60405180910390f35b34801561026857600080fd5b50610283600480360381019061027e9190612d67565b61092a565b005b34801561029157600080fd5b5061029a61094f565b6040516102a79190613343565b60405180910390f35b3480156102bc57600080fd5b506102d760048036038101906102d29190612e37565b6109e1565b6040516102e4919061329f565b60405180910390f35b3480156102f957600080fd5b50610302610a27565b60405161030f9190613343565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a9190612d27565b610ab5565b005b34801561034d57600080fd5b50610356610bcd565b6040516103639190613605565b60405180910390f35b34801561037857600080fd5b50610381610bd3565b60405161038e9190613605565b60405180910390f35b3480156103a357600080fd5b506103be60048036038101906103b99190612ba4565b610be0565b6040516103cb9190613605565b60405180910390f35b3480156103e057600080fd5b506103e9610bf8565b6040516103f69190613605565b60405180910390f35b34801561040b57600080fd5b5061042660048036038101906104219190612c11565b610bfe565b005b34801561043457600080fd5b5061044f600480360381019061044a9190612d27565b610c5e565b60405161045c9190613605565b60405180910390f35b61046d610d03565b005b34801561047b57600080fd5b5061049660048036038101906104919190612c11565b610e2e565b005b3480156104a457600080fd5b506104bf60048036038101906104ba9190612ba4565b610e4e565b6040516104cc9190613306565b60405180910390f35b3480156104e157600080fd5b506104fc60048036038101906104f79190612e37565b610efc565b005b34801561050a57600080fd5b5061052560048036038101906105209190612e37565b610f0e565b6040516105329190613605565b60405180910390f35b34801561054757600080fd5b50610550610f7f565b60405161055d9190613328565b60405180910390f35b34801561057257600080fd5b5061057b610f92565b6040516105889190613328565b60405180910390f35b34801561059d57600080fd5b506105b860048036038101906105b39190612e37565b610fa5565b6040516105c5919061329f565b60405180910390f35b3480156105da57600080fd5b506105e3611057565b6040516105f09190613343565b60405180910390f35b34801561060557600080fd5b50610620600480360381019061061b9190612ba4565b6110e5565b60405161062d9190613605565b60405180910390f35b34801561064257600080fd5b5061064b61119d565b005b34801561065957600080fd5b506106626111b1565b60405161066f919061329f565b60405180910390f35b34801561068457600080fd5b5061068d6111db565b60405161069a9190613343565b60405180910390f35b6106bd60048036038101906106b89190612e37565b61126d565b005b3480156106cb57600080fd5b506106e660048036038101906106e19190612ce7565b61153c565b005b3480156106f457600080fd5b5061070f600480360381019061070a9190612c64565b611552565b005b34801561071d57600080fd5b506107266115b4565b6040516107339190613605565b60405180910390f35b34801561074857600080fd5b506107516115ba565b60405161075e9190613343565b60405180910390f35b34801561077357600080fd5b5061078e60048036038101906107899190612e37565b611648565b60405161079b9190613343565b60405180910390f35b3480156107b057600080fd5b506107cb60048036038101906107c69190612e37565b611746565b005b3480156107d957600080fd5b506107e2611758565b6040516107ef9190613605565b60405180910390f35b34801561080457600080fd5b5061081f600480360381019061081a9190612dee565b61175e565b005b34801561082d57600080fd5b5061084860048036038101906108439190612bd1565b611780565b6040516108559190613328565b60405180910390f35b34801561086a57600080fd5b5061088560048036038101906108809190612dee565b611814565b005b34801561089357600080fd5b506108ae60048036038101906108a99190612ba4565b611836565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109235750610922826118ba565b5b9050919050565b61093261199c565b80601260006101000a81548160ff02191690831515021790555050565b60606000805461095e906138ee565b80601f016020809104026020016040519081016040528092919081815260200182805461098a906138ee565b80156109d75780601f106109ac576101008083540402835291602001916109d7565b820191906000526020600020905b8154815290600101906020018083116109ba57829003601f168201915b5050505050905090565b60006109ec82611a1a565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600d8054610a34906138ee565b80601f0160208091040260200160405190810160405280929190818152602001828054610a60906138ee565b8015610aad5780601f10610a8257610100808354040283529160200191610aad565b820191906000526020600020905b815481529060010190602001808311610a9057829003601f168201915b505050505081565b6000610ac082610fa5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2890613585565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b50611a65565b73ffffffffffffffffffffffffffffffffffffffff161480610b7f5750610b7e81610b79611a65565b611780565b5b610bbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb5906134a5565b60405180910390fd5b610bc88383611a6d565b505050565b600e5481565b6000600880549050905090565b60136020528060005260406000206000915090505481565b60105481565b610c0f610c09611a65565b82611b26565b610c4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c45906135c5565b60405180910390fd5b610c59838383611bbb565b505050565b6000610c69836110e5565b8210610caa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca190613365565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610d0b61199c565b600073b4158cc4e70d000d0be966d5b3f8ad5eb62bf91a73ffffffffffffffffffffffffffffffffffffffff166064601447610d4791906137aa565b610d519190613779565b604051610d5d9061328a565b60006040518083038185875af1925050503d8060008114610d9a576040519150601f19603f3d011682016040523d82523d6000602084013e610d9f565b606091505b5050905080610dad57600080fd5b6000610db76111b1565b73ffffffffffffffffffffffffffffffffffffffff1647604051610dda9061328a565b60006040518083038185875af1925050503d8060008114610e17576040519150601f19603f3d011682016040523d82523d6000602084013e610e1c565b606091505b5050905080610e2a57600080fd5b5050565b610e4983838360405180602001604052806000815250611552565b505050565b60606000610e5b836110e5565b905060008167ffffffffffffffff811115610e7957610e78613a85565b5b604051908082528060200260200182016040528015610ea75781602001602082028036833780820191505090505b50905060005b82811015610ef157610ebf8582610c5e565b828281518110610ed257610ed1613a56565b5b6020026020010181815250508080610ee990613951565b915050610ead565b508092505050919050565b610f0461199c565b80600e8190555050565b6000610f18610bd3565b8210610f59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f50906135a5565b60405180910390fd5b60088281548110610f6d57610f6c613a56565b5b90600052602060002001549050919050565b601260019054906101000a900460ff1681565b601260009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561104e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104590613565565b60405180910390fd5b80915050919050565b600b8054611064906138ee565b80601f0160208091040260200160405190810160405280929190818152602001828054611090906138ee565b80156110dd5780601f106110b2576101008083540402835291602001916110dd565b820191906000526020600020905b8154815290600101906020018083116110c057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611156576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114d90613485565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111a561199c565b6111af6000611e22565b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546111ea906138ee565b80601f0160208091040260200160405190810160405280929190818152602001828054611216906138ee565b80156112635780601f1061123857610100808354040283529160200191611263565b820191906000526020600020905b81548152906001019060200180831161124657829003601f168201915b5050505050905090565b601260009054906101000a900460ff16156112bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b490613525565b60405180910390fd5b60006112c7610bd3565b90506000821161130c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611303906135e5565b60405180910390fd5b6113146111b1565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461138c5760105482111561138b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138290613465565b60405180910390fd5b5b600f54828261139b9190613723565b11156113dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d3906134e5565b60405180910390fd5b6113e46111b1565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146114ac576000601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060115483826114699190613723565b11156114aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a190613405565b60405180910390fd5b505b6000600190505b82811161153757601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061150a90613951565b919050555061152433828461151f9190613723565b611ee8565b808061152f90613951565b9150506114b3565b505050565b61154e611547611a65565b8383611f06565b5050565b61156361155d611a65565b83611b26565b6115a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611599906135c5565b60405180910390fd5b6115ae84848484612073565b50505050565b60115481565b600c80546115c7906138ee565b80601f01602080910402602001604051908101604052809291908181526020018280546115f3906138ee565b80156116405780601f1061161557610100808354040283529160200191611640565b820191906000526020600020905b81548152906001019060200180831161162357829003601f168201915b505050505081565b6060611653826120cf565b611692576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168990613545565b60405180910390fd5b60001515601260019054906101000a900460ff161515141561174057600d80546116bb906138ee565b80601f01602080910402602001604051908101604052809291908181526020018280546116e7906138ee565b80156117345780601f1061170957610100808354040283529160200191611734565b820191906000526020600020905b81548152906001019060200180831161171757829003601f168201915b50505050509050611741565b5b919050565b61174e61199c565b8060118190555050565b600f5481565b61176661199c565b80600c908051906020019061177c9291906129b8565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61181c61199c565b80600d90805190602001906118329291906129b8565b5050565b61183e61199c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a5906133a5565b60405180910390fd5b6118b781611e22565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061198557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061199557506119948261213b565b5b9050919050565b6119a4611a65565b73ffffffffffffffffffffffffffffffffffffffff166119c26111b1565b73ffffffffffffffffffffffffffffffffffffffff1614611a18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0f90613505565b60405180910390fd5b565b611a23816120cf565b611a62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5990613565565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ae083610fa5565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611b3283610fa5565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b745750611b738185611780565b5b80611bb257508373ffffffffffffffffffffffffffffffffffffffff16611b9a846109e1565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611bdb82610fa5565b73ffffffffffffffffffffffffffffffffffffffff1614611c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c28906133c5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9890613425565b60405180910390fd5b611cac8383836121a5565b611cb7600082611a6d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d079190613804565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d5e9190613723565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e1d8383836122b9565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611f028282604051806020016040528060008152506122be565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6c90613445565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120669190613328565b60405180910390a3505050565b61207e848484611bbb565b61208a84848484612319565b6120c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c090613385565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6121b08383836124b0565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121f3576121ee816124b5565b612232565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146122315761223083826124fe565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612275576122708161266b565b6122b4565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146122b3576122b2828261273c565b5b5b505050565b505050565b6122c883836127bb565b6122d56000848484612319565b612314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230b90613385565b60405180910390fd5b505050565b600061233a8473ffffffffffffffffffffffffffffffffffffffff16612995565b156124a3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612363611a65565b8786866040518563ffffffff1660e01b815260040161238594939291906132ba565b602060405180830381600087803b15801561239f57600080fd5b505af19250505080156123d057506040513d601f19601f820116820180604052508101906123cd9190612dc1565b60015b612453573d8060008114612400576040519150601f19603f3d011682016040523d82523d6000602084013e612405565b606091505b5060008151141561244b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244290613385565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124a8565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161250b846110e5565b6125159190613804565b90506000600760008481526020019081526020016000205490508181146125fa576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061267f9190613804565b90506000600960008481526020019081526020016000205490506000600883815481106126af576126ae613a56565b5b9060005260206000200154905080600883815481106126d1576126d0613a56565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806127205761271f613a27565b5b6001900381819060005260206000200160009055905550505050565b6000612747836110e5565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561282b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612822906134c5565b60405180910390fd5b612834816120cf565b15612874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286b906133e5565b60405180910390fd5b612880600083836121a5565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128d09190613723565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612991600083836122b9565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546129c4906138ee565b90600052602060002090601f0160209004810192826129e65760008555612a2d565b82601f106129ff57805160ff1916838001178555612a2d565b82800160010185558215612a2d579182015b82811115612a2c578251825591602001919060010190612a11565b5b509050612a3a9190612a3e565b5090565b5b80821115612a57576000816000905550600101612a3f565b5090565b6000612a6e612a6984613645565b613620565b905082815260208101848484011115612a8a57612a89613ab9565b5b612a958482856138ac565b509392505050565b6000612ab0612aab84613676565b613620565b905082815260208101848484011115612acc57612acb613ab9565b5b612ad78482856138ac565b509392505050565b600081359050612aee81613fdb565b92915050565b600081359050612b0381613ff2565b92915050565b600081359050612b1881614009565b92915050565b600081519050612b2d81614009565b92915050565b600082601f830112612b4857612b47613ab4565b5b8135612b58848260208601612a5b565b91505092915050565b600082601f830112612b7657612b75613ab4565b5b8135612b86848260208601612a9d565b91505092915050565b600081359050612b9e81614020565b92915050565b600060208284031215612bba57612bb9613ac3565b5b6000612bc884828501612adf565b91505092915050565b60008060408385031215612be857612be7613ac3565b5b6000612bf685828601612adf565b9250506020612c0785828601612adf565b9150509250929050565b600080600060608486031215612c2a57612c29613ac3565b5b6000612c3886828701612adf565b9350506020612c4986828701612adf565b9250506040612c5a86828701612b8f565b9150509250925092565b60008060008060808587031215612c7e57612c7d613ac3565b5b6000612c8c87828801612adf565b9450506020612c9d87828801612adf565b9350506040612cae87828801612b8f565b925050606085013567ffffffffffffffff811115612ccf57612cce613abe565b5b612cdb87828801612b33565b91505092959194509250565b60008060408385031215612cfe57612cfd613ac3565b5b6000612d0c85828601612adf565b9250506020612d1d85828601612af4565b9150509250929050565b60008060408385031215612d3e57612d3d613ac3565b5b6000612d4c85828601612adf565b9250506020612d5d85828601612b8f565b9150509250929050565b600060208284031215612d7d57612d7c613ac3565b5b6000612d8b84828501612af4565b91505092915050565b600060208284031215612daa57612da9613ac3565b5b6000612db884828501612b09565b91505092915050565b600060208284031215612dd757612dd6613ac3565b5b6000612de584828501612b1e565b91505092915050565b600060208284031215612e0457612e03613ac3565b5b600082013567ffffffffffffffff811115612e2257612e21613abe565b5b612e2e84828501612b61565b91505092915050565b600060208284031215612e4d57612e4c613ac3565b5b6000612e5b84828501612b8f565b91505092915050565b6000612e70838361326c565b60208301905092915050565b612e8581613838565b82525050565b6000612e96826136b7565b612ea081856136e5565b9350612eab836136a7565b8060005b83811015612edc578151612ec38882612e64565b9750612ece836136d8565b925050600181019050612eaf565b5085935050505092915050565b612ef28161384a565b82525050565b6000612f03826136c2565b612f0d81856136f6565b9350612f1d8185602086016138bb565b612f2681613ac8565b840191505092915050565b6000612f3c826136cd565b612f468185613712565b9350612f568185602086016138bb565b612f5f81613ac8565b840191505092915050565b6000612f77602b83613712565b9150612f8282613ad9565b604082019050919050565b6000612f9a603283613712565b9150612fa582613b28565b604082019050919050565b6000612fbd602683613712565b9150612fc882613b77565b604082019050919050565b6000612fe0602583613712565b9150612feb82613bc6565b604082019050919050565b6000613003601c83613712565b915061300e82613c15565b602082019050919050565b6000613026601c83613712565b915061303182613c3e565b602082019050919050565b6000613049602483613712565b915061305482613c67565b604082019050919050565b600061306c601983613712565b915061307782613cb6565b602082019050919050565b600061308f601483613712565b915061309a82613cdf565b602082019050919050565b60006130b2602983613712565b91506130bd82613d08565b604082019050919050565b60006130d5603e83613712565b91506130e082613d57565b604082019050919050565b60006130f8602083613712565b915061310382613da6565b602082019050919050565b600061311b601483613712565b915061312682613dcf565b602082019050919050565b600061313e602083613712565b915061314982613df8565b602082019050919050565b6000613161601683613712565b915061316c82613e21565b602082019050919050565b6000613184602f83613712565b915061318f82613e4a565b604082019050919050565b60006131a7601883613712565b91506131b282613e99565b602082019050919050565b60006131ca602183613712565b91506131d582613ec2565b604082019050919050565b60006131ed600083613707565b91506131f882613f11565b600082019050919050565b6000613210602c83613712565b915061321b82613f14565b604082019050919050565b6000613233602e83613712565b915061323e82613f63565b604082019050919050565b6000613256601b83613712565b915061326182613fb2565b602082019050919050565b613275816138a2565b82525050565b613284816138a2565b82525050565b6000613295826131e0565b9150819050919050565b60006020820190506132b46000830184612e7c565b92915050565b60006080820190506132cf6000830187612e7c565b6132dc6020830186612e7c565b6132e9604083018561327b565b81810360608301526132fb8184612ef8565b905095945050505050565b600060208201905081810360008301526133208184612e8b565b905092915050565b600060208201905061333d6000830184612ee9565b92915050565b6000602082019050818103600083015261335d8184612f31565b905092915050565b6000602082019050818103600083015261337e81612f6a565b9050919050565b6000602082019050818103600083015261339e81612f8d565b9050919050565b600060208201905081810360008301526133be81612fb0565b9050919050565b600060208201905081810360008301526133de81612fd3565b9050919050565b600060208201905081810360008301526133fe81612ff6565b9050919050565b6000602082019050818103600083015261341e81613019565b9050919050565b6000602082019050818103600083015261343e8161303c565b9050919050565b6000602082019050818103600083015261345e8161305f565b9050919050565b6000602082019050818103600083015261347e81613082565b9050919050565b6000602082019050818103600083015261349e816130a5565b9050919050565b600060208201905081810360008301526134be816130c8565b9050919050565b600060208201905081810360008301526134de816130eb565b9050919050565b600060208201905081810360008301526134fe8161310e565b9050919050565b6000602082019050818103600083015261351e81613131565b9050919050565b6000602082019050818103600083015261353e81613154565b9050919050565b6000602082019050818103600083015261355e81613177565b9050919050565b6000602082019050818103600083015261357e8161319a565b9050919050565b6000602082019050818103600083015261359e816131bd565b9050919050565b600060208201905081810360008301526135be81613203565b9050919050565b600060208201905081810360008301526135de81613226565b9050919050565b600060208201905081810360008301526135fe81613249565b9050919050565b600060208201905061361a600083018461327b565b92915050565b600061362a61363b565b90506136368282613920565b919050565b6000604051905090565b600067ffffffffffffffff8211156136605761365f613a85565b5b61366982613ac8565b9050602081019050919050565b600067ffffffffffffffff82111561369157613690613a85565b5b61369a82613ac8565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600061372e826138a2565b9150613739836138a2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561376e5761376d61399a565b5b828201905092915050565b6000613784826138a2565b915061378f836138a2565b92508261379f5761379e6139c9565b5b828204905092915050565b60006137b5826138a2565b91506137c0836138a2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156137f9576137f861399a565b5b828202905092915050565b600061380f826138a2565b915061381a836138a2565b92508282101561382d5761382c61399a565b5b828203905092915050565b600061384382613882565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156138d95780820151818401526020810190506138be565b838111156138e8576000848401525b50505050565b6000600282049050600182168061390657607f821691505b6020821081141561391a576139196139f8565b5b50919050565b61392982613ac8565b810181811067ffffffffffffffff8211171561394857613947613a85565b5b80604052505050565b600061395c826138a2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561398f5761398e61399a565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f6d6178206d696e7420616d6f756e742069732032000000000000000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f6578636565647320746f74616c20737570706c79000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b613fe481613838565b8114613fef57600080fd5b50565b613ffb8161384a565b811461400657600080fd5b50565b61401281613856565b811461401d57600080fd5b50565b614029816138a2565b811461403457600080fd5b5056fea26469706673582212207dcb406bebab0afe17392a63f30daa3eb52dac40f3bb9dcdeec70c4c3b74658964736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000001256696c6c61746f72204d696e74205061737300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003564d50000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Villator Mint Pass
Arg [1] : _symbol (string): VMP
Arg [2] : _initBaseURI (string):
Arg [3] : _initNotRevealedUri (string):

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [5] : 56696c6c61746f72204d696e7420506173730000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 564d500000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

46299:3096:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40010:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49017:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26744:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28257:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46459:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27774:417;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46492:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40650:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46704:55;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46561:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28957:336;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40318:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49101:291;;;:::i;:::-;;29364:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47883:348;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48675:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40840:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46671:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46640:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26455:222;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46391:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26186:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5273:103;;;;;;;;;;;;;:::i;:::-;;4625:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26913:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47126:751;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28500:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29620:323;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46598:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46417;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48237:300;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48563:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46526:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48761:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28726:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48891:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5531:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40010:224;40112:4;40151:35;40136:50;;;:11;:50;;;;:90;;;;40190:36;40214:11;40190:23;:36::i;:::-;40136:90;40129:97;;40010:224;;;:::o;49017:73::-;4511:13;:11;:13::i;:::-;49078:6:::1;49069;;:15;;;;;;;;;;;;;;;;;;49017:73:::0;:::o;26744:100::-;26798:13;26831:5;26824:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26744:100;:::o;28257:171::-;28333:7;28353:23;28368:7;28353:14;:23::i;:::-;28396:15;:24;28412:7;28396:24;;;;;;;;;;;;;;;;;;;;;28389:31;;28257:171;;;:::o;46459:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27774:417::-;27855:13;27871:23;27886:7;27871:14;:23::i;:::-;27855:39;;27919:5;27913:11;;:2;:11;;;;27905:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;28013:5;27997:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;28022:37;28039:5;28046:12;:10;:12::i;:::-;28022:16;:37::i;:::-;27997:62;27975:174;;;;;;;;;;;;:::i;:::-;;;;;;;;;28162:21;28171:2;28175:7;28162:8;:21::i;:::-;27844:347;27774:417;;:::o;46492:29::-;;;;:::o;40650:113::-;40711:7;40738:10;:17;;;;40731:24;;40650:113;:::o;46704:55::-;;;;;;;;;;;;;;;;;:::o;46561:32::-;;;;:::o;28957:336::-;29152:41;29171:12;:10;:12::i;:::-;29185:7;29152:18;:41::i;:::-;29144:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;29257:28;29267:4;29273:2;29277:7;29257:9;:28::i;:::-;28957:336;;;:::o;40318:256::-;40415:7;40451:23;40468:5;40451:16;:23::i;:::-;40443:5;:31;40435:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;40540:12;:19;40553:5;40540:19;;;;;;;;;;;;;;;:26;40560:5;40540:26;;;;;;;;;;;;40533:33;;40318:256;;;;:::o;49101:291::-;4511:13;:11;:13::i;:::-;49154:8:::1;49176:42;49168:56;;49261:3;49256:2;49232:21;:26;;;;:::i;:::-;:32;;;;:::i;:::-;49168:101;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49153:116;;;49284:3;49276:12;;;::::0;::::1;;49298:7;49319;:5;:7::i;:::-;49311:21;;49340;49311:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49297:69;;;49381:2;49373:11;;;::::0;::::1;;49146:246;;49101:291::o:0;29364:185::-;29502:39;29519:4;29525:2;29529:7;29502:39;;;;;;;;;;;;:16;:39::i;:::-;29364:185;;;:::o;47883:348::-;47958:16;47986:23;48012:17;48022:6;48012:9;:17::i;:::-;47986:43;;48036:25;48078:15;48064:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48036:58;;48106:9;48101:103;48121:15;48117:1;:19;48101:103;;;48166:30;48186:6;48194:1;48166:19;:30::i;:::-;48152:8;48161:1;48152:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;48138:3;;;;;:::i;:::-;;;;48101:103;;;;48217:8;48210:15;;;;47883:348;;;:::o;48675:80::-;4511:13;:11;:13::i;:::-;48741:8:::1;48734:4;:15;;;;48675:80:::0;:::o;40840:233::-;40915:7;40951:30;:28;:30::i;:::-;40943:5;:38;40935:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;41048:10;41059:5;41048:17;;;;;;;;:::i;:::-;;;;;;;;;;41041:24;;40840:233;;;:::o;46671:28::-;;;;;;;;;;;;;:::o;46640:26::-;;;;;;;;;;;;;:::o;26455:222::-;26527:7;26547:13;26563:7;:16;26571:7;26563:16;;;;;;;;;;;;;;;;;;;;;26547:32;;26615:1;26598:19;;:5;:19;;;;26590:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;26664:5;26657:12;;;26455:222;;;:::o;46391:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26186:207::-;26258:7;26303:1;26286:19;;:5;:19;;;;26278:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26369:9;:16;26379:5;26369:16;;;;;;;;;;;;;;;;26362:23;;26186:207;;;:::o;5273:103::-;4511:13;:11;:13::i;:::-;5338:30:::1;5365:1;5338:18;:30::i;:::-;5273:103::o:0;4625:87::-;4671:7;4698:6;;;;;;;;;;;4691:13;;4625:87;:::o;26913:104::-;26969:13;27002:7;26995:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26913:104;:::o;47126:751::-;47192:6;;;;;;;;;;;47191:7;47183:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;47232:14;47249:13;:11;:13::i;:::-;47232:30;;47291:1;47277:11;:15;47269:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;47349:7;:5;:7::i;:::-;47335:21;;:10;:21;;;47331:107;;47392:13;;47377:11;:28;;47369:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;47331:107;47476:9;;47461:11;47452:6;:20;;;;:::i;:::-;:33;;47444:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;47537:7;:5;:7::i;:::-;47523:21;;:10;:21;;;47519:209;;47557:24;47584:20;:32;47605:10;47584:32;;;;;;;;;;;;;;;;47557:59;;47669:18;;47654:11;47635:16;:30;;;;:::i;:::-;:52;;47627:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;47546:182;47519:209;47741:9;47753:1;47741:13;;47736:136;47761:11;47756:1;:16;47736:136;;47788:20;:32;47809:10;47788:32;;;;;;;;;;;;;;;;:34;;;;;;;;;:::i;:::-;;;;;;47831:33;47841:10;47862:1;47853:6;:10;;;;:::i;:::-;47831:9;:33::i;:::-;47774:3;;;;;:::i;:::-;;;;47736:136;;;;47176:701;47126:751;:::o;28500:155::-;28595:52;28614:12;:10;:12::i;:::-;28628:8;28638;28595:18;:52::i;:::-;28500:155;;:::o;29620:323::-;29794:41;29813:12;:10;:12::i;:::-;29827:7;29794:18;:41::i;:::-;29786:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;29897:38;29911:4;29917:2;29921:7;29930:4;29897:13;:38::i;:::-;29620:323;;;;:::o;46598:37::-;;;;:::o;46417:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48237:300::-;48335:13;48376:16;48384:7;48376;:16::i;:::-;48360:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;48485:5;48473:17;;:8;;;;;;;;;;;:17;;;48470:62;;;48510:14;48503:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48470:62;48237:300;;;;:::o;48563:104::-;4511:13;:11;:13::i;:::-;48655:6:::1;48634:18;:27;;;;48563:104:::0;:::o;46526:30::-;;;;:::o;48761:122::-;4511:13;:11;:13::i;:::-;48860:17:::1;48844:13;:33;;;;;;;;;;;;:::i;:::-;;48761:122:::0;:::o;28726:164::-;28823:4;28847:18;:25;28866:5;28847:25;;;;;;;;;;;;;;;:35;28873:8;28847:35;;;;;;;;;;;;;;;;;;;;;;;;;28840:42;;28726:164;;;;:::o;48891:120::-;4511:13;:11;:13::i;:::-;48990:15:::1;48973:14;:32;;;;;;;;;;;;:::i;:::-;;48891:120:::0;:::o;5531:201::-;4511:13;:11;:13::i;:::-;5640:1:::1;5620:22;;:8;:22;;;;5612:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5696:28;5715:8;5696:18;:28::i;:::-;5531:201:::0;:::o;25817:305::-;25919:4;25971:25;25956:40;;;:11;:40;;;;:105;;;;26028:33;26013:48;;;:11;:48;;;;25956:105;:158;;;;26078:36;26102:11;26078:23;:36::i;:::-;25956:158;25936:178;;25817:305;;;:::o;4790:132::-;4865:12;:10;:12::i;:::-;4854:23;;:7;:5;:7::i;:::-;:23;;;4846:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4790:132::o;36232:135::-;36314:16;36322:7;36314;:16::i;:::-;36306:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;36232:135;:::o;3176:98::-;3229:7;3256:10;3249:17;;3176:98;:::o;35511:174::-;35613:2;35586:15;:24;35602:7;35586:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35669:7;35665:2;35631:46;;35640:23;35655:7;35640:14;:23::i;:::-;35631:46;;;;;;;;;;;;35511:174;;:::o;31744:264::-;31837:4;31854:13;31870:23;31885:7;31870:14;:23::i;:::-;31854:39;;31923:5;31912:16;;:7;:16;;;:52;;;;31932:32;31949:5;31956:7;31932:16;:32::i;:::-;31912:52;:87;;;;31992:7;31968:31;;:20;31980:7;31968:11;:20::i;:::-;:31;;;31912:87;31904:96;;;31744:264;;;;:::o;34767:625::-;34926:4;34899:31;;:23;34914:7;34899:14;:23::i;:::-;:31;;;34891:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;35005:1;34991:16;;:2;:16;;;;34983:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;35061:39;35082:4;35088:2;35092:7;35061:20;:39::i;:::-;35165:29;35182:1;35186:7;35165:8;:29::i;:::-;35226:1;35207:9;:15;35217:4;35207:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;35255:1;35238:9;:13;35248:2;35238:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35286:2;35267:7;:16;35275:7;35267:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35325:7;35321:2;35306:27;;35315:4;35306:27;;;;;;;;;;;;35346:38;35366:4;35372:2;35376:7;35346:19;:38::i;:::-;34767:625;;;:::o;5892:191::-;5966:16;5985:6;;;;;;;;;;;5966:25;;6011:8;6002:6;;:17;;;;;;;;;;;;;;;;;;6066:8;6035:40;;6056:8;6035:40;;;;;;;;;;;;5955:128;5892:191;:::o;32350:110::-;32426:26;32436:2;32440:7;32426:26;;;;;;;;;;;;:9;:26::i;:::-;32350:110;;:::o;35828:315::-;35983:8;35974:17;;:5;:17;;;;35966:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;36070:8;36032:18;:25;36051:5;36032:25;;;;;;;;;;;;;;;:35;36058:8;36032:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;36116:8;36094:41;;36109:5;36094:41;;;36126:8;36094:41;;;;;;:::i;:::-;;;;;;;;35828:315;;;:::o;30824:313::-;30980:28;30990:4;30996:2;31000:7;30980:9;:28::i;:::-;31027:47;31050:4;31056:2;31060:7;31069:4;31027:22;:47::i;:::-;31019:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;30824:313;;;;:::o;31450:127::-;31515:4;31567:1;31539:30;;:7;:16;31547:7;31539:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31532:37;;31450:127;;;:::o;17479:157::-;17564:4;17603:25;17588:40;;;:11;:40;;;;17581:47;;17479:157;;;:::o;41686:589::-;41830:45;41857:4;41863:2;41867:7;41830:26;:45::i;:::-;41908:1;41892:18;;:4;:18;;;41888:187;;;41927:40;41959:7;41927:31;:40::i;:::-;41888:187;;;41997:2;41989:10;;:4;:10;;;41985:90;;42016:47;42049:4;42055:7;42016:32;:47::i;:::-;41985:90;41888:187;42103:1;42089:16;;:2;:16;;;42085:183;;;42122:45;42159:7;42122:36;:45::i;:::-;42085:183;;;42195:4;42189:10;;:2;:10;;;42185:83;;42216:40;42244:2;42248:7;42216:27;:40::i;:::-;42185:83;42085:183;41686:589;;;:::o;38867:125::-;;;;:::o;32687:319::-;32816:18;32822:2;32826:7;32816:5;:18::i;:::-;32867:53;32898:1;32902:2;32906:7;32915:4;32867:22;:53::i;:::-;32845:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;32687:319;;;:::o;36931:853::-;37085:4;37106:15;:2;:13;;;:15::i;:::-;37102:675;;;37158:2;37142:36;;;37179:12;:10;:12::i;:::-;37193:4;37199:7;37208:4;37142:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37138:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37400:1;37383:6;:13;:18;37379:328;;;37426:60;;;;;;;;;;:::i;:::-;;;;;;;;37379:328;37657:6;37651:13;37642:6;37638:2;37634:15;37627:38;37138:584;37274:41;;;37264:51;;;:6;:51;;;;37257:58;;;;;37102:675;37761:4;37754:11;;36931:853;;;;;;;:::o;38356:126::-;;;;:::o;42998:164::-;43102:10;:17;;;;43075:15;:24;43091:7;43075:24;;;;;;;;;;;:44;;;;43130:10;43146:7;43130:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42998:164;:::o;43789:988::-;44055:22;44105:1;44080:22;44097:4;44080:16;:22::i;:::-;:26;;;;:::i;:::-;44055:51;;44117:18;44138:17;:26;44156:7;44138:26;;;;;;;;;;;;44117:47;;44285:14;44271:10;:28;44267:328;;44316:19;44338:12;:18;44351:4;44338:18;;;;;;;;;;;;;;;:34;44357:14;44338:34;;;;;;;;;;;;44316:56;;44422:11;44389:12;:18;44402:4;44389:18;;;;;;;;;;;;;;;:30;44408:10;44389:30;;;;;;;;;;;:44;;;;44539:10;44506:17;:30;44524:11;44506:30;;;;;;;;;;;:43;;;;44301:294;44267:328;44691:17;:26;44709:7;44691:26;;;;;;;;;;;44684:33;;;44735:12;:18;44748:4;44735:18;;;;;;;;;;;;;;;:34;44754:14;44735:34;;;;;;;;;;;44728:41;;;43870:907;;43789:988;;:::o;45072:1079::-;45325:22;45370:1;45350:10;:17;;;;:21;;;;:::i;:::-;45325:46;;45382:18;45403:15;:24;45419:7;45403:24;;;;;;;;;;;;45382:45;;45754:19;45776:10;45787:14;45776:26;;;;;;;;:::i;:::-;;;;;;;;;;45754:48;;45840:11;45815:10;45826;45815:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;45951:10;45920:15;:28;45936:11;45920:28;;;;;;;;;;;:41;;;;46092:15;:24;46108:7;46092:24;;;;;;;;;;;46085:31;;;46127:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45143:1008;;;45072:1079;:::o;42576:221::-;42661:14;42678:20;42695:2;42678:16;:20::i;:::-;42661:37;;42736:7;42709:12;:16;42722:2;42709:16;;;;;;;;;;;;;;;:24;42726:6;42709:24;;;;;;;;;;;:34;;;;42783:6;42754:17;:26;42772:7;42754:26;;;;;;;;;;;:35;;;;42650:147;42576:221;;:::o;33342:439::-;33436:1;33422:16;;:2;:16;;;;33414:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33495:16;33503:7;33495;:16::i;:::-;33494:17;33486:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33557:45;33586:1;33590:2;33594:7;33557:20;:45::i;:::-;33632:1;33615:9;:13;33625:2;33615:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33663:2;33644:7;:16;33652:7;33644:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33708:7;33704:2;33683:33;;33700:1;33683:33;;;;;;;;;;;;33729:44;33757:1;33761:2;33765:7;33729:19;:44::i;:::-;33342:439;;:::o;7323:326::-;7383:4;7640:1;7618:7;:19;;;:23;7611:30;;7323:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:179::-;7556:10;7577:46;7619:3;7611:6;7577:46;:::i;:::-;7655:4;7650:3;7646:14;7632:28;;7487:179;;;;:::o;7672:118::-;7759:24;7777:5;7759:24;:::i;:::-;7754:3;7747:37;7672:118;;:::o;7826:732::-;7945:3;7974:54;8022:5;7974:54;:::i;:::-;8044:86;8123:6;8118:3;8044:86;:::i;:::-;8037:93;;8154:56;8204:5;8154:56;:::i;:::-;8233:7;8264:1;8249:284;8274:6;8271:1;8268:13;8249:284;;;8350:6;8344:13;8377:63;8436:3;8421:13;8377:63;:::i;:::-;8370:70;;8463:60;8516:6;8463:60;:::i;:::-;8453:70;;8309:224;8296:1;8293;8289:9;8284:14;;8249:284;;;8253:14;8549:3;8542:10;;7950:608;;;7826:732;;;;:::o;8564:109::-;8645:21;8660:5;8645:21;:::i;:::-;8640:3;8633:34;8564:109;;:::o;8679:360::-;8765:3;8793:38;8825:5;8793:38;:::i;:::-;8847:70;8910:6;8905:3;8847:70;:::i;:::-;8840:77;;8926:52;8971:6;8966:3;8959:4;8952:5;8948:16;8926:52;:::i;:::-;9003:29;9025:6;9003:29;:::i;:::-;8998:3;8994:39;8987:46;;8769:270;8679:360;;;;:::o;9045:364::-;9133:3;9161:39;9194:5;9161:39;:::i;:::-;9216:71;9280:6;9275:3;9216:71;:::i;:::-;9209:78;;9296:52;9341:6;9336:3;9329:4;9322:5;9318:16;9296:52;:::i;:::-;9373:29;9395:6;9373:29;:::i;:::-;9368:3;9364:39;9357:46;;9137:272;9045:364;;;;:::o;9415:366::-;9557:3;9578:67;9642:2;9637:3;9578:67;:::i;:::-;9571:74;;9654:93;9743:3;9654:93;:::i;:::-;9772:2;9767:3;9763:12;9756:19;;9415:366;;;:::o;9787:::-;9929:3;9950:67;10014:2;10009:3;9950:67;:::i;:::-;9943:74;;10026:93;10115:3;10026:93;:::i;:::-;10144:2;10139:3;10135:12;10128:19;;9787:366;;;:::o;10159:::-;10301:3;10322:67;10386:2;10381:3;10322:67;:::i;:::-;10315:74;;10398:93;10487:3;10398:93;:::i;:::-;10516:2;10511:3;10507:12;10500:19;;10159:366;;;:::o;10531:::-;10673:3;10694:67;10758:2;10753:3;10694:67;:::i;:::-;10687:74;;10770:93;10859:3;10770:93;:::i;:::-;10888:2;10883:3;10879:12;10872:19;;10531:366;;;:::o;10903:::-;11045:3;11066:67;11130:2;11125:3;11066:67;:::i;:::-;11059:74;;11142:93;11231:3;11142:93;:::i;:::-;11260:2;11255:3;11251:12;11244:19;;10903:366;;;:::o;11275:::-;11417:3;11438:67;11502:2;11497:3;11438:67;:::i;:::-;11431:74;;11514:93;11603:3;11514:93;:::i;:::-;11632:2;11627:3;11623:12;11616:19;;11275:366;;;:::o;11647:::-;11789:3;11810:67;11874:2;11869:3;11810:67;:::i;:::-;11803:74;;11886:93;11975:3;11886:93;:::i;:::-;12004:2;11999:3;11995:12;11988:19;;11647:366;;;:::o;12019:::-;12161:3;12182:67;12246:2;12241:3;12182:67;:::i;:::-;12175:74;;12258:93;12347:3;12258:93;:::i;:::-;12376:2;12371:3;12367:12;12360:19;;12019:366;;;:::o;12391:::-;12533:3;12554:67;12618:2;12613:3;12554:67;:::i;:::-;12547:74;;12630:93;12719:3;12630:93;:::i;:::-;12748:2;12743:3;12739:12;12732:19;;12391:366;;;:::o;12763:::-;12905:3;12926:67;12990:2;12985:3;12926:67;:::i;:::-;12919:74;;13002:93;13091:3;13002:93;:::i;:::-;13120:2;13115:3;13111:12;13104:19;;12763:366;;;:::o;13135:::-;13277:3;13298:67;13362:2;13357:3;13298:67;:::i;:::-;13291:74;;13374:93;13463:3;13374:93;:::i;:::-;13492:2;13487:3;13483:12;13476:19;;13135:366;;;:::o;13507:::-;13649:3;13670:67;13734:2;13729:3;13670:67;:::i;:::-;13663:74;;13746:93;13835:3;13746:93;:::i;:::-;13864:2;13859:3;13855:12;13848:19;;13507:366;;;:::o;13879:::-;14021:3;14042:67;14106:2;14101:3;14042:67;:::i;:::-;14035:74;;14118:93;14207:3;14118:93;:::i;:::-;14236:2;14231:3;14227:12;14220:19;;13879:366;;;:::o;14251:::-;14393:3;14414:67;14478:2;14473:3;14414:67;:::i;:::-;14407:74;;14490:93;14579:3;14490:93;:::i;:::-;14608:2;14603:3;14599:12;14592:19;;14251:366;;;:::o;14623:::-;14765:3;14786:67;14850:2;14845:3;14786:67;:::i;:::-;14779:74;;14862:93;14951:3;14862:93;:::i;:::-;14980:2;14975:3;14971:12;14964:19;;14623:366;;;:::o;14995:::-;15137:3;15158:67;15222:2;15217:3;15158:67;:::i;:::-;15151:74;;15234:93;15323:3;15234:93;:::i;:::-;15352:2;15347:3;15343:12;15336:19;;14995:366;;;:::o;15367:::-;15509:3;15530:67;15594:2;15589:3;15530:67;:::i;:::-;15523:74;;15606:93;15695:3;15606:93;:::i;:::-;15724:2;15719:3;15715:12;15708:19;;15367:366;;;:::o;15739:::-;15881:3;15902:67;15966:2;15961:3;15902:67;:::i;:::-;15895:74;;15978:93;16067:3;15978:93;:::i;:::-;16096:2;16091:3;16087:12;16080:19;;15739:366;;;:::o;16111:398::-;16270:3;16291:83;16372:1;16367:3;16291:83;:::i;:::-;16284:90;;16383:93;16472:3;16383:93;:::i;:::-;16501:1;16496:3;16492:11;16485:18;;16111:398;;;:::o;16515:366::-;16657:3;16678:67;16742:2;16737:3;16678:67;:::i;:::-;16671:74;;16754:93;16843:3;16754:93;:::i;:::-;16872:2;16867:3;16863:12;16856:19;;16515:366;;;:::o;16887:::-;17029:3;17050:67;17114:2;17109:3;17050:67;:::i;:::-;17043:74;;17126:93;17215:3;17126:93;:::i;:::-;17244:2;17239:3;17235:12;17228:19;;16887:366;;;:::o;17259:::-;17401:3;17422:67;17486:2;17481:3;17422:67;:::i;:::-;17415:74;;17498:93;17587:3;17498:93;:::i;:::-;17616:2;17611:3;17607:12;17600:19;;17259:366;;;:::o;17631:108::-;17708:24;17726:5;17708:24;:::i;:::-;17703:3;17696:37;17631:108;;:::o;17745:118::-;17832:24;17850:5;17832:24;:::i;:::-;17827:3;17820:37;17745:118;;:::o;17869:379::-;18053:3;18075:147;18218:3;18075:147;:::i;:::-;18068:154;;18239:3;18232:10;;17869:379;;;:::o;18254:222::-;18347:4;18385:2;18374:9;18370:18;18362:26;;18398:71;18466:1;18455:9;18451:17;18442:6;18398:71;:::i;:::-;18254:222;;;;:::o;18482:640::-;18677:4;18715:3;18704:9;18700:19;18692:27;;18729:71;18797:1;18786:9;18782:17;18773:6;18729:71;:::i;:::-;18810:72;18878:2;18867:9;18863:18;18854:6;18810:72;:::i;:::-;18892;18960:2;18949:9;18945:18;18936:6;18892:72;:::i;:::-;19011:9;19005:4;19001:20;18996:2;18985:9;18981:18;18974:48;19039:76;19110:4;19101:6;19039:76;:::i;:::-;19031:84;;18482:640;;;;;;;:::o;19128:373::-;19271:4;19309:2;19298:9;19294:18;19286:26;;19358:9;19352:4;19348:20;19344:1;19333:9;19329:17;19322:47;19386:108;19489:4;19480:6;19386:108;:::i;:::-;19378:116;;19128:373;;;;:::o;19507:210::-;19594:4;19632:2;19621:9;19617:18;19609:26;;19645:65;19707:1;19696:9;19692:17;19683:6;19645:65;:::i;:::-;19507:210;;;;:::o;19723:313::-;19836:4;19874:2;19863:9;19859:18;19851:26;;19923:9;19917:4;19913:20;19909:1;19898:9;19894:17;19887:47;19951:78;20024:4;20015:6;19951:78;:::i;:::-;19943:86;;19723:313;;;;:::o;20042:419::-;20208:4;20246:2;20235:9;20231:18;20223:26;;20295:9;20289:4;20285:20;20281:1;20270:9;20266:17;20259:47;20323:131;20449:4;20323:131;:::i;:::-;20315:139;;20042:419;;;:::o;20467:::-;20633:4;20671:2;20660:9;20656:18;20648:26;;20720:9;20714:4;20710:20;20706:1;20695:9;20691:17;20684:47;20748:131;20874:4;20748:131;:::i;:::-;20740:139;;20467:419;;;:::o;20892:::-;21058:4;21096:2;21085:9;21081:18;21073:26;;21145:9;21139:4;21135:20;21131:1;21120:9;21116:17;21109:47;21173:131;21299:4;21173:131;:::i;:::-;21165:139;;20892:419;;;:::o;21317:::-;21483:4;21521:2;21510:9;21506:18;21498:26;;21570:9;21564:4;21560:20;21556:1;21545:9;21541:17;21534:47;21598:131;21724:4;21598:131;:::i;:::-;21590:139;;21317:419;;;:::o;21742:::-;21908:4;21946:2;21935:9;21931:18;21923:26;;21995:9;21989:4;21985:20;21981:1;21970:9;21966:17;21959:47;22023:131;22149:4;22023:131;:::i;:::-;22015:139;;21742:419;;;:::o;22167:::-;22333:4;22371:2;22360:9;22356:18;22348:26;;22420:9;22414:4;22410:20;22406:1;22395:9;22391:17;22384:47;22448:131;22574:4;22448:131;:::i;:::-;22440:139;;22167:419;;;:::o;22592:::-;22758:4;22796:2;22785:9;22781:18;22773:26;;22845:9;22839:4;22835:20;22831:1;22820:9;22816:17;22809:47;22873:131;22999:4;22873:131;:::i;:::-;22865:139;;22592:419;;;:::o;23017:::-;23183:4;23221:2;23210:9;23206:18;23198:26;;23270:9;23264:4;23260:20;23256:1;23245:9;23241:17;23234:47;23298:131;23424:4;23298:131;:::i;:::-;23290:139;;23017:419;;;:::o;23442:::-;23608:4;23646:2;23635:9;23631:18;23623:26;;23695:9;23689:4;23685:20;23681:1;23670:9;23666:17;23659:47;23723:131;23849:4;23723:131;:::i;:::-;23715:139;;23442:419;;;:::o;23867:::-;24033:4;24071:2;24060:9;24056:18;24048:26;;24120:9;24114:4;24110:20;24106:1;24095:9;24091:17;24084:47;24148:131;24274:4;24148:131;:::i;:::-;24140:139;;23867:419;;;:::o;24292:::-;24458:4;24496:2;24485:9;24481:18;24473:26;;24545:9;24539:4;24535:20;24531:1;24520:9;24516:17;24509:47;24573:131;24699:4;24573:131;:::i;:::-;24565:139;;24292:419;;;:::o;24717:::-;24883:4;24921:2;24910:9;24906:18;24898:26;;24970:9;24964:4;24960:20;24956:1;24945:9;24941:17;24934:47;24998:131;25124:4;24998:131;:::i;:::-;24990:139;;24717:419;;;:::o;25142:::-;25308:4;25346:2;25335:9;25331:18;25323:26;;25395:9;25389:4;25385:20;25381:1;25370:9;25366:17;25359:47;25423:131;25549:4;25423:131;:::i;:::-;25415:139;;25142:419;;;:::o;25567:::-;25733:4;25771:2;25760:9;25756:18;25748:26;;25820:9;25814:4;25810:20;25806:1;25795:9;25791:17;25784:47;25848:131;25974:4;25848:131;:::i;:::-;25840:139;;25567:419;;;:::o;25992:::-;26158:4;26196:2;26185:9;26181:18;26173:26;;26245:9;26239:4;26235:20;26231:1;26220:9;26216:17;26209:47;26273:131;26399:4;26273:131;:::i;:::-;26265:139;;25992:419;;;:::o;26417:::-;26583:4;26621:2;26610:9;26606:18;26598:26;;26670:9;26664:4;26660:20;26656:1;26645:9;26641:17;26634:47;26698:131;26824:4;26698:131;:::i;:::-;26690:139;;26417:419;;;:::o;26842:::-;27008:4;27046:2;27035:9;27031:18;27023:26;;27095:9;27089:4;27085:20;27081:1;27070:9;27066:17;27059:47;27123:131;27249:4;27123:131;:::i;:::-;27115:139;;26842:419;;;:::o;27267:::-;27433:4;27471:2;27460:9;27456:18;27448:26;;27520:9;27514:4;27510:20;27506:1;27495:9;27491:17;27484:47;27548:131;27674:4;27548:131;:::i;:::-;27540:139;;27267:419;;;:::o;27692:::-;27858:4;27896:2;27885:9;27881:18;27873:26;;27945:9;27939:4;27935:20;27931:1;27920:9;27916:17;27909:47;27973:131;28099:4;27973:131;:::i;:::-;27965:139;;27692:419;;;:::o;28117:::-;28283:4;28321:2;28310:9;28306:18;28298:26;;28370:9;28364:4;28360:20;28356:1;28345:9;28341:17;28334:47;28398:131;28524:4;28398:131;:::i;:::-;28390:139;;28117:419;;;:::o;28542:::-;28708:4;28746:2;28735:9;28731:18;28723:26;;28795:9;28789:4;28785:20;28781:1;28770:9;28766:17;28759:47;28823:131;28949:4;28823:131;:::i;:::-;28815:139;;28542:419;;;:::o;28967:222::-;29060:4;29098:2;29087:9;29083:18;29075:26;;29111:71;29179:1;29168:9;29164:17;29155:6;29111:71;:::i;:::-;28967:222;;;;:::o;29195:129::-;29229:6;29256:20;;:::i;:::-;29246:30;;29285:33;29313:4;29305:6;29285:33;:::i;:::-;29195:129;;;:::o;29330:75::-;29363:6;29396:2;29390:9;29380:19;;29330:75;:::o;29411:307::-;29472:4;29562:18;29554:6;29551:30;29548:56;;;29584:18;;:::i;:::-;29548:56;29622:29;29644:6;29622:29;:::i;:::-;29614:37;;29706:4;29700;29696:15;29688:23;;29411:307;;;:::o;29724:308::-;29786:4;29876:18;29868:6;29865:30;29862:56;;;29898:18;;:::i;:::-;29862:56;29936:29;29958:6;29936:29;:::i;:::-;29928:37;;30020:4;30014;30010:15;30002:23;;29724:308;;;:::o;30038:132::-;30105:4;30128:3;30120:11;;30158:4;30153:3;30149:14;30141:22;;30038:132;;;:::o;30176:114::-;30243:6;30277:5;30271:12;30261:22;;30176:114;;;:::o;30296:98::-;30347:6;30381:5;30375:12;30365:22;;30296:98;;;:::o;30400:99::-;30452:6;30486:5;30480:12;30470:22;;30400:99;;;:::o;30505:113::-;30575:4;30607;30602:3;30598:14;30590:22;;30505:113;;;:::o;30624:184::-;30723:11;30757:6;30752:3;30745:19;30797:4;30792:3;30788:14;30773:29;;30624:184;;;;:::o;30814:168::-;30897:11;30931:6;30926:3;30919:19;30971:4;30966:3;30962:14;30947:29;;30814:168;;;;:::o;30988:147::-;31089:11;31126:3;31111:18;;30988:147;;;;:::o;31141:169::-;31225:11;31259:6;31254:3;31247:19;31299:4;31294:3;31290:14;31275:29;;31141:169;;;;:::o;31316:305::-;31356:3;31375:20;31393:1;31375:20;:::i;:::-;31370:25;;31409:20;31427:1;31409:20;:::i;:::-;31404:25;;31563:1;31495:66;31491:74;31488:1;31485:81;31482:107;;;31569:18;;:::i;:::-;31482:107;31613:1;31610;31606:9;31599:16;;31316:305;;;;:::o;31627:185::-;31667:1;31684:20;31702:1;31684:20;:::i;:::-;31679:25;;31718:20;31736:1;31718:20;:::i;:::-;31713:25;;31757:1;31747:35;;31762:18;;:::i;:::-;31747:35;31804:1;31801;31797:9;31792:14;;31627:185;;;;:::o;31818:348::-;31858:7;31881:20;31899:1;31881:20;:::i;:::-;31876:25;;31915:20;31933:1;31915:20;:::i;:::-;31910:25;;32103:1;32035:66;32031:74;32028:1;32025:81;32020:1;32013:9;32006:17;32002:105;31999:131;;;32110:18;;:::i;:::-;31999:131;32158:1;32155;32151:9;32140:20;;31818:348;;;;:::o;32172:191::-;32212:4;32232:20;32250:1;32232:20;:::i;:::-;32227:25;;32266:20;32284:1;32266:20;:::i;:::-;32261:25;;32305:1;32302;32299:8;32296:34;;;32310:18;;:::i;:::-;32296:34;32355:1;32352;32348:9;32340:17;;32172:191;;;;:::o;32369:96::-;32406:7;32435:24;32453:5;32435:24;:::i;:::-;32424:35;;32369:96;;;:::o;32471:90::-;32505:7;32548:5;32541:13;32534:21;32523:32;;32471:90;;;:::o;32567:149::-;32603:7;32643:66;32636:5;32632:78;32621:89;;32567:149;;;:::o;32722:126::-;32759:7;32799:42;32792:5;32788:54;32777:65;;32722:126;;;:::o;32854:77::-;32891:7;32920:5;32909:16;;32854:77;;;:::o;32937:154::-;33021:6;33016:3;33011;32998:30;33083:1;33074:6;33069:3;33065:16;33058:27;32937:154;;;:::o;33097:307::-;33165:1;33175:113;33189:6;33186:1;33183:13;33175:113;;;33274:1;33269:3;33265:11;33259:18;33255:1;33250:3;33246:11;33239:39;33211:2;33208:1;33204:10;33199:15;;33175:113;;;33306:6;33303:1;33300:13;33297:101;;;33386:1;33377:6;33372:3;33368:16;33361:27;33297:101;33146:258;33097:307;;;:::o;33410:320::-;33454:6;33491:1;33485:4;33481:12;33471:22;;33538:1;33532:4;33528:12;33559:18;33549:81;;33615:4;33607:6;33603:17;33593:27;;33549:81;33677:2;33669:6;33666:14;33646:18;33643:38;33640:84;;;33696:18;;:::i;:::-;33640:84;33461:269;33410:320;;;:::o;33736:281::-;33819:27;33841:4;33819:27;:::i;:::-;33811:6;33807:40;33949:6;33937:10;33934:22;33913:18;33901:10;33898:34;33895:62;33892:88;;;33960:18;;:::i;:::-;33892:88;34000:10;33996:2;33989:22;33779:238;33736:281;;:::o;34023:233::-;34062:3;34085:24;34103:5;34085:24;:::i;:::-;34076:33;;34131:66;34124:5;34121:77;34118:103;;;34201:18;;:::i;:::-;34118:103;34248:1;34241:5;34237:13;34230:20;;34023:233;;;:::o;34262:180::-;34310:77;34307:1;34300:88;34407:4;34404:1;34397:15;34431:4;34428:1;34421:15;34448:180;34496:77;34493:1;34486:88;34593:4;34590:1;34583:15;34617:4;34614:1;34607:15;34634:180;34682:77;34679:1;34672:88;34779:4;34776:1;34769:15;34803:4;34800:1;34793:15;34820:180;34868:77;34865:1;34858:88;34965:4;34962:1;34955:15;34989:4;34986:1;34979:15;35006:180;35054:77;35051:1;35044:88;35151:4;35148:1;35141:15;35175:4;35172:1;35165:15;35192:180;35240:77;35237:1;35230:88;35337:4;35334:1;35327:15;35361:4;35358:1;35351:15;35378:117;35487:1;35484;35477:12;35501:117;35610:1;35607;35600:12;35624:117;35733:1;35730;35723:12;35747:117;35856:1;35853;35846:12;35870:102;35911:6;35962:2;35958:7;35953:2;35946:5;35942:14;35938:28;35928:38;;35870:102;;;:::o;35978:230::-;36118:34;36114:1;36106:6;36102:14;36095:58;36187:13;36182:2;36174:6;36170:15;36163:38;35978:230;:::o;36214:237::-;36354:34;36350:1;36342:6;36338:14;36331:58;36423:20;36418:2;36410:6;36406:15;36399:45;36214:237;:::o;36457:225::-;36597:34;36593:1;36585:6;36581:14;36574:58;36666:8;36661:2;36653:6;36649:15;36642:33;36457:225;:::o;36688:224::-;36828:34;36824:1;36816:6;36812:14;36805:58;36897:7;36892:2;36884:6;36880:15;36873:32;36688:224;:::o;36918:178::-;37058:30;37054:1;37046:6;37042:14;37035:54;36918:178;:::o;37102:::-;37242:30;37238:1;37230:6;37226:14;37219:54;37102:178;:::o;37286:223::-;37426:34;37422:1;37414:6;37410:14;37403:58;37495:6;37490:2;37482:6;37478:15;37471:31;37286:223;:::o;37515:175::-;37655:27;37651:1;37643:6;37639:14;37632:51;37515:175;:::o;37696:170::-;37836:22;37832:1;37824:6;37820:14;37813:46;37696:170;:::o;37872:228::-;38012:34;38008:1;38000:6;37996:14;37989:58;38081:11;38076:2;38068:6;38064:15;38057:36;37872:228;:::o;38106:249::-;38246:34;38242:1;38234:6;38230:14;38223:58;38315:32;38310:2;38302:6;38298:15;38291:57;38106:249;:::o;38361:182::-;38501:34;38497:1;38489:6;38485:14;38478:58;38361:182;:::o;38549:170::-;38689:22;38685:1;38677:6;38673:14;38666:46;38549:170;:::o;38725:182::-;38865:34;38861:1;38853:6;38849:14;38842:58;38725:182;:::o;38913:172::-;39053:24;39049:1;39041:6;39037:14;39030:48;38913:172;:::o;39091:234::-;39231:34;39227:1;39219:6;39215:14;39208:58;39300:17;39295:2;39287:6;39283:15;39276:42;39091:234;:::o;39331:174::-;39471:26;39467:1;39459:6;39455:14;39448:50;39331:174;:::o;39511:220::-;39651:34;39647:1;39639:6;39635:14;39628:58;39720:3;39715:2;39707:6;39703:15;39696:28;39511:220;:::o;39737:114::-;;:::o;39857:231::-;39997:34;39993:1;39985:6;39981:14;39974:58;40066:14;40061:2;40053:6;40049:15;40042:39;39857:231;:::o;40094:233::-;40234:34;40230:1;40222:6;40218:14;40211:58;40303:16;40298:2;40290:6;40286:15;40279:41;40094:233;:::o;40333:177::-;40473:29;40469:1;40461:6;40457:14;40450:53;40333:177;:::o;40516:122::-;40589:24;40607:5;40589:24;:::i;:::-;40582:5;40579:35;40569:63;;40628:1;40625;40618:12;40569:63;40516:122;:::o;40644:116::-;40714:21;40729:5;40714:21;:::i;:::-;40707:5;40704:32;40694:60;;40750:1;40747;40740:12;40694:60;40644:116;:::o;40766:120::-;40838:23;40855:5;40838:23;:::i;:::-;40831:5;40828:34;40818:62;;40876:1;40873;40866:12;40818:62;40766:120;:::o;40892:122::-;40965:24;40983:5;40965:24;:::i;:::-;40958:5;40955:35;40945:63;;41004:1;41001;40994:12;40945:63;40892:122;:::o

Swarm Source

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