ETH Price: $3,024.75 (+2.21%)
Gas: 2 Gwei

Token

Toonverse (TOON)
 

Overview

Max Total Supply

2,222 TOON

Holders

332

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 TOON
0x372c8ff76faa14ef10dc553340a60278548dd618
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:
TOONVERSE

Compiler Version
v0.8.11+commit.d7f03943

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

// SPDX-License-Identifier: MIT
// .----------------.  .----------------.  .----------------.  .-----------------. .----------------.  .----------------.  .----------------.  .----------------.  .----------------. 
// | .--------------. || .--------------. || .--------------. || .--------------. || .--------------. || .--------------. || .--------------. || .--------------. || .--------------. |
// | |  _________   | || |     ____     | || |     ____     | || | ____  _____  | || | ____   ____  | || |  _________   | || |  _______     | || |    _______   | || |  _________   | |
// | | |  _   _  |  | || |   .'    `.   | || |   .'    `.   | || ||_   \|_   _| | || ||_  _| |_  _| | || | |_   ___  |  | || | |_   __ \    | || |   /  ___  |  | || | |_   ___  |  | |
// | | |_/ | | \_|  | || |  /  .--.  \  | || |  /  .--.  \  | || |  |   \ | |   | || |  \ \   / /   | || |   | |_  \_|  | || |   | |__) |   | || |  |  (__ \_|  | || |   | |_  \_|  | |
// | |     | |      | || |  | |    | |  | || |  | |    | |  | || |  | |\ \| |   | || |   \ \ / /    | || |   |  _|  _   | || |   |  __ /    | || |   '.___`-.   | || |   |  _|  _   | |
// | |    _| |_     | || |  \  `--'  /  | || |  \  `--'  /  | || | _| |_\   |_  | || |    \ ' /     | || |  _| |___/ |  | || |  _| |  \ \_  | || |  |`\____) |  | || |  _| |___/ |  | |
// | |   |_____|    | || |   `.____.'   | || |   `.____.'   | || ||_____|\____| | || |     \_/      | || | |_________|  | || | |____| |___| | || |  |_______.'  | || | |_________|  | |
// | |              | || |              | || |              | || |              | || |              | || |              | || |              | || |              | || |              | |
// | '--------------' || '--------------' || '--------------' || '--------------' || '--------------' || '--------------' || '--------------' || '--------------' || '--------------' |
//  '----------------'  '----------------'  '----------------'  '----------------'  '----------------'  '----------------'  '----------------'  '----------------'  '----------------' 
//2022 - © Toonverse - All Rights Reserved
//https://www.toonversestudios.com/

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/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 simultaneously proven to be a part of a merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _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}
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _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 sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     *
     * _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}.
     *
     * CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
     *
     * _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/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: contracts/ERC721A.sol



pragma solidity ^0.8.0;












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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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


    pragma solidity^0.8.11;



    contract TOONVERSE is ERC721A, Ownable {
    using Strings for uint256;

    uint256 public COST = 0.038 ether;
    uint256 public MAX_SUPPLY = 6666;
    uint256 public  immutable MAX_MINT_AMOUNT = 50;
    string public BASE_URI ="https://toonverse.s3.amazonaws.com/";
    string public BASE_EXTENSION = ".json";
    string public NOT_REVEALED_URI= "https://toonverse.s3.amazonaws.com/notRevealed.json";
    bool public PAUSED = true;
    bool public REVEALED = false;

    address public OWNER_AUX = 0x1BcCe17ea705d2a9f09993F8aD7ae3e6a68e1281;
    address public DEV = 0x4538C3d93FfdE7677EF66aB548a4Dd7f39eca785; 
    address public PARTNER =0x11A7D4E65E2086429113658A650e18F126FB4AA0; 

    bytes32 public WHITELIST_MERKLE_ROOT = 0xacbeb311676f565667659156a2922c108ca8dd671396506659566ef845490043;
    mapping(address => bool) public WHITELIST_CLAIMED;
    bool public IS_WHITELIST_ONLY = true;


    constructor() ERC721A("Toonverse", "TOON",MAX_SUPPLY,MAX_MINT_AMOUNT) {
        _safeMint(OWNER_AUX,50);
        _safeMint(PARTNER,50);
        _safeMint(DEV,10);

    }


        modifier onlyDev() {
            require(msg.sender == DEV, 'Only Dev');
            _;
        }


        modifier onlyPartner() {
            require(msg.sender == PARTNER, 'Only PARTNER');
            _;
        }

        modifier mintChecks(uint256 _mintAmount) {
        require(_mintAmount > 0, "Mint amount has to be greater than 0.");
        require(totalSupply() + _mintAmount <= MAX_SUPPLY, "Minting that many would go over whats available.");
            _;
        }

    function setWhiteListMerkleRoot(bytes32 _wl) public onlyOwner {
            WHITELIST_MERKLE_ROOT = _wl;
        }

    function setWhiteListOnly(bool _b) public onlyOwner {
            IS_WHITELIST_ONLY = _b;
        }
    
    function mint(uint256 _mintAmount) public payable  mintChecks(_mintAmount)  {
            if(msg.sender!= owner()){
            checkIfPaused();
            require(_mintAmount<= MAX_MINT_AMOUNT, "Can not exceed max mint amount.");
            require(!IS_WHITELIST_ONLY,"Only whitelist can mint right now.");
            require(msg.value >= COST * _mintAmount, "Not Enough Eth Sent.");
            teamMint(msg.value);
                if(_mintAmount >= 3){
                _mintAmount = _mintAmount * 2;
                _safeMint(msg.sender,_mintAmount);
                }else{
                 _safeMint(msg.sender,_mintAmount);
                 }
            }else{
                 _safeMint(msg.sender,_mintAmount);

            }
    }


    function mintWhiteList(bytes32[] calldata _merkleProof,uint256 _mintAmount) public payable  mintChecks(_mintAmount)  {
            if(msg.sender!= owner()){
            checkIfPaused();
            require(_mintAmount<= MAX_MINT_AMOUNT, "Can not exceed max mint amount.");
            require(IS_WHITELIST_ONLY,"Whitelist no longer available.");   
            require(!WHITELIST_CLAIMED[msg.sender],"Address has already claimed");
            bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
            require(MerkleProof.verify(_merkleProof,WHITELIST_MERKLE_ROOT,leaf),"Invalid Proof");
            require(msg.value >= COST * _mintAmount, "Not Enough Eth Sent.");
            teamMint(msg.value);

                if(_mintAmount >= 3){
                _mintAmount = _mintAmount * 2;
                _safeMint(msg.sender,_mintAmount);
                WHITELIST_CLAIMED[msg.sender]=true;

                }else{
                 _safeMint(msg.sender,_mintAmount);
                 WHITELIST_CLAIMED[msg.sender]=true;

                 } 
            }else{
                _safeMint(msg.sender,_mintAmount);
                  }
    }

    function tokenURI(uint256 _tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
        _exists(_tokenId),
        "ERC721Metadata: URI query for nonexistent token"
        );
        
        if(REVEALED == false) {
            return NOT_REVEALED_URI;
        }

        return bytes(BASE_URI).length > 0
            ? string(abi.encodePacked(BASE_URI, (_tokenId).toString(), BASE_EXTENSION))
            : "";
    }

    function setRevealed(bool _b) public onlyOwner {
        REVEALED = _b;
    }
    
    function setCost(uint256 _newCost) public onlyOwner {
        COST = _newCost;
    }

    
    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        NOT_REVEALED_URI = _notRevealedURI;
    }

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

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

    function setPaused(bool _state) public onlyOwner {
        PAUSED = _state;
    }
    
    function setDev(address _address) public onlyDev {
        DEV = _address;
    }

    function setPartner(address _address) public onlyPartner {
        PARTNER = _address;
    }

    function setOwnerAux(address _address) public onlyOwner {
        OWNER_AUX = _address;
    }


    function checkIfPaused() private view  {
        require(!PAUSED,"Contract currently PAUSED.");
    }    
    
    function withdraw(uint256 _amount) public payable onlyOwner {
        
        //Dev 2%         
            uint256 devFee = _amount /50; 
            (bool devBool, ) = payable(DEV).call{value: devFee}("");
            require(devBool);

        //Partner 20%
            uint256 partnerFee = _amount * 1/ 5;
            (bool partnerBool, ) = payable(PARTNER).call{value: partnerFee}("");
            require(partnerBool);

        //Rest goes to Owner of Contract
            uint256 result = _amount - partnerFee - devFee;
            (bool resultBool, ) = payable(owner()).call{value: result}("");
            require(resultBool);    
    }

    function teamMint(uint256 _ethAmount) internal   {
            
            //.04 Dev 
            uint256 devFee = _ethAmount /25; 
            (bool devBool, ) = payable(DEV).call{value: devFee}("");
            require(devBool);

            //.07 Partner
            uint256 partnerFee = _ethAmount * 7/ 100;
            (bool partnerBool, ) = payable(PARTNER).call{value: partnerFee}("");
            require(partnerBool);

            //Rest goes to contract AUX wallet
            uint256 result = _ethAmount - partnerFee - devFee;
            (bool resultBool, ) = payable(OWNER_AUX).call{value: result}("");
            require(resultBool);    
            
            }

  
    }

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BASE_EXTENSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BASE_URI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEV","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"IS_WHITELIST_ONLY","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NOT_REVEALED_URI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OWNER_AUX","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PARTNER","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSED","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REVEALED","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"WHITELIST_CLAIMED","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_MERKLE_ROOT","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":[{"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":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintWhiteList","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setDev","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setOwnerAux","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setPartner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_b","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_wl","type":"bytes32"}],"name":"setWhiteListMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_b","type":"bool"}],"name":"setWhiteListOnly","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60e0604052600080556000600755668700cc75770000600955611a0a600a55603260c09081525060405180606001604052806023815260200162006d5460239139600b90805190602001906200005792919062000c37565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c9080519060200190620000a592919062000c37565b5060405180606001604052806033815260200162006d7760339139600d9080519060200190620000d792919062000c37565b506001600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff021916908315150217905550731bcce17ea705d2a9f09993f8ad7ae3e6a68e1281600e60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550734538c3d93ffde7677ef66ab548a4dd7f39eca785600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507311a7d4e65e2086429113658a650e18f126fb4aa0601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507facbeb311676f565667659156a2922c108ca8dd671396506659566ef84549004360001b6011556001601360006101000a81548160ff0219169083151502179055503480156200025c57600080fd5b506040518060400160405280600981526020017f546f6f6e766572736500000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f544f4f4e00000000000000000000000000000000000000000000000000000000815250600a5460c0516000811162000315576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200030c9062000d6e565b60405180910390fd5b600082116200035b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003529062000e06565b60405180910390fd5b83600190805190602001906200037392919062000c37565b5082600290805190602001906200038c92919062000c37565b508160a08181525050806080818152505050505050620003c1620003b56200046660201b60201c565b6200046e60201b60201c565b620003f6600e60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660326200053460201b60201c565b6200042b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660326200053460201b60201c565b62000460600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a6200053460201b60201c565b62001399565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620005568282604051806020016040528060008152506200055a60201b60201c565b5050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415620005d3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005ca9062000e9e565b60405180910390fd5b620005e48162000a5160201b60201c565b1562000627576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200061e9062000f10565b60405180910390fd5b60a0518311156200066f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006669062000fa8565b60405180910390fd5b62000684600085838662000a5e60201b60201c565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015162000783919062001015565b6fffffffffffffffffffffffffffffffff168152602001858360200151620007ac919062001015565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101562000a2c57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4620009c4600088848862000a6460201b60201c565b62000a06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009fd90620010d8565b60405180910390fd5b818062000a139062001104565b925050808062000a239062001104565b9150506200094a565b508060008190555062000a49600087858862000c0e60201b60201c565b505050505050565b6000805482109050919050565b50505050565b600062000a928473ffffffffffffffffffffffffffffffffffffffff1662000c1460201b620025011760201c565b1562000c01578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0262000ac46200046660201b60201c565b8786866040518563ffffffff1660e01b815260040162000ae894939291906200124c565b6020604051808303816000875af192505050801562000b2757506040513d601f19601f8201168201806040525081019062000b24919062001302565b60015b62000bb0573d806000811462000b5a576040519150601f19603f3d011682016040523d82523d6000602084013e62000b5f565b606091505b5060008151141562000ba8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b9f90620010d8565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000c06565b600190505b949350505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805462000c459062001363565b90600052602060002090601f01602090048101928262000c69576000855562000cb5565b82601f1062000c8457805160ff191683800117855562000cb5565b8280016001018555821562000cb5579182015b8281111562000cb457825182559160200191906001019062000c97565b5b50905062000cc4919062000cc8565b5090565b5b8082111562000ce357600081600090555060010162000cc9565b5090565b600082825260208201905092915050565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b600062000d56602e8362000ce7565b915062000d638262000cf8565b604082019050919050565b6000602082019050818103600083015262000d898162000d47565b9050919050565b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b600062000dee60278362000ce7565b915062000dfb8262000d90565b604082019050919050565b6000602082019050818103600083015262000e218162000ddf565b9050919050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600062000e8660218362000ce7565b915062000e938262000e28565b604082019050919050565b6000602082019050818103600083015262000eb98162000e77565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b600062000ef8601d8362000ce7565b915062000f058262000ec0565b602082019050919050565b6000602082019050818103600083015262000f2b8162000ee9565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b600062000f9060228362000ce7565b915062000f9d8262000f32565b604082019050919050565b6000602082019050818103600083015262000fc38162000f81565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620010228262000fca565b91506200102f8362000fca565b9250826fffffffffffffffffffffffffffffffff0382111562001057576200105662000fe6565b5b828201905092915050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000620010c060338362000ce7565b9150620010cd8262001062565b604082019050919050565b60006020820190508181036000830152620010f381620010b1565b9050919050565b6000819050919050565b60006200111182620010fa565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562001147576200114662000fe6565b5b600182019050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200117f8262001152565b9050919050565b620011918162001172565b82525050565b620011a281620010fa565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b83811015620011e4578082015181840152602081019050620011c7565b83811115620011f4576000848401525b50505050565b6000601f19601f8301169050919050565b60006200121882620011a8565b620012248185620011b3565b935062001236818560208601620011c4565b6200124181620011fa565b840191505092915050565b600060808201905062001263600083018762001186565b62001272602083018662001186565b62001281604083018562001197565b81810360608301526200129581846200120b565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b620012dc81620012a5565b8114620012e857600080fd5b50565b600081519050620012fc81620012d1565b92915050565b6000602082840312156200131b576200131a620012a0565b5b60006200132b84828501620012eb565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200137c57607f821691505b6020821081141562001393576200139262001334565b5b50919050565b60805160a05160c051615972620013e2600039600081816116b601528181611f8401526124df015260008181612ce001528181612d0901526135ac0152600050506159726000f3fe6080604052600436106102935760003560e01c8063a16d59601161015a578063da3ef23f116100c1578063e985e9c51161007a578063e985e9c5146109d7578063ebebcf3d14610a14578063ed99e1e214610a3f578063f2c4ce1e14610a6a578063f2fde38b14610a93578063fa9b701814610abc57610293565b8063da3ef23f146108ea578063dbddb26a14610913578063df3fdf001461093e578063e08e65ea14610969578063e0a6bf8f14610992578063e0a80853146109ae57610293565b8063bda72f6f11610113578063bda72f6f146107d8578063bf8fbbd214610803578063c1eb5ddd1461082e578063c87b56dd14610859578063d477f05f14610896578063d7224ba0146108bf57610293565b8063a16d5960146106dc578063a22cb46514610705578063a664eb901461072e578063a76a958714610759578063a9aad58c14610784578063b88d4fde146107af57610293565b806344a0d68a116101fe57806389f57074116101b757806389f57074146105d95780638da5cb5b14610616578063918dbcab1461064157806395d89b411461066a5780639b3ff5f914610695578063a0712d68146106c057610293565b806344a0d68a146104b95780634f6ccce7146104e257806355f804b31461051f5780636352211e1461054857806370a0823114610585578063715018a6146105c257610293565b806323b872dd1161025057806323b872dd146103ba5780632c572874146103e35780632e1a7d4d1461040c5780632f745c591461042857806332cb6b0c1461046557806342842e0e1461049057610293565b806301ffc9a71461029857806306fdde03146102d5578063081812fc14610300578063095ea7b31461033d57806316c38b3c1461036657806318160ddd1461038f575b600080fd5b3480156102a457600080fd5b506102bf60048036038101906102ba9190613bab565b610ae7565b6040516102cc9190613bf3565b60405180910390f35b3480156102e157600080fd5b506102ea610c31565b6040516102f79190613ca7565b60405180910390f35b34801561030c57600080fd5b5061032760048036038101906103229190613cff565b610cc3565b6040516103349190613d6d565b60405180910390f35b34801561034957600080fd5b50610364600480360381019061035f9190613db4565b610d48565b005b34801561037257600080fd5b5061038d60048036038101906103889190613e20565b610e61565b005b34801561039b57600080fd5b506103a4610e86565b6040516103b19190613e5c565b60405180910390f35b3480156103c657600080fd5b506103e160048036038101906103dc9190613e77565b610e8f565b005b3480156103ef57600080fd5b5061040a60048036038101906104059190613eca565b610e9f565b005b61042660048036038101906104219190613cff565b610eeb565b005b34801561043457600080fd5b5061044f600480360381019061044a9190613db4565b6110f2565b60405161045c9190613e5c565b60405180910390f35b34801561047157600080fd5b5061047a6112f0565b6040516104879190613e5c565b60405180910390f35b34801561049c57600080fd5b506104b760048036038101906104b29190613e77565b6112f6565b005b3480156104c557600080fd5b506104e060048036038101906104db9190613cff565b611316565b005b3480156104ee57600080fd5b5061050960048036038101906105049190613cff565b611328565b6040516105169190613e5c565b60405180910390f35b34801561052b57600080fd5b506105466004803603810190610541919061402c565b61137b565b005b34801561055457600080fd5b5061056f600480360381019061056a9190613cff565b61139d565b60405161057c9190613d6d565b60405180910390f35b34801561059157600080fd5b506105ac60048036038101906105a79190613eca565b6113b3565b6040516105b99190613e5c565b60405180910390f35b3480156105ce57600080fd5b506105d761149c565b005b3480156105e557600080fd5b5061060060048036038101906105fb9190613eca565b6114b0565b60405161060d9190613bf3565b60405180910390f35b34801561062257600080fd5b5061062b6114d0565b6040516106389190613d6d565b60405180910390f35b34801561064d57600080fd5b5061066860048036038101906106639190613e20565b6114fa565b005b34801561067657600080fd5b5061067f61151f565b60405161068c9190613ca7565b60405180910390f35b3480156106a157600080fd5b506106aa6115b1565b6040516106b79190613d6d565b60405180910390f35b6106da60048036038101906106d59190613cff565b6115d7565b005b3480156106e857600080fd5b5061070360048036038101906106fe9190613eca565b611805565b005b34801561071157600080fd5b5061072c60048036038101906107279190614075565b6118d9565b005b34801561073a57600080fd5b50610743611a5a565b60405161075091906140ce565b60405180910390f35b34801561076557600080fd5b5061076e611a60565b60405161077b9190613bf3565b60405180910390f35b34801561079057600080fd5b50610799611a73565b6040516107a69190613bf3565b60405180910390f35b3480156107bb57600080fd5b506107d660048036038101906107d1919061418a565b611a86565b005b3480156107e457600080fd5b506107ed611ae2565b6040516107fa9190613bf3565b60405180910390f35b34801561080f57600080fd5b50610818611af5565b6040516108259190613e5c565b60405180910390f35b34801561083a57600080fd5b50610843611afb565b6040516108509190613d6d565b60405180910390f35b34801561086557600080fd5b50610880600480360381019061087b9190613cff565b611b21565b60405161088d9190613ca7565b60405180910390f35b3480156108a257600080fd5b506108bd60048036038101906108b89190613eca565b611c7b565b005b3480156108cb57600080fd5b506108d4611d4f565b6040516108e19190613e5c565b60405180910390f35b3480156108f657600080fd5b50610911600480360381019061090c919061402c565b611d55565b005b34801561091f57600080fd5b50610928611d77565b6040516109359190613ca7565b60405180910390f35b34801561094a57600080fd5b50610953611e05565b6040516109609190613ca7565b60405180910390f35b34801561097557600080fd5b50610990600480360381019061098b9190614239565b611e93565b005b6109ac60048036038101906109a791906142c6565b611ea5565b005b3480156109ba57600080fd5b506109d560048036038101906109d09190613e20565b6122ca565b005b3480156109e357600080fd5b506109fe60048036038101906109f99190614326565b6122ef565b604051610a0b9190613bf3565b60405180910390f35b348015610a2057600080fd5b50610a29612383565b604051610a369190613d6d565b60405180910390f35b348015610a4b57600080fd5b50610a546123a9565b604051610a619190613ca7565b60405180910390f35b348015610a7657600080fd5b50610a916004803603810190610a8c919061402c565b612437565b005b348015610a9f57600080fd5b50610aba6004803603810190610ab59190613eca565b612459565b005b348015610ac857600080fd5b50610ad16124dd565b604051610ade9190613e5c565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bb257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c1a57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c2a5750610c2982612524565b5b9050919050565b606060018054610c4090614395565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6c90614395565b8015610cb95780601f10610c8e57610100808354040283529160200191610cb9565b820191906000526020600020905b815481529060010190602001808311610c9c57829003601f168201915b5050505050905090565b6000610cce8261258e565b610d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0490614439565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d538261139d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbb906144cb565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610de361259b565b73ffffffffffffffffffffffffffffffffffffffff161480610e125750610e1181610e0c61259b565b6122ef565b5b610e51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e489061455d565b60405180910390fd5b610e5c8383836125a3565b505050565b610e69612655565b80600e60006101000a81548160ff02191690831515021790555050565b60008054905090565b610e9a8383836126d3565b505050565b610ea7612655565b80600e60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610ef3612655565b6000603282610f0291906145db565b90506000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610f4c9061463d565b60006040518083038185875af1925050503d8060008114610f89576040519150601f19603f3d011682016040523d82523d6000602084013e610f8e565b606091505b5050905080610f9c57600080fd5b60006005600185610fad9190614652565b610fb791906145db565b90506000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516110019061463d565b60006040518083038185875af1925050503d806000811461103e576040519150601f19603f3d011682016040523d82523d6000602084013e611043565b606091505b505090508061105157600080fd5b600084838761106091906146ac565b61106a91906146ac565b905060006110766114d0565b73ffffffffffffffffffffffffffffffffffffffff16826040516110999061463d565b60006040518083038185875af1925050503d80600081146110d6576040519150601f19603f3d011682016040523d82523d6000602084013e6110db565b606091505b50509050806110e957600080fd5b50505050505050565b60006110fd836113b3565b821061113e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113590614752565b60405180910390fd5b6000611148610e86565b905060008060005b838110156112ae576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461124257806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561129a578684141561128b5781955050505050506112ea565b838061129690614772565b9450505b5080806112a690614772565b915050611150565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e19061482d565b60405180910390fd5b92915050565b600a5481565b61131183838360405180602001604052806000815250611a86565b505050565b61131e612655565b8060098190555050565b6000611332610e86565b8210611373576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136a906148bf565b60405180910390fd5b819050919050565b611383612655565b80600b9080519060200190611399929190613a62565b5050565b60006113a882612c8c565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611424576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141b90614951565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6114a4612655565b6114ae6000612e8f565b565b60126020528060005260406000206000915054906101000a900460ff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611502612655565b80601360006101000a81548160ff02191690831515021790555050565b60606002805461152e90614395565b80601f016020809104026020016040519081016040528092919081815260200182805461155a90614395565b80156115a75780601f1061157c576101008083540402835291602001916115a7565b820191906000526020600020905b81548152906001019060200180831161158a57829003601f168201915b5050505050905090565b600e60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b806000811161161b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611612906149e3565b60405180910390fd5b600a5481611627610e86565b6116319190614a03565b1115611672576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166990614acb565b60405180910390fd5b61167a6114d0565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146117f6576116b4612f55565b7f0000000000000000000000000000000000000000000000000000000000000000821115611717576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170e90614b37565b60405180910390fd5b601360009054906101000a900460ff1615611767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175e90614bc9565b60405180910390fd5b816009546117759190614652565b3410156117b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ae90614c35565b60405180910390fd5b6117c034612fa7565b600382106117e6576002826117d59190614652565b91506117e133836131c1565b6117f1565b6117f033836131c1565b5b611801565b61180033836131c1565b5b5050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611895576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188c90614ca1565b60405180910390fd5b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6118e161259b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561194f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194690614d0d565b60405180910390fd5b806006600061195c61259b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a0961259b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a4e9190613bf3565b60405180910390a35050565b60115481565b600e60019054906101000a900460ff1681565b600e60009054906101000a900460ff1681565b611a918484846126d3565b611a9d848484846131df565b611adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad390614d9f565b60405180910390fd5b50505050565b601360009054906101000a900460ff1681565b60095481565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060611b2c8261258e565b611b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6290614e31565b60405180910390fd5b60001515600e60019054906101000a900460ff1615151415611c1957600d8054611b9490614395565b80601f0160208091040260200160405190810160405280929190818152602001828054611bc090614395565b8015611c0d5780601f10611be257610100808354040283529160200191611c0d565b820191906000526020600020905b815481529060010190602001808311611bf057829003601f168201915b50505050509050611c76565b6000600b8054611c2890614395565b905011611c445760405180602001604052806000815250611c73565b600b611c4f83613367565b600c604051602001611c6393929190614f21565b6040516020818303038152906040525b90505b919050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611d0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0290614f9e565b60405180910390fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60075481565b611d5d612655565b80600c9080519060200190611d73929190613a62565b5050565b600b8054611d8490614395565b80601f0160208091040260200160405190810160405280929190818152602001828054611db090614395565b8015611dfd5780601f10611dd257610100808354040283529160200191611dfd565b820191906000526020600020905b815481529060010190602001808311611de057829003601f168201915b505050505081565b600c8054611e1290614395565b80601f0160208091040260200160405190810160405280929190818152602001828054611e3e90614395565b8015611e8b5780601f10611e6057610100808354040283529160200191611e8b565b820191906000526020600020905b815481529060010190602001808311611e6e57829003601f168201915b505050505081565b611e9b612655565b8060118190555050565b8060008111611ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee0906149e3565b60405180910390fd5b600a5481611ef5610e86565b611eff9190614a03565b1115611f40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3790614acb565b60405180910390fd5b611f486114d0565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146122b957611f82612f55565b7f0000000000000000000000000000000000000000000000000000000000000000821115611fe5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdc90614b37565b60405180910390fd5b601360009054906101000a900460ff16612034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202b9061500a565b60405180910390fd5b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156120c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b890615076565b60405180910390fd5b6000336040516020016120d491906150de565b60405160208183030381529060405280519060200120905061213a858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050601154836134c8565b612179576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217090615145565b60405180910390fd5b826009546121879190614652565b3410156121c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c090614c35565b60405180910390fd5b6121d234612fa7565b60038310612250576002836121e79190614652565b92506121f333846131c1565b6001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506122b3565b61225a33846131c1565b6001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b506122c4565b6122c333836131c1565b5b50505050565b6122d2612655565b80600e60016101000a81548160ff02191690831515021790555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d80546123b690614395565b80601f01602080910402602001604051908101604052809291908181526020018280546123e290614395565b801561242f5780601f106124045761010080835404028352916020019161242f565b820191906000526020600020905b81548152906001019060200180831161241257829003601f168201915b505050505081565b61243f612655565b80600d9080519060200190612455929190613a62565b5050565b612461612655565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c8906151d7565b60405180910390fd5b6124da81612e8f565b50565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61265d61259b565b73ffffffffffffffffffffffffffffffffffffffff1661267b6114d0565b73ffffffffffffffffffffffffffffffffffffffff16146126d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c890615243565b60405180910390fd5b565b60006126de82612c8c565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661270561259b565b73ffffffffffffffffffffffffffffffffffffffff161480612761575061272a61259b565b73ffffffffffffffffffffffffffffffffffffffff1661274984610cc3565b73ffffffffffffffffffffffffffffffffffffffff16145b8061277d575061277c826000015161277761259b565b6122ef565b5b9050806127bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b6906152d5565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612831576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282890615367565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156128a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612898906153f9565b60405180910390fd5b6128ae85858560016134df565b6128be60008484600001516125a3565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661292c9190615435565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166129d09190615469565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184612ad69190614a03565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612c1c57612b4c8161258e565b15612c1b576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c8486868660016134e5565b505050505050565b612c94613ae8565b612c9d8261258e565b612cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd390615521565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008310612d405760017f000000000000000000000000000000000000000000000000000000000000000084612d3391906146ac565b612d3d9190614a03565b90505b60008390505b818110612e4e576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612e3a57809350505050612e8a565b508080612e4690615541565b915050612d46565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e81906155dd565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600e60009054906101000a900460ff1615612fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9c90615649565b60405180910390fd5b565b6000601982612fb691906145db565b90506000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516130009061463d565b60006040518083038185875af1925050503d806000811461303d576040519150601f19603f3d011682016040523d82523d6000602084013e613042565b606091505b505090508061305057600080fd5b600060646007856130619190614652565b61306b91906145db565b90506000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516130b59061463d565b60006040518083038185875af1925050503d80600081146130f2576040519150601f19603f3d011682016040523d82523d6000602084013e6130f7565b606091505b505090508061310557600080fd5b600084838761311491906146ac565b61311e91906146ac565b90506000600e60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516131689061463d565b60006040518083038185875af1925050503d80600081146131a5576040519150601f19603f3d011682016040523d82523d6000602084013e6131aa565b606091505b50509050806131b857600080fd5b50505050505050565b6131db8282604051806020016040528060008152506134eb565b5050565b60006132008473ffffffffffffffffffffffffffffffffffffffff16612501565b1561335a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261322961259b565b8786866040518563ffffffff1660e01b815260040161324b94939291906156be565b6020604051808303816000875af192505050801561328757506040513d601f19601f82011682018060405250810190613284919061571f565b60015b61330a573d80600081146132b7576040519150601f19603f3d011682016040523d82523d6000602084013e6132bc565b606091505b50600081511415613302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f990614d9f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061335f565b600190505b949350505050565b606060008214156133af576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506134c3565b600082905060005b600082146133e15780806133ca90614772565b915050600a826133da91906145db565b91506133b7565b60008167ffffffffffffffff8111156133fd576133fc613f01565b5b6040519080825280601f01601f19166020018201604052801561342f5781602001600182028036833780820191505090505b5090505b600085146134bc5760018261344891906146ac565b9150600a85613457919061574c565b60306134639190614a03565b60f81b8183815181106134795761347861577d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856134b591906145db565b9450613433565b8093505050505b919050565b6000826134d585846139ca565b1490509392505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613561576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135589061581e565b60405180910390fd5b61356a8161258e565b156135aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135a19061588a565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000083111561360d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136049061591c565b60405180910390fd5b61361a60008583866134df565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516137179190615469565b6fffffffffffffffffffffffffffffffff16815260200185836020015161373e9190615469565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156139ad57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461394d60008884886131df565b61398c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161398390614d9f565b60405180910390fd5b818061399790614772565b92505080806139a590614772565b9150506138dc565b50806000819055506139c260008785886134e5565b505050505050565b60008082905060005b8451811015613a1557613a00828683815181106139f3576139f261577d565b5b6020026020010151613a20565b91508080613a0d90614772565b9150506139d3565b508091505092915050565b6000818310613a3857613a338284613a4b565b613a43565b613a428383613a4b565b5b905092915050565b600082600052816020526040600020905092915050565b828054613a6e90614395565b90600052602060002090601f016020900481019282613a905760008555613ad7565b82601f10613aa957805160ff1916838001178555613ad7565b82800160010185558215613ad7579182015b82811115613ad6578251825591602001919060010190613abb565b5b509050613ae49190613b22565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613b3b576000816000905550600101613b23565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613b8881613b53565b8114613b9357600080fd5b50565b600081359050613ba581613b7f565b92915050565b600060208284031215613bc157613bc0613b49565b5b6000613bcf84828501613b96565b91505092915050565b60008115159050919050565b613bed81613bd8565b82525050565b6000602082019050613c086000830184613be4565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613c48578082015181840152602081019050613c2d565b83811115613c57576000848401525b50505050565b6000601f19601f8301169050919050565b6000613c7982613c0e565b613c838185613c19565b9350613c93818560208601613c2a565b613c9c81613c5d565b840191505092915050565b60006020820190508181036000830152613cc18184613c6e565b905092915050565b6000819050919050565b613cdc81613cc9565b8114613ce757600080fd5b50565b600081359050613cf981613cd3565b92915050565b600060208284031215613d1557613d14613b49565b5b6000613d2384828501613cea565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d5782613d2c565b9050919050565b613d6781613d4c565b82525050565b6000602082019050613d826000830184613d5e565b92915050565b613d9181613d4c565b8114613d9c57600080fd5b50565b600081359050613dae81613d88565b92915050565b60008060408385031215613dcb57613dca613b49565b5b6000613dd985828601613d9f565b9250506020613dea85828601613cea565b9150509250929050565b613dfd81613bd8565b8114613e0857600080fd5b50565b600081359050613e1a81613df4565b92915050565b600060208284031215613e3657613e35613b49565b5b6000613e4484828501613e0b565b91505092915050565b613e5681613cc9565b82525050565b6000602082019050613e716000830184613e4d565b92915050565b600080600060608486031215613e9057613e8f613b49565b5b6000613e9e86828701613d9f565b9350506020613eaf86828701613d9f565b9250506040613ec086828701613cea565b9150509250925092565b600060208284031215613ee057613edf613b49565b5b6000613eee84828501613d9f565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613f3982613c5d565b810181811067ffffffffffffffff82111715613f5857613f57613f01565b5b80604052505050565b6000613f6b613b3f565b9050613f778282613f30565b919050565b600067ffffffffffffffff821115613f9757613f96613f01565b5b613fa082613c5d565b9050602081019050919050565b82818337600083830152505050565b6000613fcf613fca84613f7c565b613f61565b905082815260208101848484011115613feb57613fea613efc565b5b613ff6848285613fad565b509392505050565b600082601f83011261401357614012613ef7565b5b8135614023848260208601613fbc565b91505092915050565b60006020828403121561404257614041613b49565b5b600082013567ffffffffffffffff8111156140605761405f613b4e565b5b61406c84828501613ffe565b91505092915050565b6000806040838503121561408c5761408b613b49565b5b600061409a85828601613d9f565b92505060206140ab85828601613e0b565b9150509250929050565b6000819050919050565b6140c8816140b5565b82525050565b60006020820190506140e360008301846140bf565b92915050565b600067ffffffffffffffff82111561410457614103613f01565b5b61410d82613c5d565b9050602081019050919050565b600061412d614128846140e9565b613f61565b90508281526020810184848401111561414957614148613efc565b5b614154848285613fad565b509392505050565b600082601f83011261417157614170613ef7565b5b813561418184826020860161411a565b91505092915050565b600080600080608085870312156141a4576141a3613b49565b5b60006141b287828801613d9f565b94505060206141c387828801613d9f565b93505060406141d487828801613cea565b925050606085013567ffffffffffffffff8111156141f5576141f4613b4e565b5b6142018782880161415c565b91505092959194509250565b614216816140b5565b811461422157600080fd5b50565b6000813590506142338161420d565b92915050565b60006020828403121561424f5761424e613b49565b5b600061425d84828501614224565b91505092915050565b600080fd5b600080fd5b60008083601f84011261428657614285613ef7565b5b8235905067ffffffffffffffff8111156142a3576142a2614266565b5b6020830191508360208202830111156142bf576142be61426b565b5b9250929050565b6000806000604084860312156142df576142de613b49565b5b600084013567ffffffffffffffff8111156142fd576142fc613b4e565b5b61430986828701614270565b9350935050602061431c86828701613cea565b9150509250925092565b6000806040838503121561433d5761433c613b49565b5b600061434b85828601613d9f565b925050602061435c85828601613d9f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806143ad57607f821691505b602082108114156143c1576143c0614366565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000614423602d83613c19565b915061442e826143c7565b604082019050919050565b6000602082019050818103600083015261445281614416565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b60006144b5602283613c19565b91506144c082614459565b604082019050919050565b600060208201905081810360008301526144e4816144a8565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000614547603983613c19565b9150614552826144eb565b604082019050919050565b600060208201905081810360008301526145768161453a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006145e682613cc9565b91506145f183613cc9565b9250826146015761460061457d565b5b828204905092915050565b600081905092915050565b50565b600061462760008361460c565b915061463282614617565b600082019050919050565b60006146488261461a565b9150819050919050565b600061465d82613cc9565b915061466883613cc9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156146a1576146a06145ac565b5b828202905092915050565b60006146b782613cc9565b91506146c283613cc9565b9250828210156146d5576146d46145ac565b5b828203905092915050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b600061473c602283613c19565b9150614747826146e0565b604082019050919050565b6000602082019050818103600083015261476b8161472f565b9050919050565b600061477d82613cc9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156147b0576147af6145ac565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000614817602e83613c19565b9150614822826147bb565b604082019050919050565b600060208201905081810360008301526148468161480a565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b60006148a9602383613c19565b91506148b48261484d565b604082019050919050565b600060208201905081810360008301526148d88161489c565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b600061493b602b83613c19565b9150614946826148df565b604082019050919050565b6000602082019050818103600083015261496a8161492e565b9050919050565b7f4d696e7420616d6f756e742068617320746f206265206772656174657220746860008201527f616e20302e000000000000000000000000000000000000000000000000000000602082015250565b60006149cd602583613c19565b91506149d882614971565b604082019050919050565b600060208201905081810360008301526149fc816149c0565b9050919050565b6000614a0e82613cc9565b9150614a1983613cc9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a4e57614a4d6145ac565b5b828201905092915050565b7f4d696e74696e672074686174206d616e7920776f756c6420676f206f7665722060008201527f776861747320617661696c61626c652e00000000000000000000000000000000602082015250565b6000614ab5603083613c19565b9150614ac082614a59565b604082019050919050565b60006020820190508181036000830152614ae481614aa8565b9050919050565b7f43616e206e6f7420657863656564206d6178206d696e7420616d6f756e742e00600082015250565b6000614b21601f83613c19565b9150614b2c82614aeb565b602082019050919050565b60006020820190508181036000830152614b5081614b14565b9050919050565b7f4f6e6c792077686974656c6973742063616e206d696e74207269676874206e6f60008201527f772e000000000000000000000000000000000000000000000000000000000000602082015250565b6000614bb3602283613c19565b9150614bbe82614b57565b604082019050919050565b60006020820190508181036000830152614be281614ba6565b9050919050565b7f4e6f7420456e6f756768204574682053656e742e000000000000000000000000600082015250565b6000614c1f601483613c19565b9150614c2a82614be9565b602082019050919050565b60006020820190508181036000830152614c4e81614c12565b9050919050565b7f4f6e6c7920504152544e45520000000000000000000000000000000000000000600082015250565b6000614c8b600c83613c19565b9150614c9682614c55565b602082019050919050565b60006020820190508181036000830152614cba81614c7e565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000614cf7601a83613c19565b9150614d0282614cc1565b602082019050919050565b60006020820190508181036000830152614d2681614cea565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000614d89603383613c19565b9150614d9482614d2d565b604082019050919050565b60006020820190508181036000830152614db881614d7c565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614e1b602f83613c19565b9150614e2682614dbf565b604082019050919050565b60006020820190508181036000830152614e4a81614e0e565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154614e7e81614395565b614e888186614e51565b94506001821660008114614ea35760018114614eb457614ee7565b60ff19831686528186019350614ee7565b614ebd85614e5c565b60005b83811015614edf57815481890152600182019150602081019050614ec0565b838801955050505b50505092915050565b6000614efb82613c0e565b614f058185614e51565b9350614f15818560208601613c2a565b80840191505092915050565b6000614f2d8286614e71565b9150614f398285614ef0565b9150614f458284614e71565b9150819050949350505050565b7f4f6e6c7920446576000000000000000000000000000000000000000000000000600082015250565b6000614f88600883613c19565b9150614f9382614f52565b602082019050919050565b60006020820190508181036000830152614fb781614f7b565b9050919050565b7f57686974656c697374206e6f206c6f6e67657220617661696c61626c652e0000600082015250565b6000614ff4601e83613c19565b9150614fff82614fbe565b602082019050919050565b6000602082019050818103600083015261502381614fe7565b9050919050565b7f416464726573732068617320616c726561647920636c61696d65640000000000600082015250565b6000615060601b83613c19565b915061506b8261502a565b602082019050919050565b6000602082019050818103600083015261508f81615053565b9050919050565b60008160601b9050919050565b60006150ae82615096565b9050919050565b60006150c0826150a3565b9050919050565b6150d86150d382613d4c565b6150b5565b82525050565b60006150ea82846150c7565b60148201915081905092915050565b7f496e76616c69642050726f6f6600000000000000000000000000000000000000600082015250565b600061512f600d83613c19565b915061513a826150f9565b602082019050919050565b6000602082019050818103600083015261515e81615122565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006151c1602683613c19565b91506151cc82615165565b604082019050919050565b600060208201905081810360008301526151f0816151b4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061522d602083613c19565b9150615238826151f7565b602082019050919050565b6000602082019050818103600083015261525c81615220565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006152bf603283613c19565b91506152ca82615263565b604082019050919050565b600060208201905081810360008301526152ee816152b2565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000615351602683613c19565b915061535c826152f5565b604082019050919050565b6000602082019050818103600083015261538081615344565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006153e3602583613c19565b91506153ee82615387565b604082019050919050565b60006020820190508181036000830152615412816153d6565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600061544082615419565b915061544b83615419565b92508282101561545e5761545d6145ac565b5b828203905092915050565b600061547482615419565b915061547f83615419565b9250826fffffffffffffffffffffffffffffffff038211156154a4576154a36145ac565b5b828201905092915050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b600061550b602a83613c19565b9150615516826154af565b604082019050919050565b6000602082019050818103600083015261553a816154fe565b9050919050565b600061554c82613cc9565b915060008214156155605761555f6145ac565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b60006155c7602f83613c19565b91506155d28261556b565b604082019050919050565b600060208201905081810360008301526155f6816155ba565b9050919050565b7f436f6e74726163742063757272656e746c79205041555345442e000000000000600082015250565b6000615633601a83613c19565b915061563e826155fd565b602082019050919050565b6000602082019050818103600083015261566281615626565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061569082615669565b61569a8185615674565b93506156aa818560208601613c2a565b6156b381613c5d565b840191505092915050565b60006080820190506156d36000830187613d5e565b6156e06020830186613d5e565b6156ed6040830185613e4d565b81810360608301526156ff8184615685565b905095945050505050565b60008151905061571981613b7f565b92915050565b60006020828403121561573557615734613b49565b5b60006157438482850161570a565b91505092915050565b600061575782613cc9565b915061576283613cc9565b9250826157725761577161457d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000615808602183613c19565b9150615813826157ac565b604082019050919050565b60006020820190508181036000830152615837816157fb565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b6000615874601d83613c19565b915061587f8261583e565b602082019050919050565b600060208201905081810360008301526158a381615867565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6000615906602283613c19565b9150615911826158aa565b604082019050919050565b60006020820190508181036000830152615935816158f9565b905091905056fea2646970667358221220130407e877a4673a38db38772f227d5f41fdeb01a2b27f4985ec039309e4809364736f6c634300080b003368747470733a2f2f746f6f6e76657273652e73332e616d617a6f6e6177732e636f6d2f68747470733a2f2f746f6f6e76657273652e73332e616d617a6f6e6177732e636f6d2f6e6f7452657665616c65642e6a736f6e

Deployed Bytecode

0x6080604052600436106102935760003560e01c8063a16d59601161015a578063da3ef23f116100c1578063e985e9c51161007a578063e985e9c5146109d7578063ebebcf3d14610a14578063ed99e1e214610a3f578063f2c4ce1e14610a6a578063f2fde38b14610a93578063fa9b701814610abc57610293565b8063da3ef23f146108ea578063dbddb26a14610913578063df3fdf001461093e578063e08e65ea14610969578063e0a6bf8f14610992578063e0a80853146109ae57610293565b8063bda72f6f11610113578063bda72f6f146107d8578063bf8fbbd214610803578063c1eb5ddd1461082e578063c87b56dd14610859578063d477f05f14610896578063d7224ba0146108bf57610293565b8063a16d5960146106dc578063a22cb46514610705578063a664eb901461072e578063a76a958714610759578063a9aad58c14610784578063b88d4fde146107af57610293565b806344a0d68a116101fe57806389f57074116101b757806389f57074146105d95780638da5cb5b14610616578063918dbcab1461064157806395d89b411461066a5780639b3ff5f914610695578063a0712d68146106c057610293565b806344a0d68a146104b95780634f6ccce7146104e257806355f804b31461051f5780636352211e1461054857806370a0823114610585578063715018a6146105c257610293565b806323b872dd1161025057806323b872dd146103ba5780632c572874146103e35780632e1a7d4d1461040c5780632f745c591461042857806332cb6b0c1461046557806342842e0e1461049057610293565b806301ffc9a71461029857806306fdde03146102d5578063081812fc14610300578063095ea7b31461033d57806316c38b3c1461036657806318160ddd1461038f575b600080fd5b3480156102a457600080fd5b506102bf60048036038101906102ba9190613bab565b610ae7565b6040516102cc9190613bf3565b60405180910390f35b3480156102e157600080fd5b506102ea610c31565b6040516102f79190613ca7565b60405180910390f35b34801561030c57600080fd5b5061032760048036038101906103229190613cff565b610cc3565b6040516103349190613d6d565b60405180910390f35b34801561034957600080fd5b50610364600480360381019061035f9190613db4565b610d48565b005b34801561037257600080fd5b5061038d60048036038101906103889190613e20565b610e61565b005b34801561039b57600080fd5b506103a4610e86565b6040516103b19190613e5c565b60405180910390f35b3480156103c657600080fd5b506103e160048036038101906103dc9190613e77565b610e8f565b005b3480156103ef57600080fd5b5061040a60048036038101906104059190613eca565b610e9f565b005b61042660048036038101906104219190613cff565b610eeb565b005b34801561043457600080fd5b5061044f600480360381019061044a9190613db4565b6110f2565b60405161045c9190613e5c565b60405180910390f35b34801561047157600080fd5b5061047a6112f0565b6040516104879190613e5c565b60405180910390f35b34801561049c57600080fd5b506104b760048036038101906104b29190613e77565b6112f6565b005b3480156104c557600080fd5b506104e060048036038101906104db9190613cff565b611316565b005b3480156104ee57600080fd5b5061050960048036038101906105049190613cff565b611328565b6040516105169190613e5c565b60405180910390f35b34801561052b57600080fd5b506105466004803603810190610541919061402c565b61137b565b005b34801561055457600080fd5b5061056f600480360381019061056a9190613cff565b61139d565b60405161057c9190613d6d565b60405180910390f35b34801561059157600080fd5b506105ac60048036038101906105a79190613eca565b6113b3565b6040516105b99190613e5c565b60405180910390f35b3480156105ce57600080fd5b506105d761149c565b005b3480156105e557600080fd5b5061060060048036038101906105fb9190613eca565b6114b0565b60405161060d9190613bf3565b60405180910390f35b34801561062257600080fd5b5061062b6114d0565b6040516106389190613d6d565b60405180910390f35b34801561064d57600080fd5b5061066860048036038101906106639190613e20565b6114fa565b005b34801561067657600080fd5b5061067f61151f565b60405161068c9190613ca7565b60405180910390f35b3480156106a157600080fd5b506106aa6115b1565b6040516106b79190613d6d565b60405180910390f35b6106da60048036038101906106d59190613cff565b6115d7565b005b3480156106e857600080fd5b5061070360048036038101906106fe9190613eca565b611805565b005b34801561071157600080fd5b5061072c60048036038101906107279190614075565b6118d9565b005b34801561073a57600080fd5b50610743611a5a565b60405161075091906140ce565b60405180910390f35b34801561076557600080fd5b5061076e611a60565b60405161077b9190613bf3565b60405180910390f35b34801561079057600080fd5b50610799611a73565b6040516107a69190613bf3565b60405180910390f35b3480156107bb57600080fd5b506107d660048036038101906107d1919061418a565b611a86565b005b3480156107e457600080fd5b506107ed611ae2565b6040516107fa9190613bf3565b60405180910390f35b34801561080f57600080fd5b50610818611af5565b6040516108259190613e5c565b60405180910390f35b34801561083a57600080fd5b50610843611afb565b6040516108509190613d6d565b60405180910390f35b34801561086557600080fd5b50610880600480360381019061087b9190613cff565b611b21565b60405161088d9190613ca7565b60405180910390f35b3480156108a257600080fd5b506108bd60048036038101906108b89190613eca565b611c7b565b005b3480156108cb57600080fd5b506108d4611d4f565b6040516108e19190613e5c565b60405180910390f35b3480156108f657600080fd5b50610911600480360381019061090c919061402c565b611d55565b005b34801561091f57600080fd5b50610928611d77565b6040516109359190613ca7565b60405180910390f35b34801561094a57600080fd5b50610953611e05565b6040516109609190613ca7565b60405180910390f35b34801561097557600080fd5b50610990600480360381019061098b9190614239565b611e93565b005b6109ac60048036038101906109a791906142c6565b611ea5565b005b3480156109ba57600080fd5b506109d560048036038101906109d09190613e20565b6122ca565b005b3480156109e357600080fd5b506109fe60048036038101906109f99190614326565b6122ef565b604051610a0b9190613bf3565b60405180910390f35b348015610a2057600080fd5b50610a29612383565b604051610a369190613d6d565b60405180910390f35b348015610a4b57600080fd5b50610a546123a9565b604051610a619190613ca7565b60405180910390f35b348015610a7657600080fd5b50610a916004803603810190610a8c919061402c565b612437565b005b348015610a9f57600080fd5b50610aba6004803603810190610ab59190613eca565b612459565b005b348015610ac857600080fd5b50610ad16124dd565b604051610ade9190613e5c565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bb257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c1a57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c2a5750610c2982612524565b5b9050919050565b606060018054610c4090614395565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6c90614395565b8015610cb95780601f10610c8e57610100808354040283529160200191610cb9565b820191906000526020600020905b815481529060010190602001808311610c9c57829003601f168201915b5050505050905090565b6000610cce8261258e565b610d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0490614439565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d538261139d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbb906144cb565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610de361259b565b73ffffffffffffffffffffffffffffffffffffffff161480610e125750610e1181610e0c61259b565b6122ef565b5b610e51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e489061455d565b60405180910390fd5b610e5c8383836125a3565b505050565b610e69612655565b80600e60006101000a81548160ff02191690831515021790555050565b60008054905090565b610e9a8383836126d3565b505050565b610ea7612655565b80600e60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610ef3612655565b6000603282610f0291906145db565b90506000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051610f4c9061463d565b60006040518083038185875af1925050503d8060008114610f89576040519150601f19603f3d011682016040523d82523d6000602084013e610f8e565b606091505b5050905080610f9c57600080fd5b60006005600185610fad9190614652565b610fb791906145db565b90506000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516110019061463d565b60006040518083038185875af1925050503d806000811461103e576040519150601f19603f3d011682016040523d82523d6000602084013e611043565b606091505b505090508061105157600080fd5b600084838761106091906146ac565b61106a91906146ac565b905060006110766114d0565b73ffffffffffffffffffffffffffffffffffffffff16826040516110999061463d565b60006040518083038185875af1925050503d80600081146110d6576040519150601f19603f3d011682016040523d82523d6000602084013e6110db565b606091505b50509050806110e957600080fd5b50505050505050565b60006110fd836113b3565b821061113e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113590614752565b60405180910390fd5b6000611148610e86565b905060008060005b838110156112ae576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461124257806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561129a578684141561128b5781955050505050506112ea565b838061129690614772565b9450505b5080806112a690614772565b915050611150565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e19061482d565b60405180910390fd5b92915050565b600a5481565b61131183838360405180602001604052806000815250611a86565b505050565b61131e612655565b8060098190555050565b6000611332610e86565b8210611373576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136a906148bf565b60405180910390fd5b819050919050565b611383612655565b80600b9080519060200190611399929190613a62565b5050565b60006113a882612c8c565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611424576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141b90614951565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6114a4612655565b6114ae6000612e8f565b565b60126020528060005260406000206000915054906101000a900460ff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611502612655565b80601360006101000a81548160ff02191690831515021790555050565b60606002805461152e90614395565b80601f016020809104026020016040519081016040528092919081815260200182805461155a90614395565b80156115a75780601f1061157c576101008083540402835291602001916115a7565b820191906000526020600020905b81548152906001019060200180831161158a57829003601f168201915b5050505050905090565b600e60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b806000811161161b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611612906149e3565b60405180910390fd5b600a5481611627610e86565b6116319190614a03565b1115611672576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166990614acb565b60405180910390fd5b61167a6114d0565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146117f6576116b4612f55565b7f0000000000000000000000000000000000000000000000000000000000000032821115611717576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170e90614b37565b60405180910390fd5b601360009054906101000a900460ff1615611767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175e90614bc9565b60405180910390fd5b816009546117759190614652565b3410156117b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ae90614c35565b60405180910390fd5b6117c034612fa7565b600382106117e6576002826117d59190614652565b91506117e133836131c1565b6117f1565b6117f033836131c1565b5b611801565b61180033836131c1565b5b5050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611895576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188c90614ca1565b60405180910390fd5b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6118e161259b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561194f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194690614d0d565b60405180910390fd5b806006600061195c61259b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a0961259b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a4e9190613bf3565b60405180910390a35050565b60115481565b600e60019054906101000a900460ff1681565b600e60009054906101000a900460ff1681565b611a918484846126d3565b611a9d848484846131df565b611adc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad390614d9f565b60405180910390fd5b50505050565b601360009054906101000a900460ff1681565b60095481565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060611b2c8261258e565b611b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6290614e31565b60405180910390fd5b60001515600e60019054906101000a900460ff1615151415611c1957600d8054611b9490614395565b80601f0160208091040260200160405190810160405280929190818152602001828054611bc090614395565b8015611c0d5780601f10611be257610100808354040283529160200191611c0d565b820191906000526020600020905b815481529060010190602001808311611bf057829003601f168201915b50505050509050611c76565b6000600b8054611c2890614395565b905011611c445760405180602001604052806000815250611c73565b600b611c4f83613367565b600c604051602001611c6393929190614f21565b6040516020818303038152906040525b90505b919050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611d0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0290614f9e565b60405180910390fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60075481565b611d5d612655565b80600c9080519060200190611d73929190613a62565b5050565b600b8054611d8490614395565b80601f0160208091040260200160405190810160405280929190818152602001828054611db090614395565b8015611dfd5780601f10611dd257610100808354040283529160200191611dfd565b820191906000526020600020905b815481529060010190602001808311611de057829003601f168201915b505050505081565b600c8054611e1290614395565b80601f0160208091040260200160405190810160405280929190818152602001828054611e3e90614395565b8015611e8b5780601f10611e6057610100808354040283529160200191611e8b565b820191906000526020600020905b815481529060010190602001808311611e6e57829003601f168201915b505050505081565b611e9b612655565b8060118190555050565b8060008111611ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee0906149e3565b60405180910390fd5b600a5481611ef5610e86565b611eff9190614a03565b1115611f40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3790614acb565b60405180910390fd5b611f486114d0565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146122b957611f82612f55565b7f0000000000000000000000000000000000000000000000000000000000000032821115611fe5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdc90614b37565b60405180910390fd5b601360009054906101000a900460ff16612034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202b9061500a565b60405180910390fd5b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156120c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b890615076565b60405180910390fd5b6000336040516020016120d491906150de565b60405160208183030381529060405280519060200120905061213a858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050601154836134c8565b612179576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217090615145565b60405180910390fd5b826009546121879190614652565b3410156121c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c090614c35565b60405180910390fd5b6121d234612fa7565b60038310612250576002836121e79190614652565b92506121f333846131c1565b6001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506122b3565b61225a33846131c1565b6001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b506122c4565b6122c333836131c1565b5b50505050565b6122d2612655565b80600e60016101000a81548160ff02191690831515021790555050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d80546123b690614395565b80601f01602080910402602001604051908101604052809291908181526020018280546123e290614395565b801561242f5780601f106124045761010080835404028352916020019161242f565b820191906000526020600020905b81548152906001019060200180831161241257829003601f168201915b505050505081565b61243f612655565b80600d9080519060200190612455929190613a62565b5050565b612461612655565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124c8906151d7565b60405180910390fd5b6124da81612e8f565b50565b7f000000000000000000000000000000000000000000000000000000000000003281565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61265d61259b565b73ffffffffffffffffffffffffffffffffffffffff1661267b6114d0565b73ffffffffffffffffffffffffffffffffffffffff16146126d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126c890615243565b60405180910390fd5b565b60006126de82612c8c565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661270561259b565b73ffffffffffffffffffffffffffffffffffffffff161480612761575061272a61259b565b73ffffffffffffffffffffffffffffffffffffffff1661274984610cc3565b73ffffffffffffffffffffffffffffffffffffffff16145b8061277d575061277c826000015161277761259b565b6122ef565b5b9050806127bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b6906152d5565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612831576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282890615367565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156128a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612898906153f9565b60405180910390fd5b6128ae85858560016134df565b6128be60008484600001516125a3565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661292c9190615435565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166129d09190615469565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184612ad69190614a03565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612c1c57612b4c8161258e565b15612c1b576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612c8486868660016134e5565b505050505050565b612c94613ae8565b612c9d8261258e565b612cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cd390615521565b60405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000001a0a8310612d405760017f0000000000000000000000000000000000000000000000000000000000001a0a84612d3391906146ac565b612d3d9190614a03565b90505b60008390505b818110612e4e576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612e3a57809350505050612e8a565b508080612e4690615541565b915050612d46565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e81906155dd565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600e60009054906101000a900460ff1615612fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9c90615649565b60405180910390fd5b565b6000601982612fb691906145db565b90506000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516130009061463d565b60006040518083038185875af1925050503d806000811461303d576040519150601f19603f3d011682016040523d82523d6000602084013e613042565b606091505b505090508061305057600080fd5b600060646007856130619190614652565b61306b91906145db565b90506000601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516130b59061463d565b60006040518083038185875af1925050503d80600081146130f2576040519150601f19603f3d011682016040523d82523d6000602084013e6130f7565b606091505b505090508061310557600080fd5b600084838761311491906146ac565b61311e91906146ac565b90506000600e60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516131689061463d565b60006040518083038185875af1925050503d80600081146131a5576040519150601f19603f3d011682016040523d82523d6000602084013e6131aa565b606091505b50509050806131b857600080fd5b50505050505050565b6131db8282604051806020016040528060008152506134eb565b5050565b60006132008473ffffffffffffffffffffffffffffffffffffffff16612501565b1561335a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261322961259b565b8786866040518563ffffffff1660e01b815260040161324b94939291906156be565b6020604051808303816000875af192505050801561328757506040513d601f19601f82011682018060405250810190613284919061571f565b60015b61330a573d80600081146132b7576040519150601f19603f3d011682016040523d82523d6000602084013e6132bc565b606091505b50600081511415613302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132f990614d9f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061335f565b600190505b949350505050565b606060008214156133af576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506134c3565b600082905060005b600082146133e15780806133ca90614772565b915050600a826133da91906145db565b91506133b7565b60008167ffffffffffffffff8111156133fd576133fc613f01565b5b6040519080825280601f01601f19166020018201604052801561342f5781602001600182028036833780820191505090505b5090505b600085146134bc5760018261344891906146ac565b9150600a85613457919061574c565b60306134639190614a03565b60f81b8183815181106134795761347861577d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856134b591906145db565b9450613433565b8093505050505b919050565b6000826134d585846139ca565b1490509392505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613561576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135589061581e565b60405180910390fd5b61356a8161258e565b156135aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135a19061588a565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000001a0a83111561360d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136049061591c565b60405180910390fd5b61361a60008583866134df565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516137179190615469565b6fffffffffffffffffffffffffffffffff16815260200185836020015161373e9190615469565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156139ad57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461394d60008884886131df565b61398c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161398390614d9f565b60405180910390fd5b818061399790614772565b92505080806139a590614772565b9150506138dc565b50806000819055506139c260008785886134e5565b505050505050565b60008082905060005b8451811015613a1557613a00828683815181106139f3576139f261577d565b5b6020026020010151613a20565b91508080613a0d90614772565b9150506139d3565b508091505092915050565b6000818310613a3857613a338284613a4b565b613a43565b613a428383613a4b565b5b905092915050565b600082600052816020526040600020905092915050565b828054613a6e90614395565b90600052602060002090601f016020900481019282613a905760008555613ad7565b82601f10613aa957805160ff1916838001178555613ad7565b82800160010185558215613ad7579182015b82811115613ad6578251825591602001919060010190613abb565b5b509050613ae49190613b22565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613b3b576000816000905550600101613b23565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613b8881613b53565b8114613b9357600080fd5b50565b600081359050613ba581613b7f565b92915050565b600060208284031215613bc157613bc0613b49565b5b6000613bcf84828501613b96565b91505092915050565b60008115159050919050565b613bed81613bd8565b82525050565b6000602082019050613c086000830184613be4565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613c48578082015181840152602081019050613c2d565b83811115613c57576000848401525b50505050565b6000601f19601f8301169050919050565b6000613c7982613c0e565b613c838185613c19565b9350613c93818560208601613c2a565b613c9c81613c5d565b840191505092915050565b60006020820190508181036000830152613cc18184613c6e565b905092915050565b6000819050919050565b613cdc81613cc9565b8114613ce757600080fd5b50565b600081359050613cf981613cd3565b92915050565b600060208284031215613d1557613d14613b49565b5b6000613d2384828501613cea565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613d5782613d2c565b9050919050565b613d6781613d4c565b82525050565b6000602082019050613d826000830184613d5e565b92915050565b613d9181613d4c565b8114613d9c57600080fd5b50565b600081359050613dae81613d88565b92915050565b60008060408385031215613dcb57613dca613b49565b5b6000613dd985828601613d9f565b9250506020613dea85828601613cea565b9150509250929050565b613dfd81613bd8565b8114613e0857600080fd5b50565b600081359050613e1a81613df4565b92915050565b600060208284031215613e3657613e35613b49565b5b6000613e4484828501613e0b565b91505092915050565b613e5681613cc9565b82525050565b6000602082019050613e716000830184613e4d565b92915050565b600080600060608486031215613e9057613e8f613b49565b5b6000613e9e86828701613d9f565b9350506020613eaf86828701613d9f565b9250506040613ec086828701613cea565b9150509250925092565b600060208284031215613ee057613edf613b49565b5b6000613eee84828501613d9f565b91505092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613f3982613c5d565b810181811067ffffffffffffffff82111715613f5857613f57613f01565b5b80604052505050565b6000613f6b613b3f565b9050613f778282613f30565b919050565b600067ffffffffffffffff821115613f9757613f96613f01565b5b613fa082613c5d565b9050602081019050919050565b82818337600083830152505050565b6000613fcf613fca84613f7c565b613f61565b905082815260208101848484011115613feb57613fea613efc565b5b613ff6848285613fad565b509392505050565b600082601f83011261401357614012613ef7565b5b8135614023848260208601613fbc565b91505092915050565b60006020828403121561404257614041613b49565b5b600082013567ffffffffffffffff8111156140605761405f613b4e565b5b61406c84828501613ffe565b91505092915050565b6000806040838503121561408c5761408b613b49565b5b600061409a85828601613d9f565b92505060206140ab85828601613e0b565b9150509250929050565b6000819050919050565b6140c8816140b5565b82525050565b60006020820190506140e360008301846140bf565b92915050565b600067ffffffffffffffff82111561410457614103613f01565b5b61410d82613c5d565b9050602081019050919050565b600061412d614128846140e9565b613f61565b90508281526020810184848401111561414957614148613efc565b5b614154848285613fad565b509392505050565b600082601f83011261417157614170613ef7565b5b813561418184826020860161411a565b91505092915050565b600080600080608085870312156141a4576141a3613b49565b5b60006141b287828801613d9f565b94505060206141c387828801613d9f565b93505060406141d487828801613cea565b925050606085013567ffffffffffffffff8111156141f5576141f4613b4e565b5b6142018782880161415c565b91505092959194509250565b614216816140b5565b811461422157600080fd5b50565b6000813590506142338161420d565b92915050565b60006020828403121561424f5761424e613b49565b5b600061425d84828501614224565b91505092915050565b600080fd5b600080fd5b60008083601f84011261428657614285613ef7565b5b8235905067ffffffffffffffff8111156142a3576142a2614266565b5b6020830191508360208202830111156142bf576142be61426b565b5b9250929050565b6000806000604084860312156142df576142de613b49565b5b600084013567ffffffffffffffff8111156142fd576142fc613b4e565b5b61430986828701614270565b9350935050602061431c86828701613cea565b9150509250925092565b6000806040838503121561433d5761433c613b49565b5b600061434b85828601613d9f565b925050602061435c85828601613d9f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806143ad57607f821691505b602082108114156143c1576143c0614366565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6000614423602d83613c19565b915061442e826143c7565b604082019050919050565b6000602082019050818103600083015261445281614416565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b60006144b5602283613c19565b91506144c082614459565b604082019050919050565b600060208201905081810360008301526144e4816144a8565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000614547603983613c19565b9150614552826144eb565b604082019050919050565b600060208201905081810360008301526145768161453a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006145e682613cc9565b91506145f183613cc9565b9250826146015761460061457d565b5b828204905092915050565b600081905092915050565b50565b600061462760008361460c565b915061463282614617565b600082019050919050565b60006146488261461a565b9150819050919050565b600061465d82613cc9565b915061466883613cc9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156146a1576146a06145ac565b5b828202905092915050565b60006146b782613cc9565b91506146c283613cc9565b9250828210156146d5576146d46145ac565b5b828203905092915050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b600061473c602283613c19565b9150614747826146e0565b604082019050919050565b6000602082019050818103600083015261476b8161472f565b9050919050565b600061477d82613cc9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156147b0576147af6145ac565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b6000614817602e83613c19565b9150614822826147bb565b604082019050919050565b600060208201905081810360008301526148468161480a565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b60006148a9602383613c19565b91506148b48261484d565b604082019050919050565b600060208201905081810360008301526148d88161489c565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b600061493b602b83613c19565b9150614946826148df565b604082019050919050565b6000602082019050818103600083015261496a8161492e565b9050919050565b7f4d696e7420616d6f756e742068617320746f206265206772656174657220746860008201527f616e20302e000000000000000000000000000000000000000000000000000000602082015250565b60006149cd602583613c19565b91506149d882614971565b604082019050919050565b600060208201905081810360008301526149fc816149c0565b9050919050565b6000614a0e82613cc9565b9150614a1983613cc9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a4e57614a4d6145ac565b5b828201905092915050565b7f4d696e74696e672074686174206d616e7920776f756c6420676f206f7665722060008201527f776861747320617661696c61626c652e00000000000000000000000000000000602082015250565b6000614ab5603083613c19565b9150614ac082614a59565b604082019050919050565b60006020820190508181036000830152614ae481614aa8565b9050919050565b7f43616e206e6f7420657863656564206d6178206d696e7420616d6f756e742e00600082015250565b6000614b21601f83613c19565b9150614b2c82614aeb565b602082019050919050565b60006020820190508181036000830152614b5081614b14565b9050919050565b7f4f6e6c792077686974656c6973742063616e206d696e74207269676874206e6f60008201527f772e000000000000000000000000000000000000000000000000000000000000602082015250565b6000614bb3602283613c19565b9150614bbe82614b57565b604082019050919050565b60006020820190508181036000830152614be281614ba6565b9050919050565b7f4e6f7420456e6f756768204574682053656e742e000000000000000000000000600082015250565b6000614c1f601483613c19565b9150614c2a82614be9565b602082019050919050565b60006020820190508181036000830152614c4e81614c12565b9050919050565b7f4f6e6c7920504152544e45520000000000000000000000000000000000000000600082015250565b6000614c8b600c83613c19565b9150614c9682614c55565b602082019050919050565b60006020820190508181036000830152614cba81614c7e565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000614cf7601a83613c19565b9150614d0282614cc1565b602082019050919050565b60006020820190508181036000830152614d2681614cea565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000614d89603383613c19565b9150614d9482614d2d565b604082019050919050565b60006020820190508181036000830152614db881614d7c565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614e1b602f83613c19565b9150614e2682614dbf565b604082019050919050565b60006020820190508181036000830152614e4a81614e0e565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154614e7e81614395565b614e888186614e51565b94506001821660008114614ea35760018114614eb457614ee7565b60ff19831686528186019350614ee7565b614ebd85614e5c565b60005b83811015614edf57815481890152600182019150602081019050614ec0565b838801955050505b50505092915050565b6000614efb82613c0e565b614f058185614e51565b9350614f15818560208601613c2a565b80840191505092915050565b6000614f2d8286614e71565b9150614f398285614ef0565b9150614f458284614e71565b9150819050949350505050565b7f4f6e6c7920446576000000000000000000000000000000000000000000000000600082015250565b6000614f88600883613c19565b9150614f9382614f52565b602082019050919050565b60006020820190508181036000830152614fb781614f7b565b9050919050565b7f57686974656c697374206e6f206c6f6e67657220617661696c61626c652e0000600082015250565b6000614ff4601e83613c19565b9150614fff82614fbe565b602082019050919050565b6000602082019050818103600083015261502381614fe7565b9050919050565b7f416464726573732068617320616c726561647920636c61696d65640000000000600082015250565b6000615060601b83613c19565b915061506b8261502a565b602082019050919050565b6000602082019050818103600083015261508f81615053565b9050919050565b60008160601b9050919050565b60006150ae82615096565b9050919050565b60006150c0826150a3565b9050919050565b6150d86150d382613d4c565b6150b5565b82525050565b60006150ea82846150c7565b60148201915081905092915050565b7f496e76616c69642050726f6f6600000000000000000000000000000000000000600082015250565b600061512f600d83613c19565b915061513a826150f9565b602082019050919050565b6000602082019050818103600083015261515e81615122565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006151c1602683613c19565b91506151cc82615165565b604082019050919050565b600060208201905081810360008301526151f0816151b4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061522d602083613c19565b9150615238826151f7565b602082019050919050565b6000602082019050818103600083015261525c81615220565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006152bf603283613c19565b91506152ca82615263565b604082019050919050565b600060208201905081810360008301526152ee816152b2565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000615351602683613c19565b915061535c826152f5565b604082019050919050565b6000602082019050818103600083015261538081615344565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006153e3602583613c19565b91506153ee82615387565b604082019050919050565b60006020820190508181036000830152615412816153d6565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600061544082615419565b915061544b83615419565b92508282101561545e5761545d6145ac565b5b828203905092915050565b600061547482615419565b915061547f83615419565b9250826fffffffffffffffffffffffffffffffff038211156154a4576154a36145ac565b5b828201905092915050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b600061550b602a83613c19565b9150615516826154af565b604082019050919050565b6000602082019050818103600083015261553a816154fe565b9050919050565b600061554c82613cc9565b915060008214156155605761555f6145ac565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b60006155c7602f83613c19565b91506155d28261556b565b604082019050919050565b600060208201905081810360008301526155f6816155ba565b9050919050565b7f436f6e74726163742063757272656e746c79205041555345442e000000000000600082015250565b6000615633601a83613c19565b915061563e826155fd565b602082019050919050565b6000602082019050818103600083015261566281615626565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061569082615669565b61569a8185615674565b93506156aa818560208601613c2a565b6156b381613c5d565b840191505092915050565b60006080820190506156d36000830187613d5e565b6156e06020830186613d5e565b6156ed6040830185613e4d565b81810360608301526156ff8184615685565b905095945050505050565b60008151905061571981613b7f565b92915050565b60006020828403121561573557615734613b49565b5b60006157438482850161570a565b91505092915050565b600061575782613cc9565b915061576283613cc9565b9250826157725761577161457d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000615808602183613c19565b9150615813826157ac565b604082019050919050565b60006020820190508181036000830152615837816157fb565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b6000615874601d83613c19565b915061587f8261583e565b602082019050919050565b600060208201905081810360008301526158a381615867565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6000615906602283613c19565b9150615911826158aa565b604082019050919050565b60006020820190508181036000830152615935816158f9565b905091905056fea2646970667358221220130407e877a4673a38db38772f227d5f41fdeb01a2b27f4985ec039309e4809364736f6c634300080b0033

Deployed Bytecode Sourcemap

52318:6782:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39939:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41665:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43190:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42753:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57209:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38500:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44040:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57496:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57720:662;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39131:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52438:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44245:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56723:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38663:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56959:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41488:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40365:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17035:103;;;;;;;;;;;;;:::i;:::-;;53139:49;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16387:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54058:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41820:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52804:69;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54171:759;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57394:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43458:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53027:105;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52767:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52735:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44465:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53195:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52398:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52880:63;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56115:509;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57304:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48880:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57072:129;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52530:61;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52598:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53934:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54940:1167;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56632:79;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43795:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52951:66;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52643:85;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56823:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17293:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52477:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39939:370;40066:4;40111:25;40096:40;;;:11;:40;;;;:99;;;;40162:33;40147:48;;;:11;:48;;;;40096:99;:160;;;;40221:35;40206:50;;;:11;:50;;;;40096:160;:207;;;;40267:36;40291:11;40267:23;:36::i;:::-;40096:207;40082:221;;39939:370;;;:::o;41665:94::-;41719:13;41748:5;41741:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41665:94;:::o;43190:204::-;43258:7;43282:16;43290:7;43282;:16::i;:::-;43274:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;43364:15;:24;43380:7;43364:24;;;;;;;;;;;;;;;;;;;;;43357:31;;43190:204;;;:::o;42753:379::-;42822:13;42838:24;42854:7;42838:15;:24::i;:::-;42822:40;;42883:5;42877:11;;:2;:11;;;;42869:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;42968:5;42952:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;42977:37;42994:5;43001:12;:10;:12::i;:::-;42977:16;:37::i;:::-;42952:62;42936:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;43098:28;43107:2;43111:7;43120:5;43098:8;:28::i;:::-;42815:317;42753:379;;:::o;57209:83::-;16273:13;:11;:13::i;:::-;57278:6:::1;57269;;:15;;;;;;;;;;;;;;;;;;57209:83:::0;:::o;38500:94::-;38553:7;38576:12;;38569:19;;38500:94;:::o;44040:142::-;44148:28;44158:4;44164:2;44168:7;44148:9;:28::i;:::-;44040:142;;;:::o;57496:95::-;16273:13;:11;:13::i;:::-;57575:8:::1;57563:9;;:20;;;;;;;;;;;;;;;;;;57496:95:::0;:::o;57720:662::-;16273:13;:11;:13::i;:::-;57832:14:::1;57858:2;57849:7;:11;;;;:::i;:::-;57832:28;;57877:12;57903:3;;;;;;;;;;;57895:17;;57920:6;57895:36;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57876:55;;;57954:7;57946:16;;;::::0;::::1;;58002:18;58036:1;58033;58023:7;:11;;;;:::i;:::-;:14;;;;:::i;:::-;58002:35;;58053:16;58083:7;;;;;;;;;;;58075:21;;58104:10;58075:44;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58052:67;;;58142:11;58134:20;;;::::0;::::1;;58213:14;58253:6;58240:10;58230:7;:20;;;;:::i;:::-;:29;;;;:::i;:::-;58213:46;;58275:15;58304:7;:5;:7::i;:::-;58296:21;;58325:6;58296:40;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58274:62;;;58359:10;58351:19;;;::::0;::::1;;57780:602;;;;;;57720:662:::0;:::o;39131:744::-;39240:7;39275:16;39285:5;39275:9;:16::i;:::-;39267:5;:24;39259:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;39337:22;39362:13;:11;:13::i;:::-;39337:38;;39382:19;39412:25;39462:9;39457:350;39481:14;39477:1;:18;39457:350;;;39511:31;39545:11;:14;39557:1;39545:14;;;;;;;;;;;39511:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39598:1;39572:28;;:9;:14;;;:28;;;39568:89;;39633:9;:14;;;39613:34;;39568:89;39690:5;39669:26;;:17;:26;;;39665:135;;;39727:5;39712:11;:20;39708:59;;;39754:1;39747:8;;;;;;;;;39708:59;39777:13;;;;;:::i;:::-;;;;39665:135;39502:305;39497:3;;;;;:::i;:::-;;;;39457:350;;;;39813:56;;;;;;;;;;:::i;:::-;;;;;;;;39131:744;;;;;:::o;52438:32::-;;;;:::o;44245:157::-;44357:39;44374:4;44380:2;44384:7;44357:39;;;;;;;;;;;;:16;:39::i;:::-;44245:157;;;:::o;56723:86::-;16273:13;:11;:13::i;:::-;56793:8:::1;56786:4;:15;;;;56723:86:::0;:::o;38663:177::-;38730:7;38762:13;:11;:13::i;:::-;38754:5;:21;38746:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;38829:5;38822:12;;38663:177;;;:::o;56959:105::-;16273:13;:11;:13::i;:::-;57045:11:::1;57034:8;:22;;;;;;;;;;;;:::i;:::-;;56959:105:::0;:::o;41488:118::-;41552:7;41575:20;41587:7;41575:11;:20::i;:::-;:25;;;41568:32;;41488:118;;;:::o;40365:211::-;40429:7;40470:1;40453:19;;:5;:19;;;;40445:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;40542:12;:19;40555:5;40542:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;40534:36;;40527:43;;40365:211;;;:::o;17035:103::-;16273:13;:11;:13::i;:::-;17100:30:::1;17127:1;17100:18;:30::i;:::-;17035:103::o:0;53139:49::-;;;;;;;;;;;;;;;;;;;;;;:::o;16387:87::-;16433:7;16460:6;;;;;;;;;;;16453:13;;16387:87;:::o;54058:101::-;16273:13;:11;:13::i;:::-;54145:2:::1;54125:17;;:22;;;;;;;;;;;;;;;;;;54058:101:::0;:::o;41820:98::-;41876:13;41905:7;41898:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41820:98;:::o;52804:69::-;;;;;;;;;;;;;:::o;54171:759::-;54233:11;53742:1;53728:11;:15;53720:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;53835:10;;53820:11;53804:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:41;;53796:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;54278:7:::1;:5;:7::i;:::-;54265:20;;:10;:20;;;54262:661;;54301:15;:13;:15::i;:::-;54353;54339:11;:29;;54331:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;54428:17;;;;;;;;;;;54427:18;54419:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;54526:11;54519:4;;:18;;;;:::i;:::-;54506:9;:31;;54498:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;54577:19;54586:9;54577:8;:19::i;:::-;54633:1;54618:11;:16;54615:218;;54682:1;54668:11;:15;;;;:::i;:::-;54654:29;;54702:33;54712:10;54723:11;54702:9;:33::i;:::-;54615:218;;;54779:33;54789:10;54800:11;54779:9;:33::i;:::-;54615:218;54262:661;;;54872:33;54882:10;54893:11;54872:9;:33::i;:::-;54262:661;54171:759:::0;;:::o;57394:94::-;53604:7;;;;;;;;;;;53590:21;;:10;:21;;;53582:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;57472:8:::1;57462:7;;:18;;;;;;;;;;;;;;;;;;57394:94:::0;:::o;43458:274::-;43561:12;:10;:12::i;:::-;43549:24;;:8;:24;;;;43541:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;43658:8;43613:18;:32;43632:12;:10;:12::i;:::-;43613:32;;;;;;;;;;;;;;;:42;43646:8;43613:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;43707:8;43678:48;;43693:12;:10;:12::i;:::-;43678:48;;;43717:8;43678:48;;;;;;:::i;:::-;;;;;;;;43458:274;;:::o;53027:105::-;;;;:::o;52767:28::-;;;;;;;;;;;;;:::o;52735:25::-;;;;;;;;;;;;;:::o;44465:311::-;44602:28;44612:4;44618:2;44622:7;44602:9;:28::i;:::-;44653:48;44676:4;44682:2;44686:7;44695:5;44653:22;:48::i;:::-;44637:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;44465:311;;;;:::o;53195:36::-;;;;;;;;;;;;;:::o;52398:33::-;;;;:::o;52880:63::-;;;;;;;;;;;;;:::o;56115:509::-;56234:13;56283:17;56291:8;56283:7;:17::i;:::-;56265:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;56407:5;56395:17;;:8;;;;;;;;;;;:17;;;56392:72;;;56436:16;56429:23;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56392:72;56508:1;56489:8;56483:22;;;;;:::i;:::-;;;:26;:133;;;;;;;;;;;;;;;;;56549:8;56559:21;56560:8;56559:19;:21::i;:::-;56582:14;56532:65;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56483:133;56476:140;;56115:509;;;;:::o;57304:82::-;53486:3;;;;;;;;;;;53472:17;;:10;:17;;;53464:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;57370:8:::1;57364:3;;:14;;;;;;;;;;;;;;;;;;57304:82:::0;:::o;48880:43::-;;;;:::o;57072:129::-;16273:13;:11;:13::i;:::-;57176:17:::1;57159:14;:34;;;;;;;;;;;;:::i;:::-;;57072:129:::0;:::o;52530:61::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52598:38::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53934:116::-;16273:13;:11;:13::i;:::-;54035:3:::1;54011:21;:27;;;;53934:116:::0;:::o;54940:1167::-;55043:11;53742:1;53728:11;:15;53720:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;53835:10;;53820:11;53804:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:41;;53796:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;55088:7:::1;:5;:7::i;:::-;55075:20;;:10;:20;;;55072:1028;;55111:15;:13;:15::i;:::-;55163;55149:11;:29;;55141:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;55237:17;;;;;;;;;;;55229:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;55315:17;:29;55333:10;55315:29;;;;;;;;;;;;;;;;;;;;;;;;;55314:30;55306:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;55390:12;55432:10;55415:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;55405:39;;;;;;55390:54;;55467:59;55486:12;;55467:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55499:21;;55521:4;55467:18;:59::i;:::-;55459:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;55586:11;55579:4;;:18;;;;:::i;:::-;55566:9;:31;;55558:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;55637:19;55646:9;55637:8;:19::i;:::-;55695:1;55680:11;:16;55677:329;;55744:1;55730:11;:15;;;;:::i;:::-;55716:29;;55764:33;55774:10;55785:11;55764:9;:33::i;:::-;55846:4;55816:17;:29;55834:10;55816:29;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;55677:329;;;55896:33;55906:10;55917:11;55896:9;:33::i;:::-;55979:4;55949:17;:29;55967:10;55949:29;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;55677:329;55096:926;55072:1028;;;56045:33;56055:10;56066:11;56045:9;:33::i;:::-;55072:1028;54940:1167:::0;;;;:::o;56632:79::-;16273:13;:11;:13::i;:::-;56701:2:::1;56690:8;;:13;;;;;;;;;;;;;;;;;;56632:79:::0;:::o;43795:186::-;43917:4;43940:18;:25;43959:5;43940:25;;;;;;;;;;;;;;;:35;43966:8;43940:35;;;;;;;;;;;;;;;;;;;;;;;;;43933:42;;43795:186;;;;:::o;52951:66::-;;;;;;;;;;;;;:::o;52643:85::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;56823:128::-;16273:13;:11;:13::i;:::-;56928:15:::1;56909:16;:34;;;;;;;;;;;;:::i;:::-;;56823:128:::0;:::o;17293:201::-;16273:13;:11;:13::i;:::-;17402:1:::1;17382:22;;:8;:22;;;;17374:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;17458:28;17477:8;17458:18;:28::i;:::-;17293:201:::0;:::o;52477:46::-;;;:::o;19085:326::-;19145:4;19402:1;19380:7;:19;;;:23;19373:30;;19085:326;;;:::o;29241:157::-;29326:4;29365:25;29350:40;;;:11;:40;;;;29343:47;;29241:157;;;:::o;45015:105::-;45072:4;45102:12;;45092:7;:22;45085:29;;45015:105;;;:::o;14938:98::-;14991:7;15018:10;15011:17;;14938:98;:::o;48702:172::-;48826:2;48799:15;:24;48815:7;48799:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;48860:7;48856:2;48840:28;;48849:5;48840:28;;;;;;;;;;;;48702:172;;;:::o;16552:132::-;16627:12;:10;:12::i;:::-;16616:23;;:7;:5;:7::i;:::-;:23;;;16608:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16552:132::o;47067:1529::-;47164:35;47202:20;47214:7;47202:11;:20::i;:::-;47164:58;;47231:22;47273:13;:18;;;47257:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;47326:12;:10;:12::i;:::-;47302:36;;:20;47314:7;47302:11;:20::i;:::-;:36;;;47257:81;:142;;;;47349:50;47366:13;:18;;;47386:12;:10;:12::i;:::-;47349:16;:50::i;:::-;47257:142;47231:169;;47425:17;47409:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;47557:4;47535:26;;:13;:18;;;:26;;;47519:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;47646:1;47632:16;;:2;:16;;;;47624:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;47699:43;47721:4;47727:2;47731:7;47740:1;47699:21;:43::i;:::-;47799:49;47816:1;47820:7;47829:13;:18;;;47799:8;:49::i;:::-;47887:1;47857:12;:18;47870:4;47857:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;47923:1;47895:12;:16;47908:2;47895:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;47954:43;;;;;;;;47969:2;47954:43;;;;;;47980:15;47954:43;;;;;47931:11;:20;47943:7;47931:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48225:19;48257:1;48247:7;:11;;;;:::i;:::-;48225:33;;48310:1;48269:43;;:11;:24;48281:11;48269:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;48265:236;;;48327:20;48335:11;48327:7;:20::i;:::-;48323:171;;;48387:97;;;;;;;;48414:13;:18;;;48387:97;;;;;;48445:13;:28;;;48387:97;;;;;48360:11;:24;48372:11;48360:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48323:171;48265:236;48533:7;48529:2;48514:27;;48523:4;48514:27;;;;;;;;;;;;48548:42;48569:4;48575:2;48579:7;48588:1;48548:20;:42::i;:::-;47157:1439;;;47067:1529;;;:::o;40828:606::-;40904:21;;:::i;:::-;40945:16;40953:7;40945;:16::i;:::-;40937:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;41017:26;41065:12;41054:7;:23;41050:93;;41134:1;41119:12;41109:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;41088:47;;41050:93;41156:12;41171:7;41156:22;;41151:212;41188:18;41180:4;:26;41151:212;;41225:31;41259:11;:17;41271:4;41259:17;;;;;;;;;;;41225:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41315:1;41289:28;;:9;:14;;;:28;;;41285:71;;41337:9;41330:16;;;;;;;41285:71;41216:147;41208:6;;;;;:::i;:::-;;;;41151:212;;;;41371:57;;;;;;;;;;:::i;:::-;;;;;;;;40828:606;;;;:::o;17654:191::-;17728:16;17747:6;;;;;;;;;;;17728:25;;17773:8;17764:6;;:17;;;;;;;;;;;;;;;;;;17828:8;17797:40;;17818:8;17797:40;;;;;;;;;;;;17717:128;17654:191;:::o;57601:103::-;57660:6;;;;;;;;;;;57659:7;57651:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;57601:103::o;58390:697::-;58492:14;58521:2;58509:10;:14;;;;:::i;:::-;58492:31;;58540:12;58566:3;;;;;;;;;;;58558:17;;58583:6;58558:36;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58539:55;;;58617:7;58609:16;;;;;;58669:18;58706:3;58703:1;58690:10;:14;;;;:::i;:::-;:19;;;;:::i;:::-;58669:40;;58725:16;58755:7;;;;;;;;;;;58747:21;;58776:10;58747:44;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58724:67;;;58814:11;58806:20;;;;;;58891:14;58934:6;58921:10;58908;:23;;;;:::i;:::-;:32;;;;:::i;:::-;58891:49;;58956:15;58985:9;;;;;;;;;;;58977:23;;59008:6;58977:42;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58955:64;;;59042:10;59034:19;;;;;;58439:648;;;;;;58390:697;:::o;45126:98::-;45191:27;45201:2;45205:8;45191:27;;;;;;;;;;;;:9;:27::i;:::-;45126:98;;:::o;50417:690::-;50554:4;50571:15;:2;:13;;;:15::i;:::-;50567:535;;;50626:2;50610:36;;;50647:12;:10;:12::i;:::-;50661:4;50667:7;50676:5;50610:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;50597:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50858:1;50841:6;:13;:18;50837:215;;;50874:61;;;;;;;;;;:::i;:::-;;;;;;;;50837:215;51020:6;51014:13;51005:6;51001:2;50997:15;50990:38;50597:464;50742:45;;;50732:55;;;:6;:55;;;;50725:62;;;;;50567:535;51090:4;51083:11;;50417:690;;;;;;;:::o;12192:723::-;12248:13;12478:1;12469:5;:10;12465:53;;;12496:10;;;;;;;;;;;;;;;;;;;;;12465:53;12528:12;12543:5;12528:20;;12559:14;12584:78;12599:1;12591:4;:9;12584:78;;12617:8;;;;;:::i;:::-;;;;12648:2;12640:10;;;;;:::i;:::-;;;12584:78;;;12672:19;12704:6;12694:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12672:39;;12722:154;12738:1;12729:5;:10;12722:154;;12766:1;12756:11;;;;;:::i;:::-;;;12833:2;12825:5;:10;;;;:::i;:::-;12812:2;:24;;;;:::i;:::-;12799:39;;12782:6;12789;12782:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;12862:2;12853:11;;;;;:::i;:::-;;;12722:154;;;12900:6;12886:21;;;;;12192:723;;;;:::o;3423:190::-;3548:4;3601;3572:25;3585:5;3592:4;3572:12;:25::i;:::-;:33;3565:40;;3423:190;;;;;:::o;51569:141::-;;;;;:::o;52096:140::-;;;;;:::o;45563:1272::-;45668:20;45691:12;;45668:35;;45732:1;45718:16;;:2;:16;;;;45710:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;45909:21;45917:12;45909:7;:21::i;:::-;45908:22;45900:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;45991:12;45979:8;:24;;45971:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;46051:61;46081:1;46085:2;46089:12;46103:8;46051:21;:61::i;:::-;46121:30;46154:12;:16;46167:2;46154:16;;;;;;;;;;;;;;;46121:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46196:119;;;;;;;;46246:8;46216:11;:19;;;:39;;;;:::i;:::-;46196:119;;;;;;46299:8;46264:11;:24;;;:44;;;;:::i;:::-;46196:119;;;;;46177:12;:16;46190:2;46177:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46350:43;;;;;;;;46365:2;46350:43;;;;;;46376:15;46350:43;;;;;46322:11;:25;46334:12;46322:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46402:20;46425:12;46402:35;;46451:9;46446:281;46470:8;46466:1;:12;46446:281;;;46524:12;46520:2;46499:38;;46516:1;46499:38;;;;;;;;;;;;46564:59;46595:1;46599:2;46603:12;46617:5;46564:22;:59::i;:::-;46546:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;46705:14;;;;;:::i;:::-;;;;46480:3;;;;;:::i;:::-;;;;46446:281;;;;46750:12;46735;:27;;;;46769:60;46798:1;46802:2;46806:12;46820:8;46769:20;:60::i;:::-;45661:1174;;;45563:1272;;;:::o;4290:296::-;4373:7;4393:20;4416:4;4393:27;;4436:9;4431:118;4455:5;:12;4451:1;:16;4431:118;;;4504:33;4514:12;4528:5;4534:1;4528:8;;;;;;;;:::i;:::-;;;;;;;;4504:9;:33::i;:::-;4489:48;;4469:3;;;;;:::i;:::-;;;;4431:118;;;;4566:12;4559:19;;;4290:296;;;;:::o;11330:149::-;11393:7;11424:1;11420;:5;:51;;11451:20;11466:1;11469;11451:14;:20::i;:::-;11420:51;;;11428:20;11443:1;11446;11428:14;:20::i;:::-;11420:51;11413:58;;11330:149;;;;:::o;11487:268::-;11555:13;11662:1;11656:4;11649:15;11691:1;11685:4;11678:15;11732:4;11726;11716:21;11707:30;;11487:268;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:116::-;5008:21;5023:5;5008:21;:::i;:::-;5001:5;4998:32;4988:60;;5044:1;5041;5034:12;4988:60;4938:116;:::o;5060:133::-;5103:5;5141:6;5128:20;5119:29;;5157:30;5181:5;5157:30;:::i;:::-;5060:133;;;;:::o;5199:323::-;5255:6;5304:2;5292:9;5283:7;5279:23;5275:32;5272:119;;;5310:79;;:::i;:::-;5272:119;5430:1;5455:50;5497:7;5488:6;5477:9;5473:22;5455:50;:::i;:::-;5445:60;;5401:114;5199:323;;;;:::o;5528:118::-;5615:24;5633:5;5615:24;:::i;:::-;5610:3;5603:37;5528:118;;:::o;5652:222::-;5745:4;5783:2;5772:9;5768:18;5760:26;;5796:71;5864:1;5853:9;5849:17;5840:6;5796:71;:::i;:::-;5652:222;;;;:::o;5880:619::-;5957:6;5965;5973;6022:2;6010:9;6001:7;5997:23;5993:32;5990:119;;;6028:79;;:::i;:::-;5990:119;6148:1;6173:53;6218:7;6209:6;6198:9;6194:22;6173:53;:::i;:::-;6163:63;;6119:117;6275:2;6301:53;6346:7;6337:6;6326:9;6322:22;6301:53;:::i;:::-;6291:63;;6246:118;6403:2;6429:53;6474:7;6465:6;6454:9;6450:22;6429:53;:::i;:::-;6419:63;;6374:118;5880:619;;;;;:::o;6505:329::-;6564:6;6613:2;6601:9;6592:7;6588:23;6584:32;6581:119;;;6619:79;;:::i;:::-;6581:119;6739:1;6764:53;6809:7;6800:6;6789:9;6785:22;6764:53;:::i;:::-;6754:63;;6710:117;6505:329;;;;:::o;6840:117::-;6949:1;6946;6939:12;6963:117;7072:1;7069;7062:12;7086:180;7134:77;7131:1;7124:88;7231:4;7228:1;7221:15;7255:4;7252:1;7245:15;7272:281;7355:27;7377:4;7355:27;:::i;:::-;7347:6;7343:40;7485:6;7473:10;7470:22;7449:18;7437:10;7434:34;7431:62;7428:88;;;7496:18;;:::i;:::-;7428:88;7536:10;7532:2;7525:22;7315:238;7272:281;;:::o;7559:129::-;7593:6;7620:20;;:::i;:::-;7610:30;;7649:33;7677:4;7669:6;7649:33;:::i;:::-;7559:129;;;:::o;7694:308::-;7756:4;7846:18;7838:6;7835:30;7832:56;;;7868:18;;:::i;:::-;7832:56;7906:29;7928:6;7906:29;:::i;:::-;7898:37;;7990:4;7984;7980:15;7972:23;;7694:308;;;:::o;8008:154::-;8092:6;8087:3;8082;8069:30;8154:1;8145:6;8140:3;8136:16;8129:27;8008:154;;;:::o;8168:412::-;8246:5;8271:66;8287:49;8329:6;8287:49;:::i;:::-;8271:66;:::i;:::-;8262:75;;8360:6;8353:5;8346:21;8398:4;8391:5;8387:16;8436:3;8427:6;8422:3;8418:16;8415:25;8412:112;;;8443:79;;:::i;:::-;8412:112;8533:41;8567:6;8562:3;8557;8533:41;:::i;:::-;8252:328;8168:412;;;;;:::o;8600:340::-;8656:5;8705:3;8698:4;8690:6;8686:17;8682:27;8672:122;;8713:79;;:::i;:::-;8672:122;8830:6;8817:20;8855:79;8930:3;8922:6;8915:4;8907:6;8903:17;8855:79;:::i;:::-;8846:88;;8662:278;8600:340;;;;:::o;8946:509::-;9015:6;9064:2;9052:9;9043:7;9039:23;9035:32;9032:119;;;9070:79;;:::i;:::-;9032:119;9218:1;9207:9;9203:17;9190:31;9248:18;9240:6;9237:30;9234:117;;;9270:79;;:::i;:::-;9234:117;9375:63;9430:7;9421:6;9410:9;9406:22;9375:63;:::i;:::-;9365:73;;9161:287;8946:509;;;;:::o;9461:468::-;9526:6;9534;9583:2;9571:9;9562:7;9558:23;9554:32;9551:119;;;9589:79;;:::i;:::-;9551:119;9709:1;9734:53;9779:7;9770:6;9759:9;9755:22;9734:53;:::i;:::-;9724:63;;9680:117;9836:2;9862:50;9904:7;9895:6;9884:9;9880:22;9862:50;:::i;:::-;9852:60;;9807:115;9461:468;;;;;:::o;9935:77::-;9972:7;10001:5;9990:16;;9935:77;;;:::o;10018:118::-;10105:24;10123:5;10105:24;:::i;:::-;10100:3;10093:37;10018:118;;:::o;10142:222::-;10235:4;10273:2;10262:9;10258:18;10250:26;;10286:71;10354:1;10343:9;10339:17;10330:6;10286:71;:::i;:::-;10142:222;;;;:::o;10370:307::-;10431:4;10521:18;10513:6;10510:30;10507:56;;;10543:18;;:::i;:::-;10507:56;10581:29;10603:6;10581:29;:::i;:::-;10573:37;;10665:4;10659;10655:15;10647:23;;10370:307;;;:::o;10683:410::-;10760:5;10785:65;10801:48;10842:6;10801:48;:::i;:::-;10785:65;:::i;:::-;10776:74;;10873:6;10866:5;10859:21;10911:4;10904:5;10900:16;10949:3;10940:6;10935:3;10931:16;10928:25;10925:112;;;10956:79;;:::i;:::-;10925:112;11046:41;11080:6;11075:3;11070;11046:41;:::i;:::-;10766:327;10683:410;;;;;:::o;11112:338::-;11167:5;11216:3;11209:4;11201:6;11197:17;11193:27;11183:122;;11224:79;;:::i;:::-;11183:122;11341:6;11328:20;11366:78;11440:3;11432:6;11425:4;11417:6;11413:17;11366:78;:::i;:::-;11357:87;;11173:277;11112:338;;;;:::o;11456:943::-;11551:6;11559;11567;11575;11624:3;11612:9;11603:7;11599:23;11595:33;11592:120;;;11631:79;;:::i;:::-;11592:120;11751:1;11776:53;11821:7;11812:6;11801:9;11797:22;11776:53;:::i;:::-;11766:63;;11722:117;11878:2;11904:53;11949:7;11940:6;11929:9;11925:22;11904:53;:::i;:::-;11894:63;;11849:118;12006:2;12032:53;12077:7;12068:6;12057:9;12053:22;12032:53;:::i;:::-;12022:63;;11977:118;12162:2;12151:9;12147:18;12134:32;12193:18;12185:6;12182:30;12179:117;;;12215:79;;:::i;:::-;12179:117;12320:62;12374:7;12365:6;12354:9;12350:22;12320:62;:::i;:::-;12310:72;;12105:287;11456:943;;;;;;;:::o;12405:122::-;12478:24;12496:5;12478:24;:::i;:::-;12471:5;12468:35;12458:63;;12517:1;12514;12507:12;12458:63;12405:122;:::o;12533:139::-;12579:5;12617:6;12604:20;12595:29;;12633:33;12660:5;12633:33;:::i;:::-;12533:139;;;;:::o;12678:329::-;12737:6;12786:2;12774:9;12765:7;12761:23;12757:32;12754:119;;;12792:79;;:::i;:::-;12754:119;12912:1;12937:53;12982:7;12973:6;12962:9;12958:22;12937:53;:::i;:::-;12927:63;;12883:117;12678:329;;;;:::o;13013:117::-;13122:1;13119;13112:12;13136:117;13245:1;13242;13235:12;13276:568;13349:8;13359:6;13409:3;13402:4;13394:6;13390:17;13386:27;13376:122;;13417:79;;:::i;:::-;13376:122;13530:6;13517:20;13507:30;;13560:18;13552:6;13549:30;13546:117;;;13582:79;;:::i;:::-;13546:117;13696:4;13688:6;13684:17;13672:29;;13750:3;13742:4;13734:6;13730:17;13720:8;13716:32;13713:41;13710:128;;;13757:79;;:::i;:::-;13710:128;13276:568;;;;;:::o;13850:704::-;13945:6;13953;13961;14010:2;13998:9;13989:7;13985:23;13981:32;13978:119;;;14016:79;;:::i;:::-;13978:119;14164:1;14153:9;14149:17;14136:31;14194:18;14186:6;14183:30;14180:117;;;14216:79;;:::i;:::-;14180:117;14329:80;14401:7;14392:6;14381:9;14377:22;14329:80;:::i;:::-;14311:98;;;;14107:312;14458:2;14484:53;14529:7;14520:6;14509:9;14505:22;14484:53;:::i;:::-;14474:63;;14429:118;13850:704;;;;;:::o;14560:474::-;14628:6;14636;14685:2;14673:9;14664:7;14660:23;14656:32;14653:119;;;14691:79;;:::i;:::-;14653:119;14811:1;14836:53;14881:7;14872:6;14861:9;14857:22;14836:53;:::i;:::-;14826:63;;14782:117;14938:2;14964:53;15009:7;15000:6;14989:9;14985:22;14964:53;:::i;:::-;14954:63;;14909:118;14560:474;;;;;:::o;15040:180::-;15088:77;15085:1;15078:88;15185:4;15182:1;15175:15;15209:4;15206:1;15199:15;15226:320;15270:6;15307:1;15301:4;15297:12;15287:22;;15354:1;15348:4;15344:12;15375:18;15365:81;;15431:4;15423:6;15419:17;15409:27;;15365:81;15493:2;15485:6;15482:14;15462:18;15459:38;15456:84;;;15512:18;;:::i;:::-;15456:84;15277:269;15226:320;;;:::o;15552:232::-;15692:34;15688:1;15680:6;15676:14;15669:58;15761:15;15756:2;15748:6;15744:15;15737:40;15552:232;:::o;15790:366::-;15932:3;15953:67;16017:2;16012:3;15953:67;:::i;:::-;15946:74;;16029:93;16118:3;16029:93;:::i;:::-;16147:2;16142:3;16138:12;16131:19;;15790:366;;;:::o;16162:419::-;16328:4;16366:2;16355:9;16351:18;16343:26;;16415:9;16409:4;16405:20;16401:1;16390:9;16386:17;16379:47;16443:131;16569:4;16443:131;:::i;:::-;16435:139;;16162:419;;;:::o;16587:221::-;16727:34;16723:1;16715:6;16711:14;16704:58;16796:4;16791:2;16783:6;16779:15;16772:29;16587:221;:::o;16814:366::-;16956:3;16977:67;17041:2;17036:3;16977:67;:::i;:::-;16970:74;;17053:93;17142:3;17053:93;:::i;:::-;17171:2;17166:3;17162:12;17155:19;;16814:366;;;:::o;17186:419::-;17352:4;17390:2;17379:9;17375:18;17367:26;;17439:9;17433:4;17429:20;17425:1;17414:9;17410:17;17403:47;17467:131;17593:4;17467:131;:::i;:::-;17459:139;;17186:419;;;:::o;17611:244::-;17751:34;17747:1;17739:6;17735:14;17728:58;17820:27;17815:2;17807:6;17803:15;17796:52;17611:244;:::o;17861:366::-;18003:3;18024:67;18088:2;18083:3;18024:67;:::i;:::-;18017:74;;18100:93;18189:3;18100:93;:::i;:::-;18218:2;18213:3;18209:12;18202:19;;17861:366;;;:::o;18233:419::-;18399:4;18437:2;18426:9;18422:18;18414:26;;18486:9;18480:4;18476:20;18472:1;18461:9;18457:17;18450:47;18514:131;18640:4;18514:131;:::i;:::-;18506:139;;18233:419;;;:::o;18658:180::-;18706:77;18703:1;18696:88;18803:4;18800:1;18793:15;18827:4;18824:1;18817:15;18844:180;18892:77;18889:1;18882:88;18989:4;18986:1;18979:15;19013:4;19010:1;19003:15;19030:185;19070:1;19087:20;19105:1;19087:20;:::i;:::-;19082:25;;19121:20;19139:1;19121:20;:::i;:::-;19116:25;;19160:1;19150:35;;19165:18;;:::i;:::-;19150:35;19207:1;19204;19200:9;19195:14;;19030:185;;;;:::o;19221:147::-;19322:11;19359:3;19344:18;;19221:147;;;;:::o;19374:114::-;;:::o;19494:398::-;19653:3;19674:83;19755:1;19750:3;19674:83;:::i;:::-;19667:90;;19766:93;19855:3;19766:93;:::i;:::-;19884:1;19879:3;19875:11;19868:18;;19494:398;;;:::o;19898:379::-;20082:3;20104:147;20247:3;20104:147;:::i;:::-;20097:154;;20268:3;20261:10;;19898:379;;;:::o;20283:348::-;20323:7;20346:20;20364:1;20346:20;:::i;:::-;20341:25;;20380:20;20398:1;20380:20;:::i;:::-;20375:25;;20568:1;20500:66;20496:74;20493:1;20490:81;20485:1;20478:9;20471:17;20467:105;20464:131;;;20575:18;;:::i;:::-;20464:131;20623:1;20620;20616:9;20605:20;;20283:348;;;;:::o;20637:191::-;20677:4;20697:20;20715:1;20697:20;:::i;:::-;20692:25;;20731:20;20749:1;20731:20;:::i;:::-;20726:25;;20770:1;20767;20764:8;20761:34;;;20775:18;;:::i;:::-;20761:34;20820:1;20817;20813:9;20805:17;;20637:191;;;;:::o;20834:221::-;20974:34;20970:1;20962:6;20958:14;20951:58;21043:4;21038:2;21030:6;21026:15;21019:29;20834:221;:::o;21061:366::-;21203:3;21224:67;21288:2;21283:3;21224:67;:::i;:::-;21217:74;;21300:93;21389:3;21300:93;:::i;:::-;21418:2;21413:3;21409:12;21402:19;;21061:366;;;:::o;21433:419::-;21599:4;21637:2;21626:9;21622:18;21614:26;;21686:9;21680:4;21676:20;21672:1;21661:9;21657:17;21650:47;21714:131;21840:4;21714:131;:::i;:::-;21706:139;;21433:419;;;:::o;21858:233::-;21897:3;21920:24;21938:5;21920:24;:::i;:::-;21911:33;;21966:66;21959:5;21956:77;21953:103;;;22036:18;;:::i;:::-;21953:103;22083:1;22076:5;22072:13;22065:20;;21858:233;;;:::o;22097:::-;22237:34;22233:1;22225:6;22221:14;22214:58;22306:16;22301:2;22293:6;22289:15;22282:41;22097:233;:::o;22336:366::-;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:419::-;22874:4;22912:2;22901:9;22897:18;22889:26;;22961:9;22955:4;22951:20;22947:1;22936:9;22932:17;22925:47;22989:131;23115:4;22989:131;:::i;:::-;22981:139;;22708:419;;;:::o;23133:222::-;23273:34;23269:1;23261:6;23257:14;23250:58;23342:5;23337:2;23329:6;23325:15;23318:30;23133:222;:::o;23361:366::-;23503:3;23524:67;23588:2;23583:3;23524:67;:::i;:::-;23517:74;;23600:93;23689:3;23600:93;:::i;:::-;23718:2;23713:3;23709:12;23702:19;;23361:366;;;:::o;23733:419::-;23899:4;23937:2;23926:9;23922:18;23914:26;;23986:9;23980:4;23976:20;23972:1;23961:9;23957:17;23950:47;24014:131;24140:4;24014:131;:::i;:::-;24006:139;;23733:419;;;:::o;24158:230::-;24298:34;24294:1;24286:6;24282:14;24275:58;24367:13;24362:2;24354:6;24350:15;24343:38;24158:230;:::o;24394:366::-;24536:3;24557:67;24621:2;24616:3;24557:67;:::i;:::-;24550:74;;24633:93;24722:3;24633:93;:::i;:::-;24751:2;24746:3;24742:12;24735:19;;24394:366;;;:::o;24766:419::-;24932:4;24970:2;24959:9;24955:18;24947:26;;25019:9;25013:4;25009:20;25005:1;24994:9;24990:17;24983:47;25047:131;25173:4;25047:131;:::i;:::-;25039:139;;24766:419;;;:::o;25191:224::-;25331:34;25327:1;25319:6;25315:14;25308:58;25400:7;25395:2;25387:6;25383:15;25376:32;25191:224;:::o;25421:366::-;25563:3;25584:67;25648:2;25643:3;25584:67;:::i;:::-;25577:74;;25660:93;25749:3;25660:93;:::i;:::-;25778:2;25773:3;25769:12;25762:19;;25421:366;;;:::o;25793:419::-;25959:4;25997:2;25986:9;25982:18;25974:26;;26046:9;26040:4;26036:20;26032:1;26021:9;26017:17;26010:47;26074:131;26200:4;26074:131;:::i;:::-;26066:139;;25793:419;;;:::o;26218:305::-;26258:3;26277:20;26295:1;26277:20;:::i;:::-;26272:25;;26311:20;26329:1;26311:20;:::i;:::-;26306:25;;26465:1;26397:66;26393:74;26390:1;26387:81;26384:107;;;26471:18;;:::i;:::-;26384:107;26515:1;26512;26508:9;26501:16;;26218:305;;;;:::o;26529:235::-;26669:34;26665:1;26657:6;26653:14;26646:58;26738:18;26733:2;26725:6;26721:15;26714:43;26529:235;:::o;26770:366::-;26912:3;26933:67;26997:2;26992:3;26933:67;:::i;:::-;26926:74;;27009:93;27098:3;27009:93;:::i;:::-;27127:2;27122:3;27118:12;27111:19;;26770:366;;;:::o;27142:419::-;27308:4;27346:2;27335:9;27331:18;27323:26;;27395:9;27389:4;27385:20;27381:1;27370:9;27366:17;27359:47;27423:131;27549:4;27423:131;:::i;:::-;27415:139;;27142:419;;;:::o;27567:181::-;27707:33;27703:1;27695:6;27691:14;27684:57;27567:181;:::o;27754:366::-;27896:3;27917:67;27981:2;27976:3;27917:67;:::i;:::-;27910:74;;27993:93;28082:3;27993:93;:::i;:::-;28111:2;28106:3;28102:12;28095:19;;27754:366;;;:::o;28126:419::-;28292:4;28330:2;28319:9;28315:18;28307:26;;28379:9;28373:4;28369:20;28365:1;28354:9;28350:17;28343:47;28407:131;28533:4;28407:131;:::i;:::-;28399:139;;28126:419;;;:::o;28551:221::-;28691:34;28687:1;28679:6;28675:14;28668:58;28760:4;28755:2;28747:6;28743:15;28736:29;28551:221;:::o;28778:366::-;28920:3;28941:67;29005:2;29000:3;28941:67;:::i;:::-;28934:74;;29017:93;29106:3;29017:93;:::i;:::-;29135:2;29130:3;29126:12;29119:19;;28778:366;;;:::o;29150:419::-;29316:4;29354:2;29343:9;29339:18;29331:26;;29403:9;29397:4;29393:20;29389:1;29378:9;29374:17;29367:47;29431:131;29557:4;29431:131;:::i;:::-;29423:139;;29150:419;;;:::o;29575:170::-;29715:22;29711:1;29703:6;29699:14;29692:46;29575:170;:::o;29751:366::-;29893:3;29914:67;29978:2;29973:3;29914:67;:::i;:::-;29907:74;;29990:93;30079:3;29990:93;:::i;:::-;30108:2;30103:3;30099:12;30092:19;;29751:366;;;:::o;30123:419::-;30289:4;30327:2;30316:9;30312:18;30304:26;;30376:9;30370:4;30366:20;30362:1;30351:9;30347:17;30340:47;30404:131;30530:4;30404:131;:::i;:::-;30396:139;;30123:419;;;:::o;30548:162::-;30688:14;30684:1;30676:6;30672:14;30665:38;30548:162;:::o;30716:366::-;30858:3;30879:67;30943:2;30938:3;30879:67;:::i;:::-;30872:74;;30955:93;31044:3;30955:93;:::i;:::-;31073:2;31068:3;31064:12;31057:19;;30716:366;;;:::o;31088:419::-;31254:4;31292:2;31281:9;31277:18;31269:26;;31341:9;31335:4;31331:20;31327:1;31316:9;31312:17;31305:47;31369:131;31495:4;31369:131;:::i;:::-;31361:139;;31088:419;;;:::o;31513:176::-;31653:28;31649:1;31641:6;31637:14;31630:52;31513:176;:::o;31695:366::-;31837:3;31858:67;31922:2;31917:3;31858:67;:::i;:::-;31851:74;;31934:93;32023:3;31934:93;:::i;:::-;32052:2;32047:3;32043:12;32036:19;;31695:366;;;:::o;32067:419::-;32233:4;32271:2;32260:9;32256:18;32248:26;;32320:9;32314:4;32310:20;32306:1;32295:9;32291:17;32284:47;32348:131;32474:4;32348:131;:::i;:::-;32340:139;;32067:419;;;:::o;32492:238::-;32632:34;32628:1;32620:6;32616:14;32609:58;32701:21;32696:2;32688:6;32684:15;32677:46;32492:238;:::o;32736:366::-;32878:3;32899:67;32963:2;32958:3;32899:67;:::i;:::-;32892:74;;32975:93;33064:3;32975:93;:::i;:::-;33093:2;33088:3;33084:12;33077:19;;32736:366;;;:::o;33108:419::-;33274:4;33312:2;33301:9;33297:18;33289:26;;33361:9;33355:4;33351:20;33347:1;33336:9;33332:17;33325:47;33389:131;33515:4;33389:131;:::i;:::-;33381:139;;33108:419;;;:::o;33533:234::-;33673:34;33669:1;33661:6;33657:14;33650:58;33742:17;33737:2;33729:6;33725:15;33718:42;33533:234;:::o;33773:366::-;33915:3;33936:67;34000:2;33995:3;33936:67;:::i;:::-;33929:74;;34012:93;34101:3;34012:93;:::i;:::-;34130:2;34125:3;34121:12;34114:19;;33773:366;;;:::o;34145:419::-;34311:4;34349:2;34338:9;34334:18;34326:26;;34398:9;34392:4;34388:20;34384:1;34373:9;34369:17;34362:47;34426:131;34552:4;34426:131;:::i;:::-;34418:139;;34145:419;;;:::o;34570:148::-;34672:11;34709:3;34694:18;;34570:148;;;;:::o;34724:141::-;34773:4;34796:3;34788:11;;34819:3;34816:1;34809:14;34853:4;34850:1;34840:18;34832:26;;34724:141;;;:::o;34895:845::-;34998:3;35035:5;35029:12;35064:36;35090:9;35064:36;:::i;:::-;35116:89;35198:6;35193:3;35116:89;:::i;:::-;35109:96;;35236:1;35225:9;35221:17;35252:1;35247:137;;;;35398:1;35393:341;;;;35214:520;;35247:137;35331:4;35327:9;35316;35312:25;35307:3;35300:38;35367:6;35362:3;35358:16;35351:23;;35247:137;;35393:341;35460:38;35492:5;35460:38;:::i;:::-;35520:1;35534:154;35548:6;35545:1;35542:13;35534:154;;;35622:7;35616:14;35612:1;35607:3;35603:11;35596:35;35672:1;35663:7;35659:15;35648:26;;35570:4;35567:1;35563:12;35558:17;;35534:154;;;35717:6;35712:3;35708:16;35701:23;;35400:334;;35214:520;;35002:738;;34895:845;;;;:::o;35746:377::-;35852:3;35880:39;35913:5;35880:39;:::i;:::-;35935:89;36017:6;36012:3;35935:89;:::i;:::-;35928:96;;36033:52;36078:6;36073:3;36066:4;36059:5;36055:16;36033:52;:::i;:::-;36110:6;36105:3;36101:16;36094:23;;35856:267;35746:377;;;;:::o;36129:583::-;36351:3;36373:92;36461:3;36452:6;36373:92;:::i;:::-;36366:99;;36482:95;36573:3;36564:6;36482:95;:::i;:::-;36475:102;;36594:92;36682:3;36673:6;36594:92;:::i;:::-;36587:99;;36703:3;36696:10;;36129:583;;;;;;:::o;36718:158::-;36858:10;36854:1;36846:6;36842:14;36835:34;36718:158;:::o;36882:365::-;37024:3;37045:66;37109:1;37104:3;37045:66;:::i;:::-;37038:73;;37120:93;37209:3;37120:93;:::i;:::-;37238:2;37233:3;37229:12;37222:19;;36882:365;;;:::o;37253:419::-;37419:4;37457:2;37446:9;37442:18;37434:26;;37506:9;37500:4;37496:20;37492:1;37481:9;37477:17;37470:47;37534:131;37660:4;37534:131;:::i;:::-;37526:139;;37253:419;;;:::o;37678:180::-;37818:32;37814:1;37806:6;37802:14;37795:56;37678:180;:::o;37864:366::-;38006:3;38027:67;38091:2;38086:3;38027:67;:::i;:::-;38020:74;;38103:93;38192:3;38103:93;:::i;:::-;38221:2;38216:3;38212:12;38205:19;;37864:366;;;:::o;38236:419::-;38402:4;38440:2;38429:9;38425:18;38417:26;;38489:9;38483:4;38479:20;38475:1;38464:9;38460:17;38453:47;38517:131;38643:4;38517:131;:::i;:::-;38509:139;;38236:419;;;:::o;38661:177::-;38801:29;38797:1;38789:6;38785:14;38778:53;38661:177;:::o;38844:366::-;38986:3;39007:67;39071:2;39066:3;39007:67;:::i;:::-;39000:74;;39083:93;39172:3;39083:93;:::i;:::-;39201:2;39196:3;39192:12;39185:19;;38844:366;;;:::o;39216:419::-;39382:4;39420:2;39409:9;39405:18;39397:26;;39469:9;39463:4;39459:20;39455:1;39444:9;39440:17;39433:47;39497:131;39623:4;39497:131;:::i;:::-;39489:139;;39216:419;;;:::o;39641:94::-;39674:8;39722:5;39718:2;39714:14;39693:35;;39641:94;;;:::o;39741:::-;39780:7;39809:20;39823:5;39809:20;:::i;:::-;39798:31;;39741:94;;;:::o;39841:100::-;39880:7;39909:26;39929:5;39909:26;:::i;:::-;39898:37;;39841:100;;;:::o;39947:157::-;40052:45;40072:24;40090:5;40072:24;:::i;:::-;40052:45;:::i;:::-;40047:3;40040:58;39947:157;;:::o;40110:256::-;40222:3;40237:75;40308:3;40299:6;40237:75;:::i;:::-;40337:2;40332:3;40328:12;40321:19;;40357:3;40350:10;;40110:256;;;;:::o;40372:163::-;40512:15;40508:1;40500:6;40496:14;40489:39;40372:163;:::o;40541:366::-;40683:3;40704:67;40768:2;40763:3;40704:67;:::i;:::-;40697:74;;40780:93;40869:3;40780:93;:::i;:::-;40898:2;40893:3;40889:12;40882:19;;40541:366;;;:::o;40913:419::-;41079:4;41117:2;41106:9;41102:18;41094:26;;41166:9;41160:4;41156:20;41152:1;41141:9;41137:17;41130:47;41194:131;41320:4;41194:131;:::i;:::-;41186:139;;40913:419;;;:::o;41338:225::-;41478:34;41474:1;41466:6;41462:14;41455:58;41547:8;41542:2;41534:6;41530:15;41523:33;41338:225;:::o;41569:366::-;41711:3;41732:67;41796:2;41791:3;41732:67;:::i;:::-;41725:74;;41808:93;41897:3;41808:93;:::i;:::-;41926:2;41921:3;41917:12;41910:19;;41569:366;;;:::o;41941:419::-;42107:4;42145:2;42134:9;42130:18;42122:26;;42194:9;42188:4;42184:20;42180:1;42169:9;42165:17;42158:47;42222:131;42348:4;42222:131;:::i;:::-;42214:139;;41941:419;;;:::o;42366:182::-;42506:34;42502:1;42494:6;42490:14;42483:58;42366:182;:::o;42554:366::-;42696:3;42717:67;42781:2;42776:3;42717:67;:::i;:::-;42710:74;;42793:93;42882:3;42793:93;:::i;:::-;42911:2;42906:3;42902:12;42895:19;;42554:366;;;:::o;42926:419::-;43092:4;43130:2;43119:9;43115:18;43107:26;;43179:9;43173:4;43169:20;43165:1;43154:9;43150:17;43143:47;43207:131;43333:4;43207:131;:::i;:::-;43199:139;;42926:419;;;:::o;43351:237::-;43491:34;43487:1;43479:6;43475:14;43468:58;43560:20;43555:2;43547:6;43543:15;43536:45;43351:237;:::o;43594:366::-;43736:3;43757:67;43821:2;43816:3;43757:67;:::i;:::-;43750:74;;43833:93;43922:3;43833:93;:::i;:::-;43951:2;43946:3;43942:12;43935:19;;43594:366;;;:::o;43966:419::-;44132:4;44170:2;44159:9;44155:18;44147:26;;44219:9;44213:4;44209:20;44205:1;44194:9;44190:17;44183:47;44247:131;44373:4;44247:131;:::i;:::-;44239:139;;43966:419;;;:::o;44391:225::-;44531:34;44527:1;44519:6;44515:14;44508:58;44600:8;44595:2;44587:6;44583:15;44576:33;44391:225;:::o;44622:366::-;44764:3;44785:67;44849:2;44844:3;44785:67;:::i;:::-;44778:74;;44861:93;44950:3;44861:93;:::i;:::-;44979:2;44974:3;44970:12;44963:19;;44622:366;;;:::o;44994:419::-;45160:4;45198:2;45187:9;45183:18;45175:26;;45247:9;45241:4;45237:20;45233:1;45222:9;45218:17;45211:47;45275:131;45401:4;45275:131;:::i;:::-;45267:139;;44994:419;;;:::o;45419:224::-;45559:34;45555:1;45547:6;45543:14;45536:58;45628:7;45623:2;45615:6;45611:15;45604:32;45419:224;:::o;45649:366::-;45791:3;45812:67;45876:2;45871:3;45812:67;:::i;:::-;45805:74;;45888:93;45977:3;45888:93;:::i;:::-;46006:2;46001:3;45997:12;45990:19;;45649:366;;;:::o;46021:419::-;46187:4;46225:2;46214:9;46210:18;46202:26;;46274:9;46268:4;46264:20;46260:1;46249:9;46245:17;46238:47;46302:131;46428:4;46302:131;:::i;:::-;46294:139;;46021:419;;;:::o;46446:118::-;46483:7;46523:34;46516:5;46512:46;46501:57;;46446:118;;;:::o;46570:191::-;46610:4;46630:20;46648:1;46630:20;:::i;:::-;46625:25;;46664:20;46682:1;46664:20;:::i;:::-;46659:25;;46703:1;46700;46697:8;46694:34;;;46708:18;;:::i;:::-;46694:34;46753:1;46750;46746:9;46738:17;;46570:191;;;;:::o;46767:273::-;46807:3;46826:20;46844:1;46826:20;:::i;:::-;46821:25;;46860:20;46878:1;46860:20;:::i;:::-;46855:25;;46982:1;46946:34;46942:42;46939:1;46936:49;46933:75;;;46988:18;;:::i;:::-;46933:75;47032:1;47029;47025:9;47018:16;;46767:273;;;;:::o;47046:229::-;47186:34;47182:1;47174:6;47170:14;47163:58;47255:12;47250:2;47242:6;47238:15;47231:37;47046:229;:::o;47281:366::-;47423:3;47444:67;47508:2;47503:3;47444:67;:::i;:::-;47437:74;;47520:93;47609:3;47520:93;:::i;:::-;47638:2;47633:3;47629:12;47622:19;;47281:366;;;:::o;47653:419::-;47819:4;47857:2;47846:9;47842:18;47834:26;;47906:9;47900:4;47896:20;47892:1;47881:9;47877:17;47870:47;47934:131;48060:4;47934:131;:::i;:::-;47926:139;;47653:419;;;:::o;48078:171::-;48117:3;48140:24;48158:5;48140:24;:::i;:::-;48131:33;;48186:4;48179:5;48176:15;48173:41;;;48194:18;;:::i;:::-;48173:41;48241:1;48234:5;48230:13;48223:20;;48078:171;;;:::o;48255:234::-;48395:34;48391:1;48383:6;48379:14;48372:58;48464:17;48459:2;48451:6;48447:15;48440:42;48255:234;:::o;48495:366::-;48637:3;48658:67;48722:2;48717:3;48658:67;:::i;:::-;48651:74;;48734:93;48823:3;48734:93;:::i;:::-;48852:2;48847:3;48843:12;48836:19;;48495:366;;;:::o;48867:419::-;49033:4;49071:2;49060:9;49056:18;49048:26;;49120:9;49114:4;49110:20;49106:1;49095:9;49091:17;49084:47;49148:131;49274:4;49148:131;:::i;:::-;49140:139;;48867:419;;;:::o;49292:176::-;49432:28;49428:1;49420:6;49416:14;49409:52;49292:176;:::o;49474:366::-;49616:3;49637:67;49701:2;49696:3;49637:67;:::i;:::-;49630:74;;49713:93;49802:3;49713:93;:::i;:::-;49831:2;49826:3;49822:12;49815:19;;49474:366;;;:::o;49846:419::-;50012:4;50050:2;50039:9;50035:18;50027:26;;50099:9;50093:4;50089:20;50085:1;50074:9;50070:17;50063:47;50127:131;50253:4;50127:131;:::i;:::-;50119:139;;49846:419;;;:::o;50271:98::-;50322:6;50356:5;50350:12;50340:22;;50271:98;;;:::o;50375:168::-;50458:11;50492:6;50487:3;50480:19;50532:4;50527:3;50523:14;50508:29;;50375:168;;;;:::o;50549:360::-;50635:3;50663:38;50695:5;50663:38;:::i;:::-;50717:70;50780:6;50775:3;50717:70;:::i;:::-;50710:77;;50796:52;50841:6;50836:3;50829:4;50822:5;50818:16;50796:52;:::i;:::-;50873:29;50895:6;50873:29;:::i;:::-;50868:3;50864:39;50857:46;;50639:270;50549:360;;;;:::o;50915:640::-;51110:4;51148:3;51137:9;51133:19;51125:27;;51162:71;51230:1;51219:9;51215:17;51206:6;51162:71;:::i;:::-;51243:72;51311:2;51300:9;51296:18;51287:6;51243:72;:::i;:::-;51325;51393:2;51382:9;51378:18;51369:6;51325:72;:::i;:::-;51444:9;51438:4;51434:20;51429:2;51418:9;51414:18;51407:48;51472:76;51543:4;51534:6;51472:76;:::i;:::-;51464:84;;50915:640;;;;;;;:::o;51561:141::-;51617:5;51648:6;51642:13;51633:22;;51664:32;51690:5;51664:32;:::i;:::-;51561:141;;;;:::o;51708:349::-;51777:6;51826:2;51814:9;51805:7;51801:23;51797:32;51794:119;;;51832:79;;:::i;:::-;51794:119;51952:1;51977:63;52032:7;52023:6;52012:9;52008:22;51977:63;:::i;:::-;51967:73;;51923:127;51708:349;;;;:::o;52063:176::-;52095:1;52112:20;52130:1;52112:20;:::i;:::-;52107:25;;52146:20;52164:1;52146:20;:::i;:::-;52141:25;;52185:1;52175:35;;52190:18;;:::i;:::-;52175:35;52231:1;52228;52224:9;52219:14;;52063:176;;;;:::o;52245:180::-;52293:77;52290:1;52283:88;52390:4;52387:1;52380:15;52414:4;52411:1;52404:15;52431:220;52571:34;52567:1;52559:6;52555:14;52548:58;52640:3;52635:2;52627:6;52623:15;52616:28;52431:220;:::o;52657:366::-;52799:3;52820:67;52884:2;52879:3;52820:67;:::i;:::-;52813:74;;52896:93;52985:3;52896:93;:::i;:::-;53014:2;53009:3;53005:12;52998:19;;52657:366;;;:::o;53029:419::-;53195:4;53233:2;53222:9;53218:18;53210:26;;53282:9;53276:4;53272:20;53268:1;53257:9;53253:17;53246:47;53310:131;53436:4;53310:131;:::i;:::-;53302:139;;53029:419;;;:::o;53454:179::-;53594:31;53590:1;53582:6;53578:14;53571:55;53454:179;:::o;53639:366::-;53781:3;53802:67;53866:2;53861:3;53802:67;:::i;:::-;53795:74;;53878:93;53967:3;53878:93;:::i;:::-;53996:2;53991:3;53987:12;53980:19;;53639:366;;;:::o;54011:419::-;54177:4;54215:2;54204:9;54200:18;54192:26;;54264:9;54258:4;54254:20;54250:1;54239:9;54235:17;54228:47;54292:131;54418:4;54292:131;:::i;:::-;54284:139;;54011:419;;;:::o;54436:221::-;54576:34;54572:1;54564:6;54560:14;54553:58;54645:4;54640:2;54632:6;54628:15;54621:29;54436:221;:::o;54663:366::-;54805:3;54826:67;54890:2;54885:3;54826:67;:::i;:::-;54819:74;;54902:93;54991:3;54902:93;:::i;:::-;55020:2;55015:3;55011:12;55004:19;;54663:366;;;:::o;55035:419::-;55201:4;55239:2;55228:9;55224:18;55216:26;;55288:9;55282:4;55278:20;55274:1;55263:9;55259:17;55252:47;55316:131;55442:4;55316:131;:::i;:::-;55308:139;;55035:419;;;:::o

Swarm Source

ipfs://130407e877a4673a38db38772f227d5f41fdeb01a2b27f4985ec039309e48093
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.