ETH Price: $3,686.66 (+2.65%)

Token

Universe By Barnabe (UBB)
 

Overview

Max Total Supply

700 UBB

Holders

170

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
b3nlunt.eth
Balance
4 UBB
0xdf9ee56b3f5b13bc03381ac144f0c2950ae95a56
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:
UniverseByBarnabe

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-28
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/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/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: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.2.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of ERC721A.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the
     * ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` 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);

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

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

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.2.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev Interface of ERC721 token receiver.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Reference type for token approval.
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant _BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant _BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant _BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant _BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

    // The number of tokens burned.
    uint256 private _burnCounter;

    // 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 {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view virtual returns (uint256) {
        // Counter underflow is impossible as `_currentIndex` does not decrement,
        // and it is initialized to `_startTokenId()`.
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> _BITPOS_AUX);
    }

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal virtual {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public virtual override {
        address owner = ownerOf(tokenId);

        if (_msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                revert ApprovalCallerNotOwnerNorApproved();
            }

        _tokenApprovals[tokenId].value = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

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

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

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

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token IDs
     * are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * `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`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    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.
     * And also called after one token has been burned.
     *
     * `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` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns whether the call correctly returned the expected magic value.
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, 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: contracts/UniversebyBarnabe.sol


// @dev:Vadim Chilinciuc
/*
//////////////////////////////////((((             /////////////////////////////
//////////////////////////////(((((                    /////////////////////////
//////////////////////////////(((@@@@      #@@@%       ///////////////////((((*
///////////////////////////////@((@((((((((((@#((@/////////////////////((((
/////////////////((((     ///&#((#@((((((((((@#(((@////////////////////((((.
///////////((((             %#(((@((((((((((((@#(((@////////////////////////////
///////(((((                @(((((((((((((((((((((((%///////////////////////////
////////((((   *&###@#@@   %#(((((((((((((((((((((((@///@@(@&###@///////////////
///////////////@#######@(((@%###%@@@@@@@@@@@&#######%@@((@######@ */////////////
////////////////@%#######@(((((#@@%#############@@&((((@%#####@     ////////////
   ////////////////@@#####%@@((((((((((((((((((((((((@&###&@*            ///////
       /////////////@***/@**((&@(((((((((((((((((@@((,*@/***.      (    *///////
        //////////(***/@@******,,(((@@@@@@@@(((/....,,**@(***@//////////////////
 //, ////////////%**/@********,,,,,,,,,,,****,,.....,,**#@***(/////////////////
////////////////(****@/**@@%%@*,,@@%%%@,,,,@&&@*,..@%%%@**%%***@////////////////
/////////////////&**&&**@%%%%%%%%%%%%%%@,@%%%%%%%&%%%%%%@,*@#*@/////////////////
//////////////((((( @,,*@%%%%%%%%%%%%%%*,%%%%%%%%%%%%%%%@,,*@///////////////////
/////////////((((  @*,,,/%%%%%%%%%%%%@,,,,(&%%%%%%%%%%%/..,,@&//////////////////
//////////////(((/,@,,,,**(@%%%%%%%@,,,,,,,(&%%%%%%%%@*,....,@////////((((
//////////@@@@*,,&@@,,******((@%%@,,,,,,,,,,.//@%%@*,****,...@@%,,(@@@&
////////@....,,,,,,/,,*********/***,,,,,,,,,..../..,,,,,***,,....,,,*,**@
///////@.....,,,,,//,**************,,,,,,,,,,.........,,,,****,....,,,,,,@/,*///
///////@.....,,,,///****************,,,,,,,,,............,,,,***,.....,,,@//////
////////@.....,//////*****@@@@@@@****,,,,,,,,...@@@@@@.....,,,,***,,....@///////
         /******@@@@   @@@@@@@@@@@@.   @@@@.......@(/////@@@/////////
                ///@//******@@@@@@@@@@@***@@@@@@@@@@@........@//////////////////
                ,//@//********@@@@@@///****@@@@@@@@..........@//////////////////
///////////////////@///*****,,,,,@@@@@///*************(@%@@.*@//////////////////
///////////////////@@///**,,,,,,,,,,,,,(@//////@@.........@.@%//////////////////
////////////////////@////,,,,,,,,,,.........................@   .///////////////
////////////////////@#////,,,,,............................@%      /////////////
/////////////////////@///**.............................,,,@           /////////
*/
// @dev:Vadim Chilinciuc
pragma solidity >=0.7.0 <0.9.0;






contract UniverseByBarnabe is ERC721A, Ownable {
    using Address for address;
    using Strings for uint256;
    // Mint Configuration
    uint public constant MAX_SUPPLY = 4444;
    uint256 public PRICE=0.1 ether;
    bool private isRevealed=false;
    // TEST phase
   address test1=0xb8D6006E642D9413438c5543Cd932c3c35caA983;
   address test2=0x06aD1493CEe495405E44aD2f04d5FA42548ee7e8;
    mapping(address => bool) _testPhaseMinted;
    // TEAM phase
    bool isTeamMinted=false;
    address teamWallet=0x39cF23FD79A9cB7Ff368208952cd884A00d58E22;
    // BREAK / Whales phase
    bytes32 public breaksWhitelistedMerkleRoot=0xd020cbd2089ccacb82c6aaa466f587abb262398967baeda79e3b404e33195ce2;
    bytes32 public whalesWhitelistedMerkleRoot=0xbfe15b6d5865a57c3d6751151b01a641087b0529370dee47f6168cfb63fff75e;
    mapping(address => uint256) public totalBreaksMinted;
    mapping(address => uint256) public totalWhalesMinted;
    uint8 break_max_mint=2;
    uint8 whales_max_mint=20;
    uint128 breakWhalesTotalSupply=400;
    uint256 counterBreakWhales=0;
    // Whitelist Phase 1;
    bytes32 public WhitelistePhase1MerkleRoot=0xf30281ee5663fe71e4452d31a0e9232ebd9cf8c10e2413a6d18354add8cf7305;
    uint8 whitelist_phase1_max_mint=1;
    mapping(address => bool) public totalWhitelistPhase1Mint;
    // Whitelist Phase 2;
    bytes32 public WhitelistePhase2MerkleRoot=0xbb4f0ec7bd43fece37ab66dd4c55c8c201fac683719aaadb21d309c639bfbae1;
    mapping(address => bool) public totalWhitelistPhase2Mint;
    uint8 whitelist_phase2_max_mint=1;
    // Public Phase
    uint8 public_phase_max_mint=5;
    mapping(address => uint128) public totalPublicPhaseMint;
    // Mint Phases
    bool public test_phase;
    bool public team_phase;
    bool public break_whales;
    bool public whitelistPhase1;
    bool public whitelistPhase2;
    bool public publicSale;
    // Not Revealed & Base URI
    string private notRevealUrl="https://gateway.pinata.cloud/ipfs/QmPKmZruHghRT6ZH1KqqwvmuoetghuzHGQdmZr2zSyLnMU";
    string public _contractBaseURI="https://gateway.pinata.cloud/ipfs/QmVacwzRX13jHEBBmn3cef5LG2bL6YvFJwPcoXC5hXNvAD/";
    constructor() ERC721A("Universe By Barnabe", "UBB") {
         test_phase=true;
         team_phase=false;
         break_whales=false;
         whitelistPhase1=false;
         whitelistPhase2=false;
         publicSale=false;
         transferOwnership(0xf04259802afE11dFed4971b5872319934aB5a95B);
         }
    function getPhaseQuantity() external view returns(uint256){
                if(test_phase && !team_phase && !break_whales && !whitelistPhase1 && !whitelistPhase2 && !publicSale) {
            return 1;
        }else if(test_phase && team_phase && !break_whales && !whitelistPhase1 && !whitelistPhase2 && !publicSale){
            return 142;
        }else if(test_phase && team_phase && break_whales && !whitelistPhase1 && !whitelistPhase2 && !publicSale){
            return break_max_mint;
        }else if(test_phase && team_phase && break_whales && whitelistPhase1 && !whitelistPhase2 && !publicSale){
            return whitelist_phase1_max_mint;
        }else if(test_phase && team_phase && break_whales && whitelistPhase1 && whitelistPhase2 && !publicSale){
            return whitelist_phase2_max_mint;
        }else if(publicSale){
            return public_phase_max_mint;
            }
    }
    function getPhase() external view returns (string memory){
        if(test_phase && !team_phase && !break_whales && !whitelistPhase1 && !whitelistPhase2 && !publicSale) {
            return "test-phase";
        }else if(test_phase && team_phase && !break_whales && !whitelistPhase1 && !whitelistPhase2 && !publicSale){
            return "team-phase";
        }else if(test_phase && team_phase && break_whales && !whitelistPhase1 && !whitelistPhase2 && !publicSale){
            return "break-whales";
        }else if(test_phase && team_phase && break_whales && whitelistPhase1 && !whitelistPhase2 && !publicSale){
            return "whitelist-phase-1";
        }else if(test_phase && team_phase && break_whales && whitelistPhase1 && whitelistPhase2 && !publicSale){
            return "whitelist-phase-2";
        }else if(publicSale){
            return "public-phase";
            }
    }
    function testPhaseMint() external payable  {
        require(test_phase==true,"Not in test phase !");
        require(msg.sender == test1 || msg.sender == test2 ,"You are not test admin");
        require(_testPhaseMinted[msg.sender] != true ,"Already Mint");
        require(PRICE <= msg.value, "Insufficient funds sent");
       _testPhaseMinted[msg.sender]=true;
        _safeMint(msg.sender, 1);
    }
    function teamMint() external {
        require(team_phase == true , "Not in Team Phase !");
        require(isTeamMinted == false ,"Already Mint !");
        require(msg.sender == teamWallet,"This is not team wallet ! ");
        isTeamMinted=true;
        _safeMint(teamWallet, 142);
    }
    function whitelistMint(bytes32[] memory _merkleProof, uint128 _quantity) external payable{
        require(_quantity > 0, "Quantity cannot be zero");
        require((totalSupply() + _quantity) <= MAX_SUPPLY, "Cannot mint beyond max supply");
        require(PRICE * _quantity <= msg.value, "Insufficient funds sent");
        bytes32 sender = keccak256(abi.encodePacked(msg.sender));
     if(break_whales == true && whitelistPhase1 == false && whitelistPhase2 == false && publicSale==false){
        if(counterBreakWhales <= breakWhalesTotalSupply){
            if(MerkleProof.verify(_merkleProof, breaksWhitelistedMerkleRoot, sender)){
            require((totalBreaksMinted[msg.sender] + _quantity)  <= break_max_mint, " Cannot mint beyond break whitelist max mint!");
            totalBreaksMinted[msg.sender] += _quantity;
            counterBreakWhales++;
            _safeMint(msg.sender, _quantity);
            }else if(MerkleProof.verify(_merkleProof, whalesWhitelistedMerkleRoot, sender)){
           require((totalWhalesMinted[msg.sender] + _quantity)  <= whales_max_mint, " Cannot mint beyond break whitelist max mint!");
           totalWhalesMinted[msg.sender] += _quantity;
            counterBreakWhales++;
          _safeMint(msg.sender, _quantity);
            }else{
            revert("Not in Break Whitelist && Not in Whales Whitelist !");
            }
        }else{
            revert("Total Supply of 400 is finished !");
        }
     }else if (break_whales == true && whitelistPhase1 == true  && whitelistPhase2 == false  && publicSale==false){
        require(totalWhitelistPhase1Mint[msg.sender] != true, " Cannot mint more !!");
            if(MerkleProof.verify(_merkleProof, WhitelistePhase1MerkleRoot, sender)){
            totalWhitelistPhase1Mint[msg.sender] = true;
            _safeMint(msg.sender, 1);
            }else if(MerkleProof.verify(_merkleProof, breaksWhitelistedMerkleRoot, sender)){
            totalWhitelistPhase1Mint[msg.sender] =true;
            _safeMint(msg.sender, 1);
            }else if(MerkleProof.verify(_merkleProof, whalesWhitelistedMerkleRoot, sender)){
            totalWhitelistPhase1Mint[msg.sender] =true;
            _safeMint(msg.sender, 1);
        }else{
            revert("Not in  Whitelist!");
        }
    }else if(break_whales == true && whitelistPhase1 == true  && whitelistPhase2 == true  && publicSale==false){
        if(MerkleProof.verify(_merkleProof, WhitelistePhase2MerkleRoot, sender)){
           require(totalWhitelistPhase2Mint[msg.sender] != true, " Cannot mint beyond break whitelist max mint!");
           totalWhitelistPhase2Mint[msg.sender] =true;
          _safeMint(msg.sender, 1);
        }else if(MerkleProof.verify(_merkleProof, WhitelistePhase1MerkleRoot, sender)){
           require(totalWhitelistPhase2Mint[msg.sender] != true, " Cannot mint beyond break whitelist max mint!");
           totalWhitelistPhase2Mint[msg.sender] =true;
          _safeMint(msg.sender, 1);
        }
        else if(MerkleProof.verify(_merkleProof, breaksWhitelistedMerkleRoot, sender)){
           require(totalWhitelistPhase2Mint[msg.sender] != true, " Cannot mint beyond break whitelist max mint!");
           totalWhitelistPhase2Mint[msg.sender] =true;
          _safeMint(msg.sender, 1);
        }else if(MerkleProof.verify(_merkleProof, whalesWhitelistedMerkleRoot, sender)){
           require(totalWhitelistPhase2Mint[msg.sender] != true, " Cannot mint beyond break whitelist max mint!");
           totalWhitelistPhase2Mint[msg.sender] =true;
          _safeMint(msg.sender, 1);
        }else{
             revert("We are not ready yet !");
        }
     }else if (publicSale==true){
        require(_quantity > 0, "Quantity cannot be zero");
        uint totalMinted = totalSupply();
        require(totalMinted+_quantity < MAX_SUPPLY, "Not enough NFTs left to mint");
        require((totalPublicPhaseMint[msg.sender] + _quantity) <= public_phase_max_mint, " Cannot mint beyond public max mint!");
        totalPublicPhaseMint[msg.sender] += _quantity;
        _safeMint(msg.sender, _quantity);
    }else{
        revert("We are not ready yet !");
        }
    }
  function mint(uint128 quantity) external  payable {
        require(publicSale == true, " We are not in public mint yet .");
        require(quantity > 0, "Quantity cannot be zero");
        uint totalMinted = totalSupply();
        require(totalMinted+quantity < MAX_SUPPLY, "Not enough NFTs left to mint");
        require(PRICE * quantity <= msg.value, "Insufficient funds sent");
        require((totalPublicPhaseMint[msg.sender] + quantity) <= public_phase_max_mint, " Cannot mint beyond public max mint!");
        totalPublicPhaseMint[msg.sender] += quantity;
        _safeMint(msg.sender, quantity);
    }
    function burn(uint256 _tokenId) external  {
        require(balanceOf(msg.sender)  >= 1,"You dont have NFTs");
        safeTransferFrom(msg.sender,0xb06bab4FB68420377B96AFb4EE3455AdC700F746,_tokenId);
        _safeMint(msg.sender, 1);
    }
        // reserve MAX_RESERVE_SUPPLY for promotional purposes
    function reserveNFTs(address to, uint256 quantity) external onlyOwner  {
        require(quantity > 0, "Quantity cannot be zero");
        uint totalMinted = totalSupply();
        _safeMint(to, quantity);
    }
    function setPrice(uint256 _price) public onlyOwner {
        PRICE=_price;
    }
    function setPublicSale()public onlyOwner{
        publicSale=!publicSale;
    }
    function setTeamPhase()public onlyOwner{
        team_phase=!team_phase;
    }
    function setBreakAndWhalesPhase()public onlyOwner{
        break_whales=!break_whales;
    }
    function setWhitelistPhase1() public onlyOwner{
        whitelistPhase1=!whitelistPhase1;
    }
    function setWhitelistPhase2() public onlyOwner{
        whitelistPhase2=!whitelistPhase2;
    }
    function setTokenUri(string memory newBaseTokenURI) public  onlyOwner {
        _contractBaseURI=newBaseTokenURI;
    }
    function setNotRevealUri(string memory newNotRevealedURI)public onlyOwner {
        notRevealUrl=newNotRevealedURI;
    }
    function revealCollection() public  onlyOwner  {
        isRevealed=true;
    }
    function _baseURI() internal view override returns (string memory) {
        return _contractBaseURI;
    }
    //return uri for certain token
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        if(!isRevealed){
            return notRevealUrl;
        }
        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), ".json")) : "";
    }
    function withdraw() public onlyOwner  {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WhitelistePhase1MerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WhitelistePhase2MerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_contractBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"break_whales","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"breaksWhitelistedMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPhase","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPhaseQuantity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint128","name":"quantity","type":"uint128"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"reserveNFTs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealCollection","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":[],"name":"setBreakAndWhalesPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newNotRevealedURI","type":"string"}],"name":"setNotRevealUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setTeamPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseTokenURI","type":"string"}],"name":"setTokenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setWhitelistPhase1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setWhitelistPhase2","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":[],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"team_phase","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"testPhaseMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"test_phase","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalBreaksMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalPublicPhaseMint","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalWhalesMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalWhitelistPhase1Mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"totalWhitelistPhase2Mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whalesWhitelistedMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint128","name":"_quantity","type":"uint128"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistPhase1","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistPhase2","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405267016345785d8a00006009556000600a60006101000a81548160ff02191690831515021790555073b8d6006e642d9413438c5543cd932c3c35caa983600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507306ad1493cee495405e44ad2f04d5fa42548ee7e8600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600d60006101000a81548160ff0219169083151502179055507339cf23fd79a9cb7ff368208952cd884a00d58e22600d60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fd020cbd2089ccacb82c6aaa466f587abb262398967baeda79e3b404e33195ce260001b600e557fbfe15b6d5865a57c3d6751151b01a641087b0529370dee47f6168cfb63fff75e60001b600f556002601260006101000a81548160ff021916908360ff1602179055506014601260016101000a81548160ff021916908360ff160217905550610190601260026101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060006013557ff30281ee5663fe71e4452d31a0e9232ebd9cf8c10e2413a6d18354add8cf730560001b6014556001601560006101000a81548160ff021916908360ff1602179055507fbb4f0ec7bd43fece37ab66dd4c55c8c201fac683719aaadb21d309c639bfbae160001b6017556001601960006101000a81548160ff021916908360ff1602179055506005601960016101000a81548160ff021916908360ff1602179055506040518060800160405280605081526020016200667e60509139601c9080519060200190620002de929190620006e7565b50604051806080016040528060518152602001620066ce60519139601d908051906020019062000310929190620006e7565b503480156200031e57600080fd5b506040518060400160405280601381526020017f556e697665727365204279204261726e616265000000000000000000000000008152506040518060400160405280600381526020017f55424200000000000000000000000000000000000000000000000000000000008152508160029080519060200190620003a3929190620006e7565b508060039080519060200190620003bc929190620006e7565b50620003cd620004c260201b60201c565b6000819055505050620003f5620003e9620004c760201b60201c565b620004cf60201b60201c565b6001601b60006101000a81548160ff0219169083151502179055506000601b60016101000a81548160ff0219169083151502179055506000601b60026101000a81548160ff0219169083151502179055506000601b60036101000a81548160ff0219169083151502179055506000601b60046101000a81548160ff0219169083151502179055506000601b60056101000a81548160ff021916908315150217905550620004bc73f04259802afe11dfed4971b5872319934ab5a95b6200059560201b60201c565b62000917565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620005a56200062c60201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141562000618576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200060f90620007e5565b60405180910390fd5b6200062981620004cf60201b60201c565b50565b6200063c620004c760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000662620006bd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620006bb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006b29062000807565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620006f5906200083a565b90600052602060002090601f01602090048101928262000719576000855562000765565b82601f106200073457805160ff191683800117855562000765565b8280016001018555821562000765579182015b828111156200076457825182559160200191906001019062000747565b5b50905062000774919062000778565b5090565b5b808211156200079357600081600090555060010162000779565b5090565b6000620007a660268362000829565b9150620007b3826200089f565b604082019050919050565b6000620007cd60208362000829565b9150620007da82620008ee565b602082019050919050565b60006020820190508181036000830152620008008162000797565b9050919050565b600060208201905081810360008301526200082281620007be565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200085357607f821691505b602082108114156200086a576200086962000870565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b615d5780620009276000396000f3fe60806040526004361061031a5760003560e01c80636d970e7e116101ab578063aa08f396116100f7578063d4d61cb211610095578063e985e9c51161006f578063e985e9c514610af5578063eced028014610b32578063f2fde38b14610b5d578063f7a4d39614610b865761031a565b8063d4d61cb214610a97578063e173181814610ab3578063e264003014610aca5761031a565b8063c31d64c3116100d1578063c31d64c3146109db578063c87b56dd146109f2578063cbb0cb4314610a2f578063cf18097e14610a6c5761031a565b8063aa08f39614610972578063b88d4fde1461099b578063ba7a86b8146109c45761031a565b80638a774aa71161016457806391b7f5ed1161013e57806391b7f5ed146108eb57806395d89b4114610914578063a22cb4651461093f578063a319aff3146109685761031a565b80638a774aa71461087e5780638d859f3e146108955780638da5cb5b146108c05761031a565b80636d970e7e146107945780636ddb095c146107ab57806370a08231146107d657806370a8de86146108135780637101ebca1461083c578063715018a6146108675761031a565b806335273ed61161026a57806342966c681161022357806351660e1c116101fd57806351660e1c146106e757806356f8f78c146107245780636352211e1461073b57806369d3e20e146107785761031a565b806342966c6814610668578063442d4258146106915780634a7fdf2f146106bc5761031a565b806335273ed61461056c5780633c9ce10b146105a95780633ccfd60b146105e65780633eb32357146105fd57806340d0b4a91461062857806342842e0e1461063f5761031a565b806317f293f3116102d757806323b872dd116102b157806323b872dd146104c257806332cb6b0c146104eb57806333bc1c5c1461051657806334cc03f4146105415761031a565b806317f293f31461044157806318160ddd1461046c5780631df6ac1c146104975761031a565b806301ffc9a71461031f5780630675b7c61461035c57806306fdde0314610385578063079c6a3c146103b0578063081812fc146103db578063095ea7b314610418575b600080fd5b34801561032b57600080fd5b506103466004803603810190610341919061498e565b610bc3565b6040516103539190614f66565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e91906149e8565b610c55565b005b34801561039157600080fd5b5061039a610c77565b6040516103a79190614f9c565b60405180910390f35b3480156103bc57600080fd5b506103c5610d09565b6040516103d29190614f81565b60405180910390f35b3480156103e757600080fd5b5061040260048036038101906103fd9190614a5e565b610d0f565b60405161040f9190614eff565b60405180910390f35b34801561042457600080fd5b5061043f600480360381019061043a91906148f2565b610d8e565b005b34801561044d57600080fd5b50610456610ed2565b6040516104639190614f66565b60405180910390f35b34801561047857600080fd5b50610481610ee5565b60405161048e9190615299565b60405180910390f35b3480156104a357600080fd5b506104ac610efc565b6040516104b99190614f81565b60405180910390f35b3480156104ce57600080fd5b506104e960048036038101906104e491906147dc565b610f02565b005b3480156104f757600080fd5b50610500611227565b60405161050d9190615299565b60405180910390f35b34801561052257600080fd5b5061052b61122d565b6040516105389190614f66565b60405180910390f35b34801561054d57600080fd5b50610556611240565b6040516105639190614f66565b60405180910390f35b34801561057857600080fd5b50610593600480360381019061058e919061476f565b611253565b6040516105a09190615299565b60405180910390f35b3480156105b557600080fd5b506105d060048036038101906105cb919061476f565b61126b565b6040516105dd9190614f66565b60405180910390f35b3480156105f257600080fd5b506105fb61128b565b005b34801561060957600080fd5b506106126112e2565b60405161061f9190614f81565b60405180910390f35b34801561063457600080fd5b5061063d6112e8565b005b34801561064b57600080fd5b50610666600480360381019061066191906147dc565b61130d565b005b34801561067457600080fd5b5061068f600480360381019061068a9190614a5e565b61132d565b005b34801561069d57600080fd5b506106a66113a6565b6040516106b39190614f66565b60405180910390f35b3480156106c857600080fd5b506106d16113b9565b6040516106de9190615299565b60405180910390f35b3480156106f357600080fd5b5061070e6004803603810190610709919061476f565b61171e565b60405161071b919061527e565b60405180910390f35b34801561073057600080fd5b5061073961174d565b005b34801561074757600080fd5b50610762600480360381019061075d9190614a5e565b611781565b60405161076f9190614eff565b60405180910390f35b610792600480360381019061078d9190614a31565b611793565b005b3480156107a057600080fd5b506107a9611a9a565b005b3480156107b757600080fd5b506107c0611ace565b6040516107cd9190614f66565b60405180910390f35b3480156107e257600080fd5b506107fd60048036038101906107f8919061476f565b611ae1565b60405161080a9190615299565b60405180910390f35b34801561081f57600080fd5b5061083a600480360381019061083591906148f2565b611b9a565b005b34801561084857600080fd5b50610851611c00565b60405161085e9190614f9c565b60405180910390f35b34801561087357600080fd5b5061087c611c8e565b005b34801561088a57600080fd5b50610893611ca2565b005b3480156108a157600080fd5b506108aa611cd6565b6040516108b79190615299565b60405180910390f35b3480156108cc57600080fd5b506108d5611cdc565b6040516108e29190614eff565b60405180910390f35b3480156108f757600080fd5b50610912600480360381019061090d9190614a5e565b611d06565b005b34801561092057600080fd5b50610929611d18565b6040516109369190614f9c565b60405180910390f35b34801561094b57600080fd5b50610966600480360381019061096191906148b2565b611daa565b005b610970611f22565b005b34801561097e57600080fd5b50610999600480360381019061099491906149e8565b61219e565b005b3480156109a757600080fd5b506109c260048036038101906109bd919061482f565b6121c0565b005b3480156109d057600080fd5b506109d9612233565b005b3480156109e757600080fd5b506109f06123b9565b005b3480156109fe57600080fd5b50610a196004803603810190610a149190614a5e565b6123ed565b604051610a269190614f9c565b60405180910390f35b348015610a3b57600080fd5b50610a566004803603810190610a51919061476f565b61253b565b604051610a639190614f66565b60405180910390f35b348015610a7857600080fd5b50610a8161255b565b604051610a8e9190614f66565b60405180910390f35b610ab16004803603810190610aac9190614932565b61256e565b005b348015610abf57600080fd5b50610ac8613515565b005b348015610ad657600080fd5b50610adf613549565b604051610aec9190614f81565b60405180910390f35b348015610b0157600080fd5b50610b1c6004803603810190610b17919061479c565b61354f565b604051610b299190614f66565b60405180910390f35b348015610b3e57600080fd5b50610b476135e3565b604051610b549190614f9c565b60405180910390f35b348015610b6957600080fd5b50610b846004803603810190610b7f919061476f565b613a3c565b005b348015610b9257600080fd5b50610bad6004803603810190610ba8919061476f565b613ac0565b604051610bba9190615299565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c1e57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c4e5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610c5d613ad8565b80601d9080519060200190610c739291906144bb565b5050565b606060028054610c86906155e1565b80601f0160208091040260200160405190810160405280929190818152602001828054610cb2906155e1565b8015610cff5780601f10610cd457610100808354040283529160200191610cff565b820191906000526020600020905b815481529060010190602001808311610ce257829003601f168201915b5050505050905090565b600f5481565b6000610d1a82613b56565b610d50576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d9982611781565b90508073ffffffffffffffffffffffffffffffffffffffff16610dba613bb5565b73ffffffffffffffffffffffffffffffffffffffff1614610e1d57610de681610de1613bb5565b61354f565b610e1c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b601b60049054906101000a900460ff1681565b6000610eef613bbd565b6001546000540303905090565b600e5481565b6000610f0d82613bc2565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f74576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610f8084613c90565b91509150610f968187610f91613bb5565b613cb7565b610fe257610fab86610fa6613bb5565b61354f565b610fe1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611049576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6110568686866001613cfb565b801561106157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061112f8561110b888887613d01565b7c020000000000000000000000000000000000000000000000000000000017613d29565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156111b75760006001850190506000600460008381526020019081526020016000205414156111b55760005481146111b4578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461121f8686866001613d54565b505050505050565b61115c81565b601b60059054906101000a900460ff1681565b601b60009054906101000a900460ff1681565b60106020528060005260406000206000915090505481565b60166020528060005260406000206000915054906101000a900460ff1681565b611293613ad8565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156112de573d6000803e3d6000fd5b5050565b60175481565b6112f0613ad8565b6001600a60006101000a81548160ff021916908315150217905550565b611328838383604051806020016040528060008152506121c0565b505050565b600161133833611ae1565b1015611379576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611370906150de565b60405180910390fd5b6113983373b06bab4fb68420377b96afb4ee3455adc700f7468361130d565b6113a3336001613d5a565b50565b601b60029054906101000a900460ff1681565b6000601b60009054906101000a900460ff1680156113e45750601b60019054906101000a900460ff16155b80156113fd5750601b60029054906101000a900460ff16155b80156114165750601b60039054906101000a900460ff16155b801561142f5750601b60049054906101000a900460ff16155b80156114485750601b60059054906101000a900460ff16155b15611456576001905061171b565b601b60009054906101000a900460ff16801561147e5750601b60019054906101000a900460ff165b80156114975750601b60029054906101000a900460ff16155b80156114b05750601b60039054906101000a900460ff16155b80156114c95750601b60049054906101000a900460ff16155b80156114e25750601b60059054906101000a900460ff16155b156114f057608e905061171b565b601b60009054906101000a900460ff1680156115185750601b60019054906101000a900460ff165b80156115305750601b60029054906101000a900460ff165b80156115495750601b60039054906101000a900460ff16155b80156115625750601b60049054906101000a900460ff16155b801561157b5750601b60059054906101000a900460ff16155b1561159a57601260009054906101000a900460ff1660ff16905061171b565b601b60009054906101000a900460ff1680156115c25750601b60019054906101000a900460ff165b80156115da5750601b60029054906101000a900460ff165b80156115f25750601b60039054906101000a900460ff165b801561160b5750601b60049054906101000a900460ff16155b80156116245750601b60059054906101000a900460ff16155b1561164357601560009054906101000a900460ff1660ff16905061171b565b601b60009054906101000a900460ff16801561166b5750601b60019054906101000a900460ff165b80156116835750601b60029054906101000a900460ff165b801561169b5750601b60039054906101000a900460ff165b80156116b35750601b60049054906101000a900460ff165b80156116cc5750601b60059054906101000a900460ff16155b156116eb57601960009054906101000a900460ff1660ff16905061171b565b601b60059054906101000a900460ff161561171a57601960019054906101000a900460ff1660ff16905061171b565b5b90565b601a6020528060005260406000206000915054906101000a90046fffffffffffffffffffffffffffffffff1681565b611755613ad8565b601b60059054906101000a900460ff1615601b60056101000a81548160ff021916908315150217905550565b600061178c82613bc2565b9050919050565b60011515601b60059054906101000a900460ff161515146117e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e090614fde565b60405180910390fd5b6000816fffffffffffffffffffffffffffffffff161161183e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611835906150be565b60405180910390fd5b6000611848610ee5565b905061115c826fffffffffffffffffffffffffffffffff168261186b91906153f0565b106118ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a29061507e565b60405180910390fd5b34826fffffffffffffffffffffffffffffffff166009546118cc9190615477565b111561190d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119049061521e565b60405180910390fd5b601960019054906101000a900460ff1660ff1682601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a90046fffffffffffffffffffffffffffffffff1661198791906153aa565b6fffffffffffffffffffffffffffffffff1611156119da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d19061511e565b60405180910390fd5b81601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a90046fffffffffffffffffffffffffffffffff16611a4491906153aa565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550611a9633836fffffffffffffffffffffffffffffffff16613d5a565b5050565b611aa2613ad8565b601b60039054906101000a900460ff1615601b60036101000a81548160ff021916908315150217905550565b601b60019054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b49576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611ba2613ad8565b60008111611be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdc906150be565b60405180910390fd5b6000611bef610ee5565b9050611bfb8383613d5a565b505050565b601d8054611c0d906155e1565b80601f0160208091040260200160405190810160405280929190818152602001828054611c39906155e1565b8015611c865780601f10611c5b57610100808354040283529160200191611c86565b820191906000526020600020905b815481529060010190602001808311611c6957829003601f168201915b505050505081565b611c96613ad8565b611ca06000613d78565b565b611caa613ad8565b601b60049054906101000a900460ff1615601b60046101000a81548160ff021916908315150217905550565b60095481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611d0e613ad8565b8060098190555050565b606060038054611d27906155e1565b80601f0160208091040260200160405190810160405280929190818152602001828054611d53906155e1565b8015611da05780601f10611d7557610100808354040283529160200191611da0565b820191906000526020600020905b815481529060010190602001808311611d8357829003601f168201915b5050505050905090565b611db2613bb5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e17576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611e24613bb5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ed1613bb5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f169190614f66565b60405180910390a35050565b60011515601b60009054906101000a900460ff16151514611f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6f90614ffe565b60405180910390fd5b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806120215750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b612060576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612057906150fe565b60405180910390fd5b60011515600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514156120f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120eb9061525e565b60405180910390fd5b346009541115612139576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121309061521e565b60405180910390fd5b6001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061219c336001613d5a565b565b6121a6613ad8565b80601c90805190602001906121bc9291906144bb565b5050565b6121cb848484610f02565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461222d576121f684848484613e3e565b61222c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60011515601b60019054906101000a900460ff16151514612289576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122809061503e565b60405180910390fd5b60001515600d60009054906101000a900460ff161515146122df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d69061513e565b60405180910390fd5b600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461236f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612366906151fe565b60405180910390fd5b6001600d60006101000a81548160ff0219169083151502179055506123b7600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16608e613d5a565b565b6123c1613ad8565b601b60029054906101000a900460ff1615601b60026101000a81548160ff021916908315150217905550565b60606123f882613b56565b612437576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242e9061517e565b60405180910390fd5b600a60009054906101000a900460ff166124dd57601c8054612458906155e1565b80601f0160208091040260200160405190810160405280929190818152602001828054612484906155e1565b80156124d15780601f106124a6576101008083540402835291602001916124d1565b820191906000526020600020905b8154815290600101906020018083116124b457829003601f168201915b50505050509050612536565b60006124e7613f9e565b905060008151116125075760405180602001604052806000815250612532565b8061251184614030565b604051602001612522929190614ed0565b6040516020818303038152906040525b9150505b919050565b60186020528060005260406000206000915054906101000a900460ff1681565b601b60039054906101000a900460ff1681565b6000816fffffffffffffffffffffffffffffffff16116125c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ba906150be565b60405180910390fd5b61115c816fffffffffffffffffffffffffffffffff166125e1610ee5565b6125eb91906153f0565b111561262c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262390614fbe565b60405180910390fd5b34816fffffffffffffffffffffffffffffffff1660095461264d9190615477565b111561268e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126859061521e565b60405180910390fd5b6000336040516020016126a19190614eb5565b60405160208183030381529060405280519060200120905060011515601b60029054906101000a900460ff1615151480156126ef575060001515601b60039054906101000a900460ff161515145b801561270e575060001515601b60049054906101000a900460ff161515145b801561272d575060001515601b60059054906101000a900460ff161515145b15612ab457601260029054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1660135411612a745761277883600e5483614191565b156128cf57601260009054906101000a900460ff1660ff16826fffffffffffffffffffffffffffffffff16601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546127ed91906153f0565b111561282e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128259061509e565b60405180910390fd5b816fffffffffffffffffffffffffffffffff16601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461288f91906153f0565b92505081905550601360008154809291906128a990615644565b91905055506128ca33836fffffffffffffffffffffffffffffffff16613d5a565b612a6f565b6128dc83600f5483614191565b15612a3357601260019054906101000a900460ff1660ff16826fffffffffffffffffffffffffffffffff16601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461295191906153f0565b1115612992576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129899061509e565b60405180910390fd5b816fffffffffffffffffffffffffffffffff16601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129f391906153f0565b9250508190555060136000815480929190612a0d90615644565b9190505550612a2e33836fffffffffffffffffffffffffffffffff16613d5a565b612a6e565b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a65906151be565b60405180910390fd5b5b612aaf565b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa6906151de565b60405180910390fd5b613510565b60011515601b60029054906101000a900460ff161515148015612aea575060011515601b60039054906101000a900460ff161515145b8015612b09575060001515601b60049054906101000a900460ff161515145b8015612b28575060001515601b60059054906101000a900460ff161515145b15612d715760011515601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415612bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb89061519e565b60405180910390fd5b612bce8360145483614191565b15612c3b576001601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612c36336001613d5a565b612d6c565b612c4883600e5483614191565b15612cb5576001601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612cb0336001613d5a565b612d6b565b612cc283600f5483614191565b15612d2f576001601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612d2a336001613d5a565b612d6a565b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d619061523e565b60405180910390fd5b5b5b61350f565b60011515601b60029054906101000a900460ff161515148015612da7575060011515601b60039054906101000a900460ff161515145b8015612dc6575060011515601b60049054906101000a900460ff161515145b8015612de5575060001515601b60059054906101000a900460ff161515145b1561326557612df78360175483614191565b15612ef85760011515601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415612e90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e879061509e565b60405180910390fd5b6001601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612ef3336001613d5a565b613260565b612f058360145483614191565b156130065760011515601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415612f9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f959061509e565b60405180910390fd5b6001601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550613001336001613d5a565b61325f565b61301383600e5483614191565b156131145760011515601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514156130ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130a39061509e565b60405180910390fd5b6001601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061310f336001613d5a565b61325e565b61312183600f5483614191565b156132225760011515601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514156131ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131b19061509e565b60405180910390fd5b6001601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061321d336001613d5a565b61325d565b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132549061501e565b60405180910390fd5b5b5b5b61350e565b60011515601b60059054906101000a900460ff16151514156134d2576000826fffffffffffffffffffffffffffffffff16116132d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132cd906150be565b60405180910390fd5b60006132e0610ee5565b905061115c836fffffffffffffffffffffffffffffffff168261330391906153f0565b10613343576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161333a9061507e565b60405180910390fd5b601960019054906101000a900460ff1660ff1683601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a90046fffffffffffffffffffffffffffffffff166133bd91906153aa565b6fffffffffffffffffffffffffffffffff161115613410576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134079061511e565b60405180910390fd5b82601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a90046fffffffffffffffffffffffffffffffff1661347a91906153aa565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506134cc33846fffffffffffffffffffffffffffffffff16613d5a565b5061350d565b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135049061501e565b60405180910390fd5b5b5b5b505050565b61351d613ad8565b601b60019054906101000a900460ff1615601b60016101000a81548160ff021916908315150217905550565b60145481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060601b60009054906101000a900460ff16801561360e5750601b60019054906101000a900460ff16155b80156136275750601b60029054906101000a900460ff16155b80156136405750601b60039054906101000a900460ff16155b80156136595750601b60049054906101000a900460ff16155b80156136725750601b60059054906101000a900460ff16155b156136b4576040518060400160405280600a81526020017f746573742d7068617365000000000000000000000000000000000000000000008152509050613a39565b601b60009054906101000a900460ff1680156136dc5750601b60019054906101000a900460ff165b80156136f55750601b60029054906101000a900460ff16155b801561370e5750601b60039054906101000a900460ff16155b80156137275750601b60049054906101000a900460ff16155b80156137405750601b60059054906101000a900460ff16155b15613782576040518060400160405280600a81526020017f7465616d2d7068617365000000000000000000000000000000000000000000008152509050613a39565b601b60009054906101000a900460ff1680156137aa5750601b60019054906101000a900460ff165b80156137c25750601b60029054906101000a900460ff165b80156137db5750601b60039054906101000a900460ff16155b80156137f45750601b60049054906101000a900460ff16155b801561380d5750601b60059054906101000a900460ff16155b1561384f576040518060400160405280600c81526020017f627265616b2d7768616c657300000000000000000000000000000000000000008152509050613a39565b601b60009054906101000a900460ff1680156138775750601b60019054906101000a900460ff165b801561388f5750601b60029054906101000a900460ff165b80156138a75750601b60039054906101000a900460ff165b80156138c05750601b60049054906101000a900460ff16155b80156138d95750601b60059054906101000a900460ff16155b1561391b576040518060400160405280601181526020017f77686974656c6973742d70686173652d310000000000000000000000000000008152509050613a39565b601b60009054906101000a900460ff1680156139435750601b60019054906101000a900460ff165b801561395b5750601b60029054906101000a900460ff165b80156139735750601b60039054906101000a900460ff165b801561398b5750601b60049054906101000a900460ff165b80156139a45750601b60059054906101000a900460ff16155b156139e6576040518060400160405280601181526020017f77686974656c6973742d70686173652d320000000000000000000000000000008152509050613a39565b601b60059054906101000a900460ff1615613a38576040518060400160405280600c81526020017f7075626c69632d706861736500000000000000000000000000000000000000008152509050613a39565b5b90565b613a44613ad8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613ab4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613aab9061505e565b60405180910390fd5b613abd81613d78565b50565b60116020528060005260406000206000915090505481565b613ae06141a8565b73ffffffffffffffffffffffffffffffffffffffff16613afe611cdc565b73ffffffffffffffffffffffffffffffffffffffff1614613b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b4b9061515e565b60405180910390fd5b565b600081613b61613bbd565b11158015613b70575060005482105b8015613bae575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080613bd1613bbd565b11613c5957600054811015613c585760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415613c56575b6000811415613c4c576004600083600190039350838152602001908152602001600020549050613c21565b8092505050613c8b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8613d188686846141b0565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b613d748282604051806020016040528060008152506141b9565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613e64613bb5565b8786866040518563ffffffff1660e01b8152600401613e869493929190614f1a565b602060405180830381600087803b158015613ea057600080fd5b505af1925050508015613ed157506040513d601f19601f82011682018060405250810190613ece91906149bb565b60015b613f4b573d8060008114613f01576040519150601f19603f3d011682016040523d82523d6000602084013e613f06565b606091505b50600081511415613f43576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601d8054613fad906155e1565b80601f0160208091040260200160405190810160405280929190818152602001828054613fd9906155e1565b80156140265780601f10613ffb57610100808354040283529160200191614026565b820191906000526020600020905b81548152906001019060200180831161400957829003601f168201915b5050505050905090565b60606000821415614078576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061418c565b600082905060005b600082146140aa57808061409390615644565b915050600a826140a39190615446565b9150614080565b60008167ffffffffffffffff8111156140c6576140c561579e565b5b6040519080825280601f01601f1916602001820160405280156140f85781602001600182028036833780820191505090505b5090505b600085146141855760018261411191906154d1565b9150600a8561412091906156b1565b603061412c91906153f0565b60f81b8183815181106141425761414161576f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561417e9190615446565b94506140fc565b8093505050505b919050565b60008261419e8584614256565b1490509392505050565b600033905090565b60009392505050565b6141c383836142ac565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461425157600080549050600083820390505b6142036000868380600101945086613e3e565b614239576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106141f057816000541461424e57600080fd5b50505b505050565b60008082905060005b84518110156142a15761428c8286838151811061427f5761427e61576f565b5b6020026020010151614469565b9150808061429990615644565b91505061425f565b508091505092915050565b60008054905060008214156142ed576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6142fa6000848385613cfb565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550614371836143626000866000613d01565b61436b85614494565b17613d29565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461441257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506143d7565b50600082141561444e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506144646000848385613d54565b505050565b60008183106144815761447c82846144a4565b61448c565b61448b83836144a4565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b8280546144c7906155e1565b90600052602060002090601f0160209004810192826144e95760008555614530565b82601f1061450257805160ff1916838001178555614530565b82800160010185558215614530579182015b8281111561452f578251825591602001919060010190614514565b5b50905061453d9190614541565b5090565b5b8082111561455a576000816000905550600101614542565b5090565b600061457161456c846152d9565b6152b4565b90508083825260208201905082856020860282011115614594576145936157d2565b5b60005b858110156145c457816145aa88826146aa565b845260208401935060208301925050600181019050614597565b5050509392505050565b60006145e16145dc84615305565b6152b4565b9050828152602081018484840111156145fd576145fc6157d7565b5b61460884828561559f565b509392505050565b600061462361461e84615336565b6152b4565b90508281526020810184848401111561463f5761463e6157d7565b5b61464a84828561559f565b509392505050565b60008135905061466181615c97565b92915050565b600082601f83011261467c5761467b6157cd565b5b813561468c84826020860161455e565b91505092915050565b6000813590506146a481615cae565b92915050565b6000813590506146b981615cc5565b92915050565b6000813590506146ce81615cdc565b92915050565b6000815190506146e381615cdc565b92915050565b600082601f8301126146fe576146fd6157cd565b5b813561470e8482602086016145ce565b91505092915050565b600082601f83011261472c5761472b6157cd565b5b813561473c848260208601614610565b91505092915050565b60008135905061475481615cf3565b92915050565b60008135905061476981615d0a565b92915050565b600060208284031215614785576147846157e1565b5b600061479384828501614652565b91505092915050565b600080604083850312156147b3576147b26157e1565b5b60006147c185828601614652565b92505060206147d285828601614652565b9150509250929050565b6000806000606084860312156147f5576147f46157e1565b5b600061480386828701614652565b935050602061481486828701614652565b92505060406148258682870161475a565b9150509250925092565b60008060008060808587031215614849576148486157e1565b5b600061485787828801614652565b945050602061486887828801614652565b93505060406148798782880161475a565b925050606085013567ffffffffffffffff81111561489a576148996157dc565b5b6148a6878288016146e9565b91505092959194509250565b600080604083850312156148c9576148c86157e1565b5b60006148d785828601614652565b92505060206148e885828601614695565b9150509250929050565b60008060408385031215614909576149086157e1565b5b600061491785828601614652565b92505060206149288582860161475a565b9150509250929050565b60008060408385031215614949576149486157e1565b5b600083013567ffffffffffffffff811115614967576149666157dc565b5b61497385828601614667565b925050602061498485828601614745565b9150509250929050565b6000602082840312156149a4576149a36157e1565b5b60006149b2848285016146bf565b91505092915050565b6000602082840312156149d1576149d06157e1565b5b60006149df848285016146d4565b91505092915050565b6000602082840312156149fe576149fd6157e1565b5b600082013567ffffffffffffffff811115614a1c57614a1b6157dc565b5b614a2884828501614717565b91505092915050565b600060208284031215614a4757614a466157e1565b5b6000614a5584828501614745565b91505092915050565b600060208284031215614a7457614a736157e1565b5b6000614a828482850161475a565b91505092915050565b614a9481615505565b82525050565b614aab614aa682615505565b61568d565b82525050565b614aba81615517565b82525050565b614ac981615523565b82525050565b6000614ada82615367565b614ae4818561537d565b9350614af48185602086016155ae565b614afd816157e6565b840191505092915050565b6000614b1382615372565b614b1d818561538e565b9350614b2d8185602086016155ae565b614b36816157e6565b840191505092915050565b6000614b4c82615372565b614b56818561539f565b9350614b668185602086016155ae565b80840191505092915050565b6000614b7f601d8361538e565b9150614b8a82615804565b602082019050919050565b6000614ba260208361538e565b9150614bad8261582d565b602082019050919050565b6000614bc560138361538e565b9150614bd082615856565b602082019050919050565b6000614be860168361538e565b9150614bf38261587f565b602082019050919050565b6000614c0b60138361538e565b9150614c16826158a8565b602082019050919050565b6000614c2e60268361538e565b9150614c39826158d1565b604082019050919050565b6000614c51601c8361538e565b9150614c5c82615920565b602082019050919050565b6000614c74602d8361538e565b9150614c7f82615949565b604082019050919050565b6000614c9760178361538e565b9150614ca282615998565b602082019050919050565b6000614cba60128361538e565b9150614cc5826159c1565b602082019050919050565b6000614cdd60168361538e565b9150614ce8826159ea565b602082019050919050565b6000614d0060248361538e565b9150614d0b82615a13565b604082019050919050565b6000614d23600e8361538e565b9150614d2e82615a62565b602082019050919050565b6000614d4660058361539f565b9150614d5182615a8b565b600582019050919050565b6000614d6960208361538e565b9150614d7482615ab4565b602082019050919050565b6000614d8c602f8361538e565b9150614d9782615add565b604082019050919050565b6000614daf60148361538e565b9150614dba82615b2c565b602082019050919050565b6000614dd260338361538e565b9150614ddd82615b55565b604082019050919050565b6000614df560218361538e565b9150614e0082615ba4565b604082019050919050565b6000614e18601a8361538e565b9150614e2382615bf3565b602082019050919050565b6000614e3b60178361538e565b9150614e4682615c1c565b602082019050919050565b6000614e5e60128361538e565b9150614e6982615c45565b602082019050919050565b6000614e81600c8361538e565b9150614e8c82615c6e565b602082019050919050565b614ea081615559565b82525050565b614eaf81615595565b82525050565b6000614ec18284614a9a565b60148201915081905092915050565b6000614edc8285614b41565b9150614ee88284614b41565b9150614ef382614d39565b91508190509392505050565b6000602082019050614f146000830184614a8b565b92915050565b6000608082019050614f2f6000830187614a8b565b614f3c6020830186614a8b565b614f496040830185614ea6565b8181036060830152614f5b8184614acf565b905095945050505050565b6000602082019050614f7b6000830184614ab1565b92915050565b6000602082019050614f966000830184614ac0565b92915050565b60006020820190508181036000830152614fb68184614b08565b905092915050565b60006020820190508181036000830152614fd781614b72565b9050919050565b60006020820190508181036000830152614ff781614b95565b9050919050565b6000602082019050818103600083015261501781614bb8565b9050919050565b6000602082019050818103600083015261503781614bdb565b9050919050565b6000602082019050818103600083015261505781614bfe565b9050919050565b6000602082019050818103600083015261507781614c21565b9050919050565b6000602082019050818103600083015261509781614c44565b9050919050565b600060208201905081810360008301526150b781614c67565b9050919050565b600060208201905081810360008301526150d781614c8a565b9050919050565b600060208201905081810360008301526150f781614cad565b9050919050565b6000602082019050818103600083015261511781614cd0565b9050919050565b6000602082019050818103600083015261513781614cf3565b9050919050565b6000602082019050818103600083015261515781614d16565b9050919050565b6000602082019050818103600083015261517781614d5c565b9050919050565b6000602082019050818103600083015261519781614d7f565b9050919050565b600060208201905081810360008301526151b781614da2565b9050919050565b600060208201905081810360008301526151d781614dc5565b9050919050565b600060208201905081810360008301526151f781614de8565b9050919050565b6000602082019050818103600083015261521781614e0b565b9050919050565b6000602082019050818103600083015261523781614e2e565b9050919050565b6000602082019050818103600083015261525781614e51565b9050919050565b6000602082019050818103600083015261527781614e74565b9050919050565b60006020820190506152936000830184614e97565b92915050565b60006020820190506152ae6000830184614ea6565b92915050565b60006152be6152cf565b90506152ca8282615613565b919050565b6000604051905090565b600067ffffffffffffffff8211156152f4576152f361579e565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156153205761531f61579e565b5b615329826157e6565b9050602081019050919050565b600067ffffffffffffffff8211156153515761535061579e565b5b61535a826157e6565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006153b582615559565b91506153c083615559565b9250826fffffffffffffffffffffffffffffffff038211156153e5576153e46156e2565b5b828201905092915050565b60006153fb82615595565b915061540683615595565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561543b5761543a6156e2565b5b828201905092915050565b600061545182615595565b915061545c83615595565b92508261546c5761546b615711565b5b828204905092915050565b600061548282615595565b915061548d83615595565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156154c6576154c56156e2565b5b828202905092915050565b60006154dc82615595565b91506154e783615595565b9250828210156154fa576154f96156e2565b5b828203905092915050565b600061551082615575565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156155cc5780820151818401526020810190506155b1565b838111156155db576000848401525b50505050565b600060028204905060018216806155f957607f821691505b6020821081141561560d5761560c615740565b5b50919050565b61561c826157e6565b810181811067ffffffffffffffff8211171561563b5761563a61579e565b5b80604052505050565b600061564f82615595565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615682576156816156e2565b5b600182019050919050565b60006156988261569f565b9050919050565b60006156aa826157f7565b9050919050565b60006156bc82615595565b91506156c783615595565b9250826156d7576156d6615711565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f43616e6e6f74206d696e74206265796f6e64206d617820737570706c79000000600082015250565b7f20576520617265206e6f7420696e207075626c6963206d696e7420796574202e600082015250565b7f4e6f7420696e2074657374207068617365202100000000000000000000000000600082015250565b7f576520617265206e6f7420726561647920796574202100000000000000000000600082015250565b7f4e6f7420696e205465616d205068617365202100000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768204e465473206c65667420746f206d696e7400000000600082015250565b7f2043616e6e6f74206d696e74206265796f6e6420627265616b2077686974656c60008201527f697374206d6178206d696e742100000000000000000000000000000000000000602082015250565b7f5175616e746974792063616e6e6f74206265207a65726f000000000000000000600082015250565b7f596f7520646f6e742068617665204e4654730000000000000000000000000000600082015250565b7f596f7520617265206e6f7420746573742061646d696e00000000000000000000600082015250565b7f2043616e6e6f74206d696e74206265796f6e64207075626c6963206d6178206d60008201527f696e742100000000000000000000000000000000000000000000000000000000602082015250565b7f416c7265616479204d696e742021000000000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f2043616e6e6f74206d696e74206d6f7265202121000000000000000000000000600082015250565b7f4e6f7420696e20427265616b2057686974656c697374202626204e6f7420696e60008201527f205768616c65732057686974656c697374202100000000000000000000000000602082015250565b7f546f74616c20537570706c79206f66203430302069732066696e69736865642060008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b7f54686973206973206e6f74207465616d2077616c6c6574202120000000000000600082015250565b7f496e73756666696369656e742066756e64732073656e74000000000000000000600082015250565b7f4e6f7420696e202057686974656c697374210000000000000000000000000000600082015250565b7f416c7265616479204d696e740000000000000000000000000000000000000000600082015250565b615ca081615505565b8114615cab57600080fd5b50565b615cb781615517565b8114615cc257600080fd5b50565b615cce81615523565b8114615cd957600080fd5b50565b615ce58161552d565b8114615cf057600080fd5b50565b615cfc81615559565b8114615d0757600080fd5b50565b615d1381615595565b8114615d1e57600080fd5b5056fea26469706673582212209af9b3c07df36314489c931abf7f950ca61e5bec2f3e9d7ad7cec3c84cca0c6a64736f6c6343000807003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d504b6d5a72754867685254365a48314b717177766d756f65746768757a484751646d5a72327a53794c6e4d5568747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d566163777a525831336a484542426d6e33636566354c4732624c365976464a7750636f58433568584e7641442f

Deployed Bytecode

0x60806040526004361061031a5760003560e01c80636d970e7e116101ab578063aa08f396116100f7578063d4d61cb211610095578063e985e9c51161006f578063e985e9c514610af5578063eced028014610b32578063f2fde38b14610b5d578063f7a4d39614610b865761031a565b8063d4d61cb214610a97578063e173181814610ab3578063e264003014610aca5761031a565b8063c31d64c3116100d1578063c31d64c3146109db578063c87b56dd146109f2578063cbb0cb4314610a2f578063cf18097e14610a6c5761031a565b8063aa08f39614610972578063b88d4fde1461099b578063ba7a86b8146109c45761031a565b80638a774aa71161016457806391b7f5ed1161013e57806391b7f5ed146108eb57806395d89b4114610914578063a22cb4651461093f578063a319aff3146109685761031a565b80638a774aa71461087e5780638d859f3e146108955780638da5cb5b146108c05761031a565b80636d970e7e146107945780636ddb095c146107ab57806370a08231146107d657806370a8de86146108135780637101ebca1461083c578063715018a6146108675761031a565b806335273ed61161026a57806342966c681161022357806351660e1c116101fd57806351660e1c146106e757806356f8f78c146107245780636352211e1461073b57806369d3e20e146107785761031a565b806342966c6814610668578063442d4258146106915780634a7fdf2f146106bc5761031a565b806335273ed61461056c5780633c9ce10b146105a95780633ccfd60b146105e65780633eb32357146105fd57806340d0b4a91461062857806342842e0e1461063f5761031a565b806317f293f3116102d757806323b872dd116102b157806323b872dd146104c257806332cb6b0c146104eb57806333bc1c5c1461051657806334cc03f4146105415761031a565b806317f293f31461044157806318160ddd1461046c5780631df6ac1c146104975761031a565b806301ffc9a71461031f5780630675b7c61461035c57806306fdde0314610385578063079c6a3c146103b0578063081812fc146103db578063095ea7b314610418575b600080fd5b34801561032b57600080fd5b506103466004803603810190610341919061498e565b610bc3565b6040516103539190614f66565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e91906149e8565b610c55565b005b34801561039157600080fd5b5061039a610c77565b6040516103a79190614f9c565b60405180910390f35b3480156103bc57600080fd5b506103c5610d09565b6040516103d29190614f81565b60405180910390f35b3480156103e757600080fd5b5061040260048036038101906103fd9190614a5e565b610d0f565b60405161040f9190614eff565b60405180910390f35b34801561042457600080fd5b5061043f600480360381019061043a91906148f2565b610d8e565b005b34801561044d57600080fd5b50610456610ed2565b6040516104639190614f66565b60405180910390f35b34801561047857600080fd5b50610481610ee5565b60405161048e9190615299565b60405180910390f35b3480156104a357600080fd5b506104ac610efc565b6040516104b99190614f81565b60405180910390f35b3480156104ce57600080fd5b506104e960048036038101906104e491906147dc565b610f02565b005b3480156104f757600080fd5b50610500611227565b60405161050d9190615299565b60405180910390f35b34801561052257600080fd5b5061052b61122d565b6040516105389190614f66565b60405180910390f35b34801561054d57600080fd5b50610556611240565b6040516105639190614f66565b60405180910390f35b34801561057857600080fd5b50610593600480360381019061058e919061476f565b611253565b6040516105a09190615299565b60405180910390f35b3480156105b557600080fd5b506105d060048036038101906105cb919061476f565b61126b565b6040516105dd9190614f66565b60405180910390f35b3480156105f257600080fd5b506105fb61128b565b005b34801561060957600080fd5b506106126112e2565b60405161061f9190614f81565b60405180910390f35b34801561063457600080fd5b5061063d6112e8565b005b34801561064b57600080fd5b50610666600480360381019061066191906147dc565b61130d565b005b34801561067457600080fd5b5061068f600480360381019061068a9190614a5e565b61132d565b005b34801561069d57600080fd5b506106a66113a6565b6040516106b39190614f66565b60405180910390f35b3480156106c857600080fd5b506106d16113b9565b6040516106de9190615299565b60405180910390f35b3480156106f357600080fd5b5061070e6004803603810190610709919061476f565b61171e565b60405161071b919061527e565b60405180910390f35b34801561073057600080fd5b5061073961174d565b005b34801561074757600080fd5b50610762600480360381019061075d9190614a5e565b611781565b60405161076f9190614eff565b60405180910390f35b610792600480360381019061078d9190614a31565b611793565b005b3480156107a057600080fd5b506107a9611a9a565b005b3480156107b757600080fd5b506107c0611ace565b6040516107cd9190614f66565b60405180910390f35b3480156107e257600080fd5b506107fd60048036038101906107f8919061476f565b611ae1565b60405161080a9190615299565b60405180910390f35b34801561081f57600080fd5b5061083a600480360381019061083591906148f2565b611b9a565b005b34801561084857600080fd5b50610851611c00565b60405161085e9190614f9c565b60405180910390f35b34801561087357600080fd5b5061087c611c8e565b005b34801561088a57600080fd5b50610893611ca2565b005b3480156108a157600080fd5b506108aa611cd6565b6040516108b79190615299565b60405180910390f35b3480156108cc57600080fd5b506108d5611cdc565b6040516108e29190614eff565b60405180910390f35b3480156108f757600080fd5b50610912600480360381019061090d9190614a5e565b611d06565b005b34801561092057600080fd5b50610929611d18565b6040516109369190614f9c565b60405180910390f35b34801561094b57600080fd5b50610966600480360381019061096191906148b2565b611daa565b005b610970611f22565b005b34801561097e57600080fd5b50610999600480360381019061099491906149e8565b61219e565b005b3480156109a757600080fd5b506109c260048036038101906109bd919061482f565b6121c0565b005b3480156109d057600080fd5b506109d9612233565b005b3480156109e757600080fd5b506109f06123b9565b005b3480156109fe57600080fd5b50610a196004803603810190610a149190614a5e565b6123ed565b604051610a269190614f9c565b60405180910390f35b348015610a3b57600080fd5b50610a566004803603810190610a51919061476f565b61253b565b604051610a639190614f66565b60405180910390f35b348015610a7857600080fd5b50610a8161255b565b604051610a8e9190614f66565b60405180910390f35b610ab16004803603810190610aac9190614932565b61256e565b005b348015610abf57600080fd5b50610ac8613515565b005b348015610ad657600080fd5b50610adf613549565b604051610aec9190614f81565b60405180910390f35b348015610b0157600080fd5b50610b1c6004803603810190610b17919061479c565b61354f565b604051610b299190614f66565b60405180910390f35b348015610b3e57600080fd5b50610b476135e3565b604051610b549190614f9c565b60405180910390f35b348015610b6957600080fd5b50610b846004803603810190610b7f919061476f565b613a3c565b005b348015610b9257600080fd5b50610bad6004803603810190610ba8919061476f565b613ac0565b604051610bba9190615299565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c1e57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c4e5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610c5d613ad8565b80601d9080519060200190610c739291906144bb565b5050565b606060028054610c86906155e1565b80601f0160208091040260200160405190810160405280929190818152602001828054610cb2906155e1565b8015610cff5780601f10610cd457610100808354040283529160200191610cff565b820191906000526020600020905b815481529060010190602001808311610ce257829003601f168201915b5050505050905090565b600f5481565b6000610d1a82613b56565b610d50576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d9982611781565b90508073ffffffffffffffffffffffffffffffffffffffff16610dba613bb5565b73ffffffffffffffffffffffffffffffffffffffff1614610e1d57610de681610de1613bb5565b61354f565b610e1c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b601b60049054906101000a900460ff1681565b6000610eef613bbd565b6001546000540303905090565b600e5481565b6000610f0d82613bc2565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610f74576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610f8084613c90565b91509150610f968187610f91613bb5565b613cb7565b610fe257610fab86610fa6613bb5565b61354f565b610fe1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611049576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6110568686866001613cfb565b801561106157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061112f8561110b888887613d01565b7c020000000000000000000000000000000000000000000000000000000017613d29565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156111b75760006001850190506000600460008381526020019081526020016000205414156111b55760005481146111b4578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461121f8686866001613d54565b505050505050565b61115c81565b601b60059054906101000a900460ff1681565b601b60009054906101000a900460ff1681565b60106020528060005260406000206000915090505481565b60166020528060005260406000206000915054906101000a900460ff1681565b611293613ad8565b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156112de573d6000803e3d6000fd5b5050565b60175481565b6112f0613ad8565b6001600a60006101000a81548160ff021916908315150217905550565b611328838383604051806020016040528060008152506121c0565b505050565b600161133833611ae1565b1015611379576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611370906150de565b60405180910390fd5b6113983373b06bab4fb68420377b96afb4ee3455adc700f7468361130d565b6113a3336001613d5a565b50565b601b60029054906101000a900460ff1681565b6000601b60009054906101000a900460ff1680156113e45750601b60019054906101000a900460ff16155b80156113fd5750601b60029054906101000a900460ff16155b80156114165750601b60039054906101000a900460ff16155b801561142f5750601b60049054906101000a900460ff16155b80156114485750601b60059054906101000a900460ff16155b15611456576001905061171b565b601b60009054906101000a900460ff16801561147e5750601b60019054906101000a900460ff165b80156114975750601b60029054906101000a900460ff16155b80156114b05750601b60039054906101000a900460ff16155b80156114c95750601b60049054906101000a900460ff16155b80156114e25750601b60059054906101000a900460ff16155b156114f057608e905061171b565b601b60009054906101000a900460ff1680156115185750601b60019054906101000a900460ff165b80156115305750601b60029054906101000a900460ff165b80156115495750601b60039054906101000a900460ff16155b80156115625750601b60049054906101000a900460ff16155b801561157b5750601b60059054906101000a900460ff16155b1561159a57601260009054906101000a900460ff1660ff16905061171b565b601b60009054906101000a900460ff1680156115c25750601b60019054906101000a900460ff165b80156115da5750601b60029054906101000a900460ff165b80156115f25750601b60039054906101000a900460ff165b801561160b5750601b60049054906101000a900460ff16155b80156116245750601b60059054906101000a900460ff16155b1561164357601560009054906101000a900460ff1660ff16905061171b565b601b60009054906101000a900460ff16801561166b5750601b60019054906101000a900460ff165b80156116835750601b60029054906101000a900460ff165b801561169b5750601b60039054906101000a900460ff165b80156116b35750601b60049054906101000a900460ff165b80156116cc5750601b60059054906101000a900460ff16155b156116eb57601960009054906101000a900460ff1660ff16905061171b565b601b60059054906101000a900460ff161561171a57601960019054906101000a900460ff1660ff16905061171b565b5b90565b601a6020528060005260406000206000915054906101000a90046fffffffffffffffffffffffffffffffff1681565b611755613ad8565b601b60059054906101000a900460ff1615601b60056101000a81548160ff021916908315150217905550565b600061178c82613bc2565b9050919050565b60011515601b60059054906101000a900460ff161515146117e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e090614fde565b60405180910390fd5b6000816fffffffffffffffffffffffffffffffff161161183e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611835906150be565b60405180910390fd5b6000611848610ee5565b905061115c826fffffffffffffffffffffffffffffffff168261186b91906153f0565b106118ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a29061507e565b60405180910390fd5b34826fffffffffffffffffffffffffffffffff166009546118cc9190615477565b111561190d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119049061521e565b60405180910390fd5b601960019054906101000a900460ff1660ff1682601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a90046fffffffffffffffffffffffffffffffff1661198791906153aa565b6fffffffffffffffffffffffffffffffff1611156119da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d19061511e565b60405180910390fd5b81601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a90046fffffffffffffffffffffffffffffffff16611a4491906153aa565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550611a9633836fffffffffffffffffffffffffffffffff16613d5a565b5050565b611aa2613ad8565b601b60039054906101000a900460ff1615601b60036101000a81548160ff021916908315150217905550565b601b60019054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b49576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611ba2613ad8565b60008111611be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdc906150be565b60405180910390fd5b6000611bef610ee5565b9050611bfb8383613d5a565b505050565b601d8054611c0d906155e1565b80601f0160208091040260200160405190810160405280929190818152602001828054611c39906155e1565b8015611c865780601f10611c5b57610100808354040283529160200191611c86565b820191906000526020600020905b815481529060010190602001808311611c6957829003601f168201915b505050505081565b611c96613ad8565b611ca06000613d78565b565b611caa613ad8565b601b60049054906101000a900460ff1615601b60046101000a81548160ff021916908315150217905550565b60095481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611d0e613ad8565b8060098190555050565b606060038054611d27906155e1565b80601f0160208091040260200160405190810160405280929190818152602001828054611d53906155e1565b8015611da05780601f10611d7557610100808354040283529160200191611da0565b820191906000526020600020905b815481529060010190602001808311611d8357829003601f168201915b5050505050905090565b611db2613bb5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e17576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611e24613bb5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611ed1613bb5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611f169190614f66565b60405180910390a35050565b60011515601b60009054906101000a900460ff16151514611f78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6f90614ffe565b60405180910390fd5b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806120215750600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b612060576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612057906150fe565b60405180910390fd5b60011515600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514156120f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120eb9061525e565b60405180910390fd5b346009541115612139576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121309061521e565b60405180910390fd5b6001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061219c336001613d5a565b565b6121a6613ad8565b80601c90805190602001906121bc9291906144bb565b5050565b6121cb848484610f02565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461222d576121f684848484613e3e565b61222c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60011515601b60019054906101000a900460ff16151514612289576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122809061503e565b60405180910390fd5b60001515600d60009054906101000a900460ff161515146122df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d69061513e565b60405180910390fd5b600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461236f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612366906151fe565b60405180910390fd5b6001600d60006101000a81548160ff0219169083151502179055506123b7600d60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16608e613d5a565b565b6123c1613ad8565b601b60029054906101000a900460ff1615601b60026101000a81548160ff021916908315150217905550565b60606123f882613b56565b612437576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242e9061517e565b60405180910390fd5b600a60009054906101000a900460ff166124dd57601c8054612458906155e1565b80601f0160208091040260200160405190810160405280929190818152602001828054612484906155e1565b80156124d15780601f106124a6576101008083540402835291602001916124d1565b820191906000526020600020905b8154815290600101906020018083116124b457829003601f168201915b50505050509050612536565b60006124e7613f9e565b905060008151116125075760405180602001604052806000815250612532565b8061251184614030565b604051602001612522929190614ed0565b6040516020818303038152906040525b9150505b919050565b60186020528060005260406000206000915054906101000a900460ff1681565b601b60039054906101000a900460ff1681565b6000816fffffffffffffffffffffffffffffffff16116125c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ba906150be565b60405180910390fd5b61115c816fffffffffffffffffffffffffffffffff166125e1610ee5565b6125eb91906153f0565b111561262c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262390614fbe565b60405180910390fd5b34816fffffffffffffffffffffffffffffffff1660095461264d9190615477565b111561268e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126859061521e565b60405180910390fd5b6000336040516020016126a19190614eb5565b60405160208183030381529060405280519060200120905060011515601b60029054906101000a900460ff1615151480156126ef575060001515601b60039054906101000a900460ff161515145b801561270e575060001515601b60049054906101000a900460ff161515145b801561272d575060001515601b60059054906101000a900460ff161515145b15612ab457601260029054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1660135411612a745761277883600e5483614191565b156128cf57601260009054906101000a900460ff1660ff16826fffffffffffffffffffffffffffffffff16601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546127ed91906153f0565b111561282e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128259061509e565b60405180910390fd5b816fffffffffffffffffffffffffffffffff16601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461288f91906153f0565b92505081905550601360008154809291906128a990615644565b91905055506128ca33836fffffffffffffffffffffffffffffffff16613d5a565b612a6f565b6128dc83600f5483614191565b15612a3357601260019054906101000a900460ff1660ff16826fffffffffffffffffffffffffffffffff16601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461295191906153f0565b1115612992576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129899061509e565b60405180910390fd5b816fffffffffffffffffffffffffffffffff16601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129f391906153f0565b9250508190555060136000815480929190612a0d90615644565b9190505550612a2e33836fffffffffffffffffffffffffffffffff16613d5a565b612a6e565b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a65906151be565b60405180910390fd5b5b612aaf565b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa6906151de565b60405180910390fd5b613510565b60011515601b60029054906101000a900460ff161515148015612aea575060011515601b60039054906101000a900460ff161515145b8015612b09575060001515601b60049054906101000a900460ff161515145b8015612b28575060001515601b60059054906101000a900460ff161515145b15612d715760011515601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415612bc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bb89061519e565b60405180910390fd5b612bce8360145483614191565b15612c3b576001601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612c36336001613d5a565b612d6c565b612c4883600e5483614191565b15612cb5576001601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612cb0336001613d5a565b612d6b565b612cc283600f5483614191565b15612d2f576001601660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612d2a336001613d5a565b612d6a565b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d619061523e565b60405180910390fd5b5b5b61350f565b60011515601b60029054906101000a900460ff161515148015612da7575060011515601b60039054906101000a900460ff161515145b8015612dc6575060011515601b60049054906101000a900460ff161515145b8015612de5575060001515601b60059054906101000a900460ff161515145b1561326557612df78360175483614191565b15612ef85760011515601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415612e90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e879061509e565b60405180910390fd5b6001601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612ef3336001613d5a565b613260565b612f058360145483614191565b156130065760011515601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415612f9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f959061509e565b60405180910390fd5b6001601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550613001336001613d5a565b61325f565b61301383600e5483614191565b156131145760011515601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514156130ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130a39061509e565b60405180910390fd5b6001601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061310f336001613d5a565b61325e565b61312183600f5483614191565b156132225760011515601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514156131ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131b19061509e565b60405180910390fd5b6001601860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061321d336001613d5a565b61325d565b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132549061501e565b60405180910390fd5b5b5b5b61350e565b60011515601b60059054906101000a900460ff16151514156134d2576000826fffffffffffffffffffffffffffffffff16116132d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132cd906150be565b60405180910390fd5b60006132e0610ee5565b905061115c836fffffffffffffffffffffffffffffffff168261330391906153f0565b10613343576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161333a9061507e565b60405180910390fd5b601960019054906101000a900460ff1660ff1683601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a90046fffffffffffffffffffffffffffffffff166133bd91906153aa565b6fffffffffffffffffffffffffffffffff161115613410576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134079061511e565b60405180910390fd5b82601a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a90046fffffffffffffffffffffffffffffffff1661347a91906153aa565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506134cc33846fffffffffffffffffffffffffffffffff16613d5a565b5061350d565b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135049061501e565b60405180910390fd5b5b5b5b505050565b61351d613ad8565b601b60019054906101000a900460ff1615601b60016101000a81548160ff021916908315150217905550565b60145481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060601b60009054906101000a900460ff16801561360e5750601b60019054906101000a900460ff16155b80156136275750601b60029054906101000a900460ff16155b80156136405750601b60039054906101000a900460ff16155b80156136595750601b60049054906101000a900460ff16155b80156136725750601b60059054906101000a900460ff16155b156136b4576040518060400160405280600a81526020017f746573742d7068617365000000000000000000000000000000000000000000008152509050613a39565b601b60009054906101000a900460ff1680156136dc5750601b60019054906101000a900460ff165b80156136f55750601b60029054906101000a900460ff16155b801561370e5750601b60039054906101000a900460ff16155b80156137275750601b60049054906101000a900460ff16155b80156137405750601b60059054906101000a900460ff16155b15613782576040518060400160405280600a81526020017f7465616d2d7068617365000000000000000000000000000000000000000000008152509050613a39565b601b60009054906101000a900460ff1680156137aa5750601b60019054906101000a900460ff165b80156137c25750601b60029054906101000a900460ff165b80156137db5750601b60039054906101000a900460ff16155b80156137f45750601b60049054906101000a900460ff16155b801561380d5750601b60059054906101000a900460ff16155b1561384f576040518060400160405280600c81526020017f627265616b2d7768616c657300000000000000000000000000000000000000008152509050613a39565b601b60009054906101000a900460ff1680156138775750601b60019054906101000a900460ff165b801561388f5750601b60029054906101000a900460ff165b80156138a75750601b60039054906101000a900460ff165b80156138c05750601b60049054906101000a900460ff16155b80156138d95750601b60059054906101000a900460ff16155b1561391b576040518060400160405280601181526020017f77686974656c6973742d70686173652d310000000000000000000000000000008152509050613a39565b601b60009054906101000a900460ff1680156139435750601b60019054906101000a900460ff165b801561395b5750601b60029054906101000a900460ff165b80156139735750601b60039054906101000a900460ff165b801561398b5750601b60049054906101000a900460ff165b80156139a45750601b60059054906101000a900460ff16155b156139e6576040518060400160405280601181526020017f77686974656c6973742d70686173652d320000000000000000000000000000008152509050613a39565b601b60059054906101000a900460ff1615613a38576040518060400160405280600c81526020017f7075626c69632d706861736500000000000000000000000000000000000000008152509050613a39565b5b90565b613a44613ad8565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613ab4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613aab9061505e565b60405180910390fd5b613abd81613d78565b50565b60116020528060005260406000206000915090505481565b613ae06141a8565b73ffffffffffffffffffffffffffffffffffffffff16613afe611cdc565b73ffffffffffffffffffffffffffffffffffffffff1614613b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b4b9061515e565b60405180910390fd5b565b600081613b61613bbd565b11158015613b70575060005482105b8015613bae575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080613bd1613bbd565b11613c5957600054811015613c585760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415613c56575b6000811415613c4c576004600083600190039350838152602001908152602001600020549050613c21565b8092505050613c8b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8613d188686846141b0565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b613d748282604051806020016040528060008152506141b9565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613e64613bb5565b8786866040518563ffffffff1660e01b8152600401613e869493929190614f1a565b602060405180830381600087803b158015613ea057600080fd5b505af1925050508015613ed157506040513d601f19601f82011682018060405250810190613ece91906149bb565b60015b613f4b573d8060008114613f01576040519150601f19603f3d011682016040523d82523d6000602084013e613f06565b606091505b50600081511415613f43576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601d8054613fad906155e1565b80601f0160208091040260200160405190810160405280929190818152602001828054613fd9906155e1565b80156140265780601f10613ffb57610100808354040283529160200191614026565b820191906000526020600020905b81548152906001019060200180831161400957829003601f168201915b5050505050905090565b60606000821415614078576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061418c565b600082905060005b600082146140aa57808061409390615644565b915050600a826140a39190615446565b9150614080565b60008167ffffffffffffffff8111156140c6576140c561579e565b5b6040519080825280601f01601f1916602001820160405280156140f85781602001600182028036833780820191505090505b5090505b600085146141855760018261411191906154d1565b9150600a8561412091906156b1565b603061412c91906153f0565b60f81b8183815181106141425761414161576f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561417e9190615446565b94506140fc565b8093505050505b919050565b60008261419e8584614256565b1490509392505050565b600033905090565b60009392505050565b6141c383836142ac565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461425157600080549050600083820390505b6142036000868380600101945086613e3e565b614239576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106141f057816000541461424e57600080fd5b50505b505050565b60008082905060005b84518110156142a15761428c8286838151811061427f5761427e61576f565b5b6020026020010151614469565b9150808061429990615644565b91505061425f565b508091505092915050565b60008054905060008214156142ed576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6142fa6000848385613cfb565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550614371836143626000866000613d01565b61436b85614494565b17613d29565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461441257808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506143d7565b50600082141561444e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506144646000848385613d54565b505050565b60008183106144815761447c82846144a4565b61448c565b61448b83836144a4565b5b905092915050565b60006001821460e11b9050919050565b600082600052816020526040600020905092915050565b8280546144c7906155e1565b90600052602060002090601f0160209004810192826144e95760008555614530565b82601f1061450257805160ff1916838001178555614530565b82800160010185558215614530579182015b8281111561452f578251825591602001919060010190614514565b5b50905061453d9190614541565b5090565b5b8082111561455a576000816000905550600101614542565b5090565b600061457161456c846152d9565b6152b4565b90508083825260208201905082856020860282011115614594576145936157d2565b5b60005b858110156145c457816145aa88826146aa565b845260208401935060208301925050600181019050614597565b5050509392505050565b60006145e16145dc84615305565b6152b4565b9050828152602081018484840111156145fd576145fc6157d7565b5b61460884828561559f565b509392505050565b600061462361461e84615336565b6152b4565b90508281526020810184848401111561463f5761463e6157d7565b5b61464a84828561559f565b509392505050565b60008135905061466181615c97565b92915050565b600082601f83011261467c5761467b6157cd565b5b813561468c84826020860161455e565b91505092915050565b6000813590506146a481615cae565b92915050565b6000813590506146b981615cc5565b92915050565b6000813590506146ce81615cdc565b92915050565b6000815190506146e381615cdc565b92915050565b600082601f8301126146fe576146fd6157cd565b5b813561470e8482602086016145ce565b91505092915050565b600082601f83011261472c5761472b6157cd565b5b813561473c848260208601614610565b91505092915050565b60008135905061475481615cf3565b92915050565b60008135905061476981615d0a565b92915050565b600060208284031215614785576147846157e1565b5b600061479384828501614652565b91505092915050565b600080604083850312156147b3576147b26157e1565b5b60006147c185828601614652565b92505060206147d285828601614652565b9150509250929050565b6000806000606084860312156147f5576147f46157e1565b5b600061480386828701614652565b935050602061481486828701614652565b92505060406148258682870161475a565b9150509250925092565b60008060008060808587031215614849576148486157e1565b5b600061485787828801614652565b945050602061486887828801614652565b93505060406148798782880161475a565b925050606085013567ffffffffffffffff81111561489a576148996157dc565b5b6148a6878288016146e9565b91505092959194509250565b600080604083850312156148c9576148c86157e1565b5b60006148d785828601614652565b92505060206148e885828601614695565b9150509250929050565b60008060408385031215614909576149086157e1565b5b600061491785828601614652565b92505060206149288582860161475a565b9150509250929050565b60008060408385031215614949576149486157e1565b5b600083013567ffffffffffffffff811115614967576149666157dc565b5b61497385828601614667565b925050602061498485828601614745565b9150509250929050565b6000602082840312156149a4576149a36157e1565b5b60006149b2848285016146bf565b91505092915050565b6000602082840312156149d1576149d06157e1565b5b60006149df848285016146d4565b91505092915050565b6000602082840312156149fe576149fd6157e1565b5b600082013567ffffffffffffffff811115614a1c57614a1b6157dc565b5b614a2884828501614717565b91505092915050565b600060208284031215614a4757614a466157e1565b5b6000614a5584828501614745565b91505092915050565b600060208284031215614a7457614a736157e1565b5b6000614a828482850161475a565b91505092915050565b614a9481615505565b82525050565b614aab614aa682615505565b61568d565b82525050565b614aba81615517565b82525050565b614ac981615523565b82525050565b6000614ada82615367565b614ae4818561537d565b9350614af48185602086016155ae565b614afd816157e6565b840191505092915050565b6000614b1382615372565b614b1d818561538e565b9350614b2d8185602086016155ae565b614b36816157e6565b840191505092915050565b6000614b4c82615372565b614b56818561539f565b9350614b668185602086016155ae565b80840191505092915050565b6000614b7f601d8361538e565b9150614b8a82615804565b602082019050919050565b6000614ba260208361538e565b9150614bad8261582d565b602082019050919050565b6000614bc560138361538e565b9150614bd082615856565b602082019050919050565b6000614be860168361538e565b9150614bf38261587f565b602082019050919050565b6000614c0b60138361538e565b9150614c16826158a8565b602082019050919050565b6000614c2e60268361538e565b9150614c39826158d1565b604082019050919050565b6000614c51601c8361538e565b9150614c5c82615920565b602082019050919050565b6000614c74602d8361538e565b9150614c7f82615949565b604082019050919050565b6000614c9760178361538e565b9150614ca282615998565b602082019050919050565b6000614cba60128361538e565b9150614cc5826159c1565b602082019050919050565b6000614cdd60168361538e565b9150614ce8826159ea565b602082019050919050565b6000614d0060248361538e565b9150614d0b82615a13565b604082019050919050565b6000614d23600e8361538e565b9150614d2e82615a62565b602082019050919050565b6000614d4660058361539f565b9150614d5182615a8b565b600582019050919050565b6000614d6960208361538e565b9150614d7482615ab4565b602082019050919050565b6000614d8c602f8361538e565b9150614d9782615add565b604082019050919050565b6000614daf60148361538e565b9150614dba82615b2c565b602082019050919050565b6000614dd260338361538e565b9150614ddd82615b55565b604082019050919050565b6000614df560218361538e565b9150614e0082615ba4565b604082019050919050565b6000614e18601a8361538e565b9150614e2382615bf3565b602082019050919050565b6000614e3b60178361538e565b9150614e4682615c1c565b602082019050919050565b6000614e5e60128361538e565b9150614e6982615c45565b602082019050919050565b6000614e81600c8361538e565b9150614e8c82615c6e565b602082019050919050565b614ea081615559565b82525050565b614eaf81615595565b82525050565b6000614ec18284614a9a565b60148201915081905092915050565b6000614edc8285614b41565b9150614ee88284614b41565b9150614ef382614d39565b91508190509392505050565b6000602082019050614f146000830184614a8b565b92915050565b6000608082019050614f2f6000830187614a8b565b614f3c6020830186614a8b565b614f496040830185614ea6565b8181036060830152614f5b8184614acf565b905095945050505050565b6000602082019050614f7b6000830184614ab1565b92915050565b6000602082019050614f966000830184614ac0565b92915050565b60006020820190508181036000830152614fb68184614b08565b905092915050565b60006020820190508181036000830152614fd781614b72565b9050919050565b60006020820190508181036000830152614ff781614b95565b9050919050565b6000602082019050818103600083015261501781614bb8565b9050919050565b6000602082019050818103600083015261503781614bdb565b9050919050565b6000602082019050818103600083015261505781614bfe565b9050919050565b6000602082019050818103600083015261507781614c21565b9050919050565b6000602082019050818103600083015261509781614c44565b9050919050565b600060208201905081810360008301526150b781614c67565b9050919050565b600060208201905081810360008301526150d781614c8a565b9050919050565b600060208201905081810360008301526150f781614cad565b9050919050565b6000602082019050818103600083015261511781614cd0565b9050919050565b6000602082019050818103600083015261513781614cf3565b9050919050565b6000602082019050818103600083015261515781614d16565b9050919050565b6000602082019050818103600083015261517781614d5c565b9050919050565b6000602082019050818103600083015261519781614d7f565b9050919050565b600060208201905081810360008301526151b781614da2565b9050919050565b600060208201905081810360008301526151d781614dc5565b9050919050565b600060208201905081810360008301526151f781614de8565b9050919050565b6000602082019050818103600083015261521781614e0b565b9050919050565b6000602082019050818103600083015261523781614e2e565b9050919050565b6000602082019050818103600083015261525781614e51565b9050919050565b6000602082019050818103600083015261527781614e74565b9050919050565b60006020820190506152936000830184614e97565b92915050565b60006020820190506152ae6000830184614ea6565b92915050565b60006152be6152cf565b90506152ca8282615613565b919050565b6000604051905090565b600067ffffffffffffffff8211156152f4576152f361579e565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156153205761531f61579e565b5b615329826157e6565b9050602081019050919050565b600067ffffffffffffffff8211156153515761535061579e565b5b61535a826157e6565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006153b582615559565b91506153c083615559565b9250826fffffffffffffffffffffffffffffffff038211156153e5576153e46156e2565b5b828201905092915050565b60006153fb82615595565b915061540683615595565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561543b5761543a6156e2565b5b828201905092915050565b600061545182615595565b915061545c83615595565b92508261546c5761546b615711565b5b828204905092915050565b600061548282615595565b915061548d83615595565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156154c6576154c56156e2565b5b828202905092915050565b60006154dc82615595565b91506154e783615595565b9250828210156154fa576154f96156e2565b5b828203905092915050565b600061551082615575565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156155cc5780820151818401526020810190506155b1565b838111156155db576000848401525b50505050565b600060028204905060018216806155f957607f821691505b6020821081141561560d5761560c615740565b5b50919050565b61561c826157e6565b810181811067ffffffffffffffff8211171561563b5761563a61579e565b5b80604052505050565b600061564f82615595565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615682576156816156e2565b5b600182019050919050565b60006156988261569f565b9050919050565b60006156aa826157f7565b9050919050565b60006156bc82615595565b91506156c783615595565b9250826156d7576156d6615711565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f43616e6e6f74206d696e74206265796f6e64206d617820737570706c79000000600082015250565b7f20576520617265206e6f7420696e207075626c6963206d696e7420796574202e600082015250565b7f4e6f7420696e2074657374207068617365202100000000000000000000000000600082015250565b7f576520617265206e6f7420726561647920796574202100000000000000000000600082015250565b7f4e6f7420696e205465616d205068617365202100000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768204e465473206c65667420746f206d696e7400000000600082015250565b7f2043616e6e6f74206d696e74206265796f6e6420627265616b2077686974656c60008201527f697374206d6178206d696e742100000000000000000000000000000000000000602082015250565b7f5175616e746974792063616e6e6f74206265207a65726f000000000000000000600082015250565b7f596f7520646f6e742068617665204e4654730000000000000000000000000000600082015250565b7f596f7520617265206e6f7420746573742061646d696e00000000000000000000600082015250565b7f2043616e6e6f74206d696e74206265796f6e64207075626c6963206d6178206d60008201527f696e742100000000000000000000000000000000000000000000000000000000602082015250565b7f416c7265616479204d696e742021000000000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f2043616e6e6f74206d696e74206d6f7265202121000000000000000000000000600082015250565b7f4e6f7420696e20427265616b2057686974656c697374202626204e6f7420696e60008201527f205768616c65732057686974656c697374202100000000000000000000000000602082015250565b7f546f74616c20537570706c79206f66203430302069732066696e69736865642060008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b7f54686973206973206e6f74207465616d2077616c6c6574202120000000000000600082015250565b7f496e73756666696369656e742066756e64732073656e74000000000000000000600082015250565b7f4e6f7420696e202057686974656c697374210000000000000000000000000000600082015250565b7f416c7265616479204d696e740000000000000000000000000000000000000000600082015250565b615ca081615505565b8114615cab57600080fd5b50565b615cb781615517565b8114615cc257600080fd5b50565b615cce81615523565b8114615cd957600080fd5b50565b615ce58161552d565b8114615cf057600080fd5b50565b615cfc81615559565b8114615d0757600080fd5b50565b615d1381615595565b8114615d1e57600080fd5b5056fea26469706673582212209af9b3c07df36314489c931abf7f950ca61e5bec2f3e9d7ad7cec3c84cca0c6a64736f6c63430008070033

Deployed Bytecode Sourcemap

77346:12072:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38210:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88362:121;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39112:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78062:109;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45595:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45036:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79184:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34863:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;77946:109;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49302:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;77491:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79218:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79061;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78178:52;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78614:56;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;89274:141;;;;;;;;;;;;;:::i;:::-;;78704:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;88618:81;;;;;;;;;;;;;:::i;:::-;;52215:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;87260:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79119:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79840:916;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78979:55;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87883:81;;;;;;;;;;;;;:::i;:::-;;40505:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86632:622;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;88156:97;;;;;;;;;;;;;:::i;:::-;;79090:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36047:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87574:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;79396:114;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73798:103;;;;;;;;;;;;;:::i;:::-;;88259:97;;;;;;;;;;;;;:::i;:::-;;77536:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73150:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;87795:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39288:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46153:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81676:412;;;:::i;:::-;;88489:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52998:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;82094:296;;;;;;;;;;;;;:::i;:::-;;88056:94;;;;;;;;;;;;;:::i;:::-;;88856:412;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;78819:56;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;79150:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82396:4232;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;87970:80;;;;;;;;;;;;;:::i;:::-;;78459:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46618:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80762:908;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74056:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;78237:52;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38210:639;38295:4;38634:10;38619:25;;:11;:25;;;;:102;;;;38711:10;38696:25;;:11;:25;;;;38619:102;:179;;;;38788:10;38773:25;;:11;:25;;;;38619:179;38599:199;;38210:639;;;:::o;88362:121::-;73036:13;:11;:13::i;:::-;88460:15:::1;88443:16;:32;;;;;;;;;;;;:::i;:::-;;88362:121:::0;:::o;39112:100::-;39166:13;39199:5;39192:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39112:100;:::o;78062:109::-;;;;:::o;45595:218::-;45671:7;45696:16;45704:7;45696;:16::i;:::-;45691:64;;45721:34;;;;;;;;;;;;;;45691:64;45775:15;:24;45791:7;45775:24;;;;;;;;;;;:30;;;;;;;;;;;;45768:37;;45595:218;;;:::o;45036:400::-;45117:13;45133:16;45141:7;45133;:16::i;:::-;45117:32;;45189:5;45166:28;;:19;:17;:19::i;:::-;:28;;;45162:175;;45214:44;45231:5;45238:19;:17;:19::i;:::-;45214:16;:44::i;:::-;45209:128;;45286:35;;;;;;;;;;;;;;45209:128;45162:175;45382:2;45349:15;:24;45365:7;45349:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;45420:7;45416:2;45400:28;;45409:5;45400:28;;;;;;;;;;;;45106:330;45036:400;;:::o;79184:27::-;;;;;;;;;;;;;:::o;34863:323::-;34924:7;35152:15;:13;:15::i;:::-;35137:12;;35121:13;;:28;:46;35114:53;;34863:323;:::o;77946:109::-;;;;:::o;49302:2817::-;49436:27;49466;49485:7;49466:18;:27::i;:::-;49436:57;;49551:4;49510:45;;49526:19;49510:45;;;49506:86;;49564:28;;;;;;;;;;;;;;49506:86;49606:27;49635:23;49662:35;49689:7;49662:26;:35::i;:::-;49605:92;;;;49797:68;49822:15;49839:4;49845:19;:17;:19::i;:::-;49797:24;:68::i;:::-;49792:180;;49885:43;49902:4;49908:19;:17;:19::i;:::-;49885:16;:43::i;:::-;49880:92;;49937:35;;;;;;;;;;;;;;49880:92;49792:180;50003:1;49989:16;;:2;:16;;;49985:52;;;50014:23;;;;;;;;;;;;;;49985:52;50050:43;50072:4;50078:2;50082:7;50091:1;50050:21;:43::i;:::-;50186:15;50183:160;;;50326:1;50305:19;50298:30;50183:160;50723:18;:24;50742:4;50723:24;;;;;;;;;;;;;;;;50721:26;;;;;;;;;;;;50792:18;:22;50811:2;50792:22;;;;;;;;;;;;;;;;50790:24;;;;;;;;;;;51114:146;51151:2;51200:45;51215:4;51221:2;51225:19;51200:14;:45::i;:::-;31262:8;51172:73;51114:18;:146::i;:::-;51085:17;:26;51103:7;51085:26;;;;;;;;;;;:175;;;;51431:1;31262:8;51380:19;:47;:52;51376:627;;;51453:19;51485:1;51475:7;:11;51453:33;;51642:1;51608:17;:30;51626:11;51608:30;;;;;;;;;;;;:35;51604:384;;;51746:13;;51731:11;:28;51727:242;;51926:19;51893:17;:30;51911:11;51893:30;;;;;;;;;;;:52;;;;51727:242;51604:384;51434:569;51376:627;52050:7;52046:2;52031:27;;52040:4;52031:27;;;;;;;;;;;;52069:42;52090:4;52096:2;52100:7;52109:1;52069:20;:42::i;:::-;49425:2694;;;49302:2817;;;:::o;77491:38::-;77525:4;77491:38;:::o;79218:22::-;;;;;;;;;;;;;:::o;79061:::-;;;;;;;;;;;;;:::o;78178:52::-;;;;;;;;;;;;;;;;;:::o;78614:56::-;;;;;;;;;;;;;;;;;;;;;;:::o;89274:141::-;73036:13;:11;:13::i;:::-;89323:12:::1;89338:21;89323:36;;89378:10;89370:28;;:37;89399:7;89370:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;89312:103;89274:141::o:0;78704:108::-;;;;:::o;88618:81::-;73036:13;:11;:13::i;:::-;88687:4:::1;88676:10;;:15;;;;;;;;;;;;;;;;;;88618:81::o:0;52215:185::-;52353:39;52370:4;52376:2;52380:7;52353:39;;;;;;;;;;;;:16;:39::i;:::-;52215:185;;;:::o;87260:244::-;87347:1;87321:21;87331:10;87321:9;:21::i;:::-;:27;;87313:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;87381:80;87398:10;87409:42;87452:8;87381:16;:80::i;:::-;87472:24;87482:10;87494:1;87472:9;:24::i;:::-;87260:244;:::o;79119:24::-;;;;;;;;;;;;;:::o;79840:916::-;79890:7;79920:10;;;;;;;;;;;:25;;;;;79935:10;;;;;;;;;;;79934:11;79920:25;:42;;;;;79950:12;;;;;;;;;;;79949:13;79920:42;:62;;;;;79967:15;;;;;;;;;;;79966:16;79920:62;:82;;;;;79987:15;;;;;;;;;;;79986:16;79920:82;:97;;;;;80007:10;;;;;;;;;;;80006:11;79920:97;79917:832;;;80041:1;80034:8;;;;79917:832;80062:10;;;;;;;;;;;:24;;;;;80076:10;;;;;;;;;;;80062:24;:41;;;;;80091:12;;;;;;;;;;;80090:13;80062:41;:61;;;;;80108:15;;;;;;;;;;;80107:16;80062:61;:81;;;;;80128:15;;;;;;;;;;;80127:16;80062:81;:96;;;;;80148:10;;;;;;;;;;;80147:11;80062:96;80059:690;;;80181:3;80174:10;;;;80059:690;80204:10;;;;;;;;;;;:24;;;;;80218:10;;;;;;;;;;;80204:24;:40;;;;;80232:12;;;;;;;;;;;80204:40;:60;;;;;80249:15;;;;;;;;;;;80248:16;80204:60;:80;;;;;80269:15;;;;;;;;;;;80268:16;80204:80;:95;;;;;80289:10;;;;;;;;;;;80288:11;80204:95;80201:548;;;80322:14;;;;;;;;;;;80315:21;;;;;;80201:548;80356:10;;;;;;;;;;;:24;;;;;80370:10;;;;;;;;;;;80356:24;:40;;;;;80384:12;;;;;;;;;;;80356:40;:59;;;;;80400:15;;;;;;;;;;;80356:59;:79;;;;;80420:15;;;;;;;;;;;80419:16;80356:79;:94;;;;;80440:10;;;;;;;;;;;80439:11;80356:94;80353:396;;;80473:25;;;;;;;;;;;80466:32;;;;;;80353:396;80518:10;;;;;;;;;;;:24;;;;;80532:10;;;;;;;;;;;80518:24;:40;;;;;80546:12;;;;;;;;;;;80518:40;:59;;;;;80562:15;;;;;;;;;;;80518:59;:78;;;;;80581:15;;;;;;;;;;;80518:78;:93;;;;;80601:10;;;;;;;;;;;80600:11;80518:93;80515:234;;;80634:25;;;;;;;;;;;80627:32;;;;;;80515:234;80679:10;;;;;;;;;;;80676:73;;;80712:21;;;;;;;;;;;80705:28;;;;;;80676:73;79840:916;;:::o;78979:55::-;;;;;;;;;;;;;;;;;;;;;;:::o;87883:81::-;73036:13;:11;:13::i;:::-;87946:10:::1;;;;;;;;;;;87945:11;87934:10;;:22;;;;;;;;;;;;;;;;;;87883:81::o:0;40505:152::-;40577:7;40620:27;40639:7;40620:18;:27::i;:::-;40597:52;;40505:152;;;:::o;86632:622::-;86715:4;86701:18;;:10;;;;;;;;;;;:18;;;86693:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;86786:1;86775:8;:12;;;86767:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;86826:16;86845:13;:11;:13::i;:::-;86826:32;;77525:4;86889:8;86877:20;;:11;:20;;;;:::i;:::-;:33;86869:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;86982:9;86970:8;86962:16;;:5;;:16;;;;:::i;:::-;:29;;86954:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;87087:21;;;;;;;;;;;87038:70;;87074:8;87039:20;:32;87060:10;87039:32;;;;;;;;;;;;;;;;;;;;;;;;;:43;;;;:::i;:::-;87038:70;;;;87030:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;87196:8;87160:20;:32;87181:10;87160:32;;;;;;;;;;;;;;;;:44;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;87215:31;87225:10;87237:8;87215:31;;:9;:31::i;:::-;86682:572;86632:622;:::o;88156:97::-;73036:13;:11;:13::i;:::-;88230:15:::1;;;;;;;;;;;88229:16;88213:15;;:32;;;;;;;;;;;;;;;;;;88156:97::o:0;79090:22::-;;;;;;;;;;;;;:::o;36047:233::-;36119:7;36160:1;36143:19;;:5;:19;;;36139:60;;;36171:28;;;;;;;;;;;;;;36139:60;30206:13;36217:18;:25;36236:5;36217:25;;;;;;;;;;;;;;;;:55;36210:62;;36047:233;;;:::o;87574:215::-;73036:13;:11;:13::i;:::-;87675:1:::1;87664:8;:12;87656:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;87715:16;87734:13;:11;:13::i;:::-;87715:32;;87758:23;87768:2;87772:8;87758:9;:23::i;:::-;87645:144;87574:215:::0;;:::o;79396:114::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;73798:103::-;73036:13;:11;:13::i;:::-;73863:30:::1;73890:1;73863:18;:30::i;:::-;73798:103::o:0;88259:97::-;73036:13;:11;:13::i;:::-;88333:15:::1;;;;;;;;;;;88332:16;88316:15;;:32;;;;;;;;;;;;;;;;;;88259:97::o:0;77536:30::-;;;;:::o;73150:87::-;73196:7;73223:6;;;;;;;;;;;73216:13;;73150:87;:::o;87795:82::-;73036:13;:11;:13::i;:::-;87863:6:::1;87857:5;:12;;;;87795:82:::0;:::o;39288:104::-;39344:13;39377:7;39370:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39288:104;:::o;46153:308::-;46264:19;:17;:19::i;:::-;46252:31;;:8;:31;;;46248:61;;;46292:17;;;;;;;;;;;;;;46248:61;46374:8;46322:18;:39;46341:19;:17;:19::i;:::-;46322:39;;;;;;;;;;;;;;;:49;46362:8;46322:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;46434:8;46398:55;;46413:19;:17;:19::i;:::-;46398:55;;;46444:8;46398:55;;;;;;:::i;:::-;;;;;;;;46153:308;;:::o;81676:412::-;81750:4;81738:16;;:10;;;;;;;;;;;:16;;;81730:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;81810:5;;;;;;;;;;;81796:19;;:10;:19;;;:42;;;;81833:5;;;;;;;;;;;81819:19;;:10;:19;;;81796:42;81788:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;81916:4;81884:36;;:16;:28;81901:10;81884:28;;;;;;;;;;;;;;;;;;;;;;;;;:36;;;;81876:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;81965:9;81956:5;;:18;;81948:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;82041:4;82012:16;:28;82029:10;82012:28;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;82056:24;82066:10;82078:1;82056:9;:24::i;:::-;81676:412::o;88489:123::-;73036:13;:11;:13::i;:::-;88587:17:::1;88574:12;:30;;;;;;;;;;;;:::i;:::-;;88489:123:::0;:::o;52998:399::-;53165:31;53178:4;53184:2;53188:7;53165:12;:31::i;:::-;53229:1;53211:2;:14;;;:19;53207:183;;53250:56;53281:4;53287:2;53291:7;53300:5;53250:30;:56::i;:::-;53245:145;;53334:40;;;;;;;;;;;;;;53245:145;53207:183;52998:399;;;;:::o;82094:296::-;82156:4;82142:18;;:10;;;;;;;;;;;:18;;;82134:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;82220:5;82204:21;;:12;;;;;;;;;;;:21;;;82196:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;82277:10;;;;;;;;;;;82263:24;;:10;:24;;;82255:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;82341:4;82328:12;;:17;;;;;;;;;;;;;;;;;;82356:26;82366:10;;;;;;;;;;;82378:3;82356:9;:26::i;:::-;82094:296::o;88056:94::-;73036:13;:11;:13::i;:::-;88130:12:::1;;;;;;;;;;;88129:13;88116:12;;:26;;;;;;;;;;;;;;;;;;88056:94::o:0;88856:412::-;88929:13;88963:16;88971:7;88963;:16::i;:::-;88955:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;89046:10;;;;;;;;;;;89042:61;;89079:12;89072:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89042:61;89113:21;89137:10;:8;:10::i;:::-;89113:34;;89189:1;89171:7;89165:21;:25;:95;;;;;;;;;;;;;;;;;89217:7;89226:18;:7;:16;:18::i;:::-;89200:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;89165:95;89158:102;;;88856:412;;;;:::o;78819:56::-;;;;;;;;;;;;;;;;;;;;;;:::o;79150:27::-;;;;;;;;;;;;;:::o;82396:4232::-;82516:1;82504:9;:13;;;82496:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;77525:4;82581:9;82565:25;;:13;:11;:13::i;:::-;:25;;;;:::i;:::-;82564:41;;82556:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;82679:9;82666;82658:17;;:5;;:17;;;;:::i;:::-;:30;;82650:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;82727:14;82771:10;82754:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;82744:39;;;;;;82727:56;;82810:4;82794:20;;:12;;;;;;;;;;;:20;;;:48;;;;;82837:5;82818:24;;:15;;;;;;;;;;;:24;;;82794:48;:76;;;;;82865:5;82846:24;;:15;;;;;;;;;;;:24;;;82794:76;:97;;;;;82886:5;82874:17;;:10;;;;;;;;;;;:17;;;82794:97;82791:3830;;;82928:22;;;;;;;;;;;82906:44;;:18;;:44;82903:972;;82969:69;82988:12;83002:27;;83031:6;82969:18;:69::i;:::-;82966:824;;;83110:14;;;;;;;;;;;83062:62;;83095:9;83063:41;;:17;:29;83081:10;83063:29;;;;;;;;;;;;;;;;:41;;;;:::i;:::-;83062:62;;83054:120;;;;;;;;;;;;:::i;:::-;;;;;;;;;83222:9;83189:42;;:17;:29;83207:10;83189:29;;;;;;;;;;;;;;;;:42;;;;;;;:::i;:::-;;;;;;;;83246:18;;:20;;;;;;;;;:::i;:::-;;;;;;83281:32;83291:10;83303:9;83281:32;;:9;:32::i;:::-;82966:824;;;83337:69;83356:12;83370:27;;83399:6;83337:18;:69::i;:::-;83334:456;;;83477:15;;;;;;;;;;;83429:63;;83462:9;83430:41;;:17;:29;83448:10;83430:29;;;;;;;;;;;;;;;;:41;;;;:::i;:::-;83429:63;;83421:121;;;;;;;;;;;;:::i;:::-;;;;;;;;;83589:9;83556:42;;:17;:29;83574:10;83556:29;;;;;;;;;;;;;;;;:42;;;;;;;:::i;:::-;;;;;;;;83613:18;;:20;;;;;;;;;:::i;:::-;;;;;;83646:32;83656:10;83668:9;83646:32;;:9;:32::i;:::-;83334:456;;;83713:61;;;;;;;;;;:::i;:::-;;;;;;;;83334:456;82966:824;82903:972;;;83820:43;;;;;;;;;;:::i;:::-;;;;;;;;82903:972;82791:3830;;;83908:4;83892:20;;:12;;;;;;;;;;;:20;;;:47;;;;;83935:4;83916:23;;:15;;;;;;;;;;;:23;;;83892:47;:76;;;;;83963:5;83944:24;;:15;;;;;;;;;;;:24;;;83892:76;:98;;;;;83985:5;83973:17;;:10;;;;;;;;;;;:17;;;83892:98;83888:2733;;;84050:4;84010:44;;:24;:36;84035:10;84010:36;;;;;;;;;;;;;;;;;;;;;;;;;:44;;;;84002:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;84097:68;84116:12;84130:26;;84158:6;84097:18;:68::i;:::-;84094:620;;;84220:4;84181:24;:36;84206:10;84181:36;;;;;;;;;;;;;;;;:43;;;;;;;;;;;;;;;;;;84239:24;84249:10;84261:1;84239:9;:24::i;:::-;84094:620;;;84287:69;84306:12;84320:27;;84349:6;84287:18;:69::i;:::-;84284:430;;;84410:4;84372:24;:36;84397:10;84372:36;;;;;;;;;;;;;;;;:42;;;;;;;;;;;;;;;;;;84429:24;84439:10;84451:1;84429:9;:24::i;:::-;84284:430;;;84477:69;84496:12;84510:27;;84539:6;84477:18;:69::i;:::-;84474:240;;;84600:4;84562:24;:36;84587:10;84562:36;;;;;;;;;;;;;;;;:42;;;;;;;;;;;;;;;;;;84619:24;84629:10;84641:1;84619:9;:24::i;:::-;84474:240;;;84674:28;;;;;;;;;;:::i;:::-;;;;;;;;84474:240;84284:430;84094:620;83888:2733;;;84745:4;84729:20;;:12;;;;;;;;;;;:20;;;:47;;;;;84772:4;84753:23;;:15;;;;;;;;;;;:23;;;84729:47;:75;;;;;84800:4;84781:23;;:15;;;;;;;;;;;:23;;;84729:75;:97;;;;;84821:5;84809:17;;:10;;;;;;;;;;;:17;;;84729:97;84726:1895;;;84841:68;84860:12;84874:26;;84902:6;84841:18;:68::i;:::-;84838:1263;;;84972:4;84932:44;;:24;:36;84957:10;84932:36;;;;;;;;;;;;;;;;;;;;;;;;;:44;;;;84924:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;85078:4;85040:24;:36;85065:10;85040:36;;;;;;;;;;;;;;;;:42;;;;;;;;;;;;;;;;;;85095:24;85105:10;85117:1;85095:9;:24::i;:::-;84838:1263;;;85139:68;85158:12;85172:26;;85200:6;85139:18;:68::i;:::-;85136:965;;;85270:4;85230:44;;:24;:36;85255:10;85230:36;;;;;;;;;;;;;;;;;;;;;;;;;:44;;;;85222:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;85376:4;85338:24;:36;85363:10;85338:36;;;;;;;;;;;;;;;;:42;;;;;;;;;;;;;;;;;;85393:24;85403:10;85415:1;85393:9;:24::i;:::-;85136:965;;;85447:69;85466:12;85480:27;;85509:6;85447:18;:69::i;:::-;85444:657;;;85579:4;85539:44;;:24;:36;85564:10;85539:36;;;;;;;;;;;;;;;;;;;;;;;;;:44;;;;85531:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;85685:4;85647:24;:36;85672:10;85647:36;;;;;;;;;;;;;;;;:42;;;;;;;;;;;;;;;;;;85702:24;85712:10;85724:1;85702:9;:24::i;:::-;85444:657;;;85746:69;85765:12;85779:27;;85808:6;85746:18;:69::i;:::-;85743:358;;;85878:4;85838:44;;:24;:36;85863:10;85838:36;;;;;;;;;;;;;;;;;;;;;;;;;:44;;;;85830:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;85984:4;85946:24;:36;85971:10;85946:36;;;;;;;;;;;;;;;;:42;;;;;;;;;;;;;;;;;;86001:24;86011:10;86023:1;86001:9;:24::i;:::-;85743:358;;;86057:32;;;;;;;;;;:::i;:::-;;;;;;;;85743:358;85444:657;85136:965;84838:1263;84726:1895;;;86130:4;86118:16;;:10;;;;;;;;;;;:16;;;86114:507;;;86166:1;86154:9;:13;;;86146:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;86206:16;86225:13;:11;:13::i;:::-;86206:32;;77525:4;86269:9;86257:21;;:11;:21;;;;:::i;:::-;:34;86249:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;86393:21;;;;;;;;;;;86343:71;;86379:9;86344:20;:32;86365:10;86344:32;;;;;;;;;;;;;;;;;;;;;;;;;:44;;;;:::i;:::-;86343:71;;;;86335:120;;;;;;;;;;;;:::i;:::-;;;;;;;;;86502:9;86466:20;:32;86487:10;86466:32;;;;;;;;;;;;;;;;:45;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;86522:32;86532:10;86544:9;86522:32;;:9;:32::i;:::-;86135:427;86114:507;;;86577:32;;;;;;;;;;:::i;:::-;;;;;;;;86114:507;84726:1895;83888:2733;82791:3830;82485:4143;82396:4232;;:::o;87970:80::-;73036:13;:11;:13::i;:::-;88032:10:::1;;;;;;;;;;;88031:11;88020:10;;:22;;;;;;;;;;;;;;;;;;87970:80::o:0;78459:108::-;;;;:::o;46618:164::-;46715:4;46739:18;:25;46758:5;46739:25;;;;;;;;;;;;;;;:35;46765:8;46739:35;;;;;;;;;;;;;;;;;;;;;;;;;46732:42;;46618:164;;;;:::o;80762:908::-;80805:13;80833:10;;;;;;;;;;;:25;;;;;80848:10;;;;;;;;;;;80847:11;80833:25;:42;;;;;80863:12;;;;;;;;;;;80862:13;80833:42;:62;;;;;80880:15;;;;;;;;;;;80879:16;80833:62;:82;;;;;80900:15;;;;;;;;;;;80899:16;80833:82;:97;;;;;80920:10;;;;;;;;;;;80919:11;80833:97;80830:833;;;80947:19;;;;;;;;;;;;;;;;;;;;;80830:833;80986:10;;;;;;;;;;;:24;;;;;81000:10;;;;;;;;;;;80986:24;:41;;;;;81015:12;;;;;;;;;;;81014:13;80986:41;:61;;;;;81032:15;;;;;;;;;;;81031:16;80986:61;:81;;;;;81052:15;;;;;;;;;;;81051:16;80986:81;:96;;;;;81072:10;;;;;;;;;;;81071:11;80986:96;80983:680;;;81098:19;;;;;;;;;;;;;;;;;;;;;80983:680;81137:10;;;;;;;;;;;:24;;;;;81151:10;;;;;;;;;;;81137:24;:40;;;;;81165:12;;;;;;;;;;;81137:40;:60;;;;;81182:15;;;;;;;;;;;81181:16;81137:60;:80;;;;;81202:15;;;;;;;;;;;81201:16;81137:80;:95;;;;;81222:10;;;;;;;;;;;81221:11;81137:95;81134:529;;;81248:21;;;;;;;;;;;;;;;;;;;;;81134:529;81289:10;;;;;;;;;;;:24;;;;;81303:10;;;;;;;;;;;81289:24;:40;;;;;81317:12;;;;;;;;;;;81289:40;:59;;;;;81333:15;;;;;;;;;;;81289:59;:79;;;;;81353:15;;;;;;;;;;;81352:16;81289:79;:94;;;;;81373:10;;;;;;;;;;;81372:11;81289:94;81286:377;;;81399:26;;;;;;;;;;;;;;;;;;;;;81286:377;81445:10;;;;;;;;;;;:24;;;;;81459:10;;;;;;;;;;;81445:24;:40;;;;;81473:12;;;;;;;;;;;81445:40;:59;;;;;81489:15;;;;;;;;;;;81445:59;:78;;;;;81508:15;;;;;;;;;;;81445:78;:93;;;;;81528:10;;;;;;;;;;;81527:11;81445:93;81442:221;;;81554:26;;;;;;;;;;;;;;;;;;;;;81442:221;81600:10;;;;;;;;;;;81597:66;;;81626:21;;;;;;;;;;;;;;;;;;;;;81597:66;80762:908;;:::o;74056:201::-;73036:13;:11;:13::i;:::-;74165:1:::1;74145:22;;:8;:22;;;;74137:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;74221:28;74240:8;74221:18;:28::i;:::-;74056:201:::0;:::o;78237:52::-;;;;;;;;;;;;;;;;;:::o;73315:132::-;73390:12;:10;:12::i;:::-;73379:23;;:7;:5;:7::i;:::-;:23;;;73371:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;73315:132::o;47040:282::-;47105:4;47161:7;47142:15;:13;:15::i;:::-;:26;;:66;;;;;47195:13;;47185:7;:23;47142:66;:153;;;;;47294:1;30982:8;47246:17;:26;47264:7;47246:26;;;;;;;;;;;;:44;:49;47142:153;47122:173;;47040:282;;;:::o;68806:105::-;68866:7;68893:10;68886:17;;68806:105;:::o;34379:92::-;34435:7;34379:92;:::o;41660:1275::-;41727:7;41747:12;41762:7;41747:22;;41830:4;41811:15;:13;:15::i;:::-;:23;41807:1061;;41864:13;;41857:4;:20;41853:1015;;;41902:14;41919:17;:23;41937:4;41919:23;;;;;;;;;;;;41902:40;;42036:1;30982:8;42008:6;:24;:29;42004:845;;;42673:113;42690:1;42680:6;:11;42673:113;;;42733:17;:25;42751:6;;;;;;;42733:25;;;;;;;;;;;;42724:34;;42673:113;;;42819:6;42812:13;;;;;;42004:845;41879:989;41853:1015;41807:1061;42896:31;;;;;;;;;;;;;;41660:1275;;;;:::o;48203:479::-;48305:27;48334:23;48375:38;48416:15;:24;48432:7;48416:24;;;;;;;;;;;48375:65;;48587:18;48564:41;;48644:19;48638:26;48619:45;;48549:126;48203:479;;;:::o;47431:659::-;47580:11;47745:16;47738:5;47734:28;47725:37;;47905:16;47894:9;47890:32;47877:45;;48055:15;48044:9;48041:30;48033:5;48022:9;48019:20;48016:56;48006:66;;47431:659;;;;;:::o;54059:159::-;;;;;:::o;68115:311::-;68250:7;68270:16;31386:3;68296:19;:41;;68270:68;;31386:3;68364:31;68375:4;68381:2;68385:9;68364:10;:31::i;:::-;68356:40;;:62;;68349:69;;;68115:311;;;;;:::o;43483:450::-;43563:14;43731:16;43724:5;43720:28;43711:37;;43908:5;43894:11;43869:23;43865:41;43862:52;43855:5;43852:63;43842:73;;43483:450;;;;:::o;54883:158::-;;;;;:::o;62638:112::-;62715:27;62725:2;62729:8;62715:27;;;;;;;;;;;;:9;:27::i;:::-;62638:112;;:::o;74417:191::-;74491:16;74510:6;;;;;;;;;;;74491:25;;74536:8;74527:6;;:17;;;;;;;;;;;;;;;;;;74591:8;74560:40;;74581:8;74560:40;;;;;;;;;;;;74480:128;74417:191;:::o;55481:716::-;55644:4;55690:2;55665:45;;;55711:19;:17;:19::i;:::-;55732:4;55738:7;55747:5;55665:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;55661:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55965:1;55948:6;:13;:18;55944:235;;;55994:40;;;;;;;;;;;;;;55944:235;56137:6;56131:13;56122:6;56118:2;56114:15;56107:38;55661:529;55834:54;;;55824:64;;;:6;:64;;;;55817:71;;;55481:716;;;;;;:::o;88705:109::-;88757:13;88790:16;88783:23;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;88705:109;:::o;17708:723::-;17764:13;17994:1;17985:5;:10;17981:53;;;18012:10;;;;;;;;;;;;;;;;;;;;;17981:53;18044:12;18059:5;18044:20;;18075:14;18100:78;18115:1;18107:4;:9;18100:78;;18133:8;;;;;:::i;:::-;;;;18164:2;18156:10;;;;;:::i;:::-;;;18100:78;;;18188:19;18220:6;18210:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18188:39;;18238:154;18254:1;18245:5;:10;18238:154;;18282:1;18272:11;;;;;:::i;:::-;;;18349:2;18341:5;:10;;;;:::i;:::-;18328:2;:24;;;;:::i;:::-;18315:39;;18298:6;18305;18298:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;18378:2;18369:11;;;;;:::i;:::-;;;18238:154;;;18416:6;18402:21;;;;;17708:723;;;;:::o;1219:190::-;1344:4;1397;1368:25;1381:5;1388:4;1368:12;:25::i;:::-;:33;1361:40;;1219:190;;;;;:::o;71701:98::-;71754:7;71781:10;71774:17;;71701:98;:::o;67816:147::-;67953:6;67816:147;;;;;:::o;61865:689::-;61996:19;62002:2;62006:8;61996:5;:19::i;:::-;62075:1;62057:2;:14;;;:19;62053:483;;62097:11;62111:13;;62097:27;;62143:13;62165:8;62159:3;:14;62143:30;;62192:233;62223:62;62262:1;62266:2;62270:7;;;;;;62279:5;62223:30;:62::i;:::-;62218:167;;62321:40;;;;;;;;;;;;;;62218:167;62420:3;62412:5;:11;62192:233;;62507:3;62490:13;;:20;62486:34;;62512:8;;;62486:34;62078:458;;62053:483;61865:689;;;:::o;2086:296::-;2169:7;2189:20;2212:4;2189:27;;2232:9;2227:118;2251:5;:12;2247:1;:16;2227:118;;;2300:33;2310:12;2324:5;2330:1;2324:8;;;;;;;;:::i;:::-;;;;;;;;2300:9;:33::i;:::-;2285:48;;2265:3;;;;;:::i;:::-;;;;2227:118;;;;2362:12;2355:19;;;2086:296;;;;:::o;56659:2454::-;56732:20;56755:13;;56732:36;;56795:1;56783:8;:13;56779:44;;;56805:18;;;;;;;;;;;;;;56779:44;56836:61;56866:1;56870:2;56874:12;56888:8;56836:21;:61::i;:::-;57380:1;30344:2;57350:1;:26;;57349:32;57337:8;:45;57311:18;:22;57330:2;57311:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;57659:139;57696:2;57750:33;57773:1;57777:2;57781:1;57750:14;:33::i;:::-;57717:30;57738:8;57717:20;:30::i;:::-;:66;57659:18;:139::i;:::-;57625:17;:31;57643:12;57625:31;;;;;;;;;;;:173;;;;57815:16;57846:11;57875:8;57860:12;:23;57846:37;;58130:16;58126:2;58122:25;58110:37;;58502:12;58462:8;58421:1;58359:25;58300:1;58239;58212:335;58627:1;58613:12;58609:20;58567:346;58668:3;58659:7;58656:16;58567:346;;58886:7;58876:8;58873:1;58846:25;58843:1;58840;58835:59;58721:1;58712:7;58708:15;58697:26;;58567:346;;;58571:77;58958:1;58946:8;:13;58942:45;;;58968:19;;;;;;;;;;;;;;58942:45;59020:3;59004:13;:19;;;;57085:1950;;59045:60;59074:1;59078:2;59082:12;59096:8;59045:20;:60::i;:::-;56721:2392;56659:2454;;:::o;8293:149::-;8356:7;8387:1;8383;:5;:51;;8414:20;8429:1;8432;8414:14;:20::i;:::-;8383:51;;;8391:20;8406:1;8409;8391:14;:20::i;:::-;8383:51;8376:58;;8293:149;;;;:::o;44035:324::-;44105:14;44338:1;44328:8;44325:15;44299:24;44295:46;44285:56;;44035:324;;;:::o;8450:268::-;8518:13;8625:1;8619:4;8612:15;8654:1;8648:4;8641:15;8695:4;8689;8679:21;8670:30;;8450:268;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2124:133::-;2167:5;2205:6;2192:20;2183:29;;2221:30;2245:5;2221:30;:::i;:::-;2124:133;;;;:::o;2263:139::-;2309:5;2347:6;2334:20;2325:29;;2363:33;2390:5;2363:33;:::i;:::-;2263:139;;;;:::o;2408:137::-;2453:5;2491:6;2478:20;2469:29;;2507:32;2533:5;2507:32;:::i;:::-;2408:137;;;;:::o;2551:141::-;2607:5;2638:6;2632:13;2623:22;;2654:32;2680:5;2654:32;:::i;:::-;2551:141;;;;:::o;2711:338::-;2766:5;2815:3;2808:4;2800:6;2796:17;2792:27;2782:122;;2823:79;;:::i;:::-;2782:122;2940:6;2927:20;2965:78;3039:3;3031:6;3024:4;3016:6;3012:17;2965:78;:::i;:::-;2956:87;;2772:277;2711:338;;;;:::o;3069:340::-;3125:5;3174:3;3167:4;3159:6;3155:17;3151:27;3141:122;;3182:79;;:::i;:::-;3141:122;3299:6;3286:20;3324:79;3399:3;3391:6;3384:4;3376:6;3372:17;3324:79;:::i;:::-;3315:88;;3131:278;3069:340;;;;:::o;3415:139::-;3461:5;3499:6;3486:20;3477:29;;3515:33;3542:5;3515:33;:::i;:::-;3415:139;;;;:::o;3560:::-;3606:5;3644:6;3631:20;3622:29;;3660:33;3687:5;3660:33;:::i;:::-;3560:139;;;;:::o;3705:329::-;3764:6;3813:2;3801:9;3792:7;3788:23;3784:32;3781:119;;;3819:79;;:::i;:::-;3781:119;3939:1;3964:53;4009:7;4000:6;3989:9;3985:22;3964:53;:::i;:::-;3954:63;;3910:117;3705:329;;;;:::o;4040:474::-;4108:6;4116;4165:2;4153:9;4144:7;4140:23;4136:32;4133:119;;;4171:79;;:::i;:::-;4133:119;4291:1;4316:53;4361:7;4352:6;4341:9;4337:22;4316:53;:::i;:::-;4306:63;;4262:117;4418:2;4444:53;4489:7;4480:6;4469:9;4465:22;4444:53;:::i;:::-;4434:63;;4389:118;4040:474;;;;;:::o;4520:619::-;4597:6;4605;4613;4662:2;4650:9;4641:7;4637:23;4633:32;4630:119;;;4668:79;;:::i;:::-;4630:119;4788:1;4813:53;4858:7;4849:6;4838:9;4834:22;4813:53;:::i;:::-;4803:63;;4759:117;4915:2;4941:53;4986:7;4977:6;4966:9;4962:22;4941:53;:::i;:::-;4931:63;;4886:118;5043:2;5069:53;5114:7;5105:6;5094:9;5090:22;5069:53;:::i;:::-;5059:63;;5014:118;4520:619;;;;;:::o;5145:943::-;5240:6;5248;5256;5264;5313:3;5301:9;5292:7;5288:23;5284:33;5281:120;;;5320:79;;:::i;:::-;5281:120;5440:1;5465:53;5510:7;5501:6;5490:9;5486:22;5465:53;:::i;:::-;5455:63;;5411:117;5567:2;5593:53;5638:7;5629:6;5618:9;5614:22;5593:53;:::i;:::-;5583:63;;5538:118;5695:2;5721:53;5766:7;5757:6;5746:9;5742:22;5721:53;:::i;:::-;5711:63;;5666:118;5851:2;5840:9;5836:18;5823:32;5882:18;5874:6;5871:30;5868:117;;;5904:79;;:::i;:::-;5868:117;6009:62;6063:7;6054:6;6043:9;6039:22;6009:62;:::i;:::-;5999:72;;5794:287;5145:943;;;;;;;:::o;6094:468::-;6159:6;6167;6216:2;6204:9;6195:7;6191:23;6187:32;6184:119;;;6222:79;;:::i;:::-;6184:119;6342:1;6367:53;6412:7;6403:6;6392:9;6388:22;6367:53;:::i;:::-;6357:63;;6313:117;6469:2;6495:50;6537:7;6528:6;6517:9;6513:22;6495:50;:::i;:::-;6485:60;;6440:115;6094:468;;;;;:::o;6568:474::-;6636:6;6644;6693:2;6681:9;6672:7;6668:23;6664:32;6661:119;;;6699:79;;:::i;:::-;6661:119;6819:1;6844:53;6889:7;6880:6;6869:9;6865:22;6844:53;:::i;:::-;6834:63;;6790:117;6946:2;6972:53;7017:7;7008:6;6997:9;6993:22;6972:53;:::i;:::-;6962:63;;6917:118;6568:474;;;;;:::o;7048:684::-;7141:6;7149;7198:2;7186:9;7177:7;7173:23;7169:32;7166:119;;;7204:79;;:::i;:::-;7166:119;7352:1;7341:9;7337:17;7324:31;7382:18;7374:6;7371:30;7368:117;;;7404:79;;:::i;:::-;7368:117;7509:78;7579:7;7570:6;7559:9;7555:22;7509:78;:::i;:::-;7499:88;;7295:302;7636:2;7662:53;7707:7;7698:6;7687:9;7683:22;7662:53;:::i;:::-;7652:63;;7607:118;7048:684;;;;;:::o;7738:327::-;7796:6;7845:2;7833:9;7824:7;7820:23;7816:32;7813:119;;;7851:79;;:::i;:::-;7813:119;7971:1;7996:52;8040:7;8031:6;8020:9;8016:22;7996:52;:::i;:::-;7986:62;;7942:116;7738:327;;;;:::o;8071:349::-;8140:6;8189:2;8177:9;8168:7;8164:23;8160:32;8157:119;;;8195:79;;:::i;:::-;8157:119;8315:1;8340:63;8395:7;8386:6;8375:9;8371:22;8340:63;:::i;:::-;8330:73;;8286:127;8071:349;;;;:::o;8426:509::-;8495:6;8544:2;8532:9;8523:7;8519:23;8515:32;8512:119;;;8550:79;;:::i;:::-;8512:119;8698:1;8687:9;8683:17;8670:31;8728:18;8720:6;8717:30;8714:117;;;8750:79;;:::i;:::-;8714:117;8855:63;8910:7;8901:6;8890:9;8886:22;8855:63;:::i;:::-;8845:73;;8641:287;8426:509;;;;:::o;8941:329::-;9000:6;9049:2;9037:9;9028:7;9024:23;9020:32;9017:119;;;9055:79;;:::i;:::-;9017:119;9175:1;9200:53;9245:7;9236:6;9225:9;9221:22;9200:53;:::i;:::-;9190:63;;9146:117;8941:329;;;;:::o;9276:::-;9335:6;9384:2;9372:9;9363:7;9359:23;9355:32;9352:119;;;9390:79;;:::i;:::-;9352:119;9510:1;9535:53;9580:7;9571:6;9560:9;9556:22;9535:53;:::i;:::-;9525:63;;9481:117;9276:329;;;;:::o;9611:118::-;9698:24;9716:5;9698:24;:::i;:::-;9693:3;9686:37;9611:118;;:::o;9735:157::-;9840:45;9860:24;9878:5;9860:24;:::i;:::-;9840:45;:::i;:::-;9835:3;9828:58;9735:157;;:::o;9898:109::-;9979:21;9994:5;9979:21;:::i;:::-;9974:3;9967:34;9898:109;;:::o;10013:118::-;10100:24;10118:5;10100:24;:::i;:::-;10095:3;10088:37;10013:118;;:::o;10137:360::-;10223:3;10251:38;10283:5;10251:38;:::i;:::-;10305:70;10368:6;10363:3;10305:70;:::i;:::-;10298:77;;10384:52;10429:6;10424:3;10417:4;10410:5;10406:16;10384:52;:::i;:::-;10461:29;10483:6;10461:29;:::i;:::-;10456:3;10452:39;10445:46;;10227:270;10137:360;;;;:::o;10503:364::-;10591:3;10619:39;10652:5;10619:39;:::i;:::-;10674:71;10738:6;10733:3;10674:71;:::i;:::-;10667:78;;10754:52;10799:6;10794:3;10787:4;10780:5;10776:16;10754:52;:::i;:::-;10831:29;10853:6;10831:29;:::i;:::-;10826:3;10822:39;10815:46;;10595:272;10503:364;;;;:::o;10873:377::-;10979:3;11007:39;11040:5;11007:39;:::i;:::-;11062:89;11144:6;11139:3;11062:89;:::i;:::-;11055:96;;11160:52;11205:6;11200:3;11193:4;11186:5;11182:16;11160:52;:::i;:::-;11237:6;11232:3;11228:16;11221:23;;10983:267;10873:377;;;;:::o;11256:366::-;11398:3;11419:67;11483:2;11478:3;11419:67;:::i;:::-;11412:74;;11495:93;11584:3;11495:93;:::i;:::-;11613:2;11608:3;11604:12;11597:19;;11256:366;;;:::o;11628:::-;11770:3;11791:67;11855:2;11850:3;11791:67;:::i;:::-;11784:74;;11867:93;11956:3;11867:93;:::i;:::-;11985:2;11980:3;11976:12;11969:19;;11628:366;;;:::o;12000:::-;12142:3;12163:67;12227:2;12222:3;12163:67;:::i;:::-;12156:74;;12239:93;12328:3;12239:93;:::i;:::-;12357:2;12352:3;12348:12;12341:19;;12000:366;;;:::o;12372:::-;12514:3;12535:67;12599:2;12594:3;12535:67;:::i;:::-;12528:74;;12611:93;12700:3;12611:93;:::i;:::-;12729:2;12724:3;12720:12;12713:19;;12372:366;;;:::o;12744:::-;12886:3;12907:67;12971:2;12966:3;12907:67;:::i;:::-;12900:74;;12983:93;13072:3;12983:93;:::i;:::-;13101:2;13096:3;13092:12;13085:19;;12744:366;;;:::o;13116:::-;13258:3;13279:67;13343:2;13338:3;13279:67;:::i;:::-;13272:74;;13355:93;13444:3;13355:93;:::i;:::-;13473:2;13468:3;13464:12;13457:19;;13116:366;;;:::o;13488:::-;13630:3;13651:67;13715:2;13710:3;13651:67;:::i;:::-;13644:74;;13727:93;13816:3;13727:93;:::i;:::-;13845:2;13840:3;13836:12;13829:19;;13488:366;;;:::o;13860:::-;14002:3;14023:67;14087:2;14082:3;14023:67;:::i;:::-;14016:74;;14099:93;14188:3;14099:93;:::i;:::-;14217:2;14212:3;14208:12;14201:19;;13860:366;;;:::o;14232:::-;14374:3;14395:67;14459:2;14454:3;14395:67;:::i;:::-;14388:74;;14471:93;14560:3;14471:93;:::i;:::-;14589:2;14584:3;14580:12;14573:19;;14232:366;;;:::o;14604:::-;14746:3;14767:67;14831:2;14826:3;14767:67;:::i;:::-;14760:74;;14843:93;14932:3;14843:93;:::i;:::-;14961:2;14956:3;14952:12;14945:19;;14604:366;;;:::o;14976:::-;15118:3;15139:67;15203:2;15198:3;15139:67;:::i;:::-;15132:74;;15215:93;15304:3;15215:93;:::i;:::-;15333:2;15328:3;15324:12;15317:19;;14976:366;;;:::o;15348:::-;15490:3;15511:67;15575:2;15570:3;15511:67;:::i;:::-;15504:74;;15587:93;15676:3;15587:93;:::i;:::-;15705:2;15700:3;15696:12;15689:19;;15348:366;;;:::o;15720:::-;15862:3;15883:67;15947:2;15942:3;15883:67;:::i;:::-;15876:74;;15959:93;16048:3;15959:93;:::i;:::-;16077:2;16072:3;16068:12;16061:19;;15720:366;;;:::o;16092:400::-;16252:3;16273:84;16355:1;16350:3;16273:84;:::i;:::-;16266:91;;16366:93;16455:3;16366:93;:::i;:::-;16484:1;16479:3;16475:11;16468:18;;16092:400;;;:::o;16498:366::-;16640:3;16661:67;16725:2;16720:3;16661:67;:::i;:::-;16654:74;;16737:93;16826:3;16737:93;:::i;:::-;16855:2;16850:3;16846:12;16839:19;;16498:366;;;:::o;16870:::-;17012:3;17033:67;17097:2;17092:3;17033:67;:::i;:::-;17026:74;;17109:93;17198:3;17109:93;:::i;:::-;17227:2;17222:3;17218:12;17211:19;;16870:366;;;:::o;17242:::-;17384:3;17405:67;17469:2;17464:3;17405:67;:::i;:::-;17398:74;;17481:93;17570:3;17481:93;:::i;:::-;17599:2;17594:3;17590:12;17583:19;;17242:366;;;:::o;17614:::-;17756:3;17777:67;17841:2;17836:3;17777:67;:::i;:::-;17770:74;;17853:93;17942:3;17853:93;:::i;:::-;17971:2;17966:3;17962:12;17955:19;;17614:366;;;:::o;17986:::-;18128:3;18149:67;18213:2;18208:3;18149:67;:::i;:::-;18142:74;;18225:93;18314:3;18225:93;:::i;:::-;18343:2;18338:3;18334:12;18327:19;;17986:366;;;:::o;18358:::-;18500:3;18521:67;18585:2;18580:3;18521:67;:::i;:::-;18514:74;;18597:93;18686:3;18597:93;:::i;:::-;18715:2;18710:3;18706:12;18699:19;;18358:366;;;:::o;18730:::-;18872:3;18893:67;18957:2;18952:3;18893:67;:::i;:::-;18886:74;;18969:93;19058:3;18969:93;:::i;:::-;19087:2;19082:3;19078:12;19071:19;;18730:366;;;:::o;19102:::-;19244:3;19265:67;19329:2;19324:3;19265:67;:::i;:::-;19258:74;;19341:93;19430:3;19341:93;:::i;:::-;19459:2;19454:3;19450:12;19443:19;;19102:366;;;:::o;19474:::-;19616:3;19637:67;19701:2;19696:3;19637:67;:::i;:::-;19630:74;;19713:93;19802:3;19713:93;:::i;:::-;19831:2;19826:3;19822:12;19815:19;;19474:366;;;:::o;19846:118::-;19933:24;19951:5;19933:24;:::i;:::-;19928:3;19921:37;19846:118;;:::o;19970:::-;20057:24;20075:5;20057:24;:::i;:::-;20052:3;20045:37;19970:118;;:::o;20094:256::-;20206:3;20221:75;20292:3;20283:6;20221:75;:::i;:::-;20321:2;20316:3;20312:12;20305:19;;20341:3;20334:10;;20094:256;;;;:::o;20356:701::-;20637:3;20659:95;20750:3;20741:6;20659:95;:::i;:::-;20652:102;;20771:95;20862:3;20853:6;20771:95;:::i;:::-;20764:102;;20883:148;21027:3;20883:148;:::i;:::-;20876:155;;21048:3;21041:10;;20356:701;;;;;:::o;21063:222::-;21156:4;21194:2;21183:9;21179:18;21171:26;;21207:71;21275:1;21264:9;21260:17;21251:6;21207:71;:::i;:::-;21063:222;;;;:::o;21291:640::-;21486:4;21524:3;21513:9;21509:19;21501:27;;21538:71;21606:1;21595:9;21591:17;21582:6;21538:71;:::i;:::-;21619:72;21687:2;21676:9;21672:18;21663:6;21619:72;:::i;:::-;21701;21769:2;21758:9;21754:18;21745:6;21701:72;:::i;:::-;21820:9;21814:4;21810:20;21805:2;21794:9;21790:18;21783:48;21848:76;21919:4;21910:6;21848:76;:::i;:::-;21840:84;;21291:640;;;;;;;:::o;21937:210::-;22024:4;22062:2;22051:9;22047:18;22039:26;;22075:65;22137:1;22126:9;22122:17;22113:6;22075:65;:::i;:::-;21937:210;;;;:::o;22153:222::-;22246:4;22284:2;22273:9;22269:18;22261:26;;22297:71;22365:1;22354:9;22350:17;22341:6;22297:71;:::i;:::-;22153:222;;;;:::o;22381:313::-;22494:4;22532:2;22521:9;22517:18;22509:26;;22581:9;22575:4;22571:20;22567:1;22556:9;22552:17;22545:47;22609:78;22682:4;22673:6;22609:78;:::i;:::-;22601:86;;22381:313;;;;:::o;22700:419::-;22866:4;22904:2;22893:9;22889:18;22881:26;;22953:9;22947:4;22943:20;22939:1;22928:9;22924:17;22917:47;22981:131;23107:4;22981:131;:::i;:::-;22973:139;;22700:419;;;:::o;23125:::-;23291:4;23329:2;23318:9;23314:18;23306:26;;23378:9;23372:4;23368:20;23364:1;23353:9;23349:17;23342:47;23406:131;23532:4;23406:131;:::i;:::-;23398:139;;23125:419;;;:::o;23550:::-;23716:4;23754:2;23743:9;23739:18;23731:26;;23803:9;23797:4;23793:20;23789:1;23778:9;23774:17;23767:47;23831:131;23957:4;23831:131;:::i;:::-;23823:139;;23550:419;;;:::o;23975:::-;24141:4;24179:2;24168:9;24164:18;24156:26;;24228:9;24222:4;24218:20;24214:1;24203:9;24199:17;24192:47;24256:131;24382:4;24256:131;:::i;:::-;24248:139;;23975:419;;;:::o;24400:::-;24566:4;24604:2;24593:9;24589:18;24581:26;;24653:9;24647:4;24643:20;24639:1;24628:9;24624:17;24617:47;24681:131;24807:4;24681:131;:::i;:::-;24673:139;;24400:419;;;:::o;24825:::-;24991:4;25029:2;25018:9;25014:18;25006:26;;25078:9;25072:4;25068:20;25064:1;25053:9;25049:17;25042:47;25106:131;25232:4;25106:131;:::i;:::-;25098:139;;24825:419;;;:::o;25250:::-;25416:4;25454:2;25443:9;25439:18;25431:26;;25503:9;25497:4;25493:20;25489:1;25478:9;25474:17;25467:47;25531:131;25657:4;25531:131;:::i;:::-;25523:139;;25250:419;;;:::o;25675:::-;25841:4;25879:2;25868:9;25864:18;25856:26;;25928:9;25922:4;25918:20;25914:1;25903:9;25899:17;25892:47;25956:131;26082:4;25956:131;:::i;:::-;25948:139;;25675:419;;;:::o;26100:::-;26266:4;26304:2;26293:9;26289:18;26281:26;;26353:9;26347:4;26343:20;26339:1;26328:9;26324:17;26317:47;26381:131;26507:4;26381:131;:::i;:::-;26373:139;;26100:419;;;:::o;26525:::-;26691:4;26729:2;26718:9;26714:18;26706:26;;26778:9;26772:4;26768:20;26764:1;26753:9;26749:17;26742:47;26806:131;26932:4;26806:131;:::i;:::-;26798:139;;26525:419;;;:::o;26950:::-;27116:4;27154:2;27143:9;27139:18;27131:26;;27203:9;27197:4;27193:20;27189:1;27178:9;27174:17;27167:47;27231:131;27357:4;27231:131;:::i;:::-;27223:139;;26950:419;;;:::o;27375:::-;27541:4;27579:2;27568:9;27564:18;27556:26;;27628:9;27622:4;27618:20;27614:1;27603:9;27599:17;27592:47;27656:131;27782:4;27656:131;:::i;:::-;27648:139;;27375:419;;;:::o;27800:::-;27966:4;28004:2;27993:9;27989:18;27981:26;;28053:9;28047:4;28043:20;28039:1;28028:9;28024:17;28017:47;28081:131;28207:4;28081:131;:::i;:::-;28073:139;;27800:419;;;:::o;28225:::-;28391:4;28429:2;28418:9;28414:18;28406:26;;28478:9;28472:4;28468:20;28464:1;28453:9;28449:17;28442:47;28506:131;28632:4;28506:131;:::i;:::-;28498:139;;28225:419;;;:::o;28650:::-;28816:4;28854:2;28843:9;28839:18;28831:26;;28903:9;28897:4;28893:20;28889:1;28878:9;28874:17;28867:47;28931:131;29057:4;28931:131;:::i;:::-;28923:139;;28650:419;;;:::o;29075:::-;29241:4;29279:2;29268:9;29264:18;29256:26;;29328:9;29322:4;29318:20;29314:1;29303:9;29299:17;29292:47;29356:131;29482:4;29356:131;:::i;:::-;29348:139;;29075:419;;;:::o;29500:::-;29666:4;29704:2;29693:9;29689:18;29681:26;;29753:9;29747:4;29743:20;29739:1;29728:9;29724:17;29717:47;29781:131;29907:4;29781:131;:::i;:::-;29773:139;;29500:419;;;:::o;29925:::-;30091:4;30129:2;30118:9;30114:18;30106:26;;30178:9;30172:4;30168:20;30164:1;30153:9;30149:17;30142:47;30206:131;30332:4;30206:131;:::i;:::-;30198:139;;29925:419;;;:::o;30350:::-;30516:4;30554:2;30543:9;30539:18;30531:26;;30603:9;30597:4;30593:20;30589:1;30578:9;30574:17;30567:47;30631:131;30757:4;30631:131;:::i;:::-;30623:139;;30350:419;;;:::o;30775:::-;30941:4;30979:2;30968:9;30964:18;30956:26;;31028:9;31022:4;31018:20;31014:1;31003:9;30999:17;30992:47;31056:131;31182:4;31056:131;:::i;:::-;31048:139;;30775:419;;;:::o;31200:::-;31366:4;31404:2;31393:9;31389:18;31381:26;;31453:9;31447:4;31443:20;31439:1;31428:9;31424:17;31417:47;31481:131;31607:4;31481:131;:::i;:::-;31473:139;;31200:419;;;:::o;31625:::-;31791:4;31829:2;31818:9;31814:18;31806:26;;31878:9;31872:4;31868:20;31864:1;31853:9;31849:17;31842:47;31906:131;32032:4;31906:131;:::i;:::-;31898:139;;31625:419;;;:::o;32050:222::-;32143:4;32181:2;32170:9;32166:18;32158:26;;32194:71;32262:1;32251:9;32247:17;32238:6;32194:71;:::i;:::-;32050:222;;;;:::o;32278:::-;32371:4;32409:2;32398:9;32394:18;32386:26;;32422:71;32490:1;32479:9;32475:17;32466:6;32422:71;:::i;:::-;32278:222;;;;:::o;32506:129::-;32540:6;32567:20;;:::i;:::-;32557:30;;32596:33;32624:4;32616:6;32596:33;:::i;:::-;32506:129;;;:::o;32641:75::-;32674:6;32707:2;32701:9;32691:19;;32641:75;:::o;32722:311::-;32799:4;32889:18;32881:6;32878:30;32875:56;;;32911:18;;:::i;:::-;32875:56;32961:4;32953:6;32949:17;32941:25;;33021:4;33015;33011:15;33003:23;;32722:311;;;:::o;33039:307::-;33100:4;33190:18;33182:6;33179:30;33176:56;;;33212:18;;:::i;:::-;33176:56;33250:29;33272:6;33250:29;:::i;:::-;33242:37;;33334:4;33328;33324:15;33316:23;;33039:307;;;:::o;33352:308::-;33414:4;33504:18;33496:6;33493:30;33490:56;;;33526:18;;:::i;:::-;33490:56;33564:29;33586:6;33564:29;:::i;:::-;33556:37;;33648:4;33642;33638:15;33630:23;;33352:308;;;:::o;33666:98::-;33717:6;33751:5;33745:12;33735:22;;33666:98;;;:::o;33770:99::-;33822:6;33856:5;33850:12;33840:22;;33770:99;;;:::o;33875:168::-;33958:11;33992:6;33987:3;33980:19;34032:4;34027:3;34023:14;34008:29;;33875:168;;;;:::o;34049:169::-;34133:11;34167:6;34162:3;34155:19;34207:4;34202:3;34198:14;34183:29;;34049:169;;;;:::o;34224:148::-;34326:11;34363:3;34348:18;;34224:148;;;;:::o;34378:273::-;34418:3;34437:20;34455:1;34437:20;:::i;:::-;34432:25;;34471:20;34489:1;34471:20;:::i;:::-;34466:25;;34593:1;34557:34;34553:42;34550:1;34547:49;34544:75;;;34599:18;;:::i;:::-;34544:75;34643:1;34640;34636:9;34629:16;;34378:273;;;;:::o;34657:305::-;34697:3;34716:20;34734:1;34716:20;:::i;:::-;34711:25;;34750:20;34768:1;34750:20;:::i;:::-;34745:25;;34904:1;34836:66;34832:74;34829:1;34826:81;34823:107;;;34910:18;;:::i;:::-;34823:107;34954:1;34951;34947:9;34940:16;;34657:305;;;;:::o;34968:185::-;35008:1;35025:20;35043:1;35025:20;:::i;:::-;35020:25;;35059:20;35077:1;35059:20;:::i;:::-;35054:25;;35098:1;35088:35;;35103:18;;:::i;:::-;35088:35;35145:1;35142;35138:9;35133:14;;34968:185;;;;:::o;35159:348::-;35199:7;35222:20;35240:1;35222:20;:::i;:::-;35217:25;;35256:20;35274:1;35256:20;:::i;:::-;35251:25;;35444:1;35376:66;35372:74;35369:1;35366:81;35361:1;35354:9;35347:17;35343:105;35340:131;;;35451:18;;:::i;:::-;35340:131;35499:1;35496;35492:9;35481:20;;35159:348;;;;:::o;35513:191::-;35553:4;35573:20;35591:1;35573:20;:::i;:::-;35568:25;;35607:20;35625:1;35607:20;:::i;:::-;35602:25;;35646:1;35643;35640:8;35637:34;;;35651:18;;:::i;:::-;35637:34;35696:1;35693;35689:9;35681:17;;35513:191;;;;:::o;35710:96::-;35747:7;35776:24;35794:5;35776:24;:::i;:::-;35765:35;;35710:96;;;:::o;35812:90::-;35846:7;35889:5;35882:13;35875:21;35864:32;;35812:90;;;:::o;35908:77::-;35945:7;35974:5;35963:16;;35908:77;;;:::o;35991:149::-;36027:7;36067:66;36060:5;36056:78;36045:89;;35991:149;;;:::o;36146:118::-;36183:7;36223:34;36216:5;36212:46;36201:57;;36146:118;;;:::o;36270:126::-;36307:7;36347:42;36340:5;36336:54;36325:65;;36270:126;;;:::o;36402:77::-;36439:7;36468:5;36457:16;;36402:77;;;:::o;36485:154::-;36569:6;36564:3;36559;36546:30;36631:1;36622:6;36617:3;36613:16;36606:27;36485:154;;;:::o;36645:307::-;36713:1;36723:113;36737:6;36734:1;36731:13;36723:113;;;36822:1;36817:3;36813:11;36807:18;36803:1;36798:3;36794:11;36787:39;36759:2;36756:1;36752:10;36747:15;;36723:113;;;36854:6;36851:1;36848:13;36845:101;;;36934:1;36925:6;36920:3;36916:16;36909:27;36845:101;36694:258;36645:307;;;:::o;36958:320::-;37002:6;37039:1;37033:4;37029:12;37019:22;;37086:1;37080:4;37076:12;37107:18;37097:81;;37163:4;37155:6;37151:17;37141:27;;37097:81;37225:2;37217:6;37214:14;37194:18;37191:38;37188:84;;;37244:18;;:::i;:::-;37188:84;37009:269;36958:320;;;:::o;37284:281::-;37367:27;37389:4;37367:27;:::i;:::-;37359:6;37355:40;37497:6;37485:10;37482:22;37461:18;37449:10;37446:34;37443:62;37440:88;;;37508:18;;:::i;:::-;37440:88;37548:10;37544:2;37537:22;37327:238;37284:281;;:::o;37571:233::-;37610:3;37633:24;37651:5;37633:24;:::i;:::-;37624:33;;37679:66;37672:5;37669:77;37666:103;;;37749:18;;:::i;:::-;37666:103;37796:1;37789:5;37785:13;37778:20;;37571:233;;;:::o;37810:100::-;37849:7;37878:26;37898:5;37878:26;:::i;:::-;37867:37;;37810:100;;;:::o;37916:94::-;37955:7;37984:20;37998:5;37984:20;:::i;:::-;37973:31;;37916:94;;;:::o;38016:176::-;38048:1;38065:20;38083:1;38065:20;:::i;:::-;38060:25;;38099:20;38117:1;38099:20;:::i;:::-;38094:25;;38138:1;38128:35;;38143:18;;:::i;:::-;38128:35;38184:1;38181;38177:9;38172:14;;38016:176;;;;:::o;38198:180::-;38246:77;38243:1;38236:88;38343:4;38340:1;38333:15;38367:4;38364:1;38357:15;38384:180;38432:77;38429:1;38422:88;38529:4;38526:1;38519:15;38553:4;38550:1;38543:15;38570:180;38618:77;38615:1;38608:88;38715:4;38712:1;38705:15;38739:4;38736:1;38729:15;38756:180;38804:77;38801:1;38794:88;38901:4;38898:1;38891:15;38925:4;38922:1;38915:15;38942:180;38990:77;38987:1;38980:88;39087:4;39084:1;39077:15;39111:4;39108:1;39101:15;39128:117;39237:1;39234;39227:12;39251:117;39360:1;39357;39350:12;39374:117;39483:1;39480;39473:12;39497:117;39606:1;39603;39596:12;39620:117;39729:1;39726;39719:12;39743:102;39784:6;39835:2;39831:7;39826:2;39819:5;39815:14;39811:28;39801:38;;39743:102;;;:::o;39851:94::-;39884:8;39932:5;39928:2;39924:14;39903:35;;39851:94;;;:::o;39951:179::-;40091:31;40087:1;40079:6;40075:14;40068:55;39951:179;:::o;40136:182::-;40276:34;40272:1;40264:6;40260:14;40253:58;40136:182;:::o;40324:169::-;40464:21;40460:1;40452:6;40448:14;40441:45;40324:169;:::o;40499:172::-;40639:24;40635:1;40627:6;40623:14;40616:48;40499:172;:::o;40677:169::-;40817:21;40813:1;40805:6;40801:14;40794:45;40677:169;:::o;40852:225::-;40992:34;40988:1;40980:6;40976:14;40969:58;41061:8;41056:2;41048:6;41044:15;41037:33;40852:225;:::o;41083:178::-;41223:30;41219:1;41211:6;41207:14;41200:54;41083:178;:::o;41267:232::-;41407:34;41403:1;41395:6;41391:14;41384:58;41476:15;41471:2;41463:6;41459:15;41452:40;41267:232;:::o;41505:173::-;41645:25;41641:1;41633:6;41629:14;41622:49;41505:173;:::o;41684:168::-;41824:20;41820:1;41812:6;41808:14;41801:44;41684:168;:::o;41858:172::-;41998:24;41994:1;41986:6;41982:14;41975:48;41858:172;:::o;42036:223::-;42176:34;42172:1;42164:6;42160:14;42153:58;42245:6;42240:2;42232:6;42228:15;42221:31;42036:223;:::o;42265:164::-;42405:16;42401:1;42393:6;42389:14;42382:40;42265:164;:::o;42435:155::-;42575:7;42571:1;42563:6;42559:14;42552:31;42435:155;:::o;42596:182::-;42736:34;42732:1;42724:6;42720:14;42713:58;42596:182;:::o;42784:234::-;42924:34;42920:1;42912:6;42908:14;42901:58;42993:17;42988:2;42980:6;42976:15;42969:42;42784:234;:::o;43024:170::-;43164:22;43160:1;43152:6;43148:14;43141:46;43024:170;:::o;43200:238::-;43340:34;43336:1;43328:6;43324:14;43317:58;43409:21;43404:2;43396:6;43392:15;43385:46;43200:238;:::o;43444:220::-;43584:34;43580:1;43572:6;43568:14;43561:58;43653:3;43648:2;43640:6;43636:15;43629:28;43444:220;:::o;43670:176::-;43810:28;43806:1;43798:6;43794:14;43787:52;43670:176;:::o;43852:173::-;43992:25;43988:1;43980:6;43976:14;43969:49;43852:173;:::o;44031:168::-;44171:20;44167:1;44159:6;44155:14;44148:44;44031:168;:::o;44205:162::-;44345:14;44341:1;44333:6;44329:14;44322:38;44205:162;:::o;44373:122::-;44446:24;44464:5;44446:24;:::i;:::-;44439:5;44436:35;44426:63;;44485:1;44482;44475:12;44426:63;44373:122;:::o;44501:116::-;44571:21;44586:5;44571:21;:::i;:::-;44564:5;44561:32;44551:60;;44607:1;44604;44597:12;44551:60;44501:116;:::o;44623:122::-;44696:24;44714:5;44696:24;:::i;:::-;44689:5;44686:35;44676:63;;44735:1;44732;44725:12;44676:63;44623:122;:::o;44751:120::-;44823:23;44840:5;44823:23;:::i;:::-;44816:5;44813:34;44803:62;;44861:1;44858;44851:12;44803:62;44751:120;:::o;44877:122::-;44950:24;44968:5;44950:24;:::i;:::-;44943:5;44940:35;44930:63;;44989:1;44986;44979:12;44930:63;44877:122;:::o;45005:::-;45078:24;45096:5;45078:24;:::i;:::-;45071:5;45068:35;45058:63;;45117:1;45114;45107:12;45058:63;45005:122;:::o

Swarm Source

ipfs://9af9b3c07df36314489c931abf7f950ca61e5bec2f3e9d7ad7cec3c84cca0c6a
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.