Address Details
contract
token

0x9Eb93784f82CCb7511888f9A13aCE9fc3EaF6771

Token
Token Prophets Alpha (TPA)
Creator
0x7452ee–7080de at 0x72c89f–de7d0e
Balance
0.507 CELO ( )
Locked CELO Balance
0.00 CELO
Voting CELO Balance
0.00 CELO
Pending Unlocked Gold
0.00 CELO
Tokens
Fetching tokens...
Transactions
1 Transactions
Transfers
1 Transfers
Gas Used
379,447
Last Balance Update
17604232
This contract has been verified via Sourcify. View contract in Sourcify repository
Contract name:
TokenProphetsAlpha




Optimization enabled
false
Compiler version
v0.8.18+commit.87f61d96




EVM Version
paris




Verified at
2023-05-06T16:44:41.129186Z

TPA.sol

/**
 *Submitted for verification at Etherscan.io on 2023-04-29
*/

/**
 *Submitted for verification at Etherscan.io on 2022-08-13
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/ClubManny.sol


pragma solidity >=0.7.0 <0.9.0;



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

  string public baseURI = "ipfs://QmPPWx2Xpkg7qdQjGHAFGeugWP5E6vqbeHmoiPDoZNJ3N2/1.json";

  uint256 public cost = 0.0169 ether;
  uint256 public maxSupply = 150;
  uint256 public maxMintAmount = 4;
  uint256 public nftPerAddressLimit = 150;
  bool public paused = false;
  bool public onlyWhitelisted = false;
  address[] public whitelistedAddresses;
  string _name = "Token Prophets Alpha";
  string _symbol = "TPA";





  mapping(address => uint256) public addressMintedBalance;
  constructor(
    //string memory _initBaseURI
  ) ERC721(_name, _symbol) {
    //setBaseURI(_initBaseURI);
  }

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

  function getOwner() public view returns(address){
    return owner();

  }
  // public
  function mint(uint256 _mintAmount) public payable {
    require(!paused, "the contract is paused");
    uint256 supply = totalSupply();
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded");
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

    if (msg.sender != owner()) {
        if(onlyWhitelisted == true) {
            require(isWhitelisted(msg.sender), "user is not whitelisted");
            uint256 ownerMintedCount = addressMintedBalance[msg.sender];
            require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded");
        }
        require(msg.value >= cost * _mintAmount, "insufficient funds");
    }
    for (uint256 i = 1; i <= _mintAmount; i++) {
        uint256 ownerMintedCount = addressMintedBalance[msg.sender];
        require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded");
        addressMintedBalance[msg.sender]++;
        _safeMint(msg.sender, supply+i);
    }
  }
  
  function isWhitelisted(address _user) public view returns (bool) {
    for (uint i = 0; i < whitelistedAddresses.length; i++) {
      if (whitelistedAddresses[i] == _user) {
          return true;
      }
    }
    return false;
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }
  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );


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

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

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

  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }
  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
  
  function setOnlyWhitelisted(bool _state) public onlyOwner {
    onlyWhitelisted = _state;
  }
  
  function whitelistUsers(address[] calldata _users) public onlyOwner {
    delete whitelistedAddresses;
    whitelistedAddresses = _users;
  }
 
  function withdraw() public payable onlyOwner {
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }
}
        

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[]},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"approved","internalType":"address","indexed":true},{"type":"uint256","name":"tokenId","internalType":"uint256","indexed":true}],"anonymous":false},{"type":"event","name":"ApprovalForAll","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"operator","internalType":"address","indexed":true},{"type":"bool","name":"approved","internalType":"bool","indexed":false}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"tokenId","internalType":"uint256","indexed":true}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"addressMintedBalance","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"approve","inputs":[{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"owner","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"baseURI","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"cost","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"getApproved","inputs":[{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"getOwner","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isApprovedForAll","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"operator","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isWhitelisted","inputs":[{"type":"address","name":"_user","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"maxMintAmount","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"maxSupply","inputs":[]},{"type":"function","stateMutability":"payable","outputs":[],"name":"mint","inputs":[{"type":"uint256","name":"_mintAmount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"nftPerAddressLimit","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"onlyWhitelisted","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"ownerOf","inputs":[{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"pause","inputs":[{"type":"bool","name":"_state","internalType":"bool"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"paused","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"safeTransferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"safeTransferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"tokenId","internalType":"uint256"},{"type":"bytes","name":"_data","internalType":"bytes"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setApprovalForAll","inputs":[{"type":"address","name":"operator","internalType":"address"},{"type":"bool","name":"approved","internalType":"bool"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setBaseURI","inputs":[{"type":"string","name":"_newBaseURI","internalType":"string"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setCost","inputs":[{"type":"uint256","name":"_newCost","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setNftPerAddressLimit","inputs":[{"type":"uint256","name":"_limit","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setOnlyWhitelisted","inputs":[{"type":"bool","name":"_state","internalType":"bool"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setmaxMintAmount","inputs":[{"type":"uint256","name":"_newmaxMintAmount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"supportsInterface","inputs":[{"type":"bytes4","name":"interfaceId","internalType":"bytes4"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"tokenByIndex","inputs":[{"type":"uint256","name":"index","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"tokenOfOwnerByIndex","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"uint256","name":"index","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"tokenURI","inputs":[{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferFrom","inputs":[{"type":"address","name":"from","internalType":"address"},{"type":"address","name":"to","internalType":"address"},{"type":"uint256","name":"tokenId","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256[]","name":"","internalType":"uint256[]"}],"name":"walletOfOwner","inputs":[{"type":"address","name":"_owner","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"whitelistUsers","inputs":[{"type":"address[]","name":"_users","internalType":"address[]"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"whitelistedAddresses","inputs":[{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"payable","outputs":[],"name":"withdraw","inputs":[]}]
              

Contract Creation Code

0x60806040526040518060600160405280603c81526020016200520f603c9139600b90816200002e9190620005d5565b50663c0a75e0b44000600c556096600d556004600e556096600f556000601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff0219169083151502179055506040518060400160405280601481526020017f546f6b656e2050726f706865747320416c70686100000000000000000000000081525060129081620000c59190620005d5565b506040518060400160405280600381526020017f5450410000000000000000000000000000000000000000000000000000000000815250601390816200010c9190620005d5565b503480156200011a57600080fd5b50601280546200012a90620003c4565b80601f01602080910402602001604051908101604052809291908181526020018280546200015890620003c4565b8015620001a95780601f106200017d57610100808354040283529160200191620001a9565b820191906000526020600020905b8154815290600101906020018083116200018b57829003601f168201915b505050505060138054620001bd90620003c4565b80601f0160208091040260200160405190810160405280929190818152602001828054620001eb90620003c4565b80156200023c5780601f1062000210576101008083540402835291602001916200023c565b820191906000526020600020905b8154815290600101906020018083116200021e57829003601f168201915b50505050508160009081620002529190620005d5565b508060019081620002649190620005d5565b505050620002876200027b6200028d60201b60201c565b6200029560201b60201c565b620006bc565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003dd57607f821691505b602082108103620003f357620003f262000395565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200045d7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200041e565b6200046986836200041e565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620004b6620004b0620004aa8462000481565b6200048b565b62000481565b9050919050565b6000819050919050565b620004d28362000495565b620004ea620004e182620004bd565b8484546200042b565b825550505050565b600090565b62000501620004f2565b6200050e818484620004c7565b505050565b5b8181101562000536576200052a600082620004f7565b60018101905062000514565b5050565b601f82111562000585576200054f81620003f9565b6200055a846200040e565b810160208510156200056a578190505b6200058262000579856200040e565b83018262000513565b50505b505050565b600082821c905092915050565b6000620005aa600019846008026200058a565b1980831691505092915050565b6000620005c5838362000597565b9150826002028217905092915050565b620005e0826200035b565b67ffffffffffffffff811115620005fc57620005fb62000366565b5b620006088254620003c4565b620006158282856200053a565b600060209050601f8311600181146200064d576000841562000638578287015190505b620006448582620005b7565b865550620006b4565b601f1984166200065d86620003f9565b60005b82811015620006875784890151825560018201915060208501945060208101905062000660565b86831015620006a75784890151620006a3601f89168262000597565b8355505b6001600288020188555050505b505050505050565b614b4380620006cc6000396000f3fe60806040526004361061023b5760003560e01c80636352211e1161012e578063a22cb465116100ab578063d0eb26b01161006f578063d0eb26b01461088f578063d5abeb01146108b8578063e985e9c5146108e3578063edec5f2714610920578063f2fde38b146109495761023b565b8063a22cb46514610798578063b88d4fde146107c1578063ba4e5c49146107ea578063ba7d2c7614610827578063c87b56dd146108525761023b565b8063893d20e8116100f2578063893d20e8146106d05780638da5cb5b146106fb57806395d89b41146107265780639c70b51214610751578063a0712d681461077c5761023b565b80636352211e146105eb5780636c0360eb1461062857806370a0823114610653578063715018a6146106905780637f00c7a6146106a75761023b565b80632f745c59116101bc578063438b630011610180578063438b6300146104f457806344a0d68a146105315780634f6ccce71461055a57806355f804b3146105975780635c975abb146105c05761023b565b80632f745c591461041e5780633af32abf1461045b5780633c952764146104985780633ccfd60b146104c157806342842e0e146104cb5761023b565b806313faede61161020357806313faede61461033757806318160ddd1461036257806318cae2691461038d578063239c70ae146103ca57806323b872dd146103f55761023b565b806301ffc9a71461024057806302329a291461027d57806306fdde03146102a6578063081812fc146102d1578063095ea7b31461030e575b600080fd5b34801561024c57600080fd5b506102676004803603810190610262919061307c565b610972565b60405161027491906130c4565b60405180910390f35b34801561028957600080fd5b506102a4600480360381019061029f919061310b565b6109ec565b005b3480156102b257600080fd5b506102bb610a85565b6040516102c891906131c8565b60405180910390f35b3480156102dd57600080fd5b506102f860048036038101906102f39190613220565b610b17565b604051610305919061328e565b60405180910390f35b34801561031a57600080fd5b50610335600480360381019061033091906132d5565b610b9c565b005b34801561034357600080fd5b5061034c610cb3565b6040516103599190613324565b60405180910390f35b34801561036e57600080fd5b50610377610cb9565b6040516103849190613324565b60405180910390f35b34801561039957600080fd5b506103b460048036038101906103af919061333f565b610cc6565b6040516103c19190613324565b60405180910390f35b3480156103d657600080fd5b506103df610cde565b6040516103ec9190613324565b60405180910390f35b34801561040157600080fd5b5061041c6004803603810190610417919061336c565b610ce4565b005b34801561042a57600080fd5b50610445600480360381019061044091906132d5565b610d44565b6040516104529190613324565b60405180910390f35b34801561046757600080fd5b50610482600480360381019061047d919061333f565b610de9565b60405161048f91906130c4565b60405180910390f35b3480156104a457600080fd5b506104bf60048036038101906104ba919061310b565b610e97565b005b6104c9610f30565b005b3480156104d757600080fd5b506104f260048036038101906104ed919061336c565b61102c565b005b34801561050057600080fd5b5061051b6004803603810190610516919061333f565b61104c565b604051610528919061347d565b60405180910390f35b34801561053d57600080fd5b5061055860048036038101906105539190613220565b6110fa565b005b34801561056657600080fd5b50610581600480360381019061057c9190613220565b611180565b60405161058e9190613324565b60405180910390f35b3480156105a357600080fd5b506105be60048036038101906105b991906135d4565b6111f1565b005b3480156105cc57600080fd5b506105d5611280565b6040516105e291906130c4565b60405180910390f35b3480156105f757600080fd5b50610612600480360381019061060d9190613220565b611293565b60405161061f919061328e565b60405180910390f35b34801561063457600080fd5b5061063d611344565b60405161064a91906131c8565b60405180910390f35b34801561065f57600080fd5b5061067a6004803603810190610675919061333f565b6113d2565b6040516106879190613324565b60405180910390f35b34801561069c57600080fd5b506106a5611489565b005b3480156106b357600080fd5b506106ce60048036038101906106c99190613220565b611511565b005b3480156106dc57600080fd5b506106e5611597565b6040516106f2919061328e565b60405180910390f35b34801561070757600080fd5b506107106115a6565b60405161071d919061328e565b60405180910390f35b34801561073257600080fd5b5061073b6115d0565b60405161074891906131c8565b60405180910390f35b34801561075d57600080fd5b50610766611662565b60405161077391906130c4565b60405180910390f35b61079660048036038101906107919190613220565b611675565b005b3480156107a457600080fd5b506107bf60048036038101906107ba919061361d565b611a52565b005b3480156107cd57600080fd5b506107e860048036038101906107e391906136fe565b611a68565b005b3480156107f657600080fd5b50610811600480360381019061080c9190613220565b611aca565b60405161081e919061328e565b60405180910390f35b34801561083357600080fd5b5061083c611b09565b6040516108499190613324565b60405180910390f35b34801561085e57600080fd5b5061087960048036038101906108749190613220565b611b0f565b60405161088691906131c8565b60405180910390f35b34801561089b57600080fd5b506108b660048036038101906108b19190613220565b611bac565b005b3480156108c457600080fd5b506108cd611c32565b6040516108da9190613324565b60405180910390f35b3480156108ef57600080fd5b5061090a60048036038101906109059190613781565b611c38565b60405161091791906130c4565b60405180910390f35b34801561092c57600080fd5b5061094760048036038101906109429190613821565b611ccc565b005b34801561095557600080fd5b50610970600480360381019061096b919061333f565b611d6c565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109e557506109e482611e63565b5b9050919050565b6109f4611f45565b73ffffffffffffffffffffffffffffffffffffffff16610a126115a6565b73ffffffffffffffffffffffffffffffffffffffff1614610a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5f906138ba565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b606060008054610a9490613909565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac090613909565b8015610b0d5780601f10610ae257610100808354040283529160200191610b0d565b820191906000526020600020905b815481529060010190602001808311610af057829003601f168201915b5050505050905090565b6000610b2282611f4d565b610b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b58906139ac565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ba782611293565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0e90613a3e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c36611f45565b73ffffffffffffffffffffffffffffffffffffffff161480610c655750610c6481610c5f611f45565b611c38565b5b610ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9b90613ad0565b60405180910390fd5b610cae8383611fb9565b505050565b600c5481565b6000600880549050905090565b60146020528060005260406000206000915090505481565b600e5481565b610cf5610cef611f45565b82612072565b610d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2b90613b62565b60405180910390fd5b610d3f838383612150565b505050565b6000610d4f836113d2565b8210610d90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8790613bf4565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600080600090505b601180549050811015610e8c578273ffffffffffffffffffffffffffffffffffffffff1660118281548110610e2957610e28613c14565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610e79576001915050610e92565b8080610e8490613c72565b915050610df1565b50600090505b919050565b610e9f611f45565b73ffffffffffffffffffffffffffffffffffffffff16610ebd6115a6565b73ffffffffffffffffffffffffffffffffffffffff1614610f13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0a906138ba565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b610f38611f45565b73ffffffffffffffffffffffffffffffffffffffff16610f566115a6565b73ffffffffffffffffffffffffffffffffffffffff1614610fac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa3906138ba565b60405180910390fd5b6000610fb66115a6565b73ffffffffffffffffffffffffffffffffffffffff1647604051610fd990613ceb565b60006040518083038185875af1925050503d8060008114611016576040519150601f19603f3d011682016040523d82523d6000602084013e61101b565b606091505b505090508061102957600080fd5b50565b61104783838360405180602001604052806000815250611a68565b505050565b60606000611059836113d2565b905060008167ffffffffffffffff811115611077576110766134a9565b5b6040519080825280602002602001820160405280156110a55781602001602082028036833780820191505090505b50905060005b828110156110ef576110bd8582610d44565b8282815181106110d0576110cf613c14565b5b60200260200101818152505080806110e790613c72565b9150506110ab565b508092505050919050565b611102611f45565b73ffffffffffffffffffffffffffffffffffffffff166111206115a6565b73ffffffffffffffffffffffffffffffffffffffff1614611176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116d906138ba565b60405180910390fd5b80600c8190555050565b600061118a610cb9565b82106111cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c290613d72565b60405180910390fd5b600882815481106111df576111de613c14565b5b90600052602060002001549050919050565b6111f9611f45565b73ffffffffffffffffffffffffffffffffffffffff166112176115a6565b73ffffffffffffffffffffffffffffffffffffffff161461126d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611264906138ba565b60405180910390fd5b80600b908161127c9190613f3e565b5050565b601060009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361133b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133290614082565b60405180910390fd5b80915050919050565b600b805461135190613909565b80601f016020809104026020016040519081016040528092919081815260200182805461137d90613909565b80156113ca5780601f1061139f576101008083540402835291602001916113ca565b820191906000526020600020905b8154815290600101906020018083116113ad57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611442576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143990614114565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611491611f45565b73ffffffffffffffffffffffffffffffffffffffff166114af6115a6565b73ffffffffffffffffffffffffffffffffffffffff1614611505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fc906138ba565b60405180910390fd5b61150f60006123ab565b565b611519611f45565b73ffffffffffffffffffffffffffffffffffffffff166115376115a6565b73ffffffffffffffffffffffffffffffffffffffff161461158d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611584906138ba565b60405180910390fd5b80600e8190555050565b60006115a16115a6565b905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546115df90613909565b80601f016020809104026020016040519081016040528092919081815260200182805461160b90613909565b80156116585780601f1061162d57610100808354040283529160200191611658565b820191906000526020600020905b81548152906001019060200180831161163b57829003601f168201915b5050505050905090565b601060019054906101000a900460ff1681565b601060009054906101000a900460ff16156116c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bc90614180565b60405180910390fd5b60006116cf610cb9565b905060008211611714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170b906141ec565b60405180910390fd5b600e54821115611759576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117509061427e565b60405180910390fd5b600d548282611768919061429e565b11156117a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a09061431e565b60405180910390fd5b6117b16115a6565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461192d5760011515601060019054906101000a900460ff161515036118dc5761180733610de9565b611846576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183d9061438a565b60405180910390fd5b6000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600f548382611899919061429e565b11156118da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d1906143f6565b60405180910390fd5b505b81600c546118ea9190614416565b34101561192c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611923906144a4565b60405180910390fd5b5b6000600190505b828111611a4d576000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600f54848261198e919061429e565b11156119cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c6906143f6565b60405180910390fd5b601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611a1f90613c72565b9190505550611a39338385611a34919061429e565b612471565b508080611a4590613c72565b915050611934565b505050565b611a64611a5d611f45565b838361248f565b5050565b611a79611a73611f45565b83612072565b611ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aaf90613b62565b60405180910390fd5b611ac4848484846125fb565b50505050565b60118181548110611ada57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f5481565b6060611b1a82611f4d565b611b59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5090614536565b60405180910390fd5b6000611b63612657565b90506000815111611b835760405180602001604052806000815250611ba4565b80604051602001611b949190614592565b6040516020818303038152906040525b915050919050565b611bb4611f45565b73ffffffffffffffffffffffffffffffffffffffff16611bd26115a6565b73ffffffffffffffffffffffffffffffffffffffff1614611c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1f906138ba565b60405180910390fd5b80600f8190555050565b600d5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cd4611f45565b73ffffffffffffffffffffffffffffffffffffffff16611cf26115a6565b73ffffffffffffffffffffffffffffffffffffffff1614611d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3f906138ba565b60405180910390fd5b60116000611d569190612f32565b818160119190611d67929190612f53565b505050565b611d74611f45565b73ffffffffffffffffffffffffffffffffffffffff16611d926115a6565b73ffffffffffffffffffffffffffffffffffffffff1614611de8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddf906138ba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4e9061461b565b60405180910390fd5b611e60816123ab565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611f2e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611f3e5750611f3d826126e9565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661202c83611293565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061207d82611f4d565b6120bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b3906146ad565b60405180910390fd5b60006120c783611293565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061213657508373ffffffffffffffffffffffffffffffffffffffff1661211e84610b17565b73ffffffffffffffffffffffffffffffffffffffff16145b8061214757506121468185611c38565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661217082611293565b73ffffffffffffffffffffffffffffffffffffffff16146121c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bd9061473f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222c906147d1565b60405180910390fd5b612240838383612753565b61224b600082611fb9565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461229b91906147f1565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122f2919061429e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61248b828260405180602001604052806000815250612865565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036124fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f490614871565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125ee91906130c4565b60405180910390a3505050565b612606848484612150565b612612848484846128c0565b612651576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264890614903565b60405180910390fd5b50505050565b6060600b805461266690613909565b80601f016020809104026020016040519081016040528092919081815260200182805461269290613909565b80156126df5780601f106126b4576101008083540402835291602001916126df565b820191906000526020600020905b8154815290600101906020018083116126c257829003601f168201915b5050505050905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61275e838383612a47565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036127a05761279b81612a4c565b6127df565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146127de576127dd8382612a95565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036128215761281c81612c02565b612860565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461285f5761285e8282612cd3565b5b5b505050565b61286f8383612d52565b61287c60008484846128c0565b6128bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b290614903565b60405180910390fd5b505050565b60006128e18473ffffffffffffffffffffffffffffffffffffffff16612f1f565b15612a3a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261290a611f45565b8786866040518563ffffffff1660e01b815260040161292c9493929190614978565b6020604051808303816000875af192505050801561296857506040513d601f19601f8201168201806040525081019061296591906149d9565b60015b6129ea573d8060008114612998576040519150601f19603f3d011682016040523d82523d6000602084013e61299d565b606091505b5060008151036129e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d990614903565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a3f565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612aa2846113d2565b612aac91906147f1565b9050600060076000848152602001908152602001600020549050818114612b91576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612c1691906147f1565b9050600060096000848152602001908152602001600020549050600060088381548110612c4657612c45613c14565b5b906000526020600020015490508060088381548110612c6857612c67613c14565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612cb757612cb6614a06565b5b6001900381819060005260206000200160009055905550505050565b6000612cde836113d2565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db890614a81565b60405180910390fd5b612dca81611f4d565b15612e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0190614aed565b60405180910390fd5b612e1660008383612753565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e66919061429e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b5080546000825590600052602060002090810190612f509190612ff3565b50565b828054828255906000526020600020908101928215612fe2579160200282015b82811115612fe157823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190612f73565b5b509050612fef9190612ff3565b5090565b5b8082111561300c576000816000905550600101612ff4565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61305981613024565b811461306457600080fd5b50565b60008135905061307681613050565b92915050565b6000602082840312156130925761309161301a565b5b60006130a084828501613067565b91505092915050565b60008115159050919050565b6130be816130a9565b82525050565b60006020820190506130d960008301846130b5565b92915050565b6130e8816130a9565b81146130f357600080fd5b50565b600081359050613105816130df565b92915050565b6000602082840312156131215761312061301a565b5b600061312f848285016130f6565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613172578082015181840152602081019050613157565b60008484015250505050565b6000601f19601f8301169050919050565b600061319a82613138565b6131a48185613143565b93506131b4818560208601613154565b6131bd8161317e565b840191505092915050565b600060208201905081810360008301526131e2818461318f565b905092915050565b6000819050919050565b6131fd816131ea565b811461320857600080fd5b50565b60008135905061321a816131f4565b92915050565b6000602082840312156132365761323561301a565b5b60006132448482850161320b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006132788261324d565b9050919050565b6132888161326d565b82525050565b60006020820190506132a3600083018461327f565b92915050565b6132b28161326d565b81146132bd57600080fd5b50565b6000813590506132cf816132a9565b92915050565b600080604083850312156132ec576132eb61301a565b5b60006132fa858286016132c0565b925050602061330b8582860161320b565b9150509250929050565b61331e816131ea565b82525050565b60006020820190506133396000830184613315565b92915050565b6000602082840312156133555761335461301a565b5b6000613363848285016132c0565b91505092915050565b6000806000606084860312156133855761338461301a565b5b6000613393868287016132c0565b93505060206133a4868287016132c0565b92505060406133b58682870161320b565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6133f4816131ea565b82525050565b600061340683836133eb565b60208301905092915050565b6000602082019050919050565b600061342a826133bf565b61343481856133ca565b935061343f836133db565b8060005b8381101561347057815161345788826133fa565b975061346283613412565b925050600181019050613443565b5085935050505092915050565b60006020820190508181036000830152613497818461341f565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6134e18261317e565b810181811067ffffffffffffffff82111715613500576134ff6134a9565b5b80604052505050565b6000613513613010565b905061351f82826134d8565b919050565b600067ffffffffffffffff82111561353f5761353e6134a9565b5b6135488261317e565b9050602081019050919050565b82818337600083830152505050565b600061357761357284613524565b613509565b905082815260208101848484011115613593576135926134a4565b5b61359e848285613555565b509392505050565b600082601f8301126135bb576135ba61349f565b5b81356135cb848260208601613564565b91505092915050565b6000602082840312156135ea576135e961301a565b5b600082013567ffffffffffffffff8111156136085761360761301f565b5b613614848285016135a6565b91505092915050565b600080604083850312156136345761363361301a565b5b6000613642858286016132c0565b9250506020613653858286016130f6565b9150509250929050565b600067ffffffffffffffff821115613678576136776134a9565b5b6136818261317e565b9050602081019050919050565b60006136a161369c8461365d565b613509565b9050828152602081018484840111156136bd576136bc6134a4565b5b6136c8848285613555565b509392505050565b600082601f8301126136e5576136e461349f565b5b81356136f584826020860161368e565b91505092915050565b600080600080608085870312156137185761371761301a565b5b6000613726878288016132c0565b9450506020613737878288016132c0565b93505060406137488782880161320b565b925050606085013567ffffffffffffffff8111156137695761376861301f565b5b613775878288016136d0565b91505092959194509250565b600080604083850312156137985761379761301a565b5b60006137a6858286016132c0565b92505060206137b7858286016132c0565b9150509250929050565b600080fd5b600080fd5b60008083601f8401126137e1576137e061349f565b5b8235905067ffffffffffffffff8111156137fe576137fd6137c1565b5b60208301915083602082028301111561381a576138196137c6565b5b9250929050565b600080602083850312156138385761383761301a565b5b600083013567ffffffffffffffff8111156138565761385561301f565b5b613862858286016137cb565b92509250509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006138a4602083613143565b91506138af8261386e565b602082019050919050565b600060208201905081810360008301526138d381613897565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061392157607f821691505b602082108103613934576139336138da565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613996602c83613143565b91506139a18261393a565b604082019050919050565b600060208201905081810360008301526139c581613989565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613a28602183613143565b9150613a33826139cc565b604082019050919050565b60006020820190508181036000830152613a5781613a1b565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613aba603883613143565b9150613ac582613a5e565b604082019050919050565b60006020820190508181036000830152613ae981613aad565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613b4c603183613143565b9150613b5782613af0565b604082019050919050565b60006020820190508181036000830152613b7b81613b3f565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000613bde602b83613143565b9150613be982613b82565b604082019050919050565b60006020820190508181036000830152613c0d81613bd1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613c7d826131ea565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613caf57613cae613c43565b5b600182019050919050565b600081905092915050565b50565b6000613cd5600083613cba565b9150613ce082613cc5565b600082019050919050565b6000613cf682613cc8565b9150819050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000613d5c602c83613143565b9150613d6782613d00565b604082019050919050565b60006020820190508181036000830152613d8b81613d4f565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613df47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613db7565b613dfe8683613db7565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613e3b613e36613e31846131ea565b613e16565b6131ea565b9050919050565b6000819050919050565b613e5583613e20565b613e69613e6182613e42565b848454613dc4565b825550505050565b600090565b613e7e613e71565b613e89818484613e4c565b505050565b5b81811015613ead57613ea2600082613e76565b600181019050613e8f565b5050565b601f821115613ef257613ec381613d92565b613ecc84613da7565b81016020851015613edb578190505b613eef613ee785613da7565b830182613e8e565b50505b505050565b600082821c905092915050565b6000613f1560001984600802613ef7565b1980831691505092915050565b6000613f2e8383613f04565b9150826002028217905092915050565b613f4782613138565b67ffffffffffffffff811115613f6057613f5f6134a9565b5b613f6a8254613909565b613f75828285613eb1565b600060209050601f831160018114613fa85760008415613f96578287015190505b613fa08582613f22565b865550614008565b601f198416613fb686613d92565b60005b82811015613fde57848901518255600182019150602085019450602081019050613fb9565b86831015613ffb5784890151613ff7601f891682613f04565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b600061406c602983613143565b915061407782614010565b604082019050919050565b6000602082019050818103600083015261409b8161405f565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006140fe602a83613143565b9150614109826140a2565b604082019050919050565b6000602082019050818103600083015261412d816140f1565b9050919050565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b600061416a601683613143565b915061417582614134565b602082019050919050565b600060208201905081810360008301526141998161415d565b9050919050565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b60006141d6601b83613143565b91506141e1826141a0565b602082019050919050565b60006020820190508181036000830152614205816141c9565b9050919050565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b6000614268602483613143565b91506142738261420c565b604082019050919050565b600060208201905081810360008301526142978161425b565b9050919050565b60006142a9826131ea565b91506142b4836131ea565b92508282019050808211156142cc576142cb613c43565b5b92915050565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b6000614308601683613143565b9150614313826142d2565b602082019050919050565b60006020820190508181036000830152614337816142fb565b9050919050565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b6000614374601783613143565b915061437f8261433e565b602082019050919050565b600060208201905081810360008301526143a381614367565b9050919050565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b60006143e0601c83613143565b91506143eb826143aa565b602082019050919050565b6000602082019050818103600083015261440f816143d3565b9050919050565b6000614421826131ea565b915061442c836131ea565b925082820261443a816131ea565b9150828204841483151761445157614450613c43565b5b5092915050565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b600061448e601283613143565b915061449982614458565b602082019050919050565b600060208201905081810360008301526144bd81614481565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614520602f83613143565b915061452b826144c4565b604082019050919050565b6000602082019050818103600083015261454f81614513565b9050919050565b600081905092915050565b600061456c82613138565b6145768185614556565b9350614586818560208601613154565b80840191505092915050565b600061459e8284614561565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614605602683613143565b9150614610826145a9565b604082019050919050565b60006020820190508181036000830152614634816145f8565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614697602c83613143565b91506146a28261463b565b604082019050919050565b600060208201905081810360008301526146c68161468a565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000614729602983613143565b9150614734826146cd565b604082019050919050565b600060208201905081810360008301526147588161471c565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006147bb602483613143565b91506147c68261475f565b604082019050919050565b600060208201905081810360008301526147ea816147ae565b9050919050565b60006147fc826131ea565b9150614807836131ea565b925082820390508181111561481f5761481e613c43565b5b92915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061485b601983613143565b915061486682614825565b602082019050919050565b6000602082019050818103600083015261488a8161484e565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006148ed603283613143565b91506148f882614891565b604082019050919050565b6000602082019050818103600083015261491c816148e0565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061494a82614923565b614954818561492e565b9350614964818560208601613154565b61496d8161317e565b840191505092915050565b600060808201905061498d600083018761327f565b61499a602083018661327f565b6149a76040830185613315565b81810360608301526149b9818461493f565b905095945050505050565b6000815190506149d381613050565b92915050565b6000602082840312156149ef576149ee61301a565b5b60006149fd848285016149c4565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614a6b602083613143565b9150614a7682614a35565b602082019050919050565b60006020820190508181036000830152614a9a81614a5e565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614ad7601c83613143565b9150614ae282614aa1565b602082019050919050565b60006020820190508181036000830152614b0681614aca565b905091905056fea26469706673582212205bfc9d57762d45a607e018d85567334016edd5ef314fdb7f4abf7d92bcb14c5864736f6c63430008120033697066733a2f2f516d505057783258706b67377164516a4748414647657567575035453676716265486d6f6950446f5a4e4a334e322f312e6a736f6e

Deployed ByteCode

0x60806040526004361061023b5760003560e01c80636352211e1161012e578063a22cb465116100ab578063d0eb26b01161006f578063d0eb26b01461088f578063d5abeb01146108b8578063e985e9c5146108e3578063edec5f2714610920578063f2fde38b146109495761023b565b8063a22cb46514610798578063b88d4fde146107c1578063ba4e5c49146107ea578063ba7d2c7614610827578063c87b56dd146108525761023b565b8063893d20e8116100f2578063893d20e8146106d05780638da5cb5b146106fb57806395d89b41146107265780639c70b51214610751578063a0712d681461077c5761023b565b80636352211e146105eb5780636c0360eb1461062857806370a0823114610653578063715018a6146106905780637f00c7a6146106a75761023b565b80632f745c59116101bc578063438b630011610180578063438b6300146104f457806344a0d68a146105315780634f6ccce71461055a57806355f804b3146105975780635c975abb146105c05761023b565b80632f745c591461041e5780633af32abf1461045b5780633c952764146104985780633ccfd60b146104c157806342842e0e146104cb5761023b565b806313faede61161020357806313faede61461033757806318160ddd1461036257806318cae2691461038d578063239c70ae146103ca57806323b872dd146103f55761023b565b806301ffc9a71461024057806302329a291461027d57806306fdde03146102a6578063081812fc146102d1578063095ea7b31461030e575b600080fd5b34801561024c57600080fd5b506102676004803603810190610262919061307c565b610972565b60405161027491906130c4565b60405180910390f35b34801561028957600080fd5b506102a4600480360381019061029f919061310b565b6109ec565b005b3480156102b257600080fd5b506102bb610a85565b6040516102c891906131c8565b60405180910390f35b3480156102dd57600080fd5b506102f860048036038101906102f39190613220565b610b17565b604051610305919061328e565b60405180910390f35b34801561031a57600080fd5b50610335600480360381019061033091906132d5565b610b9c565b005b34801561034357600080fd5b5061034c610cb3565b6040516103599190613324565b60405180910390f35b34801561036e57600080fd5b50610377610cb9565b6040516103849190613324565b60405180910390f35b34801561039957600080fd5b506103b460048036038101906103af919061333f565b610cc6565b6040516103c19190613324565b60405180910390f35b3480156103d657600080fd5b506103df610cde565b6040516103ec9190613324565b60405180910390f35b34801561040157600080fd5b5061041c6004803603810190610417919061336c565b610ce4565b005b34801561042a57600080fd5b50610445600480360381019061044091906132d5565b610d44565b6040516104529190613324565b60405180910390f35b34801561046757600080fd5b50610482600480360381019061047d919061333f565b610de9565b60405161048f91906130c4565b60405180910390f35b3480156104a457600080fd5b506104bf60048036038101906104ba919061310b565b610e97565b005b6104c9610f30565b005b3480156104d757600080fd5b506104f260048036038101906104ed919061336c565b61102c565b005b34801561050057600080fd5b5061051b6004803603810190610516919061333f565b61104c565b604051610528919061347d565b60405180910390f35b34801561053d57600080fd5b5061055860048036038101906105539190613220565b6110fa565b005b34801561056657600080fd5b50610581600480360381019061057c9190613220565b611180565b60405161058e9190613324565b60405180910390f35b3480156105a357600080fd5b506105be60048036038101906105b991906135d4565b6111f1565b005b3480156105cc57600080fd5b506105d5611280565b6040516105e291906130c4565b60405180910390f35b3480156105f757600080fd5b50610612600480360381019061060d9190613220565b611293565b60405161061f919061328e565b60405180910390f35b34801561063457600080fd5b5061063d611344565b60405161064a91906131c8565b60405180910390f35b34801561065f57600080fd5b5061067a6004803603810190610675919061333f565b6113d2565b6040516106879190613324565b60405180910390f35b34801561069c57600080fd5b506106a5611489565b005b3480156106b357600080fd5b506106ce60048036038101906106c99190613220565b611511565b005b3480156106dc57600080fd5b506106e5611597565b6040516106f2919061328e565b60405180910390f35b34801561070757600080fd5b506107106115a6565b60405161071d919061328e565b60405180910390f35b34801561073257600080fd5b5061073b6115d0565b60405161074891906131c8565b60405180910390f35b34801561075d57600080fd5b50610766611662565b60405161077391906130c4565b60405180910390f35b61079660048036038101906107919190613220565b611675565b005b3480156107a457600080fd5b506107bf60048036038101906107ba919061361d565b611a52565b005b3480156107cd57600080fd5b506107e860048036038101906107e391906136fe565b611a68565b005b3480156107f657600080fd5b50610811600480360381019061080c9190613220565b611aca565b60405161081e919061328e565b60405180910390f35b34801561083357600080fd5b5061083c611b09565b6040516108499190613324565b60405180910390f35b34801561085e57600080fd5b5061087960048036038101906108749190613220565b611b0f565b60405161088691906131c8565b60405180910390f35b34801561089b57600080fd5b506108b660048036038101906108b19190613220565b611bac565b005b3480156108c457600080fd5b506108cd611c32565b6040516108da9190613324565b60405180910390f35b3480156108ef57600080fd5b5061090a60048036038101906109059190613781565b611c38565b60405161091791906130c4565b60405180910390f35b34801561092c57600080fd5b5061094760048036038101906109429190613821565b611ccc565b005b34801561095557600080fd5b50610970600480360381019061096b919061333f565b611d6c565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109e557506109e482611e63565b5b9050919050565b6109f4611f45565b73ffffffffffffffffffffffffffffffffffffffff16610a126115a6565b73ffffffffffffffffffffffffffffffffffffffff1614610a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5f906138ba565b60405180910390fd5b80601060006101000a81548160ff02191690831515021790555050565b606060008054610a9490613909565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac090613909565b8015610b0d5780601f10610ae257610100808354040283529160200191610b0d565b820191906000526020600020905b815481529060010190602001808311610af057829003601f168201915b5050505050905090565b6000610b2282611f4d565b610b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b58906139ac565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ba782611293565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0e90613a3e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c36611f45565b73ffffffffffffffffffffffffffffffffffffffff161480610c655750610c6481610c5f611f45565b611c38565b5b610ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9b90613ad0565b60405180910390fd5b610cae8383611fb9565b505050565b600c5481565b6000600880549050905090565b60146020528060005260406000206000915090505481565b600e5481565b610cf5610cef611f45565b82612072565b610d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2b90613b62565b60405180910390fd5b610d3f838383612150565b505050565b6000610d4f836113d2565b8210610d90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8790613bf4565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600080600090505b601180549050811015610e8c578273ffffffffffffffffffffffffffffffffffffffff1660118281548110610e2957610e28613c14565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610e79576001915050610e92565b8080610e8490613c72565b915050610df1565b50600090505b919050565b610e9f611f45565b73ffffffffffffffffffffffffffffffffffffffff16610ebd6115a6565b73ffffffffffffffffffffffffffffffffffffffff1614610f13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0a906138ba565b60405180910390fd5b80601060016101000a81548160ff02191690831515021790555050565b610f38611f45565b73ffffffffffffffffffffffffffffffffffffffff16610f566115a6565b73ffffffffffffffffffffffffffffffffffffffff1614610fac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa3906138ba565b60405180910390fd5b6000610fb66115a6565b73ffffffffffffffffffffffffffffffffffffffff1647604051610fd990613ceb565b60006040518083038185875af1925050503d8060008114611016576040519150601f19603f3d011682016040523d82523d6000602084013e61101b565b606091505b505090508061102957600080fd5b50565b61104783838360405180602001604052806000815250611a68565b505050565b60606000611059836113d2565b905060008167ffffffffffffffff811115611077576110766134a9565b5b6040519080825280602002602001820160405280156110a55781602001602082028036833780820191505090505b50905060005b828110156110ef576110bd8582610d44565b8282815181106110d0576110cf613c14565b5b60200260200101818152505080806110e790613c72565b9150506110ab565b508092505050919050565b611102611f45565b73ffffffffffffffffffffffffffffffffffffffff166111206115a6565b73ffffffffffffffffffffffffffffffffffffffff1614611176576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116d906138ba565b60405180910390fd5b80600c8190555050565b600061118a610cb9565b82106111cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c290613d72565b60405180910390fd5b600882815481106111df576111de613c14565b5b90600052602060002001549050919050565b6111f9611f45565b73ffffffffffffffffffffffffffffffffffffffff166112176115a6565b73ffffffffffffffffffffffffffffffffffffffff161461126d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611264906138ba565b60405180910390fd5b80600b908161127c9190613f3e565b5050565b601060009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361133b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133290614082565b60405180910390fd5b80915050919050565b600b805461135190613909565b80601f016020809104026020016040519081016040528092919081815260200182805461137d90613909565b80156113ca5780601f1061139f576101008083540402835291602001916113ca565b820191906000526020600020905b8154815290600101906020018083116113ad57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611442576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143990614114565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611491611f45565b73ffffffffffffffffffffffffffffffffffffffff166114af6115a6565b73ffffffffffffffffffffffffffffffffffffffff1614611505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fc906138ba565b60405180910390fd5b61150f60006123ab565b565b611519611f45565b73ffffffffffffffffffffffffffffffffffffffff166115376115a6565b73ffffffffffffffffffffffffffffffffffffffff161461158d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611584906138ba565b60405180910390fd5b80600e8190555050565b60006115a16115a6565b905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546115df90613909565b80601f016020809104026020016040519081016040528092919081815260200182805461160b90613909565b80156116585780601f1061162d57610100808354040283529160200191611658565b820191906000526020600020905b81548152906001019060200180831161163b57829003601f168201915b5050505050905090565b601060019054906101000a900460ff1681565b601060009054906101000a900460ff16156116c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bc90614180565b60405180910390fd5b60006116cf610cb9565b905060008211611714576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170b906141ec565b60405180910390fd5b600e54821115611759576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117509061427e565b60405180910390fd5b600d548282611768919061429e565b11156117a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a09061431e565b60405180910390fd5b6117b16115a6565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461192d5760011515601060019054906101000a900460ff161515036118dc5761180733610de9565b611846576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183d9061438a565b60405180910390fd5b6000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600f548382611899919061429e565b11156118da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d1906143f6565b60405180910390fd5b505b81600c546118ea9190614416565b34101561192c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611923906144a4565b60405180910390fd5b5b6000600190505b828111611a4d576000601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600f54848261198e919061429e565b11156119cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c6906143f6565b60405180910390fd5b601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611a1f90613c72565b9190505550611a39338385611a34919061429e565b612471565b508080611a4590613c72565b915050611934565b505050565b611a64611a5d611f45565b838361248f565b5050565b611a79611a73611f45565b83612072565b611ab8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aaf90613b62565b60405180910390fd5b611ac4848484846125fb565b50505050565b60118181548110611ada57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f5481565b6060611b1a82611f4d565b611b59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5090614536565b60405180910390fd5b6000611b63612657565b90506000815111611b835760405180602001604052806000815250611ba4565b80604051602001611b949190614592565b6040516020818303038152906040525b915050919050565b611bb4611f45565b73ffffffffffffffffffffffffffffffffffffffff16611bd26115a6565b73ffffffffffffffffffffffffffffffffffffffff1614611c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1f906138ba565b60405180910390fd5b80600f8190555050565b600d5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cd4611f45565b73ffffffffffffffffffffffffffffffffffffffff16611cf26115a6565b73ffffffffffffffffffffffffffffffffffffffff1614611d48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3f906138ba565b60405180910390fd5b60116000611d569190612f32565b818160119190611d67929190612f53565b505050565b611d74611f45565b73ffffffffffffffffffffffffffffffffffffffff16611d926115a6565b73ffffffffffffffffffffffffffffffffffffffff1614611de8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ddf906138ba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4e9061461b565b60405180910390fd5b611e60816123ab565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611f2e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611f3e5750611f3d826126e9565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661202c83611293565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061207d82611f4d565b6120bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b3906146ad565b60405180910390fd5b60006120c783611293565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061213657508373ffffffffffffffffffffffffffffffffffffffff1661211e84610b17565b73ffffffffffffffffffffffffffffffffffffffff16145b8061214757506121468185611c38565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661217082611293565b73ffffffffffffffffffffffffffffffffffffffff16146121c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bd9061473f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612235576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222c906147d1565b60405180910390fd5b612240838383612753565b61224b600082611fb9565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461229b91906147f1565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122f2919061429e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61248b828260405180602001604052806000815250612865565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036124fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f490614871565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125ee91906130c4565b60405180910390a3505050565b612606848484612150565b612612848484846128c0565b612651576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264890614903565b60405180910390fd5b50505050565b6060600b805461266690613909565b80601f016020809104026020016040519081016040528092919081815260200182805461269290613909565b80156126df5780601f106126b4576101008083540402835291602001916126df565b820191906000526020600020905b8154815290600101906020018083116126c257829003601f168201915b5050505050905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61275e838383612a47565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036127a05761279b81612a4c565b6127df565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146127de576127dd8382612a95565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036128215761281c81612c02565b612860565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461285f5761285e8282612cd3565b5b5b505050565b61286f8383612d52565b61287c60008484846128c0565b6128bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b290614903565b60405180910390fd5b505050565b60006128e18473ffffffffffffffffffffffffffffffffffffffff16612f1f565b15612a3a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261290a611f45565b8786866040518563ffffffff1660e01b815260040161292c9493929190614978565b6020604051808303816000875af192505050801561296857506040513d601f19601f8201168201806040525081019061296591906149d9565b60015b6129ea573d8060008114612998576040519150601f19603f3d011682016040523d82523d6000602084013e61299d565b606091505b5060008151036129e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d990614903565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a3f565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612aa2846113d2565b612aac91906147f1565b9050600060076000848152602001908152602001600020549050818114612b91576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612c1691906147f1565b9050600060096000848152602001908152602001600020549050600060088381548110612c4657612c45613c14565b5b906000526020600020015490508060088381548110612c6857612c67613c14565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612cb757612cb6614a06565b5b6001900381819060005260206000200160009055905550505050565b6000612cde836113d2565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db890614a81565b60405180910390fd5b612dca81611f4d565b15612e0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0190614aed565b60405180910390fd5b612e1660008383612753565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e66919061429e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b5080546000825590600052602060002090810190612f509190612ff3565b50565b828054828255906000526020600020908101928215612fe2579160200282015b82811115612fe157823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190612f73565b5b509050612fef9190612ff3565b5090565b5b8082111561300c576000816000905550600101612ff4565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61305981613024565b811461306457600080fd5b50565b60008135905061307681613050565b92915050565b6000602082840312156130925761309161301a565b5b60006130a084828501613067565b91505092915050565b60008115159050919050565b6130be816130a9565b82525050565b60006020820190506130d960008301846130b5565b92915050565b6130e8816130a9565b81146130f357600080fd5b50565b600081359050613105816130df565b92915050565b6000602082840312156131215761312061301a565b5b600061312f848285016130f6565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613172578082015181840152602081019050613157565b60008484015250505050565b6000601f19601f8301169050919050565b600061319a82613138565b6131a48185613143565b93506131b4818560208601613154565b6131bd8161317e565b840191505092915050565b600060208201905081810360008301526131e2818461318f565b905092915050565b6000819050919050565b6131fd816131ea565b811461320857600080fd5b50565b60008135905061321a816131f4565b92915050565b6000602082840312156132365761323561301a565b5b60006132448482850161320b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006132788261324d565b9050919050565b6132888161326d565b82525050565b60006020820190506132a3600083018461327f565b92915050565b6132b28161326d565b81146132bd57600080fd5b50565b6000813590506132cf816132a9565b92915050565b600080604083850312156132ec576132eb61301a565b5b60006132fa858286016132c0565b925050602061330b8582860161320b565b9150509250929050565b61331e816131ea565b82525050565b60006020820190506133396000830184613315565b92915050565b6000602082840312156133555761335461301a565b5b6000613363848285016132c0565b91505092915050565b6000806000606084860312156133855761338461301a565b5b6000613393868287016132c0565b93505060206133a4868287016132c0565b92505060406133b58682870161320b565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6133f4816131ea565b82525050565b600061340683836133eb565b60208301905092915050565b6000602082019050919050565b600061342a826133bf565b61343481856133ca565b935061343f836133db565b8060005b8381101561347057815161345788826133fa565b975061346283613412565b925050600181019050613443565b5085935050505092915050565b60006020820190508181036000830152613497818461341f565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6134e18261317e565b810181811067ffffffffffffffff82111715613500576134ff6134a9565b5b80604052505050565b6000613513613010565b905061351f82826134d8565b919050565b600067ffffffffffffffff82111561353f5761353e6134a9565b5b6135488261317e565b9050602081019050919050565b82818337600083830152505050565b600061357761357284613524565b613509565b905082815260208101848484011115613593576135926134a4565b5b61359e848285613555565b509392505050565b600082601f8301126135bb576135ba61349f565b5b81356135cb848260208601613564565b91505092915050565b6000602082840312156135ea576135e961301a565b5b600082013567ffffffffffffffff8111156136085761360761301f565b5b613614848285016135a6565b91505092915050565b600080604083850312156136345761363361301a565b5b6000613642858286016132c0565b9250506020613653858286016130f6565b9150509250929050565b600067ffffffffffffffff821115613678576136776134a9565b5b6136818261317e565b9050602081019050919050565b60006136a161369c8461365d565b613509565b9050828152602081018484840111156136bd576136bc6134a4565b5b6136c8848285613555565b509392505050565b600082601f8301126136e5576136e461349f565b5b81356136f584826020860161368e565b91505092915050565b600080600080608085870312156137185761371761301a565b5b6000613726878288016132c0565b9450506020613737878288016132c0565b93505060406137488782880161320b565b925050606085013567ffffffffffffffff8111156137695761376861301f565b5b613775878288016136d0565b91505092959194509250565b600080604083850312156137985761379761301a565b5b60006137a6858286016132c0565b92505060206137b7858286016132c0565b9150509250929050565b600080fd5b600080fd5b60008083601f8401126137e1576137e061349f565b5b8235905067ffffffffffffffff8111156137fe576137fd6137c1565b5b60208301915083602082028301111561381a576138196137c6565b5b9250929050565b600080602083850312156138385761383761301a565b5b600083013567ffffffffffffffff8111156138565761385561301f565b5b613862858286016137cb565b92509250509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006138a4602083613143565b91506138af8261386e565b602082019050919050565b600060208201905081810360008301526138d381613897565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061392157607f821691505b602082108103613934576139336138da565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613996602c83613143565b91506139a18261393a565b604082019050919050565b600060208201905081810360008301526139c581613989565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613a28602183613143565b9150613a33826139cc565b604082019050919050565b60006020820190508181036000830152613a5781613a1b565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613aba603883613143565b9150613ac582613a5e565b604082019050919050565b60006020820190508181036000830152613ae981613aad565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613b4c603183613143565b9150613b5782613af0565b604082019050919050565b60006020820190508181036000830152613b7b81613b3f565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000613bde602b83613143565b9150613be982613b82565b604082019050919050565b60006020820190508181036000830152613c0d81613bd1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613c7d826131ea565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613caf57613cae613c43565b5b600182019050919050565b600081905092915050565b50565b6000613cd5600083613cba565b9150613ce082613cc5565b600082019050919050565b6000613cf682613cc8565b9150819050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000613d5c602c83613143565b9150613d6782613d00565b604082019050919050565b60006020820190508181036000830152613d8b81613d4f565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613df47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613db7565b613dfe8683613db7565b95508019841693508086168417925050509392505050565b6000819050919050565b6000613e3b613e36613e31846131ea565b613e16565b6131ea565b9050919050565b6000819050919050565b613e5583613e20565b613e69613e6182613e42565b848454613dc4565b825550505050565b600090565b613e7e613e71565b613e89818484613e4c565b505050565b5b81811015613ead57613ea2600082613e76565b600181019050613e8f565b5050565b601f821115613ef257613ec381613d92565b613ecc84613da7565b81016020851015613edb578190505b613eef613ee785613da7565b830182613e8e565b50505b505050565b600082821c905092915050565b6000613f1560001984600802613ef7565b1980831691505092915050565b6000613f2e8383613f04565b9150826002028217905092915050565b613f4782613138565b67ffffffffffffffff811115613f6057613f5f6134a9565b5b613f6a8254613909565b613f75828285613eb1565b600060209050601f831160018114613fa85760008415613f96578287015190505b613fa08582613f22565b865550614008565b601f198416613fb686613d92565b60005b82811015613fde57848901518255600182019150602085019450602081019050613fb9565b86831015613ffb5784890151613ff7601f891682613f04565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b600061406c602983613143565b915061407782614010565b604082019050919050565b6000602082019050818103600083015261409b8161405f565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006140fe602a83613143565b9150614109826140a2565b604082019050919050565b6000602082019050818103600083015261412d816140f1565b9050919050565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b600061416a601683613143565b915061417582614134565b602082019050919050565b600060208201905081810360008301526141998161415d565b9050919050565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b60006141d6601b83613143565b91506141e1826141a0565b602082019050919050565b60006020820190508181036000830152614205816141c9565b9050919050565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b6000614268602483613143565b91506142738261420c565b604082019050919050565b600060208201905081810360008301526142978161425b565b9050919050565b60006142a9826131ea565b91506142b4836131ea565b92508282019050808211156142cc576142cb613c43565b5b92915050565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b6000614308601683613143565b9150614313826142d2565b602082019050919050565b60006020820190508181036000830152614337816142fb565b9050919050565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b6000614374601783613143565b915061437f8261433e565b602082019050919050565b600060208201905081810360008301526143a381614367565b9050919050565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b60006143e0601c83613143565b91506143eb826143aa565b602082019050919050565b6000602082019050818103600083015261440f816143d3565b9050919050565b6000614421826131ea565b915061442c836131ea565b925082820261443a816131ea565b9150828204841483151761445157614450613c43565b5b5092915050565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b600061448e601283613143565b915061449982614458565b602082019050919050565b600060208201905081810360008301526144bd81614481565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614520602f83613143565b915061452b826144c4565b604082019050919050565b6000602082019050818103600083015261454f81614513565b9050919050565b600081905092915050565b600061456c82613138565b6145768185614556565b9350614586818560208601613154565b80840191505092915050565b600061459e8284614561565b915081905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614605602683613143565b9150614610826145a9565b604082019050919050565b60006020820190508181036000830152614634816145f8565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614697602c83613143565b91506146a28261463b565b604082019050919050565b600060208201905081810360008301526146c68161468a565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000614729602983613143565b9150614734826146cd565b604082019050919050565b600060208201905081810360008301526147588161471c565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006147bb602483613143565b91506147c68261475f565b604082019050919050565b600060208201905081810360008301526147ea816147ae565b9050919050565b60006147fc826131ea565b9150614807836131ea565b925082820390508181111561481f5761481e613c43565b5b92915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061485b601983613143565b915061486682614825565b602082019050919050565b6000602082019050818103600083015261488a8161484e565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006148ed603283613143565b91506148f882614891565b604082019050919050565b6000602082019050818103600083015261491c816148e0565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061494a82614923565b614954818561492e565b9350614964818560208601613154565b61496d8161317e565b840191505092915050565b600060808201905061498d600083018761327f565b61499a602083018661327f565b6149a76040830185613315565b81810360608301526149b9818461493f565b905095945050505050565b6000815190506149d381613050565b92915050565b6000602082840312156149ef576149ee61301a565b5b60006149fd848285016149c4565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614a6b602083613143565b9150614a7682614a35565b602082019050919050565b60006020820190508181036000830152614a9a81614a5e565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614ad7601c83613143565b9150614ae282614aa1565b602082019050919050565b60006020820190508181036000830152614b0681614aca565b905091905056fea26469706673582212205bfc9d57762d45a607e018d85567334016edd5ef314fdb7f4abf7d92bcb14c5864736f6c63430008120033