ETH Price: $2,740.40 (-0.45%)

Token

LAZYZOMBIE (LZZB)
 

Overview

Max Total Supply

1,000 LZZB

Holders

723

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 LZZB
0x3584a1e9efa54aae53eddd9f021b6643ebbd6f8b
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:
lazyzombienft

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-10-14
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        _requireMinted(tokenId);

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

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

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

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

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/lazyzombienft.sol

//SPDX-License-Identifier: MIT

//                                                                                                    
//@@@        @@@@@@   @@@@@@@@  @@@ @@@     @@@@@@@@   @@@@@@   @@@@@@@@@@   @@@@@@@   @@@  @@@@@@@@  
//@@@       @@@@@@@@  @@@@@@@@  @@@ @@@     @@@@@@@@  @@@@@@@@  @@@@@@@@@@@  @@@@@@@@  @@@  @@@@@@@@  
//@@!       @@!  @@@       @@!  @@! !@@          @@!  @@!  @@@  @@! @@! @@!  @@!  @@@  @@!  @@!       
//!@!       !@!  @!@      !@!   !@! @!!         !@!   !@!  @!@  !@! !@! !@!  !@   @!@  !@!  !@!       
//@!!       @!@!@!@!     @!!     !@!@!         @!!    @!@  !@!  @!! !!@ @!@  @!@!@!@   !!@  @!!!:!    
//!!!       !!!@!!!!    !!!       @!!!        !!!     !@!  !!!  !@!   ! !@!  !!!@!!!!  !!!  !!!!!:    
//!!:       !!:  !!!   !!:        !!:        !!:      !!:  !!!  !!:     !!:  !!:  !!!  !!:  !!:       
// :!:      :!:  !:!  :!:         :!:       :!:       :!:  !:!  :!:     :!:  :!:  !:!  :!:  :!:       
// :: ::::  ::   :::   :: ::::     ::        :: ::::  ::::: ::  :::     ::    :: ::::   ::   :: ::::  
//: :: : :   :   : :  : :: : :     :        : :: : :   : :  :    :      :    :: : ::   :    : :: ::   
 
                                                                                                    

pragma solidity ^0.8.7;



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

    string public baseURI;
    string public baseExtension = ".json";
    uint256 public cost = 0 ether;
    uint256 public presaleCost = 0 ether;
    uint256 public maxSupply = 1000;
    uint256 public maxMintAmount = 1;
    bool public paused = false;
    mapping(address => bool) public whitelisted;
    mapping(address => bool) public presaleWallets;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI
    ) ERC721(_name, _symbol) {
        setBaseURI(_initBaseURI);
        mint(msg.sender, 1);
    }

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

    // public
    function mint(address _to, uint256 _mintAmount) public payable {
        uint256 supply = totalSupply();
        require(!paused);
        require(_mintAmount > 0);
        require(_mintAmount <= maxMintAmount);
        require(supply + _mintAmount <= maxSupply);

        if (msg.sender != owner()) {
            if (whitelisted[msg.sender] != true) {
                if (presaleWallets[msg.sender] != true) {
                    //general public
                    require(msg.value >= cost * _mintAmount);
                } else {
                    //presale
                    require(msg.value >= presaleCost * _mintAmount);
                }
            }
        }

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

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

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

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

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

    function setPresaleCost(uint256 _newCost) public onlyOwner {
        presaleCost = _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 whitelistUser(address _user) public onlyOwner {
        whitelisted[_user] = true;
    }

    function removeWhitelistUser(address _user) public onlyOwner {
        whitelisted[_user] = false;
    }

    function addPresaleUser(address _user) public onlyOwner {
        presaleWallets[_user] = true;
    }

    function add100PresaleUsers(address[100] memory _users) public onlyOwner {
        for (uint256 i = 0; i < 2; i++) {
            presaleWallets[_users[i]] = true;
        }
    }

    function removePresaleUser(address _user) public onlyOwner {
        presaleWallets[_user] = false;
    }

    function withdraw() public payable onlyOwner {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success);
    }
}

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[100]","name":"_users","type":"address[100]"}],"name":"add100PresaleUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"addPresaleUser","outputs":[],"stateMutability":"nonpayable","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":[],"name":"presaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleWallets","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"removePresaleUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"removeWhitelistUser","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":"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":"_newCost","type":"uint256"}],"name":"setPresaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","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":[{"internalType":"address","name":"_user","type":"address"}],"name":"whitelistUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c90805190602001906200005192919062000ef7565b506000600d556000600e556103e8600f5560016010556000601160006101000a81548160ff0219169083151502179055503480156200008f57600080fd5b5060405162005ba238038062005ba28339818101604052810190620000b591906200106e565b82828160009080519060200190620000cf92919062000ef7565b508060019080519060200190620000e892919062000ef7565b5050506200010b620000ff6200013860201b60201c565b6200014060201b60201c565b6200011c816200020660201b60201c565b6200012f3360016200023260201b60201c565b5050506200186d565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002166200041e60201b60201c565b80600b90805190602001906200022e92919062000ef7565b5050565b600062000244620004af60201b60201c565b9050601160009054906101000a900460ff16156200026157600080fd5b600082116200026f57600080fd5b6010548211156200027f57600080fd5b600f548282620002909190620013d7565b11156200029c57600080fd5b620002ac620004bc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614620003d45760011515601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514620003d35760011515601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514620003b45781600d54620003a1919062001434565b341015620003ae57600080fd5b620003d2565b81600e54620003c4919062001434565b341015620003d157600080fd5b5b5b5b6000600190505b828111620004185762000402848284620003f69190620013d7565b620004e660201b60201c565b80806200040f90620015dc565b915050620003db565b50505050565b6200042e6200013860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000454620004bc60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620004ad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004a49062001329565b60405180910390fd5b565b6000600880549050905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620005088282604051806020016040528060008152506200050c60201b60201c565b5050565b6200051e83836200057a60201b60201c565b6200053360008484846200077460201b60201c565b62000575576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200056c90620012a1565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620005ed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005e49062001307565b60405180910390fd5b620005fe816200092e60201b60201c565b1562000641576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200063890620012c3565b60405180910390fd5b62000655600083836200099a60201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620006a79190620013d7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4620007706000838362000ae160201b60201c565b5050565b6000620007a28473ffffffffffffffffffffffffffffffffffffffff1662000ae660201b6200197e1760201c565b1562000921578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620007d46200013860201b60201c565b8786866040518563ffffffff1660e01b8152600401620007f894939291906200124d565b602060405180830381600087803b1580156200081357600080fd5b505af19250505080156200084757506040513d601f19601f820116820180604052508101906200084491906200103c565b60015b620008d0573d80600081146200087a576040519150601f19603f3d011682016040523d82523d6000602084013e6200087f565b606091505b50600081511415620008c8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008bf90620012a1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000926565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b620009b283838362000b0960201b620019a11760201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415620009ff57620009f98162000b0e60201b60201c565b62000a47565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161462000a465762000a45838262000b5760201b60201c565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a945762000a8e8162000cd460201b60201c565b62000adc565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000adb5762000ada828262000db060201b60201c565b5b5b505050565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600162000b718462000e3c60201b620013fc1760201c565b62000b7d919062001495565b905060006007600084815260200190815260200160002054905081811462000c63576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905062000cea919062001495565b905060006009600084815260200190815260200160002054905060006008838154811062000d1d5762000d1c620016b7565b5b90600052602060002001549050806008838154811062000d425762000d41620016b7565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548062000d945762000d9362001688565b5b6001900381819060005260206000200160009055905550505050565b600062000dc88362000e3c60201b620013fc1760201c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000eb0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ea790620012e5565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b82805462000f059062001570565b90600052602060002090601f01602090048101928262000f29576000855562000f75565b82601f1062000f4457805160ff191683800117855562000f75565b8280016001018555821562000f75579182015b8281111562000f7457825182559160200191906001019062000f57565b5b50905062000f84919062000f88565b5090565b5b8082111562000fa357600081600090555060010162000f89565b5090565b600062000fbe62000fb88462001374565b6200134b565b90508281526020810184848401111562000fdd5762000fdc6200171a565b5b62000fea8482856200153a565b509392505050565b600081519050620010038162001853565b92915050565b600082601f83011262001021576200102062001715565b5b81516200103384826020860162000fa7565b91505092915050565b60006020828403121562001055576200105462001724565b5b6000620010658482850162000ff2565b91505092915050565b6000806000606084860312156200108a576200108962001724565b5b600084015167ffffffffffffffff811115620010ab57620010aa6200171f565b5b620010b98682870162001009565b935050602084015167ffffffffffffffff811115620010dd57620010dc6200171f565b5b620010eb8682870162001009565b925050604084015167ffffffffffffffff8111156200110f576200110e6200171f565b5b6200111d8682870162001009565b9150509250925092565b6200113281620014d0565b82525050565b60006200114582620013aa565b620011518185620013b5565b9350620011638185602086016200153a565b6200116e8162001729565b840191505092915050565b600062001188603283620013c6565b915062001195826200173a565b604082019050919050565b6000620011af601c83620013c6565b9150620011bc8262001789565b602082019050919050565b6000620011d6602983620013c6565b9150620011e382620017b2565b604082019050919050565b6000620011fd602083620013c6565b91506200120a8262001801565b602082019050919050565b600062001224602083620013c6565b915062001231826200182a565b602082019050919050565b620012478162001530565b82525050565b600060808201905062001264600083018762001127565b62001273602083018662001127565b6200128260408301856200123c565b818103606083015262001296818462001138565b905095945050505050565b60006020820190508181036000830152620012bc8162001179565b9050919050565b60006020820190508181036000830152620012de81620011a0565b9050919050565b600060208201905081810360008301526200130081620011c7565b9050919050565b600060208201905081810360008301526200132281620011ee565b9050919050565b60006020820190508181036000830152620013448162001215565b9050919050565b6000620013576200136a565b9050620013658282620015a6565b919050565b6000604051905090565b600067ffffffffffffffff821115620013925762001391620016e6565b5b6200139d8262001729565b9050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000620013e48262001530565b9150620013f18362001530565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200142957620014286200162a565b5b828201905092915050565b6000620014418262001530565b91506200144e8362001530565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200148a57620014896200162a565b5b828202905092915050565b6000620014a28262001530565b9150620014af8362001530565b925082821015620014c557620014c46200162a565b5b828203905092915050565b6000620014dd8262001510565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200155a5780820151818401526020810190506200153d565b838111156200156a576000848401525b50505050565b600060028204905060018216806200158957607f821691505b60208210811415620015a0576200159f62001659565b5b50919050565b620015b18262001729565b810181811067ffffffffffffffff82111715620015d357620015d2620016e6565b5b80604052505050565b6000620015e98262001530565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156200161f576200161e6200162a565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6200185e81620014e4565b81146200186a57600080fd5b50565b614325806200187d6000396000f3fe6080604052600436106102515760003560e01c806355f804b311610139578063a22cb465116100b6578063d5abeb011161007a578063d5abeb01146108a4578063d936547e146108cf578063da3ef23f1461090c578063e985e9c514610935578063ed931e1714610972578063f2fde38b1461099b57610251565b8063a22cb465146107c1578063b2f3e85e146107ea578063b88d4fde14610813578063c66828621461083c578063c87b56dd1461086757610251565b8063715018a6116100fd578063715018a6146107025780637f00c7a6146107195780638da5cb5b146107425780638fdcf9421461076d57806395d89b411461079657610251565b806355f804b3146106095780635c975abb146106325780636352211e1461065d5780636c0360eb1461069a57806370a08231146106c557610251565b80632f745c59116101d257806342842e0e1161019657806342842e0e146104eb578063438b63001461051457806344a0d68a146105515780634a4c560d1461057a5780634f6ccce7146105a3578063546857c7146105e057610251565b80632f745c591461042257806330b2264e1461045f57806330cc7ae01461049c5780633ccfd60b146104c557806340c10f19146104cf57610251565b806313faede61161021957806313faede61461034d57806318160ddd14610378578063239c70ae146103a357806323b872dd146103ce5780632a23d07d146103f757610251565b806301ffc9a71461025657806302329a291461029357806306fdde03146102bc578063081812fc146102e7578063095ea7b314610324575b600080fd5b34801561026257600080fd5b5061027d6004803603810190610278919061310b565b6109c4565b60405161028a91906136d1565b60405180910390f35b34801561029f57600080fd5b506102ba60048036038101906102b591906130de565b610a3e565b005b3480156102c857600080fd5b506102d1610a63565b6040516102de91906136ec565b60405180910390f35b3480156102f357600080fd5b5061030e600480360381019061030991906131ae565b610af5565b60405161031b9190613648565b60405180910390f35b34801561033057600080fd5b5061034b60048036038101906103469190613070565b610b3b565b005b34801561035957600080fd5b50610362610c53565b60405161036f919061390e565b60405180910390f35b34801561038457600080fd5b5061038d610c59565b60405161039a919061390e565b60405180910390f35b3480156103af57600080fd5b506103b8610c66565b6040516103c5919061390e565b60405180910390f35b3480156103da57600080fd5b506103f560048036038101906103f09190612f5a565b610c6c565b005b34801561040357600080fd5b5061040c610ccc565b604051610419919061390e565b60405180910390f35b34801561042e57600080fd5b5061044960048036038101906104449190613070565b610cd2565b604051610456919061390e565b60405180910390f35b34801561046b57600080fd5b5061048660048036038101906104819190612eed565b610d77565b60405161049391906136d1565b60405180910390f35b3480156104a857600080fd5b506104c360048036038101906104be9190612eed565b610d97565b005b6104cd610dfa565b005b6104e960048036038101906104e49190613070565b610e7b565b005b3480156104f757600080fd5b50610512600480360381019061050d9190612f5a565b611039565b005b34801561052057600080fd5b5061053b60048036038101906105369190612eed565b611059565b60405161054891906136af565b60405180910390f35b34801561055d57600080fd5b50610578600480360381019061057391906131ae565b611107565b005b34801561058657600080fd5b506105a1600480360381019061059c9190612eed565b611119565b005b3480156105af57600080fd5b506105ca60048036038101906105c591906131ae565b61117c565b6040516105d7919061390e565b60405180910390f35b3480156105ec57600080fd5b50610607600480360381019061060291906130b0565b6111ed565b005b34801561061557600080fd5b50610630600480360381019061062b9190613165565b611287565b005b34801561063e57600080fd5b506106476112a9565b60405161065491906136d1565b60405180910390f35b34801561066957600080fd5b50610684600480360381019061067f91906131ae565b6112bc565b6040516106919190613648565b60405180910390f35b3480156106a657600080fd5b506106af61136e565b6040516106bc91906136ec565b60405180910390f35b3480156106d157600080fd5b506106ec60048036038101906106e79190612eed565b6113fc565b6040516106f9919061390e565b60405180910390f35b34801561070e57600080fd5b506107176114b4565b005b34801561072557600080fd5b50610740600480360381019061073b91906131ae565b6114c8565b005b34801561074e57600080fd5b506107576114da565b6040516107649190613648565b60405180910390f35b34801561077957600080fd5b50610794600480360381019061078f91906131ae565b611504565b005b3480156107a257600080fd5b506107ab611516565b6040516107b891906136ec565b60405180910390f35b3480156107cd57600080fd5b506107e860048036038101906107e39190613030565b6115a8565b005b3480156107f657600080fd5b50610811600480360381019061080c9190612eed565b6115be565b005b34801561081f57600080fd5b5061083a60048036038101906108359190612fad565b611621565b005b34801561084857600080fd5b50610851611683565b60405161085e91906136ec565b60405180910390f35b34801561087357600080fd5b5061088e600480360381019061088991906131ae565b611711565b60405161089b91906136ec565b60405180910390f35b3480156108b057600080fd5b506108b96117bb565b6040516108c6919061390e565b60405180910390f35b3480156108db57600080fd5b506108f660048036038101906108f19190612eed565b6117c1565b60405161090391906136d1565b60405180910390f35b34801561091857600080fd5b50610933600480360381019061092e9190613165565b6117e1565b005b34801561094157600080fd5b5061095c60048036038101906109579190612f1a565b611803565b60405161096991906136d1565b60405180910390f35b34801561097e57600080fd5b5061099960048036038101906109949190612eed565b611897565b005b3480156109a757600080fd5b506109c260048036038101906109bd9190612eed565b6118fa565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a375750610a36826119a6565b5b9050919050565b610a46611a88565b80601160006101000a81548160ff02191690831515021790555050565b606060008054610a7290613c3d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9e90613c3d565b8015610aeb5780601f10610ac057610100808354040283529160200191610aeb565b820191906000526020600020905b815481529060010190602001808311610ace57829003601f168201915b5050505050905090565b6000610b0082611b06565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b46826112bc565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bae906138ae565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bd6611b51565b73ffffffffffffffffffffffffffffffffffffffff161480610c055750610c0481610bff611b51565b611803565b5b610c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3b9061380e565b60405180910390fd5b610c4e8383611b59565b505050565b600d5481565b6000600880549050905090565b60105481565b610c7d610c77611b51565b82611c12565b610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb3906138ee565b60405180910390fd5b610cc7838383611ca7565b505050565b600e5481565b6000610cdd836113fc565b8210610d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d159061370e565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60136020528060005260406000206000915054906101000a900460ff1681565b610d9f611a88565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610e02611a88565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610e2890613633565b60006040518083038185875af1925050503d8060008114610e65576040519150601f19603f3d011682016040523d82523d6000602084013e610e6a565b606091505b5050905080610e7857600080fd5b50565b6000610e85610c59565b9050601160009054906101000a900460ff1615610ea157600080fd5b60008211610eae57600080fd5b601054821115610ebd57600080fd5b600f548282610ecc9190613a72565b1115610ed757600080fd5b610edf6114da565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ffd5760011515601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610ffc5760011515601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610fe05781600d54610fcf9190613af9565b341015610fdb57600080fd5b610ffb565b81600e54610fee9190613af9565b341015610ffa57600080fd5b5b5b5b6000600190505b8281116110335761102084828461101b9190613a72565b611f0e565b808061102b90613ca0565b915050611004565b50505050565b61105483838360405180602001604052806000815250611621565b505050565b60606000611066836113fc565b905060008167ffffffffffffffff81111561108457611083613e05565b5b6040519080825280602002602001820160405280156110b25781602001602082028036833780820191505090505b50905060005b828110156110fc576110ca8582610cd2565b8282815181106110dd576110dc613dd6565b5b60200260200101818152505080806110f490613ca0565b9150506110b8565b508092505050919050565b61110f611a88565b80600d8190555050565b611121611a88565b6001601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000611186610c59565b82106111c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111be906138ce565b60405180910390fd5b600882815481106111db576111da613dd6565b5b90600052602060002001549050919050565b6111f5611a88565b60005b60028110156112835760016013600084846064811061121a57611219613dd6565b5b602002015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061127b90613ca0565b9150506111f8565b5050565b61128f611a88565b80600b90805190602001906112a5929190612c6f565b5050565b601160009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135c9061388e565b60405180910390fd5b80915050919050565b600b805461137b90613c3d565b80601f01602080910402602001604051908101604052809291908181526020018280546113a790613c3d565b80156113f45780601f106113c9576101008083540402835291602001916113f4565b820191906000526020600020905b8154815290600101906020018083116113d757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561146d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611464906137ee565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114bc611a88565b6114c66000611f2c565b565b6114d0611a88565b8060108190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61150c611a88565b80600e8190555050565b60606001805461152590613c3d565b80601f016020809104026020016040519081016040528092919081815260200182805461155190613c3d565b801561159e5780601f106115735761010080835404028352916020019161159e565b820191906000526020600020905b81548152906001019060200180831161158157829003601f168201915b5050505050905090565b6115ba6115b3611b51565b8383611ff2565b5050565b6115c6611a88565b6001601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61163261162c611b51565b83611c12565b611671576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611668906138ee565b60405180910390fd5b61167d8484848461215f565b50505050565b600c805461169090613c3d565b80601f01602080910402602001604051908101604052809291908181526020018280546116bc90613c3d565b80156117095780601f106116de57610100808354040283529160200191611709565b820191906000526020600020905b8154815290600101906020018083116116ec57829003601f168201915b505050505081565b606061171c826121bb565b61175b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117529061386e565b60405180910390fd5b6000611765612227565b9050600081511161178557604051806020016040528060008152506117b3565b8061178f846122b9565b600c6040516020016117a393929190613602565b6040516020818303038152906040525b915050919050565b600f5481565b60126020528060005260406000206000915054906101000a900460ff1681565b6117e9611a88565b80600c90805190602001906117ff929190612c6f565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61189f611a88565b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b611902611a88565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611972576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119699061374e565b60405180910390fd5b61197b81611f2c565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611a7157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a815750611a808261241a565b5b9050919050565b611a90611b51565b73ffffffffffffffffffffffffffffffffffffffff16611aae6114da565b73ffffffffffffffffffffffffffffffffffffffff1614611b04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afb9061384e565b60405180910390fd5b565b611b0f816121bb565b611b4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b459061388e565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611bcc836112bc565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611c1e836112bc565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c605750611c5f8185611803565b5b80611c9e57508373ffffffffffffffffffffffffffffffffffffffff16611c8684610af5565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611cc7826112bc565b73ffffffffffffffffffffffffffffffffffffffff1614611d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d149061376e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d84906137ae565b60405180910390fd5b611d98838383612484565b611da3600082611b59565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611df39190613b53565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e4a9190613a72565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f09838383612598565b505050565b611f2882826040518060200160405280600081525061259d565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612061576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612058906137ce565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161215291906136d1565b60405180910390a3505050565b61216a848484611ca7565b612176848484846125f8565b6121b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ac9061372e565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600b805461223690613c3d565b80601f016020809104026020016040519081016040528092919081815260200182805461226290613c3d565b80156122af5780601f10612284576101008083540402835291602001916122af565b820191906000526020600020905b81548152906001019060200180831161229257829003601f168201915b5050505050905090565b60606000821415612301576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612415565b600082905060005b6000821461233357808061231c90613ca0565b915050600a8261232c9190613ac8565b9150612309565b60008167ffffffffffffffff81111561234f5761234e613e05565b5b6040519080825280601f01601f1916602001820160405280156123815781602001600182028036833780820191505090505b5090505b6000851461240e5760018261239a9190613b53565b9150600a856123a99190613ce9565b60306123b59190613a72565b60f81b8183815181106123cb576123ca613dd6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124079190613ac8565b9450612385565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61248f8383836119a1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124d2576124cd8161278f565b612511565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146125105761250f83826127d8565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125545761254f81612945565b612593565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612592576125918282612a16565b5b5b505050565b505050565b6125a78383612a95565b6125b460008484846125f8565b6125f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ea9061372e565b60405180910390fd5b505050565b60006126198473ffffffffffffffffffffffffffffffffffffffff1661197e565b15612782578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612642611b51565b8786866040518563ffffffff1660e01b81526004016126649493929190613663565b602060405180830381600087803b15801561267e57600080fd5b505af19250505080156126af57506040513d601f19601f820116820180604052508101906126ac9190613138565b60015b612732573d80600081146126df576040519150601f19603f3d011682016040523d82523d6000602084013e6126e4565b606091505b5060008151141561272a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127219061372e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612787565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016127e5846113fc565b6127ef9190613b53565b90506000600760008481526020019081526020016000205490508181146128d4576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506129599190613b53565b905060006009600084815260200190815260200160002054905060006008838154811061298957612988613dd6565b5b9060005260206000200154905080600883815481106129ab576129aa613dd6565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806129fa576129f9613da7565b5b6001900381819060005260206000200160009055905550505050565b6000612a21836113fc565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612afc9061382e565b60405180910390fd5b612b0e816121bb565b15612b4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b459061378e565b60405180910390fd5b612b5a60008383612484565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612baa9190613a72565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c6b60008383612598565b5050565b828054612c7b90613c3d565b90600052602060002090601f016020900481019282612c9d5760008555612ce4565b82601f10612cb657805160ff1916838001178555612ce4565b82800160010185558215612ce4579182015b82811115612ce3578251825591602001919060010190612cc8565b5b509050612cf19190612cf5565b5090565b5b80821115612d0e576000816000905550600101612cf6565b5090565b6000612d25612d208461394e565b613929565b90508082856020860282011115612d3f57612d3e613e39565b5b60005b85811015612d6f5781612d558882612dfd565b845260208401935060208301925050600181019050612d42565b5050509392505050565b6000612d8c612d8784613974565b613929565b905082815260208101848484011115612da857612da7613e3e565b5b612db3848285613bfb565b509392505050565b6000612dce612dc9846139a5565b613929565b905082815260208101848484011115612dea57612de9613e3e565b5b612df5848285613bfb565b509392505050565b600081359050612e0c81614293565b92915050565b600082601f830112612e2757612e26613e34565b5b6064612e34848285612d12565b91505092915050565b600081359050612e4c816142aa565b92915050565b600081359050612e61816142c1565b92915050565b600081519050612e76816142c1565b92915050565b600082601f830112612e9157612e90613e34565b5b8135612ea1848260208601612d79565b91505092915050565b600082601f830112612ebf57612ebe613e34565b5b8135612ecf848260208601612dbb565b91505092915050565b600081359050612ee7816142d8565b92915050565b600060208284031215612f0357612f02613e48565b5b6000612f1184828501612dfd565b91505092915050565b60008060408385031215612f3157612f30613e48565b5b6000612f3f85828601612dfd565b9250506020612f5085828601612dfd565b9150509250929050565b600080600060608486031215612f7357612f72613e48565b5b6000612f8186828701612dfd565b9350506020612f9286828701612dfd565b9250506040612fa386828701612ed8565b9150509250925092565b60008060008060808587031215612fc757612fc6613e48565b5b6000612fd587828801612dfd565b9450506020612fe687828801612dfd565b9350506040612ff787828801612ed8565b925050606085013567ffffffffffffffff81111561301857613017613e43565b5b61302487828801612e7c565b91505092959194509250565b6000806040838503121561304757613046613e48565b5b600061305585828601612dfd565b925050602061306685828601612e3d565b9150509250929050565b6000806040838503121561308757613086613e48565b5b600061309585828601612dfd565b92505060206130a685828601612ed8565b9150509250929050565b6000610c8082840312156130c7576130c6613e48565b5b60006130d584828501612e12565b91505092915050565b6000602082840312156130f4576130f3613e48565b5b600061310284828501612e3d565b91505092915050565b60006020828403121561312157613120613e48565b5b600061312f84828501612e52565b91505092915050565b60006020828403121561314e5761314d613e48565b5b600061315c84828501612e67565b91505092915050565b60006020828403121561317b5761317a613e48565b5b600082013567ffffffffffffffff81111561319957613198613e43565b5b6131a584828501612eaa565b91505092915050565b6000602082840312156131c4576131c3613e48565b5b60006131d284828501612ed8565b91505092915050565b60006131e783836135e4565b60208301905092915050565b6131fc81613b87565b82525050565b600061320d826139fb565b6132178185613a29565b9350613222836139d6565b8060005b8381101561325357815161323a88826131db565b975061324583613a1c565b925050600181019050613226565b5085935050505092915050565b61326981613b99565b82525050565b600061327a82613a06565b6132848185613a3a565b9350613294818560208601613c0a565b61329d81613e4d565b840191505092915050565b60006132b382613a11565b6132bd8185613a56565b93506132cd818560208601613c0a565b6132d681613e4d565b840191505092915050565b60006132ec82613a11565b6132f68185613a67565b9350613306818560208601613c0a565b80840191505092915050565b6000815461331f81613c3d565b6133298186613a67565b94506001821660008114613344576001811461335557613388565b60ff19831686528186019350613388565b61335e856139e6565b60005b8381101561338057815481890152600182019150602081019050613361565b838801955050505b50505092915050565b600061339e602b83613a56565b91506133a982613e5e565b604082019050919050565b60006133c1603283613a56565b91506133cc82613ead565b604082019050919050565b60006133e4602683613a56565b91506133ef82613efc565b604082019050919050565b6000613407602583613a56565b915061341282613f4b565b604082019050919050565b600061342a601c83613a56565b915061343582613f9a565b602082019050919050565b600061344d602483613a56565b915061345882613fc3565b604082019050919050565b6000613470601983613a56565b915061347b82614012565b602082019050919050565b6000613493602983613a56565b915061349e8261403b565b604082019050919050565b60006134b6603e83613a56565b91506134c18261408a565b604082019050919050565b60006134d9602083613a56565b91506134e4826140d9565b602082019050919050565b60006134fc602083613a56565b915061350782614102565b602082019050919050565b600061351f602f83613a56565b915061352a8261412b565b604082019050919050565b6000613542601883613a56565b915061354d8261417a565b602082019050919050565b6000613565602183613a56565b9150613570826141a3565b604082019050919050565b6000613588600083613a4b565b9150613593826141f2565b600082019050919050565b60006135ab602c83613a56565b91506135b6826141f5565b604082019050919050565b60006135ce602e83613a56565b91506135d982614244565b604082019050919050565b6135ed81613bf1565b82525050565b6135fc81613bf1565b82525050565b600061360e82866132e1565b915061361a82856132e1565b91506136268284613312565b9150819050949350505050565b600061363e8261357b565b9150819050919050565b600060208201905061365d60008301846131f3565b92915050565b600060808201905061367860008301876131f3565b61368560208301866131f3565b61369260408301856135f3565b81810360608301526136a4818461326f565b905095945050505050565b600060208201905081810360008301526136c98184613202565b905092915050565b60006020820190506136e66000830184613260565b92915050565b6000602082019050818103600083015261370681846132a8565b905092915050565b6000602082019050818103600083015261372781613391565b9050919050565b60006020820190508181036000830152613747816133b4565b9050919050565b60006020820190508181036000830152613767816133d7565b9050919050565b60006020820190508181036000830152613787816133fa565b9050919050565b600060208201905081810360008301526137a78161341d565b9050919050565b600060208201905081810360008301526137c781613440565b9050919050565b600060208201905081810360008301526137e781613463565b9050919050565b6000602082019050818103600083015261380781613486565b9050919050565b60006020820190508181036000830152613827816134a9565b9050919050565b60006020820190508181036000830152613847816134cc565b9050919050565b60006020820190508181036000830152613867816134ef565b9050919050565b6000602082019050818103600083015261388781613512565b9050919050565b600060208201905081810360008301526138a781613535565b9050919050565b600060208201905081810360008301526138c781613558565b9050919050565b600060208201905081810360008301526138e78161359e565b9050919050565b60006020820190508181036000830152613907816135c1565b9050919050565b600060208201905061392360008301846135f3565b92915050565b6000613933613944565b905061393f8282613c6f565b919050565b6000604051905090565b600067ffffffffffffffff82111561396957613968613e05565b5b602082029050919050565b600067ffffffffffffffff82111561398f5761398e613e05565b5b61399882613e4d565b9050602081019050919050565b600067ffffffffffffffff8211156139c0576139bf613e05565b5b6139c982613e4d565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a7d82613bf1565b9150613a8883613bf1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613abd57613abc613d1a565b5b828201905092915050565b6000613ad382613bf1565b9150613ade83613bf1565b925082613aee57613aed613d49565b5b828204905092915050565b6000613b0482613bf1565b9150613b0f83613bf1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b4857613b47613d1a565b5b828202905092915050565b6000613b5e82613bf1565b9150613b6983613bf1565b925082821015613b7c57613b7b613d1a565b5b828203905092915050565b6000613b9282613bd1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613c28578082015181840152602081019050613c0d565b83811115613c37576000848401525b50505050565b60006002820490506001821680613c5557607f821691505b60208210811415613c6957613c68613d78565b5b50919050565b613c7882613e4d565b810181811067ffffffffffffffff82111715613c9757613c96613e05565b5b80604052505050565b6000613cab82613bf1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613cde57613cdd613d1a565b5b600182019050919050565b6000613cf482613bf1565b9150613cff83613bf1565b925082613d0f57613d0e613d49565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b61429c81613b87565b81146142a757600080fd5b50565b6142b381613b99565b81146142be57600080fd5b50565b6142ca81613ba5565b81146142d557600080fd5b50565b6142e181613bf1565b81146142ec57600080fd5b5056fea2646970667358221220822e85c638f0f517f20f33525e72bd77059ea1e7f592fcdfb39ba55c1350526964736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a4c415a595a4f4d4249450000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044c5a5a4200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d625658446f7948636a433636484e61763833795938336e6a58726e444b4b736533536779466265685469454e2f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102515760003560e01c806355f804b311610139578063a22cb465116100b6578063d5abeb011161007a578063d5abeb01146108a4578063d936547e146108cf578063da3ef23f1461090c578063e985e9c514610935578063ed931e1714610972578063f2fde38b1461099b57610251565b8063a22cb465146107c1578063b2f3e85e146107ea578063b88d4fde14610813578063c66828621461083c578063c87b56dd1461086757610251565b8063715018a6116100fd578063715018a6146107025780637f00c7a6146107195780638da5cb5b146107425780638fdcf9421461076d57806395d89b411461079657610251565b806355f804b3146106095780635c975abb146106325780636352211e1461065d5780636c0360eb1461069a57806370a08231146106c557610251565b80632f745c59116101d257806342842e0e1161019657806342842e0e146104eb578063438b63001461051457806344a0d68a146105515780634a4c560d1461057a5780634f6ccce7146105a3578063546857c7146105e057610251565b80632f745c591461042257806330b2264e1461045f57806330cc7ae01461049c5780633ccfd60b146104c557806340c10f19146104cf57610251565b806313faede61161021957806313faede61461034d57806318160ddd14610378578063239c70ae146103a357806323b872dd146103ce5780632a23d07d146103f757610251565b806301ffc9a71461025657806302329a291461029357806306fdde03146102bc578063081812fc146102e7578063095ea7b314610324575b600080fd5b34801561026257600080fd5b5061027d6004803603810190610278919061310b565b6109c4565b60405161028a91906136d1565b60405180910390f35b34801561029f57600080fd5b506102ba60048036038101906102b591906130de565b610a3e565b005b3480156102c857600080fd5b506102d1610a63565b6040516102de91906136ec565b60405180910390f35b3480156102f357600080fd5b5061030e600480360381019061030991906131ae565b610af5565b60405161031b9190613648565b60405180910390f35b34801561033057600080fd5b5061034b60048036038101906103469190613070565b610b3b565b005b34801561035957600080fd5b50610362610c53565b60405161036f919061390e565b60405180910390f35b34801561038457600080fd5b5061038d610c59565b60405161039a919061390e565b60405180910390f35b3480156103af57600080fd5b506103b8610c66565b6040516103c5919061390e565b60405180910390f35b3480156103da57600080fd5b506103f560048036038101906103f09190612f5a565b610c6c565b005b34801561040357600080fd5b5061040c610ccc565b604051610419919061390e565b60405180910390f35b34801561042e57600080fd5b5061044960048036038101906104449190613070565b610cd2565b604051610456919061390e565b60405180910390f35b34801561046b57600080fd5b5061048660048036038101906104819190612eed565b610d77565b60405161049391906136d1565b60405180910390f35b3480156104a857600080fd5b506104c360048036038101906104be9190612eed565b610d97565b005b6104cd610dfa565b005b6104e960048036038101906104e49190613070565b610e7b565b005b3480156104f757600080fd5b50610512600480360381019061050d9190612f5a565b611039565b005b34801561052057600080fd5b5061053b60048036038101906105369190612eed565b611059565b60405161054891906136af565b60405180910390f35b34801561055d57600080fd5b50610578600480360381019061057391906131ae565b611107565b005b34801561058657600080fd5b506105a1600480360381019061059c9190612eed565b611119565b005b3480156105af57600080fd5b506105ca60048036038101906105c591906131ae565b61117c565b6040516105d7919061390e565b60405180910390f35b3480156105ec57600080fd5b50610607600480360381019061060291906130b0565b6111ed565b005b34801561061557600080fd5b50610630600480360381019061062b9190613165565b611287565b005b34801561063e57600080fd5b506106476112a9565b60405161065491906136d1565b60405180910390f35b34801561066957600080fd5b50610684600480360381019061067f91906131ae565b6112bc565b6040516106919190613648565b60405180910390f35b3480156106a657600080fd5b506106af61136e565b6040516106bc91906136ec565b60405180910390f35b3480156106d157600080fd5b506106ec60048036038101906106e79190612eed565b6113fc565b6040516106f9919061390e565b60405180910390f35b34801561070e57600080fd5b506107176114b4565b005b34801561072557600080fd5b50610740600480360381019061073b91906131ae565b6114c8565b005b34801561074e57600080fd5b506107576114da565b6040516107649190613648565b60405180910390f35b34801561077957600080fd5b50610794600480360381019061078f91906131ae565b611504565b005b3480156107a257600080fd5b506107ab611516565b6040516107b891906136ec565b60405180910390f35b3480156107cd57600080fd5b506107e860048036038101906107e39190613030565b6115a8565b005b3480156107f657600080fd5b50610811600480360381019061080c9190612eed565b6115be565b005b34801561081f57600080fd5b5061083a60048036038101906108359190612fad565b611621565b005b34801561084857600080fd5b50610851611683565b60405161085e91906136ec565b60405180910390f35b34801561087357600080fd5b5061088e600480360381019061088991906131ae565b611711565b60405161089b91906136ec565b60405180910390f35b3480156108b057600080fd5b506108b96117bb565b6040516108c6919061390e565b60405180910390f35b3480156108db57600080fd5b506108f660048036038101906108f19190612eed565b6117c1565b60405161090391906136d1565b60405180910390f35b34801561091857600080fd5b50610933600480360381019061092e9190613165565b6117e1565b005b34801561094157600080fd5b5061095c60048036038101906109579190612f1a565b611803565b60405161096991906136d1565b60405180910390f35b34801561097e57600080fd5b5061099960048036038101906109949190612eed565b611897565b005b3480156109a757600080fd5b506109c260048036038101906109bd9190612eed565b6118fa565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a375750610a36826119a6565b5b9050919050565b610a46611a88565b80601160006101000a81548160ff02191690831515021790555050565b606060008054610a7290613c3d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9e90613c3d565b8015610aeb5780601f10610ac057610100808354040283529160200191610aeb565b820191906000526020600020905b815481529060010190602001808311610ace57829003601f168201915b5050505050905090565b6000610b0082611b06565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b46826112bc565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bae906138ae565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bd6611b51565b73ffffffffffffffffffffffffffffffffffffffff161480610c055750610c0481610bff611b51565b611803565b5b610c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3b9061380e565b60405180910390fd5b610c4e8383611b59565b505050565b600d5481565b6000600880549050905090565b60105481565b610c7d610c77611b51565b82611c12565b610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb3906138ee565b60405180910390fd5b610cc7838383611ca7565b505050565b600e5481565b6000610cdd836113fc565b8210610d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d159061370e565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b60136020528060005260406000206000915054906101000a900460ff1681565b610d9f611a88565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610e02611a88565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610e2890613633565b60006040518083038185875af1925050503d8060008114610e65576040519150601f19603f3d011682016040523d82523d6000602084013e610e6a565b606091505b5050905080610e7857600080fd5b50565b6000610e85610c59565b9050601160009054906101000a900460ff1615610ea157600080fd5b60008211610eae57600080fd5b601054821115610ebd57600080fd5b600f548282610ecc9190613a72565b1115610ed757600080fd5b610edf6114da565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ffd5760011515601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610ffc5760011515601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610fe05781600d54610fcf9190613af9565b341015610fdb57600080fd5b610ffb565b81600e54610fee9190613af9565b341015610ffa57600080fd5b5b5b5b6000600190505b8281116110335761102084828461101b9190613a72565b611f0e565b808061102b90613ca0565b915050611004565b50505050565b61105483838360405180602001604052806000815250611621565b505050565b60606000611066836113fc565b905060008167ffffffffffffffff81111561108457611083613e05565b5b6040519080825280602002602001820160405280156110b25781602001602082028036833780820191505090505b50905060005b828110156110fc576110ca8582610cd2565b8282815181106110dd576110dc613dd6565b5b60200260200101818152505080806110f490613ca0565b9150506110b8565b508092505050919050565b61110f611a88565b80600d8190555050565b611121611a88565b6001601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000611186610c59565b82106111c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111be906138ce565b60405180910390fd5b600882815481106111db576111da613dd6565b5b90600052602060002001549050919050565b6111f5611a88565b60005b60028110156112835760016013600084846064811061121a57611219613dd6565b5b602002015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061127b90613ca0565b9150506111f8565b5050565b61128f611a88565b80600b90805190602001906112a5929190612c6f565b5050565b601160009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611365576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135c9061388e565b60405180910390fd5b80915050919050565b600b805461137b90613c3d565b80601f01602080910402602001604051908101604052809291908181526020018280546113a790613c3d565b80156113f45780601f106113c9576101008083540402835291602001916113f4565b820191906000526020600020905b8154815290600101906020018083116113d757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561146d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611464906137ee565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114bc611a88565b6114c66000611f2c565b565b6114d0611a88565b8060108190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61150c611a88565b80600e8190555050565b60606001805461152590613c3d565b80601f016020809104026020016040519081016040528092919081815260200182805461155190613c3d565b801561159e5780601f106115735761010080835404028352916020019161159e565b820191906000526020600020905b81548152906001019060200180831161158157829003601f168201915b5050505050905090565b6115ba6115b3611b51565b8383611ff2565b5050565b6115c6611a88565b6001601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b61163261162c611b51565b83611c12565b611671576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611668906138ee565b60405180910390fd5b61167d8484848461215f565b50505050565b600c805461169090613c3d565b80601f01602080910402602001604051908101604052809291908181526020018280546116bc90613c3d565b80156117095780601f106116de57610100808354040283529160200191611709565b820191906000526020600020905b8154815290600101906020018083116116ec57829003601f168201915b505050505081565b606061171c826121bb565b61175b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117529061386e565b60405180910390fd5b6000611765612227565b9050600081511161178557604051806020016040528060008152506117b3565b8061178f846122b9565b600c6040516020016117a393929190613602565b6040516020818303038152906040525b915050919050565b600f5481565b60126020528060005260406000206000915054906101000a900460ff1681565b6117e9611a88565b80600c90805190602001906117ff929190612c6f565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61189f611a88565b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b611902611a88565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611972576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119699061374e565b60405180910390fd5b61197b81611f2c565b50565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611a7157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611a815750611a808261241a565b5b9050919050565b611a90611b51565b73ffffffffffffffffffffffffffffffffffffffff16611aae6114da565b73ffffffffffffffffffffffffffffffffffffffff1614611b04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afb9061384e565b60405180910390fd5b565b611b0f816121bb565b611b4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b459061388e565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611bcc836112bc565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080611c1e836112bc565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611c605750611c5f8185611803565b5b80611c9e57508373ffffffffffffffffffffffffffffffffffffffff16611c8684610af5565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611cc7826112bc565b73ffffffffffffffffffffffffffffffffffffffff1614611d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d149061376e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d84906137ae565b60405180910390fd5b611d98838383612484565b611da3600082611b59565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611df39190613b53565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e4a9190613a72565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f09838383612598565b505050565b611f2882826040518060200160405280600081525061259d565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612061576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612058906137ce565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161215291906136d1565b60405180910390a3505050565b61216a848484611ca7565b612176848484846125f8565b6121b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ac9061372e565b60405180910390fd5b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b6060600b805461223690613c3d565b80601f016020809104026020016040519081016040528092919081815260200182805461226290613c3d565b80156122af5780601f10612284576101008083540402835291602001916122af565b820191906000526020600020905b81548152906001019060200180831161229257829003601f168201915b5050505050905090565b60606000821415612301576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612415565b600082905060005b6000821461233357808061231c90613ca0565b915050600a8261232c9190613ac8565b9150612309565b60008167ffffffffffffffff81111561234f5761234e613e05565b5b6040519080825280601f01601f1916602001820160405280156123815781602001600182028036833780820191505090505b5090505b6000851461240e5760018261239a9190613b53565b9150600a856123a99190613ce9565b60306123b59190613a72565b60f81b8183815181106123cb576123ca613dd6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124079190613ac8565b9450612385565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61248f8383836119a1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124d2576124cd8161278f565b612511565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146125105761250f83826127d8565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125545761254f81612945565b612593565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612592576125918282612a16565b5b5b505050565b505050565b6125a78383612a95565b6125b460008484846125f8565b6125f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ea9061372e565b60405180910390fd5b505050565b60006126198473ffffffffffffffffffffffffffffffffffffffff1661197e565b15612782578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612642611b51565b8786866040518563ffffffff1660e01b81526004016126649493929190613663565b602060405180830381600087803b15801561267e57600080fd5b505af19250505080156126af57506040513d601f19601f820116820180604052508101906126ac9190613138565b60015b612732573d80600081146126df576040519150601f19603f3d011682016040523d82523d6000602084013e6126e4565b606091505b5060008151141561272a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127219061372e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612787565b600190505b949350505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016127e5846113fc565b6127ef9190613b53565b90506000600760008481526020019081526020016000205490508181146128d4576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506129599190613b53565b905060006009600084815260200190815260200160002054905060006008838154811061298957612988613dd6565b5b9060005260206000200154905080600883815481106129ab576129aa613dd6565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806129fa576129f9613da7565b5b6001900381819060005260206000200160009055905550505050565b6000612a21836113fc565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612afc9061382e565b60405180910390fd5b612b0e816121bb565b15612b4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b459061378e565b60405180910390fd5b612b5a60008383612484565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612baa9190613a72565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c6b60008383612598565b5050565b828054612c7b90613c3d565b90600052602060002090601f016020900481019282612c9d5760008555612ce4565b82601f10612cb657805160ff1916838001178555612ce4565b82800160010185558215612ce4579182015b82811115612ce3578251825591602001919060010190612cc8565b5b509050612cf19190612cf5565b5090565b5b80821115612d0e576000816000905550600101612cf6565b5090565b6000612d25612d208461394e565b613929565b90508082856020860282011115612d3f57612d3e613e39565b5b60005b85811015612d6f5781612d558882612dfd565b845260208401935060208301925050600181019050612d42565b5050509392505050565b6000612d8c612d8784613974565b613929565b905082815260208101848484011115612da857612da7613e3e565b5b612db3848285613bfb565b509392505050565b6000612dce612dc9846139a5565b613929565b905082815260208101848484011115612dea57612de9613e3e565b5b612df5848285613bfb565b509392505050565b600081359050612e0c81614293565b92915050565b600082601f830112612e2757612e26613e34565b5b6064612e34848285612d12565b91505092915050565b600081359050612e4c816142aa565b92915050565b600081359050612e61816142c1565b92915050565b600081519050612e76816142c1565b92915050565b600082601f830112612e9157612e90613e34565b5b8135612ea1848260208601612d79565b91505092915050565b600082601f830112612ebf57612ebe613e34565b5b8135612ecf848260208601612dbb565b91505092915050565b600081359050612ee7816142d8565b92915050565b600060208284031215612f0357612f02613e48565b5b6000612f1184828501612dfd565b91505092915050565b60008060408385031215612f3157612f30613e48565b5b6000612f3f85828601612dfd565b9250506020612f5085828601612dfd565b9150509250929050565b600080600060608486031215612f7357612f72613e48565b5b6000612f8186828701612dfd565b9350506020612f9286828701612dfd565b9250506040612fa386828701612ed8565b9150509250925092565b60008060008060808587031215612fc757612fc6613e48565b5b6000612fd587828801612dfd565b9450506020612fe687828801612dfd565b9350506040612ff787828801612ed8565b925050606085013567ffffffffffffffff81111561301857613017613e43565b5b61302487828801612e7c565b91505092959194509250565b6000806040838503121561304757613046613e48565b5b600061305585828601612dfd565b925050602061306685828601612e3d565b9150509250929050565b6000806040838503121561308757613086613e48565b5b600061309585828601612dfd565b92505060206130a685828601612ed8565b9150509250929050565b6000610c8082840312156130c7576130c6613e48565b5b60006130d584828501612e12565b91505092915050565b6000602082840312156130f4576130f3613e48565b5b600061310284828501612e3d565b91505092915050565b60006020828403121561312157613120613e48565b5b600061312f84828501612e52565b91505092915050565b60006020828403121561314e5761314d613e48565b5b600061315c84828501612e67565b91505092915050565b60006020828403121561317b5761317a613e48565b5b600082013567ffffffffffffffff81111561319957613198613e43565b5b6131a584828501612eaa565b91505092915050565b6000602082840312156131c4576131c3613e48565b5b60006131d284828501612ed8565b91505092915050565b60006131e783836135e4565b60208301905092915050565b6131fc81613b87565b82525050565b600061320d826139fb565b6132178185613a29565b9350613222836139d6565b8060005b8381101561325357815161323a88826131db565b975061324583613a1c565b925050600181019050613226565b5085935050505092915050565b61326981613b99565b82525050565b600061327a82613a06565b6132848185613a3a565b9350613294818560208601613c0a565b61329d81613e4d565b840191505092915050565b60006132b382613a11565b6132bd8185613a56565b93506132cd818560208601613c0a565b6132d681613e4d565b840191505092915050565b60006132ec82613a11565b6132f68185613a67565b9350613306818560208601613c0a565b80840191505092915050565b6000815461331f81613c3d565b6133298186613a67565b94506001821660008114613344576001811461335557613388565b60ff19831686528186019350613388565b61335e856139e6565b60005b8381101561338057815481890152600182019150602081019050613361565b838801955050505b50505092915050565b600061339e602b83613a56565b91506133a982613e5e565b604082019050919050565b60006133c1603283613a56565b91506133cc82613ead565b604082019050919050565b60006133e4602683613a56565b91506133ef82613efc565b604082019050919050565b6000613407602583613a56565b915061341282613f4b565b604082019050919050565b600061342a601c83613a56565b915061343582613f9a565b602082019050919050565b600061344d602483613a56565b915061345882613fc3565b604082019050919050565b6000613470601983613a56565b915061347b82614012565b602082019050919050565b6000613493602983613a56565b915061349e8261403b565b604082019050919050565b60006134b6603e83613a56565b91506134c18261408a565b604082019050919050565b60006134d9602083613a56565b91506134e4826140d9565b602082019050919050565b60006134fc602083613a56565b915061350782614102565b602082019050919050565b600061351f602f83613a56565b915061352a8261412b565b604082019050919050565b6000613542601883613a56565b915061354d8261417a565b602082019050919050565b6000613565602183613a56565b9150613570826141a3565b604082019050919050565b6000613588600083613a4b565b9150613593826141f2565b600082019050919050565b60006135ab602c83613a56565b91506135b6826141f5565b604082019050919050565b60006135ce602e83613a56565b91506135d982614244565b604082019050919050565b6135ed81613bf1565b82525050565b6135fc81613bf1565b82525050565b600061360e82866132e1565b915061361a82856132e1565b91506136268284613312565b9150819050949350505050565b600061363e8261357b565b9150819050919050565b600060208201905061365d60008301846131f3565b92915050565b600060808201905061367860008301876131f3565b61368560208301866131f3565b61369260408301856135f3565b81810360608301526136a4818461326f565b905095945050505050565b600060208201905081810360008301526136c98184613202565b905092915050565b60006020820190506136e66000830184613260565b92915050565b6000602082019050818103600083015261370681846132a8565b905092915050565b6000602082019050818103600083015261372781613391565b9050919050565b60006020820190508181036000830152613747816133b4565b9050919050565b60006020820190508181036000830152613767816133d7565b9050919050565b60006020820190508181036000830152613787816133fa565b9050919050565b600060208201905081810360008301526137a78161341d565b9050919050565b600060208201905081810360008301526137c781613440565b9050919050565b600060208201905081810360008301526137e781613463565b9050919050565b6000602082019050818103600083015261380781613486565b9050919050565b60006020820190508181036000830152613827816134a9565b9050919050565b60006020820190508181036000830152613847816134cc565b9050919050565b60006020820190508181036000830152613867816134ef565b9050919050565b6000602082019050818103600083015261388781613512565b9050919050565b600060208201905081810360008301526138a781613535565b9050919050565b600060208201905081810360008301526138c781613558565b9050919050565b600060208201905081810360008301526138e78161359e565b9050919050565b60006020820190508181036000830152613907816135c1565b9050919050565b600060208201905061392360008301846135f3565b92915050565b6000613933613944565b905061393f8282613c6f565b919050565b6000604051905090565b600067ffffffffffffffff82111561396957613968613e05565b5b602082029050919050565b600067ffffffffffffffff82111561398f5761398e613e05565b5b61399882613e4d565b9050602081019050919050565b600067ffffffffffffffff8211156139c0576139bf613e05565b5b6139c982613e4d565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a7d82613bf1565b9150613a8883613bf1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613abd57613abc613d1a565b5b828201905092915050565b6000613ad382613bf1565b9150613ade83613bf1565b925082613aee57613aed613d49565b5b828204905092915050565b6000613b0482613bf1565b9150613b0f83613bf1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b4857613b47613d1a565b5b828202905092915050565b6000613b5e82613bf1565b9150613b6983613bf1565b925082821015613b7c57613b7b613d1a565b5b828203905092915050565b6000613b9282613bd1565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613c28578082015181840152602081019050613c0d565b83811115613c37576000848401525b50505050565b60006002820490506001821680613c5557607f821691505b60208210811415613c6957613c68613d78565b5b50919050565b613c7882613e4d565b810181811067ffffffffffffffff82111715613c9757613c96613e05565b5b80604052505050565b6000613cab82613bf1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613cde57613cdd613d1a565b5b600182019050919050565b6000613cf482613bf1565b9150613cff83613bf1565b925082613d0f57613d0e613d49565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b61429c81613b87565b81146142a757600080fd5b50565b6142b381613b99565b81146142be57600080fd5b50565b6142ca81613ba5565b81146142d557600080fd5b50565b6142e181613bf1565b81146142ec57600080fd5b5056fea2646970667358221220822e85c638f0f517f20f33525e72bd77059ea1e7f592fcdfb39ba55c1350526964736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a4c415a595a4f4d4249450000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044c5a5a4200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004468747470733a2f2f697066732e696f2f697066732f516d625658446f7948636a433636484e61763833795938336e6a58726e444b4b736533536779466265685469454e2f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): LAZYZOMBIE
Arg [1] : _symbol (string): LZZB
Arg [2] : _initBaseURI (string): https://ipfs.io/ipfs/QmbVXDoyHcjC66HNav83yY83njXrnDKKse3SgyFbehTiEN/

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 4c415a595a4f4d42494500000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 4c5a5a4200000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [8] : 68747470733a2f2f697066732e696f2f697066732f516d625658446f7948636a
Arg [9] : 433636484e61763833795938336e6a58726e444b4b7365335367794662656854
Arg [10] : 69454e2f00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

47514:4232:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40010:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50827:79;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26744:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28257:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27774:417;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47679:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40650:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47796:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28957:336;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47715:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40318:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47918:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51021:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51551:192;;;:::i;:::-;;48343:807;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29364:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49158:390;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50224:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50914:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40840:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51246:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50556:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47835:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26455:222;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47607:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26186:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5273:103;;;;;;;;;;;;;:::i;:::-;;50426:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4625:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50318:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26913:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28500:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51135:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29620:323;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47635:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49556:642;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47758:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47868:43;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50668:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28726:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51436:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5531:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40010:224;40112:4;40151:35;40136:50;;;:11;:50;;;;:90;;;;40190:36;40214:11;40190:23;:36::i;:::-;40136:90;40129:97;;40010:224;;;:::o;50827:79::-;4511:13;:11;:13::i;:::-;50892:6:::1;50883;;:15;;;;;;;;;;;;;;;;;;50827:79:::0;:::o;26744:100::-;26798:13;26831:5;26824:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26744:100;:::o;28257:171::-;28333:7;28353:23;28368:7;28353:14;:23::i;:::-;28396:15;:24;28412:7;28396:24;;;;;;;;;;;;;;;;;;;;;28389:31;;28257:171;;;:::o;27774:417::-;27855:13;27871:23;27886:7;27871:14;:23::i;:::-;27855:39;;27919:5;27913:11;;:2;:11;;;;27905:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;28013:5;27997:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;28022:37;28039:5;28046:12;:10;:12::i;:::-;28022:16;:37::i;:::-;27997:62;27975:174;;;;;;;;;;;;:::i;:::-;;;;;;;;;28162:21;28171:2;28175:7;28162:8;:21::i;:::-;27844:347;27774:417;;:::o;47679:29::-;;;;:::o;40650:113::-;40711:7;40738:10;:17;;;;40731:24;;40650:113;:::o;47796:32::-;;;;:::o;28957:336::-;29152:41;29171:12;:10;:12::i;:::-;29185:7;29152:18;:41::i;:::-;29144:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;29257:28;29267:4;29273:2;29277:7;29257:9;:28::i;:::-;28957:336;;;:::o;47715:36::-;;;;:::o;40318:256::-;40415:7;40451:23;40468:5;40451:16;:23::i;:::-;40443:5;:31;40435:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;40540:12;:19;40553:5;40540:19;;;;;;;;;;;;;;;:26;40560:5;40540:26;;;;;;;;;;;;40533:33;;40318:256;;;;:::o;47918:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;51021:106::-;4511:13;:11;:13::i;:::-;51114:5:::1;51093:11;:18;51105:5;51093:18;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;51021:106:::0;:::o;51551:192::-;4511:13;:11;:13::i;:::-;51608:12:::1;51634:10;51626:24;;51672:21;51626:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51607:101;;;51727:7;51719:16;;;::::0;::::1;;51596:147;51551:192::o:0;48343:807::-;48417:14;48434:13;:11;:13::i;:::-;48417:30;;48467:6;;;;;;;;;;;48466:7;48458:16;;;;;;48507:1;48493:11;:15;48485:24;;;;;;48543:13;;48528:11;:28;;48520:37;;;;;;48600:9;;48585:11;48576:6;:20;;;;:::i;:::-;:33;;48568:42;;;;;;48641:7;:5;:7::i;:::-;48627:21;;:10;:21;;;48623:412;;48696:4;48669:31;;:11;:23;48681:10;48669:23;;;;;;;;;;;;;;;;;;;;;;;;;:31;;;48665:359;;48755:4;48725:34;;:14;:26;48740:10;48725:26;;;;;;;;;;;;;;;;;;;;;;;;;:34;;;48721:288;;48850:11;48843:4;;:18;;;;:::i;:::-;48830:9;:31;;48822:40;;;;;;48721:288;;;48977:11;48963;;:25;;;;:::i;:::-;48950:9;:38;;48942:47;;;;;;48721:288;48665:359;48623:412;49052:9;49064:1;49052:13;;49047:96;49072:11;49067:1;:16;49047:96;;49105:26;49115:3;49129:1;49120:6;:10;;;;:::i;:::-;49105:9;:26::i;:::-;49085:3;;;;;:::i;:::-;;;;49047:96;;;;48406:744;48343:807;;:::o;29364:185::-;29502:39;29519:4;29525:2;29529:7;29502:39;;;;;;;;;;;;:16;:39::i;:::-;29364:185;;;:::o;49158:390::-;49245:16;49279:23;49305:17;49315:6;49305:9;:17::i;:::-;49279:43;;49333:25;49375:15;49361:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49333:58;;49407:9;49402:113;49422:15;49418:1;:19;49402:113;;;49473:30;49493:6;49501:1;49473:19;:30::i;:::-;49459:8;49468:1;49459:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;49439:3;;;;;:::i;:::-;;;;49402:113;;;;49532:8;49525:15;;;;49158:390;;;:::o;50224:86::-;4511:13;:11;:13::i;:::-;50294:8:::1;50287:4;:15;;;;50224:86:::0;:::o;50914:99::-;4511:13;:11;:13::i;:::-;51001:4:::1;50980:11;:18;50992:5;50980:18;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;50914:99:::0;:::o;40840:233::-;40915:7;40951:30;:28;:30::i;:::-;40943:5;:38;40935:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;41048:10;41059:5;41048:17;;;;;;;;:::i;:::-;;;;;;;;;;41041:24;;40840:233;;;:::o;51246:182::-;4511:13;:11;:13::i;:::-;51335:9:::1;51330:91;51354:1;51350;:5;51330:91;;;51405:4;51377:14;:25;51392:6;51399:1;51392:9;;;;;;;:::i;:::-;;;;;;51377:25;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;51357:3;;;;;:::i;:::-;;;;51330:91;;;;51246:182:::0;:::o;50556:104::-;4511:13;:11;:13::i;:::-;50641:11:::1;50631:7;:21;;;;;;;;;;;;:::i;:::-;;50556:104:::0;:::o;47835:26::-;;;;;;;;;;;;;:::o;26455:222::-;26527:7;26547:13;26563:7;:16;26571:7;26563:16;;;;;;;;;;;;;;;;;;;;;26547:32;;26615:1;26598:19;;:5;:19;;;;26590:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;26664:5;26657:12;;;26455:222;;;:::o;47607:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26186:207::-;26258:7;26303:1;26286:19;;:5;:19;;;;26278:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26369:9;:16;26379:5;26369:16;;;;;;;;;;;;;;;;26362:23;;26186:207;;;:::o;5273:103::-;4511:13;:11;:13::i;:::-;5338:30:::1;5365:1;5338:18;:30::i;:::-;5273:103::o:0;50426:122::-;4511:13;:11;:13::i;:::-;50523:17:::1;50507:13;:33;;;;50426:122:::0;:::o;4625:87::-;4671:7;4698:6;;;;;;;;;;;4691:13;;4625:87;:::o;50318:100::-;4511:13;:11;:13::i;:::-;50402:8:::1;50388:11;:22;;;;50318:100:::0;:::o;26913:104::-;26969:13;27002:7;26995:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26913:104;:::o;28500:155::-;28595:52;28614:12;:10;:12::i;:::-;28628:8;28638;28595:18;:52::i;:::-;28500:155;;:::o;51135:103::-;4511:13;:11;:13::i;:::-;51226:4:::1;51202:14;:21;51217:5;51202:21;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;51135:103:::0;:::o;29620:323::-;29794:41;29813:12;:10;:12::i;:::-;29827:7;29794:18;:41::i;:::-;29786:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;29897:38;29911:4;29917:2;29921:7;29930:4;29897:13;:38::i;:::-;29620:323;;;;:::o;47635:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49556:642::-;49674:13;49727:16;49735:7;49727;:16::i;:::-;49705:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;49831:28;49862:10;:8;:10::i;:::-;49831:41;;49934:1;49909:14;49903:28;:32;:287;;;;;;;;;;;;;;;;;50027:14;50068:18;:7;:16;:18::i;:::-;50113:13;49984:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49903:287;49883:307;;;49556:642;;;:::o;47758:31::-;;;;:::o;47868:43::-;;;;;;;;;;;;;;;;;;;;;;:::o;50668:151::-;4511:13;:11;:13::i;:::-;50794:17:::1;50778:13;:33;;;;;;;;;;;;:::i;:::-;;50668:151:::0;:::o;28726:164::-;28823:4;28847:18;:25;28866:5;28847:25;;;;;;;;;;;;;;;:35;28873:8;28847:35;;;;;;;;;;;;;;;;;;;;;;;;;28840:42;;28726:164;;;;:::o;51436:107::-;4511:13;:11;:13::i;:::-;51530:5:::1;51506:14;:21;51521:5;51506:21;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;51436:107:::0;:::o;5531:201::-;4511:13;:11;:13::i;:::-;5640:1:::1;5620:22;;:8;:22;;;;5612:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5696:28;5715:8;5696:18;:28::i;:::-;5531:201:::0;:::o;7323:326::-;7383:4;7640:1;7618:7;:19;;;:23;7611:30;;7323:326;;;:::o;38356:126::-;;;;:::o;25817:305::-;25919:4;25971:25;25956:40;;;:11;:40;;;;:105;;;;26028:33;26013:48;;;:11;:48;;;;25956:105;:158;;;;26078:36;26102:11;26078:23;:36::i;:::-;25956:158;25936:178;;25817:305;;;:::o;4790:132::-;4865:12;:10;:12::i;:::-;4854:23;;:7;:5;:7::i;:::-;:23;;;4846:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4790:132::o;36232:135::-;36314:16;36322:7;36314;:16::i;:::-;36306:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;36232:135;:::o;3176:98::-;3229:7;3256:10;3249:17;;3176:98;:::o;35511:174::-;35613:2;35586:15;:24;35602:7;35586:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35669:7;35665:2;35631:46;;35640:23;35655:7;35640:14;:23::i;:::-;35631:46;;;;;;;;;;;;35511:174;;:::o;31744:264::-;31837:4;31854:13;31870:23;31885:7;31870:14;:23::i;:::-;31854:39;;31923:5;31912:16;;:7;:16;;;:52;;;;31932:32;31949:5;31956:7;31932:16;:32::i;:::-;31912:52;:87;;;;31992:7;31968:31;;:20;31980:7;31968:11;:20::i;:::-;:31;;;31912:87;31904:96;;;31744:264;;;;:::o;34767:625::-;34926:4;34899:31;;:23;34914:7;34899:14;:23::i;:::-;:31;;;34891:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;35005:1;34991:16;;:2;:16;;;;34983:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;35061:39;35082:4;35088:2;35092:7;35061:20;:39::i;:::-;35165:29;35182:1;35186:7;35165:8;:29::i;:::-;35226:1;35207:9;:15;35217:4;35207:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;35255:1;35238:9;:13;35248:2;35238:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35286:2;35267:7;:16;35275:7;35267:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35325:7;35321:2;35306:27;;35315:4;35306:27;;;;;;;;;;;;35346:38;35366:4;35372:2;35376:7;35346:19;:38::i;:::-;34767:625;;;:::o;32350:110::-;32426:26;32436:2;32440:7;32426:26;;;;;;;;;;;;:9;:26::i;:::-;32350:110;;:::o;5892:191::-;5966:16;5985:6;;;;;;;;;;;5966:25;;6011:8;6002:6;;:17;;;;;;;;;;;;;;;;;;6066:8;6035:40;;6056:8;6035:40;;;;;;;;;;;;5955:128;5892:191;:::o;35828:315::-;35983:8;35974:17;;:5;:17;;;;35966:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;36070:8;36032:18;:25;36051:5;36032:25;;;;;;;;;;;;;;;:35;36058:8;36032:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;36116:8;36094:41;;36109:5;36094:41;;;36126:8;36094:41;;;;;;:::i;:::-;;;;;;;;35828:315;;;:::o;30824:313::-;30980:28;30990:4;30996:2;31000:7;30980:9;:28::i;:::-;31027:47;31050:4;31056:2;31060:7;31069:4;31027:22;:47::i;:::-;31019:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;30824:313;;;;:::o;31450:127::-;31515:4;31567:1;31539:30;;:7;:16;31547:7;31539:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31532:37;;31450:127;;;:::o;48212:108::-;48272:13;48305:7;48298:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48212:108;:::o;430:723::-;486:13;716:1;707:5;:10;703:53;;;734:10;;;;;;;;;;;;;;;;;;;;;703:53;766:12;781:5;766:20;;797:14;822:78;837:1;829:4;:9;822:78;;855:8;;;;;:::i;:::-;;;;886:2;878:10;;;;;:::i;:::-;;;822:78;;;910:19;942:6;932:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;910:39;;960:154;976:1;967:5;:10;960:154;;1004:1;994:11;;;;;:::i;:::-;;;1071:2;1063:5;:10;;;;:::i;:::-;1050:2;:24;;;;:::i;:::-;1037:39;;1020:6;1027;1020:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1100:2;1091:11;;;;;:::i;:::-;;;960:154;;;1138:6;1124:21;;;;;430:723;;;;:::o;17479:157::-;17564:4;17603:25;17588:40;;;:11;:40;;;;17581:47;;17479:157;;;:::o;41686:589::-;41830:45;41857:4;41863:2;41867:7;41830:26;:45::i;:::-;41908:1;41892:18;;:4;:18;;;41888:187;;;41927:40;41959:7;41927:31;:40::i;:::-;41888:187;;;41997:2;41989:10;;:4;:10;;;41985:90;;42016:47;42049:4;42055:7;42016:32;:47::i;:::-;41985:90;41888:187;42103:1;42089:16;;:2;:16;;;42085:183;;;42122:45;42159:7;42122:36;:45::i;:::-;42085:183;;;42195:4;42189:10;;:2;:10;;;42185:83;;42216:40;42244:2;42248:7;42216:27;:40::i;:::-;42185:83;42085:183;41686:589;;;:::o;38867:125::-;;;;:::o;32687:319::-;32816:18;32822:2;32826:7;32816:5;:18::i;:::-;32867:53;32898:1;32902:2;32906:7;32915:4;32867:22;:53::i;:::-;32845:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;32687:319;;;:::o;36931:853::-;37085:4;37106:15;:2;:13;;;:15::i;:::-;37102:675;;;37158:2;37142:36;;;37179:12;:10;:12::i;:::-;37193:4;37199:7;37208:4;37142:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37138:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37400:1;37383:6;:13;:18;37379:328;;;37426:60;;;;;;;;;;:::i;:::-;;;;;;;;37379:328;37657:6;37651:13;37642:6;37638:2;37634:15;37627:38;37138:584;37274:41;;;37264:51;;;:6;:51;;;;37257:58;;;;;37102:675;37761:4;37754:11;;36931:853;;;;;;;:::o;42998:164::-;43102:10;:17;;;;43075:15;:24;43091:7;43075:24;;;;;;;;;;;:44;;;;43130:10;43146:7;43130:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42998:164;:::o;43789:988::-;44055:22;44105:1;44080:22;44097:4;44080:16;:22::i;:::-;:26;;;;:::i;:::-;44055:51;;44117:18;44138:17;:26;44156:7;44138:26;;;;;;;;;;;;44117:47;;44285:14;44271:10;:28;44267:328;;44316:19;44338:12;:18;44351:4;44338:18;;;;;;;;;;;;;;;:34;44357:14;44338:34;;;;;;;;;;;;44316:56;;44422:11;44389:12;:18;44402:4;44389:18;;;;;;;;;;;;;;;:30;44408:10;44389:30;;;;;;;;;;;:44;;;;44539:10;44506:17;:30;44524:11;44506:30;;;;;;;;;;;:43;;;;44301:294;44267:328;44691:17;:26;44709:7;44691:26;;;;;;;;;;;44684:33;;;44735:12;:18;44748:4;44735:18;;;;;;;;;;;;;;;:34;44754:14;44735:34;;;;;;;;;;;44728:41;;;43870:907;;43789:988;;:::o;45072:1079::-;45325:22;45370:1;45350:10;:17;;;;:21;;;;:::i;:::-;45325:46;;45382:18;45403:15;:24;45419:7;45403:24;;;;;;;;;;;;45382:45;;45754:19;45776:10;45787:14;45776:26;;;;;;;;:::i;:::-;;;;;;;;;;45754:48;;45840:11;45815:10;45826;45815:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;45951:10;45920:15;:28;45936:11;45920:28;;;;;;;;;;;:41;;;;46092:15;:24;46108:7;46092:24;;;;;;;;;;;46085:31;;;46127:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;45143:1008;;;45072:1079;:::o;42576:221::-;42661:14;42678:20;42695:2;42678:16;:20::i;:::-;42661:37;;42736:7;42709:12;:16;42722:2;42709:16;;;;;;;;;;;;;;;:24;42726:6;42709:24;;;;;;;;;;;:34;;;;42783:6;42754:17;:26;42772:7;42754:26;;;;;;;;;;;:35;;;;42650:147;42576:221;;:::o;33342:439::-;33436:1;33422:16;;:2;:16;;;;33414:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33495:16;33503:7;33495;:16::i;:::-;33494:17;33486:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33557:45;33586:1;33590:2;33594:7;33557:20;:45::i;:::-;33632:1;33615:9;:13;33625:2;33615:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33663:2;33644:7;:16;33652:7;33644:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33708:7;33704:2;33683:33;;33700:1;33683:33;;;;;;;;;;;;33729:44;33757:1;33761:2;33765:7;33729:19;:44::i;:::-;33342:439;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;27:659:1:-;123:5;148:81;164:64;221:6;164:64;:::i;:::-;148:81;:::i;:::-;139:90;;249:5;275:6;325:3;317:4;309:6;305:17;300:3;296:27;293:36;290:143;;;344:79;;:::i;:::-;290:143;457:1;442:238;467:6;464:1;461:13;442:238;;;535:3;564:37;597:3;585:10;564:37;:::i;:::-;559:3;552:50;631:4;626:3;622:14;615:21;;665:4;660:3;656:14;649:21;;502:178;489:1;486;482:9;477:14;;442:238;;;446:14;129:557;;27:659;;;;;:::o;692:410::-;769:5;794:65;810:48;851:6;810:48;:::i;:::-;794:65;:::i;:::-;785:74;;882:6;875:5;868:21;920:4;913:5;909:16;958:3;949:6;944:3;940:16;937:25;934:112;;;965:79;;:::i;:::-;934:112;1055:41;1089:6;1084:3;1079;1055:41;:::i;:::-;775:327;692:410;;;;;:::o;1108:412::-;1186:5;1211:66;1227:49;1269:6;1227:49;:::i;:::-;1211:66;:::i;:::-;1202:75;;1300:6;1293:5;1286:21;1338:4;1331:5;1327:16;1376:3;1367:6;1362:3;1358:16;1355:25;1352:112;;;1383:79;;:::i;:::-;1352:112;1473:41;1507:6;1502:3;1497;1473:41;:::i;:::-;1192:328;1108:412;;;;;:::o;1526:139::-;1572:5;1610:6;1597:20;1588:29;;1626:33;1653:5;1626:33;:::i;:::-;1526:139;;;;:::o;1691:343::-;1762:5;1811:3;1804:4;1796:6;1792:17;1788:27;1778:122;;1819:79;;:::i;:::-;1778:122;1923:4;1945:83;2024:3;2016:6;2008;1945:83;:::i;:::-;1936:92;;1768:266;1691:343;;;;:::o;2040:133::-;2083:5;2121:6;2108:20;2099:29;;2137:30;2161:5;2137:30;:::i;:::-;2040:133;;;;:::o;2179:137::-;2224:5;2262:6;2249:20;2240:29;;2278:32;2304:5;2278:32;:::i;:::-;2179:137;;;;:::o;2322:141::-;2378:5;2409:6;2403:13;2394:22;;2425:32;2451:5;2425:32;:::i;:::-;2322:141;;;;:::o;2482:338::-;2537:5;2586:3;2579:4;2571:6;2567:17;2563:27;2553:122;;2594:79;;:::i;:::-;2553:122;2711:6;2698:20;2736:78;2810:3;2802:6;2795:4;2787:6;2783:17;2736:78;:::i;:::-;2727:87;;2543:277;2482:338;;;;:::o;2840:340::-;2896:5;2945:3;2938:4;2930:6;2926:17;2922:27;2912:122;;2953:79;;:::i;:::-;2912:122;3070:6;3057:20;3095:79;3170:3;3162:6;3155:4;3147:6;3143:17;3095:79;:::i;:::-;3086:88;;2902:278;2840:340;;;;:::o;3186:139::-;3232:5;3270:6;3257:20;3248:29;;3286:33;3313:5;3286:33;:::i;:::-;3186:139;;;;:::o;3331:329::-;3390:6;3439:2;3427:9;3418:7;3414:23;3410:32;3407:119;;;3445:79;;:::i;:::-;3407:119;3565:1;3590:53;3635:7;3626:6;3615:9;3611:22;3590:53;:::i;:::-;3580:63;;3536:117;3331:329;;;;:::o;3666:474::-;3734:6;3742;3791:2;3779:9;3770:7;3766:23;3762:32;3759:119;;;3797:79;;:::i;:::-;3759:119;3917:1;3942:53;3987:7;3978:6;3967:9;3963:22;3942:53;:::i;:::-;3932:63;;3888:117;4044:2;4070:53;4115:7;4106:6;4095:9;4091:22;4070:53;:::i;:::-;4060:63;;4015:118;3666:474;;;;;:::o;4146:619::-;4223:6;4231;4239;4288:2;4276:9;4267:7;4263:23;4259:32;4256:119;;;4294:79;;:::i;:::-;4256:119;4414:1;4439:53;4484:7;4475:6;4464:9;4460:22;4439:53;:::i;:::-;4429:63;;4385:117;4541:2;4567:53;4612:7;4603:6;4592:9;4588:22;4567:53;:::i;:::-;4557:63;;4512:118;4669:2;4695:53;4740:7;4731:6;4720:9;4716:22;4695:53;:::i;:::-;4685:63;;4640:118;4146:619;;;;;:::o;4771:943::-;4866:6;4874;4882;4890;4939:3;4927:9;4918:7;4914:23;4910:33;4907:120;;;4946:79;;:::i;:::-;4907:120;5066:1;5091:53;5136:7;5127:6;5116:9;5112:22;5091:53;:::i;:::-;5081:63;;5037:117;5193:2;5219:53;5264:7;5255:6;5244:9;5240:22;5219:53;:::i;:::-;5209:63;;5164:118;5321:2;5347:53;5392:7;5383:6;5372:9;5368:22;5347:53;:::i;:::-;5337:63;;5292:118;5477:2;5466:9;5462:18;5449:32;5508:18;5500:6;5497:30;5494:117;;;5530:79;;:::i;:::-;5494:117;5635:62;5689:7;5680:6;5669:9;5665:22;5635:62;:::i;:::-;5625:72;;5420:287;4771:943;;;;;;;:::o;5720:468::-;5785:6;5793;5842:2;5830:9;5821:7;5817:23;5813:32;5810:119;;;5848:79;;:::i;:::-;5810:119;5968:1;5993:53;6038:7;6029:6;6018:9;6014:22;5993:53;:::i;:::-;5983:63;;5939:117;6095:2;6121:50;6163:7;6154:6;6143:9;6139:22;6121:50;:::i;:::-;6111:60;;6066:115;5720:468;;;;;:::o;6194:474::-;6262:6;6270;6319:2;6307:9;6298:7;6294:23;6290:32;6287:119;;;6325:79;;:::i;:::-;6287:119;6445:1;6470:53;6515:7;6506:6;6495:9;6491:22;6470:53;:::i;:::-;6460:63;;6416:117;6572:2;6598:53;6643:7;6634:6;6623:9;6619:22;6598:53;:::i;:::-;6588:63;;6543:118;6194:474;;;;;:::o;6674:381::-;6758:6;6807:4;6795:9;6786:7;6782:23;6778:34;6775:121;;;6815:79;;:::i;:::-;6775:121;6935:1;6960:78;7030:7;7021:6;7010:9;7006:22;6960:78;:::i;:::-;6950:88;;6906:142;6674:381;;;;:::o;7061:323::-;7117:6;7166:2;7154:9;7145:7;7141:23;7137:32;7134:119;;;7172:79;;:::i;:::-;7134:119;7292:1;7317:50;7359:7;7350:6;7339:9;7335:22;7317:50;:::i;:::-;7307:60;;7263:114;7061:323;;;;:::o;7390:327::-;7448:6;7497:2;7485:9;7476:7;7472:23;7468:32;7465:119;;;7503:79;;:::i;:::-;7465:119;7623:1;7648:52;7692:7;7683:6;7672:9;7668:22;7648:52;:::i;:::-;7638:62;;7594:116;7390:327;;;;:::o;7723:349::-;7792:6;7841:2;7829:9;7820:7;7816:23;7812:32;7809:119;;;7847:79;;:::i;:::-;7809:119;7967:1;7992:63;8047:7;8038:6;8027:9;8023:22;7992:63;:::i;:::-;7982:73;;7938:127;7723:349;;;;:::o;8078:509::-;8147:6;8196:2;8184:9;8175:7;8171:23;8167:32;8164:119;;;8202:79;;:::i;:::-;8164:119;8350:1;8339:9;8335:17;8322:31;8380:18;8372:6;8369:30;8366:117;;;8402:79;;:::i;:::-;8366:117;8507:63;8562:7;8553:6;8542:9;8538:22;8507:63;:::i;:::-;8497:73;;8293:287;8078:509;;;;:::o;8593:329::-;8652:6;8701:2;8689:9;8680:7;8676:23;8672:32;8669:119;;;8707:79;;:::i;:::-;8669:119;8827:1;8852:53;8897:7;8888:6;8877:9;8873:22;8852:53;:::i;:::-;8842:63;;8798:117;8593:329;;;;:::o;8928:179::-;8997:10;9018:46;9060:3;9052:6;9018:46;:::i;:::-;9096:4;9091:3;9087:14;9073:28;;8928:179;;;;:::o;9113:118::-;9200:24;9218:5;9200:24;:::i;:::-;9195:3;9188:37;9113:118;;:::o;9267:732::-;9386:3;9415:54;9463:5;9415:54;:::i;:::-;9485:86;9564:6;9559:3;9485:86;:::i;:::-;9478:93;;9595:56;9645:5;9595:56;:::i;:::-;9674:7;9705:1;9690:284;9715:6;9712:1;9709:13;9690:284;;;9791:6;9785:13;9818:63;9877:3;9862:13;9818:63;:::i;:::-;9811:70;;9904:60;9957:6;9904:60;:::i;:::-;9894:70;;9750:224;9737:1;9734;9730:9;9725:14;;9690:284;;;9694:14;9990:3;9983:10;;9391:608;;;9267:732;;;;:::o;10005:109::-;10086:21;10101:5;10086:21;:::i;:::-;10081:3;10074:34;10005:109;;:::o;10120:360::-;10206:3;10234:38;10266:5;10234:38;:::i;:::-;10288:70;10351:6;10346:3;10288:70;:::i;:::-;10281:77;;10367:52;10412:6;10407:3;10400:4;10393:5;10389:16;10367:52;:::i;:::-;10444:29;10466:6;10444:29;:::i;:::-;10439:3;10435:39;10428:46;;10210:270;10120:360;;;;:::o;10486:364::-;10574:3;10602:39;10635:5;10602:39;:::i;:::-;10657:71;10721:6;10716:3;10657:71;:::i;:::-;10650:78;;10737:52;10782:6;10777:3;10770:4;10763:5;10759:16;10737:52;:::i;:::-;10814:29;10836:6;10814:29;:::i;:::-;10809:3;10805:39;10798:46;;10578:272;10486:364;;;;:::o;10856:377::-;10962:3;10990:39;11023:5;10990:39;:::i;:::-;11045:89;11127:6;11122:3;11045:89;:::i;:::-;11038:96;;11143:52;11188:6;11183:3;11176:4;11169:5;11165:16;11143:52;:::i;:::-;11220:6;11215:3;11211:16;11204:23;;10966:267;10856:377;;;;:::o;11263:845::-;11366:3;11403:5;11397:12;11432:36;11458:9;11432:36;:::i;:::-;11484:89;11566:6;11561:3;11484:89;:::i;:::-;11477:96;;11604:1;11593:9;11589:17;11620:1;11615:137;;;;11766:1;11761:341;;;;11582:520;;11615:137;11699:4;11695:9;11684;11680:25;11675:3;11668:38;11735:6;11730:3;11726:16;11719:23;;11615:137;;11761:341;11828:38;11860:5;11828:38;:::i;:::-;11888:1;11902:154;11916:6;11913:1;11910:13;11902:154;;;11990:7;11984:14;11980:1;11975:3;11971:11;11964:35;12040:1;12031:7;12027:15;12016:26;;11938:4;11935:1;11931:12;11926:17;;11902:154;;;12085:6;12080:3;12076:16;12069:23;;11768:334;;11582:520;;11370:738;;11263:845;;;;:::o;12114:366::-;12256:3;12277:67;12341:2;12336:3;12277:67;:::i;:::-;12270:74;;12353:93;12442:3;12353:93;:::i;:::-;12471:2;12466:3;12462:12;12455:19;;12114:366;;;:::o;12486:::-;12628:3;12649:67;12713:2;12708:3;12649:67;:::i;:::-;12642:74;;12725:93;12814:3;12725:93;:::i;:::-;12843:2;12838:3;12834:12;12827:19;;12486:366;;;:::o;12858:::-;13000:3;13021:67;13085:2;13080:3;13021:67;:::i;:::-;13014:74;;13097:93;13186:3;13097:93;:::i;:::-;13215:2;13210:3;13206:12;13199:19;;12858:366;;;:::o;13230:::-;13372:3;13393:67;13457:2;13452:3;13393:67;:::i;:::-;13386:74;;13469:93;13558:3;13469:93;:::i;:::-;13587:2;13582:3;13578:12;13571:19;;13230:366;;;:::o;13602:::-;13744:3;13765:67;13829:2;13824:3;13765:67;:::i;:::-;13758:74;;13841:93;13930:3;13841:93;:::i;:::-;13959:2;13954:3;13950:12;13943:19;;13602:366;;;:::o;13974:::-;14116:3;14137:67;14201:2;14196:3;14137:67;:::i;:::-;14130:74;;14213:93;14302:3;14213:93;:::i;:::-;14331:2;14326:3;14322:12;14315:19;;13974:366;;;:::o;14346:::-;14488:3;14509:67;14573:2;14568:3;14509:67;:::i;:::-;14502:74;;14585:93;14674:3;14585:93;:::i;:::-;14703:2;14698:3;14694:12;14687:19;;14346:366;;;:::o;14718:::-;14860:3;14881:67;14945:2;14940:3;14881:67;:::i;:::-;14874:74;;14957:93;15046:3;14957:93;:::i;:::-;15075:2;15070:3;15066:12;15059:19;;14718:366;;;:::o;15090:::-;15232:3;15253:67;15317:2;15312:3;15253:67;:::i;:::-;15246:74;;15329:93;15418:3;15329:93;:::i;:::-;15447:2;15442:3;15438:12;15431:19;;15090:366;;;:::o;15462:::-;15604:3;15625:67;15689:2;15684:3;15625:67;:::i;:::-;15618:74;;15701:93;15790:3;15701:93;:::i;:::-;15819:2;15814:3;15810:12;15803:19;;15462:366;;;:::o;15834:::-;15976:3;15997:67;16061:2;16056:3;15997:67;:::i;:::-;15990:74;;16073:93;16162:3;16073:93;:::i;:::-;16191:2;16186:3;16182:12;16175:19;;15834:366;;;:::o;16206:::-;16348:3;16369:67;16433:2;16428:3;16369:67;:::i;:::-;16362:74;;16445:93;16534:3;16445:93;:::i;:::-;16563:2;16558:3;16554:12;16547:19;;16206:366;;;:::o;16578:::-;16720:3;16741:67;16805:2;16800:3;16741:67;:::i;:::-;16734:74;;16817:93;16906:3;16817:93;:::i;:::-;16935:2;16930:3;16926:12;16919:19;;16578:366;;;:::o;16950:::-;17092:3;17113:67;17177:2;17172:3;17113:67;:::i;:::-;17106:74;;17189:93;17278:3;17189:93;:::i;:::-;17307:2;17302:3;17298:12;17291:19;;16950:366;;;:::o;17322:398::-;17481:3;17502:83;17583:1;17578:3;17502:83;:::i;:::-;17495:90;;17594:93;17683:3;17594:93;:::i;:::-;17712:1;17707:3;17703:11;17696:18;;17322:398;;;:::o;17726:366::-;17868:3;17889:67;17953:2;17948:3;17889:67;:::i;:::-;17882:74;;17965:93;18054:3;17965:93;:::i;:::-;18083:2;18078:3;18074:12;18067:19;;17726:366;;;:::o;18098:::-;18240:3;18261:67;18325:2;18320:3;18261:67;:::i;:::-;18254:74;;18337:93;18426:3;18337:93;:::i;:::-;18455:2;18450:3;18446:12;18439:19;;18098:366;;;:::o;18470:108::-;18547:24;18565:5;18547:24;:::i;:::-;18542:3;18535:37;18470:108;;:::o;18584:118::-;18671:24;18689:5;18671:24;:::i;:::-;18666:3;18659:37;18584:118;;:::o;18708:589::-;18933:3;18955:95;19046:3;19037:6;18955:95;:::i;:::-;18948:102;;19067:95;19158:3;19149:6;19067:95;:::i;:::-;19060:102;;19179:92;19267:3;19258:6;19179:92;:::i;:::-;19172:99;;19288:3;19281:10;;18708:589;;;;;;:::o;19303:379::-;19487:3;19509:147;19652:3;19509:147;:::i;:::-;19502:154;;19673:3;19666:10;;19303:379;;;:::o;19688:222::-;19781:4;19819:2;19808:9;19804:18;19796:26;;19832:71;19900:1;19889:9;19885:17;19876:6;19832:71;:::i;:::-;19688:222;;;;:::o;19916:640::-;20111:4;20149:3;20138:9;20134:19;20126:27;;20163:71;20231:1;20220:9;20216:17;20207:6;20163:71;:::i;:::-;20244:72;20312:2;20301:9;20297:18;20288:6;20244:72;:::i;:::-;20326;20394:2;20383:9;20379:18;20370:6;20326:72;:::i;:::-;20445:9;20439:4;20435:20;20430:2;20419:9;20415:18;20408:48;20473:76;20544:4;20535:6;20473:76;:::i;:::-;20465:84;;19916:640;;;;;;;:::o;20562:373::-;20705:4;20743:2;20732:9;20728:18;20720:26;;20792:9;20786:4;20782:20;20778:1;20767:9;20763:17;20756:47;20820:108;20923:4;20914:6;20820:108;:::i;:::-;20812:116;;20562:373;;;;:::o;20941:210::-;21028:4;21066:2;21055:9;21051:18;21043:26;;21079:65;21141:1;21130:9;21126:17;21117:6;21079:65;:::i;:::-;20941:210;;;;:::o;21157:313::-;21270:4;21308:2;21297:9;21293:18;21285:26;;21357:9;21351:4;21347:20;21343:1;21332:9;21328:17;21321:47;21385:78;21458:4;21449:6;21385:78;:::i;:::-;21377:86;;21157:313;;;;:::o;21476:419::-;21642:4;21680:2;21669:9;21665:18;21657:26;;21729:9;21723:4;21719:20;21715:1;21704:9;21700:17;21693:47;21757:131;21883:4;21757:131;:::i;:::-;21749:139;;21476:419;;;:::o;21901:::-;22067:4;22105:2;22094:9;22090:18;22082:26;;22154:9;22148:4;22144:20;22140:1;22129:9;22125:17;22118:47;22182:131;22308:4;22182:131;:::i;:::-;22174:139;;21901:419;;;:::o;22326:::-;22492:4;22530:2;22519:9;22515:18;22507:26;;22579:9;22573:4;22569:20;22565:1;22554:9;22550:17;22543:47;22607:131;22733:4;22607:131;:::i;:::-;22599:139;;22326:419;;;:::o;22751:::-;22917:4;22955:2;22944:9;22940:18;22932:26;;23004:9;22998:4;22994:20;22990:1;22979:9;22975:17;22968:47;23032:131;23158:4;23032:131;:::i;:::-;23024:139;;22751:419;;;:::o;23176:::-;23342:4;23380:2;23369:9;23365:18;23357:26;;23429:9;23423:4;23419:20;23415:1;23404:9;23400:17;23393:47;23457:131;23583:4;23457:131;:::i;:::-;23449:139;;23176:419;;;:::o;23601:::-;23767:4;23805:2;23794:9;23790:18;23782:26;;23854:9;23848:4;23844:20;23840:1;23829:9;23825:17;23818:47;23882:131;24008:4;23882:131;:::i;:::-;23874:139;;23601:419;;;:::o;24026:::-;24192:4;24230:2;24219:9;24215:18;24207:26;;24279:9;24273:4;24269:20;24265:1;24254:9;24250:17;24243:47;24307:131;24433:4;24307:131;:::i;:::-;24299:139;;24026:419;;;:::o;24451:::-;24617:4;24655:2;24644:9;24640:18;24632:26;;24704:9;24698:4;24694:20;24690:1;24679:9;24675:17;24668:47;24732:131;24858:4;24732:131;:::i;:::-;24724:139;;24451:419;;;:::o;24876:::-;25042:4;25080:2;25069:9;25065:18;25057:26;;25129:9;25123:4;25119:20;25115:1;25104:9;25100:17;25093:47;25157:131;25283:4;25157:131;:::i;:::-;25149:139;;24876:419;;;:::o;25301:::-;25467:4;25505:2;25494:9;25490:18;25482:26;;25554:9;25548:4;25544:20;25540:1;25529:9;25525:17;25518:47;25582:131;25708:4;25582:131;:::i;:::-;25574:139;;25301:419;;;:::o;25726:::-;25892:4;25930:2;25919:9;25915:18;25907:26;;25979:9;25973:4;25969:20;25965:1;25954:9;25950:17;25943:47;26007:131;26133:4;26007:131;:::i;:::-;25999:139;;25726:419;;;:::o;26151:::-;26317:4;26355:2;26344:9;26340:18;26332:26;;26404:9;26398:4;26394:20;26390:1;26379:9;26375:17;26368:47;26432:131;26558:4;26432:131;:::i;:::-;26424:139;;26151:419;;;:::o;26576:::-;26742:4;26780:2;26769:9;26765:18;26757:26;;26829:9;26823:4;26819:20;26815:1;26804:9;26800:17;26793:47;26857:131;26983:4;26857:131;:::i;:::-;26849:139;;26576:419;;;:::o;27001:::-;27167:4;27205:2;27194:9;27190:18;27182:26;;27254:9;27248:4;27244:20;27240:1;27229:9;27225:17;27218:47;27282:131;27408:4;27282:131;:::i;:::-;27274:139;;27001:419;;;:::o;27426:::-;27592:4;27630:2;27619:9;27615:18;27607:26;;27679:9;27673:4;27669:20;27665:1;27654:9;27650:17;27643:47;27707:131;27833:4;27707:131;:::i;:::-;27699:139;;27426:419;;;:::o;27851:::-;28017:4;28055:2;28044:9;28040:18;28032:26;;28104:9;28098:4;28094:20;28090:1;28079:9;28075:17;28068:47;28132:131;28258:4;28132:131;:::i;:::-;28124:139;;27851:419;;;:::o;28276:222::-;28369:4;28407:2;28396:9;28392:18;28384:26;;28420:71;28488:1;28477:9;28473:17;28464:6;28420:71;:::i;:::-;28276:222;;;;:::o;28504:129::-;28538:6;28565:20;;:::i;:::-;28555:30;;28594:33;28622:4;28614:6;28594:33;:::i;:::-;28504:129;;;:::o;28639:75::-;28672:6;28705:2;28699:9;28689:19;;28639:75;:::o;28720:251::-;28797:4;28887:18;28879:6;28876:30;28873:56;;;28909:18;;:::i;:::-;28873:56;28959:4;28951:6;28947:17;28939:25;;28720:251;;;:::o;28977:307::-;29038:4;29128:18;29120:6;29117:30;29114:56;;;29150:18;;:::i;:::-;29114:56;29188:29;29210:6;29188:29;:::i;:::-;29180:37;;29272:4;29266;29262:15;29254:23;;28977:307;;;:::o;29290:308::-;29352:4;29442:18;29434:6;29431:30;29428:56;;;29464:18;;:::i;:::-;29428:56;29502:29;29524:6;29502:29;:::i;:::-;29494:37;;29586:4;29580;29576:15;29568:23;;29290:308;;;:::o;29604:132::-;29671:4;29694:3;29686:11;;29724:4;29719:3;29715:14;29707:22;;29604:132;;;:::o;29742:141::-;29791:4;29814:3;29806:11;;29837:3;29834:1;29827:14;29871:4;29868:1;29858:18;29850:26;;29742:141;;;:::o;29889:114::-;29956:6;29990:5;29984:12;29974:22;;29889:114;;;:::o;30009:98::-;30060:6;30094:5;30088:12;30078:22;;30009:98;;;:::o;30113:99::-;30165:6;30199:5;30193:12;30183:22;;30113:99;;;:::o;30218:113::-;30288:4;30320;30315:3;30311:14;30303:22;;30218:113;;;:::o;30337:184::-;30436:11;30470:6;30465:3;30458:19;30510:4;30505:3;30501:14;30486:29;;30337:184;;;;:::o;30527:168::-;30610:11;30644:6;30639:3;30632:19;30684:4;30679:3;30675:14;30660:29;;30527:168;;;;:::o;30701:147::-;30802:11;30839:3;30824:18;;30701:147;;;;:::o;30854:169::-;30938:11;30972:6;30967:3;30960:19;31012:4;31007:3;31003:14;30988:29;;30854:169;;;;:::o;31029:148::-;31131:11;31168:3;31153:18;;31029:148;;;;:::o;31183:305::-;31223:3;31242:20;31260:1;31242:20;:::i;:::-;31237:25;;31276:20;31294:1;31276:20;:::i;:::-;31271:25;;31430:1;31362:66;31358:74;31355:1;31352:81;31349:107;;;31436:18;;:::i;:::-;31349:107;31480:1;31477;31473:9;31466:16;;31183:305;;;;:::o;31494:185::-;31534:1;31551:20;31569:1;31551:20;:::i;:::-;31546:25;;31585:20;31603:1;31585:20;:::i;:::-;31580:25;;31624:1;31614:35;;31629:18;;:::i;:::-;31614:35;31671:1;31668;31664:9;31659:14;;31494:185;;;;:::o;31685:348::-;31725:7;31748:20;31766:1;31748:20;:::i;:::-;31743:25;;31782:20;31800:1;31782:20;:::i;:::-;31777:25;;31970:1;31902:66;31898:74;31895:1;31892:81;31887:1;31880:9;31873:17;31869:105;31866:131;;;31977:18;;:::i;:::-;31866:131;32025:1;32022;32018:9;32007:20;;31685:348;;;;:::o;32039:191::-;32079:4;32099:20;32117:1;32099:20;:::i;:::-;32094:25;;32133:20;32151:1;32133:20;:::i;:::-;32128:25;;32172:1;32169;32166:8;32163:34;;;32177:18;;:::i;:::-;32163:34;32222:1;32219;32215:9;32207:17;;32039:191;;;;:::o;32236:96::-;32273:7;32302:24;32320:5;32302:24;:::i;:::-;32291:35;;32236:96;;;:::o;32338:90::-;32372:7;32415:5;32408:13;32401:21;32390:32;;32338:90;;;:::o;32434:149::-;32470:7;32510:66;32503:5;32499:78;32488:89;;32434:149;;;:::o;32589:126::-;32626:7;32666:42;32659:5;32655:54;32644:65;;32589:126;;;:::o;32721:77::-;32758:7;32787:5;32776:16;;32721:77;;;:::o;32804:154::-;32888:6;32883:3;32878;32865:30;32950:1;32941:6;32936:3;32932:16;32925:27;32804:154;;;:::o;32964:307::-;33032:1;33042:113;33056:6;33053:1;33050:13;33042:113;;;33141:1;33136:3;33132:11;33126:18;33122:1;33117:3;33113:11;33106:39;33078:2;33075:1;33071:10;33066:15;;33042:113;;;33173:6;33170:1;33167:13;33164:101;;;33253:1;33244:6;33239:3;33235:16;33228:27;33164:101;33013:258;32964:307;;;:::o;33277:320::-;33321:6;33358:1;33352:4;33348:12;33338:22;;33405:1;33399:4;33395:12;33426:18;33416:81;;33482:4;33474:6;33470:17;33460:27;;33416:81;33544:2;33536:6;33533:14;33513:18;33510:38;33507:84;;;33563:18;;:::i;:::-;33507:84;33328:269;33277:320;;;:::o;33603:281::-;33686:27;33708:4;33686:27;:::i;:::-;33678:6;33674:40;33816:6;33804:10;33801:22;33780:18;33768:10;33765:34;33762:62;33759:88;;;33827:18;;:::i;:::-;33759:88;33867:10;33863:2;33856:22;33646:238;33603:281;;:::o;33890:233::-;33929:3;33952:24;33970:5;33952:24;:::i;:::-;33943:33;;33998:66;33991:5;33988:77;33985:103;;;34068:18;;:::i;:::-;33985:103;34115:1;34108:5;34104:13;34097:20;;33890:233;;;:::o;34129:176::-;34161:1;34178:20;34196:1;34178:20;:::i;:::-;34173:25;;34212:20;34230:1;34212:20;:::i;:::-;34207:25;;34251:1;34241:35;;34256:18;;:::i;:::-;34241:35;34297:1;34294;34290:9;34285:14;;34129:176;;;;:::o;34311:180::-;34359:77;34356:1;34349:88;34456:4;34453:1;34446:15;34480:4;34477:1;34470:15;34497:180;34545:77;34542:1;34535:88;34642:4;34639:1;34632:15;34666:4;34663:1;34656:15;34683:180;34731:77;34728:1;34721:88;34828:4;34825:1;34818:15;34852:4;34849:1;34842:15;34869:180;34917:77;34914:1;34907:88;35014:4;35011:1;35004:15;35038:4;35035:1;35028:15;35055:180;35103:77;35100:1;35093:88;35200:4;35197:1;35190:15;35224:4;35221:1;35214:15;35241:180;35289:77;35286:1;35279:88;35386:4;35383:1;35376:15;35410:4;35407:1;35400:15;35427:117;35536:1;35533;35526:12;35550:117;35659:1;35656;35649:12;35673:117;35782:1;35779;35772:12;35796:117;35905:1;35902;35895:12;35919:117;36028:1;36025;36018:12;36042:102;36083:6;36134:2;36130:7;36125:2;36118:5;36114:14;36110:28;36100:38;;36042:102;;;:::o;36150:230::-;36290:34;36286:1;36278:6;36274:14;36267:58;36359:13;36354:2;36346:6;36342:15;36335:38;36150:230;:::o;36386:237::-;36526:34;36522:1;36514:6;36510:14;36503:58;36595:20;36590:2;36582:6;36578:15;36571:45;36386:237;:::o;36629:225::-;36769:34;36765:1;36757:6;36753:14;36746:58;36838:8;36833:2;36825:6;36821:15;36814:33;36629:225;:::o;36860:224::-;37000:34;36996:1;36988:6;36984:14;36977:58;37069:7;37064:2;37056:6;37052:15;37045:32;36860:224;:::o;37090:178::-;37230:30;37226:1;37218:6;37214:14;37207:54;37090:178;:::o;37274:223::-;37414:34;37410:1;37402:6;37398:14;37391:58;37483:6;37478:2;37470:6;37466:15;37459:31;37274:223;:::o;37503:175::-;37643:27;37639:1;37631:6;37627:14;37620:51;37503:175;:::o;37684:228::-;37824:34;37820:1;37812:6;37808:14;37801:58;37893:11;37888:2;37880:6;37876:15;37869:36;37684:228;:::o;37918:249::-;38058:34;38054:1;38046:6;38042:14;38035:58;38127:32;38122:2;38114:6;38110:15;38103:57;37918:249;:::o;38173:182::-;38313:34;38309:1;38301:6;38297:14;38290:58;38173:182;:::o;38361:::-;38501:34;38497:1;38489:6;38485:14;38478:58;38361:182;:::o;38549:234::-;38689:34;38685:1;38677:6;38673:14;38666:58;38758:17;38753:2;38745:6;38741:15;38734:42;38549:234;:::o;38789:174::-;38929:26;38925:1;38917:6;38913:14;38906:50;38789:174;:::o;38969:220::-;39109:34;39105:1;39097:6;39093:14;39086:58;39178:3;39173:2;39165:6;39161:15;39154:28;38969:220;:::o;39195:114::-;;:::o;39315:231::-;39455:34;39451:1;39443:6;39439:14;39432:58;39524:14;39519:2;39511:6;39507:15;39500:39;39315:231;:::o;39552:233::-;39692:34;39688:1;39680:6;39676:14;39669:58;39761:16;39756:2;39748:6;39744:15;39737:41;39552:233;:::o;39791:122::-;39864:24;39882:5;39864:24;:::i;:::-;39857:5;39854:35;39844:63;;39903:1;39900;39893:12;39844:63;39791:122;:::o;39919:116::-;39989:21;40004:5;39989:21;:::i;:::-;39982:5;39979:32;39969:60;;40025:1;40022;40015:12;39969:60;39919:116;:::o;40041:120::-;40113:23;40130:5;40113:23;:::i;:::-;40106:5;40103:34;40093:62;;40151:1;40148;40141:12;40093:62;40041:120;:::o;40167:122::-;40240:24;40258:5;40240:24;:::i;:::-;40233:5;40230:35;40220:63;;40279:1;40276;40269:12;40220:63;40167:122;:::o

Swarm Source

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