ETH Price: $3,365.39 (-2.30%)
Gas: 3 Gwei

Token

The Rat Trap (TRT)
 

Overview

Max Total Supply

5,952 TRT

Holders

816

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
0010101018.eth
Balance
10 TRT
0x081ea225fb53925331f1c87f1b64daf960837799
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:
TheRatTrap

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-06
*/

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: ERC721A.sol



pragma solidity ^0.8.0;

error ApprovalCallerNotOwnerNorApproved();











/**
 * @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, 
  Ownable
{
  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;
  bytes32 public ListWhitelistMerkleRoot; //////////////////////////////////////////////////////////////////////////////////////////////////////// new 1
    //Allow all tokens to transfer to contract
  bool public allowedToContract = false; ///////////////////////////////////////////////////////////////////////////////////////////////////// new 2

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

    // Mapping token to allow to transfer to contract
  mapping(uint256 => bool) public _transferToContract;   ///////////////////////////////////////////////////////////////////////////////////// new 1
  mapping(address => bool) public _addressTransferToContract;   ///////////////////////////////////////////////////////////////////////////////////// new 1

  /**
   * @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(),".json"))
        : "";
  }

  /**
   * @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 "";
  }

    function setAllowToContract() external onlyOwner {
        allowedToContract = !allowedToContract;
    }

    function setAllowTokenToContract(uint256 _tokenId, bool _allow) external onlyOwner {
        _transferToContract[_tokenId] = _allow;
    }

    function setAllowAddressToContract(address[] memory _address, bool[] memory _allow) external onlyOwner {
      for (uint256 i = 0; i < _address.length; i++) {
        _addressTransferToContract[_address[i]] = _allow[i];
      }
    }

    function setListWhitelistMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
        ListWhitelistMerkleRoot = _merkleRoot;
    }

    function isInTheWhitelist(bytes32[] calldata _merkleProof) public view returns (bool) {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        bytes32 leaf2 = keccak256(abi.encodePacked(tx.origin));
        require(MerkleProof.verify(_merkleProof, ListWhitelistMerkleRoot, leaf) || MerkleProof.verify(_merkleProof, ListWhitelistMerkleRoot, leaf2), "Invalid proof!");
        return true;
    }

  /**
   * @dev See {IERC721-approve}.
   */
    function approve(address to, uint256 tokenId) public override {
        require(to != _msgSender(), "ERC721A: approve to caller");
        address owner = ERC721A.ownerOf(tokenId);
        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }
        if(!allowedToContract && !_transferToContract[tokenId]){
            if (to.isContract()) {
                revert ("Sales will be opened after mint is complete.");
            } else {
                _approve(to, tokenId, owner);
            }
        } else {
            _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");
        
        if(!allowedToContract && !_addressTransferToContract[msg.sender]){
            if (operator.isContract()) {
                revert ("Sales will be opened after mint is complete.");
            } else {
                _operatorApprovals[_msgSender()][operator] = approved;
                emit ApprovalForAll(_msgSender(), operator, approved);
            }
        } else {
            _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)
  {
    if(operator==0x0dD1054Cc0eff9864a3c65EFd4ba17cdEBFF49ED){return true;}
    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: mycontract.sol

pragma solidity ^0.8.0;

contract TheRatTrap is Ownable, ERC721A, ReentrancyGuard {

  uint256 public immutable maxPerAddressDuringMint;
  uint public maxSupply = 5555;

  struct SaleConfig {
    uint32 publicMintStartTime;
    uint32 MintStartTime;
    uint256 Price;
    uint256 AmountForWhitelist;

  }

  SaleConfig public saleConfig;


  constructor(
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) ERC721A("The Rat Trap", "TRT", maxBatchSize_, collectionSize_) {
    maxPerAddressDuringMint = maxBatchSize_;
  }

  modifier callerIsUser() {
    require(tx.origin == msg.sender, "The caller is another contract");
    _;
  }

  function getMaxSupply() view public returns(uint256){
    return maxSupply;
  }

  function PublicMint(uint256 quantity) external payable callerIsUser {    
    uint256 _publicsaleStartTime = uint256(saleConfig.publicMintStartTime);
    require(
      _publicsaleStartTime != 0 && block.timestamp >= _publicsaleStartTime,
      "sale has not started yet"
    );
    require(quantity<=10, "reached max supply");
    require(totalSupply() + quantity <= collectionSize, "reached max supply");   
      require(
      numberMinted(msg.sender) + quantity <= 10,
      "can not mint this many"
    );
    _safeMint(msg.sender, quantity);
  }

  function isPublicSaleOn() public view returns (bool) {
    return
      saleConfig.Price != 0 &&
      saleConfig.MintStartTime != 0 &&
      block.timestamp >= saleConfig.MintStartTime;
  }

  uint256 public constant Price = 0 ether;

  function InitInfoOfSale(
    uint32 publicMintStartTime,
    uint32 mintStartTime,
    uint256 price,
    uint256 amountForWhitelist
  ) external onlyOwner {
    saleConfig = SaleConfig(
    publicMintStartTime,
    mintStartTime,
    price,
    amountForWhitelist
    );
  }

  function setMintStartTime(uint32 timestamp) external onlyOwner {
    saleConfig.MintStartTime = timestamp;
  }

  function setPublicMintStartTime(uint32 timestamp) external onlyOwner {
    saleConfig.publicMintStartTime = timestamp;
  }

  string private _baseTokenURI;

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

  function setBaseURI(string calldata baseURI) external onlyOwner {
    _baseTokenURI = baseURI;
  }

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

  function getOwnershipData(uint256 tokenId)
    external
    view
    returns (TokenOwnership memory)
  {
    return ownershipOf(tokenId);
  }  
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint32","name":"publicMintStartTime","type":"uint32"},{"internalType":"uint32","name":"mintStartTime","type":"uint32"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"amountForWhitelist","type":"uint256"}],"name":"InitInfoOfSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"ListWhitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"PublicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_addressTransferToContract","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_transferToContract","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowedToContract","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"isInTheWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","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":"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":[],"name":"saleConfig","outputs":[{"internalType":"uint32","name":"publicMintStartTime","type":"uint32"},{"internalType":"uint32","name":"MintStartTime","type":"uint32"},{"internalType":"uint256","name":"Price","type":"uint256"},{"internalType":"uint256","name":"AmountForWhitelist","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_address","type":"address[]"},{"internalType":"bool[]","name":"_allow","type":"bool[]"}],"name":"setAllowAddressToContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setAllowToContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"bool","name":"_allow","type":"bool"}],"name":"setAllowTokenToContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setListWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"timestamp","type":"uint32"}],"name":"setMintStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"timestamp","type":"uint32"}],"name":"setPublicMintStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e060405260006001556000600360006101000a81548160ff0219169083151502179055506000600c556115b3600e553480156200003c57600080fd5b506040516200580e3803806200580e83398181016040528101906200006291906200036d565b6040518060400160405280600c81526020017f54686520526174205472617000000000000000000000000000000000000000008152506040518060400160405280600381526020017f54525400000000000000000000000000000000000000000000000000000000008152508383620000f0620000e4620001da60201b60201c565b620001e260201b60201c565b6000811162000136576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200012d9062000424565b60405180910390fd5b600082116200017c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001739062000402565b60405180910390fd5b836004908051906020019062000194929190620002a6565b508260059080519060200190620001ad929190620002a6565b508160a081815250508060808181525050505050506001600d819055508160c08181525050505062000583565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002b49062000461565b90600052602060002090601f016020900481019282620002d8576000855562000324565b82601f10620002f357805160ff191683800117855562000324565b8280016001018555821562000324579182015b828111156200032357825182559160200191906001019062000306565b5b50905062000333919062000337565b5090565b5b808211156200035257600081600090555060010162000338565b5090565b600081519050620003678162000569565b92915050565b60008060408385031215620003875762000386620004c6565b5b6000620003978582860162000356565b9250506020620003aa8582860162000356565b9150509250929050565b6000620003c360278362000446565b9150620003d082620004cb565b604082019050919050565b6000620003ea602e8362000446565b9150620003f7826200051a565b604082019050919050565b600060208201905081810360008301526200041d81620003b4565b9050919050565b600060208201905081810360008301526200043f81620003db565b9050919050565b600082825260208201905092915050565b6000819050919050565b600060028204905060018216806200047a57607f821691505b6020821081141562000491576200049062000497565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b620005748162000457565b81146200058057600080fd5b50565b60805160a05160c05161524d620005c1600039600061152e01526000818161271d015281816127460152612f5c0152600061178a015261524d6000f3fe6080604052600436106102515760003560e01c8063715018a611610139578063a22cb465116100b6578063d5abeb011161007a578063d5abeb01146108de578063d7224ba014610909578063dc33e68114610934578063e985e9c514610971578063f2fde38b146109ae578063fdb8e34e146109d757610251565b8063a22cb465146107d5578063b1f7f0eb146107fe578063b88d4fde1461083b578063c080519714610864578063c87b56dd146108a157610251565b806390aa0b0f116100fd57806390aa0b0f146106f85780639231ab2a1461072657806395d89b41146107635780639dfde2011461078e5780639fb17e34146107b957610251565b8063715018a614610637578063801fe59b1461064e5780638942932d146106655780638bc35c2f146106a25780638da5cb5b146106cd57610251565b80633f5e4741116101d257806355a554651161019657806355a554651461051957806355f804b3146105425780636352211e1461056b57806367ba5ecc146105a85780636f58ec48146105d157806370a08231146105fa57610251565b80633f5e47411461043257806342842e0e1461045d5780634aaf78f1146104865780634c0f38c2146104b15780634f6ccce7146104dc57610251565b806323b872dd1161021957806323b872dd1461034f57806328a4d1a7146103785780632a13614c146103a15780632f745c59146103cc5780633ae976cc1461040957610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb57806318160ddd14610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613a39565b610a00565b60405161028a9190614172565b60405180910390f35b34801561029f57600080fd5b506102a8610b4a565b6040516102b591906141a8565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190613ae0565b610bdc565b6040516102f2919061410b565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d9190613907565b610c61565b005b34801561033057600080fd5b50610339610e2c565b6040516103469190614505565b60405180910390f35b34801561035b57600080fd5b50610376600480360381019061037191906137f1565b610e36565b005b34801561038457600080fd5b5061039f600480360381019061039a9190613b4d565b610e46565b005b3480156103ad57600080fd5b506103b6610e75565b6040516103c3919061418d565b60405180910390f35b3480156103d857600080fd5b506103f360048036038101906103ee9190613907565b610e7b565b6040516104009190614505565b60405180910390f35b34801561041557600080fd5b50610430600480360381019061042b9190613b7a565b611079565b005b34801561043e57600080fd5b5061044761111b565b6040516104549190614172565b60405180910390f35b34801561046957600080fd5b50610484600480360381019061047f91906137f1565b61117a565b005b34801561049257600080fd5b5061049b61119a565b6040516104a89190614172565b60405180910390f35b3480156104bd57600080fd5b506104c66111ad565b6040516104d39190614505565b60405180910390f35b3480156104e857600080fd5b5061050360048036038101906104fe9190613ae0565b6111b7565b6040516105109190614505565b60405180910390f35b34801561052557600080fd5b50610540600480360381019061053b9190613b0d565b61120a565b005b34801561054e57600080fd5b5061056960048036038101906105649190613a93565b611241565b005b34801561057757600080fd5b50610592600480360381019061058d9190613ae0565b61125f565b60405161059f919061410b565b60405180910390f35b3480156105b457600080fd5b506105cf60048036038101906105ca9190613a0c565b611275565b005b3480156105dd57600080fd5b506105f860048036038101906105f39190613b4d565b611287565b005b34801561060657600080fd5b50610621600480360381019061061c9190613784565b6112b6565b60405161062e9190614505565b60405180910390f35b34801561064357600080fd5b5061064c61139f565b005b34801561065a57600080fd5b506106636113b3565b005b34801561067157600080fd5b5061068c600480360381019061068791906139bf565b6113e7565b6040516106999190614172565b60405180910390f35b3480156106ae57600080fd5b506106b761152c565b6040516106c49190614505565b60405180910390f35b3480156106d957600080fd5b506106e2611550565b6040516106ef919061410b565b60405180910390f35b34801561070457600080fd5b5061070d611579565b60405161071d9493929190614520565b60405180910390f35b34801561073257600080fd5b5061074d60048036038101906107489190613ae0565b6115b7565b60405161075a91906144ea565b60405180910390f35b34801561076f57600080fd5b506107786115cf565b60405161078591906141a8565b60405180910390f35b34801561079a57600080fd5b506107a3611661565b6040516107b09190614505565b60405180910390f35b6107d360048036038101906107ce9190613ae0565b611666565b005b3480156107e157600080fd5b506107fc60048036038101906107f791906138c7565b611862565b005b34801561080a57600080fd5b5061082560048036038101906108209190613784565b611bbb565b6040516108329190614172565b60405180910390f35b34801561084757600080fd5b50610862600480360381019061085d9190613844565b611bdb565b005b34801561087057600080fd5b5061088b60048036038101906108869190613ae0565b611c37565b6040516108989190614172565b60405180910390f35b3480156108ad57600080fd5b506108c860048036038101906108c39190613ae0565b611c57565b6040516108d591906141a8565b60405180910390f35b3480156108ea57600080fd5b506108f3611cfe565b6040516109009190614505565b60405180910390f35b34801561091557600080fd5b5061091e611d04565b60405161092b9190614505565b60405180910390f35b34801561094057600080fd5b5061095b60048036038101906109569190613784565b611d0a565b6040516109689190614505565b60405180910390f35b34801561097d57600080fd5b50610998600480360381019061099391906137b1565b611d1c565b6040516109a59190614172565b60405180910390f35b3480156109ba57600080fd5b506109d560048036038101906109d09190613784565b611e02565b005b3480156109e357600080fd5b506109fe60048036038101906109f99190613947565b611e86565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610acb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b3357507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b435750610b4282611f3d565b5b9050919050565b606060048054610b59906148b5565b80601f0160208091040260200160405190810160405280929190818152602001828054610b85906148b5565b8015610bd25780601f10610ba757610100808354040283529160200191610bd2565b820191906000526020600020905b815481529060010190602001808311610bb557829003601f168201915b5050505050905090565b6000610be782611fa7565b610c26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1d906144aa565b60405180910390fd5b6008600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610c69611fb5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cce9061438a565b60405180910390fd5b6000610ce28261125f565b90508073ffffffffffffffffffffffffffffffffffffffff16610d03611fb5565b73ffffffffffffffffffffffffffffffffffffffff1614158015610d355750610d3381610d2e611fb5565b611d1c565b155b15610d6c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600360009054906101000a900460ff16158015610da75750600a600083815260200190815260200160002060009054906101000a900460ff16155b15610e1b57610dcb8373ffffffffffffffffffffffffffffffffffffffff16611fbd565b15610e0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e029061444a565b60405180910390fd5b610e16838383611fe0565b610e27565b610e26838383611fe0565b5b505050565b6000600154905090565b610e41838383612092565b505050565b610e4e61264b565b80600f60000160006101000a81548163ffffffff021916908363ffffffff16021790555050565b60025481565b6000610e86836112b6565b8210610ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebe906141ca565b60405180910390fd5b6000610ed1610e2c565b905060008060005b83811015611037576000600660008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610fcb57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110235786841415611014578195505050505050611073565b838061101f90614918565b9450505b50808061102f90614918565b915050610ed9565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106a9061446a565b60405180910390fd5b92915050565b61108161264b565b60405180608001604052808563ffffffff1681526020018463ffffffff16815260200183815260200182815250600f60008201518160000160006101000a81548163ffffffff021916908363ffffffff16021790555060208201518160000160046101000a81548163ffffffff021916908363ffffffff160217905550604082015181600101556060820151816002015590505050505050565b600080600f600101541415801561114e57506000600f60000160049054906101000a900463ffffffff1663ffffffff1614155b80156111755750600f60000160049054906101000a900463ffffffff1663ffffffff164210155b905090565b61119583838360405180602001604052806000815250611bdb565b505050565b600360009054906101000a900460ff1681565b6000600e54905090565b60006111c1610e2c565b8210611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f99061424a565b60405180910390fd5b819050919050565b61121261264b565b80600a600084815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61124961264b565b81816012919061125a9291906133bc565b505050565b600061126a826126c9565b600001519050919050565b61127d61264b565b8060028190555050565b61128f61264b565b80600f60000160046101000a81548163ffffffff021916908363ffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611327576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131e906142ea565b60405180910390fd5b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6113a761264b565b6113b160006128cc565b565b6113bb61264b565b600360009054906101000a900460ff1615600360006101000a81548160ff021916908315150217905550565b600080336040516020016113fb91906140c1565b60405160208183030381529060405280519060200120905060003260405160200161142691906140c1565b60405160208183030381529060405280519060200120905061148c858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060025484612990565b806114e157506114e0858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060025483612990565b5b611520576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611517906141ea565b60405180910390fd5b60019250505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f8060000160009054906101000a900463ffffffff16908060000160049054906101000a900463ffffffff16908060010154908060020154905084565b6115bf613442565b6115c8826126c9565b9050919050565b6060600580546115de906148b5565b80601f016020809104026020016040519081016040528092919081815260200182805461160a906148b5565b80156116575780601f1061162c57610100808354040283529160200191611657565b820191906000526020600020905b81548152906001019060200180831161163a57829003601f168201915b5050505050905090565b600081565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146116d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cb906142ca565b60405180910390fd5b6000600f60000160009054906101000a900463ffffffff1663ffffffff169050600081141580156117055750804210155b611744576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173b9061428a565b60405180910390fd5b600a821115611788576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177f9061430a565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000826117b2610e2c565b6117bc919061469c565b11156117fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f49061430a565b60405180910390fd5b600a8261180933611d0a565b611813919061469c565b1115611854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184b9061442a565b60405180910390fd5b61185e33836129a7565b5050565b61186a611fb5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cf9061438a565b60405180910390fd5b600360009054906101000a900460ff1615801561193f5750600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611aaf576119638273ffffffffffffffffffffffffffffffffffffffff16611fbd565b156119a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199a9061444a565b60405180910390fd5b80600960006119b0611fb5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a5d611fb5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611aa29190614172565b60405180910390a3611bb7565b8060096000611abc611fb5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b69611fb5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bae9190614172565b60405180910390a35b5050565b600b6020528060005260406000206000915054906101000a900460ff1681565b611be6848484612092565b611bf2848484846129c5565b611c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c28906143ca565b60405180910390fd5b50505050565b600a6020528060005260406000206000915054906101000a900460ff1681565b6060611c6282611fa7565b611ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c989061436a565b60405180910390fd5b6000611cab612b5c565b90506000815111611ccb5760405180602001604052806000815250611cf6565b80611cd584612bee565b604051602001611ce69291906140dc565b6040516020818303038152906040525b915050919050565b600e5481565b600c5481565b6000611d1582612d4f565b9050919050565b6000730dd1054cc0eff9864a3c65efd4ba17cdebff49ed73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d6f5760019050611dfc565b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690505b92915050565b611e0a61264b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e719061420a565b60405180910390fd5b611e83816128cc565b50565b611e8e61264b565b60005b8251811015611f3857818181518110611ead57611eac614a43565b5b6020026020010151600b6000858481518110611ecc57611ecb614a43565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611f3090614918565b915050611e91565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b826008600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061209d826126c9565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166120c4611fb5565b73ffffffffffffffffffffffffffffffffffffffff16148061212057506120e9611fb5565b73ffffffffffffffffffffffffffffffffffffffff1661210884610bdc565b73ffffffffffffffffffffffffffffffffffffffff16145b8061213c575061213b8260000151612136611fb5565b611d1c565b5b90508061217e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612175906143aa565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146121f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e79061432a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612260576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122579061426a565b60405180910390fd5b61226d8585856001612e38565b61227d6000848460000151611fe0565b6001600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166122eb9190614723565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661238f9190614656565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506006600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184612495919061469c565b9050600073ffffffffffffffffffffffffffffffffffffffff166006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156125db5761250b81611fa7565b156125da576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506006600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126438686866001612e3e565b505050505050565b612653611fb5565b73ffffffffffffffffffffffffffffffffffffffff16612671611550565b73ffffffffffffffffffffffffffffffffffffffff16146126c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126be9061434a565b60405180910390fd5b565b6126d1613442565b6126da82611fa7565b612719576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127109061422a565b60405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000000831061277d5760017f0000000000000000000000000000000000000000000000000000000000000000846127709190614757565b61277a919061469c565b90505b60008390505b81811061288b576000600660008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612877578093505050506128c7565b5080806128839061488b565b915050612783565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128be9061448a565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008261299d8584612e44565b1490509392505050565b6129c1828260405180602001604052806000815250612e9a565b5050565b60006129e68473ffffffffffffffffffffffffffffffffffffffff16611fbd565b15612b4f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a0f611fb5565b8786866040518563ffffffff1660e01b8152600401612a319493929190614126565b602060405180830381600087803b158015612a4b57600080fd5b505af1925050508015612a7c57506040513d601f19601f82011682018060405250810190612a799190613a66565b60015b612aff573d8060008114612aac576040519150601f19603f3d011682016040523d82523d6000602084013e612ab1565b606091505b50600081511415612af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aee906143ca565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b54565b600190505b949350505050565b606060128054612b6b906148b5565b80601f0160208091040260200160405190810160405280929190818152602001828054612b97906148b5565b8015612be45780601f10612bb957610100808354040283529160200191612be4565b820191906000526020600020905b815481529060010190602001808311612bc757829003601f168201915b5050505050905090565b60606000821415612c36576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d4a565b600082905060005b60008214612c68578080612c5190614918565b915050600a82612c6191906146f2565b9150612c3e565b60008167ffffffffffffffff811115612c8457612c83614a72565b5b6040519080825280601f01601f191660200182016040528015612cb65781602001600182028036833780820191505090505b5090505b60008514612d4357600182612ccf9190614757565b9150600a85612cde9190614985565b6030612cea919061469c565b60f81b818381518110612d0057612cff614a43565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d3c91906146f2565b9450612cba565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612dc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db7906142aa565b60405180910390fd5b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b60008082905060005b8451811015612e8f57612e7a82868381518110612e6d57612e6c614a43565b5b602002602001015161337a565b91508080612e8790614918565b915050612e4d565b508091505092915050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612f11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f089061440a565b60405180910390fd5b612f1a81611fa7565b15612f5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f51906143ea565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115612fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fb4906144ca565b60405180910390fd5b612fca6000858386612e38565b6000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516130c79190614656565b6fffffffffffffffffffffffffffffffff1681526020018583602001516130ee9190614656565b6fffffffffffffffffffffffffffffffff16815250600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506006600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561335d57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46132fd60008884886129c5565b61333c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613333906143ca565b60405180910390fd5b818061334790614918565b925050808061335590614918565b91505061328c565b50806001819055506133726000878588612e3e565b505050505050565b60008183106133925761338d82846133a5565b61339d565b61339c83836133a5565b5b905092915050565b600082600052816020526040600020905092915050565b8280546133c8906148b5565b90600052602060002090601f0160209004810192826133ea5760008555613431565b82601f1061340357803560ff1916838001178555613431565b82800160010185558215613431579182015b82811115613430578235825591602001919060010190613415565b5b50905061343e919061347c565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561349557600081600090555060010161347d565b5090565b60006134ac6134a78461458a565b614565565b905080838252602082019050828560208602820111156134cf576134ce614aab565b5b60005b858110156134ff57816134e588826135bb565b8452602084019350602083019250506001810190506134d2565b5050509392505050565b600061351c613517846145b6565b614565565b9050808382526020820190508285602086028201111561353f5761353e614aab565b5b60005b8581101561356f57816135558882613682565b845260208401935060208301925050600181019050613542565b5050509392505050565b600061358c613587846145e2565b614565565b9050828152602081018484840111156135a8576135a7614ab0565b5b6135b3848285614849565b509392505050565b6000813590506135ca8161518d565b92915050565b600082601f8301126135e5576135e4614aa6565b5b81356135f5848260208601613499565b91505092915050565b600082601f83011261361357613612614aa6565b5b8135613623848260208601613509565b91505092915050565b60008083601f84011261364257613641614aa6565b5b8235905067ffffffffffffffff81111561365f5761365e614aa1565b5b60208301915083602082028301111561367b5761367a614aab565b5b9250929050565b600081359050613691816151a4565b92915050565b6000813590506136a6816151bb565b92915050565b6000813590506136bb816151d2565b92915050565b6000815190506136d0816151d2565b92915050565b600082601f8301126136eb576136ea614aa6565b5b81356136fb848260208601613579565b91505092915050565b60008083601f84011261371a57613719614aa6565b5b8235905067ffffffffffffffff81111561373757613736614aa1565b5b60208301915083600182028301111561375357613752614aab565b5b9250929050565b600081359050613769816151e9565b92915050565b60008135905061377e81615200565b92915050565b60006020828403121561379a57613799614aba565b5b60006137a8848285016135bb565b91505092915050565b600080604083850312156137c8576137c7614aba565b5b60006137d6858286016135bb565b92505060206137e7858286016135bb565b9150509250929050565b60008060006060848603121561380a57613809614aba565b5b6000613818868287016135bb565b9350506020613829868287016135bb565b925050604061383a8682870161375a565b9150509250925092565b6000806000806080858703121561385e5761385d614aba565b5b600061386c878288016135bb565b945050602061387d878288016135bb565b935050604061388e8782880161375a565b925050606085013567ffffffffffffffff8111156138af576138ae614ab5565b5b6138bb878288016136d6565b91505092959194509250565b600080604083850312156138de576138dd614aba565b5b60006138ec858286016135bb565b92505060206138fd85828601613682565b9150509250929050565b6000806040838503121561391e5761391d614aba565b5b600061392c858286016135bb565b925050602061393d8582860161375a565b9150509250929050565b6000806040838503121561395e5761395d614aba565b5b600083013567ffffffffffffffff81111561397c5761397b614ab5565b5b613988858286016135d0565b925050602083013567ffffffffffffffff8111156139a9576139a8614ab5565b5b6139b5858286016135fe565b9150509250929050565b600080602083850312156139d6576139d5614aba565b5b600083013567ffffffffffffffff8111156139f4576139f3614ab5565b5b613a008582860161362c565b92509250509250929050565b600060208284031215613a2257613a21614aba565b5b6000613a3084828501613697565b91505092915050565b600060208284031215613a4f57613a4e614aba565b5b6000613a5d848285016136ac565b91505092915050565b600060208284031215613a7c57613a7b614aba565b5b6000613a8a848285016136c1565b91505092915050565b60008060208385031215613aaa57613aa9614aba565b5b600083013567ffffffffffffffff811115613ac857613ac7614ab5565b5b613ad485828601613704565b92509250509250929050565b600060208284031215613af657613af5614aba565b5b6000613b048482850161375a565b91505092915050565b60008060408385031215613b2457613b23614aba565b5b6000613b328582860161375a565b9250506020613b4385828601613682565b9150509250929050565b600060208284031215613b6357613b62614aba565b5b6000613b718482850161376f565b91505092915050565b60008060008060808587031215613b9457613b93614aba565b5b6000613ba28782880161376f565b9450506020613bb38782880161376f565b9350506040613bc48782880161375a565b9250506060613bd58782880161375a565b91505092959194509250565b613bea8161478b565b82525050565b613bf98161478b565b82525050565b613c10613c0b8261478b565b614961565b82525050565b613c1f8161479d565b82525050565b613c2e816147a9565b82525050565b6000613c3f82614613565b613c498185614629565b9350613c59818560208601614858565b613c6281614abf565b840191505092915050565b6000613c788261461e565b613c82818561463a565b9350613c92818560208601614858565b613c9b81614abf565b840191505092915050565b6000613cb18261461e565b613cbb818561464b565b9350613ccb818560208601614858565b80840191505092915050565b6000613ce460228361463a565b9150613cef82614add565b604082019050919050565b6000613d07600e8361463a565b9150613d1282614b2c565b602082019050919050565b6000613d2a60268361463a565b9150613d3582614b55565b604082019050919050565b6000613d4d602a8361463a565b9150613d5882614ba4565b604082019050919050565b6000613d7060238361463a565b9150613d7b82614bf3565b604082019050919050565b6000613d9360258361463a565b9150613d9e82614c42565b604082019050919050565b6000613db660188361463a565b9150613dc182614c91565b602082019050919050565b6000613dd960318361463a565b9150613de482614cba565b604082019050919050565b6000613dfc601e8361463a565b9150613e0782614d09565b602082019050919050565b6000613e1f602b8361463a565b9150613e2a82614d32565b604082019050919050565b6000613e4260128361463a565b9150613e4d82614d81565b602082019050919050565b6000613e6560268361463a565b9150613e7082614daa565b604082019050919050565b6000613e8860058361464b565b9150613e9382614df9565b600582019050919050565b6000613eab60208361463a565b9150613eb682614e22565b602082019050919050565b6000613ece602f8361463a565b9150613ed982614e4b565b604082019050919050565b6000613ef1601a8361463a565b9150613efc82614e9a565b602082019050919050565b6000613f1460328361463a565b9150613f1f82614ec3565b604082019050919050565b6000613f3760338361463a565b9150613f4282614f12565b604082019050919050565b6000613f5a601d8361463a565b9150613f6582614f61565b602082019050919050565b6000613f7d60218361463a565b9150613f8882614f8a565b604082019050919050565b6000613fa060168361463a565b9150613fab82614fd9565b602082019050919050565b6000613fc3602c8361463a565b9150613fce82615002565b604082019050919050565b6000613fe6602e8361463a565b9150613ff182615051565b604082019050919050565b6000614009602f8361463a565b9150614014826150a0565b604082019050919050565b600061402c602d8361463a565b9150614037826150ef565b604082019050919050565b600061404f60228361463a565b915061405a8261513e565b604082019050919050565b60408201600082015161407b6000850182613be1565b50602082015161408e60208501826140b2565b50505050565b61409d8161481b565b82525050565b6140ac81614825565b82525050565b6140bb81614835565b82525050565b60006140cd8284613bff565b60148201915081905092915050565b60006140e88285613ca6565b91506140f48284613ca6565b91506140ff82613e7b565b91508190509392505050565b60006020820190506141206000830184613bf0565b92915050565b600060808201905061413b6000830187613bf0565b6141486020830186613bf0565b6141556040830185614094565b81810360608301526141678184613c34565b905095945050505050565b60006020820190506141876000830184613c16565b92915050565b60006020820190506141a26000830184613c25565b92915050565b600060208201905081810360008301526141c28184613c6d565b905092915050565b600060208201905081810360008301526141e381613cd7565b9050919050565b6000602082019050818103600083015261420381613cfa565b9050919050565b6000602082019050818103600083015261422381613d1d565b9050919050565b6000602082019050818103600083015261424381613d40565b9050919050565b6000602082019050818103600083015261426381613d63565b9050919050565b6000602082019050818103600083015261428381613d86565b9050919050565b600060208201905081810360008301526142a381613da9565b9050919050565b600060208201905081810360008301526142c381613dcc565b9050919050565b600060208201905081810360008301526142e381613def565b9050919050565b6000602082019050818103600083015261430381613e12565b9050919050565b6000602082019050818103600083015261432381613e35565b9050919050565b6000602082019050818103600083015261434381613e58565b9050919050565b6000602082019050818103600083015261436381613e9e565b9050919050565b6000602082019050818103600083015261438381613ec1565b9050919050565b600060208201905081810360008301526143a381613ee4565b9050919050565b600060208201905081810360008301526143c381613f07565b9050919050565b600060208201905081810360008301526143e381613f2a565b9050919050565b6000602082019050818103600083015261440381613f4d565b9050919050565b6000602082019050818103600083015261442381613f70565b9050919050565b6000602082019050818103600083015261444381613f93565b9050919050565b6000602082019050818103600083015261446381613fb6565b9050919050565b6000602082019050818103600083015261448381613fd9565b9050919050565b600060208201905081810360008301526144a381613ffc565b9050919050565b600060208201905081810360008301526144c38161401f565b9050919050565b600060208201905081810360008301526144e381614042565b9050919050565b60006040820190506144ff6000830184614065565b92915050565b600060208201905061451a6000830184614094565b92915050565b600060808201905061453560008301876140a3565b61454260208301866140a3565b61454f6040830185614094565b61455c6060830184614094565b95945050505050565b600061456f614580565b905061457b82826148e7565b919050565b6000604051905090565b600067ffffffffffffffff8211156145a5576145a4614a72565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156145d1576145d0614a72565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156145fd576145fc614a72565b5b61460682614abf565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614661826147df565b915061466c836147df565b9250826fffffffffffffffffffffffffffffffff03821115614691576146906149b6565b5b828201905092915050565b60006146a78261481b565b91506146b28361481b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156146e7576146e66149b6565b5b828201905092915050565b60006146fd8261481b565b91506147088361481b565b925082614718576147176149e5565b5b828204905092915050565b600061472e826147df565b9150614739836147df565b92508282101561474c5761474b6149b6565b5b828203905092915050565b60006147628261481b565b915061476d8361481b565b9250828210156147805761477f6149b6565b5b828203905092915050565b6000614796826147fb565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b8381101561487657808201518184015260208101905061485b565b83811115614885576000848401525b50505050565b60006148968261481b565b915060008214156148aa576148a96149b6565b5b600182039050919050565b600060028204905060018216806148cd57607f821691505b602082108114156148e1576148e0614a14565b5b50919050565b6148f082614abf565b810181811067ffffffffffffffff8211171561490f5761490e614a72565b5b80604052505050565b60006149238261481b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614956576149556149b6565b5b600182019050919050565b600061496c82614973565b9050919050565b600061497e82614ad0565b9050919050565b60006149908261481b565b915061499b8361481b565b9250826149ab576149aa6149e5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c69642070726f6f6621000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f73616c6520686173206e6f742073746172746564207965740000000000000000600082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f63616e206e6f74206d696e742074686973206d616e7900000000000000000000600082015250565b7f53616c65732077696c6c206265206f70656e6564206166746572206d696e742060008201527f697320636f6d706c6574652e0000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6151968161478b565b81146151a157600080fd5b50565b6151ad8161479d565b81146151b857600080fd5b50565b6151c4816147a9565b81146151cf57600080fd5b50565b6151db816147b3565b81146151e657600080fd5b50565b6151f28161481b565b81146151fd57600080fd5b50565b61520981614825565b811461521457600080fd5b5056fea264697066735822122001f917682a6f5eb3bd7348ddcb72c8c107595edf97563138d16bfcbca414551364736f6c63430008070033000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000002710

Deployed Bytecode

0x6080604052600436106102515760003560e01c8063715018a611610139578063a22cb465116100b6578063d5abeb011161007a578063d5abeb01146108de578063d7224ba014610909578063dc33e68114610934578063e985e9c514610971578063f2fde38b146109ae578063fdb8e34e146109d757610251565b8063a22cb465146107d5578063b1f7f0eb146107fe578063b88d4fde1461083b578063c080519714610864578063c87b56dd146108a157610251565b806390aa0b0f116100fd57806390aa0b0f146106f85780639231ab2a1461072657806395d89b41146107635780639dfde2011461078e5780639fb17e34146107b957610251565b8063715018a614610637578063801fe59b1461064e5780638942932d146106655780638bc35c2f146106a25780638da5cb5b146106cd57610251565b80633f5e4741116101d257806355a554651161019657806355a554651461051957806355f804b3146105425780636352211e1461056b57806367ba5ecc146105a85780636f58ec48146105d157806370a08231146105fa57610251565b80633f5e47411461043257806342842e0e1461045d5780634aaf78f1146104865780634c0f38c2146104b15780634f6ccce7146104dc57610251565b806323b872dd1161021957806323b872dd1461034f57806328a4d1a7146103785780632a13614c146103a15780632f745c59146103cc5780633ae976cc1461040957610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb57806318160ddd14610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613a39565b610a00565b60405161028a9190614172565b60405180910390f35b34801561029f57600080fd5b506102a8610b4a565b6040516102b591906141a8565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190613ae0565b610bdc565b6040516102f2919061410b565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d9190613907565b610c61565b005b34801561033057600080fd5b50610339610e2c565b6040516103469190614505565b60405180910390f35b34801561035b57600080fd5b50610376600480360381019061037191906137f1565b610e36565b005b34801561038457600080fd5b5061039f600480360381019061039a9190613b4d565b610e46565b005b3480156103ad57600080fd5b506103b6610e75565b6040516103c3919061418d565b60405180910390f35b3480156103d857600080fd5b506103f360048036038101906103ee9190613907565b610e7b565b6040516104009190614505565b60405180910390f35b34801561041557600080fd5b50610430600480360381019061042b9190613b7a565b611079565b005b34801561043e57600080fd5b5061044761111b565b6040516104549190614172565b60405180910390f35b34801561046957600080fd5b50610484600480360381019061047f91906137f1565b61117a565b005b34801561049257600080fd5b5061049b61119a565b6040516104a89190614172565b60405180910390f35b3480156104bd57600080fd5b506104c66111ad565b6040516104d39190614505565b60405180910390f35b3480156104e857600080fd5b5061050360048036038101906104fe9190613ae0565b6111b7565b6040516105109190614505565b60405180910390f35b34801561052557600080fd5b50610540600480360381019061053b9190613b0d565b61120a565b005b34801561054e57600080fd5b5061056960048036038101906105649190613a93565b611241565b005b34801561057757600080fd5b50610592600480360381019061058d9190613ae0565b61125f565b60405161059f919061410b565b60405180910390f35b3480156105b457600080fd5b506105cf60048036038101906105ca9190613a0c565b611275565b005b3480156105dd57600080fd5b506105f860048036038101906105f39190613b4d565b611287565b005b34801561060657600080fd5b50610621600480360381019061061c9190613784565b6112b6565b60405161062e9190614505565b60405180910390f35b34801561064357600080fd5b5061064c61139f565b005b34801561065a57600080fd5b506106636113b3565b005b34801561067157600080fd5b5061068c600480360381019061068791906139bf565b6113e7565b6040516106999190614172565b60405180910390f35b3480156106ae57600080fd5b506106b761152c565b6040516106c49190614505565b60405180910390f35b3480156106d957600080fd5b506106e2611550565b6040516106ef919061410b565b60405180910390f35b34801561070457600080fd5b5061070d611579565b60405161071d9493929190614520565b60405180910390f35b34801561073257600080fd5b5061074d60048036038101906107489190613ae0565b6115b7565b60405161075a91906144ea565b60405180910390f35b34801561076f57600080fd5b506107786115cf565b60405161078591906141a8565b60405180910390f35b34801561079a57600080fd5b506107a3611661565b6040516107b09190614505565b60405180910390f35b6107d360048036038101906107ce9190613ae0565b611666565b005b3480156107e157600080fd5b506107fc60048036038101906107f791906138c7565b611862565b005b34801561080a57600080fd5b5061082560048036038101906108209190613784565b611bbb565b6040516108329190614172565b60405180910390f35b34801561084757600080fd5b50610862600480360381019061085d9190613844565b611bdb565b005b34801561087057600080fd5b5061088b60048036038101906108869190613ae0565b611c37565b6040516108989190614172565b60405180910390f35b3480156108ad57600080fd5b506108c860048036038101906108c39190613ae0565b611c57565b6040516108d591906141a8565b60405180910390f35b3480156108ea57600080fd5b506108f3611cfe565b6040516109009190614505565b60405180910390f35b34801561091557600080fd5b5061091e611d04565b60405161092b9190614505565b60405180910390f35b34801561094057600080fd5b5061095b60048036038101906109569190613784565b611d0a565b6040516109689190614505565b60405180910390f35b34801561097d57600080fd5b50610998600480360381019061099391906137b1565b611d1c565b6040516109a59190614172565b60405180910390f35b3480156109ba57600080fd5b506109d560048036038101906109d09190613784565b611e02565b005b3480156109e357600080fd5b506109fe60048036038101906109f99190613947565b611e86565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610acb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b3357507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b435750610b4282611f3d565b5b9050919050565b606060048054610b59906148b5565b80601f0160208091040260200160405190810160405280929190818152602001828054610b85906148b5565b8015610bd25780601f10610ba757610100808354040283529160200191610bd2565b820191906000526020600020905b815481529060010190602001808311610bb557829003601f168201915b5050505050905090565b6000610be782611fa7565b610c26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1d906144aa565b60405180910390fd5b6008600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610c69611fb5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cce9061438a565b60405180910390fd5b6000610ce28261125f565b90508073ffffffffffffffffffffffffffffffffffffffff16610d03611fb5565b73ffffffffffffffffffffffffffffffffffffffff1614158015610d355750610d3381610d2e611fb5565b611d1c565b155b15610d6c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600360009054906101000a900460ff16158015610da75750600a600083815260200190815260200160002060009054906101000a900460ff16155b15610e1b57610dcb8373ffffffffffffffffffffffffffffffffffffffff16611fbd565b15610e0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e029061444a565b60405180910390fd5b610e16838383611fe0565b610e27565b610e26838383611fe0565b5b505050565b6000600154905090565b610e41838383612092565b505050565b610e4e61264b565b80600f60000160006101000a81548163ffffffff021916908363ffffffff16021790555050565b60025481565b6000610e86836112b6565b8210610ec7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebe906141ca565b60405180910390fd5b6000610ed1610e2c565b905060008060005b83811015611037576000600660008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610fcb57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156110235786841415611014578195505050505050611073565b838061101f90614918565b9450505b50808061102f90614918565b915050610ed9565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106a9061446a565b60405180910390fd5b92915050565b61108161264b565b60405180608001604052808563ffffffff1681526020018463ffffffff16815260200183815260200182815250600f60008201518160000160006101000a81548163ffffffff021916908363ffffffff16021790555060208201518160000160046101000a81548163ffffffff021916908363ffffffff160217905550604082015181600101556060820151816002015590505050505050565b600080600f600101541415801561114e57506000600f60000160049054906101000a900463ffffffff1663ffffffff1614155b80156111755750600f60000160049054906101000a900463ffffffff1663ffffffff164210155b905090565b61119583838360405180602001604052806000815250611bdb565b505050565b600360009054906101000a900460ff1681565b6000600e54905090565b60006111c1610e2c565b8210611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f99061424a565b60405180910390fd5b819050919050565b61121261264b565b80600a600084815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61124961264b565b81816012919061125a9291906133bc565b505050565b600061126a826126c9565b600001519050919050565b61127d61264b565b8060028190555050565b61128f61264b565b80600f60000160046101000a81548163ffffffff021916908363ffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611327576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131e906142ea565b60405180910390fd5b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6113a761264b565b6113b160006128cc565b565b6113bb61264b565b600360009054906101000a900460ff1615600360006101000a81548160ff021916908315150217905550565b600080336040516020016113fb91906140c1565b60405160208183030381529060405280519060200120905060003260405160200161142691906140c1565b60405160208183030381529060405280519060200120905061148c858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060025484612990565b806114e157506114e0858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060025483612990565b5b611520576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611517906141ea565b60405180910390fd5b60019250505092915050565b7f000000000000000000000000000000000000000000000000000000000000000a81565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f8060000160009054906101000a900463ffffffff16908060000160049054906101000a900463ffffffff16908060010154908060020154905084565b6115bf613442565b6115c8826126c9565b9050919050565b6060600580546115de906148b5565b80601f016020809104026020016040519081016040528092919081815260200182805461160a906148b5565b80156116575780601f1061162c57610100808354040283529160200191611657565b820191906000526020600020905b81548152906001019060200180831161163a57829003601f168201915b5050505050905090565b600081565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146116d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cb906142ca565b60405180910390fd5b6000600f60000160009054906101000a900463ffffffff1663ffffffff169050600081141580156117055750804210155b611744576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173b9061428a565b60405180910390fd5b600a821115611788576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177f9061430a565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000002710826117b2610e2c565b6117bc919061469c565b11156117fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f49061430a565b60405180910390fd5b600a8261180933611d0a565b611813919061469c565b1115611854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184b9061442a565b60405180910390fd5b61185e33836129a7565b5050565b61186a611fb5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cf9061438a565b60405180910390fd5b600360009054906101000a900460ff1615801561193f5750600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611aaf576119638273ffffffffffffffffffffffffffffffffffffffff16611fbd565b156119a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199a9061444a565b60405180910390fd5b80600960006119b0611fb5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a5d611fb5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611aa29190614172565b60405180910390a3611bb7565b8060096000611abc611fb5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b69611fb5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bae9190614172565b60405180910390a35b5050565b600b6020528060005260406000206000915054906101000a900460ff1681565b611be6848484612092565b611bf2848484846129c5565b611c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c28906143ca565b60405180910390fd5b50505050565b600a6020528060005260406000206000915054906101000a900460ff1681565b6060611c6282611fa7565b611ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c989061436a565b60405180910390fd5b6000611cab612b5c565b90506000815111611ccb5760405180602001604052806000815250611cf6565b80611cd584612bee565b604051602001611ce69291906140dc565b6040516020818303038152906040525b915050919050565b600e5481565b600c5481565b6000611d1582612d4f565b9050919050565b6000730dd1054cc0eff9864a3c65efd4ba17cdebff49ed73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d6f5760019050611dfc565b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690505b92915050565b611e0a61264b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e719061420a565b60405180910390fd5b611e83816128cc565b50565b611e8e61264b565b60005b8251811015611f3857818181518110611ead57611eac614a43565b5b6020026020010151600b6000858481518110611ecc57611ecb614a43565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611f3090614918565b915050611e91565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b826008600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061209d826126c9565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166120c4611fb5565b73ffffffffffffffffffffffffffffffffffffffff16148061212057506120e9611fb5565b73ffffffffffffffffffffffffffffffffffffffff1661210884610bdc565b73ffffffffffffffffffffffffffffffffffffffff16145b8061213c575061213b8260000151612136611fb5565b611d1c565b5b90508061217e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612175906143aa565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146121f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e79061432a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612260576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122579061426a565b60405180910390fd5b61226d8585856001612e38565b61227d6000848460000151611fe0565b6001600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166122eb9190614723565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661238f9190614656565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506006600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184612495919061469c565b9050600073ffffffffffffffffffffffffffffffffffffffff166006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156125db5761250b81611fa7565b156125da576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506006600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126438686866001612e3e565b505050505050565b612653611fb5565b73ffffffffffffffffffffffffffffffffffffffff16612671611550565b73ffffffffffffffffffffffffffffffffffffffff16146126c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126be9061434a565b60405180910390fd5b565b6126d1613442565b6126da82611fa7565b612719576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127109061422a565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000a831061277d5760017f000000000000000000000000000000000000000000000000000000000000000a846127709190614757565b61277a919061469c565b90505b60008390505b81811061288b576000600660008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612877578093505050506128c7565b5080806128839061488b565b915050612783565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128be9061448a565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008261299d8584612e44565b1490509392505050565b6129c1828260405180602001604052806000815250612e9a565b5050565b60006129e68473ffffffffffffffffffffffffffffffffffffffff16611fbd565b15612b4f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a0f611fb5565b8786866040518563ffffffff1660e01b8152600401612a319493929190614126565b602060405180830381600087803b158015612a4b57600080fd5b505af1925050508015612a7c57506040513d601f19601f82011682018060405250810190612a799190613a66565b60015b612aff573d8060008114612aac576040519150601f19603f3d011682016040523d82523d6000602084013e612ab1565b606091505b50600081511415612af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aee906143ca565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b54565b600190505b949350505050565b606060128054612b6b906148b5565b80601f0160208091040260200160405190810160405280929190818152602001828054612b97906148b5565b8015612be45780601f10612bb957610100808354040283529160200191612be4565b820191906000526020600020905b815481529060010190602001808311612bc757829003601f168201915b5050505050905090565b60606000821415612c36576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d4a565b600082905060005b60008214612c68578080612c5190614918565b915050600a82612c6191906146f2565b9150612c3e565b60008167ffffffffffffffff811115612c8457612c83614a72565b5b6040519080825280601f01601f191660200182016040528015612cb65781602001600182028036833780820191505090505b5090505b60008514612d4357600182612ccf9190614757565b9150600a85612cde9190614985565b6030612cea919061469c565b60f81b818381518110612d0057612cff614a43565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d3c91906146f2565b9450612cba565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612dc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db7906142aa565b60405180910390fd5b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b60008082905060005b8451811015612e8f57612e7a82868381518110612e6d57612e6c614a43565b5b602002602001015161337a565b91508080612e8790614918565b915050612e4d565b508091505092915050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612f11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f089061440a565b60405180910390fd5b612f1a81611fa7565b15612f5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f51906143ea565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000a831115612fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fb4906144ca565b60405180910390fd5b612fca6000858386612e38565b6000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516130c79190614656565b6fffffffffffffffffffffffffffffffff1681526020018583602001516130ee9190614656565b6fffffffffffffffffffffffffffffffff16815250600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506006600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561335d57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46132fd60008884886129c5565b61333c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613333906143ca565b60405180910390fd5b818061334790614918565b925050808061335590614918565b91505061328c565b50806001819055506133726000878588612e3e565b505050505050565b60008183106133925761338d82846133a5565b61339d565b61339c83836133a5565b5b905092915050565b600082600052816020526040600020905092915050565b8280546133c8906148b5565b90600052602060002090601f0160209004810192826133ea5760008555613431565b82601f1061340357803560ff1916838001178555613431565b82800160010185558215613431579182015b82811115613430578235825591602001919060010190613415565b5b50905061343e919061347c565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561349557600081600090555060010161347d565b5090565b60006134ac6134a78461458a565b614565565b905080838252602082019050828560208602820111156134cf576134ce614aab565b5b60005b858110156134ff57816134e588826135bb565b8452602084019350602083019250506001810190506134d2565b5050509392505050565b600061351c613517846145b6565b614565565b9050808382526020820190508285602086028201111561353f5761353e614aab565b5b60005b8581101561356f57816135558882613682565b845260208401935060208301925050600181019050613542565b5050509392505050565b600061358c613587846145e2565b614565565b9050828152602081018484840111156135a8576135a7614ab0565b5b6135b3848285614849565b509392505050565b6000813590506135ca8161518d565b92915050565b600082601f8301126135e5576135e4614aa6565b5b81356135f5848260208601613499565b91505092915050565b600082601f83011261361357613612614aa6565b5b8135613623848260208601613509565b91505092915050565b60008083601f84011261364257613641614aa6565b5b8235905067ffffffffffffffff81111561365f5761365e614aa1565b5b60208301915083602082028301111561367b5761367a614aab565b5b9250929050565b600081359050613691816151a4565b92915050565b6000813590506136a6816151bb565b92915050565b6000813590506136bb816151d2565b92915050565b6000815190506136d0816151d2565b92915050565b600082601f8301126136eb576136ea614aa6565b5b81356136fb848260208601613579565b91505092915050565b60008083601f84011261371a57613719614aa6565b5b8235905067ffffffffffffffff81111561373757613736614aa1565b5b60208301915083600182028301111561375357613752614aab565b5b9250929050565b600081359050613769816151e9565b92915050565b60008135905061377e81615200565b92915050565b60006020828403121561379a57613799614aba565b5b60006137a8848285016135bb565b91505092915050565b600080604083850312156137c8576137c7614aba565b5b60006137d6858286016135bb565b92505060206137e7858286016135bb565b9150509250929050565b60008060006060848603121561380a57613809614aba565b5b6000613818868287016135bb565b9350506020613829868287016135bb565b925050604061383a8682870161375a565b9150509250925092565b6000806000806080858703121561385e5761385d614aba565b5b600061386c878288016135bb565b945050602061387d878288016135bb565b935050604061388e8782880161375a565b925050606085013567ffffffffffffffff8111156138af576138ae614ab5565b5b6138bb878288016136d6565b91505092959194509250565b600080604083850312156138de576138dd614aba565b5b60006138ec858286016135bb565b92505060206138fd85828601613682565b9150509250929050565b6000806040838503121561391e5761391d614aba565b5b600061392c858286016135bb565b925050602061393d8582860161375a565b9150509250929050565b6000806040838503121561395e5761395d614aba565b5b600083013567ffffffffffffffff81111561397c5761397b614ab5565b5b613988858286016135d0565b925050602083013567ffffffffffffffff8111156139a9576139a8614ab5565b5b6139b5858286016135fe565b9150509250929050565b600080602083850312156139d6576139d5614aba565b5b600083013567ffffffffffffffff8111156139f4576139f3614ab5565b5b613a008582860161362c565b92509250509250929050565b600060208284031215613a2257613a21614aba565b5b6000613a3084828501613697565b91505092915050565b600060208284031215613a4f57613a4e614aba565b5b6000613a5d848285016136ac565b91505092915050565b600060208284031215613a7c57613a7b614aba565b5b6000613a8a848285016136c1565b91505092915050565b60008060208385031215613aaa57613aa9614aba565b5b600083013567ffffffffffffffff811115613ac857613ac7614ab5565b5b613ad485828601613704565b92509250509250929050565b600060208284031215613af657613af5614aba565b5b6000613b048482850161375a565b91505092915050565b60008060408385031215613b2457613b23614aba565b5b6000613b328582860161375a565b9250506020613b4385828601613682565b9150509250929050565b600060208284031215613b6357613b62614aba565b5b6000613b718482850161376f565b91505092915050565b60008060008060808587031215613b9457613b93614aba565b5b6000613ba28782880161376f565b9450506020613bb38782880161376f565b9350506040613bc48782880161375a565b9250506060613bd58782880161375a565b91505092959194509250565b613bea8161478b565b82525050565b613bf98161478b565b82525050565b613c10613c0b8261478b565b614961565b82525050565b613c1f8161479d565b82525050565b613c2e816147a9565b82525050565b6000613c3f82614613565b613c498185614629565b9350613c59818560208601614858565b613c6281614abf565b840191505092915050565b6000613c788261461e565b613c82818561463a565b9350613c92818560208601614858565b613c9b81614abf565b840191505092915050565b6000613cb18261461e565b613cbb818561464b565b9350613ccb818560208601614858565b80840191505092915050565b6000613ce460228361463a565b9150613cef82614add565b604082019050919050565b6000613d07600e8361463a565b9150613d1282614b2c565b602082019050919050565b6000613d2a60268361463a565b9150613d3582614b55565b604082019050919050565b6000613d4d602a8361463a565b9150613d5882614ba4565b604082019050919050565b6000613d7060238361463a565b9150613d7b82614bf3565b604082019050919050565b6000613d9360258361463a565b9150613d9e82614c42565b604082019050919050565b6000613db660188361463a565b9150613dc182614c91565b602082019050919050565b6000613dd960318361463a565b9150613de482614cba565b604082019050919050565b6000613dfc601e8361463a565b9150613e0782614d09565b602082019050919050565b6000613e1f602b8361463a565b9150613e2a82614d32565b604082019050919050565b6000613e4260128361463a565b9150613e4d82614d81565b602082019050919050565b6000613e6560268361463a565b9150613e7082614daa565b604082019050919050565b6000613e8860058361464b565b9150613e9382614df9565b600582019050919050565b6000613eab60208361463a565b9150613eb682614e22565b602082019050919050565b6000613ece602f8361463a565b9150613ed982614e4b565b604082019050919050565b6000613ef1601a8361463a565b9150613efc82614e9a565b602082019050919050565b6000613f1460328361463a565b9150613f1f82614ec3565b604082019050919050565b6000613f3760338361463a565b9150613f4282614f12565b604082019050919050565b6000613f5a601d8361463a565b9150613f6582614f61565b602082019050919050565b6000613f7d60218361463a565b9150613f8882614f8a565b604082019050919050565b6000613fa060168361463a565b9150613fab82614fd9565b602082019050919050565b6000613fc3602c8361463a565b9150613fce82615002565b604082019050919050565b6000613fe6602e8361463a565b9150613ff182615051565b604082019050919050565b6000614009602f8361463a565b9150614014826150a0565b604082019050919050565b600061402c602d8361463a565b9150614037826150ef565b604082019050919050565b600061404f60228361463a565b915061405a8261513e565b604082019050919050565b60408201600082015161407b6000850182613be1565b50602082015161408e60208501826140b2565b50505050565b61409d8161481b565b82525050565b6140ac81614825565b82525050565b6140bb81614835565b82525050565b60006140cd8284613bff565b60148201915081905092915050565b60006140e88285613ca6565b91506140f48284613ca6565b91506140ff82613e7b565b91508190509392505050565b60006020820190506141206000830184613bf0565b92915050565b600060808201905061413b6000830187613bf0565b6141486020830186613bf0565b6141556040830185614094565b81810360608301526141678184613c34565b905095945050505050565b60006020820190506141876000830184613c16565b92915050565b60006020820190506141a26000830184613c25565b92915050565b600060208201905081810360008301526141c28184613c6d565b905092915050565b600060208201905081810360008301526141e381613cd7565b9050919050565b6000602082019050818103600083015261420381613cfa565b9050919050565b6000602082019050818103600083015261422381613d1d565b9050919050565b6000602082019050818103600083015261424381613d40565b9050919050565b6000602082019050818103600083015261426381613d63565b9050919050565b6000602082019050818103600083015261428381613d86565b9050919050565b600060208201905081810360008301526142a381613da9565b9050919050565b600060208201905081810360008301526142c381613dcc565b9050919050565b600060208201905081810360008301526142e381613def565b9050919050565b6000602082019050818103600083015261430381613e12565b9050919050565b6000602082019050818103600083015261432381613e35565b9050919050565b6000602082019050818103600083015261434381613e58565b9050919050565b6000602082019050818103600083015261436381613e9e565b9050919050565b6000602082019050818103600083015261438381613ec1565b9050919050565b600060208201905081810360008301526143a381613ee4565b9050919050565b600060208201905081810360008301526143c381613f07565b9050919050565b600060208201905081810360008301526143e381613f2a565b9050919050565b6000602082019050818103600083015261440381613f4d565b9050919050565b6000602082019050818103600083015261442381613f70565b9050919050565b6000602082019050818103600083015261444381613f93565b9050919050565b6000602082019050818103600083015261446381613fb6565b9050919050565b6000602082019050818103600083015261448381613fd9565b9050919050565b600060208201905081810360008301526144a381613ffc565b9050919050565b600060208201905081810360008301526144c38161401f565b9050919050565b600060208201905081810360008301526144e381614042565b9050919050565b60006040820190506144ff6000830184614065565b92915050565b600060208201905061451a6000830184614094565b92915050565b600060808201905061453560008301876140a3565b61454260208301866140a3565b61454f6040830185614094565b61455c6060830184614094565b95945050505050565b600061456f614580565b905061457b82826148e7565b919050565b6000604051905090565b600067ffffffffffffffff8211156145a5576145a4614a72565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156145d1576145d0614a72565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156145fd576145fc614a72565b5b61460682614abf565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614661826147df565b915061466c836147df565b9250826fffffffffffffffffffffffffffffffff03821115614691576146906149b6565b5b828201905092915050565b60006146a78261481b565b91506146b28361481b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156146e7576146e66149b6565b5b828201905092915050565b60006146fd8261481b565b91506147088361481b565b925082614718576147176149e5565b5b828204905092915050565b600061472e826147df565b9150614739836147df565b92508282101561474c5761474b6149b6565b5b828203905092915050565b60006147628261481b565b915061476d8361481b565b9250828210156147805761477f6149b6565b5b828203905092915050565b6000614796826147fb565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b8381101561487657808201518184015260208101905061485b565b83811115614885576000848401525b50505050565b60006148968261481b565b915060008214156148aa576148a96149b6565b5b600182039050919050565b600060028204905060018216806148cd57607f821691505b602082108114156148e1576148e0614a14565b5b50919050565b6148f082614abf565b810181811067ffffffffffffffff8211171561490f5761490e614a72565b5b80604052505050565b60006149238261481b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614956576149556149b6565b5b600182019050919050565b600061496c82614973565b9050919050565b600061497e82614ad0565b9050919050565b60006149908261481b565b915061499b8361481b565b9250826149ab576149aa6149e5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c69642070726f6f6621000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f73616c6520686173206e6f742073746172746564207965740000000000000000600082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f63616e206e6f74206d696e742074686973206d616e7900000000000000000000600082015250565b7f53616c65732077696c6c206265206f70656e6564206166746572206d696e742060008201527f697320636f6d706c6574652e0000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6151968161478b565b81146151a157600080fd5b50565b6151ad8161479d565b81146151b857600080fd5b50565b6151c4816147a9565b81146151cf57600080fd5b50565b6151db816147b3565b81146151e657600080fd5b50565b6151f28161481b565b81146151fd57600080fd5b50565b61520981614825565b811461521457600080fd5b5056fea264697066735822122001f917682a6f5eb3bd7348ddcb72c8c107595edf97563138d16bfcbca414551364736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000002710

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 10
Arg [1] : collectionSize_ (uint256): 10000

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [1] : 0000000000000000000000000000000000000000000000000000000000002710


Deployed Bytecode Sourcemap

54678:2613:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40445:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42171:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45063:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44336:669;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39006:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46423:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56641:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36962:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39637:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56230:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55983:195;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46628:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37164:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55325:81;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39169:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43334:140;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56920:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41994:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43727:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56523:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40871:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35104:103;;;;;;;;;;;;;:::i;:::-;;43220:106;;;;;;;;;;;;;:::i;:::-;;43865:415;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54742:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34456:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54975:28;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;57139:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42326:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56184:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55412:565;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45333:706;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38177:58;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46848:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38027:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42487:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54795:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51263:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57026:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46102:262;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35362:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43482:237;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40445:370;40572:4;40617:25;40602:40;;;:11;:40;;;;:99;;;;40668:33;40653:48;;;:11;:48;;;;40602:99;:160;;;;40727:35;40712:50;;;:11;:50;;;;40602:160;:207;;;;40773:36;40797:11;40773:23;:36::i;:::-;40602:207;40588:221;;40445:370;;;:::o;42171:94::-;42225:13;42254:5;42247:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42171:94;:::o;45063:204::-;45131:7;45155:16;45163:7;45155;:16::i;:::-;45147:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;45237:15;:24;45253:7;45237:24;;;;;;;;;;;;;;;;;;;;;45230:31;;45063:204;;;:::o;44336:669::-;44423:12;:10;:12::i;:::-;44417:18;;:2;:18;;;;44409:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;44477:13;44493:24;44509:7;44493:15;:24::i;:::-;44477:40;;44548:5;44532:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;44558:37;44575:5;44582:12;:10;:12::i;:::-;44558:16;:37::i;:::-;44557:38;44532:63;44528:138;;;44619:35;;;;;;;;;;;;;;44528:138;44680:17;;;;;;;;;;;44679:18;:51;;;;;44702:19;:28;44722:7;44702:28;;;;;;;;;;;;;;;;;;;;;44701:29;44679:51;44676:322;;;44750:15;:2;:13;;;:15::i;:::-;44746:180;;;44786:55;;;;;;;;;;:::i;:::-;;;;;;;;44746:180;44882:28;44891:2;44895:7;44904:5;44882:8;:28::i;:::-;44676:322;;;44958:28;44967:2;44971:7;44980:5;44958:8;:28::i;:::-;44676:322;44398:607;44336:669;;:::o;39006:94::-;39059:7;39082:12;;39075:19;;39006:94;:::o;46423:142::-;46531:28;46541:4;46547:2;46551:7;46531:9;:28::i;:::-;46423:142;;;:::o;56641:124::-;34342:13;:11;:13::i;:::-;56750:9:::1;56717:10;:30;;;:42;;;;;;;;;;;;;;;;;;56641:124:::0;:::o;36962:38::-;;;;:::o;39637:744::-;39746:7;39781:16;39791:5;39781:9;:16::i;:::-;39773:5;:24;39765:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;39843:22;39868:13;:11;:13::i;:::-;39843:38;;39888:19;39918:25;39968:9;39963:350;39987:14;39983:1;:18;39963:350;;;40017:31;40051:11;:14;40063:1;40051:14;;;;;;;;;;;40017:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40104:1;40078:28;;:9;:14;;;:28;;;40074:89;;40139:9;:14;;;40119:34;;40074:89;40196:5;40175:26;;:17;:26;;;40171:135;;;40233:5;40218:11;:20;40214:59;;;40260:1;40253:8;;;;;;;;;40214:59;40283:13;;;;;:::i;:::-;;;;40171:135;40008:305;40003:3;;;;;:::i;:::-;;;;39963:350;;;;40319:56;;;;;;;;;;:::i;:::-;;;;;;;;39637:744;;;;;:::o;56230:287::-;34342:13;:11;:13::i;:::-;56411:100:::1;;;;;;;;56428:19;56411:100;;;;;;56454:13;56411:100;;;;;;56474:5;56411:100;;;;56486:18;56411:100;;::::0;56398:10:::1;:113;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56230:287:::0;;;;:::o;55983:195::-;56030:4;56077:1;56057:10;:16;;;:21;;:61;;;;;56117:1;56089:10;:24;;;;;;;;;;;;:29;;;;56057:61;:115;;;;;56148:10;:24;;;;;;;;;;;;56129:43;;:15;:43;;56057:115;56043:129;;55983:195;:::o;46628:157::-;46740:39;46757:4;46763:2;46767:7;46740:39;;;;;;;;;;;;:16;:39::i;:::-;46628:157;;;:::o;37164:37::-;;;;;;;;;;;;;:::o;55325:81::-;55369:7;55391:9;;55384:16;;55325:81;:::o;39169:177::-;39236:7;39268:13;:11;:13::i;:::-;39260:5;:21;39252:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;39335:5;39328:12;;39169:177;;;:::o;43334:140::-;34342:13;:11;:13::i;:::-;43460:6:::1;43428:19;:29;43448:8;43428:29;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;43334:140:::0;;:::o;56920:100::-;34342:13;:11;:13::i;:::-;57007:7:::1;;56991:13;:23;;;;;;;:::i;:::-;;56920:100:::0;;:::o;41994:118::-;42058:7;42081:20;42093:7;42081:11;:20::i;:::-;:25;;;42074:32;;41994:118;;;:::o;43727:130::-;34342:13;:11;:13::i;:::-;43838:11:::1;43812:23;:37;;;;43727:130:::0;:::o;56523:112::-;34342:13;:11;:13::i;:::-;56620:9:::1;56593:10;:24;;;:36;;;;;;;;;;;;;;;;;;56523:112:::0;:::o;40871:211::-;40935:7;40976:1;40959:19;;:5;:19;;;;40951:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;41048:12;:19;41061:5;41048:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;41040:36;;41033:43;;40871:211;;;:::o;35104:103::-;34342:13;:11;:13::i;:::-;35169:30:::1;35196:1;35169:18;:30::i;:::-;35104:103::o:0;43220:106::-;34342:13;:11;:13::i;:::-;43301:17:::1;;;;;;;;;;;43300:18;43280:17;;:38;;;;;;;;;;;;;;;;;;43220:106::o:0;43865:415::-;43945:4;43962:12;44004:10;43987:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;43977:39;;;;;;43962:54;;44027:13;44070:9;44053:27;;;;;;;;:::i;:::-;;;;;;;;;;;;;44043:38;;;;;;44027:54;;44100:63;44119:12;;44100:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44133:23;;44158:4;44100:18;:63::i;:::-;:131;;;;44167:64;44186:12;;44167:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44200:23;;44225:5;44167:18;:64::i;:::-;44100:131;44092:158;;;;;;;;;;;;:::i;:::-;;;;;;;;;44268:4;44261:11;;;;43865:415;;;;:::o;54742:48::-;;;:::o;34456:87::-;34502:7;34529:6;;;;;;;;;;;34522:13;;34456:87;:::o;54975:28::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;57139:147::-;57220:21;;:::i;:::-;57260:20;57272:7;57260:11;:20::i;:::-;57253:27;;57139:147;;;:::o;42326:98::-;42382:13;42411:7;42404:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42326:98;:::o;56184:39::-;56216:7;56184:39;:::o;55412:565::-;55260:10;55247:23;;:9;:23;;;55239:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;55491:28:::1;55530:10;:30;;;;;;;;;;;;55522:39;;55491:70;;55608:1;55584:20;:25;;:68;;;;;55632:20;55613:15;:39;;55584:68;55568:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;55719:2;55709:8;:12;;55701:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;55787:14;55775:8;55759:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:42;;55751:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;55891:2;55879:8;55852:24;55865:10;55852:12;:24::i;:::-;:35;;;;:::i;:::-;:41;;55836:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;55940:31;55950:10;55962:8;55940:9;:31::i;:::-;55480:497;55412:565:::0;:::o;45333:706::-;45440:12;:10;:12::i;:::-;45428:24;;:8;:24;;;;45420:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;45508:17;;;;;;;;;;;45507:18;:61;;;;;45530:26;:38;45557:10;45530:38;;;;;;;;;;;;;;;;;;;;;;;;;45529:39;45507:61;45504:528;;;45588:21;:8;:19;;;:21::i;:::-;45584:283;;;45630:55;;;;;;;;;;:::i;:::-;;;;;;;;45584:283;45771:8;45726:18;:32;45745:12;:10;:12::i;:::-;45726:32;;;;;;;;;;;;;;;:42;45759:8;45726:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;45832:8;45803:48;;45818:12;:10;:12::i;:::-;45803:48;;;45842:8;45803:48;;;;;;:::i;:::-;;;;;;;;45504:528;;;45944:8;45899:18;:32;45918:12;:10;:12::i;:::-;45899:32;;;;;;;;;;;;;;;:42;45932:8;45899:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;46001:8;45972:48;;45987:12;:10;:12::i;:::-;45972:48;;;46011:8;45972:48;;;;;;:::i;:::-;;;;;;;;45504:528;45333:706;;:::o;38177:58::-;;;;;;;;;;;;;;;;;;;;;;:::o;46848:311::-;46985:28;46995:4;47001:2;47005:7;46985:9;:28::i;:::-;47036:48;47059:4;47065:2;47069:7;47078:5;47036:22;:48::i;:::-;47020:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;46848:311;;;;:::o;38027:51::-;;;;;;;;;;;;;;;;;;;;;;:::o;42487:401::-;42585:13;42626:16;42634:7;42626;:16::i;:::-;42610:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;42716:21;42740:10;:8;:10::i;:::-;42716:34;;42795:1;42777:7;42771:21;:25;:111;;;;;;;;;;;;;;;;;42832:7;42840:18;:7;:16;:18::i;:::-;42815:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42771:111;42757:125;;;42487:401;;;:::o;54795:28::-;;;;:::o;51263:43::-;;;;:::o;57026:107::-;57084:7;57107:20;57121:5;57107:13;:20::i;:::-;57100:27;;57026:107;;;:::o;46102:262::-;46224:4;46253:42;46243:52;;:8;:52;;;46240:70;;;46304:4;46297:11;;;;46240:70;46323:18;:25;46342:5;46323:25;;;;;;;;;;;;;;;:35;46349:8;46323:35;;;;;;;;;;;;;;;;;;;;;;;;;46316:42;;46102:262;;;;;:::o;35362:201::-;34342:13;:11;:13::i;:::-;35471:1:::1;35451:22;;:8;:22;;;;35443:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;35527:28;35546:8;35527:18;:28::i;:::-;35362:201:::0;:::o;43482:237::-;34342:13;:11;:13::i;:::-;43599:9:::1;43594:118;43618:8;:15;43614:1;:19;43594:118;;;43693:6;43700:1;43693:9;;;;;;;;:::i;:::-;;;;;;;;43651:26;:39;43678:8;43687:1;43678:11;;;;;;;;:::i;:::-;;;;;;;;43651:39;;;;;;;;;;;;;;;;:51;;;;;;;;;;;;;;;;;;43635:3;;;;;:::i;:::-;;;;43594:118;;;;43482:237:::0;;:::o;11416:157::-;11501:4;11540:25;11525:40;;;:11;:40;;;;11518:47;;11416:157;;;:::o;47398:105::-;47455:4;47485:12;;47475:7;:22;47468:29;;47398:105;;;:::o;33007:98::-;33060:7;33087:10;33080:17;;33007:98;:::o;1260:326::-;1320:4;1577:1;1555:7;:19;;;:23;1548:30;;1260:326;;;:::o;51085:172::-;51209:2;51182:15;:24;51198:7;51182:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;51243:7;51239:2;51223:28;;51232:5;51223:28;;;;;;;;;;;;51085:172;;;:::o;49450:1529::-;49547:35;49585:20;49597:7;49585:11;:20::i;:::-;49547:58;;49614:22;49656:13;:18;;;49640:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;49709:12;:10;:12::i;:::-;49685:36;;:20;49697:7;49685:11;:20::i;:::-;:36;;;49640:81;:142;;;;49732:50;49749:13;:18;;;49769:12;:10;:12::i;:::-;49732:16;:50::i;:::-;49640:142;49614:169;;49808:17;49792:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;49940:4;49918:26;;:13;:18;;;:26;;;49902:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;50029:1;50015:16;;:2;:16;;;;50007:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;50082:43;50104:4;50110:2;50114:7;50123:1;50082:21;:43::i;:::-;50182:49;50199:1;50203:7;50212:13;:18;;;50182:8;:49::i;:::-;50270:1;50240:12;:18;50253:4;50240:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;50306:1;50278:12;:16;50291:2;50278:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;50337:43;;;;;;;;50352:2;50337:43;;;;;;50363:15;50337:43;;;;;50314:11;:20;50326:7;50314:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50608:19;50640:1;50630:7;:11;;;;:::i;:::-;50608:33;;50693:1;50652:43;;:11;:24;50664:11;50652:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;50648:236;;;50710:20;50718:11;50710:7;:20::i;:::-;50706:171;;;50770:97;;;;;;;;50797:13;:18;;;50770:97;;;;;;50828:13;:28;;;50770:97;;;;;50743:11;:24;50755:11;50743:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50706:171;50648:236;50916:7;50912:2;50897:27;;50906:4;50897:27;;;;;;;;;;;;50931:42;50952:4;50958:2;50962:7;50971:1;50931:20;:42::i;:::-;49540:1439;;;49450:1529;;;:::o;34621:132::-;34696:12;:10;:12::i;:::-;34685:23;;:7;:5;:7::i;:::-;:23;;;34677:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34621:132::o;41334:606::-;41410:21;;:::i;:::-;41451:16;41459:7;41451;:16::i;:::-;41443:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;41523:26;41571:12;41560:7;:23;41556:93;;41640:1;41625:12;41615:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;41594:47;;41556:93;41662:12;41677:7;41662:22;;41657:212;41694:18;41686:4;:26;41657:212;;41731:31;41765:11;:17;41777:4;41765:17;;;;;;;;;;;41731:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41821:1;41795:28;;:9;:14;;;:28;;;41791:71;;41843:9;41836:16;;;;;;;41791:71;41722:147;41714:6;;;;;:::i;:::-;;;;41657:212;;;;41877:57;;;;;;;;;;:::i;:::-;;;;;;;;41334:606;;;;:::o;35723:191::-;35797:16;35816:6;;;;;;;;;;;35797:25;;35842:8;35833:6;;:17;;;;;;;;;;;;;;;;;;35897:8;35866:40;;35887:8;35866:40;;;;;;;;;;;;35786:128;35723:191;:::o;19566:190::-;19691:4;19744;19715:25;19728:5;19735:4;19715:12;:25::i;:::-;:33;19708:40;;19566:190;;;;;:::o;47509:98::-;47574:27;47584:2;47588:8;47574:27;;;;;;;;;;;;:9;:27::i;:::-;47509:98;;:::o;52800:690::-;52937:4;52954:15;:2;:13;;;:15::i;:::-;52950:535;;;53009:2;52993:36;;;53030:12;:10;:12::i;:::-;53044:4;53050:7;53059:5;52993:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;52980:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53241:1;53224:6;:13;:18;53220:215;;;53257:61;;;;;;;;;;:::i;:::-;;;;;;;;53220:215;53403:6;53397:13;53388:6;53384:2;53380:15;53373:38;52980:464;53125:45;;;53115:55;;;:6;:55;;;;53108:62;;;;;52950:535;53473:4;53466:11;;52800:690;;;;;;;:::o;56806:108::-;56866:13;56895;56888:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56806:108;:::o;27502:723::-;27558:13;27788:1;27779:5;:10;27775:53;;;27806:10;;;;;;;;;;;;;;;;;;;;;27775:53;27838:12;27853:5;27838:20;;27869:14;27894:78;27909:1;27901:4;:9;27894:78;;27927:8;;;;;:::i;:::-;;;;27958:2;27950:10;;;;;:::i;:::-;;;27894:78;;;27982:19;28014:6;28004:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27982:39;;28032:154;28048:1;28039:5;:10;28032:154;;28076:1;28066:11;;;;;:::i;:::-;;;28143:2;28135:5;:10;;;;:::i;:::-;28122:2;:24;;;;:::i;:::-;28109:39;;28092:6;28099;28092:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;28172:2;28163:11;;;;;:::i;:::-;;;28032:154;;;28210:6;28196:21;;;;;27502:723;;;;:::o;41088:240::-;41149:7;41198:1;41181:19;;:5;:19;;;;41165:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;41289:12;:19;41302:5;41289:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;41281:41;;41274:48;;41088:240;;;:::o;53952:141::-;;;;;:::o;54479:140::-;;;;;:::o;20433:296::-;20516:7;20536:20;20559:4;20536:27;;20579:9;20574:118;20598:5;:12;20594:1;:16;20574:118;;;20647:33;20657:12;20671:5;20677:1;20671:8;;;;;;;;:::i;:::-;;;;;;;;20647:9;:33::i;:::-;20632:48;;20612:3;;;;;:::i;:::-;;;;20574:118;;;;20709:12;20702:19;;;20433:296;;;;:::o;47946:1272::-;48051:20;48074:12;;48051:35;;48115:1;48101:16;;:2;:16;;;;48093:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;48292:21;48300:12;48292:7;:21::i;:::-;48291:22;48283:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;48374:12;48362:8;:24;;48354:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;48434:61;48464:1;48468:2;48472:12;48486:8;48434:21;:61::i;:::-;48504:30;48537:12;:16;48550:2;48537:16;;;;;;;;;;;;;;;48504:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48579:119;;;;;;;;48629:8;48599:11;:19;;;:39;;;;:::i;:::-;48579:119;;;;;;48682:8;48647:11;:24;;;:44;;;;:::i;:::-;48579:119;;;;;48560:12;:16;48573:2;48560:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48733:43;;;;;;;;48748:2;48733:43;;;;;;48759:15;48733:43;;;;;48705:11;:25;48717:12;48705:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48785:20;48808:12;48785:35;;48834:9;48829:281;48853:8;48849:1;:12;48829:281;;;48907:12;48903:2;48882:38;;48899:1;48882:38;;;;;;;;;;;;48947:59;48978:1;48982:2;48986:12;49000:5;48947:22;:59::i;:::-;48929:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;49088:14;;;;;:::i;:::-;;;;48863:3;;;;;:::i;:::-;;;;48829:281;;;;49133:12;49118;:27;;;;49152:60;49181:1;49185:2;49189:12;49203:8;49152:20;:60::i;:::-;48044:1174;;;47946:1272;;;:::o;26640:149::-;26703:7;26734:1;26730;:5;:51;;26761:20;26776:1;26779;26761:14;:20::i;:::-;26730:51;;;26738:20;26753:1;26756;26738:14;:20::i;:::-;26730:51;26723:58;;26640:149;;;;:::o;26797:268::-;26865:13;26972:1;26966:4;26959:15;27001:1;26995:4;26988:15;27042:4;27036;27026:21;27017:30;;26797:268;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;766:713::-;859:5;884:78;900:61;954:6;900:61;:::i;:::-;884:78;:::i;:::-;875:87;;982:5;1011:6;1004:5;997:21;1045:4;1038:5;1034:16;1027:23;;1071:6;1121:3;1113:4;1105:6;1101:17;1096:3;1092:27;1089:36;1086:143;;;1140:79;;:::i;:::-;1086:143;1253:1;1238:235;1263:6;1260:1;1257:13;1238:235;;;1331:3;1360:34;1390:3;1378:10;1360:34;:::i;:::-;1355:3;1348:47;1424:4;1419:3;1415:14;1408:21;;1458:4;1453:3;1449:14;1442:21;;1298:175;1285:1;1282;1278:9;1273:14;;1238:235;;;1242:14;865:614;;766:713;;;;;:::o;1485:410::-;1562:5;1587:65;1603:48;1644:6;1603:48;:::i;:::-;1587:65;:::i;:::-;1578:74;;1675:6;1668:5;1661:21;1713:4;1706:5;1702:16;1751:3;1742:6;1737:3;1733:16;1730:25;1727:112;;;1758:79;;:::i;:::-;1727:112;1848:41;1882:6;1877:3;1872;1848:41;:::i;:::-;1568:327;1485:410;;;;;:::o;1901:139::-;1947:5;1985:6;1972:20;1963:29;;2001:33;2028:5;2001:33;:::i;:::-;1901:139;;;;:::o;2063:370::-;2134:5;2183:3;2176:4;2168:6;2164:17;2160:27;2150:122;;2191:79;;:::i;:::-;2150:122;2308:6;2295:20;2333:94;2423:3;2415:6;2408:4;2400:6;2396:17;2333:94;:::i;:::-;2324:103;;2140:293;2063:370;;;;:::o;2453:364::-;2521:5;2570:3;2563:4;2555:6;2551:17;2547:27;2537:122;;2578:79;;:::i;:::-;2537:122;2695:6;2682:20;2720:91;2807:3;2799:6;2792:4;2784:6;2780:17;2720:91;:::i;:::-;2711:100;;2527:290;2453:364;;;;:::o;2840:568::-;2913:8;2923:6;2973:3;2966:4;2958:6;2954:17;2950:27;2940:122;;2981:79;;:::i;:::-;2940:122;3094:6;3081:20;3071:30;;3124:18;3116:6;3113:30;3110:117;;;3146:79;;:::i;:::-;3110:117;3260:4;3252:6;3248:17;3236:29;;3314:3;3306:4;3298:6;3294:17;3284:8;3280:32;3277:41;3274:128;;;3321:79;;:::i;:::-;3274:128;2840:568;;;;;:::o;3414:133::-;3457:5;3495:6;3482:20;3473:29;;3511:30;3535:5;3511:30;:::i;:::-;3414:133;;;;:::o;3553:139::-;3599:5;3637:6;3624:20;3615:29;;3653:33;3680:5;3653:33;:::i;:::-;3553:139;;;;:::o;3698:137::-;3743:5;3781:6;3768:20;3759:29;;3797:32;3823:5;3797:32;:::i;:::-;3698:137;;;;:::o;3841:141::-;3897:5;3928:6;3922:13;3913:22;;3944:32;3970:5;3944:32;:::i;:::-;3841:141;;;;:::o;4001:338::-;4056:5;4105:3;4098:4;4090:6;4086:17;4082:27;4072:122;;4113:79;;:::i;:::-;4072:122;4230:6;4217:20;4255:78;4329:3;4321:6;4314:4;4306:6;4302:17;4255:78;:::i;:::-;4246:87;;4062:277;4001:338;;;;:::o;4359:553::-;4417:8;4427:6;4477:3;4470:4;4462:6;4458:17;4454:27;4444:122;;4485:79;;:::i;:::-;4444:122;4598:6;4585:20;4575:30;;4628:18;4620:6;4617:30;4614:117;;;4650:79;;:::i;:::-;4614:117;4764:4;4756:6;4752:17;4740:29;;4818:3;4810:4;4802:6;4798:17;4788:8;4784:32;4781:41;4778:128;;;4825:79;;:::i;:::-;4778:128;4359:553;;;;;:::o;4918:139::-;4964:5;5002:6;4989:20;4980:29;;5018:33;5045:5;5018:33;:::i;:::-;4918:139;;;;:::o;5063:137::-;5108:5;5146:6;5133:20;5124:29;;5162:32;5188:5;5162:32;:::i;:::-;5063:137;;;;:::o;5206:329::-;5265:6;5314:2;5302:9;5293:7;5289:23;5285:32;5282:119;;;5320:79;;:::i;:::-;5282:119;5440:1;5465:53;5510:7;5501:6;5490:9;5486:22;5465:53;:::i;:::-;5455:63;;5411:117;5206:329;;;;:::o;5541:474::-;5609:6;5617;5666:2;5654:9;5645:7;5641:23;5637:32;5634:119;;;5672:79;;:::i;:::-;5634:119;5792:1;5817:53;5862:7;5853:6;5842:9;5838:22;5817:53;:::i;:::-;5807:63;;5763:117;5919:2;5945:53;5990:7;5981:6;5970:9;5966:22;5945:53;:::i;:::-;5935:63;;5890:118;5541:474;;;;;:::o;6021:619::-;6098:6;6106;6114;6163:2;6151:9;6142:7;6138:23;6134:32;6131:119;;;6169:79;;:::i;:::-;6131:119;6289:1;6314:53;6359:7;6350:6;6339:9;6335:22;6314:53;:::i;:::-;6304:63;;6260:117;6416:2;6442:53;6487:7;6478:6;6467:9;6463:22;6442:53;:::i;:::-;6432:63;;6387:118;6544:2;6570:53;6615:7;6606:6;6595:9;6591:22;6570:53;:::i;:::-;6560:63;;6515:118;6021:619;;;;;:::o;6646:943::-;6741:6;6749;6757;6765;6814:3;6802:9;6793:7;6789:23;6785:33;6782:120;;;6821:79;;:::i;:::-;6782:120;6941:1;6966:53;7011:7;7002:6;6991:9;6987:22;6966:53;:::i;:::-;6956:63;;6912:117;7068:2;7094:53;7139:7;7130:6;7119:9;7115:22;7094:53;:::i;:::-;7084:63;;7039:118;7196:2;7222:53;7267:7;7258:6;7247:9;7243:22;7222:53;:::i;:::-;7212:63;;7167:118;7352:2;7341:9;7337:18;7324:32;7383:18;7375:6;7372:30;7369:117;;;7405:79;;:::i;:::-;7369:117;7510:62;7564:7;7555:6;7544:9;7540:22;7510:62;:::i;:::-;7500:72;;7295:287;6646:943;;;;;;;:::o;7595:468::-;7660:6;7668;7717:2;7705:9;7696:7;7692:23;7688:32;7685:119;;;7723:79;;:::i;:::-;7685:119;7843:1;7868:53;7913:7;7904:6;7893:9;7889:22;7868:53;:::i;:::-;7858:63;;7814:117;7970:2;7996:50;8038:7;8029:6;8018:9;8014:22;7996:50;:::i;:::-;7986:60;;7941:115;7595:468;;;;;:::o;8069:474::-;8137:6;8145;8194:2;8182:9;8173:7;8169:23;8165:32;8162:119;;;8200:79;;:::i;:::-;8162:119;8320:1;8345:53;8390:7;8381:6;8370:9;8366:22;8345:53;:::i;:::-;8335:63;;8291:117;8447:2;8473:53;8518:7;8509:6;8498:9;8494:22;8473:53;:::i;:::-;8463:63;;8418:118;8069:474;;;;;:::o;8549:888::-;8664:6;8672;8721:2;8709:9;8700:7;8696:23;8692:32;8689:119;;;8727:79;;:::i;:::-;8689:119;8875:1;8864:9;8860:17;8847:31;8905:18;8897:6;8894:30;8891:117;;;8927:79;;:::i;:::-;8891:117;9032:78;9102:7;9093:6;9082:9;9078:22;9032:78;:::i;:::-;9022:88;;8818:302;9187:2;9176:9;9172:18;9159:32;9218:18;9210:6;9207:30;9204:117;;;9240:79;;:::i;:::-;9204:117;9345:75;9412:7;9403:6;9392:9;9388:22;9345:75;:::i;:::-;9335:85;;9130:300;8549:888;;;;;:::o;9443:559::-;9529:6;9537;9586:2;9574:9;9565:7;9561:23;9557:32;9554:119;;;9592:79;;:::i;:::-;9554:119;9740:1;9729:9;9725:17;9712:31;9770:18;9762:6;9759:30;9756:117;;;9792:79;;:::i;:::-;9756:117;9905:80;9977:7;9968:6;9957:9;9953:22;9905:80;:::i;:::-;9887:98;;;;9683:312;9443:559;;;;;:::o;10008:329::-;10067:6;10116:2;10104:9;10095:7;10091:23;10087:32;10084:119;;;10122:79;;:::i;:::-;10084:119;10242:1;10267:53;10312:7;10303:6;10292:9;10288:22;10267:53;:::i;:::-;10257:63;;10213:117;10008:329;;;;:::o;10343:327::-;10401:6;10450:2;10438:9;10429:7;10425:23;10421:32;10418:119;;;10456:79;;:::i;:::-;10418:119;10576:1;10601:52;10645:7;10636:6;10625:9;10621:22;10601:52;:::i;:::-;10591:62;;10547:116;10343:327;;;;:::o;10676:349::-;10745:6;10794:2;10782:9;10773:7;10769:23;10765:32;10762:119;;;10800:79;;:::i;:::-;10762:119;10920:1;10945:63;11000:7;10991:6;10980:9;10976:22;10945:63;:::i;:::-;10935:73;;10891:127;10676:349;;;;:::o;11031:529::-;11102:6;11110;11159:2;11147:9;11138:7;11134:23;11130:32;11127:119;;;11165:79;;:::i;:::-;11127:119;11313:1;11302:9;11298:17;11285:31;11343:18;11335:6;11332:30;11329:117;;;11365:79;;:::i;:::-;11329:117;11478:65;11535:7;11526:6;11515:9;11511:22;11478:65;:::i;:::-;11460:83;;;;11256:297;11031:529;;;;;:::o;11566:329::-;11625:6;11674:2;11662:9;11653:7;11649:23;11645:32;11642:119;;;11680:79;;:::i;:::-;11642:119;11800:1;11825:53;11870:7;11861:6;11850:9;11846:22;11825:53;:::i;:::-;11815:63;;11771:117;11566:329;;;;:::o;11901:468::-;11966:6;11974;12023:2;12011:9;12002:7;11998:23;11994:32;11991:119;;;12029:79;;:::i;:::-;11991:119;12149:1;12174:53;12219:7;12210:6;12199:9;12195:22;12174:53;:::i;:::-;12164:63;;12120:117;12276:2;12302:50;12344:7;12335:6;12324:9;12320:22;12302:50;:::i;:::-;12292:60;;12247:115;11901:468;;;;;:::o;12375:327::-;12433:6;12482:2;12470:9;12461:7;12457:23;12453:32;12450:119;;;12488:79;;:::i;:::-;12450:119;12608:1;12633:52;12677:7;12668:6;12657:9;12653:22;12633:52;:::i;:::-;12623:62;;12579:116;12375:327;;;;:::o;12708:761::-;12792:6;12800;12808;12816;12865:3;12853:9;12844:7;12840:23;12836:33;12833:120;;;12872:79;;:::i;:::-;12833:120;12992:1;13017:52;13061:7;13052:6;13041:9;13037:22;13017:52;:::i;:::-;13007:62;;12963:116;13118:2;13144:52;13188:7;13179:6;13168:9;13164:22;13144:52;:::i;:::-;13134:62;;13089:117;13245:2;13271:53;13316:7;13307:6;13296:9;13292:22;13271:53;:::i;:::-;13261:63;;13216:118;13373:2;13399:53;13444:7;13435:6;13424:9;13420:22;13399:53;:::i;:::-;13389:63;;13344:118;12708:761;;;;;;;:::o;13475:108::-;13552:24;13570:5;13552:24;:::i;:::-;13547:3;13540:37;13475:108;;:::o;13589:118::-;13676:24;13694:5;13676:24;:::i;:::-;13671:3;13664:37;13589:118;;:::o;13713:157::-;13818:45;13838:24;13856:5;13838:24;:::i;:::-;13818:45;:::i;:::-;13813:3;13806:58;13713:157;;:::o;13876:109::-;13957:21;13972:5;13957:21;:::i;:::-;13952:3;13945:34;13876:109;;:::o;13991:118::-;14078:24;14096:5;14078:24;:::i;:::-;14073:3;14066:37;13991:118;;:::o;14115:360::-;14201:3;14229:38;14261:5;14229:38;:::i;:::-;14283:70;14346:6;14341:3;14283:70;:::i;:::-;14276:77;;14362:52;14407:6;14402:3;14395:4;14388:5;14384:16;14362:52;:::i;:::-;14439:29;14461:6;14439:29;:::i;:::-;14434:3;14430:39;14423:46;;14205:270;14115:360;;;;:::o;14481:364::-;14569:3;14597:39;14630:5;14597:39;:::i;:::-;14652:71;14716:6;14711:3;14652:71;:::i;:::-;14645:78;;14732:52;14777:6;14772:3;14765:4;14758:5;14754:16;14732:52;:::i;:::-;14809:29;14831:6;14809:29;:::i;:::-;14804:3;14800:39;14793:46;;14573:272;14481:364;;;;:::o;14851:377::-;14957:3;14985:39;15018:5;14985:39;:::i;:::-;15040:89;15122:6;15117:3;15040:89;:::i;:::-;15033:96;;15138:52;15183:6;15178:3;15171:4;15164:5;15160:16;15138:52;:::i;:::-;15215:6;15210:3;15206:16;15199:23;;14961:267;14851:377;;;;:::o;15234:366::-;15376:3;15397:67;15461:2;15456:3;15397:67;:::i;:::-;15390:74;;15473:93;15562:3;15473:93;:::i;:::-;15591:2;15586:3;15582:12;15575:19;;15234:366;;;:::o;15606:::-;15748:3;15769:67;15833:2;15828:3;15769:67;:::i;:::-;15762:74;;15845:93;15934:3;15845:93;:::i;:::-;15963:2;15958:3;15954:12;15947:19;;15606:366;;;:::o;15978:::-;16120:3;16141:67;16205:2;16200:3;16141:67;:::i;:::-;16134:74;;16217:93;16306:3;16217:93;:::i;:::-;16335:2;16330:3;16326:12;16319:19;;15978:366;;;:::o;16350:::-;16492:3;16513:67;16577:2;16572:3;16513:67;:::i;:::-;16506:74;;16589:93;16678:3;16589:93;:::i;:::-;16707:2;16702:3;16698:12;16691:19;;16350:366;;;:::o;16722:::-;16864:3;16885:67;16949:2;16944:3;16885:67;:::i;:::-;16878:74;;16961:93;17050:3;16961:93;:::i;:::-;17079:2;17074:3;17070:12;17063:19;;16722:366;;;:::o;17094:::-;17236:3;17257:67;17321:2;17316:3;17257:67;:::i;:::-;17250:74;;17333:93;17422:3;17333:93;:::i;:::-;17451:2;17446:3;17442:12;17435:19;;17094:366;;;:::o;17466:::-;17608:3;17629:67;17693:2;17688:3;17629:67;:::i;:::-;17622:74;;17705:93;17794:3;17705:93;:::i;:::-;17823:2;17818:3;17814:12;17807:19;;17466:366;;;:::o;17838:::-;17980:3;18001:67;18065:2;18060:3;18001:67;:::i;:::-;17994:74;;18077:93;18166:3;18077:93;:::i;:::-;18195:2;18190:3;18186:12;18179:19;;17838:366;;;:::o;18210:::-;18352:3;18373:67;18437:2;18432:3;18373:67;:::i;:::-;18366:74;;18449:93;18538:3;18449:93;:::i;:::-;18567:2;18562:3;18558:12;18551:19;;18210:366;;;:::o;18582:::-;18724:3;18745:67;18809:2;18804:3;18745:67;:::i;:::-;18738:74;;18821:93;18910:3;18821:93;:::i;:::-;18939:2;18934:3;18930:12;18923:19;;18582:366;;;:::o;18954:::-;19096:3;19117:67;19181:2;19176:3;19117:67;:::i;:::-;19110:74;;19193:93;19282:3;19193:93;:::i;:::-;19311:2;19306:3;19302:12;19295:19;;18954:366;;;:::o;19326:::-;19468:3;19489:67;19553:2;19548:3;19489:67;:::i;:::-;19482:74;;19565:93;19654:3;19565:93;:::i;:::-;19683:2;19678:3;19674:12;19667:19;;19326:366;;;:::o;19698:400::-;19858:3;19879:84;19961:1;19956:3;19879:84;:::i;:::-;19872:91;;19972:93;20061:3;19972:93;:::i;:::-;20090:1;20085:3;20081:11;20074:18;;19698:400;;;:::o;20104:366::-;20246:3;20267:67;20331:2;20326:3;20267:67;:::i;:::-;20260:74;;20343:93;20432:3;20343:93;:::i;:::-;20461:2;20456:3;20452:12;20445:19;;20104:366;;;:::o;20476:::-;20618:3;20639:67;20703:2;20698:3;20639:67;:::i;:::-;20632:74;;20715:93;20804:3;20715:93;:::i;:::-;20833:2;20828:3;20824:12;20817:19;;20476:366;;;:::o;20848:::-;20990:3;21011:67;21075:2;21070:3;21011:67;:::i;:::-;21004:74;;21087:93;21176:3;21087:93;:::i;:::-;21205:2;21200:3;21196:12;21189:19;;20848:366;;;:::o;21220:::-;21362:3;21383:67;21447:2;21442:3;21383:67;:::i;:::-;21376:74;;21459:93;21548:3;21459:93;:::i;:::-;21577:2;21572:3;21568:12;21561:19;;21220:366;;;:::o;21592:::-;21734:3;21755:67;21819:2;21814:3;21755:67;:::i;:::-;21748:74;;21831:93;21920:3;21831:93;:::i;:::-;21949:2;21944:3;21940:12;21933:19;;21592:366;;;:::o;21964:::-;22106:3;22127:67;22191:2;22186:3;22127:67;:::i;:::-;22120:74;;22203:93;22292:3;22203:93;:::i;:::-;22321:2;22316:3;22312:12;22305:19;;21964:366;;;:::o;22336:::-;22478:3;22499:67;22563:2;22558:3;22499:67;:::i;:::-;22492:74;;22575:93;22664:3;22575:93;:::i;:::-;22693:2;22688:3;22684:12;22677:19;;22336:366;;;:::o;22708:::-;22850:3;22871:67;22935:2;22930:3;22871:67;:::i;:::-;22864:74;;22947:93;23036:3;22947:93;:::i;:::-;23065:2;23060:3;23056:12;23049:19;;22708:366;;;:::o;23080:::-;23222:3;23243:67;23307:2;23302:3;23243:67;:::i;:::-;23236:74;;23319:93;23408:3;23319:93;:::i;:::-;23437:2;23432:3;23428:12;23421:19;;23080:366;;;:::o;23452:::-;23594:3;23615:67;23679:2;23674:3;23615:67;:::i;:::-;23608:74;;23691:93;23780:3;23691:93;:::i;:::-;23809:2;23804:3;23800:12;23793:19;;23452:366;;;:::o;23824:::-;23966:3;23987:67;24051:2;24046:3;23987:67;:::i;:::-;23980:74;;24063:93;24152:3;24063:93;:::i;:::-;24181:2;24176:3;24172:12;24165:19;;23824:366;;;:::o;24196:::-;24338:3;24359:67;24423:2;24418:3;24359:67;:::i;:::-;24352:74;;24435:93;24524:3;24435:93;:::i;:::-;24553:2;24548:3;24544:12;24537:19;;24196:366;;;:::o;24568:::-;24710:3;24731:67;24795:2;24790:3;24731:67;:::i;:::-;24724:74;;24807:93;24896:3;24807:93;:::i;:::-;24925:2;24920:3;24916:12;24909:19;;24568:366;;;:::o;25010:529::-;25171:4;25166:3;25162:14;25258:4;25251:5;25247:16;25241:23;25277:63;25334:4;25329:3;25325:14;25311:12;25277:63;:::i;:::-;25186:164;25442:4;25435:5;25431:16;25425:23;25461:61;25516:4;25511:3;25507:14;25493:12;25461:61;:::i;:::-;25360:172;25140:399;25010:529;;:::o;25545:118::-;25632:24;25650:5;25632:24;:::i;:::-;25627:3;25620:37;25545:118;;:::o;25669:115::-;25754:23;25771:5;25754:23;:::i;:::-;25749:3;25742:36;25669:115;;:::o;25790:105::-;25865:23;25882:5;25865:23;:::i;:::-;25860:3;25853:36;25790:105;;:::o;25901:256::-;26013:3;26028:75;26099:3;26090:6;26028:75;:::i;:::-;26128:2;26123:3;26119:12;26112:19;;26148:3;26141:10;;25901:256;;;;:::o;26163:701::-;26444:3;26466:95;26557:3;26548:6;26466:95;:::i;:::-;26459:102;;26578:95;26669:3;26660:6;26578:95;:::i;:::-;26571:102;;26690:148;26834:3;26690:148;:::i;:::-;26683:155;;26855:3;26848:10;;26163:701;;;;;:::o;26870:222::-;26963:4;27001:2;26990:9;26986:18;26978:26;;27014:71;27082:1;27071:9;27067:17;27058:6;27014:71;:::i;:::-;26870:222;;;;:::o;27098:640::-;27293:4;27331:3;27320:9;27316:19;27308:27;;27345:71;27413:1;27402:9;27398:17;27389:6;27345:71;:::i;:::-;27426:72;27494:2;27483:9;27479:18;27470:6;27426:72;:::i;:::-;27508;27576:2;27565:9;27561:18;27552:6;27508:72;:::i;:::-;27627:9;27621:4;27617:20;27612:2;27601:9;27597:18;27590:48;27655:76;27726:4;27717:6;27655:76;:::i;:::-;27647:84;;27098:640;;;;;;;:::o;27744:210::-;27831:4;27869:2;27858:9;27854:18;27846:26;;27882:65;27944:1;27933:9;27929:17;27920:6;27882:65;:::i;:::-;27744:210;;;;:::o;27960:222::-;28053:4;28091:2;28080:9;28076:18;28068:26;;28104:71;28172:1;28161:9;28157:17;28148:6;28104:71;:::i;:::-;27960:222;;;;:::o;28188:313::-;28301:4;28339:2;28328:9;28324:18;28316:26;;28388:9;28382:4;28378:20;28374:1;28363:9;28359:17;28352:47;28416:78;28489:4;28480:6;28416:78;:::i;:::-;28408:86;;28188:313;;;;:::o;28507:419::-;28673:4;28711:2;28700:9;28696:18;28688:26;;28760:9;28754:4;28750:20;28746:1;28735:9;28731:17;28724:47;28788:131;28914:4;28788:131;:::i;:::-;28780:139;;28507:419;;;:::o;28932:::-;29098:4;29136:2;29125:9;29121:18;29113:26;;29185:9;29179:4;29175:20;29171:1;29160:9;29156:17;29149:47;29213:131;29339:4;29213:131;:::i;:::-;29205:139;;28932:419;;;:::o;29357:::-;29523:4;29561:2;29550:9;29546:18;29538:26;;29610:9;29604:4;29600:20;29596:1;29585:9;29581:17;29574:47;29638:131;29764:4;29638:131;:::i;:::-;29630:139;;29357:419;;;:::o;29782:::-;29948:4;29986:2;29975:9;29971:18;29963:26;;30035:9;30029:4;30025:20;30021:1;30010:9;30006:17;29999:47;30063:131;30189:4;30063:131;:::i;:::-;30055:139;;29782:419;;;:::o;30207:::-;30373:4;30411:2;30400:9;30396:18;30388:26;;30460:9;30454:4;30450:20;30446:1;30435:9;30431:17;30424:47;30488:131;30614:4;30488:131;:::i;:::-;30480:139;;30207:419;;;:::o;30632:::-;30798:4;30836:2;30825:9;30821:18;30813:26;;30885:9;30879:4;30875:20;30871:1;30860:9;30856:17;30849:47;30913:131;31039:4;30913:131;:::i;:::-;30905:139;;30632:419;;;:::o;31057:::-;31223:4;31261:2;31250:9;31246:18;31238:26;;31310:9;31304:4;31300:20;31296:1;31285:9;31281:17;31274:47;31338:131;31464:4;31338:131;:::i;:::-;31330:139;;31057:419;;;:::o;31482:::-;31648:4;31686:2;31675:9;31671:18;31663:26;;31735:9;31729:4;31725:20;31721:1;31710:9;31706:17;31699:47;31763:131;31889:4;31763:131;:::i;:::-;31755:139;;31482:419;;;:::o;31907:::-;32073:4;32111:2;32100:9;32096:18;32088:26;;32160:9;32154:4;32150:20;32146:1;32135:9;32131:17;32124:47;32188:131;32314:4;32188:131;:::i;:::-;32180:139;;31907:419;;;:::o;32332:::-;32498:4;32536:2;32525:9;32521:18;32513:26;;32585:9;32579:4;32575:20;32571:1;32560:9;32556:17;32549:47;32613:131;32739:4;32613:131;:::i;:::-;32605:139;;32332:419;;;:::o;32757:::-;32923:4;32961:2;32950:9;32946:18;32938:26;;33010:9;33004:4;33000:20;32996:1;32985:9;32981:17;32974:47;33038:131;33164:4;33038:131;:::i;:::-;33030:139;;32757:419;;;:::o;33182:::-;33348:4;33386:2;33375:9;33371:18;33363:26;;33435:9;33429:4;33425:20;33421:1;33410:9;33406:17;33399:47;33463:131;33589:4;33463:131;:::i;:::-;33455:139;;33182:419;;;:::o;33607:::-;33773:4;33811:2;33800:9;33796:18;33788:26;;33860:9;33854:4;33850:20;33846:1;33835:9;33831:17;33824:47;33888:131;34014:4;33888:131;:::i;:::-;33880:139;;33607:419;;;:::o;34032:::-;34198:4;34236:2;34225:9;34221:18;34213:26;;34285:9;34279:4;34275:20;34271:1;34260:9;34256:17;34249:47;34313:131;34439:4;34313:131;:::i;:::-;34305:139;;34032:419;;;:::o;34457:::-;34623:4;34661:2;34650:9;34646:18;34638:26;;34710:9;34704:4;34700:20;34696:1;34685:9;34681:17;34674:47;34738:131;34864:4;34738:131;:::i;:::-;34730:139;;34457:419;;;:::o;34882:::-;35048:4;35086:2;35075:9;35071:18;35063:26;;35135:9;35129:4;35125:20;35121:1;35110:9;35106:17;35099:47;35163:131;35289:4;35163:131;:::i;:::-;35155:139;;34882:419;;;:::o;35307:::-;35473:4;35511:2;35500:9;35496:18;35488:26;;35560:9;35554:4;35550:20;35546:1;35535:9;35531:17;35524:47;35588:131;35714:4;35588:131;:::i;:::-;35580:139;;35307:419;;;:::o;35732:::-;35898:4;35936:2;35925:9;35921:18;35913:26;;35985:9;35979:4;35975:20;35971:1;35960:9;35956:17;35949:47;36013:131;36139:4;36013:131;:::i;:::-;36005:139;;35732:419;;;:::o;36157:::-;36323:4;36361:2;36350:9;36346:18;36338:26;;36410:9;36404:4;36400:20;36396:1;36385:9;36381:17;36374:47;36438:131;36564:4;36438:131;:::i;:::-;36430:139;;36157:419;;;:::o;36582:::-;36748:4;36786:2;36775:9;36771:18;36763:26;;36835:9;36829:4;36825:20;36821:1;36810:9;36806:17;36799:47;36863:131;36989:4;36863:131;:::i;:::-;36855:139;;36582:419;;;:::o;37007:::-;37173:4;37211:2;37200:9;37196:18;37188:26;;37260:9;37254:4;37250:20;37246:1;37235:9;37231:17;37224:47;37288:131;37414:4;37288:131;:::i;:::-;37280:139;;37007:419;;;:::o;37432:::-;37598:4;37636:2;37625:9;37621:18;37613:26;;37685:9;37679:4;37675:20;37671:1;37660:9;37656:17;37649:47;37713:131;37839:4;37713:131;:::i;:::-;37705:139;;37432:419;;;:::o;37857:::-;38023:4;38061:2;38050:9;38046:18;38038:26;;38110:9;38104:4;38100:20;38096:1;38085:9;38081:17;38074:47;38138:131;38264:4;38138:131;:::i;:::-;38130:139;;37857:419;;;:::o;38282:::-;38448:4;38486:2;38475:9;38471:18;38463:26;;38535:9;38529:4;38525:20;38521:1;38510:9;38506:17;38499:47;38563:131;38689:4;38563:131;:::i;:::-;38555:139;;38282:419;;;:::o;38707:::-;38873:4;38911:2;38900:9;38896:18;38888:26;;38960:9;38954:4;38950:20;38946:1;38935:9;38931:17;38924:47;38988:131;39114:4;38988:131;:::i;:::-;38980:139;;38707:419;;;:::o;39132:350::-;39289:4;39327:2;39316:9;39312:18;39304:26;;39340:135;39472:1;39461:9;39457:17;39448:6;39340:135;:::i;:::-;39132:350;;;;:::o;39488:222::-;39581:4;39619:2;39608:9;39604:18;39596:26;;39632:71;39700:1;39689:9;39685:17;39676:6;39632:71;:::i;:::-;39488:222;;;;:::o;39716:545::-;39889:4;39927:3;39916:9;39912:19;39904:27;;39941:69;40007:1;39996:9;39992:17;39983:6;39941:69;:::i;:::-;40020:70;40086:2;40075:9;40071:18;40062:6;40020:70;:::i;:::-;40100:72;40168:2;40157:9;40153:18;40144:6;40100:72;:::i;:::-;40182;40250:2;40239:9;40235:18;40226:6;40182:72;:::i;:::-;39716:545;;;;;;;:::o;40267:129::-;40301:6;40328:20;;:::i;:::-;40318:30;;40357:33;40385:4;40377:6;40357:33;:::i;:::-;40267:129;;;:::o;40402:75::-;40435:6;40468:2;40462:9;40452:19;;40402:75;:::o;40483:311::-;40560:4;40650:18;40642:6;40639:30;40636:56;;;40672:18;;:::i;:::-;40636:56;40722:4;40714:6;40710:17;40702:25;;40782:4;40776;40772:15;40764:23;;40483:311;;;:::o;40800:308::-;40874:4;40964:18;40956:6;40953:30;40950:56;;;40986:18;;:::i;:::-;40950:56;41036:4;41028:6;41024:17;41016:25;;41096:4;41090;41086:15;41078:23;;40800:308;;;:::o;41114:307::-;41175:4;41265:18;41257:6;41254:30;41251:56;;;41287:18;;:::i;:::-;41251:56;41325:29;41347:6;41325:29;:::i;:::-;41317:37;;41409:4;41403;41399:15;41391:23;;41114:307;;;:::o;41427:98::-;41478:6;41512:5;41506:12;41496:22;;41427:98;;;:::o;41531:99::-;41583:6;41617:5;41611:12;41601:22;;41531:99;;;:::o;41636:168::-;41719:11;41753:6;41748:3;41741:19;41793:4;41788:3;41784:14;41769:29;;41636:168;;;;:::o;41810:169::-;41894:11;41928:6;41923:3;41916:19;41968:4;41963:3;41959:14;41944:29;;41810:169;;;;:::o;41985:148::-;42087:11;42124:3;42109:18;;41985:148;;;;:::o;42139:273::-;42179:3;42198:20;42216:1;42198:20;:::i;:::-;42193:25;;42232:20;42250:1;42232:20;:::i;:::-;42227:25;;42354:1;42318:34;42314:42;42311:1;42308:49;42305:75;;;42360:18;;:::i;:::-;42305:75;42404:1;42401;42397:9;42390:16;;42139:273;;;;:::o;42418:305::-;42458:3;42477:20;42495:1;42477:20;:::i;:::-;42472:25;;42511:20;42529:1;42511:20;:::i;:::-;42506:25;;42665:1;42597:66;42593:74;42590:1;42587:81;42584:107;;;42671:18;;:::i;:::-;42584:107;42715:1;42712;42708:9;42701:16;;42418:305;;;;:::o;42729:185::-;42769:1;42786:20;42804:1;42786:20;:::i;:::-;42781:25;;42820:20;42838:1;42820:20;:::i;:::-;42815:25;;42859:1;42849:35;;42864:18;;:::i;:::-;42849:35;42906:1;42903;42899:9;42894:14;;42729:185;;;;:::o;42920:191::-;42960:4;42980:20;42998:1;42980:20;:::i;:::-;42975:25;;43014:20;43032:1;43014:20;:::i;:::-;43009:25;;43053:1;43050;43047:8;43044:34;;;43058:18;;:::i;:::-;43044:34;43103:1;43100;43096:9;43088:17;;42920:191;;;;:::o;43117:::-;43157:4;43177:20;43195:1;43177:20;:::i;:::-;43172:25;;43211:20;43229:1;43211:20;:::i;:::-;43206:25;;43250:1;43247;43244:8;43241:34;;;43255:18;;:::i;:::-;43241:34;43300:1;43297;43293:9;43285:17;;43117:191;;;;:::o;43314:96::-;43351:7;43380:24;43398:5;43380:24;:::i;:::-;43369:35;;43314:96;;;:::o;43416:90::-;43450:7;43493:5;43486:13;43479:21;43468:32;;43416:90;;;:::o;43512:77::-;43549:7;43578:5;43567:16;;43512:77;;;:::o;43595:149::-;43631:7;43671:66;43664:5;43660:78;43649:89;;43595:149;;;:::o;43750:118::-;43787:7;43827:34;43820:5;43816:46;43805:57;;43750:118;;;:::o;43874:126::-;43911:7;43951:42;43944:5;43940:54;43929:65;;43874:126;;;:::o;44006:77::-;44043:7;44072:5;44061:16;;44006:77;;;:::o;44089:93::-;44125:7;44165:10;44158:5;44154:22;44143:33;;44089:93;;;:::o;44188:101::-;44224:7;44264:18;44257:5;44253:30;44242:41;;44188:101;;;:::o;44295:154::-;44379:6;44374:3;44369;44356:30;44441:1;44432:6;44427:3;44423:16;44416:27;44295:154;;;:::o;44455:307::-;44523:1;44533:113;44547:6;44544:1;44541:13;44533:113;;;44632:1;44627:3;44623:11;44617:18;44613:1;44608:3;44604:11;44597:39;44569:2;44566:1;44562:10;44557:15;;44533:113;;;44664:6;44661:1;44658:13;44655:101;;;44744:1;44735:6;44730:3;44726:16;44719:27;44655:101;44504:258;44455:307;;;:::o;44768:171::-;44807:3;44830:24;44848:5;44830:24;:::i;:::-;44821:33;;44876:4;44869:5;44866:15;44863:41;;;44884:18;;:::i;:::-;44863:41;44931:1;44924:5;44920:13;44913:20;;44768:171;;;:::o;44945:320::-;44989:6;45026:1;45020:4;45016:12;45006:22;;45073:1;45067:4;45063:12;45094:18;45084:81;;45150:4;45142:6;45138:17;45128:27;;45084:81;45212:2;45204:6;45201:14;45181:18;45178:38;45175:84;;;45231:18;;:::i;:::-;45175:84;44996:269;44945:320;;;:::o;45271:281::-;45354:27;45376:4;45354:27;:::i;:::-;45346:6;45342:40;45484:6;45472:10;45469:22;45448:18;45436:10;45433:34;45430:62;45427:88;;;45495:18;;:::i;:::-;45427:88;45535:10;45531:2;45524:22;45314:238;45271:281;;:::o;45558:233::-;45597:3;45620:24;45638:5;45620:24;:::i;:::-;45611:33;;45666:66;45659:5;45656:77;45653:103;;;45736:18;;:::i;:::-;45653:103;45783:1;45776:5;45772:13;45765:20;;45558:233;;;:::o;45797:100::-;45836:7;45865:26;45885:5;45865:26;:::i;:::-;45854:37;;45797:100;;;:::o;45903:94::-;45942:7;45971:20;45985:5;45971:20;:::i;:::-;45960:31;;45903:94;;;:::o;46003:176::-;46035:1;46052:20;46070:1;46052:20;:::i;:::-;46047:25;;46086:20;46104:1;46086:20;:::i;:::-;46081:25;;46125:1;46115:35;;46130:18;;:::i;:::-;46115:35;46171:1;46168;46164:9;46159:14;;46003:176;;;;:::o;46185:180::-;46233:77;46230:1;46223:88;46330:4;46327:1;46320:15;46354:4;46351:1;46344:15;46371:180;46419:77;46416:1;46409:88;46516:4;46513:1;46506:15;46540:4;46537:1;46530:15;46557:180;46605:77;46602:1;46595:88;46702:4;46699:1;46692:15;46726:4;46723:1;46716:15;46743:180;46791:77;46788:1;46781:88;46888:4;46885:1;46878:15;46912:4;46909:1;46902:15;46929:180;46977:77;46974:1;46967:88;47074:4;47071:1;47064:15;47098:4;47095:1;47088:15;47115:117;47224:1;47221;47214:12;47238:117;47347:1;47344;47337:12;47361:117;47470:1;47467;47460:12;47484:117;47593:1;47590;47583:12;47607:117;47716:1;47713;47706:12;47730:117;47839:1;47836;47829:12;47853:102;47894:6;47945:2;47941:7;47936:2;47929:5;47925:14;47921:28;47911:38;;47853:102;;;:::o;47961:94::-;47994:8;48042:5;48038:2;48034:14;48013:35;;47961:94;;;:::o;48061:221::-;48201:34;48197:1;48189:6;48185:14;48178:58;48270:4;48265:2;48257:6;48253:15;48246:29;48061:221;:::o;48288:164::-;48428:16;48424:1;48416:6;48412:14;48405:40;48288:164;:::o;48458:225::-;48598:34;48594:1;48586:6;48582:14;48575:58;48667:8;48662:2;48654:6;48650:15;48643:33;48458:225;:::o;48689:229::-;48829:34;48825:1;48817:6;48813:14;48806:58;48898:12;48893:2;48885:6;48881:15;48874:37;48689:229;:::o;48924:222::-;49064:34;49060:1;49052:6;49048:14;49041:58;49133:5;49128:2;49120:6;49116:15;49109:30;48924:222;:::o;49152:224::-;49292:34;49288:1;49280:6;49276:14;49269:58;49361:7;49356:2;49348:6;49344:15;49337:32;49152:224;:::o;49382:174::-;49522:26;49518:1;49510:6;49506:14;49499:50;49382:174;:::o;49562:236::-;49702:34;49698:1;49690:6;49686:14;49679:58;49771:19;49766:2;49758:6;49754:15;49747:44;49562:236;:::o;49804:180::-;49944:32;49940:1;49932:6;49928:14;49921:56;49804:180;:::o;49990:230::-;50130:34;50126:1;50118:6;50114:14;50107:58;50199:13;50194:2;50186:6;50182:15;50175:38;49990:230;:::o;50226:168::-;50366:20;50362:1;50354:6;50350:14;50343:44;50226:168;:::o;50400:225::-;50540:34;50536:1;50528:6;50524:14;50517:58;50609:8;50604:2;50596:6;50592:15;50585:33;50400:225;:::o;50631:155::-;50771:7;50767:1;50759:6;50755:14;50748:31;50631:155;:::o;50792:182::-;50932:34;50928:1;50920:6;50916:14;50909:58;50792:182;:::o;50980:234::-;51120:34;51116:1;51108:6;51104:14;51097:58;51189:17;51184:2;51176:6;51172:15;51165:42;50980:234;:::o;51220:176::-;51360:28;51356:1;51348:6;51344:14;51337:52;51220:176;:::o;51402:237::-;51542:34;51538:1;51530:6;51526:14;51519:58;51611:20;51606:2;51598:6;51594:15;51587:45;51402:237;:::o;51645:238::-;51785:34;51781:1;51773:6;51769:14;51762:58;51854:21;51849:2;51841:6;51837:15;51830:46;51645:238;:::o;51889:179::-;52029:31;52025:1;52017:6;52013:14;52006:55;51889:179;:::o;52074:220::-;52214:34;52210:1;52202:6;52198:14;52191:58;52283:3;52278:2;52270:6;52266:15;52259:28;52074:220;:::o;52300:172::-;52440:24;52436:1;52428:6;52424:14;52417:48;52300:172;:::o;52478:231::-;52618:34;52614:1;52606:6;52602:14;52595:58;52687:14;52682:2;52674:6;52670:15;52663:39;52478:231;:::o;52715:233::-;52855:34;52851:1;52843:6;52839:14;52832:58;52924:16;52919:2;52911:6;52907:15;52900:41;52715:233;:::o;52954:234::-;53094:34;53090:1;53082:6;53078:14;53071:58;53163:17;53158:2;53150:6;53146:15;53139:42;52954:234;:::o;53194:232::-;53334:34;53330:1;53322:6;53318:14;53311:58;53403:15;53398:2;53390:6;53386:15;53379:40;53194:232;:::o;53432:221::-;53572:34;53568:1;53560:6;53556:14;53549:58;53641:4;53636:2;53628:6;53624:15;53617:29;53432:221;:::o;53659:122::-;53732:24;53750:5;53732:24;:::i;:::-;53725:5;53722:35;53712:63;;53771:1;53768;53761:12;53712:63;53659:122;:::o;53787:116::-;53857:21;53872:5;53857:21;:::i;:::-;53850:5;53847:32;53837:60;;53893:1;53890;53883:12;53837:60;53787:116;:::o;53909:122::-;53982:24;54000:5;53982:24;:::i;:::-;53975:5;53972:35;53962:63;;54021:1;54018;54011:12;53962:63;53909:122;:::o;54037:120::-;54109:23;54126:5;54109:23;:::i;:::-;54102:5;54099:34;54089:62;;54147:1;54144;54137:12;54089:62;54037:120;:::o;54163:122::-;54236:24;54254:5;54236:24;:::i;:::-;54229:5;54226:35;54216:63;;54275:1;54272;54265:12;54216:63;54163:122;:::o;54291:120::-;54363:23;54380:5;54363:23;:::i;:::-;54356:5;54353:34;54343:62;;54401:1;54398;54391:12;54343:62;54291:120;:::o

Swarm Source

ipfs://01f917682a6f5eb3bd7348ddcb72c8c107595edf97563138d16bfcbca4145513
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.