ETH Price: $2,559.31 (-0.04%)
Gas: 19.7 Gwei

Token

Zombie Lab Pass (ZLP)
 

Overview

Max Total Supply

413 ZLP

Holders

261

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 ZLP
0xbdb4d0599ed427a7312489af77d205edf3c2854d
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:
ZombieLabPass

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-01-28
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/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 v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/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 v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/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 v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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



pragma solidity >=0.7.0;



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

  string public baseURI;
  string public baseExtension = "";
  uint256 public cost = 2.5 ether;
  uint256 public maxSupply = 666;
  uint256 public maxMintAmount = 66;
  bool public paused = false;
  address PassWallet = 0xeab4949A89DC4686a9F1d2d9f8E51e2e936bdc15;

  mapping(address => uint256) public allowlist;

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

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

  function mint(address _to, uint256 _mintAmount) public payable {

    uint256 supply = totalSupply();

    require(!paused);

    require(_mintAmount > 0 , " 0 Not Accepted ");
    require(_mintAmount <= maxMintAmount  , " Mint Too Many ");

    require(supply + _mintAmount <= maxSupply , " Reached Max Supply ");

    require(allowlist[msg.sender] > 0 , " Not Eligible For Allowlist Mint ");
    require(_mintAmount <= allowlist[msg.sender] , " Reached Max Allowlist Single Supply ");

    require( msg.value >= cost * _mintAmount , " ETH Not Enough ");

    allowlist[msg.sender] -= _mintAmount;

    for (uint256 i = 1; i <= _mintAmount; i++) {
      _safeMint(_to, supply + i -1);
    }

    payable(PassWallet).transfer(msg.value);

  }

  function walletOfOwner(address _owner) public view returns (uint256[] memory)  {

    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;

  }

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

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

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

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

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

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

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
 
  function seedAllowlist(address[] memory addresses, uint256[] memory numSlots) external onlyOwner  {

    require( addresses.length == numSlots.length, " Addresses Does Not Match NumSlots Length " );

    for (uint256 i = 0; i < addresses.length; i++) {
      allowlist[addresses[i]] = numSlots[i];
    }
  }
 
  function removeAllowlistUser(address _user) external onlyOwner {
    delete allowlist[_user];
  }

  function setAllowlist(address _user , uint256 numSlots) external onlyOwner  {
    allowlist[_user] = numSlots;
  }

  function settestWallet(address _testWallet) external onlyOwner {
    PassWallet = _testWallet;
  }

  function withdraw() external payable onlyOwner {
    payable(PassWallet).transfer(address(this).balance);
  }
  
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowlist","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":"address","name":"_to","type":"address"},{"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":"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":[{"internalType":"address","name":"_user","type":"address"}],"name":"removeAllowlistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"numSlots","type":"uint256[]"}],"name":"seedAllowlist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"numSlots","type":"uint256"}],"name":"setAllowlist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_testWallet","type":"address"}],"name":"settestWallet","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"}]

608060405260405180602001604052806000815250600c90805190602001906200002b92919062000d17565b506722b1c8c1227a0000600d5561029a600e556042600f556000601060006101000a81548160ff02191690831515021790555073eab4949a89dc4686a9f1d2d9f8e51e2e936bdc15601060016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000c057600080fd5b50604051620063b9380380620063b98339818101604052810190620000e6919062000e8e565b828281600090805190602001906200010092919062000d17565b5080600190805190602001906200011992919062000d17565b5050506200013c620001306200018c60201b60201c565b6200019460201b60201c565b6200014d816200025a60201b60201c565b62000183601060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1661029a6200030560201b60201c565b505050620015de565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200026a6200018c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002906200032b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002e9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002e09062001149565b60405180910390fd5b80600b90805190602001906200030192919062000d17565b5050565b620003278282604051806020016040528060008152506200035560201b60201c565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620003678383620003c360201b60201c565b6200037c6000848484620005a960201b60201c565b620003be576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003b590620010c1565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000436576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200042d9062001127565b60405180910390fd5b62000447816200076360201b60201c565b156200048a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200048190620010e3565b60405180910390fd5b6200049e60008383620007cf60201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620004f09190620011f7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000620005d78473ffffffffffffffffffffffffffffffffffffffff166200091660201b62001f401760201c565b1562000756578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620006096200018c60201b60201c565b8786866040518563ffffffff1660e01b81526004016200062d94939291906200106d565b602060405180830381600087803b1580156200064857600080fd5b505af19250505080156200067c57506040513d601f19601f8201168201806040525081019062000679919062000e5c565b60015b62000705573d8060008114620006af576040519150601f19603f3d011682016040523d82523d6000602084013e620006b4565b606091505b50600081511415620006fd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006f490620010c1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506200075b565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b620007e78383836200092960201b62001f531760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000834576200082e816200092e60201b60201c565b6200087c565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146200087b576200087a83826200097760201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620008c957620008c38162000af460201b60201c565b62000911565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000910576200090f828262000bd060201b60201c565b5b5b505050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001620009918462000c5c60201b6200152c1760201c565b6200099d919062001254565b905060006007600084815260200190815260200160002054905081811462000a83576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000b0a919062001254565b905060006009600084815260200190815260200160002054905060006008838154811062000b3d5762000b3c62001428565b5b90600052602060002001549050806008838154811062000b625762000b6162001428565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000bb45762000bb3620013f9565b5b6001900381819060005260206000200160009055905550505050565b600062000be88362000c5c60201b6200152c1760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000cd0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000cc79062001105565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000d25906200132f565b90600052602060002090601f01602090048101928262000d49576000855562000d95565b82601f1062000d6457805160ff191683800117855562000d95565b8280016001018555821562000d95579182015b8281111562000d9457825182559160200191906001019062000d77565b5b50905062000da4919062000da8565b5090565b5b8082111562000dc357600081600090555060010162000da9565b5090565b600062000dde62000dd88462001194565b6200116b565b90508281526020810184848401111562000dfd5762000dfc6200148b565b5b62000e0a848285620012f9565b509392505050565b60008151905062000e2381620015c4565b92915050565b600082601f83011262000e415762000e4062001486565b5b815162000e5384826020860162000dc7565b91505092915050565b60006020828403121562000e755762000e7462001495565b5b600062000e858482850162000e12565b91505092915050565b60008060006060848603121562000eaa5762000ea962001495565b5b600084015167ffffffffffffffff81111562000ecb5762000eca62001490565b5b62000ed98682870162000e29565b935050602084015167ffffffffffffffff81111562000efd5762000efc62001490565b5b62000f0b8682870162000e29565b925050604084015167ffffffffffffffff81111562000f2f5762000f2e62001490565b5b62000f3d8682870162000e29565b9150509250925092565b62000f52816200128f565b82525050565b600062000f6582620011ca565b62000f718185620011d5565b935062000f83818560208601620012f9565b62000f8e816200149a565b840191505092915050565b600062000fa8603283620011e6565b915062000fb582620014ab565b604082019050919050565b600062000fcf601c83620011e6565b915062000fdc82620014fa565b602082019050919050565b600062000ff6602a83620011e6565b9150620010038262001523565b604082019050919050565b60006200101d602083620011e6565b91506200102a8262001572565b602082019050919050565b600062001044602083620011e6565b915062001051826200159b565b602082019050919050565b6200106781620012ef565b82525050565b600060808201905062001084600083018762000f47565b62001093602083018662000f47565b620010a260408301856200105c565b8181036060830152620010b6818462000f58565b905095945050505050565b60006020820190508181036000830152620010dc8162000f99565b9050919050565b60006020820190508181036000830152620010fe8162000fc0565b9050919050565b60006020820190508181036000830152620011208162000fe7565b9050919050565b6000602082019050818103600083015262001142816200100e565b9050919050565b60006020820190508181036000830152620011648162001035565b9050919050565b6000620011776200118a565b905062001185828262001365565b919050565b6000604051905090565b600067ffffffffffffffff821115620011b257620011b162001457565b5b620011bd826200149a565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006200120482620012ef565b91506200121183620012ef565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200124957620012486200139b565b5b828201905092915050565b60006200126182620012ef565b91506200126e83620012ef565b9250828210156200128457620012836200139b565b5b828203905092915050565b60006200129c82620012cf565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562001319578082015181840152602081019050620012fc565b8381111562001329576000848401525b50505050565b600060028204905060018216806200134857607f821691505b602082108114156200135f576200135e620013ca565b5b50919050565b62001370826200149a565b810181811067ffffffffffffffff8211171562001392576200139162001457565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b620015cf81620012a3565b8114620015db57600080fd5b50565b614dcb80620015ee6000396000f3fe6080604052600436106102255760003560e01c80636c0360eb11610123578063b05863d5116100ab578063d5abeb011161006f578063d5abeb01146107fb578063da3ef23f14610826578063e985e9c51461084f578063ee09c10d1461088c578063f2fde38b146108b557610225565b8063b05863d514610718578063b388f9d314610741578063b88d4fde1461076a578063c668286214610793578063c87b56dd146107be57610225565b80638da5cb5b116100f25780638da5cb5b1461063357806395d89b411461065e578063a175988414610689578063a22cb465146106b2578063a7cd52cb146106db57610225565b80636c0360eb1461058b57806370a08231146105b6578063715018a6146105f35780637f00c7a61461060a57610225565b80632f745c59116101b157806344a0d68a1161017557806344a0d68a146104945780634f6ccce7146104bd57806355f804b3146104fa5780635c975abb146105235780636352211e1461054e57610225565b80632f745c59146103cb5780633ccfd60b1461040857806340c10f191461041257806342842e0e1461042e578063438b63001461045757610225565b8063095ea7b3116101f8578063095ea7b3146102f857806313faede61461032157806318160ddd1461034c578063239c70ae1461037757806323b872dd146103a257610225565b806301ffc9a71461022a57806302329a291461026757806306fdde0314610290578063081812fc146102bb575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613715565b6108de565b60405161025e9190613dde565b60405180910390f35b34801561027357600080fd5b5061028e600480360381019061028991906136e8565b610958565b005b34801561029c57600080fd5b506102a56109f1565b6040516102b29190613df9565b60405180910390f35b3480156102c757600080fd5b506102e260048036038101906102dd91906137b8565b610a83565b6040516102ef9190613d55565b60405180910390f35b34801561030457600080fd5b5061031f600480360381019061031a9190613630565b610b08565b005b34801561032d57600080fd5b50610336610c20565b604051610343919061413b565b60405180910390f35b34801561035857600080fd5b50610361610c26565b60405161036e919061413b565b60405180910390f35b34801561038357600080fd5b5061038c610c33565b604051610399919061413b565b60405180910390f35b3480156103ae57600080fd5b506103c960048036038101906103c4919061351a565b610c39565b005b3480156103d757600080fd5b506103f260048036038101906103ed9190613630565b610c99565b6040516103ff919061413b565b60405180910390f35b610410610d3e565b005b61042c60048036038101906104279190613630565b610e25565b005b34801561043a57600080fd5b506104556004803603810190610450919061351a565b61117e565b005b34801561046357600080fd5b5061047e600480360381019061047991906134ad565b61119e565b60405161048b9190613dbc565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b691906137b8565b61124c565b005b3480156104c957600080fd5b506104e460048036038101906104df91906137b8565b6112d2565b6040516104f1919061413b565b60405180910390f35b34801561050657600080fd5b50610521600480360381019061051c919061376f565b611343565b005b34801561052f57600080fd5b506105386113d9565b6040516105459190613dde565b60405180910390f35b34801561055a57600080fd5b50610575600480360381019061057091906137b8565b6113ec565b6040516105829190613d55565b60405180910390f35b34801561059757600080fd5b506105a061149e565b6040516105ad9190613df9565b60405180910390f35b3480156105c257600080fd5b506105dd60048036038101906105d891906134ad565b61152c565b6040516105ea919061413b565b60405180910390f35b3480156105ff57600080fd5b506106086115e4565b005b34801561061657600080fd5b50610631600480360381019061062c91906137b8565b61166c565b005b34801561063f57600080fd5b506106486116f2565b6040516106559190613d55565b60405180910390f35b34801561066a57600080fd5b5061067361171c565b6040516106809190613df9565b60405180910390f35b34801561069557600080fd5b506106b060048036038101906106ab91906134ad565b6117ae565b005b3480156106be57600080fd5b506106d960048036038101906106d491906135f0565b61186e565b005b3480156106e757600080fd5b5061070260048036038101906106fd91906134ad565b611884565b60405161070f919061413b565b60405180910390f35b34801561072457600080fd5b5061073f600480360381019061073a9190613670565b61189c565b005b34801561074d57600080fd5b50610768600480360381019061076391906134ad565b6119f8565b005b34801561077657600080fd5b50610791600480360381019061078c919061356d565b611aba565b005b34801561079f57600080fd5b506107a8611b1c565b6040516107b59190613df9565b60405180910390f35b3480156107ca57600080fd5b506107e560048036038101906107e091906137b8565b611baa565b6040516107f29190613df9565b60405180910390f35b34801561080757600080fd5b50610810611c54565b60405161081d919061413b565b60405180910390f35b34801561083257600080fd5b5061084d6004803603810190610848919061376f565b611c5a565b005b34801561085b57600080fd5b50610876600480360381019061087191906134da565b611cf0565b6040516108839190613dde565b60405180910390f35b34801561089857600080fd5b506108b360048036038101906108ae9190613630565b611d84565b005b3480156108c157600080fd5b506108dc60048036038101906108d791906134ad565b611e48565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610951575061095082611f58565b5b9050919050565b61096061203a565b73ffffffffffffffffffffffffffffffffffffffff1661097e6116f2565b73ffffffffffffffffffffffffffffffffffffffff16146109d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cb9061401b565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b606060008054610a0090614491565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2c90614491565b8015610a795780601f10610a4e57610100808354040283529160200191610a79565b820191906000526020600020905b815481529060010190602001808311610a5c57829003601f168201915b5050505050905090565b6000610a8e82612042565b610acd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac490613ffb565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b13826113ec565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7b9061407b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ba361203a565b73ffffffffffffffffffffffffffffffffffffffff161480610bd25750610bd181610bcc61203a565b611cf0565b5b610c11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0890613f7b565b60405180910390fd5b610c1b83836120ae565b505050565b600d5481565b6000600880549050905090565b600f5481565b610c4a610c4461203a565b82612167565b610c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c809061409b565b60405180910390fd5b610c94838383612245565b505050565b6000610ca48361152c565b8210610ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdc90613e3b565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610d4661203a565b73ffffffffffffffffffffffffffffffffffffffff16610d646116f2565b73ffffffffffffffffffffffffffffffffffffffff1614610dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db19061401b565b60405180910390fd5b601060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610e22573d6000803e3d6000fd5b50565b6000610e2f610c26565b9050601060009054906101000a900460ff1615610e4b57600080fd5b60008211610e8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e859061411b565b60405180910390fd5b600f54821115610ed3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eca906140db565b60405180910390fd5b600e548282610ee291906142c6565b1115610f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1a90613f5b565b60405180910390fd5b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9c90613e1b565b60405180910390fd5b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054821115611027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101e90613edb565b60405180910390fd5b81600d54611035919061434d565b341015611077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106e90613ebb565b60405180910390fd5b81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110c691906143a7565b925050819055506000600190505b82811161110f576110fc84600183856110ed91906142c6565b6110f791906143a7565b6124a1565b8080611107906144f4565b9150506110d4565b50601060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015611178573d6000803e3d6000fd5b50505050565b61119983838360405180602001604052806000815250611aba565b505050565b606060006111ab8361152c565b905060008167ffffffffffffffff8111156111c9576111c8614659565b5b6040519080825280602002602001820160405280156111f75781602001602082028036833780820191505090505b50905060005b828110156112415761120f8582610c99565b8282815181106112225761122161462a565b5b6020026020010181815250508080611239906144f4565b9150506111fd565b508092505050919050565b61125461203a565b73ffffffffffffffffffffffffffffffffffffffff166112726116f2565b73ffffffffffffffffffffffffffffffffffffffff16146112c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bf9061401b565b60405180910390fd5b80600d8190555050565b60006112dc610c26565b821061131d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611314906140bb565b60405180910390fd5b600882815481106113315761133061462a565b5b90600052602060002001549050919050565b61134b61203a565b73ffffffffffffffffffffffffffffffffffffffff166113696116f2565b73ffffffffffffffffffffffffffffffffffffffff16146113bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b69061401b565b60405180910390fd5b80600b90805190602001906113d5929190613185565b5050565b601060009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611495576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148c90613fbb565b60405180910390fd5b80915050919050565b600b80546114ab90614491565b80601f01602080910402602001604051908101604052809291908181526020018280546114d790614491565b80156115245780601f106114f957610100808354040283529160200191611524565b820191906000526020600020905b81548152906001019060200180831161150757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561159d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159490613f9b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115ec61203a565b73ffffffffffffffffffffffffffffffffffffffff1661160a6116f2565b73ffffffffffffffffffffffffffffffffffffffff1614611660576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116579061401b565b60405180910390fd5b61166a60006124bf565b565b61167461203a565b73ffffffffffffffffffffffffffffffffffffffff166116926116f2565b73ffffffffffffffffffffffffffffffffffffffff16146116e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116df9061401b565b60405180910390fd5b80600f8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461172b90614491565b80601f016020809104026020016040519081016040528092919081815260200182805461175790614491565b80156117a45780601f10611779576101008083540402835291602001916117a4565b820191906000526020600020905b81548152906001019060200180831161178757829003601f168201915b5050505050905090565b6117b661203a565b73ffffffffffffffffffffffffffffffffffffffff166117d46116f2565b73ffffffffffffffffffffffffffffffffffffffff161461182a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118219061401b565b60405180910390fd5b80601060016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61188061187961203a565b8383612585565b5050565b60116020528060005260406000206000915090505481565b6118a461203a565b73ffffffffffffffffffffffffffffffffffffffff166118c26116f2565b73ffffffffffffffffffffffffffffffffffffffff1614611918576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190f9061401b565b60405180910390fd5b805182511461195c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611953906140fb565b60405180910390fd5b60005b82518110156119f35781818151811061197b5761197a61462a565b5b60200260200101516011600085848151811061199a5761199961462a565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806119eb906144f4565b91505061195f565b505050565b611a0061203a565b73ffffffffffffffffffffffffffffffffffffffff16611a1e6116f2565b73ffffffffffffffffffffffffffffffffffffffff1614611a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6b9061401b565b60405180910390fd5b601160008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000905550565b611acb611ac561203a565b83612167565b611b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b019061409b565b60405180910390fd5b611b16848484846126f2565b50505050565b600c8054611b2990614491565b80601f0160208091040260200160405190810160405280929190818152602001828054611b5590614491565b8015611ba25780601f10611b7757610100808354040283529160200191611ba2565b820191906000526020600020905b815481529060010190602001808311611b8557829003601f168201915b505050505081565b6060611bb582612042565b611bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611beb9061405b565b60405180910390fd5b6000611bfe61274e565b90506000815111611c1e5760405180602001604052806000815250611c4c565b80611c28846127e0565b600c604051602001611c3c93929190613d24565b6040516020818303038152906040525b915050919050565b600e5481565b611c6261203a565b73ffffffffffffffffffffffffffffffffffffffff16611c806116f2565b73ffffffffffffffffffffffffffffffffffffffff1614611cd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccd9061401b565b60405180910390fd5b80600c9080519060200190611cec929190613185565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d8c61203a565b73ffffffffffffffffffffffffffffffffffffffff16611daa6116f2565b73ffffffffffffffffffffffffffffffffffffffff1614611e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df79061401b565b60405180910390fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b611e5061203a565b73ffffffffffffffffffffffffffffffffffffffff16611e6e6116f2565b73ffffffffffffffffffffffffffffffffffffffff1614611ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebb9061401b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2b90613e7b565b60405180910390fd5b611f3d816124bf565b50565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061202357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612033575061203282612941565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612121836113ec565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061217282612042565b6121b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a890613f3b565b60405180910390fd5b60006121bc836113ec565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061222b57508373ffffffffffffffffffffffffffffffffffffffff1661221384610a83565b73ffffffffffffffffffffffffffffffffffffffff16145b8061223c575061223b8185611cf0565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612265826113ec565b73ffffffffffffffffffffffffffffffffffffffff16146122bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b29061403b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561232b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232290613efb565b60405180910390fd5b6123368383836129ab565b6123416000826120ae565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461239191906143a7565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123e891906142c6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6124bb828260405180602001604052806000815250612abf565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156125f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125eb90613f1b565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516126e59190613dde565b60405180910390a3505050565b6126fd848484612245565b61270984848484612b1a565b612748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273f90613e5b565b60405180910390fd5b50505050565b6060600b805461275d90614491565b80601f016020809104026020016040519081016040528092919081815260200182805461278990614491565b80156127d65780601f106127ab576101008083540402835291602001916127d6565b820191906000526020600020905b8154815290600101906020018083116127b957829003601f168201915b5050505050905090565b60606000821415612828576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061293c565b600082905060005b6000821461285a578080612843906144f4565b915050600a82612853919061431c565b9150612830565b60008167ffffffffffffffff81111561287657612875614659565b5b6040519080825280601f01601f1916602001820160405280156128a85781602001600182028036833780820191505090505b5090505b60008514612935576001826128c191906143a7565b9150600a856128d0919061453d565b60306128dc91906142c6565b60f81b8183815181106128f2576128f161462a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561292e919061431c565b94506128ac565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6129b6838383611f53565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129f9576129f481612cb1565b612a38565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612a3757612a368382612cfa565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a7b57612a7681612e67565b612aba565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612ab957612ab88282612f38565b5b5b505050565b612ac98383612fb7565b612ad66000848484612b1a565b612b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0c90613e5b565b60405180910390fd5b505050565b6000612b3b8473ffffffffffffffffffffffffffffffffffffffff16611f40565b15612ca4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b6461203a565b8786866040518563ffffffff1660e01b8152600401612b869493929190613d70565b602060405180830381600087803b158015612ba057600080fd5b505af1925050508015612bd157506040513d601f19601f82011682018060405250810190612bce9190613742565b60015b612c54573d8060008114612c01576040519150601f19603f3d011682016040523d82523d6000602084013e612c06565b606091505b50600081511415612c4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4390613e5b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ca9565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612d078461152c565b612d1191906143a7565b9050600060076000848152602001908152602001600020549050818114612df6576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612e7b91906143a7565b9050600060096000848152602001908152602001600020549050600060088381548110612eab57612eaa61462a565b5b906000526020600020015490508060088381548110612ecd57612ecc61462a565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612f1c57612f1b6145fb565b5b6001900381819060005260206000200160009055905550505050565b6000612f438361152c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161301e90613fdb565b60405180910390fd5b61303081612042565b15613070576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306790613e9b565b60405180910390fd5b61307c600083836129ab565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130cc91906142c6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461319190614491565b90600052602060002090601f0160209004810192826131b357600085556131fa565b82601f106131cc57805160ff19168380011785556131fa565b828001600101855582156131fa579182015b828111156131f95782518255916020019190600101906131de565b5b509050613207919061320b565b5090565b5b8082111561322457600081600090555060010161320c565b5090565b600061323b6132368461417b565b614156565b9050808382526020820190508285602086028201111561325e5761325d61468d565b5b60005b8581101561328e5781613274888261338c565b845260208401935060208301925050600181019050613261565b5050509392505050565b60006132ab6132a6846141a7565b614156565b905080838252602082019050828560208602820111156132ce576132cd61468d565b5b60005b858110156132fe57816132e48882613498565b8452602084019350602083019250506001810190506132d1565b5050509392505050565b600061331b613316846141d3565b614156565b90508281526020810184848401111561333757613336614692565b5b61334284828561444f565b509392505050565b600061335d61335884614204565b614156565b90508281526020810184848401111561337957613378614692565b5b61338484828561444f565b509392505050565b60008135905061339b81614d39565b92915050565b600082601f8301126133b6576133b5614688565b5b81356133c6848260208601613228565b91505092915050565b600082601f8301126133e4576133e3614688565b5b81356133f4848260208601613298565b91505092915050565b60008135905061340c81614d50565b92915050565b60008135905061342181614d67565b92915050565b60008151905061343681614d67565b92915050565b600082601f83011261345157613450614688565b5b8135613461848260208601613308565b91505092915050565b600082601f83011261347f5761347e614688565b5b813561348f84826020860161334a565b91505092915050565b6000813590506134a781614d7e565b92915050565b6000602082840312156134c3576134c261469c565b5b60006134d18482850161338c565b91505092915050565b600080604083850312156134f1576134f061469c565b5b60006134ff8582860161338c565b92505060206135108582860161338c565b9150509250929050565b6000806000606084860312156135335761353261469c565b5b60006135418682870161338c565b93505060206135528682870161338c565b925050604061356386828701613498565b9150509250925092565b600080600080608085870312156135875761358661469c565b5b60006135958782880161338c565b94505060206135a68782880161338c565b93505060406135b787828801613498565b925050606085013567ffffffffffffffff8111156135d8576135d7614697565b5b6135e48782880161343c565b91505092959194509250565b600080604083850312156136075761360661469c565b5b60006136158582860161338c565b9250506020613626858286016133fd565b9150509250929050565b600080604083850312156136475761364661469c565b5b60006136558582860161338c565b925050602061366685828601613498565b9150509250929050565b600080604083850312156136875761368661469c565b5b600083013567ffffffffffffffff8111156136a5576136a4614697565b5b6136b1858286016133a1565b925050602083013567ffffffffffffffff8111156136d2576136d1614697565b5b6136de858286016133cf565b9150509250929050565b6000602082840312156136fe576136fd61469c565b5b600061370c848285016133fd565b91505092915050565b60006020828403121561372b5761372a61469c565b5b600061373984828501613412565b91505092915050565b6000602082840312156137585761375761469c565b5b600061376684828501613427565b91505092915050565b6000602082840312156137855761378461469c565b5b600082013567ffffffffffffffff8111156137a3576137a2614697565b5b6137af8482850161346a565b91505092915050565b6000602082840312156137ce576137cd61469c565b5b60006137dc84828501613498565b91505092915050565b60006137f18383613d06565b60208301905092915050565b613806816143db565b82525050565b60006138178261425a565b6138218185614288565b935061382c83614235565b8060005b8381101561385d57815161384488826137e5565b975061384f8361427b565b925050600181019050613830565b5085935050505092915050565b613873816143ed565b82525050565b600061388482614265565b61388e8185614299565b935061389e81856020860161445e565b6138a7816146a1565b840191505092915050565b60006138bd82614270565b6138c781856142aa565b93506138d781856020860161445e565b6138e0816146a1565b840191505092915050565b60006138f682614270565b61390081856142bb565b935061391081856020860161445e565b80840191505092915050565b6000815461392981614491565b61393381866142bb565b9450600182166000811461394e576001811461395f57613992565b60ff19831686528186019350613992565b61396885614245565b60005b8381101561398a5781548189015260018201915060208101905061396b565b838801955050505b50505092915050565b60006139a86021836142aa565b91506139b3826146b2565b604082019050919050565b60006139cb602b836142aa565b91506139d682614701565b604082019050919050565b60006139ee6032836142aa565b91506139f982614750565b604082019050919050565b6000613a116026836142aa565b9150613a1c8261479f565b604082019050919050565b6000613a34601c836142aa565b9150613a3f826147ee565b602082019050919050565b6000613a576010836142aa565b9150613a6282614817565b602082019050919050565b6000613a7a6025836142aa565b9150613a8582614840565b604082019050919050565b6000613a9d6024836142aa565b9150613aa88261488f565b604082019050919050565b6000613ac06019836142aa565b9150613acb826148de565b602082019050919050565b6000613ae3602c836142aa565b9150613aee82614907565b604082019050919050565b6000613b066014836142aa565b9150613b1182614956565b602082019050919050565b6000613b296038836142aa565b9150613b348261497f565b604082019050919050565b6000613b4c602a836142aa565b9150613b57826149ce565b604082019050919050565b6000613b6f6029836142aa565b9150613b7a82614a1d565b604082019050919050565b6000613b926020836142aa565b9150613b9d82614a6c565b602082019050919050565b6000613bb5602c836142aa565b9150613bc082614a95565b604082019050919050565b6000613bd86020836142aa565b9150613be382614ae4565b602082019050919050565b6000613bfb6029836142aa565b9150613c0682614b0d565b604082019050919050565b6000613c1e602f836142aa565b9150613c2982614b5c565b604082019050919050565b6000613c416021836142aa565b9150613c4c82614bab565b604082019050919050565b6000613c646031836142aa565b9150613c6f82614bfa565b604082019050919050565b6000613c87602c836142aa565b9150613c9282614c49565b604082019050919050565b6000613caa600f836142aa565b9150613cb582614c98565b602082019050919050565b6000613ccd602a836142aa565b9150613cd882614cc1565b604082019050919050565b6000613cf06010836142aa565b9150613cfb82614d10565b602082019050919050565b613d0f81614445565b82525050565b613d1e81614445565b82525050565b6000613d3082866138eb565b9150613d3c82856138eb565b9150613d48828461391c565b9150819050949350505050565b6000602082019050613d6a60008301846137fd565b92915050565b6000608082019050613d8560008301876137fd565b613d9260208301866137fd565b613d9f6040830185613d15565b8181036060830152613db18184613879565b905095945050505050565b60006020820190508181036000830152613dd6818461380c565b905092915050565b6000602082019050613df3600083018461386a565b92915050565b60006020820190508181036000830152613e1381846138b2565b905092915050565b60006020820190508181036000830152613e348161399b565b9050919050565b60006020820190508181036000830152613e54816139be565b9050919050565b60006020820190508181036000830152613e74816139e1565b9050919050565b60006020820190508181036000830152613e9481613a04565b9050919050565b60006020820190508181036000830152613eb481613a27565b9050919050565b60006020820190508181036000830152613ed481613a4a565b9050919050565b60006020820190508181036000830152613ef481613a6d565b9050919050565b60006020820190508181036000830152613f1481613a90565b9050919050565b60006020820190508181036000830152613f3481613ab3565b9050919050565b60006020820190508181036000830152613f5481613ad6565b9050919050565b60006020820190508181036000830152613f7481613af9565b9050919050565b60006020820190508181036000830152613f9481613b1c565b9050919050565b60006020820190508181036000830152613fb481613b3f565b9050919050565b60006020820190508181036000830152613fd481613b62565b9050919050565b60006020820190508181036000830152613ff481613b85565b9050919050565b6000602082019050818103600083015261401481613ba8565b9050919050565b6000602082019050818103600083015261403481613bcb565b9050919050565b6000602082019050818103600083015261405481613bee565b9050919050565b6000602082019050818103600083015261407481613c11565b9050919050565b6000602082019050818103600083015261409481613c34565b9050919050565b600060208201905081810360008301526140b481613c57565b9050919050565b600060208201905081810360008301526140d481613c7a565b9050919050565b600060208201905081810360008301526140f481613c9d565b9050919050565b6000602082019050818103600083015261411481613cc0565b9050919050565b6000602082019050818103600083015261413481613ce3565b9050919050565b60006020820190506141506000830184613d15565b92915050565b6000614160614171565b905061416c82826144c3565b919050565b6000604051905090565b600067ffffffffffffffff82111561419657614195614659565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156141c2576141c1614659565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156141ee576141ed614659565b5b6141f7826146a1565b9050602081019050919050565b600067ffffffffffffffff82111561421f5761421e614659565b5b614228826146a1565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006142d182614445565b91506142dc83614445565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156143115761431061456e565b5b828201905092915050565b600061432782614445565b915061433283614445565b9250826143425761434161459d565b5b828204905092915050565b600061435882614445565b915061436383614445565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561439c5761439b61456e565b5b828202905092915050565b60006143b282614445565b91506143bd83614445565b9250828210156143d0576143cf61456e565b5b828203905092915050565b60006143e682614425565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561447c578082015181840152602081019050614461565b8381111561448b576000848401525b50505050565b600060028204905060018216806144a957607f821691505b602082108114156144bd576144bc6145cc565b5b50919050565b6144cc826146a1565b810181811067ffffffffffffffff821117156144eb576144ea614659565b5b80604052505050565b60006144ff82614445565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156145325761453161456e565b5b600182019050919050565b600061454882614445565b915061455383614445565b9250826145635761456261459d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f204e6f7420456c696769626c6520466f7220416c6c6f776c697374204d696e7460008201527f2000000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f20455448204e6f7420456e6f7567682000000000000000000000000000000000600082015250565b7f2052656163686564204d617820416c6c6f776c6973742053696e676c6520537560008201527f70706c7920000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2052656163686564204d617820537570706c7920000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f204d696e7420546f6f204d616e79200000000000000000000000000000000000600082015250565b7f2041646472657373657320446f6573204e6f74204d61746368204e756d536c6f60008201527f7473204c656e6774682000000000000000000000000000000000000000000000602082015250565b7f2030204e6f742041636365707465642000000000000000000000000000000000600082015250565b614d42816143db565b8114614d4d57600080fd5b50565b614d59816143ed565b8114614d6457600080fd5b50565b614d70816143f9565b8114614d7b57600080fd5b50565b614d8781614445565b8114614d9257600080fd5b5056fea264697066735822122057721936260667563d10d518cf11bc2c612b5f23eaed4222f12bbb6f89b58e6564736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000f5a6f6d626965204c61622050617373000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035a4c500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002068747470733a2f2f7a6f6d6269656c61622e636f2f7a6f6d626965706173732f

Deployed Bytecode

0x6080604052600436106102255760003560e01c80636c0360eb11610123578063b05863d5116100ab578063d5abeb011161006f578063d5abeb01146107fb578063da3ef23f14610826578063e985e9c51461084f578063ee09c10d1461088c578063f2fde38b146108b557610225565b8063b05863d514610718578063b388f9d314610741578063b88d4fde1461076a578063c668286214610793578063c87b56dd146107be57610225565b80638da5cb5b116100f25780638da5cb5b1461063357806395d89b411461065e578063a175988414610689578063a22cb465146106b2578063a7cd52cb146106db57610225565b80636c0360eb1461058b57806370a08231146105b6578063715018a6146105f35780637f00c7a61461060a57610225565b80632f745c59116101b157806344a0d68a1161017557806344a0d68a146104945780634f6ccce7146104bd57806355f804b3146104fa5780635c975abb146105235780636352211e1461054e57610225565b80632f745c59146103cb5780633ccfd60b1461040857806340c10f191461041257806342842e0e1461042e578063438b63001461045757610225565b8063095ea7b3116101f8578063095ea7b3146102f857806313faede61461032157806318160ddd1461034c578063239c70ae1461037757806323b872dd146103a257610225565b806301ffc9a71461022a57806302329a291461026757806306fdde0314610290578063081812fc146102bb575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613715565b6108de565b60405161025e9190613dde565b60405180910390f35b34801561027357600080fd5b5061028e600480360381019061028991906136e8565b610958565b005b34801561029c57600080fd5b506102a56109f1565b6040516102b29190613df9565b60405180910390f35b3480156102c757600080fd5b506102e260048036038101906102dd91906137b8565b610a83565b6040516102ef9190613d55565b60405180910390f35b34801561030457600080fd5b5061031f600480360381019061031a9190613630565b610b08565b005b34801561032d57600080fd5b50610336610c20565b604051610343919061413b565b60405180910390f35b34801561035857600080fd5b50610361610c26565b60405161036e919061413b565b60405180910390f35b34801561038357600080fd5b5061038c610c33565b604051610399919061413b565b60405180910390f35b3480156103ae57600080fd5b506103c960048036038101906103c4919061351a565b610c39565b005b3480156103d757600080fd5b506103f260048036038101906103ed9190613630565b610c99565b6040516103ff919061413b565b60405180910390f35b610410610d3e565b005b61042c60048036038101906104279190613630565b610e25565b005b34801561043a57600080fd5b506104556004803603810190610450919061351a565b61117e565b005b34801561046357600080fd5b5061047e600480360381019061047991906134ad565b61119e565b60405161048b9190613dbc565b60405180910390f35b3480156104a057600080fd5b506104bb60048036038101906104b691906137b8565b61124c565b005b3480156104c957600080fd5b506104e460048036038101906104df91906137b8565b6112d2565b6040516104f1919061413b565b60405180910390f35b34801561050657600080fd5b50610521600480360381019061051c919061376f565b611343565b005b34801561052f57600080fd5b506105386113d9565b6040516105459190613dde565b60405180910390f35b34801561055a57600080fd5b50610575600480360381019061057091906137b8565b6113ec565b6040516105829190613d55565b60405180910390f35b34801561059757600080fd5b506105a061149e565b6040516105ad9190613df9565b60405180910390f35b3480156105c257600080fd5b506105dd60048036038101906105d891906134ad565b61152c565b6040516105ea919061413b565b60405180910390f35b3480156105ff57600080fd5b506106086115e4565b005b34801561061657600080fd5b50610631600480360381019061062c91906137b8565b61166c565b005b34801561063f57600080fd5b506106486116f2565b6040516106559190613d55565b60405180910390f35b34801561066a57600080fd5b5061067361171c565b6040516106809190613df9565b60405180910390f35b34801561069557600080fd5b506106b060048036038101906106ab91906134ad565b6117ae565b005b3480156106be57600080fd5b506106d960048036038101906106d491906135f0565b61186e565b005b3480156106e757600080fd5b5061070260048036038101906106fd91906134ad565b611884565b60405161070f919061413b565b60405180910390f35b34801561072457600080fd5b5061073f600480360381019061073a9190613670565b61189c565b005b34801561074d57600080fd5b50610768600480360381019061076391906134ad565b6119f8565b005b34801561077657600080fd5b50610791600480360381019061078c919061356d565b611aba565b005b34801561079f57600080fd5b506107a8611b1c565b6040516107b59190613df9565b60405180910390f35b3480156107ca57600080fd5b506107e560048036038101906107e091906137b8565b611baa565b6040516107f29190613df9565b60405180910390f35b34801561080757600080fd5b50610810611c54565b60405161081d919061413b565b60405180910390f35b34801561083257600080fd5b5061084d6004803603810190610848919061376f565b611c5a565b005b34801561085b57600080fd5b50610876600480360381019061087191906134da565b611cf0565b6040516108839190613dde565b60405180910390f35b34801561089857600080fd5b506108b360048036038101906108ae9190613630565b611d84565b005b3480156108c157600080fd5b506108dc60048036038101906108d791906134ad565b611e48565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610951575061095082611f58565b5b9050919050565b61096061203a565b73ffffffffffffffffffffffffffffffffffffffff1661097e6116f2565b73ffffffffffffffffffffffffffffffffffffffff16146109d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cb9061401b565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b606060008054610a0090614491565b80601f0160208091040260200160405190810160405280929190818152602001828054610a2c90614491565b8015610a795780601f10610a4e57610100808354040283529160200191610a79565b820191906000526020600020905b815481529060010190602001808311610a5c57829003601f168201915b5050505050905090565b6000610a8e82612042565b610acd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac490613ffb565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b13826113ec565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7b9061407b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ba361203a565b73ffffffffffffffffffffffffffffffffffffffff161480610bd25750610bd181610bcc61203a565b611cf0565b5b610c11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0890613f7b565b60405180910390fd5b610c1b83836120ae565b505050565b600d5481565b6000600880549050905090565b600f5481565b610c4a610c4461203a565b82612167565b610c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c809061409b565b60405180910390fd5b610c94838383612245565b505050565b6000610ca48361152c565b8210610ce5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdc90613e3b565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610d4661203a565b73ffffffffffffffffffffffffffffffffffffffff16610d646116f2565b73ffffffffffffffffffffffffffffffffffffffff1614610dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db19061401b565b60405180910390fd5b601060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610e22573d6000803e3d6000fd5b50565b6000610e2f610c26565b9050601060009054906101000a900460ff1615610e4b57600080fd5b60008211610e8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e859061411b565b60405180910390fd5b600f54821115610ed3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eca906140db565b60405180910390fd5b600e548282610ee291906142c6565b1115610f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1a90613f5b565b60405180910390fd5b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9c90613e1b565b60405180910390fd5b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054821115611027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101e90613edb565b60405180910390fd5b81600d54611035919061434d565b341015611077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106e90613ebb565b60405180910390fd5b81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110c691906143a7565b925050819055506000600190505b82811161110f576110fc84600183856110ed91906142c6565b6110f791906143a7565b6124a1565b8080611107906144f4565b9150506110d4565b50601060019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015611178573d6000803e3d6000fd5b50505050565b61119983838360405180602001604052806000815250611aba565b505050565b606060006111ab8361152c565b905060008167ffffffffffffffff8111156111c9576111c8614659565b5b6040519080825280602002602001820160405280156111f75781602001602082028036833780820191505090505b50905060005b828110156112415761120f8582610c99565b8282815181106112225761122161462a565b5b6020026020010181815250508080611239906144f4565b9150506111fd565b508092505050919050565b61125461203a565b73ffffffffffffffffffffffffffffffffffffffff166112726116f2565b73ffffffffffffffffffffffffffffffffffffffff16146112c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bf9061401b565b60405180910390fd5b80600d8190555050565b60006112dc610c26565b821061131d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611314906140bb565b60405180910390fd5b600882815481106113315761133061462a565b5b90600052602060002001549050919050565b61134b61203a565b73ffffffffffffffffffffffffffffffffffffffff166113696116f2565b73ffffffffffffffffffffffffffffffffffffffff16146113bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b69061401b565b60405180910390fd5b80600b90805190602001906113d5929190613185565b5050565b601060009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611495576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148c90613fbb565b60405180910390fd5b80915050919050565b600b80546114ab90614491565b80601f01602080910402602001604051908101604052809291908181526020018280546114d790614491565b80156115245780601f106114f957610100808354040283529160200191611524565b820191906000526020600020905b81548152906001019060200180831161150757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561159d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159490613f9b565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115ec61203a565b73ffffffffffffffffffffffffffffffffffffffff1661160a6116f2565b73ffffffffffffffffffffffffffffffffffffffff1614611660576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116579061401b565b60405180910390fd5b61166a60006124bf565b565b61167461203a565b73ffffffffffffffffffffffffffffffffffffffff166116926116f2565b73ffffffffffffffffffffffffffffffffffffffff16146116e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116df9061401b565b60405180910390fd5b80600f8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461172b90614491565b80601f016020809104026020016040519081016040528092919081815260200182805461175790614491565b80156117a45780601f10611779576101008083540402835291602001916117a4565b820191906000526020600020905b81548152906001019060200180831161178757829003601f168201915b5050505050905090565b6117b661203a565b73ffffffffffffffffffffffffffffffffffffffff166117d46116f2565b73ffffffffffffffffffffffffffffffffffffffff161461182a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118219061401b565b60405180910390fd5b80601060016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61188061187961203a565b8383612585565b5050565b60116020528060005260406000206000915090505481565b6118a461203a565b73ffffffffffffffffffffffffffffffffffffffff166118c26116f2565b73ffffffffffffffffffffffffffffffffffffffff1614611918576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190f9061401b565b60405180910390fd5b805182511461195c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611953906140fb565b60405180910390fd5b60005b82518110156119f35781818151811061197b5761197a61462a565b5b60200260200101516011600085848151811061199a5761199961462a565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806119eb906144f4565b91505061195f565b505050565b611a0061203a565b73ffffffffffffffffffffffffffffffffffffffff16611a1e6116f2565b73ffffffffffffffffffffffffffffffffffffffff1614611a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6b9061401b565b60405180910390fd5b601160008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000905550565b611acb611ac561203a565b83612167565b611b0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b019061409b565b60405180910390fd5b611b16848484846126f2565b50505050565b600c8054611b2990614491565b80601f0160208091040260200160405190810160405280929190818152602001828054611b5590614491565b8015611ba25780601f10611b7757610100808354040283529160200191611ba2565b820191906000526020600020905b815481529060010190602001808311611b8557829003601f168201915b505050505081565b6060611bb582612042565b611bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611beb9061405b565b60405180910390fd5b6000611bfe61274e565b90506000815111611c1e5760405180602001604052806000815250611c4c565b80611c28846127e0565b600c604051602001611c3c93929190613d24565b6040516020818303038152906040525b915050919050565b600e5481565b611c6261203a565b73ffffffffffffffffffffffffffffffffffffffff16611c806116f2565b73ffffffffffffffffffffffffffffffffffffffff1614611cd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ccd9061401b565b60405180910390fd5b80600c9080519060200190611cec929190613185565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611d8c61203a565b73ffffffffffffffffffffffffffffffffffffffff16611daa6116f2565b73ffffffffffffffffffffffffffffffffffffffff1614611e00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df79061401b565b60405180910390fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b611e5061203a565b73ffffffffffffffffffffffffffffffffffffffff16611e6e6116f2565b73ffffffffffffffffffffffffffffffffffffffff1614611ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebb9061401b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2b90613e7b565b60405180910390fd5b611f3d816124bf565b50565b600080823b905060008111915050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061202357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612033575061203282612941565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612121836113ec565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061217282612042565b6121b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a890613f3b565b60405180910390fd5b60006121bc836113ec565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061222b57508373ffffffffffffffffffffffffffffffffffffffff1661221384610a83565b73ffffffffffffffffffffffffffffffffffffffff16145b8061223c575061223b8185611cf0565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612265826113ec565b73ffffffffffffffffffffffffffffffffffffffff16146122bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b29061403b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561232b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232290613efb565b60405180910390fd5b6123368383836129ab565b6123416000826120ae565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461239191906143a7565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123e891906142c6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6124bb828260405180602001604052806000815250612abf565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156125f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125eb90613f1b565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516126e59190613dde565b60405180910390a3505050565b6126fd848484612245565b61270984848484612b1a565b612748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273f90613e5b565b60405180910390fd5b50505050565b6060600b805461275d90614491565b80601f016020809104026020016040519081016040528092919081815260200182805461278990614491565b80156127d65780601f106127ab576101008083540402835291602001916127d6565b820191906000526020600020905b8154815290600101906020018083116127b957829003601f168201915b5050505050905090565b60606000821415612828576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061293c565b600082905060005b6000821461285a578080612843906144f4565b915050600a82612853919061431c565b9150612830565b60008167ffffffffffffffff81111561287657612875614659565b5b6040519080825280601f01601f1916602001820160405280156128a85781602001600182028036833780820191505090505b5090505b60008514612935576001826128c191906143a7565b9150600a856128d0919061453d565b60306128dc91906142c6565b60f81b8183815181106128f2576128f161462a565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561292e919061431c565b94506128ac565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6129b6838383611f53565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129f9576129f481612cb1565b612a38565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612a3757612a368382612cfa565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a7b57612a7681612e67565b612aba565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612ab957612ab88282612f38565b5b5b505050565b612ac98383612fb7565b612ad66000848484612b1a565b612b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0c90613e5b565b60405180910390fd5b505050565b6000612b3b8473ffffffffffffffffffffffffffffffffffffffff16611f40565b15612ca4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612b6461203a565b8786866040518563ffffffff1660e01b8152600401612b869493929190613d70565b602060405180830381600087803b158015612ba057600080fd5b505af1925050508015612bd157506040513d601f19601f82011682018060405250810190612bce9190613742565b60015b612c54573d8060008114612c01576040519150601f19603f3d011682016040523d82523d6000602084013e612c06565b606091505b50600081511415612c4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4390613e5b565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ca9565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612d078461152c565b612d1191906143a7565b9050600060076000848152602001908152602001600020549050818114612df6576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612e7b91906143a7565b9050600060096000848152602001908152602001600020549050600060088381548110612eab57612eaa61462a565b5b906000526020600020015490508060088381548110612ecd57612ecc61462a565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612f1c57612f1b6145fb565b5b6001900381819060005260206000200160009055905550505050565b6000612f438361152c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613027576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161301e90613fdb565b60405180910390fd5b61303081612042565b15613070576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306790613e9b565b60405180910390fd5b61307c600083836129ab565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546130cc91906142c6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461319190614491565b90600052602060002090601f0160209004810192826131b357600085556131fa565b82601f106131cc57805160ff19168380011785556131fa565b828001600101855582156131fa579182015b828111156131f95782518255916020019190600101906131de565b5b509050613207919061320b565b5090565b5b8082111561322457600081600090555060010161320c565b5090565b600061323b6132368461417b565b614156565b9050808382526020820190508285602086028201111561325e5761325d61468d565b5b60005b8581101561328e5781613274888261338c565b845260208401935060208301925050600181019050613261565b5050509392505050565b60006132ab6132a6846141a7565b614156565b905080838252602082019050828560208602820111156132ce576132cd61468d565b5b60005b858110156132fe57816132e48882613498565b8452602084019350602083019250506001810190506132d1565b5050509392505050565b600061331b613316846141d3565b614156565b90508281526020810184848401111561333757613336614692565b5b61334284828561444f565b509392505050565b600061335d61335884614204565b614156565b90508281526020810184848401111561337957613378614692565b5b61338484828561444f565b509392505050565b60008135905061339b81614d39565b92915050565b600082601f8301126133b6576133b5614688565b5b81356133c6848260208601613228565b91505092915050565b600082601f8301126133e4576133e3614688565b5b81356133f4848260208601613298565b91505092915050565b60008135905061340c81614d50565b92915050565b60008135905061342181614d67565b92915050565b60008151905061343681614d67565b92915050565b600082601f83011261345157613450614688565b5b8135613461848260208601613308565b91505092915050565b600082601f83011261347f5761347e614688565b5b813561348f84826020860161334a565b91505092915050565b6000813590506134a781614d7e565b92915050565b6000602082840312156134c3576134c261469c565b5b60006134d18482850161338c565b91505092915050565b600080604083850312156134f1576134f061469c565b5b60006134ff8582860161338c565b92505060206135108582860161338c565b9150509250929050565b6000806000606084860312156135335761353261469c565b5b60006135418682870161338c565b93505060206135528682870161338c565b925050604061356386828701613498565b9150509250925092565b600080600080608085870312156135875761358661469c565b5b60006135958782880161338c565b94505060206135a68782880161338c565b93505060406135b787828801613498565b925050606085013567ffffffffffffffff8111156135d8576135d7614697565b5b6135e48782880161343c565b91505092959194509250565b600080604083850312156136075761360661469c565b5b60006136158582860161338c565b9250506020613626858286016133fd565b9150509250929050565b600080604083850312156136475761364661469c565b5b60006136558582860161338c565b925050602061366685828601613498565b9150509250929050565b600080604083850312156136875761368661469c565b5b600083013567ffffffffffffffff8111156136a5576136a4614697565b5b6136b1858286016133a1565b925050602083013567ffffffffffffffff8111156136d2576136d1614697565b5b6136de858286016133cf565b9150509250929050565b6000602082840312156136fe576136fd61469c565b5b600061370c848285016133fd565b91505092915050565b60006020828403121561372b5761372a61469c565b5b600061373984828501613412565b91505092915050565b6000602082840312156137585761375761469c565b5b600061376684828501613427565b91505092915050565b6000602082840312156137855761378461469c565b5b600082013567ffffffffffffffff8111156137a3576137a2614697565b5b6137af8482850161346a565b91505092915050565b6000602082840312156137ce576137cd61469c565b5b60006137dc84828501613498565b91505092915050565b60006137f18383613d06565b60208301905092915050565b613806816143db565b82525050565b60006138178261425a565b6138218185614288565b935061382c83614235565b8060005b8381101561385d57815161384488826137e5565b975061384f8361427b565b925050600181019050613830565b5085935050505092915050565b613873816143ed565b82525050565b600061388482614265565b61388e8185614299565b935061389e81856020860161445e565b6138a7816146a1565b840191505092915050565b60006138bd82614270565b6138c781856142aa565b93506138d781856020860161445e565b6138e0816146a1565b840191505092915050565b60006138f682614270565b61390081856142bb565b935061391081856020860161445e565b80840191505092915050565b6000815461392981614491565b61393381866142bb565b9450600182166000811461394e576001811461395f57613992565b60ff19831686528186019350613992565b61396885614245565b60005b8381101561398a5781548189015260018201915060208101905061396b565b838801955050505b50505092915050565b60006139a86021836142aa565b91506139b3826146b2565b604082019050919050565b60006139cb602b836142aa565b91506139d682614701565b604082019050919050565b60006139ee6032836142aa565b91506139f982614750565b604082019050919050565b6000613a116026836142aa565b9150613a1c8261479f565b604082019050919050565b6000613a34601c836142aa565b9150613a3f826147ee565b602082019050919050565b6000613a576010836142aa565b9150613a6282614817565b602082019050919050565b6000613a7a6025836142aa565b9150613a8582614840565b604082019050919050565b6000613a9d6024836142aa565b9150613aa88261488f565b604082019050919050565b6000613ac06019836142aa565b9150613acb826148de565b602082019050919050565b6000613ae3602c836142aa565b9150613aee82614907565b604082019050919050565b6000613b066014836142aa565b9150613b1182614956565b602082019050919050565b6000613b296038836142aa565b9150613b348261497f565b604082019050919050565b6000613b4c602a836142aa565b9150613b57826149ce565b604082019050919050565b6000613b6f6029836142aa565b9150613b7a82614a1d565b604082019050919050565b6000613b926020836142aa565b9150613b9d82614a6c565b602082019050919050565b6000613bb5602c836142aa565b9150613bc082614a95565b604082019050919050565b6000613bd86020836142aa565b9150613be382614ae4565b602082019050919050565b6000613bfb6029836142aa565b9150613c0682614b0d565b604082019050919050565b6000613c1e602f836142aa565b9150613c2982614b5c565b604082019050919050565b6000613c416021836142aa565b9150613c4c82614bab565b604082019050919050565b6000613c646031836142aa565b9150613c6f82614bfa565b604082019050919050565b6000613c87602c836142aa565b9150613c9282614c49565b604082019050919050565b6000613caa600f836142aa565b9150613cb582614c98565b602082019050919050565b6000613ccd602a836142aa565b9150613cd882614cc1565b604082019050919050565b6000613cf06010836142aa565b9150613cfb82614d10565b602082019050919050565b613d0f81614445565b82525050565b613d1e81614445565b82525050565b6000613d3082866138eb565b9150613d3c82856138eb565b9150613d48828461391c565b9150819050949350505050565b6000602082019050613d6a60008301846137fd565b92915050565b6000608082019050613d8560008301876137fd565b613d9260208301866137fd565b613d9f6040830185613d15565b8181036060830152613db18184613879565b905095945050505050565b60006020820190508181036000830152613dd6818461380c565b905092915050565b6000602082019050613df3600083018461386a565b92915050565b60006020820190508181036000830152613e1381846138b2565b905092915050565b60006020820190508181036000830152613e348161399b565b9050919050565b60006020820190508181036000830152613e54816139be565b9050919050565b60006020820190508181036000830152613e74816139e1565b9050919050565b60006020820190508181036000830152613e9481613a04565b9050919050565b60006020820190508181036000830152613eb481613a27565b9050919050565b60006020820190508181036000830152613ed481613a4a565b9050919050565b60006020820190508181036000830152613ef481613a6d565b9050919050565b60006020820190508181036000830152613f1481613a90565b9050919050565b60006020820190508181036000830152613f3481613ab3565b9050919050565b60006020820190508181036000830152613f5481613ad6565b9050919050565b60006020820190508181036000830152613f7481613af9565b9050919050565b60006020820190508181036000830152613f9481613b1c565b9050919050565b60006020820190508181036000830152613fb481613b3f565b9050919050565b60006020820190508181036000830152613fd481613b62565b9050919050565b60006020820190508181036000830152613ff481613b85565b9050919050565b6000602082019050818103600083015261401481613ba8565b9050919050565b6000602082019050818103600083015261403481613bcb565b9050919050565b6000602082019050818103600083015261405481613bee565b9050919050565b6000602082019050818103600083015261407481613c11565b9050919050565b6000602082019050818103600083015261409481613c34565b9050919050565b600060208201905081810360008301526140b481613c57565b9050919050565b600060208201905081810360008301526140d481613c7a565b9050919050565b600060208201905081810360008301526140f481613c9d565b9050919050565b6000602082019050818103600083015261411481613cc0565b9050919050565b6000602082019050818103600083015261413481613ce3565b9050919050565b60006020820190506141506000830184613d15565b92915050565b6000614160614171565b905061416c82826144c3565b919050565b6000604051905090565b600067ffffffffffffffff82111561419657614195614659565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156141c2576141c1614659565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156141ee576141ed614659565b5b6141f7826146a1565b9050602081019050919050565b600067ffffffffffffffff82111561421f5761421e614659565b5b614228826146a1565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006142d182614445565b91506142dc83614445565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156143115761431061456e565b5b828201905092915050565b600061432782614445565b915061433283614445565b9250826143425761434161459d565b5b828204905092915050565b600061435882614445565b915061436383614445565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561439c5761439b61456e565b5b828202905092915050565b60006143b282614445565b91506143bd83614445565b9250828210156143d0576143cf61456e565b5b828203905092915050565b60006143e682614425565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561447c578082015181840152602081019050614461565b8381111561448b576000848401525b50505050565b600060028204905060018216806144a957607f821691505b602082108114156144bd576144bc6145cc565b5b50919050565b6144cc826146a1565b810181811067ffffffffffffffff821117156144eb576144ea614659565b5b80604052505050565b60006144ff82614445565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156145325761453161456e565b5b600182019050919050565b600061454882614445565b915061455383614445565b9250826145635761456261459d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f204e6f7420456c696769626c6520466f7220416c6c6f776c697374204d696e7460008201527f2000000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f20455448204e6f7420456e6f7567682000000000000000000000000000000000600082015250565b7f2052656163686564204d617820416c6c6f776c6973742053696e676c6520537560008201527f70706c7920000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2052656163686564204d617820537570706c7920000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f204d696e7420546f6f204d616e79200000000000000000000000000000000000600082015250565b7f2041646472657373657320446f6573204e6f74204d61746368204e756d536c6f60008201527f7473204c656e6774682000000000000000000000000000000000000000000000602082015250565b7f2030204e6f742041636365707465642000000000000000000000000000000000600082015250565b614d42816143db565b8114614d4d57600080fd5b50565b614d59816143ed565b8114614d6457600080fd5b50565b614d70816143f9565b8114614d7b57600080fd5b50565b614d8781614445565b8114614d9257600080fd5b5056fea264697066735822122057721936260667563d10d518cf11bc2c612b5f23eaed4222f12bbb6f89b58e6564736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000f5a6f6d626965204c61622050617373000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035a4c500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002068747470733a2f2f7a6f6d6269656c61622e636f2f7a6f6d626965706173732f

-----Decoded View---------------
Arg [0] : _name (string): Zombie Lab Pass
Arg [1] : _symbol (string): ZLP
Arg [2] : _initBaseURI (string): https://zombielab.co/zombiepass/

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [4] : 5a6f6d626965204c616220506173730000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 5a4c500000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [8] : 68747470733a2f2f7a6f6d6269656c61622e636f2f7a6f6d626965706173732f


Deployed Bytecode Sourcemap

44519:3494:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38299:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47161:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25793:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27352:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26875:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44671:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38939:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44742:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28102:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38607:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47895:111;;;:::i;:::-;;45243:766;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28512:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46015:335;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46721:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39129:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46929:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44780:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25487:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44608:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25217:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4763:103;;;;;;;;;;;;;:::i;:::-;;46807:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4112:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25962:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47789:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27645:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44881:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47241:314;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47562:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28768:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44634:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46356:359;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44707:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47033:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27871:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47667:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5021:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38299:224;38401:4;38440:35;38425:50;;;:11;:50;;;;:90;;;;38479:36;38503:11;38479:23;:36::i;:::-;38425:90;38418:97;;38299:224;;;:::o;47161:73::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47222:6:::1;47213;;:15;;;;;;;;;;;;;;;;;;47161:73:::0;:::o;25793:100::-;25847:13;25880:5;25873:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25793:100;:::o;27352:221::-;27428:7;27456:16;27464:7;27456;:16::i;:::-;27448:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27541:15;:24;27557:7;27541:24;;;;;;;;;;;;;;;;;;;;;27534:31;;27352:221;;;:::o;26875:411::-;26956:13;26972:23;26987:7;26972:14;:23::i;:::-;26956:39;;27020:5;27014:11;;:2;:11;;;;27006:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27114:5;27098:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27123:37;27140:5;27147:12;:10;:12::i;:::-;27123:16;:37::i;:::-;27098:62;27076:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;27257:21;27266:2;27270:7;27257:8;:21::i;:::-;26945:341;26875:411;;:::o;44671:31::-;;;;:::o;38939:113::-;39000:7;39027:10;:17;;;;39020:24;;38939:113;:::o;44742:33::-;;;;:::o;28102:339::-;28297:41;28316:12;:10;:12::i;:::-;28330:7;28297:18;:41::i;:::-;28289:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;28405:28;28415:4;28421:2;28425:7;28405:9;:28::i;:::-;28102:339;;;:::o;38607:256::-;38704:7;38740:23;38757:5;38740:16;:23::i;:::-;38732:5;:31;38724:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;38829:12;:19;38842:5;38829:19;;;;;;;;;;;;;;;:26;38849:5;38829:26;;;;;;;;;;;;38822:33;;38607:256;;;;:::o;47895:111::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47957:10:::1;;;;;;;;;;;47949:28;;:51;47978:21;47949:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;47895:111::o:0;45243:766::-;45315:14;45332:13;:11;:13::i;:::-;45315:30;;45363:6;;;;;;;;;;;45362:7;45354:16;;;;;;45401:1;45387:11;:15;45379:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;45454:13;;45439:11;:28;;45431:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;45530:9;;45515:11;45506:6;:20;;;;:::i;:::-;:33;;45498:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;45606:1;45582:9;:21;45592:10;45582:21;;;;;;;;;;;;;;;;:25;45574:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;45676:9;:21;45686:10;45676:21;;;;;;;;;;;;;;;;45661:11;:36;;45653:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;45778:11;45771:4;;:18;;;;:::i;:::-;45758:9;:31;;45749:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;45845:11;45820:9;:21;45830:10;45820:21;;;;;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;45870:9;45882:1;45870:13;;45865:89;45890:11;45885:1;:16;45865:89;;45917:29;45927:3;45944:1;45941;45932:6;:10;;;;:::i;:::-;:13;;;;:::i;:::-;45917:9;:29::i;:::-;45903:3;;;;;:::i;:::-;;;;45865:89;;;;45970:10;;;;;;;;;;;45962:28;;:39;45991:9;45962:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45306:703;45243:766;;:::o;28512:185::-;28650:39;28667:4;28673:2;28677:7;28650:39;;;;;;;;;;;;:16;:39::i;:::-;28512:185;;;:::o;46015:335::-;46075:16;46103:23;46129:17;46139:6;46129:9;:17::i;:::-;46103:43;;46153:25;46195:15;46181:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46153:58;;46223:9;46218:103;46238:15;46234:1;:19;46218:103;;;46283:30;46303:6;46311:1;46283:19;:30::i;:::-;46269:8;46278:1;46269:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;46255:3;;;;;:::i;:::-;;;;46218:103;;;;46334:8;46327:15;;;;46015:335;;;:::o;46721:80::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46787:8:::1;46780:4;:15;;;;46721:80:::0;:::o;39129:233::-;39204:7;39240:30;:28;:30::i;:::-;39232:5;:38;39224:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;39337:10;39348:5;39337:17;;;;;;;;:::i;:::-;;;;;;;;;;39330:24;;39129:233;;;:::o;46929:98::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47010:11:::1;47000:7;:21;;;;;;;;;;;;:::i;:::-;;46929:98:::0;:::o;44780:26::-;;;;;;;;;;;;;:::o;25487:239::-;25559:7;25579:13;25595:7;:16;25603:7;25595:16;;;;;;;;;;;;;;;;;;;;;25579:32;;25647:1;25630:19;;:5;:19;;;;25622:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;25713:5;25706:12;;;25487:239;;;:::o;44608:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25217:208::-;25289:7;25334:1;25317:19;;:5;:19;;;;25309:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;25401:9;:16;25411:5;25401:16;;;;;;;;;;;;;;;;25394:23;;25217:208;;;:::o;4763:103::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4828:30:::1;4855:1;4828:18;:30::i;:::-;4763:103::o:0;46807:116::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46900:17:::1;46884:13;:33;;;;46807:116:::0;:::o;4112:87::-;4158:7;4185:6;;;;;;;;;;;4178:13;;4112:87;:::o;25962:104::-;26018:13;26051:7;26044:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25962:104;:::o;47789:100::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47872:11:::1;47859:10;;:24;;;;;;;;;;;;;;;;;;47789:100:::0;:::o;27645:155::-;27740:52;27759:12;:10;:12::i;:::-;27773:8;27783;27740:18;:52::i;:::-;27645:155;;:::o;44881:44::-;;;;;;;;;;;;;;;;;:::o;47241:314::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47377:8:::1;:15;47357:9;:16;:35;47348:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;47454:9;47449:101;47473:9;:16;47469:1;:20;47449:101;;;47531:8;47540:1;47531:11;;;;;;;;:::i;:::-;;;;;;;;47505:9;:23;47515:9;47525:1;47515:12;;;;;;;;:::i;:::-;;;;;;;;47505:23;;;;;;;;;;;;;;;:37;;;;47491:3;;;;;:::i;:::-;;;;47449:101;;;;47241:314:::0;;:::o;47562:99::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47639:9:::1;:16;47649:5;47639:16;;;;;;;;;;;;;;;47632:23;;;47562:99:::0;:::o;28768:328::-;28943:41;28962:12;:10;:12::i;:::-;28976:7;28943:18;:41::i;:::-;28935:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29049:39;29063:4;29069:2;29073:7;29082:5;29049:13;:39::i;:::-;28768:328;;;;:::o;44634:32::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46356:359::-;46429:13;46461:16;46469:7;46461;:16::i;:::-;46452:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;46539:28;46570:10;:8;:10::i;:::-;46539:41;;46625:1;46600:14;46594:28;:32;:115;;;;;;;;;;;;;;;;;46653:14;46669:18;:7;:16;:18::i;:::-;46689:13;46636:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46594:115;46587:122;;;46356:359;;;:::o;44707:30::-;;;;:::o;47033:122::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47132:17:::1;47116:13;:33;;;;;;;;;;;;:::i;:::-;;47033:122:::0;:::o;27871:164::-;27968:4;27992:18;:25;28011:5;27992:25;;;;;;;;;;;;;;;:35;28018:8;27992:35;;;;;;;;;;;;;;;;;;;;;;;;;27985:42;;27871:164;;;;:::o;47667:116::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47769:8:::1;47750:9;:16;47760:5;47750:16;;;;;;;;;;;;;;;:27;;;;47667:116:::0;;:::o;5021:201::-;4343:12;:10;:12::i;:::-;4332:23;;:7;:5;:7::i;:::-;:23;;;4324:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5130:1:::1;5110:22;;:8;:22;;;;5102:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5186:28;5205:8;5186:18;:28::i;:::-;5021:201:::0;:::o;6400:387::-;6460:4;6668:12;6735:7;6723:20;6715:28;;6778:1;6771:4;:8;6764:15;;;6400:387;;;:::o;37155:126::-;;;;:::o;24848:305::-;24950:4;25002:25;24987:40;;;:11;:40;;;;:105;;;;25059:33;25044:48;;;:11;:48;;;;24987:105;:158;;;;25109:36;25133:11;25109:23;:36::i;:::-;24987:158;24967:178;;24848:305;;;:::o;2836:98::-;2889:7;2916:10;2909:17;;2836:98;:::o;30606:127::-;30671:4;30723:1;30695:30;;:7;:16;30703:7;30695:16;;;;;;;;;;;;;;;;;;;;;:30;;;;30688:37;;30606:127;;;:::o;34588:174::-;34690:2;34663:15;:24;34679:7;34663:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;34746:7;34742:2;34708:46;;34717:23;34732:7;34717:14;:23::i;:::-;34708:46;;;;;;;;;;;;34588:174;;:::o;30900:348::-;30993:4;31018:16;31026:7;31018;:16::i;:::-;31010:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31094:13;31110:23;31125:7;31110:14;:23::i;:::-;31094:39;;31163:5;31152:16;;:7;:16;;;:51;;;;31196:7;31172:31;;:20;31184:7;31172:11;:20::i;:::-;:31;;;31152:51;:87;;;;31207:32;31224:5;31231:7;31207:16;:32::i;:::-;31152:87;31144:96;;;30900:348;;;;:::o;33892:578::-;34051:4;34024:31;;:23;34039:7;34024:14;:23::i;:::-;:31;;;34016:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;34134:1;34120:16;;:2;:16;;;;34112:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;34190:39;34211:4;34217:2;34221:7;34190:20;:39::i;:::-;34294:29;34311:1;34315:7;34294:8;:29::i;:::-;34355:1;34336:9;:15;34346:4;34336:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;34384:1;34367:9;:13;34377:2;34367:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34415:2;34396:7;:16;34404:7;34396:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34454:7;34450:2;34435:27;;34444:4;34435:27;;;;;;;;;;;;33892:578;;;:::o;31590:110::-;31666:26;31676:2;31680:7;31666:26;;;;;;;;;;;;:9;:26::i;:::-;31590:110;;:::o;5382:191::-;5456:16;5475:6;;;;;;;;;;;5456:25;;5501:8;5492:6;;:17;;;;;;;;;;;;;;;;;;5556:8;5525:40;;5546:8;5525:40;;;;;;;;;;;;5445:128;5382:191;:::o;34904:315::-;35059:8;35050:17;;:5;:17;;;;35042:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;35146:8;35108:18;:25;35127:5;35108:25;;;;;;;;;;;;;;;:35;35134:8;35108:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35192:8;35170:41;;35185:5;35170:41;;;35202:8;35170:41;;;;;;:::i;:::-;;;;;;;;34904:315;;;:::o;29978:::-;30135:28;30145:4;30151:2;30155:7;30135:9;:28::i;:::-;30182:48;30205:4;30211:2;30215:7;30224:5;30182:22;:48::i;:::-;30174:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;29978:315;;;;:::o;45135:102::-;45195:13;45224:7;45217:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45135:102;:::o;398:723::-;454:13;684:1;675:5;:10;671:53;;;702:10;;;;;;;;;;;;;;;;;;;;;671:53;734:12;749:5;734:20;;765:14;790:78;805:1;797:4;:9;790:78;;823:8;;;;;:::i;:::-;;;;854:2;846:10;;;;;:::i;:::-;;;790:78;;;878:19;910:6;900:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;878:39;;928:154;944:1;935:5;:10;928:154;;972:1;962:11;;;;;:::i;:::-;;;1039:2;1031:5;:10;;;;:::i;:::-;1018:2;:24;;;;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1068:2;1059:11;;;;;:::i;:::-;;;928:154;;;1106:6;1092:21;;;;;398:723;;;;:::o;16544:157::-;16629:4;16668:25;16653:40;;;:11;:40;;;;16646:47;;16544:157;;;:::o;39975:589::-;40119:45;40146:4;40152:2;40156:7;40119:26;:45::i;:::-;40197:1;40181:18;;:4;:18;;;40177:187;;;40216:40;40248:7;40216:31;:40::i;:::-;40177:187;;;40286:2;40278:10;;:4;:10;;;40274:90;;40305:47;40338:4;40344:7;40305:32;:47::i;:::-;40274:90;40177:187;40392:1;40378:16;;:2;:16;;;40374:183;;;40411:45;40448:7;40411:36;:45::i;:::-;40374:183;;;40484:4;40478:10;;:2;:10;;;40474:83;;40505:40;40533:2;40537:7;40505:27;:40::i;:::-;40474:83;40374:183;39975:589;;;:::o;31927:321::-;32057:18;32063:2;32067:7;32057:5;:18::i;:::-;32108:54;32139:1;32143:2;32147:7;32156:5;32108:22;:54::i;:::-;32086:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;31927:321;;;:::o;35784:799::-;35939:4;35960:15;:2;:13;;;:15::i;:::-;35956:620;;;36012:2;35996:36;;;36033:12;:10;:12::i;:::-;36047:4;36053:7;36062:5;35996:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35992:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36255:1;36238:6;:13;:18;36234:272;;;36281:60;;;;;;;;;;:::i;:::-;;;;;;;;36234:272;36456:6;36450:13;36441:6;36437:2;36433:15;36426:38;35992:529;36129:41;;;36119:51;;;:6;:51;;;;36112:58;;;;;35956:620;36560:4;36553:11;;35784:799;;;;;;;:::o;41287:164::-;41391:10;:17;;;;41364:15;:24;41380:7;41364:24;;;;;;;;;;;:44;;;;41419:10;41435:7;41419:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41287:164;:::o;42078:988::-;42344:22;42394:1;42369:22;42386:4;42369:16;:22::i;:::-;:26;;;;:::i;:::-;42344:51;;42406:18;42427:17;:26;42445:7;42427:26;;;;;;;;;;;;42406:47;;42574:14;42560:10;:28;42556:328;;42605:19;42627:12;:18;42640:4;42627:18;;;;;;;;;;;;;;;:34;42646:14;42627:34;;;;;;;;;;;;42605:56;;42711:11;42678:12;:18;42691:4;42678:18;;;;;;;;;;;;;;;:30;42697:10;42678:30;;;;;;;;;;;:44;;;;42828:10;42795:17;:30;42813:11;42795:30;;;;;;;;;;;:43;;;;42590:294;42556:328;42980:17;:26;42998:7;42980:26;;;;;;;;;;;42973:33;;;43024:12;:18;43037:4;43024:18;;;;;;;;;;;;;;;:34;43043:14;43024:34;;;;;;;;;;;43017:41;;;42159:907;;42078:988;;:::o;43361:1079::-;43614:22;43659:1;43639:10;:17;;;;:21;;;;:::i;:::-;43614:46;;43671:18;43692:15;:24;43708:7;43692:24;;;;;;;;;;;;43671:45;;44043:19;44065:10;44076:14;44065:26;;;;;;;;:::i;:::-;;;;;;;;;;44043:48;;44129:11;44104:10;44115;44104:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;44240:10;44209:15;:28;44225:11;44209:28;;;;;;;;;;;:41;;;;44381:15;:24;44397:7;44381:24;;;;;;;;;;;44374:31;;;44416:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;43432:1008;;;43361:1079;:::o;40865:221::-;40950:14;40967:20;40984:2;40967:16;:20::i;:::-;40950:37;;41025:7;40998:12;:16;41011:2;40998:16;;;;;;;;;;;;;;;:24;41015:6;40998:24;;;;;;;;;;;:34;;;;41072:6;41043:17;:26;41061:7;41043:26;;;;;;;;;;;:35;;;;40939:147;40865:221;;:::o;32584:382::-;32678:1;32664:16;;:2;:16;;;;32656:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;32737:16;32745:7;32737;:16::i;:::-;32736:17;32728:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;32799:45;32828:1;32832:2;32836:7;32799:20;:45::i;:::-;32874:1;32857:9;:13;32867:2;32857:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;32905:2;32886:7;:16;32894:7;32886:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;32950:7;32946:2;32925:33;;32942:1;32925:33;;;;;;;;;;;;32584:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;769:::-;865:5;890:81;906:64;963:6;906:64;:::i;:::-;890:81;:::i;:::-;881:90;;991:5;1020:6;1013:5;1006:21;1054:4;1047:5;1043:16;1036:23;;1080:6;1130:3;1122:4;1114:6;1110:17;1105:3;1101:27;1098:36;1095:143;;;1149:79;;:::i;:::-;1095:143;1262:1;1247:238;1272:6;1269:1;1266:13;1247:238;;;1340:3;1369:37;1402:3;1390:10;1369:37;:::i;:::-;1364:3;1357:50;1436:4;1431:3;1427:14;1420:21;;1470:4;1465:3;1461:14;1454:21;;1307:178;1294:1;1291;1287:9;1282:14;;1247:238;;;1251:14;871:620;;769:722;;;;;:::o;1497:410::-;1574:5;1599:65;1615:48;1656:6;1615:48;:::i;:::-;1599:65;:::i;:::-;1590:74;;1687:6;1680:5;1673:21;1725:4;1718:5;1714:16;1763:3;1754:6;1749:3;1745:16;1742:25;1739:112;;;1770:79;;:::i;:::-;1739:112;1860:41;1894:6;1889:3;1884;1860:41;:::i;:::-;1580:327;1497:410;;;;;:::o;1913:412::-;1991:5;2016:66;2032:49;2074:6;2032:49;:::i;:::-;2016:66;:::i;:::-;2007:75;;2105:6;2098:5;2091:21;2143:4;2136:5;2132:16;2181:3;2172:6;2167:3;2163:16;2160:25;2157:112;;;2188:79;;:::i;:::-;2157:112;2278:41;2312:6;2307:3;2302;2278:41;:::i;:::-;1997:328;1913:412;;;;;:::o;2331:139::-;2377:5;2415:6;2402:20;2393:29;;2431:33;2458:5;2431:33;:::i;:::-;2331:139;;;;:::o;2493:370::-;2564:5;2613:3;2606:4;2598:6;2594:17;2590:27;2580:122;;2621:79;;:::i;:::-;2580:122;2738:6;2725:20;2763:94;2853:3;2845:6;2838:4;2830:6;2826:17;2763:94;:::i;:::-;2754:103;;2570:293;2493:370;;;;:::o;2886:::-;2957:5;3006:3;2999:4;2991:6;2987:17;2983:27;2973:122;;3014:79;;:::i;:::-;2973:122;3131:6;3118:20;3156:94;3246:3;3238:6;3231:4;3223:6;3219:17;3156:94;:::i;:::-;3147:103;;2963:293;2886:370;;;;:::o;3262:133::-;3305:5;3343:6;3330:20;3321:29;;3359:30;3383:5;3359:30;:::i;:::-;3262:133;;;;:::o;3401:137::-;3446:5;3484:6;3471:20;3462:29;;3500:32;3526:5;3500:32;:::i;:::-;3401:137;;;;:::o;3544:141::-;3600:5;3631:6;3625:13;3616:22;;3647:32;3673:5;3647:32;:::i;:::-;3544:141;;;;:::o;3704:338::-;3759:5;3808:3;3801:4;3793:6;3789:17;3785:27;3775:122;;3816:79;;:::i;:::-;3775:122;3933:6;3920:20;3958:78;4032:3;4024:6;4017:4;4009:6;4005:17;3958:78;:::i;:::-;3949:87;;3765:277;3704:338;;;;:::o;4062:340::-;4118:5;4167:3;4160:4;4152:6;4148:17;4144:27;4134:122;;4175:79;;:::i;:::-;4134:122;4292:6;4279:20;4317:79;4392:3;4384:6;4377:4;4369:6;4365:17;4317:79;:::i;:::-;4308:88;;4124:278;4062:340;;;;:::o;4408:139::-;4454:5;4492:6;4479:20;4470:29;;4508:33;4535:5;4508:33;:::i;:::-;4408:139;;;;:::o;4553:329::-;4612:6;4661:2;4649:9;4640:7;4636:23;4632:32;4629:119;;;4667:79;;:::i;:::-;4629:119;4787:1;4812:53;4857:7;4848:6;4837:9;4833:22;4812:53;:::i;:::-;4802:63;;4758:117;4553:329;;;;:::o;4888:474::-;4956:6;4964;5013:2;5001:9;4992:7;4988:23;4984:32;4981:119;;;5019:79;;:::i;:::-;4981:119;5139:1;5164:53;5209:7;5200:6;5189:9;5185:22;5164:53;:::i;:::-;5154:63;;5110:117;5266:2;5292:53;5337:7;5328:6;5317:9;5313:22;5292:53;:::i;:::-;5282:63;;5237:118;4888:474;;;;;:::o;5368:619::-;5445:6;5453;5461;5510:2;5498:9;5489:7;5485:23;5481:32;5478:119;;;5516:79;;:::i;:::-;5478:119;5636:1;5661:53;5706:7;5697:6;5686:9;5682:22;5661:53;:::i;:::-;5651:63;;5607:117;5763:2;5789:53;5834:7;5825:6;5814:9;5810:22;5789:53;:::i;:::-;5779:63;;5734:118;5891:2;5917:53;5962:7;5953:6;5942:9;5938:22;5917:53;:::i;:::-;5907:63;;5862:118;5368:619;;;;;:::o;5993:943::-;6088:6;6096;6104;6112;6161:3;6149:9;6140:7;6136:23;6132:33;6129:120;;;6168:79;;:::i;:::-;6129:120;6288:1;6313:53;6358:7;6349:6;6338:9;6334:22;6313:53;:::i;:::-;6303:63;;6259:117;6415:2;6441:53;6486:7;6477:6;6466:9;6462:22;6441:53;:::i;:::-;6431:63;;6386:118;6543:2;6569:53;6614:7;6605:6;6594:9;6590:22;6569:53;:::i;:::-;6559:63;;6514:118;6699:2;6688:9;6684:18;6671:32;6730:18;6722:6;6719:30;6716:117;;;6752:79;;:::i;:::-;6716:117;6857:62;6911:7;6902:6;6891:9;6887:22;6857:62;:::i;:::-;6847:72;;6642:287;5993:943;;;;;;;:::o;6942:468::-;7007:6;7015;7064:2;7052:9;7043:7;7039:23;7035:32;7032:119;;;7070:79;;:::i;:::-;7032:119;7190:1;7215:53;7260:7;7251:6;7240:9;7236:22;7215:53;:::i;:::-;7205:63;;7161:117;7317:2;7343:50;7385:7;7376:6;7365:9;7361:22;7343:50;:::i;:::-;7333:60;;7288:115;6942:468;;;;;:::o;7416:474::-;7484:6;7492;7541:2;7529:9;7520:7;7516:23;7512:32;7509:119;;;7547:79;;:::i;:::-;7509:119;7667:1;7692:53;7737:7;7728:6;7717:9;7713:22;7692:53;:::i;:::-;7682:63;;7638:117;7794:2;7820:53;7865:7;7856:6;7845:9;7841:22;7820:53;:::i;:::-;7810:63;;7765:118;7416:474;;;;;:::o;7896:894::-;8014:6;8022;8071:2;8059:9;8050:7;8046:23;8042:32;8039:119;;;8077:79;;:::i;:::-;8039:119;8225:1;8214:9;8210:17;8197:31;8255:18;8247:6;8244:30;8241:117;;;8277:79;;:::i;:::-;8241:117;8382:78;8452:7;8443:6;8432:9;8428:22;8382:78;:::i;:::-;8372:88;;8168:302;8537:2;8526:9;8522:18;8509:32;8568:18;8560:6;8557:30;8554:117;;;8590:79;;:::i;:::-;8554:117;8695:78;8765:7;8756:6;8745:9;8741:22;8695:78;:::i;:::-;8685:88;;8480:303;7896:894;;;;;:::o;8796:323::-;8852:6;8901:2;8889:9;8880:7;8876:23;8872:32;8869:119;;;8907:79;;:::i;:::-;8869:119;9027:1;9052:50;9094:7;9085:6;9074:9;9070:22;9052:50;:::i;:::-;9042:60;;8998:114;8796:323;;;;:::o;9125:327::-;9183:6;9232:2;9220:9;9211:7;9207:23;9203:32;9200:119;;;9238:79;;:::i;:::-;9200:119;9358:1;9383:52;9427:7;9418:6;9407:9;9403:22;9383:52;:::i;:::-;9373:62;;9329:116;9125:327;;;;:::o;9458:349::-;9527:6;9576:2;9564:9;9555:7;9551:23;9547:32;9544:119;;;9582:79;;:::i;:::-;9544:119;9702:1;9727:63;9782:7;9773:6;9762:9;9758:22;9727:63;:::i;:::-;9717:73;;9673:127;9458:349;;;;:::o;9813:509::-;9882:6;9931:2;9919:9;9910:7;9906:23;9902:32;9899:119;;;9937:79;;:::i;:::-;9899:119;10085:1;10074:9;10070:17;10057:31;10115:18;10107:6;10104:30;10101:117;;;10137:79;;:::i;:::-;10101:117;10242:63;10297:7;10288:6;10277:9;10273:22;10242:63;:::i;:::-;10232:73;;10028:287;9813:509;;;;:::o;10328:329::-;10387:6;10436:2;10424:9;10415:7;10411:23;10407:32;10404:119;;;10442:79;;:::i;:::-;10404:119;10562:1;10587:53;10632:7;10623:6;10612:9;10608:22;10587:53;:::i;:::-;10577:63;;10533:117;10328:329;;;;:::o;10663:179::-;10732:10;10753:46;10795:3;10787:6;10753:46;:::i;:::-;10831:4;10826:3;10822:14;10808:28;;10663:179;;;;:::o;10848:118::-;10935:24;10953:5;10935:24;:::i;:::-;10930:3;10923:37;10848:118;;:::o;11002:732::-;11121:3;11150:54;11198:5;11150:54;:::i;:::-;11220:86;11299:6;11294:3;11220:86;:::i;:::-;11213:93;;11330:56;11380:5;11330:56;:::i;:::-;11409:7;11440:1;11425:284;11450:6;11447:1;11444:13;11425:284;;;11526:6;11520:13;11553:63;11612:3;11597:13;11553:63;:::i;:::-;11546:70;;11639:60;11692:6;11639:60;:::i;:::-;11629:70;;11485:224;11472:1;11469;11465:9;11460:14;;11425:284;;;11429:14;11725:3;11718:10;;11126:608;;;11002:732;;;;:::o;11740:109::-;11821:21;11836:5;11821:21;:::i;:::-;11816:3;11809:34;11740:109;;:::o;11855:360::-;11941:3;11969:38;12001:5;11969:38;:::i;:::-;12023:70;12086:6;12081:3;12023:70;:::i;:::-;12016:77;;12102:52;12147:6;12142:3;12135:4;12128:5;12124:16;12102:52;:::i;:::-;12179:29;12201:6;12179:29;:::i;:::-;12174:3;12170:39;12163:46;;11945:270;11855:360;;;;:::o;12221:364::-;12309:3;12337:39;12370:5;12337:39;:::i;:::-;12392:71;12456:6;12451:3;12392:71;:::i;:::-;12385:78;;12472:52;12517:6;12512:3;12505:4;12498:5;12494:16;12472:52;:::i;:::-;12549:29;12571:6;12549:29;:::i;:::-;12544:3;12540:39;12533:46;;12313:272;12221:364;;;;:::o;12591:377::-;12697:3;12725:39;12758:5;12725:39;:::i;:::-;12780:89;12862:6;12857:3;12780:89;:::i;:::-;12773:96;;12878:52;12923:6;12918:3;12911:4;12904:5;12900:16;12878:52;:::i;:::-;12955:6;12950:3;12946:16;12939:23;;12701:267;12591:377;;;;:::o;12998:845::-;13101:3;13138:5;13132:12;13167:36;13193:9;13167:36;:::i;:::-;13219:89;13301:6;13296:3;13219:89;:::i;:::-;13212:96;;13339:1;13328:9;13324:17;13355:1;13350:137;;;;13501:1;13496:341;;;;13317:520;;13350:137;13434:4;13430:9;13419;13415:25;13410:3;13403:38;13470:6;13465:3;13461:16;13454:23;;13350:137;;13496:341;13563:38;13595:5;13563:38;:::i;:::-;13623:1;13637:154;13651:6;13648:1;13645:13;13637:154;;;13725:7;13719:14;13715:1;13710:3;13706:11;13699:35;13775:1;13766:7;13762:15;13751:26;;13673:4;13670:1;13666:12;13661:17;;13637:154;;;13820:6;13815:3;13811:16;13804:23;;13503:334;;13317:520;;13105:738;;12998:845;;;;:::o;13849:366::-;13991:3;14012:67;14076:2;14071:3;14012:67;:::i;:::-;14005:74;;14088:93;14177:3;14088:93;:::i;:::-;14206:2;14201:3;14197:12;14190:19;;13849:366;;;:::o;14221:::-;14363:3;14384:67;14448:2;14443:3;14384:67;:::i;:::-;14377:74;;14460:93;14549:3;14460:93;:::i;:::-;14578:2;14573:3;14569:12;14562:19;;14221:366;;;:::o;14593:::-;14735:3;14756:67;14820:2;14815:3;14756:67;:::i;:::-;14749:74;;14832:93;14921:3;14832:93;:::i;:::-;14950:2;14945:3;14941:12;14934:19;;14593:366;;;:::o;14965:::-;15107:3;15128:67;15192:2;15187:3;15128:67;:::i;:::-;15121:74;;15204:93;15293:3;15204:93;:::i;:::-;15322:2;15317:3;15313:12;15306:19;;14965:366;;;:::o;15337:::-;15479:3;15500:67;15564:2;15559:3;15500:67;:::i;:::-;15493:74;;15576:93;15665:3;15576:93;:::i;:::-;15694:2;15689:3;15685:12;15678:19;;15337:366;;;:::o;15709:::-;15851:3;15872:67;15936:2;15931:3;15872:67;:::i;:::-;15865:74;;15948:93;16037:3;15948:93;:::i;:::-;16066:2;16061:3;16057:12;16050:19;;15709:366;;;:::o;16081:::-;16223:3;16244:67;16308:2;16303:3;16244:67;:::i;:::-;16237:74;;16320:93;16409:3;16320:93;:::i;:::-;16438:2;16433:3;16429:12;16422:19;;16081:366;;;:::o;16453:::-;16595:3;16616:67;16680:2;16675:3;16616:67;:::i;:::-;16609:74;;16692:93;16781:3;16692:93;:::i;:::-;16810:2;16805:3;16801:12;16794:19;;16453:366;;;:::o;16825:::-;16967:3;16988:67;17052:2;17047:3;16988:67;:::i;:::-;16981:74;;17064:93;17153:3;17064:93;:::i;:::-;17182:2;17177:3;17173:12;17166:19;;16825:366;;;:::o;17197:::-;17339:3;17360:67;17424:2;17419:3;17360:67;:::i;:::-;17353:74;;17436:93;17525:3;17436:93;:::i;:::-;17554:2;17549:3;17545:12;17538:19;;17197:366;;;:::o;17569:::-;17711:3;17732:67;17796:2;17791:3;17732:67;:::i;:::-;17725:74;;17808:93;17897:3;17808:93;:::i;:::-;17926:2;17921:3;17917:12;17910:19;;17569:366;;;:::o;17941:::-;18083:3;18104:67;18168:2;18163:3;18104:67;:::i;:::-;18097:74;;18180:93;18269:3;18180:93;:::i;:::-;18298:2;18293:3;18289:12;18282:19;;17941:366;;;:::o;18313:::-;18455:3;18476:67;18540:2;18535:3;18476:67;:::i;:::-;18469:74;;18552:93;18641:3;18552:93;:::i;:::-;18670:2;18665:3;18661:12;18654:19;;18313:366;;;:::o;18685:::-;18827:3;18848:67;18912:2;18907:3;18848:67;:::i;:::-;18841:74;;18924:93;19013:3;18924:93;:::i;:::-;19042:2;19037:3;19033:12;19026:19;;18685:366;;;:::o;19057:::-;19199:3;19220:67;19284:2;19279:3;19220:67;:::i;:::-;19213:74;;19296:93;19385:3;19296:93;:::i;:::-;19414:2;19409:3;19405:12;19398:19;;19057:366;;;:::o;19429:::-;19571:3;19592:67;19656:2;19651:3;19592:67;:::i;:::-;19585:74;;19668:93;19757:3;19668:93;:::i;:::-;19786:2;19781:3;19777:12;19770:19;;19429:366;;;:::o;19801:::-;19943:3;19964:67;20028:2;20023:3;19964:67;:::i;:::-;19957:74;;20040:93;20129:3;20040:93;:::i;:::-;20158:2;20153:3;20149:12;20142:19;;19801:366;;;:::o;20173:::-;20315:3;20336:67;20400:2;20395:3;20336:67;:::i;:::-;20329:74;;20412:93;20501:3;20412:93;:::i;:::-;20530:2;20525:3;20521:12;20514:19;;20173:366;;;:::o;20545:::-;20687:3;20708:67;20772:2;20767:3;20708:67;:::i;:::-;20701:74;;20784:93;20873:3;20784:93;:::i;:::-;20902:2;20897:3;20893:12;20886:19;;20545:366;;;:::o;20917:::-;21059:3;21080:67;21144:2;21139:3;21080:67;:::i;:::-;21073:74;;21156:93;21245:3;21156:93;:::i;:::-;21274:2;21269:3;21265:12;21258:19;;20917:366;;;:::o;21289:::-;21431:3;21452:67;21516:2;21511:3;21452:67;:::i;:::-;21445:74;;21528:93;21617:3;21528:93;:::i;:::-;21646:2;21641:3;21637:12;21630:19;;21289:366;;;:::o;21661:::-;21803:3;21824:67;21888:2;21883:3;21824:67;:::i;:::-;21817:74;;21900:93;21989:3;21900:93;:::i;:::-;22018:2;22013:3;22009:12;22002:19;;21661:366;;;:::o;22033:::-;22175:3;22196:67;22260:2;22255:3;22196:67;:::i;:::-;22189:74;;22272:93;22361:3;22272:93;:::i;:::-;22390:2;22385:3;22381:12;22374:19;;22033:366;;;:::o;22405:::-;22547:3;22568:67;22632:2;22627:3;22568:67;:::i;:::-;22561:74;;22644:93;22733:3;22644:93;:::i;:::-;22762:2;22757:3;22753:12;22746:19;;22405:366;;;:::o;22777:::-;22919:3;22940:67;23004:2;22999:3;22940:67;:::i;:::-;22933:74;;23016:93;23105:3;23016:93;:::i;:::-;23134:2;23129:3;23125:12;23118:19;;22777:366;;;:::o;23149:108::-;23226:24;23244:5;23226:24;:::i;:::-;23221:3;23214:37;23149:108;;:::o;23263:118::-;23350:24;23368:5;23350:24;:::i;:::-;23345:3;23338:37;23263:118;;:::o;23387:589::-;23612:3;23634:95;23725:3;23716:6;23634:95;:::i;:::-;23627:102;;23746:95;23837:3;23828:6;23746:95;:::i;:::-;23739:102;;23858:92;23946:3;23937:6;23858:92;:::i;:::-;23851:99;;23967:3;23960:10;;23387:589;;;;;;:::o;23982:222::-;24075:4;24113:2;24102:9;24098:18;24090:26;;24126:71;24194:1;24183:9;24179:17;24170:6;24126:71;:::i;:::-;23982:222;;;;:::o;24210:640::-;24405:4;24443:3;24432:9;24428:19;24420:27;;24457:71;24525:1;24514:9;24510:17;24501:6;24457:71;:::i;:::-;24538:72;24606:2;24595:9;24591:18;24582:6;24538:72;:::i;:::-;24620;24688:2;24677:9;24673:18;24664:6;24620:72;:::i;:::-;24739:9;24733:4;24729:20;24724:2;24713:9;24709:18;24702:48;24767:76;24838:4;24829:6;24767:76;:::i;:::-;24759:84;;24210:640;;;;;;;:::o;24856:373::-;24999:4;25037:2;25026:9;25022:18;25014:26;;25086:9;25080:4;25076:20;25072:1;25061:9;25057:17;25050:47;25114:108;25217:4;25208:6;25114:108;:::i;:::-;25106:116;;24856:373;;;;:::o;25235:210::-;25322:4;25360:2;25349:9;25345:18;25337:26;;25373:65;25435:1;25424:9;25420:17;25411:6;25373:65;:::i;:::-;25235:210;;;;:::o;25451:313::-;25564:4;25602:2;25591:9;25587:18;25579:26;;25651:9;25645:4;25641:20;25637:1;25626:9;25622:17;25615:47;25679:78;25752:4;25743:6;25679:78;:::i;:::-;25671:86;;25451:313;;;;:::o;25770:419::-;25936:4;25974:2;25963:9;25959:18;25951:26;;26023:9;26017:4;26013:20;26009:1;25998:9;25994:17;25987:47;26051:131;26177:4;26051:131;:::i;:::-;26043:139;;25770:419;;;:::o;26195:::-;26361:4;26399:2;26388:9;26384:18;26376:26;;26448:9;26442:4;26438:20;26434:1;26423:9;26419:17;26412:47;26476:131;26602:4;26476:131;:::i;:::-;26468:139;;26195:419;;;:::o;26620:::-;26786:4;26824:2;26813:9;26809:18;26801:26;;26873:9;26867:4;26863:20;26859:1;26848:9;26844:17;26837:47;26901:131;27027:4;26901:131;:::i;:::-;26893:139;;26620:419;;;:::o;27045:::-;27211:4;27249:2;27238:9;27234:18;27226:26;;27298:9;27292:4;27288:20;27284:1;27273:9;27269:17;27262:47;27326:131;27452:4;27326:131;:::i;:::-;27318:139;;27045:419;;;:::o;27470:::-;27636:4;27674:2;27663:9;27659:18;27651:26;;27723:9;27717:4;27713:20;27709:1;27698:9;27694:17;27687:47;27751:131;27877:4;27751:131;:::i;:::-;27743:139;;27470:419;;;:::o;27895:::-;28061:4;28099:2;28088:9;28084:18;28076:26;;28148:9;28142:4;28138:20;28134:1;28123:9;28119:17;28112:47;28176:131;28302:4;28176:131;:::i;:::-;28168:139;;27895:419;;;:::o;28320:::-;28486:4;28524:2;28513:9;28509:18;28501:26;;28573:9;28567:4;28563:20;28559:1;28548:9;28544:17;28537:47;28601:131;28727:4;28601:131;:::i;:::-;28593:139;;28320:419;;;:::o;28745:::-;28911:4;28949:2;28938:9;28934:18;28926:26;;28998:9;28992:4;28988:20;28984:1;28973:9;28969:17;28962:47;29026:131;29152:4;29026:131;:::i;:::-;29018:139;;28745:419;;;:::o;29170:::-;29336:4;29374:2;29363:9;29359:18;29351:26;;29423:9;29417:4;29413:20;29409:1;29398:9;29394:17;29387:47;29451:131;29577:4;29451:131;:::i;:::-;29443:139;;29170:419;;;:::o;29595:::-;29761:4;29799:2;29788:9;29784:18;29776:26;;29848:9;29842:4;29838:20;29834:1;29823:9;29819:17;29812:47;29876:131;30002:4;29876:131;:::i;:::-;29868:139;;29595:419;;;:::o;30020:::-;30186:4;30224:2;30213:9;30209:18;30201:26;;30273:9;30267:4;30263:20;30259:1;30248:9;30244:17;30237:47;30301:131;30427:4;30301:131;:::i;:::-;30293:139;;30020:419;;;:::o;30445:::-;30611:4;30649:2;30638:9;30634:18;30626:26;;30698:9;30692:4;30688:20;30684:1;30673:9;30669:17;30662:47;30726:131;30852:4;30726:131;:::i;:::-;30718:139;;30445:419;;;:::o;30870:::-;31036:4;31074:2;31063:9;31059:18;31051:26;;31123:9;31117:4;31113:20;31109:1;31098:9;31094:17;31087:47;31151:131;31277:4;31151:131;:::i;:::-;31143:139;;30870:419;;;:::o;31295:::-;31461:4;31499:2;31488:9;31484:18;31476:26;;31548:9;31542:4;31538:20;31534:1;31523:9;31519:17;31512:47;31576:131;31702:4;31576:131;:::i;:::-;31568:139;;31295:419;;;:::o;31720:::-;31886:4;31924:2;31913:9;31909:18;31901:26;;31973:9;31967:4;31963:20;31959:1;31948:9;31944:17;31937:47;32001:131;32127:4;32001:131;:::i;:::-;31993:139;;31720:419;;;:::o;32145:::-;32311:4;32349:2;32338:9;32334:18;32326:26;;32398:9;32392:4;32388:20;32384:1;32373:9;32369:17;32362:47;32426:131;32552:4;32426:131;:::i;:::-;32418:139;;32145:419;;;:::o;32570:::-;32736:4;32774:2;32763:9;32759:18;32751:26;;32823:9;32817:4;32813:20;32809:1;32798:9;32794:17;32787:47;32851:131;32977:4;32851:131;:::i;:::-;32843:139;;32570:419;;;:::o;32995:::-;33161:4;33199:2;33188:9;33184:18;33176:26;;33248:9;33242:4;33238:20;33234:1;33223:9;33219:17;33212:47;33276:131;33402:4;33276:131;:::i;:::-;33268:139;;32995:419;;;:::o;33420:::-;33586:4;33624:2;33613:9;33609:18;33601:26;;33673:9;33667:4;33663:20;33659:1;33648:9;33644:17;33637:47;33701:131;33827:4;33701:131;:::i;:::-;33693:139;;33420:419;;;:::o;33845:::-;34011:4;34049:2;34038:9;34034:18;34026:26;;34098:9;34092:4;34088:20;34084:1;34073:9;34069:17;34062:47;34126:131;34252:4;34126:131;:::i;:::-;34118:139;;33845:419;;;:::o;34270:::-;34436:4;34474:2;34463:9;34459:18;34451:26;;34523:9;34517:4;34513:20;34509:1;34498:9;34494:17;34487:47;34551:131;34677:4;34551:131;:::i;:::-;34543:139;;34270:419;;;:::o;34695:::-;34861:4;34899:2;34888:9;34884:18;34876:26;;34948:9;34942:4;34938:20;34934:1;34923:9;34919:17;34912:47;34976:131;35102:4;34976:131;:::i;:::-;34968:139;;34695:419;;;:::o;35120:::-;35286:4;35324:2;35313:9;35309:18;35301:26;;35373:9;35367:4;35363:20;35359:1;35348:9;35344:17;35337:47;35401:131;35527:4;35401:131;:::i;:::-;35393:139;;35120:419;;;:::o;35545:::-;35711:4;35749:2;35738:9;35734:18;35726:26;;35798:9;35792:4;35788:20;35784:1;35773:9;35769:17;35762:47;35826:131;35952:4;35826:131;:::i;:::-;35818:139;;35545:419;;;:::o;35970:::-;36136:4;36174:2;36163:9;36159:18;36151:26;;36223:9;36217:4;36213:20;36209:1;36198:9;36194:17;36187:47;36251:131;36377:4;36251:131;:::i;:::-;36243:139;;35970:419;;;:::o;36395:222::-;36488:4;36526:2;36515:9;36511:18;36503:26;;36539:71;36607:1;36596:9;36592:17;36583:6;36539:71;:::i;:::-;36395:222;;;;:::o;36623:129::-;36657:6;36684:20;;:::i;:::-;36674:30;;36713:33;36741:4;36733:6;36713:33;:::i;:::-;36623:129;;;:::o;36758:75::-;36791:6;36824:2;36818:9;36808:19;;36758:75;:::o;36839:311::-;36916:4;37006:18;36998:6;36995:30;36992:56;;;37028:18;;:::i;:::-;36992:56;37078:4;37070:6;37066:17;37058:25;;37138:4;37132;37128:15;37120:23;;36839:311;;;:::o;37156:::-;37233:4;37323:18;37315:6;37312:30;37309:56;;;37345:18;;:::i;:::-;37309:56;37395:4;37387:6;37383:17;37375:25;;37455:4;37449;37445:15;37437:23;;37156:311;;;:::o;37473:307::-;37534:4;37624:18;37616:6;37613:30;37610:56;;;37646:18;;:::i;:::-;37610:56;37684:29;37706:6;37684:29;:::i;:::-;37676:37;;37768:4;37762;37758:15;37750:23;;37473:307;;;:::o;37786:308::-;37848:4;37938:18;37930:6;37927:30;37924:56;;;37960:18;;:::i;:::-;37924:56;37998:29;38020:6;37998:29;:::i;:::-;37990:37;;38082:4;38076;38072:15;38064:23;;37786:308;;;:::o;38100:132::-;38167:4;38190:3;38182:11;;38220:4;38215:3;38211:14;38203:22;;38100:132;;;:::o;38238:141::-;38287:4;38310:3;38302:11;;38333:3;38330:1;38323:14;38367:4;38364:1;38354:18;38346:26;;38238:141;;;:::o;38385:114::-;38452:6;38486:5;38480:12;38470:22;;38385:114;;;:::o;38505:98::-;38556:6;38590:5;38584:12;38574:22;;38505:98;;;:::o;38609:99::-;38661:6;38695:5;38689:12;38679:22;;38609:99;;;:::o;38714:113::-;38784:4;38816;38811:3;38807:14;38799:22;;38714:113;;;:::o;38833:184::-;38932:11;38966:6;38961:3;38954:19;39006:4;39001:3;38997:14;38982:29;;38833:184;;;;:::o;39023:168::-;39106:11;39140:6;39135:3;39128:19;39180:4;39175:3;39171:14;39156:29;;39023:168;;;;:::o;39197:169::-;39281:11;39315:6;39310:3;39303:19;39355:4;39350:3;39346:14;39331:29;;39197:169;;;;:::o;39372:148::-;39474:11;39511:3;39496:18;;39372:148;;;;:::o;39526:305::-;39566:3;39585:20;39603:1;39585:20;:::i;:::-;39580:25;;39619:20;39637:1;39619:20;:::i;:::-;39614:25;;39773:1;39705:66;39701:74;39698:1;39695:81;39692:107;;;39779:18;;:::i;:::-;39692:107;39823:1;39820;39816:9;39809:16;;39526:305;;;;:::o;39837:185::-;39877:1;39894:20;39912:1;39894:20;:::i;:::-;39889:25;;39928:20;39946:1;39928:20;:::i;:::-;39923:25;;39967:1;39957:35;;39972:18;;:::i;:::-;39957:35;40014:1;40011;40007:9;40002:14;;39837:185;;;;:::o;40028:348::-;40068:7;40091:20;40109:1;40091:20;:::i;:::-;40086:25;;40125:20;40143:1;40125:20;:::i;:::-;40120:25;;40313:1;40245:66;40241:74;40238:1;40235:81;40230:1;40223:9;40216:17;40212:105;40209:131;;;40320:18;;:::i;:::-;40209:131;40368:1;40365;40361:9;40350:20;;40028:348;;;;:::o;40382:191::-;40422:4;40442:20;40460:1;40442:20;:::i;:::-;40437:25;;40476:20;40494:1;40476:20;:::i;:::-;40471:25;;40515:1;40512;40509:8;40506:34;;;40520:18;;:::i;:::-;40506:34;40565:1;40562;40558:9;40550:17;;40382:191;;;;:::o;40579:96::-;40616:7;40645:24;40663:5;40645:24;:::i;:::-;40634:35;;40579:96;;;:::o;40681:90::-;40715:7;40758:5;40751:13;40744:21;40733:32;;40681:90;;;:::o;40777:149::-;40813:7;40853:66;40846:5;40842:78;40831:89;;40777:149;;;:::o;40932:126::-;40969:7;41009:42;41002:5;40998:54;40987:65;;40932:126;;;:::o;41064:77::-;41101:7;41130:5;41119:16;;41064:77;;;:::o;41147:154::-;41231:6;41226:3;41221;41208:30;41293:1;41284:6;41279:3;41275:16;41268:27;41147:154;;;:::o;41307:307::-;41375:1;41385:113;41399:6;41396:1;41393:13;41385:113;;;41484:1;41479:3;41475:11;41469:18;41465:1;41460:3;41456:11;41449:39;41421:2;41418:1;41414:10;41409:15;;41385:113;;;41516:6;41513:1;41510:13;41507:101;;;41596:1;41587:6;41582:3;41578:16;41571:27;41507:101;41356:258;41307:307;;;:::o;41620:320::-;41664:6;41701:1;41695:4;41691:12;41681:22;;41748:1;41742:4;41738:12;41769:18;41759:81;;41825:4;41817:6;41813:17;41803:27;;41759:81;41887:2;41879:6;41876:14;41856:18;41853:38;41850:84;;;41906:18;;:::i;:::-;41850:84;41671:269;41620:320;;;:::o;41946:281::-;42029:27;42051:4;42029:27;:::i;:::-;42021:6;42017:40;42159:6;42147:10;42144:22;42123:18;42111:10;42108:34;42105:62;42102:88;;;42170:18;;:::i;:::-;42102:88;42210:10;42206:2;42199:22;41989:238;41946:281;;:::o;42233:233::-;42272:3;42295:24;42313:5;42295:24;:::i;:::-;42286:33;;42341:66;42334:5;42331:77;42328:103;;;42411:18;;:::i;:::-;42328:103;42458:1;42451:5;42447:13;42440:20;;42233:233;;;:::o;42472:176::-;42504:1;42521:20;42539:1;42521:20;:::i;:::-;42516:25;;42555:20;42573:1;42555:20;:::i;:::-;42550:25;;42594:1;42584:35;;42599:18;;:::i;:::-;42584:35;42640:1;42637;42633:9;42628:14;;42472:176;;;;:::o;42654:180::-;42702:77;42699:1;42692:88;42799:4;42796:1;42789:15;42823:4;42820:1;42813:15;42840:180;42888:77;42885:1;42878:88;42985:4;42982:1;42975:15;43009:4;43006:1;42999:15;43026:180;43074:77;43071:1;43064:88;43171:4;43168:1;43161:15;43195:4;43192:1;43185:15;43212:180;43260:77;43257:1;43250:88;43357:4;43354:1;43347:15;43381:4;43378:1;43371:15;43398:180;43446:77;43443:1;43436:88;43543:4;43540:1;43533:15;43567:4;43564:1;43557:15;43584:180;43632:77;43629:1;43622:88;43729:4;43726:1;43719:15;43753:4;43750:1;43743:15;43770:117;43879:1;43876;43869:12;43893:117;44002:1;43999;43992:12;44016:117;44125:1;44122;44115:12;44139:117;44248:1;44245;44238:12;44262:117;44371:1;44368;44361:12;44385:102;44426:6;44477:2;44473:7;44468:2;44461:5;44457:14;44453:28;44443:38;;44385:102;;;:::o;44493:220::-;44633:34;44629:1;44621:6;44617:14;44610:58;44702:3;44697:2;44689:6;44685:15;44678:28;44493:220;:::o;44719:230::-;44859:34;44855:1;44847:6;44843:14;44836:58;44928:13;44923:2;44915:6;44911:15;44904:38;44719:230;:::o;44955:237::-;45095:34;45091:1;45083:6;45079:14;45072:58;45164:20;45159:2;45151:6;45147:15;45140:45;44955:237;:::o;45198:225::-;45338:34;45334:1;45326:6;45322:14;45315:58;45407:8;45402:2;45394:6;45390:15;45383:33;45198:225;:::o;45429:178::-;45569:30;45565:1;45557:6;45553:14;45546:54;45429:178;:::o;45613:166::-;45753:18;45749:1;45741:6;45737:14;45730:42;45613:166;:::o;45785:224::-;45925:34;45921:1;45913:6;45909:14;45902:58;45994:7;45989:2;45981:6;45977:15;45970:32;45785:224;:::o;46015:223::-;46155:34;46151:1;46143:6;46139:14;46132:58;46224:6;46219:2;46211:6;46207:15;46200:31;46015:223;:::o;46244:175::-;46384:27;46380:1;46372:6;46368:14;46361:51;46244:175;:::o;46425:231::-;46565:34;46561:1;46553:6;46549:14;46542:58;46634:14;46629:2;46621:6;46617:15;46610:39;46425:231;:::o;46662:170::-;46802:22;46798:1;46790:6;46786:14;46779:46;46662:170;:::o;46838:243::-;46978:34;46974:1;46966:6;46962:14;46955:58;47047:26;47042:2;47034:6;47030:15;47023:51;46838:243;:::o;47087:229::-;47227:34;47223:1;47215:6;47211:14;47204:58;47296:12;47291:2;47283:6;47279:15;47272:37;47087:229;:::o;47322:228::-;47462:34;47458:1;47450:6;47446:14;47439:58;47531:11;47526:2;47518:6;47514:15;47507:36;47322:228;:::o;47556:182::-;47696:34;47692:1;47684:6;47680:14;47673:58;47556:182;:::o;47744:231::-;47884:34;47880:1;47872:6;47868:14;47861:58;47953:14;47948:2;47940:6;47936:15;47929:39;47744:231;:::o;47981:182::-;48121:34;48117:1;48109:6;48105:14;48098:58;47981:182;:::o;48169:228::-;48309:34;48305:1;48297:6;48293:14;48286:58;48378:11;48373:2;48365:6;48361:15;48354:36;48169:228;:::o;48403:234::-;48543:34;48539:1;48531:6;48527:14;48520:58;48612:17;48607:2;48599:6;48595:15;48588:42;48403:234;:::o;48643:220::-;48783:34;48779:1;48771:6;48767:14;48760:58;48852:3;48847:2;48839:6;48835:15;48828:28;48643:220;:::o;48869:236::-;49009:34;49005:1;48997:6;48993:14;48986:58;49078:19;49073:2;49065:6;49061:15;49054:44;48869:236;:::o;49111:231::-;49251:34;49247:1;49239:6;49235:14;49228:58;49320:14;49315:2;49307:6;49303:15;49296:39;49111:231;:::o;49348:165::-;49488:17;49484:1;49476:6;49472:14;49465:41;49348:165;:::o;49519:229::-;49659:34;49655:1;49647:6;49643:14;49636:58;49728:12;49723:2;49715:6;49711:15;49704:37;49519:229;:::o;49754:166::-;49894:18;49890:1;49882:6;49878:14;49871:42;49754:166;:::o;49926:122::-;49999:24;50017:5;49999:24;:::i;:::-;49992:5;49989:35;49979:63;;50038:1;50035;50028:12;49979:63;49926:122;:::o;50054:116::-;50124:21;50139:5;50124:21;:::i;:::-;50117:5;50114:32;50104:60;;50160:1;50157;50150:12;50104:60;50054:116;:::o;50176:120::-;50248:23;50265:5;50248:23;:::i;:::-;50241:5;50238:34;50228:62;;50286:1;50283;50276:12;50228:62;50176:120;:::o;50302:122::-;50375:24;50393:5;50375:24;:::i;:::-;50368:5;50365:35;50355:63;;50414:1;50411;50404:12;50355:63;50302:122;:::o

Swarm Source

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