ETH Price: $3,488.09 (+2.02%)
Gas: 14 Gwei

Token

0xMonkey (0xMONKEY)
 

Overview

Max Total Supply

3,033 0xMONKEY

Holders

1,236

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 0xMONKEY
0xf00d87ee3d149ebbfd3a5846442be08e5bf5e763
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MONKEY

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-20
*/

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts 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 (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

// File: ERC721A.sol



pragma solidity ^0.8.0;









/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
    Context,
    ERC165,
    IERC721,
    IERC721Metadata,
    IERC721Enumerable
{
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 private currentIndex = 0;

    uint256 internal immutable collectionSize;
    uint256 internal immutable maxBatchSize;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

    /**
     * @dev
     * `maxBatchSize` refers to how much a minter can mint at a time.
     * `collectionSize_` refers to how many tokens are in the collection.
     */
    constructor(
        string memory name_,
        string memory symbol_,
        uint256 maxBatchSize_,
        uint256 collectionSize_
    ) {
        require(
            collectionSize_ > 0,
            "ERC721A: collection must have a nonzero supply"
        );
        require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
        _name = name_;
        _symbol = symbol_;
        maxBatchSize = maxBatchSize_;
        collectionSize = collectionSize_;
    }

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        override
        returns (uint256)
    {
        require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert("ERC721A: unable to get token of owner by index");
    }

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

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

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

    function ownershipOf(uint256 tokenId)
        internal
        view
        returns (TokenOwnership memory)
    {
        require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

        uint256 lowestTokenToCheck;
        if (tokenId >= maxBatchSize) {
            lowestTokenToCheck = tokenId - maxBatchSize + 1;
        }

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721A: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - there must be `quantity` tokens remaining unminted in the total collection.
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), "ERC721A: mint to the zero address");
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), "ERC721A: token already minted");
        require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

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

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

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

        currentIndex = updatedIndex;
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        _addressData[from].balance -= 1;
        _addressData[to].balance += 1;
        _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

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

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

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

    uint256 public nextOwnerToExplicitlySet = 0;

    /**
     * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
     */
    function _setOwnersExplicit(uint256 quantity) internal {
        uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
        require(quantity > 0, "quantity must be nonzero");
        uint256 endIndex = oldNextOwnerToSet + quantity - 1;
        if (endIndex > collectionSize - 1) {
            endIndex = collectionSize - 1;
        }
        // We know if the last one in the group exists, all in the group exist, due to serial ordering.
        require(_exists(endIndex), "not enough minted yet for this cleanup");
        for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
            if (_ownerships[i].addr == address(0)) {
                TokenOwnership memory ownership = ownershipOf(i);
                _ownerships[i] = TokenOwnership(
                    ownership.addr,
                    ownership.startTimestamp
                );
            }
        }
        nextOwnerToExplicitlySet = endIndex + 1;
    }

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

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



pragma solidity ^0.8.0;





contract MONKEY is ERC721A, Ownable, ReentrancyGuard {
    using ECDSA for bytes32;
    using Strings for uint256;
    
    enum Status {
        Pending,
        PublicSale,
        Finished
    }

    Status public status;

    uint256 public immutable MAX_SUPPLY;
    uint256 public immutable MAX_MINT;
    
    uint256 public PRICE = 0 ether;

    uint256 public totaltokensReserved;
    uint256 public immutable maxreserveAmount;

    event StatusChanged(Status status);
    event ReservedToken(address minter, address recipient, uint256 amount);
    event Minted(address minter, uint256 amount);

    mapping(uint256 => string) private _tokenURIs;

    string public baseURI;
    string public baseExtension = ".json";

    constructor(
        string memory _initURI, 
        uint256 _maxBatchSize,
        uint256 _collectionSize,
        uint256 _maxreserveAmount
    )
        ERC721A("0xMonkey", "0xMONKEY", _maxBatchSize, _collectionSize)
    {
        MAX_MINT = _maxBatchSize;
        MAX_SUPPLY = _collectionSize;
        maxreserveAmount = _maxreserveAmount;

        setBaseURI(_initURI);
    }

    function reserve(address recipient, uint256 tokenQuantity) external onlyOwner {
        require(recipient != address(0), "0xMONKEY: zero address");
        require(tokenQuantity > 0, "0xMONKEY: invalid amount");
        require(
            totalSupply() + tokenQuantity <= collectionSize,
            "0xMONKEY: Exceed max supply"
        );
        require(
            totaltokensReserved + tokenQuantity <= maxreserveAmount,
            "0xMONKEY: Exceed max reserve"
        );

        for (uint256 i = 0; i < tokenQuantity; i++) {
            _safeMint(recipient, 1);
        }
        totaltokensReserved += tokenQuantity;
        emit ReservedToken(msg.sender, recipient, tokenQuantity);
    }

    function mint( uint256 tokenQuantity ) external payable {
        require(status == Status.PublicSale, "0xMONKEY: Public mint is not active");
        require(
            tx.origin == msg.sender,
            "0xMONKEY: contract is not allowed to mint."
        );
        require(
            numberMinted(msg.sender) + tokenQuantity <= MAX_MINT,
            "0xMONKEY: Max public mint amount per wallet exceeded"
        );
        require(
            totalSupply() + tokenQuantity + maxreserveAmount - totaltokensReserved <=
                collectionSize,
            "0xMONKEY: Exceed max supply"
        );
        
        for (uint256 i = 0; i < tokenQuantity; i++) {
            _safeMint(msg.sender, 1);
        }       
        refundIfOver(PRICE * tokenQuantity);

        emit Minted(msg.sender, tokenQuantity);
    }
  

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }
        return string(abi.encodePacked(base, tokenId.toString(), baseExtension));
    }

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

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

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

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

    function setStatus(Status _status) external onlyOwner {
        status = _status;
        emit StatusChanged(_status);
    }

    function numberMinted(address owner) internal view returns (uint256) {
        return _numberMinted(owner);
    }

    function refundIfOver(uint256 price) private {
        require(msg.value >= price, "0xMONKEY: Not enough ether sent");
        if (msg.value > price) {
            payable(msg.sender).transfer(msg.value - price);
        }
    }

    function setOwnersExplicit(uint256 quantity)
        external
        onlyOwner
        nonReentrant
    {
        _setOwnersExplicit(quantity);
    }
    
    function getOwnershipData(uint256 tokenId)
        external
        view
        returns (TokenOwnership memory)
    {
        return ownershipOf(tokenId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initURI","type":"string"},{"internalType":"uint256","name":"_maxBatchSize","type":"uint256"},{"internalType":"uint256","name":"_collectionSize","type":"uint256"},{"internalType":"uint256","name":"_maxreserveAmount","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ReservedToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"enum MONKEY.Status","name":"status","type":"uint8"}],"name":"StatusChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxreserveAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"tokenQuantity","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum MONKEY.Status","name":"_status","type":"uint8"}],"name":"setStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"status","outputs":[{"internalType":"enum MONKEY.Status","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totaltokensReserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6101206040526000805560006007556000600b556040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600f908051906020019062000060929190620003d3565b503480156200006e57600080fd5b506040516200613338038062006133833981810160405281019062000094919062000518565b6040518060400160405280600881526020017f30784d6f6e6b65790000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f30784d4f4e4b455900000000000000000000000000000000000000000000000081525084846000811162000148576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200013f9062000662565b60405180910390fd5b600082116200018e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000185906200061e565b60405180910390fd5b8360019080519060200190620001a6929190620003d3565b508260029080519060200190620001bf929190620003d3565b508160a08181525050806080818152505050505050620001f4620001e86200023060201b60201c565b6200023860201b60201c565b60016009819055508260e081815250508160c081815250508061010081815250506200022684620002fe60201b60201c565b5050505062000904565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200030e6200023060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000334620003a960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200038d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003849062000640565b60405180910390fd5b80600e9080519060200190620003a5929190620003d3565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003e19062000734565b90600052602060002090601f01602090048101928262000405576000855562000451565b82601f106200042057805160ff191683800117855562000451565b8280016001018555821562000451579182015b828111156200045057825182559160200191906001019062000433565b5b50905062000460919062000464565b5090565b5b808211156200047f57600081600090555060010162000465565b5090565b60006200049a6200049484620006ad565b62000684565b905082815260208101848484011115620004b957620004b862000803565b5b620004c6848285620006fe565b509392505050565b600082601f830112620004e657620004e5620007fe565b5b8151620004f884826020860162000483565b91505092915050565b6000815190506200051281620008ea565b92915050565b600080600080608085870312156200053557620005346200080d565b5b600085015167ffffffffffffffff81111562000556576200055562000808565b5b6200056487828801620004ce565b9450506020620005778782880162000501565b93505060406200058a8782880162000501565b92505060606200059d8782880162000501565b91505092959194509250565b6000620005b8602783620006e3565b9150620005c58262000823565b604082019050919050565b6000620005df602083620006e3565b9150620005ec8262000872565b602082019050919050565b600062000606602e83620006e3565b915062000613826200089b565b604082019050919050565b600060208201905081810360008301526200063981620005a9565b9050919050565b600060208201905081810360008301526200065b81620005d0565b9050919050565b600060208201905081810360008301526200067d81620005f7565b9050919050565b600062000690620006a3565b90506200069e82826200076a565b919050565b6000604051905090565b600067ffffffffffffffff821115620006cb57620006ca620007cf565b5b620006d68262000812565b9050602081019050919050565b600082825260208201905092915050565b6000819050919050565b60005b838110156200071e57808201518184015260208101905062000701565b838111156200072e576000848401525b50505050565b600060028204905060018216806200074d57607f821691505b60208210811415620007645762000763620007a0565b5b50919050565b620007758262000812565b810181811067ffffffffffffffff82111715620007975762000796620007cf565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b620008f581620006f4565b81146200090157600080fd5b50565b60805160a05160c05160e051610100516157b2620009816000396000818161157c0152818161171e0152611da80152600081816116840152611fca01526000610fd9015260008181612ab001528181612ad901526133360152600081816116fa01528181611d3301528181612838015261286c01526157b26000f3fe60806040526004361061020f5760003560e01c8063715018a611610118578063b88d4fde116100a0578063d7224ba01161006f578063d7224ba014610790578063da3ef23f146107bb578063e985e9c5146107e4578063f0292a0314610821578063f2fde38b1461084c5761020f565b8063b88d4fde146106d6578063c6682862146106ff578063c87b56dd1461072a578063cc47a40b146107675761020f565b80639231ab2a116100e75780639231ab2a146105fe57806395d89b411461063b5780639dcb522f14610666578063a0712d6814610691578063a22cb465146106ad5761020f565b8063715018a6146105665780638acb199e1461057d5780638d859f3e146105a85780638da5cb5b146105d35761020f565b80632f745c591161019b5780634f6ccce71161016a5780634f6ccce71461045b57806355f804b3146104985780636352211e146104c15780636c0360eb146104fe57806370a08231146105295761020f565b80632f745c59146103b357806332cb6b0c146103f05780633ccfd60b1461041b57806342842e0e146104325761020f565b806318160ddd116101e257806318160ddd146102e2578063200d2ed21461030d57806323b872dd146103385780632d20fb60146103615780632e49d78b1461038a5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613b75565b610875565b60405161024891906143f4565b60405180910390f35b34801561025d57600080fd5b506102666109bf565b604051610273919061442a565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190613c45565b610a51565b6040516102b0919061432d565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190613b35565b610ad6565b005b3480156102ee57600080fd5b506102f7610bef565b6040516103049190614887565b60405180910390f35b34801561031957600080fd5b50610322610bf8565b60405161032f919061440f565b60405180910390f35b34801561034457600080fd5b5061035f600480360381019061035a9190613a1f565b610c0b565b005b34801561036d57600080fd5b5061038860048036038101906103839190613c45565b610c1b565b005b34801561039657600080fd5b506103b160048036038101906103ac9190613bcf565b610cf9565b005b3480156103bf57600080fd5b506103da60048036038101906103d59190613b35565b610dd9565b6040516103e79190614887565b60405180910390f35b3480156103fc57600080fd5b50610405610fd7565b6040516104129190614887565b60405180910390f35b34801561042757600080fd5b50610430610ffb565b005b34801561043e57600080fd5b5061045960048036038101906104549190613a1f565b61117c565b005b34801561046757600080fd5b50610482600480360381019061047d9190613c45565b61119c565b60405161048f9190614887565b60405180910390f35b3480156104a457600080fd5b506104bf60048036038101906104ba9190613bfc565b6111ef565b005b3480156104cd57600080fd5b506104e860048036038101906104e39190613c45565b611285565b6040516104f5919061432d565b60405180910390f35b34801561050a57600080fd5b5061051361129b565b604051610520919061442a565b60405180910390f35b34801561053557600080fd5b50610550600480360381019061054b91906139b2565b611329565b60405161055d9190614887565b60405180910390f35b34801561057257600080fd5b5061057b611412565b005b34801561058957600080fd5b5061059261149a565b60405161059f9190614887565b60405180910390f35b3480156105b457600080fd5b506105bd6114a0565b6040516105ca9190614887565b60405180910390f35b3480156105df57600080fd5b506105e86114a6565b6040516105f5919061432d565b60405180910390f35b34801561060a57600080fd5b5061062560048036038101906106209190613c45565b6114d0565b604051610632919061486c565b60405180910390f35b34801561064757600080fd5b506106506114e8565b60405161065d919061442a565b60405180910390f35b34801561067257600080fd5b5061067b61157a565b6040516106889190614887565b60405180910390f35b6106ab60048036038101906106a69190613c45565b61159e565b005b3480156106b957600080fd5b506106d460048036038101906106cf9190613af5565b611821565b005b3480156106e257600080fd5b506106fd60048036038101906106f89190613a72565b6119a2565b005b34801561070b57600080fd5b506107146119fe565b604051610721919061442a565b60405180910390f35b34801561073657600080fd5b50610751600480360381019061074c9190613c45565b611a8c565b60405161075e919061442a565b60405180910390f35b34801561077357600080fd5b5061078e60048036038101906107899190613b35565b611c02565b005b34801561079c57600080fd5b506107a5611e98565b6040516107b29190614887565b60405180910390f35b3480156107c757600080fd5b506107e260048036038101906107dd9190613bfc565b611e9e565b005b3480156107f057600080fd5b5061080b600480360381019061080691906139df565b611f34565b60405161081891906143f4565b60405180910390f35b34801561082d57600080fd5b50610836611fc8565b6040516108439190614887565b60405180910390f35b34801561085857600080fd5b50610873600480360381019061086e91906139b2565b611fec565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061094057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109a857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109b857506109b7826120e4565b5b9050919050565b6060600180546109ce90614c50565b80601f01602080910402602001604051908101604052809291908181526020018280546109fa90614c50565b8015610a475780601f10610a1c57610100808354040283529160200191610a47565b820191906000526020600020905b815481529060010190602001808311610a2a57829003601f168201915b5050505050905090565b6000610a5c8261214e565b610a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a929061482c565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ae182611285565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b49906146cc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b7161215b565b73ffffffffffffffffffffffffffffffffffffffff161480610ba05750610b9f81610b9a61215b565b611f34565b5b610bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd6906145ac565b60405180910390fd5b610bea838383612163565b505050565b60008054905090565b600a60009054906101000a900460ff1681565b610c16838383612215565b505050565b610c2361215b565b73ffffffffffffffffffffffffffffffffffffffff16610c416114a6565b73ffffffffffffffffffffffffffffffffffffffff1614610c97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8e9061462c565b60405180910390fd5b60026009541415610cdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd4906147cc565b60405180910390fd5b6002600981905550610cee816127ce565b600160098190555050565b610d0161215b565b73ffffffffffffffffffffffffffffffffffffffff16610d1f6114a6565b73ffffffffffffffffffffffffffffffffffffffff1614610d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6c9061462c565b60405180910390fd5b80600a60006101000a81548160ff02191690836002811115610d9a57610d99614d8b565b5b02179055507fafa725e7f44cadb687a7043853fa1a7e7b8f0da74ce87ec546e9420f04da8c1e81604051610dce919061440f565b60405180910390a150565b6000610de483611329565b8210610e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1c9061444c565b60405180910390fd5b6000610e2f610bef565b905060008060005b83811015610f95576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f2957806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f815786841415610f72578195505050505050610fd1565b8380610f7d90614cb3565b9450505b508080610f8d90614cb3565b915050610e37565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc89061478c565b60405180910390fd5b92915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60026009541415611041576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611038906147cc565b60405180910390fd5b600260098190555061105161215b565b73ffffffffffffffffffffffffffffffffffffffff1661106f6114a6565b73ffffffffffffffffffffffffffffffffffffffff16146110c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bc9061462c565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16476040516110eb90614318565b60006040518083038185875af1925050503d8060008114611128576040519150601f19603f3d011682016040523d82523d6000602084013e61112d565b606091505b5050905080611171576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611168906146ec565b60405180910390fd5b506001600981905550565b611197838383604051806020016040528060008152506119a2565b505050565b60006111a6610bef565b82106111e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111de9061452c565b60405180910390fd5b819050919050565b6111f761215b565b73ffffffffffffffffffffffffffffffffffffffff166112156114a6565b73ffffffffffffffffffffffffffffffffffffffff161461126b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112629061462c565b60405180910390fd5b80600e9080519060200190611281929190613777565b5050565b600061129082612a5c565b600001519050919050565b600e80546112a890614c50565b80601f01602080910402602001604051908101604052809291908181526020018280546112d490614c50565b80156113215780601f106112f657610100808354040283529160200191611321565b820191906000526020600020905b81548152906001019060200180831161130457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561139a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611391906145ec565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61141a61215b565b73ffffffffffffffffffffffffffffffffffffffff166114386114a6565b73ffffffffffffffffffffffffffffffffffffffff161461148e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114859061462c565b60405180910390fd5b6114986000612c5f565b565b600c5481565b600b5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114d86137fd565b6114e182612a5c565b9050919050565b6060600280546114f790614c50565b80601f016020809104026020016040519081016040528092919081815260200182805461152390614c50565b80156115705780601f1061154557610100808354040283529160200191611570565b820191906000526020600020905b81548152906001019060200180831161155357829003601f168201915b5050505050905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b600160028111156115b2576115b1614d8b565b5b600a60009054906101000a900460ff1660028111156115d4576115d3614d8b565b5b14611614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160b906144ec565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611682576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611679906146ac565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000816116ad33612d25565b6116b791906149d2565b11156116f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ef9061448c565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000600c547f000000000000000000000000000000000000000000000000000000000000000083611746610bef565b61175091906149d2565b61175a91906149d2565b6117649190614ae7565b11156117a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179c9061464c565b60405180910390fd5b60005b818110156117ce576117bb336001612d37565b80806117c690614cb3565b9150506117a8565b506117e581600b546117e09190614a59565b612d55565b7f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe33826040516118169291906143cb565b60405180910390a150565b61182961215b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188e9061466c565b60405180910390fd5b80600660006118a461215b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661195161215b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161199691906143f4565b60405180910390a35050565b6119ad848484612215565b6119b984848484612df6565b6119f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ef9061470c565b60405180910390fd5b50505050565b600f8054611a0b90614c50565b80601f0160208091040260200160405190810160405280929190818152602001828054611a3790614c50565b8015611a845780601f10611a5957610100808354040283529160200191611a84565b820191906000526020600020905b815481529060010190602001808311611a6757829003601f168201915b505050505081565b6060611a978261214e565b611ad6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acd9061458c565b60405180910390fd5b6000600d60008481526020019081526020016000208054611af690614c50565b80601f0160208091040260200160405190810160405280929190818152602001828054611b2290614c50565b8015611b6f5780601f10611b4457610100808354040283529160200191611b6f565b820191906000526020600020905b815481529060010190602001808311611b5257829003601f168201915b505050505090506000611b80612f8d565b9050600081511415611b96578192505050611bfd565b600082511115611bcb578082604051602001611bb39291906142c3565b60405160208183030381529060405292505050611bfd565b80611bd58561301f565b600f604051602001611be9939291906142e7565b604051602081830303815290604052925050505b919050565b611c0a61215b565b73ffffffffffffffffffffffffffffffffffffffff16611c286114a6565b73ffffffffffffffffffffffffffffffffffffffff1614611c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c759061462c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce5906147ec565b60405180910390fd5b60008111611d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d289061450c565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000081611d5b610bef565b611d6591906149d2565b1115611da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9d9061464c565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000081600c54611dd591906149d2565b1115611e16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0d9061446c565b60405180910390fd5b60005b81811015611e3f57611e2c836001612d37565b8080611e3790614cb3565b915050611e19565b5080600c6000828254611e5291906149d2565b925050819055507fd729ebd340be850113adba35e3218ac6bd77c375ce35c256e3493fdf30b99f3e338383604051611e8c93929190614348565b60405180910390a15050565b60075481565b611ea661215b565b73ffffffffffffffffffffffffffffffffffffffff16611ec46114a6565b73ffffffffffffffffffffffffffffffffffffffff1614611f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f119061462c565b60405180910390fd5b80600f9080519060200190611f30929190613777565b5050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b611ff461215b565b73ffffffffffffffffffffffffffffffffffffffff166120126114a6565b73ffffffffffffffffffffffffffffffffffffffff1614612068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205f9061462c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cf906144ac565b60405180910390fd5b6120e181612c5f565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061222082612a5c565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661224761215b565b73ffffffffffffffffffffffffffffffffffffffff1614806122a3575061226c61215b565b73ffffffffffffffffffffffffffffffffffffffff1661228b84610a51565b73ffffffffffffffffffffffffffffffffffffffff16145b806122bf57506122be82600001516122b961215b565b611f34565b5b905080612301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f89061468c565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612373576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236a9061460c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156123e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123da9061454c565b60405180910390fd5b6123f08585856001613180565b6124006000848460000151612163565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661246e9190614ab3565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612512919061498c565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600060018461261891906149d2565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561275e5761268e8161214e565b1561275d576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127c68686866001613186565b505050505050565b6000600754905060008211612818576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280f906145cc565b60405180910390fd5b60006001838361282891906149d2565b6128329190614ae7565b905060017f00000000000000000000000000000000000000000000000000000000000000006128619190614ae7565b8111156128985760017f00000000000000000000000000000000000000000000000000000000000000006128959190614ae7565b90505b6128a18161214e565b6128e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d7906147ac565b60405180910390fd5b60008290505b818111612a4357600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612a3057600061296382612a5c565b90506040518060400160405280826000015173ffffffffffffffffffffffffffffffffffffffff168152602001826020015167ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050505b8080612a3b90614cb3565b9150506128e6565b50600181612a5191906149d2565b600781905550505050565b612a646137fd565b612a6d8261214e565b612aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa3906144cc565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008310612b105760017f000000000000000000000000000000000000000000000000000000000000000084612b039190614ae7565b612b0d91906149d2565b90505b60008390505b818110612c1e576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612c0a57809350505050612c5a565b508080612c1690614c26565b915050612b16565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c519061480c565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612d308261318c565b9050919050565b612d51828260405180602001604052806000815250613275565b5050565b80341015612d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8f9061474c565b60405180910390fd5b80341115612df3573373ffffffffffffffffffffffffffffffffffffffff166108fc8234612dc69190614ae7565b9081150290604051600060405180830381858888f19350505050158015612df1573d6000803e3d6000fd5b505b50565b6000612e178473ffffffffffffffffffffffffffffffffffffffff16613754565b15612f80578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e4061215b565b8786866040518563ffffffff1660e01b8152600401612e62949392919061437f565b602060405180830381600087803b158015612e7c57600080fd5b505af1925050508015612ead57506040513d601f19601f82011682018060405250810190612eaa9190613ba2565b60015b612f30573d8060008114612edd576040519150601f19603f3d011682016040523d82523d6000602084013e612ee2565b606091505b50600081511415612f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1f9061470c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612f85565b600190505b949350505050565b6060600e8054612f9c90614c50565b80601f0160208091040260200160405190810160405280929190818152602001828054612fc890614c50565b80156130155780601f10612fea57610100808354040283529160200191613015565b820191906000526020600020905b815481529060010190602001808311612ff857829003601f168201915b5050505050905090565b60606000821415613067576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061317b565b600082905060005b6000821461309957808061308290614cb3565b915050600a826130929190614a28565b915061306f565b60008167ffffffffffffffff8111156130b5576130b4614e18565b5b6040519080825280601f01601f1916602001820160405280156130e75781602001600182028036833780820191505090505b5090505b60008514613174576001826131009190614ae7565b9150600a8561310f9190614cfc565b603061311b91906149d2565b60f81b81838151811061313157613130614de9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561316d9190614a28565b94506130eb565b8093505050505b919050565b50505050565b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131f49061456c565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156132eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132e29061476c565b60405180910390fd5b6132f48161214e565b15613334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161332b9061472c565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115613397576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161338e9061484c565b60405180910390fd5b6133a46000858386613180565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516134a1919061498c565b6fffffffffffffffffffffffffffffffff1681526020018583602001516134c8919061498c565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561373757818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46136d76000888488612df6565b613716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161370d9061470c565b60405180910390fd5b818061372190614cb3565b925050808061372f90614cb3565b915050613666565b508060008190555061374c6000878588613186565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461378390614c50565b90600052602060002090601f0160209004810192826137a557600085556137ec565b82601f106137be57805160ff19168380011785556137ec565b828001600101855582156137ec579182015b828111156137eb5782518255916020019190600101906137d0565b5b5090506137f99190613837565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613850576000816000905550600101613838565b5090565b6000613867613862846148c7565b6148a2565b90508281526020810184848401111561388357613882614e4c565b5b61388e848285614be4565b509392505050565b60006138a96138a4846148f8565b6148a2565b9050828152602081018484840111156138c5576138c4614e4c565b5b6138d0848285614be4565b509392505050565b6000813590506138e781615710565b92915050565b6000813590506138fc81615727565b92915050565b6000813590506139118161573e565b92915050565b6000815190506139268161573e565b92915050565b600082601f83011261394157613940614e47565b5b8135613951848260208601613854565b91505092915050565b60008135905061396981615755565b92915050565b600082601f83011261398457613983614e47565b5b8135613994848260208601613896565b91505092915050565b6000813590506139ac81615765565b92915050565b6000602082840312156139c8576139c7614e56565b5b60006139d6848285016138d8565b91505092915050565b600080604083850312156139f6576139f5614e56565b5b6000613a04858286016138d8565b9250506020613a15858286016138d8565b9150509250929050565b600080600060608486031215613a3857613a37614e56565b5b6000613a46868287016138d8565b9350506020613a57868287016138d8565b9250506040613a688682870161399d565b9150509250925092565b60008060008060808587031215613a8c57613a8b614e56565b5b6000613a9a878288016138d8565b9450506020613aab878288016138d8565b9350506040613abc8782880161399d565b925050606085013567ffffffffffffffff811115613add57613adc614e51565b5b613ae98782880161392c565b91505092959194509250565b60008060408385031215613b0c57613b0b614e56565b5b6000613b1a858286016138d8565b9250506020613b2b858286016138ed565b9150509250929050565b60008060408385031215613b4c57613b4b614e56565b5b6000613b5a858286016138d8565b9250506020613b6b8582860161399d565b9150509250929050565b600060208284031215613b8b57613b8a614e56565b5b6000613b9984828501613902565b91505092915050565b600060208284031215613bb857613bb7614e56565b5b6000613bc684828501613917565b91505092915050565b600060208284031215613be557613be4614e56565b5b6000613bf38482850161395a565b91505092915050565b600060208284031215613c1257613c11614e56565b5b600082013567ffffffffffffffff811115613c3057613c2f614e51565b5b613c3c8482850161396f565b91505092915050565b600060208284031215613c5b57613c5a614e56565b5b6000613c698482850161399d565b91505092915050565b613c7b81614b1b565b82525050565b613c8a81614b1b565b82525050565b613c9981614b2d565b82525050565b6000613caa8261493e565b613cb48185614954565b9350613cc4818560208601614bf3565b613ccd81614e5b565b840191505092915050565b613ce181614bd2565b82525050565b6000613cf282614949565b613cfc8185614970565b9350613d0c818560208601614bf3565b613d1581614e5b565b840191505092915050565b6000613d2b82614949565b613d358185614981565b9350613d45818560208601614bf3565b80840191505092915050565b60008154613d5e81614c50565b613d688186614981565b94506001821660008114613d835760018114613d9457613dc7565b60ff19831686528186019350613dc7565b613d9d85614929565b60005b83811015613dbf57815481890152600182019150602081019050613da0565b838801955050505b50505092915050565b6000613ddd602283614970565b9150613de882614e6c565b604082019050919050565b6000613e00601c83614970565b9150613e0b82614ebb565b602082019050919050565b6000613e23603483614970565b9150613e2e82614ee4565b604082019050919050565b6000613e46602683614970565b9150613e5182614f33565b604082019050919050565b6000613e69602a83614970565b9150613e7482614f82565b604082019050919050565b6000613e8c602383614970565b9150613e9782614fd1565b604082019050919050565b6000613eaf601883614970565b9150613eba82615020565b602082019050919050565b6000613ed2602383614970565b9150613edd82615049565b604082019050919050565b6000613ef5602583614970565b9150613f0082615098565b604082019050919050565b6000613f18603183614970565b9150613f23826150e7565b604082019050919050565b6000613f3b602983614970565b9150613f4682615136565b604082019050919050565b6000613f5e603983614970565b9150613f6982615185565b604082019050919050565b6000613f81601883614970565b9150613f8c826151d4565b602082019050919050565b6000613fa4602b83614970565b9150613faf826151fd565b604082019050919050565b6000613fc7602683614970565b9150613fd28261524c565b604082019050919050565b6000613fea602083614970565b9150613ff58261529b565b602082019050919050565b600061400d601b83614970565b9150614018826152c4565b602082019050919050565b6000614030601a83614970565b915061403b826152ed565b602082019050919050565b6000614053603283614970565b915061405e82615316565b604082019050919050565b6000614076602a83614970565b915061408182615365565b604082019050919050565b6000614099602283614970565b91506140a4826153b4565b604082019050919050565b60006140bc600083614965565b91506140c782615403565b600082019050919050565b60006140df601083614970565b91506140ea82615406565b602082019050919050565b6000614102603383614970565b915061410d8261542f565b604082019050919050565b6000614125601d83614970565b91506141308261547e565b602082019050919050565b6000614148601f83614970565b9150614153826154a7565b602082019050919050565b600061416b602183614970565b9150614176826154d0565b604082019050919050565b600061418e602e83614970565b91506141998261551f565b604082019050919050565b60006141b1602683614970565b91506141bc8261556e565b604082019050919050565b60006141d4601f83614970565b91506141df826155bd565b602082019050919050565b60006141f7601683614970565b9150614202826155e6565b602082019050919050565b600061421a602f83614970565b91506142258261560f565b604082019050919050565b600061423d602d83614970565b91506142488261565e565b604082019050919050565b6000614260602283614970565b915061426b826156ad565b604082019050919050565b60408201600082015161428c6000850182613c72565b50602082015161429f60208501826142b4565b50505050565b6142ae81614bb4565b82525050565b6142bd81614bbe565b82525050565b60006142cf8285613d20565b91506142db8284613d20565b91508190509392505050565b60006142f38286613d20565b91506142ff8285613d20565b915061430b8284613d51565b9150819050949350505050565b6000614323826140af565b9150819050919050565b60006020820190506143426000830184613c81565b92915050565b600060608201905061435d6000830186613c81565b61436a6020830185613c81565b61437760408301846142a5565b949350505050565b60006080820190506143946000830187613c81565b6143a16020830186613c81565b6143ae60408301856142a5565b81810360608301526143c08184613c9f565b905095945050505050565b60006040820190506143e06000830185613c81565b6143ed60208301846142a5565b9392505050565b60006020820190506144096000830184613c90565b92915050565b60006020820190506144246000830184613cd8565b92915050565b600060208201905081810360008301526144448184613ce7565b905092915050565b6000602082019050818103600083015261446581613dd0565b9050919050565b6000602082019050818103600083015261448581613df3565b9050919050565b600060208201905081810360008301526144a581613e16565b9050919050565b600060208201905081810360008301526144c581613e39565b9050919050565b600060208201905081810360008301526144e581613e5c565b9050919050565b6000602082019050818103600083015261450581613e7f565b9050919050565b6000602082019050818103600083015261452581613ea2565b9050919050565b6000602082019050818103600083015261454581613ec5565b9050919050565b6000602082019050818103600083015261456581613ee8565b9050919050565b6000602082019050818103600083015261458581613f0b565b9050919050565b600060208201905081810360008301526145a581613f2e565b9050919050565b600060208201905081810360008301526145c581613f51565b9050919050565b600060208201905081810360008301526145e581613f74565b9050919050565b6000602082019050818103600083015261460581613f97565b9050919050565b6000602082019050818103600083015261462581613fba565b9050919050565b6000602082019050818103600083015261464581613fdd565b9050919050565b6000602082019050818103600083015261466581614000565b9050919050565b6000602082019050818103600083015261468581614023565b9050919050565b600060208201905081810360008301526146a581614046565b9050919050565b600060208201905081810360008301526146c581614069565b9050919050565b600060208201905081810360008301526146e58161408c565b9050919050565b60006020820190508181036000830152614705816140d2565b9050919050565b60006020820190508181036000830152614725816140f5565b9050919050565b6000602082019050818103600083015261474581614118565b9050919050565b600060208201905081810360008301526147658161413b565b9050919050565b600060208201905081810360008301526147858161415e565b9050919050565b600060208201905081810360008301526147a581614181565b9050919050565b600060208201905081810360008301526147c5816141a4565b9050919050565b600060208201905081810360008301526147e5816141c7565b9050919050565b60006020820190508181036000830152614805816141ea565b9050919050565b600060208201905081810360008301526148258161420d565b9050919050565b6000602082019050818103600083015261484581614230565b9050919050565b6000602082019050818103600083015261486581614253565b9050919050565b60006040820190506148816000830184614276565b92915050565b600060208201905061489c60008301846142a5565b92915050565b60006148ac6148bd565b90506148b88282614c82565b919050565b6000604051905090565b600067ffffffffffffffff8211156148e2576148e1614e18565b5b6148eb82614e5b565b9050602081019050919050565b600067ffffffffffffffff82111561491357614912614e18565b5b61491c82614e5b565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061499782614b78565b91506149a283614b78565b9250826fffffffffffffffffffffffffffffffff038211156149c7576149c6614d2d565b5b828201905092915050565b60006149dd82614bb4565b91506149e883614bb4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a1d57614a1c614d2d565b5b828201905092915050565b6000614a3382614bb4565b9150614a3e83614bb4565b925082614a4e57614a4d614d5c565b5b828204905092915050565b6000614a6482614bb4565b9150614a6f83614bb4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614aa857614aa7614d2d565b5b828202905092915050565b6000614abe82614b78565b9150614ac983614b78565b925082821015614adc57614adb614d2d565b5b828203905092915050565b6000614af282614bb4565b9150614afd83614bb4565b925082821015614b1057614b0f614d2d565b5b828203905092915050565b6000614b2682614b94565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000819050614b73826156fc565b919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b6000614bdd82614b65565b9050919050565b82818337600083830152505050565b60005b83811015614c11578082015181840152602081019050614bf6565b83811115614c20576000848401525b50505050565b6000614c3182614bb4565b91506000821415614c4557614c44614d2d565b5b600182039050919050565b60006002820490506001821680614c6857607f821691505b60208210811415614c7c57614c7b614dba565b5b50919050565b614c8b82614e5b565b810181811067ffffffffffffffff82111715614caa57614ca9614e18565b5b80604052505050565b6000614cbe82614bb4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614cf157614cf0614d2d565b5b600182019050919050565b6000614d0782614bb4565b9150614d1283614bb4565b925082614d2257614d21614d5c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f30784d4f4e4b45593a20457863656564206d6178207265736572766500000000600082015250565b7f30784d4f4e4b45593a204d6178207075626c6963206d696e7420616d6f756e7460008201527f207065722077616c6c6574206578636565646564000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f30784d4f4e4b45593a205075626c6963206d696e74206973206e6f742061637460008201527f6976650000000000000000000000000000000000000000000000000000000000602082015250565b7f30784d4f4e4b45593a20696e76616c696420616d6f756e740000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f30784d4f4e4b45593a2055524920717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f30784d4f4e4b45593a20457863656564206d617820737570706c790000000000600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f30784d4f4e4b45593a20636f6e7472616374206973206e6f7420616c6c6f776560008201527f6420746f206d696e742e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f30784d4f4e4b45593a204e6f7420656e6f7567682065746865722073656e7400600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360008201527f6c65616e75700000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f30784d4f4e4b45593a207a65726f206164647265737300000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6003811061570d5761570c614d8b565b5b50565b61571981614b1b565b811461572457600080fd5b50565b61573081614b2d565b811461573b57600080fd5b50565b61574781614b39565b811461575257600080fd5b50565b6003811061576257600080fd5b50565b61576e81614bb4565b811461577957600080fd5b5056fea2646970667358221220659c3104a0859d661a6abff5fc3a22a241d88dc22a9a89f6859d0e91e907145764736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000bd90000000000000000000000000000000000000000000000000000000000000021000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d6569503769725968414e507863457364485557344c707a6133436b745756586f5a4a69324569457243564c662f000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061020f5760003560e01c8063715018a611610118578063b88d4fde116100a0578063d7224ba01161006f578063d7224ba014610790578063da3ef23f146107bb578063e985e9c5146107e4578063f0292a0314610821578063f2fde38b1461084c5761020f565b8063b88d4fde146106d6578063c6682862146106ff578063c87b56dd1461072a578063cc47a40b146107675761020f565b80639231ab2a116100e75780639231ab2a146105fe57806395d89b411461063b5780639dcb522f14610666578063a0712d6814610691578063a22cb465146106ad5761020f565b8063715018a6146105665780638acb199e1461057d5780638d859f3e146105a85780638da5cb5b146105d35761020f565b80632f745c591161019b5780634f6ccce71161016a5780634f6ccce71461045b57806355f804b3146104985780636352211e146104c15780636c0360eb146104fe57806370a08231146105295761020f565b80632f745c59146103b357806332cb6b0c146103f05780633ccfd60b1461041b57806342842e0e146104325761020f565b806318160ddd116101e257806318160ddd146102e2578063200d2ed21461030d57806323b872dd146103385780632d20fb60146103615780632e49d78b1461038a5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190613b75565b610875565b60405161024891906143f4565b60405180910390f35b34801561025d57600080fd5b506102666109bf565b604051610273919061442a565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190613c45565b610a51565b6040516102b0919061432d565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190613b35565b610ad6565b005b3480156102ee57600080fd5b506102f7610bef565b6040516103049190614887565b60405180910390f35b34801561031957600080fd5b50610322610bf8565b60405161032f919061440f565b60405180910390f35b34801561034457600080fd5b5061035f600480360381019061035a9190613a1f565b610c0b565b005b34801561036d57600080fd5b5061038860048036038101906103839190613c45565b610c1b565b005b34801561039657600080fd5b506103b160048036038101906103ac9190613bcf565b610cf9565b005b3480156103bf57600080fd5b506103da60048036038101906103d59190613b35565b610dd9565b6040516103e79190614887565b60405180910390f35b3480156103fc57600080fd5b50610405610fd7565b6040516104129190614887565b60405180910390f35b34801561042757600080fd5b50610430610ffb565b005b34801561043e57600080fd5b5061045960048036038101906104549190613a1f565b61117c565b005b34801561046757600080fd5b50610482600480360381019061047d9190613c45565b61119c565b60405161048f9190614887565b60405180910390f35b3480156104a457600080fd5b506104bf60048036038101906104ba9190613bfc565b6111ef565b005b3480156104cd57600080fd5b506104e860048036038101906104e39190613c45565b611285565b6040516104f5919061432d565b60405180910390f35b34801561050a57600080fd5b5061051361129b565b604051610520919061442a565b60405180910390f35b34801561053557600080fd5b50610550600480360381019061054b91906139b2565b611329565b60405161055d9190614887565b60405180910390f35b34801561057257600080fd5b5061057b611412565b005b34801561058957600080fd5b5061059261149a565b60405161059f9190614887565b60405180910390f35b3480156105b457600080fd5b506105bd6114a0565b6040516105ca9190614887565b60405180910390f35b3480156105df57600080fd5b506105e86114a6565b6040516105f5919061432d565b60405180910390f35b34801561060a57600080fd5b5061062560048036038101906106209190613c45565b6114d0565b604051610632919061486c565b60405180910390f35b34801561064757600080fd5b506106506114e8565b60405161065d919061442a565b60405180910390f35b34801561067257600080fd5b5061067b61157a565b6040516106889190614887565b60405180910390f35b6106ab60048036038101906106a69190613c45565b61159e565b005b3480156106b957600080fd5b506106d460048036038101906106cf9190613af5565b611821565b005b3480156106e257600080fd5b506106fd60048036038101906106f89190613a72565b6119a2565b005b34801561070b57600080fd5b506107146119fe565b604051610721919061442a565b60405180910390f35b34801561073657600080fd5b50610751600480360381019061074c9190613c45565b611a8c565b60405161075e919061442a565b60405180910390f35b34801561077357600080fd5b5061078e60048036038101906107899190613b35565b611c02565b005b34801561079c57600080fd5b506107a5611e98565b6040516107b29190614887565b60405180910390f35b3480156107c757600080fd5b506107e260048036038101906107dd9190613bfc565b611e9e565b005b3480156107f057600080fd5b5061080b600480360381019061080691906139df565b611f34565b60405161081891906143f4565b60405180910390f35b34801561082d57600080fd5b50610836611fc8565b6040516108439190614887565b60405180910390f35b34801561085857600080fd5b50610873600480360381019061086e91906139b2565b611fec565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061094057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109a857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109b857506109b7826120e4565b5b9050919050565b6060600180546109ce90614c50565b80601f01602080910402602001604051908101604052809291908181526020018280546109fa90614c50565b8015610a475780601f10610a1c57610100808354040283529160200191610a47565b820191906000526020600020905b815481529060010190602001808311610a2a57829003601f168201915b5050505050905090565b6000610a5c8261214e565b610a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a929061482c565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ae182611285565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b49906146cc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b7161215b565b73ffffffffffffffffffffffffffffffffffffffff161480610ba05750610b9f81610b9a61215b565b611f34565b5b610bdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd6906145ac565b60405180910390fd5b610bea838383612163565b505050565b60008054905090565b600a60009054906101000a900460ff1681565b610c16838383612215565b505050565b610c2361215b565b73ffffffffffffffffffffffffffffffffffffffff16610c416114a6565b73ffffffffffffffffffffffffffffffffffffffff1614610c97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8e9061462c565b60405180910390fd5b60026009541415610cdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd4906147cc565b60405180910390fd5b6002600981905550610cee816127ce565b600160098190555050565b610d0161215b565b73ffffffffffffffffffffffffffffffffffffffff16610d1f6114a6565b73ffffffffffffffffffffffffffffffffffffffff1614610d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6c9061462c565b60405180910390fd5b80600a60006101000a81548160ff02191690836002811115610d9a57610d99614d8b565b5b02179055507fafa725e7f44cadb687a7043853fa1a7e7b8f0da74ce87ec546e9420f04da8c1e81604051610dce919061440f565b60405180910390a150565b6000610de483611329565b8210610e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1c9061444c565b60405180910390fd5b6000610e2f610bef565b905060008060005b83811015610f95576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610f2957806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f815786841415610f72578195505050505050610fd1565b8380610f7d90614cb3565b9450505b508080610f8d90614cb3565b915050610e37565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc89061478c565b60405180910390fd5b92915050565b7f0000000000000000000000000000000000000000000000000000000000000bd981565b60026009541415611041576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611038906147cc565b60405180910390fd5b600260098190555061105161215b565b73ffffffffffffffffffffffffffffffffffffffff1661106f6114a6565b73ffffffffffffffffffffffffffffffffffffffff16146110c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bc9061462c565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16476040516110eb90614318565b60006040518083038185875af1925050503d8060008114611128576040519150601f19603f3d011682016040523d82523d6000602084013e61112d565b606091505b5050905080611171576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611168906146ec565b60405180910390fd5b506001600981905550565b611197838383604051806020016040528060008152506119a2565b505050565b60006111a6610bef565b82106111e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111de9061452c565b60405180910390fd5b819050919050565b6111f761215b565b73ffffffffffffffffffffffffffffffffffffffff166112156114a6565b73ffffffffffffffffffffffffffffffffffffffff161461126b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112629061462c565b60405180910390fd5b80600e9080519060200190611281929190613777565b5050565b600061129082612a5c565b600001519050919050565b600e80546112a890614c50565b80601f01602080910402602001604051908101604052809291908181526020018280546112d490614c50565b80156113215780601f106112f657610100808354040283529160200191611321565b820191906000526020600020905b81548152906001019060200180831161130457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561139a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611391906145ec565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61141a61215b565b73ffffffffffffffffffffffffffffffffffffffff166114386114a6565b73ffffffffffffffffffffffffffffffffffffffff161461148e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114859061462c565b60405180910390fd5b6114986000612c5f565b565b600c5481565b600b5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114d86137fd565b6114e182612a5c565b9050919050565b6060600280546114f790614c50565b80601f016020809104026020016040519081016040528092919081815260200182805461152390614c50565b80156115705780601f1061154557610100808354040283529160200191611570565b820191906000526020600020905b81548152906001019060200180831161155357829003601f168201915b5050505050905090565b7f000000000000000000000000000000000000000000000000000000000000002181565b600160028111156115b2576115b1614d8b565b5b600a60009054906101000a900460ff1660028111156115d4576115d3614d8b565b5b14611614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160b906144ec565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611682576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611679906146ac565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000005816116ad33612d25565b6116b791906149d2565b11156116f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ef9061448c565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000bd9600c547f000000000000000000000000000000000000000000000000000000000000002183611746610bef565b61175091906149d2565b61175a91906149d2565b6117649190614ae7565b11156117a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179c9061464c565b60405180910390fd5b60005b818110156117ce576117bb336001612d37565b80806117c690614cb3565b9150506117a8565b506117e581600b546117e09190614a59565b612d55565b7f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe33826040516118169291906143cb565b60405180910390a150565b61182961215b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188e9061466c565b60405180910390fd5b80600660006118a461215b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661195161215b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161199691906143f4565b60405180910390a35050565b6119ad848484612215565b6119b984848484612df6565b6119f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ef9061470c565b60405180910390fd5b50505050565b600f8054611a0b90614c50565b80601f0160208091040260200160405190810160405280929190818152602001828054611a3790614c50565b8015611a845780601f10611a5957610100808354040283529160200191611a84565b820191906000526020600020905b815481529060010190602001808311611a6757829003601f168201915b505050505081565b6060611a978261214e565b611ad6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acd9061458c565b60405180910390fd5b6000600d60008481526020019081526020016000208054611af690614c50565b80601f0160208091040260200160405190810160405280929190818152602001828054611b2290614c50565b8015611b6f5780601f10611b4457610100808354040283529160200191611b6f565b820191906000526020600020905b815481529060010190602001808311611b5257829003601f168201915b505050505090506000611b80612f8d565b9050600081511415611b96578192505050611bfd565b600082511115611bcb578082604051602001611bb39291906142c3565b60405160208183030381529060405292505050611bfd565b80611bd58561301f565b600f604051602001611be9939291906142e7565b604051602081830303815290604052925050505b919050565b611c0a61215b565b73ffffffffffffffffffffffffffffffffffffffff16611c286114a6565b73ffffffffffffffffffffffffffffffffffffffff1614611c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c759061462c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce5906147ec565b60405180910390fd5b60008111611d31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d289061450c565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000bd981611d5b610bef565b611d6591906149d2565b1115611da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9d9061464c565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000002181600c54611dd591906149d2565b1115611e16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0d9061446c565b60405180910390fd5b60005b81811015611e3f57611e2c836001612d37565b8080611e3790614cb3565b915050611e19565b5080600c6000828254611e5291906149d2565b925050819055507fd729ebd340be850113adba35e3218ac6bd77c375ce35c256e3493fdf30b99f3e338383604051611e8c93929190614348565b60405180910390a15050565b60075481565b611ea661215b565b73ffffffffffffffffffffffffffffffffffffffff16611ec46114a6565b73ffffffffffffffffffffffffffffffffffffffff1614611f1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f119061462c565b60405180910390fd5b80600f9080519060200190611f30929190613777565b5050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b7f000000000000000000000000000000000000000000000000000000000000000581565b611ff461215b565b73ffffffffffffffffffffffffffffffffffffffff166120126114a6565b73ffffffffffffffffffffffffffffffffffffffff1614612068576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205f9061462c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156120d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cf906144ac565b60405180910390fd5b6120e181612c5f565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061222082612a5c565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661224761215b565b73ffffffffffffffffffffffffffffffffffffffff1614806122a3575061226c61215b565b73ffffffffffffffffffffffffffffffffffffffff1661228b84610a51565b73ffffffffffffffffffffffffffffffffffffffff16145b806122bf57506122be82600001516122b961215b565b611f34565b5b905080612301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f89061468c565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612373576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236a9061460c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156123e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123da9061454c565b60405180910390fd5b6123f08585856001613180565b6124006000848460000151612163565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661246e9190614ab3565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16612512919061498c565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600060018461261891906149d2565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561275e5761268e8161214e565b1561275d576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127c68686866001613186565b505050505050565b6000600754905060008211612818576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280f906145cc565b60405180910390fd5b60006001838361282891906149d2565b6128329190614ae7565b905060017f0000000000000000000000000000000000000000000000000000000000000bd96128619190614ae7565b8111156128985760017f0000000000000000000000000000000000000000000000000000000000000bd96128959190614ae7565b90505b6128a18161214e565b6128e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d7906147ac565b60405180910390fd5b60008290505b818111612a4357600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612a3057600061296382612a5c565b90506040518060400160405280826000015173ffffffffffffffffffffffffffffffffffffffff168152602001826020015167ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050505b8080612a3b90614cb3565b9150506128e6565b50600181612a5191906149d2565b600781905550505050565b612a646137fd565b612a6d8261214e565b612aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa3906144cc565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000058310612b105760017f000000000000000000000000000000000000000000000000000000000000000584612b039190614ae7565b612b0d91906149d2565b90505b60008390505b818110612c1e576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612c0a57809350505050612c5a565b508080612c1690614c26565b915050612b16565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c519061480c565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612d308261318c565b9050919050565b612d51828260405180602001604052806000815250613275565b5050565b80341015612d98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d8f9061474c565b60405180910390fd5b80341115612df3573373ffffffffffffffffffffffffffffffffffffffff166108fc8234612dc69190614ae7565b9081150290604051600060405180830381858888f19350505050158015612df1573d6000803e3d6000fd5b505b50565b6000612e178473ffffffffffffffffffffffffffffffffffffffff16613754565b15612f80578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e4061215b565b8786866040518563ffffffff1660e01b8152600401612e62949392919061437f565b602060405180830381600087803b158015612e7c57600080fd5b505af1925050508015612ead57506040513d601f19601f82011682018060405250810190612eaa9190613ba2565b60015b612f30573d8060008114612edd576040519150601f19603f3d011682016040523d82523d6000602084013e612ee2565b606091505b50600081511415612f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1f9061470c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612f85565b600190505b949350505050565b6060600e8054612f9c90614c50565b80601f0160208091040260200160405190810160405280929190818152602001828054612fc890614c50565b80156130155780601f10612fea57610100808354040283529160200191613015565b820191906000526020600020905b815481529060010190602001808311612ff857829003601f168201915b5050505050905090565b60606000821415613067576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061317b565b600082905060005b6000821461309957808061308290614cb3565b915050600a826130929190614a28565b915061306f565b60008167ffffffffffffffff8111156130b5576130b4614e18565b5b6040519080825280601f01601f1916602001820160405280156130e75781602001600182028036833780820191505090505b5090505b60008514613174576001826131009190614ae7565b9150600a8561310f9190614cfc565b603061311b91906149d2565b60f81b81838151811061313157613130614de9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561316d9190614a28565b94506130eb565b8093505050505b919050565b50505050565b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131f49061456c565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156132eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132e29061476c565b60405180910390fd5b6132f48161214e565b15613334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161332b9061472c565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000005831115613397576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161338e9061484c565b60405180910390fd5b6133a46000858386613180565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516134a1919061498c565b6fffffffffffffffffffffffffffffffff1681526020018583602001516134c8919061498c565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561373757818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46136d76000888488612df6565b613716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161370d9061470c565b60405180910390fd5b818061372190614cb3565b925050808061372f90614cb3565b915050613666565b508060008190555061374c6000878588613186565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461378390614c50565b90600052602060002090601f0160209004810192826137a557600085556137ec565b82601f106137be57805160ff19168380011785556137ec565b828001600101855582156137ec579182015b828111156137eb5782518255916020019190600101906137d0565b5b5090506137f99190613837565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613850576000816000905550600101613838565b5090565b6000613867613862846148c7565b6148a2565b90508281526020810184848401111561388357613882614e4c565b5b61388e848285614be4565b509392505050565b60006138a96138a4846148f8565b6148a2565b9050828152602081018484840111156138c5576138c4614e4c565b5b6138d0848285614be4565b509392505050565b6000813590506138e781615710565b92915050565b6000813590506138fc81615727565b92915050565b6000813590506139118161573e565b92915050565b6000815190506139268161573e565b92915050565b600082601f83011261394157613940614e47565b5b8135613951848260208601613854565b91505092915050565b60008135905061396981615755565b92915050565b600082601f83011261398457613983614e47565b5b8135613994848260208601613896565b91505092915050565b6000813590506139ac81615765565b92915050565b6000602082840312156139c8576139c7614e56565b5b60006139d6848285016138d8565b91505092915050565b600080604083850312156139f6576139f5614e56565b5b6000613a04858286016138d8565b9250506020613a15858286016138d8565b9150509250929050565b600080600060608486031215613a3857613a37614e56565b5b6000613a46868287016138d8565b9350506020613a57868287016138d8565b9250506040613a688682870161399d565b9150509250925092565b60008060008060808587031215613a8c57613a8b614e56565b5b6000613a9a878288016138d8565b9450506020613aab878288016138d8565b9350506040613abc8782880161399d565b925050606085013567ffffffffffffffff811115613add57613adc614e51565b5b613ae98782880161392c565b91505092959194509250565b60008060408385031215613b0c57613b0b614e56565b5b6000613b1a858286016138d8565b9250506020613b2b858286016138ed565b9150509250929050565b60008060408385031215613b4c57613b4b614e56565b5b6000613b5a858286016138d8565b9250506020613b6b8582860161399d565b9150509250929050565b600060208284031215613b8b57613b8a614e56565b5b6000613b9984828501613902565b91505092915050565b600060208284031215613bb857613bb7614e56565b5b6000613bc684828501613917565b91505092915050565b600060208284031215613be557613be4614e56565b5b6000613bf38482850161395a565b91505092915050565b600060208284031215613c1257613c11614e56565b5b600082013567ffffffffffffffff811115613c3057613c2f614e51565b5b613c3c8482850161396f565b91505092915050565b600060208284031215613c5b57613c5a614e56565b5b6000613c698482850161399d565b91505092915050565b613c7b81614b1b565b82525050565b613c8a81614b1b565b82525050565b613c9981614b2d565b82525050565b6000613caa8261493e565b613cb48185614954565b9350613cc4818560208601614bf3565b613ccd81614e5b565b840191505092915050565b613ce181614bd2565b82525050565b6000613cf282614949565b613cfc8185614970565b9350613d0c818560208601614bf3565b613d1581614e5b565b840191505092915050565b6000613d2b82614949565b613d358185614981565b9350613d45818560208601614bf3565b80840191505092915050565b60008154613d5e81614c50565b613d688186614981565b94506001821660008114613d835760018114613d9457613dc7565b60ff19831686528186019350613dc7565b613d9d85614929565b60005b83811015613dbf57815481890152600182019150602081019050613da0565b838801955050505b50505092915050565b6000613ddd602283614970565b9150613de882614e6c565b604082019050919050565b6000613e00601c83614970565b9150613e0b82614ebb565b602082019050919050565b6000613e23603483614970565b9150613e2e82614ee4565b604082019050919050565b6000613e46602683614970565b9150613e5182614f33565b604082019050919050565b6000613e69602a83614970565b9150613e7482614f82565b604082019050919050565b6000613e8c602383614970565b9150613e9782614fd1565b604082019050919050565b6000613eaf601883614970565b9150613eba82615020565b602082019050919050565b6000613ed2602383614970565b9150613edd82615049565b604082019050919050565b6000613ef5602583614970565b9150613f0082615098565b604082019050919050565b6000613f18603183614970565b9150613f23826150e7565b604082019050919050565b6000613f3b602983614970565b9150613f4682615136565b604082019050919050565b6000613f5e603983614970565b9150613f6982615185565b604082019050919050565b6000613f81601883614970565b9150613f8c826151d4565b602082019050919050565b6000613fa4602b83614970565b9150613faf826151fd565b604082019050919050565b6000613fc7602683614970565b9150613fd28261524c565b604082019050919050565b6000613fea602083614970565b9150613ff58261529b565b602082019050919050565b600061400d601b83614970565b9150614018826152c4565b602082019050919050565b6000614030601a83614970565b915061403b826152ed565b602082019050919050565b6000614053603283614970565b915061405e82615316565b604082019050919050565b6000614076602a83614970565b915061408182615365565b604082019050919050565b6000614099602283614970565b91506140a4826153b4565b604082019050919050565b60006140bc600083614965565b91506140c782615403565b600082019050919050565b60006140df601083614970565b91506140ea82615406565b602082019050919050565b6000614102603383614970565b915061410d8261542f565b604082019050919050565b6000614125601d83614970565b91506141308261547e565b602082019050919050565b6000614148601f83614970565b9150614153826154a7565b602082019050919050565b600061416b602183614970565b9150614176826154d0565b604082019050919050565b600061418e602e83614970565b91506141998261551f565b604082019050919050565b60006141b1602683614970565b91506141bc8261556e565b604082019050919050565b60006141d4601f83614970565b91506141df826155bd565b602082019050919050565b60006141f7601683614970565b9150614202826155e6565b602082019050919050565b600061421a602f83614970565b91506142258261560f565b604082019050919050565b600061423d602d83614970565b91506142488261565e565b604082019050919050565b6000614260602283614970565b915061426b826156ad565b604082019050919050565b60408201600082015161428c6000850182613c72565b50602082015161429f60208501826142b4565b50505050565b6142ae81614bb4565b82525050565b6142bd81614bbe565b82525050565b60006142cf8285613d20565b91506142db8284613d20565b91508190509392505050565b60006142f38286613d20565b91506142ff8285613d20565b915061430b8284613d51565b9150819050949350505050565b6000614323826140af565b9150819050919050565b60006020820190506143426000830184613c81565b92915050565b600060608201905061435d6000830186613c81565b61436a6020830185613c81565b61437760408301846142a5565b949350505050565b60006080820190506143946000830187613c81565b6143a16020830186613c81565b6143ae60408301856142a5565b81810360608301526143c08184613c9f565b905095945050505050565b60006040820190506143e06000830185613c81565b6143ed60208301846142a5565b9392505050565b60006020820190506144096000830184613c90565b92915050565b60006020820190506144246000830184613cd8565b92915050565b600060208201905081810360008301526144448184613ce7565b905092915050565b6000602082019050818103600083015261446581613dd0565b9050919050565b6000602082019050818103600083015261448581613df3565b9050919050565b600060208201905081810360008301526144a581613e16565b9050919050565b600060208201905081810360008301526144c581613e39565b9050919050565b600060208201905081810360008301526144e581613e5c565b9050919050565b6000602082019050818103600083015261450581613e7f565b9050919050565b6000602082019050818103600083015261452581613ea2565b9050919050565b6000602082019050818103600083015261454581613ec5565b9050919050565b6000602082019050818103600083015261456581613ee8565b9050919050565b6000602082019050818103600083015261458581613f0b565b9050919050565b600060208201905081810360008301526145a581613f2e565b9050919050565b600060208201905081810360008301526145c581613f51565b9050919050565b600060208201905081810360008301526145e581613f74565b9050919050565b6000602082019050818103600083015261460581613f97565b9050919050565b6000602082019050818103600083015261462581613fba565b9050919050565b6000602082019050818103600083015261464581613fdd565b9050919050565b6000602082019050818103600083015261466581614000565b9050919050565b6000602082019050818103600083015261468581614023565b9050919050565b600060208201905081810360008301526146a581614046565b9050919050565b600060208201905081810360008301526146c581614069565b9050919050565b600060208201905081810360008301526146e58161408c565b9050919050565b60006020820190508181036000830152614705816140d2565b9050919050565b60006020820190508181036000830152614725816140f5565b9050919050565b6000602082019050818103600083015261474581614118565b9050919050565b600060208201905081810360008301526147658161413b565b9050919050565b600060208201905081810360008301526147858161415e565b9050919050565b600060208201905081810360008301526147a581614181565b9050919050565b600060208201905081810360008301526147c5816141a4565b9050919050565b600060208201905081810360008301526147e5816141c7565b9050919050565b60006020820190508181036000830152614805816141ea565b9050919050565b600060208201905081810360008301526148258161420d565b9050919050565b6000602082019050818103600083015261484581614230565b9050919050565b6000602082019050818103600083015261486581614253565b9050919050565b60006040820190506148816000830184614276565b92915050565b600060208201905061489c60008301846142a5565b92915050565b60006148ac6148bd565b90506148b88282614c82565b919050565b6000604051905090565b600067ffffffffffffffff8211156148e2576148e1614e18565b5b6148eb82614e5b565b9050602081019050919050565b600067ffffffffffffffff82111561491357614912614e18565b5b61491c82614e5b565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061499782614b78565b91506149a283614b78565b9250826fffffffffffffffffffffffffffffffff038211156149c7576149c6614d2d565b5b828201905092915050565b60006149dd82614bb4565b91506149e883614bb4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a1d57614a1c614d2d565b5b828201905092915050565b6000614a3382614bb4565b9150614a3e83614bb4565b925082614a4e57614a4d614d5c565b5b828204905092915050565b6000614a6482614bb4565b9150614a6f83614bb4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614aa857614aa7614d2d565b5b828202905092915050565b6000614abe82614b78565b9150614ac983614b78565b925082821015614adc57614adb614d2d565b5b828203905092915050565b6000614af282614bb4565b9150614afd83614bb4565b925082821015614b1057614b0f614d2d565b5b828203905092915050565b6000614b2682614b94565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000819050614b73826156fc565b919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b6000614bdd82614b65565b9050919050565b82818337600083830152505050565b60005b83811015614c11578082015181840152602081019050614bf6565b83811115614c20576000848401525b50505050565b6000614c3182614bb4565b91506000821415614c4557614c44614d2d565b5b600182039050919050565b60006002820490506001821680614c6857607f821691505b60208210811415614c7c57614c7b614dba565b5b50919050565b614c8b82614e5b565b810181811067ffffffffffffffff82111715614caa57614ca9614e18565b5b80604052505050565b6000614cbe82614bb4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614cf157614cf0614d2d565b5b600182019050919050565b6000614d0782614bb4565b9150614d1283614bb4565b925082614d2257614d21614d5c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f30784d4f4e4b45593a20457863656564206d6178207265736572766500000000600082015250565b7f30784d4f4e4b45593a204d6178207075626c6963206d696e7420616d6f756e7460008201527f207065722077616c6c6574206578636565646564000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f30784d4f4e4b45593a205075626c6963206d696e74206973206e6f742061637460008201527f6976650000000000000000000000000000000000000000000000000000000000602082015250565b7f30784d4f4e4b45593a20696e76616c696420616d6f756e740000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f30784d4f4e4b45593a2055524920717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f30784d4f4e4b45593a20457863656564206d617820737570706c790000000000600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f30784d4f4e4b45593a20636f6e7472616374206973206e6f7420616c6c6f776560008201527f6420746f206d696e742e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f30784d4f4e4b45593a204e6f7420656e6f7567682065746865722073656e7400600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360008201527f6c65616e75700000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f30784d4f4e4b45593a207a65726f206164647265737300000000000000000000600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6003811061570d5761570c614d8b565b5b50565b61571981614b1b565b811461572457600080fd5b50565b61573081614b2d565b811461573b57600080fd5b50565b61574781614b39565b811461575257600080fd5b50565b6003811061576257600080fd5b50565b61576e81614bb4565b811461577957600080fd5b5056fea2646970667358221220659c3104a0859d661a6abff5fc3a22a241d88dc22a9a89f6859d0e91e907145764736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000bd90000000000000000000000000000000000000000000000000000000000000021000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d6569503769725968414e507863457364485557344c707a6133436b745756586f5a4a69324569457243564c662f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initURI (string): https://gateway.pinata.cloud/ipfs/QmeiP7irYhANPxcEsdHUW4Lpza3CktWVXoZJi2EiErCVLf/
Arg [1] : _maxBatchSize (uint256): 5
Arg [2] : _collectionSize (uint256): 3033
Arg [3] : _maxreserveAmount (uint256): 33

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000bd9
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000021
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [5] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [6] : 732f516d6569503769725968414e507863457364485557344c707a6133436b74
Arg [7] : 5756586f5a4a69324569457243564c662f000000000000000000000000000000


Deployed Bytecode Sourcemap

54193:4829:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37676:422;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39637:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41332:292;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40853:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36032:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54406:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42359:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58684:156;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58185:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36740:864;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54435:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57991:186;;;;;;;;;;;;;:::i;:::-;;42592:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36209:228;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57720:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39446:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54878:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38162:258;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53312:103;;;;;;;;;;;;;:::i;:::-;;54562:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54523:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52661:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58852:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39806:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54603:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56082:853;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41696:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42840:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54906:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56947:649;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55355:719;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47721:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57832:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42078:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54477:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53570:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37676:422;37823:4;37880:25;37865:40;;;:11;:40;;;;:105;;;;37937:33;37922:48;;;:11;:48;;;;37865:105;:172;;;;38002:35;37987:50;;;:11;:50;;;;37865:172;:225;;;;38054:36;38078:11;38054:23;:36::i;:::-;37865:225;37845:245;;37676:422;;;:::o;39637:100::-;39691:13;39724:5;39717:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39637:100;:::o;41332:292::-;41436:7;41483:16;41491:7;41483;:16::i;:::-;41461:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;41592:15;:24;41608:7;41592:24;;;;;;;;;;;;;;;;;;;;;41585:31;;41332:292;;;:::o;40853:413::-;40926:13;40942:24;40958:7;40942:15;:24::i;:::-;40926:40;;40991:5;40985:11;;:2;:11;;;;40977:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;41086:5;41070:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;41095:37;41112:5;41119:12;:10;:12::i;:::-;41095:16;:37::i;:::-;41070:62;41048:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;41230:28;41239:2;41243:7;41252:5;41230:8;:28::i;:::-;40915:351;40853:413;;:::o;36032:100::-;36085:7;36112:12;;36105:19;;36032:100;:::o;54406:20::-;;;;;;;;;;;;;:::o;42359:162::-;42485:28;42495:4;42501:2;42505:7;42485:9;:28::i;:::-;42359:162;;;:::o;58684:156::-;52892:12;:10;:12::i;:::-;52881:23;;:7;:5;:7::i;:::-;:23;;;52873:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31736:1:::1;32334:7;;:19;;32326:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;31736:1;32467:7;:18;;;;58804:28:::2;58823:8;58804:18;:28::i;:::-;31692:1:::1;32646:7;:22;;;;58684:156:::0;:::o;58185:127::-;52892:12;:10;:12::i;:::-;52881:23;;:7;:5;:7::i;:::-;:23;;;52873:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58259:7:::1;58250:6;;:16;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;58282:22;58296:7;58282:22;;;;;;:::i;:::-;;;;;;;;58185:127:::0;:::o;36740:864::-;36865:7;36906:16;36916:5;36906:9;:16::i;:::-;36898:5;:24;36890:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;36972:22;36997:13;:11;:13::i;:::-;36972:38;;37021:19;37055:25;37109:9;37104:426;37128:14;37124:1;:18;37104:426;;;37164:31;37198:11;:14;37210:1;37198:14;;;;;;;;;;;37164:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37257:1;37231:28;;:9;:14;;;:28;;;37227:103;;37300:9;:14;;;37280:34;;37227:103;37369:5;37348:26;;:17;:26;;;37344:175;;;37414:5;37399:11;:20;37395:77;;;37451:1;37444:8;;;;;;;;;37395:77;37490:13;;;;;:::i;:::-;;;;37344:175;37149:381;37144:3;;;;;:::i;:::-;;;;37104:426;;;;37540:56;;;;;;;;;;:::i;:::-;;;;;;;;36740:864;;;;;:::o;54435:35::-;;;:::o;57991:186::-;31736:1;32334:7;;:19;;32326:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;31736:1;32467:7;:18;;;;52892:12:::1;:10;:12::i;:::-;52881:23;;:7;:5;:7::i;:::-;:23;;;52873:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58055:12:::2;58073:10;:15;;58096:21;58073:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58054:68;;;58141:7;58133:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;58043:134;31692:1:::0;32646:7;:22;;;;57991:186::o;42592:177::-;42722:39;42739:4;42745:2;42749:7;42722:39;;;;;;;;;;;;:16;:39::i;:::-;42592:177;;;:::o;36209:228::-;36312:7;36353:13;:11;:13::i;:::-;36345:5;:21;36337:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;36424:5;36417:12;;36209:228;;;:::o;57720:104::-;52892:12;:10;:12::i;:::-;52881:23;;:7;:5;:7::i;:::-;:23;;;52873:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57805:11:::1;57795:7;:21;;;;;;;;;;;;:::i;:::-;;57720:104:::0;:::o;39446:124::-;39510:7;39537:20;39549:7;39537:11;:20::i;:::-;:25;;;39530:32;;39446:124;;;:::o;54878:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;38162:258::-;38226:7;38285:1;38268:19;;:5;:19;;;;38246:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;38384:12;:19;38397:5;38384:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;38376:36;;38369:43;;38162:258;;;:::o;53312:103::-;52892:12;:10;:12::i;:::-;52881:23;;:7;:5;:7::i;:::-;:23;;;52873:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53377:30:::1;53404:1;53377:18;:30::i;:::-;53312:103::o:0;54562:34::-;;;;:::o;54523:30::-;;;;:::o;52661:87::-;52707:7;52734:6;;;;;;;;;;;52727:13;;52661:87;:::o;58852:167::-;58945:21;;:::i;:::-;58991:20;59003:7;58991:11;:20::i;:::-;58984:27;;58852:167;;;:::o;39806:104::-;39862:13;39895:7;39888:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39806:104;:::o;54603:41::-;;;:::o;56082:853::-;56167:17;56157:27;;;;;;;;:::i;:::-;;:6;;;;;;;;;;;:27;;;;;;;;:::i;:::-;;;56149:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;56270:10;56257:23;;:9;:23;;;56235:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;56427:8;56410:13;56383:24;56396:10;56383:12;:24::i;:::-;:40;;;;:::i;:::-;:52;;56361:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;56639:14;56599:19;;56580:16;56564:13;56548;:11;:13::i;:::-;:29;;;;:::i;:::-;:48;;;;:::i;:::-;:70;;;;:::i;:::-;:105;;56526:182;;;;;;;;;;;;:::i;:::-;;;;;;;;;56734:9;56729:95;56753:13;56749:1;:17;56729:95;;;56788:24;56798:10;56810:1;56788:9;:24::i;:::-;56768:3;;;;;:::i;:::-;;;;56729:95;;;;56841:35;56862:13;56854:5;;:21;;;;:::i;:::-;56841:12;:35::i;:::-;56894:33;56901:10;56913:13;56894:33;;;;;;;:::i;:::-;;;;;;;;56082:853;:::o;41696:311::-;41826:12;:10;:12::i;:::-;41814:24;;:8;:24;;;;41806:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;41927:8;41882:18;:32;41901:12;:10;:12::i;:::-;41882:32;;;;;;;;;;;;;;;:42;41915:8;41882:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;41980:8;41951:48;;41966:12;:10;:12::i;:::-;41951:48;;;41990:8;41951:48;;;;;;:::i;:::-;;;;;;;;41696:311;;:::o;42840:355::-;42999:28;43009:4;43015:2;43019:7;42999:9;:28::i;:::-;43060:48;43083:4;43089:2;43093:7;43102:5;43060:22;:48::i;:::-;43038:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;42840:355;;;;:::o;54906:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;56947:649::-;57065:13;57118:16;57126:7;57118;:16::i;:::-;57096:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;57216:23;57242:10;:19;57253:7;57242:19;;;;;;;;;;;57216:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57272:18;57293:10;:8;:10::i;:::-;57272:31;;57342:1;57326:4;57320:18;:23;57316:72;;;57367:9;57360:16;;;;;;57316:72;57428:1;57408:9;57402:23;:27;57398:108;;;57477:4;57483:9;57460:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57446:48;;;;;;57398:108;57547:4;57553:18;:7;:16;:18::i;:::-;57573:13;57530:57;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57516:72;;;;56947:649;;;;:::o;55355:719::-;52892:12;:10;:12::i;:::-;52881:23;;:7;:5;:7::i;:::-;:23;;;52873:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55473:1:::1;55452:23;;:9;:23;;;;55444:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;55537:1;55521:13;:17;55513:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;55633:14;55616:13;55600;:11;:13::i;:::-;:29;;;;:::i;:::-;:47;;55578:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;55774:16;55757:13;55735:19;;:35;;;;:::i;:::-;:55;;55713:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;55864:9;55859:94;55883:13;55879:1;:17;55859:94;;;55918:23;55928:9;55939:1;55918:9;:23::i;:::-;55898:3;;;;;:::i;:::-;;;;55859:94;;;;55986:13;55963:19;;:36;;;;;;;:::i;:::-;;;;;;;;56015:51;56029:10;56041:9;56052:13;56015:51;;;;;;;;:::i;:::-;;;;;;;;55355:719:::0;;:::o;47721:43::-;;;;:::o;57832:151::-;52892:12;:10;:12::i;:::-;52881:23;;:7;:5;:7::i;:::-;:23;;;52873:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57958:17:::1;57942:13;:33;;;;;;;;;;;;:::i;:::-;;57832:151:::0;:::o;42078:214::-;42220:4;42249:18;:25;42268:5;42249:25;;;;;;;;;;;;;;;:35;42275:8;42249:35;;;;;;;;;;;;;;;;;;;;;;;;;42242:42;;42078:214;;;;:::o;54477:33::-;;;:::o;53570:201::-;52892:12;:10;:12::i;:::-;52881:23;;:7;:5;:7::i;:::-;:23;;;52873:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53679:1:::1;53659:22;;:8;:22;;;;53651:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;53735:28;53754:8;53735:18;:28::i;:::-;53570:201:::0;:::o;11347:157::-;11432:4;11471:25;11456:40;;;:11;:40;;;;11449:47;;11347:157;;;:::o;43450:111::-;43507:4;43541:12;;43531:7;:22;43524:29;;43450:111;;;:::o;33362:98::-;33415:7;33442:10;33435:17;;33362:98;:::o;47517:196::-;47659:2;47632:15;:24;47648:7;47632:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;47697:7;47693:2;47677:28;;47686:5;47677:28;;;;;;;;;;;;47517:196;;;:::o;45690:1709::-;45805:35;45843:20;45855:7;45843:11;:20::i;:::-;45805:58;;45876:22;45918:13;:18;;;45902:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;45977:12;:10;:12::i;:::-;45953:36;;:20;45965:7;45953:11;:20::i;:::-;:36;;;45902:87;:154;;;;46006:50;46023:13;:18;;;46043:12;:10;:12::i;:::-;46006:16;:50::i;:::-;45902:154;45876:181;;46092:17;46070:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;46244:4;46222:26;;:13;:18;;;:26;;;46200:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;46347:1;46333:16;;:2;:16;;;;46325:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;46404:43;46426:4;46432:2;46436:7;46445:1;46404:21;:43::i;:::-;46512:49;46529:1;46533:7;46542:13;:18;;;46512:8;:49::i;:::-;46604:1;46574:12;:18;46587:4;46574:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;46644:1;46616:12;:16;46629:2;46616:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;46679:43;;;;;;;;46694:2;46679:43;;;;;;46705:15;46679:43;;;;;46656:11;:20;46668:7;46656:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46962:19;46994:1;46984:7;:11;;;;:::i;:::-;46962:33;;47051:1;47010:43;;:11;:24;47022:11;47010:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;47006:288;;;47074:20;47082:11;47074:7;:20::i;:::-;47070:213;;;47142:125;;;;;;;;47179:13;:18;;;47142:125;;;;;;47220:13;:28;;;47142:125;;;;;47115:11;:24;47127:11;47115:24;;;;;;;;;;;:152;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47070:213;47006:288;47330:7;47326:2;47311:27;;47320:4;47311:27;;;;;;;;;;;;47349:42;47370:4;47376:2;47380:7;47389:1;47349:20;:42::i;:::-;45794:1605;;;45690:1709;;;:::o;47877:950::-;47943:25;47971:24;;47943:52;;48025:1;48014:8;:12;48006:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;48066:16;48116:1;48105:8;48085:17;:28;;;;:::i;:::-;:32;;;;:::i;:::-;48066:51;;48160:1;48143:14;:18;;;;:::i;:::-;48132:8;:29;48128:91;;;48206:1;48189:14;:18;;;;:::i;:::-;48178:29;;48128:91;48342:17;48350:8;48342:7;:17::i;:::-;48334:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48418:9;48430:17;48418:29;;48413:357;48454:8;48449:1;:13;48413:357;;48519:1;48488:33;;:11;:14;48500:1;48488:14;;;;;;;;;;;:19;;;;;;;;;;;;:33;;;48484:275;;;48542:31;48576:14;48588:1;48576:11;:14::i;:::-;48542:48;;48626:117;;;;;;;;48663:9;:14;;;48626:117;;;;;;48700:9;:24;;;48626:117;;;;;48609:11;:14;48621:1;48609:14;;;;;;;;;;;:134;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48523:236;48484:275;48464:3;;;;;:::i;:::-;;;;48413:357;;;;48818:1;48807:8;:12;;;;:::i;:::-;48780:24;:39;;;;47932:895;;47877:950;:::o;38702:682::-;38790:21;;:::i;:::-;38837:16;38845:7;38837;:16::i;:::-;38829:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;38913:26;38965:12;38954:7;:23;38950:103;;39040:1;39025:12;39015:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;38994:47;;38950:103;39070:12;39085:7;39070:22;;39065:242;39102:18;39094:4;:26;39065:242;;39145:31;39179:11;:17;39191:4;39179:17;;;;;;;;;;;39145:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39241:1;39215:28;;:9;:14;;;:28;;;39211:85;;39271:9;39264:16;;;;;;;39211:85;39130:177;39122:6;;;;;:::i;:::-;;;;39065:242;;;;39319:57;;;;;;;;;;:::i;:::-;;;;;;;;38702:682;;;;:::o;53931:191::-;54005:16;54024:6;;;;;;;;;;;54005:25;;54050:8;54041:6;;:17;;;;;;;;;;;;;;;;;;54105:8;54074:40;;54095:8;54074:40;;;;;;;;;;;;53994:128;53931:191;:::o;58320:115::-;58380:7;58407:20;58421:5;58407:13;:20::i;:::-;58400:27;;58320:115;;;:::o;43569:104::-;43638:27;43648:2;43652:8;43638:27;;;;;;;;;;;;:9;:27::i;:::-;43569:104;;:::o;58443:233::-;58520:5;58507:9;:18;;58499:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;58588:5;58576:9;:17;58572:97;;;58618:10;58610:28;;:47;58651:5;58639:9;:17;;;;:::i;:::-;58610:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58572:97;58443:233;:::o;49392:985::-;49547:4;49568:15;:2;:13;;;:15::i;:::-;49564:806;;;49637:2;49621:36;;;49680:12;:10;:12::i;:::-;49715:4;49742:7;49772:5;49621:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;49600:715;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50000:1;49983:6;:13;:18;49979:321;;;50026:109;;;;;;;;;;:::i;:::-;;;;;;;;49979:321;50250:6;50244:13;50235:6;50231:2;50227:15;50220:38;49600:715;49870:45;;;49860:55;;;:6;:55;;;;49853:62;;;;;49564:806;50354:4;50347:11;;49392:985;;;;;;;:::o;57604:108::-;57664:13;57697:7;57690:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57604:108;:::o;18631:723::-;18687:13;18917:1;18908:5;:10;18904:53;;;18935:10;;;;;;;;;;;;;;;;;;;;;18904:53;18967:12;18982:5;18967:20;;18998:14;19023:78;19038:1;19030:4;:9;19023:78;;19056:8;;;;;:::i;:::-;;;;19087:2;19079:10;;;;;:::i;:::-;;;19023:78;;;19111:19;19143:6;19133:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19111:39;;19161:154;19177:1;19168:5;:10;19161:154;;19205:1;19195:11;;;;;:::i;:::-;;;19272:2;19264:5;:10;;;;:::i;:::-;19251:2;:24;;;;:::i;:::-;19238:39;;19221:6;19228;19221:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;19301:2;19292:11;;;;;:::i;:::-;;;19161:154;;;19339:6;19325:21;;;;;18631:723;;;;:::o;50865:159::-;;;;;:::o;51436:158::-;;;;;:::o;38428:266::-;38489:7;38548:1;38531:19;;:5;:19;;;;38509:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;38653:12;:19;38666:5;38653:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;38645:41;;38638:48;;38428:266;;;:::o;44036:1400::-;44159:20;44182:12;;44159:35;;44227:1;44213:16;;:2;:16;;;;44205:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;44412:21;44420:12;44412:7;:21::i;:::-;44411:22;44403:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;44498:12;44486:8;:24;;44478:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;44562:61;44592:1;44596:2;44600:12;44614:8;44562:21;:61::i;:::-;44636:30;44669:12;:16;44682:2;44669:16;;;;;;;;;;;;;;;44636:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44715:135;;;;;;;;44771:8;44741:11;:19;;;:39;;;;:::i;:::-;44715:135;;;;;;44830:8;44795:11;:24;;;:44;;;;:::i;:::-;44715:135;;;;;44696:12;:16;44709:2;44696:16;;;;;;;;;;;;;;;:154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44889:43;;;;;;;;44904:2;44889:43;;;;;;44915:15;44889:43;;;;;44861:11;:25;44873:12;44861:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44945:20;44968:12;44945:35;;44998:9;44993:325;45017:8;45013:1;:12;44993:325;;;45077:12;45073:2;45052:38;;45069:1;45052:38;;;;;;;;;;;;45131:59;45162:1;45166:2;45170:12;45184:5;45131:22;:59::i;:::-;45105:172;;;;;;;;;;;;:::i;:::-;;;;;;;;;45292:14;;;;;:::i;:::-;;;;45027:3;;;;;:::i;:::-;;;;44993:325;;;;45345:12;45330;:27;;;;45368:60;45397:1;45401:2;45405:12;45419:8;45368:20;:60::i;:::-;44148:1288;;;44036:1400;;;:::o;1264:326::-;1324:4;1581:1;1559:7;:19;;;:23;1552:30;;1264:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1772:161::-;1829:5;1867:6;1854:20;1845:29;;1883:44;1921:5;1883:44;:::i;:::-;1772:161;;;;:::o;1953:340::-;2009:5;2058:3;2051:4;2043:6;2039:17;2035:27;2025:122;;2066:79;;:::i;:::-;2025:122;2183:6;2170:20;2208:79;2283:3;2275:6;2268:4;2260:6;2256:17;2208:79;:::i;:::-;2199:88;;2015:278;1953:340;;;;:::o;2299:139::-;2345:5;2383:6;2370:20;2361:29;;2399:33;2426:5;2399:33;:::i;:::-;2299:139;;;;:::o;2444:329::-;2503:6;2552:2;2540:9;2531:7;2527:23;2523:32;2520:119;;;2558:79;;:::i;:::-;2520:119;2678:1;2703:53;2748:7;2739:6;2728:9;2724:22;2703:53;:::i;:::-;2693:63;;2649:117;2444:329;;;;:::o;2779:474::-;2847:6;2855;2904:2;2892:9;2883:7;2879:23;2875:32;2872:119;;;2910:79;;:::i;:::-;2872:119;3030:1;3055:53;3100:7;3091:6;3080:9;3076:22;3055:53;:::i;:::-;3045:63;;3001:117;3157:2;3183:53;3228:7;3219:6;3208:9;3204:22;3183:53;:::i;:::-;3173:63;;3128:118;2779:474;;;;;:::o;3259:619::-;3336:6;3344;3352;3401:2;3389:9;3380:7;3376:23;3372:32;3369:119;;;3407:79;;:::i;:::-;3369:119;3527:1;3552:53;3597:7;3588:6;3577:9;3573:22;3552:53;:::i;:::-;3542:63;;3498:117;3654:2;3680:53;3725:7;3716:6;3705:9;3701:22;3680:53;:::i;:::-;3670:63;;3625:118;3782:2;3808:53;3853:7;3844:6;3833:9;3829:22;3808:53;:::i;:::-;3798:63;;3753:118;3259:619;;;;;:::o;3884:943::-;3979:6;3987;3995;4003;4052:3;4040:9;4031:7;4027:23;4023:33;4020:120;;;4059:79;;:::i;:::-;4020:120;4179:1;4204:53;4249:7;4240:6;4229:9;4225:22;4204:53;:::i;:::-;4194:63;;4150:117;4306:2;4332:53;4377:7;4368:6;4357:9;4353:22;4332:53;:::i;:::-;4322:63;;4277:118;4434:2;4460:53;4505:7;4496:6;4485:9;4481:22;4460:53;:::i;:::-;4450:63;;4405:118;4590:2;4579:9;4575:18;4562:32;4621:18;4613:6;4610:30;4607:117;;;4643:79;;:::i;:::-;4607:117;4748:62;4802:7;4793:6;4782:9;4778:22;4748:62;:::i;:::-;4738:72;;4533:287;3884:943;;;;;;;:::o;4833:468::-;4898:6;4906;4955:2;4943:9;4934:7;4930:23;4926:32;4923:119;;;4961:79;;:::i;:::-;4923:119;5081:1;5106:53;5151:7;5142:6;5131:9;5127:22;5106:53;:::i;:::-;5096:63;;5052:117;5208:2;5234:50;5276:7;5267:6;5256:9;5252:22;5234:50;:::i;:::-;5224:60;;5179:115;4833:468;;;;;:::o;5307:474::-;5375:6;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5307:474;;;;;:::o;5787:327::-;5845:6;5894:2;5882:9;5873:7;5869:23;5865:32;5862:119;;;5900:79;;:::i;:::-;5862:119;6020:1;6045:52;6089:7;6080:6;6069:9;6065:22;6045:52;:::i;:::-;6035:62;;5991:116;5787:327;;;;:::o;6120:349::-;6189:6;6238:2;6226:9;6217:7;6213:23;6209:32;6206:119;;;6244:79;;:::i;:::-;6206:119;6364:1;6389:63;6444:7;6435:6;6424:9;6420:22;6389:63;:::i;:::-;6379:73;;6335:127;6120:349;;;;:::o;6475:351::-;6545:6;6594:2;6582:9;6573:7;6569:23;6565:32;6562:119;;;6600:79;;:::i;:::-;6562:119;6720:1;6745:64;6801:7;6792:6;6781:9;6777:22;6745:64;:::i;:::-;6735:74;;6691:128;6475:351;;;;:::o;6832:509::-;6901:6;6950:2;6938:9;6929:7;6925:23;6921:32;6918:119;;;6956:79;;:::i;:::-;6918:119;7104:1;7093:9;7089:17;7076:31;7134:18;7126:6;7123:30;7120:117;;;7156:79;;:::i;:::-;7120:117;7261:63;7316:7;7307:6;7296:9;7292:22;7261:63;:::i;:::-;7251:73;;7047:287;6832:509;;;;:::o;7347:329::-;7406:6;7455:2;7443:9;7434:7;7430:23;7426:32;7423:119;;;7461:79;;:::i;:::-;7423:119;7581:1;7606:53;7651:7;7642:6;7631:9;7627:22;7606:53;:::i;:::-;7596:63;;7552:117;7347:329;;;;:::o;7682:108::-;7759:24;7777:5;7759:24;:::i;:::-;7754:3;7747:37;7682:108;;:::o;7796:118::-;7883:24;7901:5;7883:24;:::i;:::-;7878:3;7871:37;7796:118;;:::o;7920:109::-;8001:21;8016:5;8001:21;:::i;:::-;7996:3;7989:34;7920:109;;:::o;8035:360::-;8121:3;8149:38;8181:5;8149:38;:::i;:::-;8203:70;8266:6;8261:3;8203:70;:::i;:::-;8196:77;;8282:52;8327:6;8322:3;8315:4;8308:5;8304:16;8282:52;:::i;:::-;8359:29;8381:6;8359:29;:::i;:::-;8354:3;8350:39;8343:46;;8125:270;8035:360;;;;:::o;8401:149::-;8497:46;8537:5;8497:46;:::i;:::-;8492:3;8485:59;8401:149;;:::o;8556:364::-;8644:3;8672:39;8705:5;8672:39;:::i;:::-;8727:71;8791:6;8786:3;8727:71;:::i;:::-;8720:78;;8807:52;8852:6;8847:3;8840:4;8833:5;8829:16;8807:52;:::i;:::-;8884:29;8906:6;8884:29;:::i;:::-;8879:3;8875:39;8868:46;;8648:272;8556:364;;;;:::o;8926:377::-;9032:3;9060:39;9093:5;9060:39;:::i;:::-;9115:89;9197:6;9192:3;9115:89;:::i;:::-;9108:96;;9213:52;9258:6;9253:3;9246:4;9239:5;9235:16;9213:52;:::i;:::-;9290:6;9285:3;9281:16;9274:23;;9036:267;8926:377;;;;:::o;9333:845::-;9436:3;9473:5;9467:12;9502:36;9528:9;9502:36;:::i;:::-;9554:89;9636:6;9631:3;9554:89;:::i;:::-;9547:96;;9674:1;9663:9;9659:17;9690:1;9685:137;;;;9836:1;9831:341;;;;9652:520;;9685:137;9769:4;9765:9;9754;9750:25;9745:3;9738:38;9805:6;9800:3;9796:16;9789:23;;9685:137;;9831:341;9898:38;9930:5;9898:38;:::i;:::-;9958:1;9972:154;9986:6;9983:1;9980:13;9972:154;;;10060:7;10054:14;10050:1;10045:3;10041:11;10034:35;10110:1;10101:7;10097:15;10086:26;;10008:4;10005:1;10001:12;9996:17;;9972:154;;;10155:6;10150:3;10146:16;10139:23;;9838:334;;9652:520;;9440:738;;9333:845;;;;:::o;10184:366::-;10326:3;10347:67;10411:2;10406:3;10347:67;:::i;:::-;10340:74;;10423:93;10512:3;10423:93;:::i;:::-;10541:2;10536:3;10532:12;10525:19;;10184:366;;;:::o;10556:::-;10698:3;10719:67;10783:2;10778:3;10719:67;:::i;:::-;10712:74;;10795:93;10884:3;10795:93;:::i;:::-;10913:2;10908:3;10904:12;10897:19;;10556:366;;;:::o;10928:::-;11070:3;11091:67;11155:2;11150:3;11091:67;:::i;:::-;11084:74;;11167:93;11256:3;11167:93;:::i;:::-;11285:2;11280:3;11276:12;11269:19;;10928:366;;;:::o;11300:::-;11442:3;11463:67;11527:2;11522:3;11463:67;:::i;:::-;11456:74;;11539:93;11628:3;11539:93;:::i;:::-;11657:2;11652:3;11648:12;11641:19;;11300:366;;;:::o;11672:::-;11814:3;11835:67;11899:2;11894:3;11835:67;:::i;:::-;11828:74;;11911:93;12000:3;11911:93;:::i;:::-;12029:2;12024:3;12020:12;12013:19;;11672:366;;;:::o;12044:::-;12186:3;12207:67;12271:2;12266:3;12207:67;:::i;:::-;12200:74;;12283:93;12372:3;12283:93;:::i;:::-;12401:2;12396:3;12392:12;12385:19;;12044:366;;;:::o;12416:::-;12558:3;12579:67;12643:2;12638:3;12579:67;:::i;:::-;12572:74;;12655:93;12744:3;12655:93;:::i;:::-;12773:2;12768:3;12764:12;12757:19;;12416:366;;;:::o;12788:::-;12930:3;12951:67;13015:2;13010:3;12951:67;:::i;:::-;12944:74;;13027:93;13116:3;13027:93;:::i;:::-;13145:2;13140:3;13136:12;13129:19;;12788:366;;;:::o;13160:::-;13302:3;13323:67;13387:2;13382:3;13323:67;:::i;:::-;13316:74;;13399:93;13488:3;13399:93;:::i;:::-;13517:2;13512:3;13508:12;13501:19;;13160:366;;;:::o;13532:::-;13674:3;13695:67;13759:2;13754:3;13695:67;:::i;:::-;13688:74;;13771:93;13860:3;13771:93;:::i;:::-;13889:2;13884:3;13880:12;13873:19;;13532:366;;;:::o;13904:::-;14046:3;14067:67;14131:2;14126:3;14067:67;:::i;:::-;14060:74;;14143:93;14232:3;14143:93;:::i;:::-;14261:2;14256:3;14252:12;14245:19;;13904:366;;;:::o;14276:::-;14418:3;14439:67;14503:2;14498:3;14439:67;:::i;:::-;14432:74;;14515:93;14604:3;14515:93;:::i;:::-;14633:2;14628:3;14624:12;14617:19;;14276:366;;;:::o;14648:::-;14790:3;14811:67;14875:2;14870:3;14811:67;:::i;:::-;14804:74;;14887:93;14976:3;14887:93;:::i;:::-;15005:2;15000:3;14996:12;14989:19;;14648:366;;;:::o;15020:::-;15162:3;15183:67;15247:2;15242:3;15183:67;:::i;:::-;15176:74;;15259:93;15348:3;15259:93;:::i;:::-;15377:2;15372:3;15368:12;15361:19;;15020:366;;;:::o;15392:::-;15534:3;15555:67;15619:2;15614:3;15555:67;:::i;:::-;15548:74;;15631:93;15720:3;15631:93;:::i;:::-;15749:2;15744:3;15740:12;15733:19;;15392:366;;;:::o;15764:::-;15906:3;15927:67;15991:2;15986:3;15927:67;:::i;:::-;15920:74;;16003:93;16092:3;16003:93;:::i;:::-;16121:2;16116:3;16112:12;16105:19;;15764:366;;;:::o;16136:::-;16278:3;16299:67;16363:2;16358:3;16299:67;:::i;:::-;16292:74;;16375:93;16464:3;16375:93;:::i;:::-;16493:2;16488:3;16484:12;16477:19;;16136:366;;;:::o;16508:::-;16650:3;16671:67;16735:2;16730:3;16671:67;:::i;:::-;16664:74;;16747:93;16836:3;16747:93;:::i;:::-;16865:2;16860:3;16856:12;16849:19;;16508:366;;;:::o;16880:::-;17022:3;17043:67;17107:2;17102:3;17043:67;:::i;:::-;17036:74;;17119:93;17208:3;17119:93;:::i;:::-;17237:2;17232:3;17228:12;17221:19;;16880:366;;;:::o;17252:::-;17394:3;17415:67;17479:2;17474:3;17415:67;:::i;:::-;17408:74;;17491:93;17580:3;17491:93;:::i;:::-;17609:2;17604:3;17600:12;17593:19;;17252:366;;;:::o;17624:::-;17766:3;17787:67;17851:2;17846:3;17787:67;:::i;:::-;17780:74;;17863:93;17952:3;17863:93;:::i;:::-;17981:2;17976:3;17972:12;17965:19;;17624:366;;;:::o;17996:398::-;18155:3;18176:83;18257:1;18252:3;18176:83;:::i;:::-;18169:90;;18268:93;18357:3;18268:93;:::i;:::-;18386:1;18381:3;18377:11;18370:18;;17996:398;;;:::o;18400:366::-;18542:3;18563:67;18627:2;18622:3;18563:67;:::i;:::-;18556:74;;18639:93;18728:3;18639:93;:::i;:::-;18757:2;18752:3;18748:12;18741:19;;18400:366;;;:::o;18772:::-;18914:3;18935:67;18999:2;18994:3;18935:67;:::i;:::-;18928:74;;19011:93;19100:3;19011:93;:::i;:::-;19129:2;19124:3;19120:12;19113:19;;18772:366;;;:::o;19144:::-;19286:3;19307:67;19371:2;19366:3;19307:67;:::i;:::-;19300:74;;19383:93;19472:3;19383:93;:::i;:::-;19501:2;19496:3;19492:12;19485:19;;19144:366;;;:::o;19516:::-;19658:3;19679:67;19743:2;19738:3;19679:67;:::i;:::-;19672:74;;19755:93;19844:3;19755:93;:::i;:::-;19873:2;19868:3;19864:12;19857:19;;19516:366;;;:::o;19888:::-;20030:3;20051:67;20115:2;20110:3;20051:67;:::i;:::-;20044:74;;20127:93;20216:3;20127:93;:::i;:::-;20245:2;20240:3;20236:12;20229:19;;19888:366;;;:::o;20260:::-;20402:3;20423:67;20487:2;20482:3;20423:67;:::i;:::-;20416:74;;20499:93;20588:3;20499:93;:::i;:::-;20617:2;20612:3;20608:12;20601:19;;20260:366;;;:::o;20632:::-;20774:3;20795:67;20859:2;20854:3;20795:67;:::i;:::-;20788:74;;20871:93;20960:3;20871:93;:::i;:::-;20989:2;20984:3;20980:12;20973:19;;20632:366;;;:::o;21004:::-;21146:3;21167:67;21231:2;21226:3;21167:67;:::i;:::-;21160:74;;21243:93;21332:3;21243:93;:::i;:::-;21361:2;21356:3;21352:12;21345:19;;21004:366;;;:::o;21376:::-;21518:3;21539:67;21603:2;21598:3;21539:67;:::i;:::-;21532:74;;21615:93;21704:3;21615:93;:::i;:::-;21733:2;21728:3;21724:12;21717:19;;21376:366;;;:::o;21748:::-;21890:3;21911:67;21975:2;21970:3;21911:67;:::i;:::-;21904:74;;21987:93;22076:3;21987:93;:::i;:::-;22105:2;22100:3;22096:12;22089:19;;21748:366;;;:::o;22120:::-;22262:3;22283:67;22347:2;22342:3;22283:67;:::i;:::-;22276:74;;22359:93;22448:3;22359:93;:::i;:::-;22477:2;22472:3;22468:12;22461:19;;22120:366;;;:::o;22492:::-;22634:3;22655:67;22719:2;22714:3;22655:67;:::i;:::-;22648:74;;22731:93;22820:3;22731:93;:::i;:::-;22849:2;22844:3;22840:12;22833:19;;22492:366;;;:::o;22934:529::-;23095:4;23090:3;23086:14;23182:4;23175:5;23171:16;23165:23;23201:63;23258:4;23253:3;23249:14;23235:12;23201:63;:::i;:::-;23110:164;23366:4;23359:5;23355:16;23349:23;23385:61;23440:4;23435:3;23431:14;23417:12;23385:61;:::i;:::-;23284:172;23064:399;22934:529;;:::o;23469:118::-;23556:24;23574:5;23556:24;:::i;:::-;23551:3;23544:37;23469:118;;:::o;23593:105::-;23668:23;23685:5;23668:23;:::i;:::-;23663:3;23656:36;23593:105;;:::o;23704:435::-;23884:3;23906:95;23997:3;23988:6;23906:95;:::i;:::-;23899:102;;24018:95;24109:3;24100:6;24018:95;:::i;:::-;24011:102;;24130:3;24123:10;;23704:435;;;;;:::o;24145:589::-;24370:3;24392:95;24483:3;24474:6;24392:95;:::i;:::-;24385:102;;24504:95;24595:3;24586:6;24504:95;:::i;:::-;24497:102;;24616:92;24704:3;24695:6;24616:92;:::i;:::-;24609:99;;24725:3;24718:10;;24145:589;;;;;;:::o;24740:379::-;24924:3;24946:147;25089:3;24946:147;:::i;:::-;24939:154;;25110:3;25103:10;;24740:379;;;:::o;25125:222::-;25218:4;25256:2;25245:9;25241:18;25233:26;;25269:71;25337:1;25326:9;25322:17;25313:6;25269:71;:::i;:::-;25125:222;;;;:::o;25353:442::-;25502:4;25540:2;25529:9;25525:18;25517:26;;25553:71;25621:1;25610:9;25606:17;25597:6;25553:71;:::i;:::-;25634:72;25702:2;25691:9;25687:18;25678:6;25634:72;:::i;:::-;25716;25784:2;25773:9;25769:18;25760:6;25716:72;:::i;:::-;25353:442;;;;;;:::o;25801:640::-;25996:4;26034:3;26023:9;26019:19;26011:27;;26048:71;26116:1;26105:9;26101:17;26092:6;26048:71;:::i;:::-;26129:72;26197:2;26186:9;26182:18;26173:6;26129:72;:::i;:::-;26211;26279:2;26268:9;26264:18;26255:6;26211:72;:::i;:::-;26330:9;26324:4;26320:20;26315:2;26304:9;26300:18;26293:48;26358:76;26429:4;26420:6;26358:76;:::i;:::-;26350:84;;25801:640;;;;;;;:::o;26447:332::-;26568:4;26606:2;26595:9;26591:18;26583:26;;26619:71;26687:1;26676:9;26672:17;26663:6;26619:71;:::i;:::-;26700:72;26768:2;26757:9;26753:18;26744:6;26700:72;:::i;:::-;26447:332;;;;;:::o;26785:210::-;26872:4;26910:2;26899:9;26895:18;26887:26;;26923:65;26985:1;26974:9;26970:17;26961:6;26923:65;:::i;:::-;26785:210;;;;:::o;27001:240::-;27103:4;27141:2;27130:9;27126:18;27118:26;;27154:80;27231:1;27220:9;27216:17;27207:6;27154:80;:::i;:::-;27001:240;;;;:::o;27247:313::-;27360:4;27398:2;27387:9;27383:18;27375:26;;27447:9;27441:4;27437:20;27433:1;27422:9;27418:17;27411:47;27475:78;27548:4;27539:6;27475:78;:::i;:::-;27467:86;;27247:313;;;;:::o;27566:419::-;27732:4;27770:2;27759:9;27755:18;27747:26;;27819:9;27813:4;27809:20;27805:1;27794:9;27790:17;27783:47;27847:131;27973:4;27847:131;:::i;:::-;27839:139;;27566:419;;;:::o;27991:::-;28157:4;28195:2;28184:9;28180:18;28172:26;;28244:9;28238:4;28234:20;28230:1;28219:9;28215:17;28208:47;28272:131;28398:4;28272:131;:::i;:::-;28264:139;;27991:419;;;:::o;28416:::-;28582:4;28620:2;28609:9;28605:18;28597:26;;28669:9;28663:4;28659:20;28655:1;28644:9;28640:17;28633:47;28697:131;28823:4;28697:131;:::i;:::-;28689:139;;28416:419;;;:::o;28841:::-;29007:4;29045:2;29034:9;29030:18;29022:26;;29094:9;29088:4;29084:20;29080:1;29069:9;29065:17;29058:47;29122:131;29248:4;29122:131;:::i;:::-;29114:139;;28841:419;;;:::o;29266:::-;29432:4;29470:2;29459:9;29455:18;29447:26;;29519:9;29513:4;29509:20;29505:1;29494:9;29490:17;29483:47;29547:131;29673:4;29547:131;:::i;:::-;29539:139;;29266:419;;;:::o;29691:::-;29857:4;29895:2;29884:9;29880:18;29872:26;;29944:9;29938:4;29934:20;29930:1;29919:9;29915:17;29908:47;29972:131;30098:4;29972:131;:::i;:::-;29964:139;;29691:419;;;:::o;30116:::-;30282:4;30320:2;30309:9;30305:18;30297:26;;30369:9;30363:4;30359:20;30355:1;30344:9;30340:17;30333:47;30397:131;30523:4;30397:131;:::i;:::-;30389:139;;30116:419;;;:::o;30541:::-;30707:4;30745:2;30734:9;30730:18;30722:26;;30794:9;30788:4;30784:20;30780:1;30769:9;30765:17;30758:47;30822:131;30948:4;30822:131;:::i;:::-;30814:139;;30541:419;;;:::o;30966:::-;31132:4;31170:2;31159:9;31155:18;31147:26;;31219:9;31213:4;31209:20;31205:1;31194:9;31190:17;31183:47;31247:131;31373:4;31247:131;:::i;:::-;31239:139;;30966:419;;;:::o;31391:::-;31557:4;31595:2;31584:9;31580:18;31572:26;;31644:9;31638:4;31634:20;31630:1;31619:9;31615:17;31608:47;31672:131;31798:4;31672:131;:::i;:::-;31664:139;;31391:419;;;:::o;31816:::-;31982:4;32020:2;32009:9;32005:18;31997:26;;32069:9;32063:4;32059:20;32055:1;32044:9;32040:17;32033:47;32097:131;32223:4;32097:131;:::i;:::-;32089:139;;31816:419;;;:::o;32241:::-;32407:4;32445:2;32434:9;32430:18;32422:26;;32494:9;32488:4;32484:20;32480:1;32469:9;32465:17;32458:47;32522:131;32648:4;32522:131;:::i;:::-;32514:139;;32241:419;;;:::o;32666:::-;32832:4;32870:2;32859:9;32855:18;32847:26;;32919:9;32913:4;32909:20;32905:1;32894:9;32890:17;32883:47;32947:131;33073:4;32947:131;:::i;:::-;32939:139;;32666:419;;;:::o;33091:::-;33257:4;33295:2;33284:9;33280:18;33272:26;;33344:9;33338:4;33334:20;33330:1;33319:9;33315:17;33308:47;33372:131;33498:4;33372:131;:::i;:::-;33364:139;;33091:419;;;:::o;33516:::-;33682:4;33720:2;33709:9;33705:18;33697:26;;33769:9;33763:4;33759:20;33755:1;33744:9;33740:17;33733:47;33797:131;33923:4;33797:131;:::i;:::-;33789:139;;33516:419;;;:::o;33941:::-;34107:4;34145:2;34134:9;34130:18;34122:26;;34194:9;34188:4;34184:20;34180:1;34169:9;34165:17;34158:47;34222:131;34348:4;34222:131;:::i;:::-;34214:139;;33941:419;;;:::o;34366:::-;34532:4;34570:2;34559:9;34555:18;34547:26;;34619:9;34613:4;34609:20;34605:1;34594:9;34590:17;34583:47;34647:131;34773:4;34647:131;:::i;:::-;34639:139;;34366:419;;;:::o;34791:::-;34957:4;34995:2;34984:9;34980:18;34972:26;;35044:9;35038:4;35034:20;35030:1;35019:9;35015:17;35008:47;35072:131;35198:4;35072:131;:::i;:::-;35064:139;;34791:419;;;:::o;35216:::-;35382:4;35420:2;35409:9;35405:18;35397:26;;35469:9;35463:4;35459:20;35455:1;35444:9;35440:17;35433:47;35497:131;35623:4;35497:131;:::i;:::-;35489:139;;35216:419;;;:::o;35641:::-;35807:4;35845:2;35834:9;35830:18;35822:26;;35894:9;35888:4;35884:20;35880:1;35869:9;35865:17;35858:47;35922:131;36048:4;35922:131;:::i;:::-;35914:139;;35641:419;;;:::o;36066:::-;36232:4;36270:2;36259:9;36255:18;36247:26;;36319:9;36313:4;36309:20;36305:1;36294:9;36290:17;36283:47;36347:131;36473:4;36347:131;:::i;:::-;36339:139;;36066:419;;;:::o;36491:::-;36657:4;36695:2;36684:9;36680:18;36672:26;;36744:9;36738:4;36734:20;36730:1;36719:9;36715:17;36708:47;36772:131;36898:4;36772:131;:::i;:::-;36764:139;;36491:419;;;:::o;36916:::-;37082:4;37120:2;37109:9;37105:18;37097:26;;37169:9;37163:4;37159:20;37155:1;37144:9;37140:17;37133:47;37197:131;37323:4;37197:131;:::i;:::-;37189:139;;36916:419;;;:::o;37341:::-;37507:4;37545:2;37534:9;37530:18;37522:26;;37594:9;37588:4;37584:20;37580:1;37569:9;37565:17;37558:47;37622:131;37748:4;37622:131;:::i;:::-;37614:139;;37341:419;;;:::o;37766:::-;37932:4;37970:2;37959:9;37955:18;37947:26;;38019:9;38013:4;38009:20;38005:1;37994:9;37990:17;37983:47;38047:131;38173:4;38047:131;:::i;:::-;38039:139;;37766:419;;;:::o;38191:::-;38357:4;38395:2;38384:9;38380:18;38372:26;;38444:9;38438:4;38434:20;38430:1;38419:9;38415:17;38408:47;38472:131;38598:4;38472:131;:::i;:::-;38464:139;;38191:419;;;:::o;38616:::-;38782:4;38820:2;38809:9;38805:18;38797:26;;38869:9;38863:4;38859:20;38855:1;38844:9;38840:17;38833:47;38897:131;39023:4;38897:131;:::i;:::-;38889:139;;38616:419;;;:::o;39041:::-;39207:4;39245:2;39234:9;39230:18;39222:26;;39294:9;39288:4;39284:20;39280:1;39269:9;39265:17;39258:47;39322:131;39448:4;39322:131;:::i;:::-;39314:139;;39041:419;;;:::o;39466:::-;39632:4;39670:2;39659:9;39655:18;39647:26;;39719:9;39713:4;39709:20;39705:1;39694:9;39690:17;39683:47;39747:131;39873:4;39747:131;:::i;:::-;39739:139;;39466:419;;;:::o;39891:::-;40057:4;40095:2;40084:9;40080:18;40072:26;;40144:9;40138:4;40134:20;40130:1;40119:9;40115:17;40108:47;40172:131;40298:4;40172:131;:::i;:::-;40164:139;;39891:419;;;:::o;40316:::-;40482:4;40520:2;40509:9;40505:18;40497:26;;40569:9;40563:4;40559:20;40555:1;40544:9;40540:17;40533:47;40597:131;40723:4;40597:131;:::i;:::-;40589:139;;40316:419;;;:::o;40741:::-;40907:4;40945:2;40934:9;40930:18;40922:26;;40994:9;40988:4;40984:20;40980:1;40969:9;40965:17;40958:47;41022:131;41148:4;41022:131;:::i;:::-;41014:139;;40741:419;;;:::o;41166:::-;41332:4;41370:2;41359:9;41355:18;41347:26;;41419:9;41413:4;41409:20;41405:1;41394:9;41390:17;41383:47;41447:131;41573:4;41447:131;:::i;:::-;41439:139;;41166:419;;;:::o;41591:350::-;41748:4;41786:2;41775:9;41771:18;41763:26;;41799:135;41931:1;41920:9;41916:17;41907:6;41799:135;:::i;:::-;41591:350;;;;:::o;41947:222::-;42040:4;42078:2;42067:9;42063:18;42055:26;;42091:71;42159:1;42148:9;42144:17;42135:6;42091:71;:::i;:::-;41947:222;;;;:::o;42175:129::-;42209:6;42236:20;;:::i;:::-;42226:30;;42265:33;42293:4;42285:6;42265:33;:::i;:::-;42175:129;;;:::o;42310:75::-;42343:6;42376:2;42370:9;42360:19;;42310:75;:::o;42391:307::-;42452:4;42542:18;42534:6;42531:30;42528:56;;;42564:18;;:::i;:::-;42528:56;42602:29;42624:6;42602:29;:::i;:::-;42594:37;;42686:4;42680;42676:15;42668:23;;42391:307;;;:::o;42704:308::-;42766:4;42856:18;42848:6;42845:30;42842:56;;;42878:18;;:::i;:::-;42842:56;42916:29;42938:6;42916:29;:::i;:::-;42908:37;;43000:4;42994;42990:15;42982:23;;42704:308;;;:::o;43018:141::-;43067:4;43090:3;43082:11;;43113:3;43110:1;43103:14;43147:4;43144:1;43134:18;43126:26;;43018:141;;;:::o;43165:98::-;43216:6;43250:5;43244:12;43234:22;;43165:98;;;:::o;43269:99::-;43321:6;43355:5;43349:12;43339:22;;43269:99;;;:::o;43374:168::-;43457:11;43491:6;43486:3;43479:19;43531:4;43526:3;43522:14;43507:29;;43374:168;;;;:::o;43548:147::-;43649:11;43686:3;43671:18;;43548:147;;;;:::o;43701:169::-;43785:11;43819:6;43814:3;43807:19;43859:4;43854:3;43850:14;43835:29;;43701:169;;;;:::o;43876:148::-;43978:11;44015:3;44000:18;;43876:148;;;;:::o;44030:273::-;44070:3;44089:20;44107:1;44089:20;:::i;:::-;44084:25;;44123:20;44141:1;44123:20;:::i;:::-;44118:25;;44245:1;44209:34;44205:42;44202:1;44199:49;44196:75;;;44251:18;;:::i;:::-;44196:75;44295:1;44292;44288:9;44281:16;;44030:273;;;;:::o;44309:305::-;44349:3;44368:20;44386:1;44368:20;:::i;:::-;44363:25;;44402:20;44420:1;44402:20;:::i;:::-;44397:25;;44556:1;44488:66;44484:74;44481:1;44478:81;44475:107;;;44562:18;;:::i;:::-;44475:107;44606:1;44603;44599:9;44592:16;;44309:305;;;;:::o;44620:185::-;44660:1;44677:20;44695:1;44677:20;:::i;:::-;44672:25;;44711:20;44729:1;44711:20;:::i;:::-;44706:25;;44750:1;44740:35;;44755:18;;:::i;:::-;44740:35;44797:1;44794;44790:9;44785:14;;44620:185;;;;:::o;44811:348::-;44851:7;44874:20;44892:1;44874:20;:::i;:::-;44869:25;;44908:20;44926:1;44908:20;:::i;:::-;44903:25;;45096:1;45028:66;45024:74;45021:1;45018:81;45013:1;45006:9;44999:17;44995:105;44992:131;;;45103:18;;:::i;:::-;44992:131;45151:1;45148;45144:9;45133:20;;44811:348;;;;:::o;45165:191::-;45205:4;45225:20;45243:1;45225:20;:::i;:::-;45220:25;;45259:20;45277:1;45259:20;:::i;:::-;45254:25;;45298:1;45295;45292:8;45289:34;;;45303:18;;:::i;:::-;45289:34;45348:1;45345;45341:9;45333:17;;45165:191;;;;:::o;45362:::-;45402:4;45422:20;45440:1;45422:20;:::i;:::-;45417:25;;45456:20;45474:1;45456:20;:::i;:::-;45451:25;;45495:1;45492;45489:8;45486:34;;;45500:18;;:::i;:::-;45486:34;45545:1;45542;45538:9;45530:17;;45362:191;;;;:::o;45559:96::-;45596:7;45625:24;45643:5;45625:24;:::i;:::-;45614:35;;45559:96;;;:::o;45661:90::-;45695:7;45738:5;45731:13;45724:21;45713:32;;45661:90;;;:::o;45757:149::-;45793:7;45833:66;45826:5;45822:78;45811:89;;45757:149;;;:::o;45912:133::-;45960:7;45989:5;45978:16;;45995:44;46033:5;45995:44;:::i;:::-;45912:133;;;:::o;46051:118::-;46088:7;46128:34;46121:5;46117:46;46106:57;;46051:118;;;:::o;46175:126::-;46212:7;46252:42;46245:5;46241:54;46230:65;;46175:126;;;:::o;46307:77::-;46344:7;46373:5;46362:16;;46307:77;;;:::o;46390:101::-;46426:7;46466:18;46459:5;46455:30;46444:41;;46390:101;;;:::o;46497:133::-;46556:9;46589:35;46618:5;46589:35;:::i;:::-;46576:48;;46497:133;;;:::o;46636:154::-;46720:6;46715:3;46710;46697:30;46782:1;46773:6;46768:3;46764:16;46757:27;46636:154;;;:::o;46796:307::-;46864:1;46874:113;46888:6;46885:1;46882:13;46874:113;;;46973:1;46968:3;46964:11;46958:18;46954:1;46949:3;46945:11;46938:39;46910:2;46907:1;46903:10;46898:15;;46874:113;;;47005:6;47002:1;46999:13;46996:101;;;47085:1;47076:6;47071:3;47067:16;47060:27;46996:101;46845:258;46796:307;;;:::o;47109:171::-;47148:3;47171:24;47189:5;47171:24;:::i;:::-;47162:33;;47217:4;47210:5;47207:15;47204:41;;;47225:18;;:::i;:::-;47204:41;47272:1;47265:5;47261:13;47254:20;;47109:171;;;:::o;47286:320::-;47330:6;47367:1;47361:4;47357:12;47347:22;;47414:1;47408:4;47404:12;47435:18;47425:81;;47491:4;47483:6;47479:17;47469:27;;47425:81;47553:2;47545:6;47542:14;47522:18;47519:38;47516:84;;;47572:18;;:::i;:::-;47516:84;47337:269;47286:320;;;:::o;47612:281::-;47695:27;47717:4;47695:27;:::i;:::-;47687:6;47683:40;47825:6;47813:10;47810:22;47789:18;47777:10;47774:34;47771:62;47768:88;;;47836:18;;:::i;:::-;47768:88;47876:10;47872:2;47865:22;47655:238;47612:281;;:::o;47899:233::-;47938:3;47961:24;47979:5;47961:24;:::i;:::-;47952:33;;48007:66;48000:5;47997:77;47994:103;;;48077:18;;:::i;:::-;47994:103;48124:1;48117:5;48113:13;48106:20;;47899:233;;;:::o;48138:176::-;48170:1;48187:20;48205:1;48187:20;:::i;:::-;48182:25;;48221:20;48239:1;48221:20;:::i;:::-;48216:25;;48260:1;48250:35;;48265:18;;:::i;:::-;48250:35;48306:1;48303;48299:9;48294:14;;48138:176;;;;:::o;48320:180::-;48368:77;48365:1;48358:88;48465:4;48462:1;48455:15;48489:4;48486:1;48479:15;48506:180;48554:77;48551:1;48544:88;48651:4;48648:1;48641:15;48675:4;48672:1;48665:15;48692:180;48740:77;48737:1;48730:88;48837:4;48834:1;48827:15;48861:4;48858:1;48851:15;48878:180;48926:77;48923:1;48916:88;49023:4;49020:1;49013:15;49047:4;49044:1;49037:15;49064:180;49112:77;49109:1;49102:88;49209:4;49206:1;49199:15;49233:4;49230:1;49223:15;49250:180;49298:77;49295:1;49288:88;49395:4;49392:1;49385:15;49419:4;49416:1;49409:15;49436:117;49545:1;49542;49535:12;49559:117;49668:1;49665;49658:12;49682:117;49791:1;49788;49781:12;49805:117;49914:1;49911;49904:12;49928:102;49969:6;50020:2;50016:7;50011:2;50004:5;50000:14;49996:28;49986:38;;49928:102;;;:::o;50036:221::-;50176:34;50172:1;50164:6;50160:14;50153:58;50245:4;50240:2;50232:6;50228:15;50221:29;50036:221;:::o;50263:178::-;50403:30;50399:1;50391:6;50387:14;50380:54;50263:178;:::o;50447:239::-;50587:34;50583:1;50575:6;50571:14;50564:58;50656:22;50651:2;50643:6;50639:15;50632:47;50447:239;:::o;50692:225::-;50832:34;50828:1;50820:6;50816:14;50809:58;50901:8;50896:2;50888:6;50884:15;50877:33;50692:225;:::o;50923:229::-;51063:34;51059:1;51051:6;51047:14;51040:58;51132:12;51127:2;51119:6;51115:15;51108:37;50923:229;:::o;51158:222::-;51298:34;51294:1;51286:6;51282:14;51275:58;51367:5;51362:2;51354:6;51350:15;51343:30;51158:222;:::o;51386:174::-;51526:26;51522:1;51514:6;51510:14;51503:50;51386:174;:::o;51566:222::-;51706:34;51702:1;51694:6;51690:14;51683:58;51775:5;51770:2;51762:6;51758:15;51751:30;51566:222;:::o;51794:224::-;51934:34;51930:1;51922:6;51918:14;51911:58;52003:7;51998:2;51990:6;51986:15;51979:32;51794:224;:::o;52024:236::-;52164:34;52160:1;52152:6;52148:14;52141:58;52233:19;52228:2;52220:6;52216:15;52209:44;52024:236;:::o;52266:228::-;52406:34;52402:1;52394:6;52390:14;52383:58;52475:11;52470:2;52462:6;52458:15;52451:36;52266:228;:::o;52500:244::-;52640:34;52636:1;52628:6;52624:14;52617:58;52709:27;52704:2;52696:6;52692:15;52685:52;52500:244;:::o;52750:174::-;52890:26;52886:1;52878:6;52874:14;52867:50;52750:174;:::o;52930:230::-;53070:34;53066:1;53058:6;53054:14;53047:58;53139:13;53134:2;53126:6;53122:15;53115:38;52930:230;:::o;53166:225::-;53306:34;53302:1;53294:6;53290:14;53283:58;53375:8;53370:2;53362:6;53358:15;53351:33;53166:225;:::o;53397:182::-;53537:34;53533:1;53525:6;53521:14;53514:58;53397:182;:::o;53585:177::-;53725:29;53721:1;53713:6;53709:14;53702:53;53585:177;:::o;53768:176::-;53908:28;53904:1;53896:6;53892:14;53885:52;53768:176;:::o;53950:237::-;54090:34;54086:1;54078:6;54074:14;54067:58;54159:20;54154:2;54146:6;54142:15;54135:45;53950:237;:::o;54193:229::-;54333:34;54329:1;54321:6;54317:14;54310:58;54402:12;54397:2;54389:6;54385:15;54378:37;54193:229;:::o;54428:221::-;54568:34;54564:1;54556:6;54552:14;54545:58;54637:4;54632:2;54624:6;54620:15;54613:29;54428:221;:::o;54655:114::-;;:::o;54775:166::-;54915:18;54911:1;54903:6;54899:14;54892:42;54775:166;:::o;54947:238::-;55087:34;55083:1;55075:6;55071:14;55064:58;55156:21;55151:2;55143:6;55139:15;55132:46;54947:238;:::o;55191:179::-;55331:31;55327:1;55319:6;55315:14;55308:55;55191:179;:::o;55376:181::-;55516:33;55512:1;55504:6;55500:14;55493:57;55376:181;:::o;55563:220::-;55703:34;55699:1;55691:6;55687:14;55680:58;55772:3;55767:2;55759:6;55755:15;55748:28;55563:220;:::o;55789:233::-;55929:34;55925:1;55917:6;55913:14;55906:58;55998:16;55993:2;55985:6;55981:15;55974:41;55789:233;:::o;56028:225::-;56168:34;56164:1;56156:6;56152:14;56145:58;56237:8;56232:2;56224:6;56220:15;56213:33;56028:225;:::o;56259:181::-;56399:33;56395:1;56387:6;56383:14;56376:57;56259:181;:::o;56446:172::-;56586:24;56582:1;56574:6;56570:14;56563:48;56446:172;:::o;56624:234::-;56764:34;56760:1;56752:6;56748:14;56741:58;56833:17;56828:2;56820:6;56816:15;56809:42;56624:234;:::o;56864:232::-;57004:34;57000:1;56992:6;56988:14;56981:58;57073:15;57068:2;57060:6;57056:15;57049:40;56864:232;:::o;57102:221::-;57242:34;57238:1;57230:6;57226:14;57219:58;57311:4;57306:2;57298:6;57294:15;57287:29;57102:221;:::o;57329:116::-;57413:1;57406:5;57403:12;57393:46;;57419:18;;:::i;:::-;57393:46;57329:116;:::o;57451:122::-;57524:24;57542:5;57524:24;:::i;:::-;57517:5;57514:35;57504:63;;57563:1;57560;57553:12;57504:63;57451:122;:::o;57579:116::-;57649:21;57664:5;57649:21;:::i;:::-;57642:5;57639:32;57629:60;;57685:1;57682;57675:12;57629:60;57579:116;:::o;57701:120::-;57773:23;57790:5;57773:23;:::i;:::-;57766:5;57763:34;57753:62;;57811:1;57808;57801:12;57753:62;57701:120;:::o;57827:110::-;57911:1;57904:5;57901:12;57891:40;;57927:1;57924;57917:12;57891:40;57827:110;:::o;57943:122::-;58016:24;58034:5;58016:24;:::i;:::-;58009:5;58006:35;57996:63;;58055:1;58052;58045:12;57996:63;57943:122;:::o

Swarm Source

ipfs://659c3104a0859d661a6abff5fc3a22a241d88dc22a9a89f6859d0e91e9071457
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.