ETH Price: $3,274.10 (-4.00%)
Gas: 15 Gwei

Token

Dragon Deez (DD)
 

Overview

Max Total Supply

5,555 DD

Holders

2,587

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 DD
0x6c4a6922254b40c15b69fde2c605b9d26761e724
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:
DragonDeez

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-25
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error UnableDetermineTokenOwner();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal _currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        if (index >= totalSupply()) revert TokenIndexOutOfBounds();
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        assert(false);
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        if (!_exists(tokenId)) revert OwnerQueryForNonexistentToken();

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

        revert UnableDetermineTokenOwner();
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) revert ApprovalCallerNotOwnerNorApproved();

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        if (operator == _msgSender()) revert ApproveToCaller();

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        if (!_checkOnERC721Received(from, to, tokenId, _data)) revert TransferToNonERC721ReceiverImplementer();
    }

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

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

    /**
     * @dev 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.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @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.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }

                updatedIndex++;
            }

            _currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // 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 {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

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

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

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

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

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

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



/*                                                                                                                 
                                                      ....                                                              
                                                      .:^~::::                                                          
                                                       .^~~~!!^:                                                        
                                                        .:^^^~?7~:                                                      
                                                         .^~^~~!?7!:                                                    
                             ....                        .^^^^^~777?J^.        .                                        
  ...........               :^^~!~.....                   ..^^^~7777?JY:     ..7^.                                      
 .^^~^^^^^^!!:::::.          .:^^~!!!7?^.::               ..^~^~77777JY~:    ..~~7~:                                    
   .:^~~^^^^^!!7??7^^^.       ..~~^^^~!7?JJ~^^:             ::^^^~?7777YY.   .:^~77?:                                   
     .:^~^^^^^^!!7?JJJ7~~~.     ::^^^^^~!77JJJJ!^           ..^^^~!7777?J~^..^~^~777!~.                                 
       .:^~^^^^^^~!777?JJJ7!7!  ..~^^^^^^~!7777J?~:         ..^^^^^!77777?7..^^^~777J5:.                                
         ..^^^^^^^~~!77777?J??!~..^^^^^^^^^~~7777?7!:       ...:^^^~~!77777..^^^~777JY:.                                
           ..^^^~^^^~~!777777777^^^^^^^^~~~^^^~7777?^.:^^^^^^^^:.....::~7:.^^^^^~~!7????.                               
              .^^~~^^^^~!77777~~~^^^^^~^^^^:...::::^^:^^^^^~~~~~77777?J^:::^^~~^^^!777YY:.                              
                .:^^^^^^^^^^^^^^^^^^^^^:...!!!!!!!~::::::::::^777777777JJJJ^::^^^^^^!7!~..                              
                 ..~~^^^^^^^^^^^^^^^~: :~~^^^^^^^^~!!!!!!!^:::^~??777777777J?::^^^^^^::....::.                          
                   ::~^^^^^^^^^^^^^^~^:::^~^^^^^^^^^^^^^^^!!!!^^^~?7777777777?7^^^^~::^~~~~~!!^:                        
                   ..~^^^^^^^^^^^^^^^~~^:^~^^^^^^^^^^^^^^^^^^~!~:^~!777777777!~^^^^^~~^^^^^^^~?~.                       
                     .:~^^^^^^^^^^^^^^^~~^^^^^^^^^^^^^^^^^^^^^^^~^^~~~~~~~~~~^^^^^^^^^^^^^^~7~:.                        
                     .:~^^:.^^^^^^^^^^^^^:.^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^7~.                         
                     .:~:.:^^~^^^^^^^^^^^^^....:::::::::..^^:...^^^^^^^^^^^^^^^^^^^^^^^^..:...                          
                   ..^^~..^~^:^^^^^^^^^^^^^^^..JY5555555:.G#PJ..~^^^^^^^^^^^^^^^^^^^^^^^..YJ.                           
                   ..~^~:.::::^^^^^^^^^^^^^~^..Y5#######^  .BG..~^^^^~~~!!!!!!!!!!~~^^^^..#G.                           
                   ..~^^~~..^~^^^^^^^^^^^^^^^..YP#######Y77?#G..~^^^~::^^^^^^^^^^^::^~^^::7!                            
                   ..~^^^~..^~^^^^^^^^^^^^^^^::^!PG#########!~::^^~:.:::::::::::::::^~^^~~^^                            
                   ..^^^^^^:..^^^^.:~^^^^^^^^~^::::^^^^^^^^^::~~^^^^:^~:................^~7!.                           
                     .:~^^~~^^^^..^^^^^^^^^^^^^~^^^^^^^^^^^^^~^^^^^^~:.:^^^^^^^^^^^^^^^^:.:.                            
..                   .:~^^^^~~~^..~~^^~^^^^^^^^~~~~~~~~~~~~~^^^^^^^^^^^~~~~~~77777777777777!....:                       
..                    .^^^^^^^^^..:^~^:^^^^^^~^:^^^^^^^^^^^^^^^^^^^~~^::::^7?7777777777777777?JJY!:  .^::               
::                     .:~^^^^^^~^.:::.^~^^^^::.:^^^^^^^^^^^^^^^^^^^::.^^^^^~7777777777777??77777?Y!^!7JJ.              
7!..                   .:~^^^^^^^^~:.:~^^^^^^..^~^^^^^^^^^^^^^^^^^~:.:~7??7~~7777777777777^^7?77777?J: !7..             
!~.                    .:~^^^^^^^^~:.:~^^^^^^..^^^^^^^^^^^^^^^^^^^~:.:~:..:!77777777777777~^:^7777777~~^:               
5Y~^.                  .:~^^^^^^^^^^^:.:~^^^^..^^^^^^^^^^^^^^^^^^^^^^:.::::^^~!77777777777?!.:7777777?7.                
P57~.                  .:~^^^^^^^^^^~^^^^^^^^^^.:^^^^~~~~~~~^^^^^^^^~^^:...^^^~7777777777777!~.^?777777.                
P57!..               .:^^^~~^^^^^^^^^^~^^^^^^~^^:...:^^:^^^^^~~~^^^^^^~^^^^^^^^~~77777777777?~ :?777777:.               
PPPY!^.              .:~~~^:^^^^^^^^^^^^^^^^^^^^^^^^:.^7....:::^~~^^^^^^^^^^^^^^^^~7!!777777?!:^?77777!~^.              
PPP5J!:.             .:~^::.^^^^^^^^^^^^^^^^^^^^^^~~:.JB~.^^:..::^~~~^^^^^^^^^^~~~~~~^!!!!!!!!!!!!!!!~^~^..             
PPPPP5Y!^.         .:~~~..^~^^^^^^^^^^^^^^^^^^^^^^:.::..^~^^~~~^:::::^~~~~~~~~^:::::::::::::::::::~^^~~:.               
PPPPPPP5Y!^.      .:^^^~..^~^^^^^^^^^^^^^^^^^^^^!5YJJJ^...^^^^^^~^::::........::::::::::::::::::::.....^^               
PPPPPPPPP55!~~~..^^~~^^~..^~^^^^^^^:.:~^^^^^^^~5PBBBB#PYYY:.^^^^^~~~~^:..GB..:^~~77777777777777!~: J#^.!!..             
BBPPPPPPPPPP55Y..^~^^^^^:.:^^^^^~^.:^^^^^^^^~~7BBBBBBBBBBBP5::::^^^^~~~^^^~^^^~777777777???????77!~~~JY7!..             
#BBBPPPPPPPPP:.^^^^^^~:.:^:.^^^^~^..~~~^^^^^~GGGGGGBBBBBBBBBGP5?::::^^^^^^^~~^~777777777!!!!!!!!!^.75PPP5!~.            
BB#B#BPPPPPYJ:.^~^^^^~: :~^^^^^^~:..~^:^^^^^~GBBBBBGGGGGGGGGBP.:PPP7:^^^^^::::^~~7777777:.....^^:~7J5PPGP7~..           
BBBB#BGGPPG: ^~^^^^^^~:.::^~^^^^~^.:::.^~^^^~GBBBBBBBBBBBBBBJ?^!PPPGGB##B^:^~~^:::::::::::::^!PGGGGJ!5PBB7~..           
BBBBB##GP?!^:^^^^^^^^^~~::^^^^^^^^~:.:~^^^~?YBBBBBBBBBB####B..PGPPPG####B?7PGG5!!77777^:~!!7PGGB###J!5GBB7~..           
BBBBBB#GG^ ^~^^^^^^^^^^^~~^^^^^^^^~:.:~^^^~PBGGBBBBBB######B..PPPGBB#BB#B7!PPPGB######J!PGGGPG#####GPJ?BB7~..           
BBBB#BG?:^^^^..^^^^^^^^^^^^^^^^^^^^^^:.:~^~PBBGGGGGGB#######PY:~PG##BB#Y?Y5P5^^^?#B###?!5PPPPY^^^J###?!GB7~..           
BBBB#G5! :~..:^^^^^^^^^^^^^^^^~^^^^^~^^^^^~GBBBBBBB##BBBBBBB#G.^5G#BBB#?!55:.    :?BB#?!5P5Y:.   .:YB?!GB7~..           
B##B57.:^^~..^~~~^^^^^^^^^^^^^^^.:^^^^~^^^~GBBBBBBB###########&P.!#BBB#J!:.        .Y#?!55:.       .:~7GB7~..           
#BP? ..:~^~..^~:^^^^^^^^^^^^^^..^^^^^^^^^^~PBBBBBBB###########&G ~##B##J!..        .Y#J!PP..        .~7BB7~..           
Y?    ::~^^:.::.:^^^^^^^^^^^^^..^^^^^^^^^^~PBGGGBBB###########&B!?JP#GP!^.          !Y7!?7.          :~557~..           
..  .:~~^^^~^..^~^^^^^^^^^^^~^..^~^^^^^^^^~?YGGGGGB###########B#&Y 7#J!:.            .~!..            .~!7!..           
    ..~^^^^^^..^~^^^^^^^^^^^:.::.:^^^^^^^^^^~GBBBBB##############J 7#Y!:.            .~!..           ..~!::             
    .:~^^^^^^..^^^^^^^^^^^:.:^~^:^^^^^^^^^^^~GBBB################BP?^~!:.            .~!..            .~!..             
   .^^^^^^^^^^^..^^^^^^^^~..^~^^~~^^^^^^^^^^~GBBB#################&? ..               ..               ..            
*/


pragma solidity ^0.8.7;





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

    uint256 public constant MAX_SUPPLY = 5555;
    uint256 public constant MAX_FREE_SUPPLY = 555;

    uint256 public freeMintCounter = 0;
    uint256 public PRICE = 0.012 ether;


    mapping(address => bool) public vipMinters;
    mapping(address => uint256) public whitelistedMint;
    mapping(address => uint256) public publicMintQuantity;

    bool public mintTime = false;
    bool public publicMintTime = false;

    string private baseTokenUri = "https://ooootest.mypinata.cloud/ipfs/QmZb2NEom1dDbVYFo95mCzzCFFJqkcKmL6B7pHwXEjN9dz/";

    bytes32 public vipMerkleRoot = 0x2839eddc1b8fac73603098dc4088d8b4cba36391ee82c27d1cfed1c33a57841f;
    bytes32 public whitelistMerkleRoot = 0x72140ab68afda76f34ec45acac59c18994e4ce1708283d279ae157844300c332;

    constructor() ERC721A("Dragon Deez", "DD") {

    }

    

    function wlMint(uint256 _quantity, bytes32[] calldata _merkleProof) external payable {

            require(_quantity > 0, "Quantity cannot be less than 0");
            require(_quantity <= 2, "Quantity cannot be more than 2");

            require((totalSupply() + _quantity) <= MAX_SUPPLY, "Out Of Stock!");
            require(mintTime, "It is not time to mint");
            require(msg.value >= PRICE * _quantity, "Not enough Ether");
            require(whitelistedMint[msg.sender] + _quantity <= 2, "Already Minted");

            bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
            require(MerkleProof.verify(_merkleProof, whitelistMerkleRoot, leaf), "Invalid Merkle Proof");

            whitelistedMint[msg.sender] += _quantity;
            _safeMint(msg.sender, _quantity);


        }

        
    function vipMint(uint256 _quantity, bytes32[] calldata _merkleProof) external payable {
        


        if (freeMintCounter <= MAX_FREE_SUPPLY && !vipMinters[msg.sender]){

            require(_quantity > 0, "Quantity cannot be less than 0");
            require(_quantity <= 3, "Quantity cannot be more than 3");

            require((totalSupply() + _quantity) <= MAX_SUPPLY, "Out Of Stock!");
            require(mintTime, "It is not time to mint");
            require(vipMinters[msg.sender] == false, "Already Minted!");
            require(msg.value >= PRICE * (_quantity - 1), "Not enough Ether");
            require(whitelistedMint[msg.sender] + (_quantity-1) <= 2, "Already Minted");

            bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
            require(MerkleProof.verify(_merkleProof, vipMerkleRoot, leaf), "Invalid Merkle Proof");

            freeMintCounter++;
            vipMinters[msg.sender] = true;
            whitelistedMint[msg.sender] += (_quantity - 1);
            _safeMint(msg.sender, _quantity);

            

            } else {

            require(_quantity > 0, "Quantity cannot be less than 0");
            require(_quantity <= 2, "Quantity cannot be more than 2");

            require((totalSupply() + _quantity) <= MAX_SUPPLY, "Out Of Stock!");
            require(mintTime, "It is not time to mint");
            require(msg.value >= PRICE * _quantity, "Not enough Ether");
            require(whitelistedMint[msg.sender] + _quantity <= 2, "Already Minted");

            bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
            require(MerkleProof.verify(_merkleProof, vipMerkleRoot, leaf), "Invalid Merkle Proof");

            whitelistedMint[msg.sender] += _quantity;
            _safeMint(msg.sender, _quantity);

            }



        }
    

    function mint(uint256 _quantity) external payable {

        require(_quantity > 0, "Quantity cannot be less than 0");
        require((totalSupply() + _quantity) <= MAX_SUPPLY, "Out Of Stock!");
        require(publicMintTime, "It is not time to mint");
        require(publicMintQuantity[msg.sender] + _quantity <= 2, "Already Minted!");
        require(msg.value >= _quantity * PRICE, "Not enough Ether");

            publicMintQuantity[msg.sender] += _quantity;
            _safeMint(msg.sender, _quantity);

    }

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

        uint256 trueId = tokenId;

        return bytes(baseTokenUri).length > 0 ? string(abi.encodePacked(baseTokenUri, trueId.toString(), ".json")) : "";
    }

    function setTokenURI(string memory _baseTokenUri) external onlyOwner {
        baseTokenUri = _baseTokenUri;
    }

    function flipState() public onlyOwner {

        mintTime = !mintTime;
    }

    function flipStatePublic() public onlyOwner {

        publicMintTime = !publicMintTime;
    }


    function setWhitelistMerkleRoot(bytes32 _merkleRoot) public onlyOwner {

        whitelistMerkleRoot = _merkleRoot;

    }
    
    function setVIPMerkleRoot(bytes32 _merkleRoot) public onlyOwner {

        vipMerkleRoot = _merkleRoot;

    }

    function withdraw() external onlyOwner {

        uint256 balance = address(this).balance;

        Address.sendValue(payable(owner()), balance);
    }

    function changePrice(uint256 _price) external onlyOwner {

        PRICE = _price;

    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"UnableDetermineTokenOwner","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_FREE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipStatePublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMintCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintTime","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"internalType":"address","name":"","type":"address"}],"name":"publicMintQuantity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintTime","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenUri","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setVIPMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vipMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"vipMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"vipMinters","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistedMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"wlMint","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526000600855662aa1efb94e00006009556000600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff02191690831515021790555060405180608001604052806054815260200162004ccb60549139600e90805190602001906200007b9291906200026c565b507f2839eddc1b8fac73603098dc4088d8b4cba36391ee82c27d1cfed1c33a57841f60001b600f557f72140ab68afda76f34ec45acac59c18994e4ce1708283d279ae157844300c33260001b601055348015620000d757600080fd5b506040518060400160405280600b81526020017f447261676f6e204465657a0000000000000000000000000000000000000000008152506040518060400160405280600281526020017f444400000000000000000000000000000000000000000000000000000000000081525081600190805190602001906200015c9291906200026c565b508060029080519060200190620001759291906200026c565b505050620001986200018c6200019e60201b60201c565b620001a660201b60201c565b62000381565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200027a906200031c565b90600052602060002090601f0160209004810192826200029e5760008555620002ea565b82601f10620002b957805160ff1916838001178555620002ea565b82800160010185558215620002ea579182015b82811115620002e9578251825591602001919060010190620002cc565b5b509050620002f99190620002fd565b5090565b5b8082111562000318576000816000905550600101620002fe565b5090565b600060028204905060018216806200033557607f821691505b602082108114156200034c576200034b62000352565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61493a80620003916000396000f3fe60806040526004361061023b5760003560e01c806370a082311161012e578063a22cb465116100ab578063c87b56dd1161006f578063c87b56dd14610824578063e0df5b6f14610861578063e5f96dcf1461088a578063e985e9c5146108c7578063f2fde38b146109045761023b565b8063a22cb46514610755578063a2b40d191461077e578063aa98e0c6146107a7578063b88d4fde146107d2578063bd32fb66146107fb5761023b565b80638d859f3e116100f25780638d859f3e146106a15780638da5cb5b146106cc5780638e920351146106f757806395d89b411461070e578063a0712d68146107395761023b565b806370a08231146105db578063715018a61461061857806372a1056c1461062f578063864781221461065a57806388ef0018146106855761023b565b806332cb6b0c116101bc5780635be532e7116101805780635be532e7146104d05780635e403472146104f95780635efb7a21146105245780636352211e146105615780636e5e1bdb1461059e5761023b565b806332cb6b0c1461040c5780633ccfd60b146104375780633ef0d36d1461044e57806342842e0e1461046a5780634f6ccce7146104935761023b565b80631670ea86116102035780631670ea861461033957806318160ddd1461035057806323b872dd1461037b57806329a0af0b146103a45780632f745c59146103cf5761023b565b806301ffc9a71461024057806302ddb65b1461027d57806306fdde03146102a8578063081812fc146102d3578063095ea7b314610310575b600080fd5b34801561024c57600080fd5b50610267600480360381019061026291906138d1565b61092d565b6040516102749190613e6c565b60405180910390f35b34801561028957600080fd5b50610292610a77565b60405161029f9190614084565b60405180910390f35b3480156102b457600080fd5b506102bd610a7d565b6040516102ca9190613ea2565b60405180910390f35b3480156102df57600080fd5b506102fa60048036038101906102f59190613974565b610b0f565b6040516103079190613e05565b60405180910390f35b34801561031c57600080fd5b5061033760048036038101906103329190613864565b610b8b565b005b34801561034557600080fd5b5061034e610c96565b005b34801561035c57600080fd5b50610365610cca565b6040516103729190614084565b60405180910390f35b34801561038757600080fd5b506103a2600480360381019061039d919061374e565b610cd3565b005b3480156103b057600080fd5b506103b9610ce3565b6040516103c69190614084565b60405180910390f35b3480156103db57600080fd5b506103f660048036038101906103f19190613864565b610ce9565b6040516104039190614084565b60405180910390f35b34801561041857600080fd5b50610421610eaa565b60405161042e9190614084565b60405180910390f35b34801561044357600080fd5b5061044c610eb0565b005b610468600480360381019061046391906139a1565b610ed1565b005b34801561047657600080fd5b50610491600480360381019061048c919061374e565b6111fa565b005b34801561049f57600080fd5b506104ba60048036038101906104b59190613974565b61121a565b6040516104c79190614084565b60405180910390f35b3480156104dc57600080fd5b506104f760048036038101906104f291906138a4565b611264565b005b34801561050557600080fd5b5061050e611276565b60405161051b9190613e6c565b60405180910390f35b34801561053057600080fd5b5061054b600480360381019061054691906136e1565b611289565b6040516105589190613e6c565b60405180910390f35b34801561056d57600080fd5b5061058860048036038101906105839190613974565b6112a9565b6040516105959190613e05565b60405180910390f35b3480156105aa57600080fd5b506105c560048036038101906105c091906136e1565b6112bf565b6040516105d29190614084565b60405180910390f35b3480156105e757600080fd5b5061060260048036038101906105fd91906136e1565b6112d7565b60405161060f9190614084565b60405180910390f35b34801561062457600080fd5b5061062d6113b7565b005b34801561063b57600080fd5b506106446113cb565b6040516106519190613e87565b60405180910390f35b34801561066657600080fd5b5061066f6113d1565b60405161067c9190613e6c565b60405180910390f35b61069f600480360381019061069a91906139a1565b6113e4565b005b3480156106ad57600080fd5b506106b6611bc1565b6040516106c39190614084565b60405180910390f35b3480156106d857600080fd5b506106e1611bc7565b6040516106ee9190613e05565b60405180910390f35b34801561070357600080fd5b5061070c611bf1565b005b34801561071a57600080fd5b50610723611c25565b6040516107309190613ea2565b60405180910390f35b610753600480360381019061074e9190613974565b611cb7565b005b34801561076157600080fd5b5061077c60048036038101906107779190613824565b611ee1565b005b34801561078a57600080fd5b506107a560048036038101906107a09190613974565b612059565b005b3480156107b357600080fd5b506107bc61206b565b6040516107c99190613e87565b60405180910390f35b3480156107de57600080fd5b506107f960048036038101906107f491906137a1565b612071565b005b34801561080757600080fd5b50610822600480360381019061081d91906138a4565b6120c4565b005b34801561083057600080fd5b5061084b60048036038101906108469190613974565b6120d6565b6040516108589190613ea2565b60405180910390f35b34801561086d57600080fd5b506108886004803603810190610883919061392b565b612184565b005b34801561089657600080fd5b506108b160048036038101906108ac91906136e1565b6121a6565b6040516108be9190614084565b60405180910390f35b3480156108d357600080fd5b506108ee60048036038101906108e9919061370e565b6121be565b6040516108fb9190613e6c565b60405180910390f35b34801561091057600080fd5b5061092b600480360381019061092691906136e1565b612252565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109f857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a6057507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a705750610a6f826122d6565b5b9050919050565b61022b81565b606060018054610a8c9061435e565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab89061435e565b8015610b055780601f10610ada57610100808354040283529160200191610b05565b820191906000526020600020905b815481529060010190602001808311610ae857829003601f168201915b5050505050905090565b6000610b1a82612340565b610b50576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b96826112a9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bfe576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c1d61234d565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c4f5750610c4d81610c4861234d565b6121be565b155b15610c86576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c91838383612355565b505050565b610c9e612407565b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b60008054905090565b610cde838383612485565b505050565b60085481565b6000610cf4836112d7565b8210610d2c576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610d36610cca565b905060008060005b83811015610e90576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e3057806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e825786841415610e79578195505050505050610ea4565b83806001019450505b508080600101915050610d3e565b506000610ea057610e9f61445f565b5b5050505b92915050565b6115b381565b610eb8612407565b6000479050610ece610ec8611bc7565b826129aa565b50565b60008311610f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0b90613fe4565b60405180910390fd5b6002831115610f58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4f90613f04565b60405180910390fd5b6115b383610f64610cca565b610f6e9190614189565b1115610faf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa690613ec4565b60405180910390fd5b600d60009054906101000a900460ff16610ffe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff590614004565b60405180910390fd5b8260095461100c9190614210565b34101561104e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104590614044565b60405180910390fd5b600283600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461109b9190614189565b11156110dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d390613f84565b60405180910390fd5b6000336040516020016110ef9190613da6565b604051602081830303815290604052805190602001209050611155838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060105483612a9e565b611194576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118b90614064565b60405180910390fd5b83600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111e39190614189565b925050819055506111f43385612ab5565b50505050565b61121583838360405180602001604052806000815250612071565b505050565b6000611224610cca565b821061125c576040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b819050919050565b61126c612407565b80600f8190555050565b600d60019054906101000a900460ff1681565b600a6020528060005260406000206000915054906101000a900460ff1681565b60006112b482612ad3565b600001519050919050565b600c6020528060005260406000206000915090505481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561133f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6113bf612407565b6113c96000612c5b565b565b600f5481565b600d60009054906101000a900460ff1681565b61022b600854111580156114425750600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611897576000831161148a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148190613fe4565b60405180910390fd5b60038311156114ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c590614024565b60405180910390fd5b6115b3836114da610cca565b6114e49190614189565b1115611525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151c90613ec4565b60405180910390fd5b600d60009054906101000a900460ff16611574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156b90614004565b60405180910390fd5b60001515600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611607576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fe90613f24565b60405180910390fd5b600183611614919061426a565b6009546116219190614210565b341015611663576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165a90614044565b60405180910390fd5b6002600184611672919061426a565b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116bc9190614189565b11156116fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f490613f84565b60405180910390fd5b6000336040516020016117109190613da6565b604051602081830303815290604052805190602001209050611776838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f5483612a9e565b6117b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ac90614064565b60405180910390fd5b600860008154809291906117c8906143c1565b91905055506001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600184611832919061426a565b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118809190614189565b925050819055506118913385612ab5565b50611bbc565b600083116118da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d190613fe4565b60405180910390fd5b600283111561191e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191590613f04565b60405180910390fd5b6115b38361192a610cca565b6119349190614189565b1115611975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196c90613ec4565b60405180910390fd5b600d60009054906101000a900460ff166119c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bb90614004565b60405180910390fd5b826009546119d29190614210565b341015611a14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0b90614044565b60405180910390fd5b600283600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a619190614189565b1115611aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9990613f84565b60405180910390fd5b600033604051602001611ab59190613da6565b604051602081830303815290604052805190602001209050611b1b838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f5483612a9e565b611b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5190614064565b60405180910390fd5b83600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ba99190614189565b92505081905550611bba3385612ab5565b505b505050565b60095481565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611bf9612407565b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b606060028054611c349061435e565b80601f0160208091040260200160405190810160405280929190818152602001828054611c609061435e565b8015611cad5780601f10611c8257610100808354040283529160200191611cad565b820191906000526020600020905b815481529060010190602001808311611c9057829003601f168201915b5050505050905090565b60008111611cfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf190613fe4565b60405180910390fd5b6115b381611d06610cca565b611d109190614189565b1115611d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4890613ec4565b60405180910390fd5b600d60019054906101000a900460ff16611da0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9790614004565b60405180910390fd5b600281600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ded9190614189565b1115611e2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2590613f24565b60405180910390fd5b60095481611e3c9190614210565b341015611e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7590614044565b60405180910390fd5b80600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ecd9190614189565b92505081905550611ede3382612ab5565b50565b611ee961234d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f4e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060066000611f5b61234d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661200861234d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161204d9190613e6c565b60405180910390a35050565b612061612407565b8060098190555050565b60105481565b61207c848484612485565b61208884848484612d21565b6120be576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6120cc612407565b8060108190555050565b60606120e182612340565b612120576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211790613fc4565b60405180910390fd5b60008290506000600e80546121349061435e565b905011612150576040518060200160405280600081525061217c565b600e61215b82612eaf565b60405160200161216c929190613dc1565b6040516020818303038152906040525b915050919050565b61218c612407565b80600e90805190602001906121a2929190613450565b5050565b600b6020528060005260406000206000915090505481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61225a612407565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c190613ee4565b60405180910390fd5b6122d381612c5b565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61240f61234d565b73ffffffffffffffffffffffffffffffffffffffff1661242d611bc7565b73ffffffffffffffffffffffffffffffffffffffff1614612483576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247a90613fa4565b60405180910390fd5b565b600061249082612ad3565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166124b761234d565b73ffffffffffffffffffffffffffffffffffffffff16148061251357506124dc61234d565b73ffffffffffffffffffffffffffffffffffffffff166124fb84610b0f565b73ffffffffffffffffffffffffffffffffffffffff16145b8061252f575061252e826000015161252961234d565b6121be565b5b905080612568576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146125d1576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612638576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126458585856001613010565b6126556000848460000151612355565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561293a5761289981612340565b156129395782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129a38585856001613016565b5050505050565b804710156129ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e490613f64565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612a1390613df0565b60006040518083038185875af1925050503d8060008114612a50576040519150601f19603f3d011682016040523d82523d6000602084013e612a55565b606091505b5050905080612a99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9090613f44565b60405180910390fd5b505050565b600082612aab858461301c565b1490509392505050565b612acf828260405180602001604052806000815250613072565b5050565b612adb6134d6565b612ae482612340565b612b1a576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008290505b60008110612c23576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612c14578092505050612c56565b50808060019003915050612b20565b506040517fe7c0edfb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612d428473ffffffffffffffffffffffffffffffffffffffff16613084565b15612ea2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d6b61234d565b8786866040518563ffffffff1660e01b8152600401612d8d9493929190613e20565b602060405180830381600087803b158015612da757600080fd5b505af1925050508015612dd857506040513d601f19601f82011682018060405250810190612dd591906138fe565b60015b612e52573d8060008114612e08576040519150601f19603f3d011682016040523d82523d6000602084013e612e0d565b606091505b50600081511415612e4a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ea7565b600190505b949350505050565b60606000821415612ef7576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061300b565b600082905060005b60008214612f29578080612f12906143c1565b915050600a82612f2291906141df565b9150612eff565b60008167ffffffffffffffff811115612f4557612f4461454a565b5b6040519080825280601f01601f191660200182016040528015612f775781602001600182028036833780820191505090505b5090505b6000851461300457600182612f90919061426a565b9150600a85612f9f919061442e565b6030612fab9190614189565b60f81b818381518110612fc157612fc061451b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ffd91906141df565b9450612f7b565b8093505050505b919050565b50505050565b50505050565b60008082905060005b845181101561306757613052828683815181106130455761304461451b565b5b60200260200101516130a7565b9150808061305f906143c1565b915050613025565b508091505092915050565b61307f83838360016130d2565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008183106130bf576130ba8284613439565b6130ca565b6130c98383613439565b5b905092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561313f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561317a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6131876000868387613010565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561341c57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48380156133d057506133ce6000888488612d21565b155b15613407576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050613355565b5080600081905550506134326000868387613016565b5050505050565b600082600052816020526040600020905092915050565b82805461345c9061435e565b90600052602060002090601f01602090048101928261347e57600085556134c5565b82601f1061349757805160ff19168380011785556134c5565b828001600101855582156134c5579182015b828111156134c45782518255916020019190600101906134a9565b5b5090506134d29190613510565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613529576000816000905550600101613511565b5090565b600061354061353b846140c4565b61409f565b90508281526020810184848401111561355c5761355b614588565b5b61356784828561431c565b509392505050565b600061358261357d846140f5565b61409f565b90508281526020810184848401111561359e5761359d614588565b5b6135a984828561431c565b509392505050565b6000813590506135c081614891565b92915050565b60008083601f8401126135dc576135db61457e565b5b8235905067ffffffffffffffff8111156135f9576135f8614579565b5b60208301915083602082028301111561361557613614614583565b5b9250929050565b60008135905061362b816148a8565b92915050565b600081359050613640816148bf565b92915050565b600081359050613655816148d6565b92915050565b60008151905061366a816148d6565b92915050565b600082601f8301126136855761368461457e565b5b813561369584826020860161352d565b91505092915050565b600082601f8301126136b3576136b261457e565b5b81356136c384826020860161356f565b91505092915050565b6000813590506136db816148ed565b92915050565b6000602082840312156136f7576136f6614592565b5b6000613705848285016135b1565b91505092915050565b6000806040838503121561372557613724614592565b5b6000613733858286016135b1565b9250506020613744858286016135b1565b9150509250929050565b60008060006060848603121561376757613766614592565b5b6000613775868287016135b1565b9350506020613786868287016135b1565b9250506040613797868287016136cc565b9150509250925092565b600080600080608085870312156137bb576137ba614592565b5b60006137c9878288016135b1565b94505060206137da878288016135b1565b93505060406137eb878288016136cc565b925050606085013567ffffffffffffffff81111561380c5761380b61458d565b5b61381887828801613670565b91505092959194509250565b6000806040838503121561383b5761383a614592565b5b6000613849858286016135b1565b925050602061385a8582860161361c565b9150509250929050565b6000806040838503121561387b5761387a614592565b5b6000613889858286016135b1565b925050602061389a858286016136cc565b9150509250929050565b6000602082840312156138ba576138b9614592565b5b60006138c884828501613631565b91505092915050565b6000602082840312156138e7576138e6614592565b5b60006138f584828501613646565b91505092915050565b60006020828403121561391457613913614592565b5b60006139228482850161365b565b91505092915050565b60006020828403121561394157613940614592565b5b600082013567ffffffffffffffff81111561395f5761395e61458d565b5b61396b8482850161369e565b91505092915050565b60006020828403121561398a57613989614592565b5b6000613998848285016136cc565b91505092915050565b6000806000604084860312156139ba576139b9614592565b5b60006139c8868287016136cc565b935050602084013567ffffffffffffffff8111156139e9576139e861458d565b5b6139f5868287016135c6565b92509250509250925092565b613a0a8161429e565b82525050565b613a21613a1c8261429e565b61440a565b82525050565b613a30816142b0565b82525050565b613a3f816142bc565b82525050565b6000613a508261413b565b613a5a8185614151565b9350613a6a81856020860161432b565b613a7381614597565b840191505092915050565b6000613a8982614146565b613a93818561416d565b9350613aa381856020860161432b565b613aac81614597565b840191505092915050565b6000613ac282614146565b613acc818561417e565b9350613adc81856020860161432b565b80840191505092915050565b60008154613af58161435e565b613aff818661417e565b94506001821660008114613b1a5760018114613b2b57613b5e565b60ff19831686528186019350613b5e565b613b3485614126565b60005b83811015613b5657815481890152600182019150602081019050613b37565b838801955050505b50505092915050565b6000613b74600d8361416d565b9150613b7f826145b5565b602082019050919050565b6000613b9760268361416d565b9150613ba2826145de565b604082019050919050565b6000613bba601e8361416d565b9150613bc58261462d565b602082019050919050565b6000613bdd600f8361416d565b9150613be882614656565b602082019050919050565b6000613c00603a8361416d565b9150613c0b8261467f565b604082019050919050565b6000613c23601d8361416d565b9150613c2e826146ce565b602082019050919050565b6000613c46600e8361416d565b9150613c51826146f7565b602082019050919050565b6000613c6960058361417e565b9150613c7482614720565b600582019050919050565b6000613c8c60208361416d565b9150613c9782614749565b602082019050919050565b6000613caf602f8361416d565b9150613cba82614772565b604082019050919050565b6000613cd2601e8361416d565b9150613cdd826147c1565b602082019050919050565b6000613cf560168361416d565b9150613d00826147ea565b602082019050919050565b6000613d18601e8361416d565b9150613d2382614813565b602082019050919050565b6000613d3b600083614162565b9150613d468261483c565b600082019050919050565b6000613d5e60108361416d565b9150613d698261483f565b602082019050919050565b6000613d8160148361416d565b9150613d8c82614868565b602082019050919050565b613da081614312565b82525050565b6000613db28284613a10565b60148201915081905092915050565b6000613dcd8285613ae8565b9150613dd98284613ab7565b9150613de482613c5c565b91508190509392505050565b6000613dfb82613d2e565b9150819050919050565b6000602082019050613e1a6000830184613a01565b92915050565b6000608082019050613e356000830187613a01565b613e426020830186613a01565b613e4f6040830185613d97565b8181036060830152613e618184613a45565b905095945050505050565b6000602082019050613e816000830184613a27565b92915050565b6000602082019050613e9c6000830184613a36565b92915050565b60006020820190508181036000830152613ebc8184613a7e565b905092915050565b60006020820190508181036000830152613edd81613b67565b9050919050565b60006020820190508181036000830152613efd81613b8a565b9050919050565b60006020820190508181036000830152613f1d81613bad565b9050919050565b60006020820190508181036000830152613f3d81613bd0565b9050919050565b60006020820190508181036000830152613f5d81613bf3565b9050919050565b60006020820190508181036000830152613f7d81613c16565b9050919050565b60006020820190508181036000830152613f9d81613c39565b9050919050565b60006020820190508181036000830152613fbd81613c7f565b9050919050565b60006020820190508181036000830152613fdd81613ca2565b9050919050565b60006020820190508181036000830152613ffd81613cc5565b9050919050565b6000602082019050818103600083015261401d81613ce8565b9050919050565b6000602082019050818103600083015261403d81613d0b565b9050919050565b6000602082019050818103600083015261405d81613d51565b9050919050565b6000602082019050818103600083015261407d81613d74565b9050919050565b60006020820190506140996000830184613d97565b92915050565b60006140a96140ba565b90506140b58282614390565b919050565b6000604051905090565b600067ffffffffffffffff8211156140df576140de61454a565b5b6140e882614597565b9050602081019050919050565b600067ffffffffffffffff8211156141105761410f61454a565b5b61411982614597565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061419482614312565b915061419f83614312565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141d4576141d361448e565b5b828201905092915050565b60006141ea82614312565b91506141f583614312565b925082614205576142046144bd565b5b828204905092915050565b600061421b82614312565b915061422683614312565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561425f5761425e61448e565b5b828202905092915050565b600061427582614312565b915061428083614312565b9250828210156142935761429261448e565b5b828203905092915050565b60006142a9826142f2565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561434957808201518184015260208101905061432e565b83811115614358576000848401525b50505050565b6000600282049050600182168061437657607f821691505b6020821081141561438a576143896144ec565b5b50919050565b61439982614597565b810181811067ffffffffffffffff821117156143b8576143b761454a565b5b80604052505050565b60006143cc82614312565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156143ff576143fe61448e565b5b600182019050919050565b60006144158261441c565b9050919050565b6000614427826145a8565b9050919050565b600061443982614312565b915061444483614312565b925082614454576144536144bd565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f7574204f662053746f636b2100000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5175616e746974792063616e6e6f74206265206d6f7265207468616e20320000600082015250565b7f416c7265616479204d696e746564210000000000000000000000000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f416c7265616479204d696e746564000000000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5175616e746974792063616e6e6f74206265206c657373207468616e20300000600082015250565b7f4974206973206e6f742074696d6520746f206d696e7400000000000000000000600082015250565b7f5175616e746974792063616e6e6f74206265206d6f7265207468616e20330000600082015250565b50565b7f4e6f7420656e6f75676820457468657200000000000000000000000000000000600082015250565b7f496e76616c6964204d65726b6c652050726f6f66000000000000000000000000600082015250565b61489a8161429e565b81146148a557600080fd5b50565b6148b1816142b0565b81146148bc57600080fd5b50565b6148c8816142bc565b81146148d357600080fd5b50565b6148df816142c6565b81146148ea57600080fd5b50565b6148f681614312565b811461490157600080fd5b5056fea26469706673582212209a9d3895db28db33759a240a91d920ae6a16ab1e1c481b01cb99ac914b78858b64736f6c6343000807003368747470733a2f2f6f6f6f6f746573742e6d7970696e6174612e636c6f75642f697066732f516d5a62324e456f6d316444625659466f39356d437a7a4346464a716b634b6d4c36423770487758456a4e39647a2f

Deployed Bytecode

0x60806040526004361061023b5760003560e01c806370a082311161012e578063a22cb465116100ab578063c87b56dd1161006f578063c87b56dd14610824578063e0df5b6f14610861578063e5f96dcf1461088a578063e985e9c5146108c7578063f2fde38b146109045761023b565b8063a22cb46514610755578063a2b40d191461077e578063aa98e0c6146107a7578063b88d4fde146107d2578063bd32fb66146107fb5761023b565b80638d859f3e116100f25780638d859f3e146106a15780638da5cb5b146106cc5780638e920351146106f757806395d89b411461070e578063a0712d68146107395761023b565b806370a08231146105db578063715018a61461061857806372a1056c1461062f578063864781221461065a57806388ef0018146106855761023b565b806332cb6b0c116101bc5780635be532e7116101805780635be532e7146104d05780635e403472146104f95780635efb7a21146105245780636352211e146105615780636e5e1bdb1461059e5761023b565b806332cb6b0c1461040c5780633ccfd60b146104375780633ef0d36d1461044e57806342842e0e1461046a5780634f6ccce7146104935761023b565b80631670ea86116102035780631670ea861461033957806318160ddd1461035057806323b872dd1461037b57806329a0af0b146103a45780632f745c59146103cf5761023b565b806301ffc9a71461024057806302ddb65b1461027d57806306fdde03146102a8578063081812fc146102d3578063095ea7b314610310575b600080fd5b34801561024c57600080fd5b50610267600480360381019061026291906138d1565b61092d565b6040516102749190613e6c565b60405180910390f35b34801561028957600080fd5b50610292610a77565b60405161029f9190614084565b60405180910390f35b3480156102b457600080fd5b506102bd610a7d565b6040516102ca9190613ea2565b60405180910390f35b3480156102df57600080fd5b506102fa60048036038101906102f59190613974565b610b0f565b6040516103079190613e05565b60405180910390f35b34801561031c57600080fd5b5061033760048036038101906103329190613864565b610b8b565b005b34801561034557600080fd5b5061034e610c96565b005b34801561035c57600080fd5b50610365610cca565b6040516103729190614084565b60405180910390f35b34801561038757600080fd5b506103a2600480360381019061039d919061374e565b610cd3565b005b3480156103b057600080fd5b506103b9610ce3565b6040516103c69190614084565b60405180910390f35b3480156103db57600080fd5b506103f660048036038101906103f19190613864565b610ce9565b6040516104039190614084565b60405180910390f35b34801561041857600080fd5b50610421610eaa565b60405161042e9190614084565b60405180910390f35b34801561044357600080fd5b5061044c610eb0565b005b610468600480360381019061046391906139a1565b610ed1565b005b34801561047657600080fd5b50610491600480360381019061048c919061374e565b6111fa565b005b34801561049f57600080fd5b506104ba60048036038101906104b59190613974565b61121a565b6040516104c79190614084565b60405180910390f35b3480156104dc57600080fd5b506104f760048036038101906104f291906138a4565b611264565b005b34801561050557600080fd5b5061050e611276565b60405161051b9190613e6c565b60405180910390f35b34801561053057600080fd5b5061054b600480360381019061054691906136e1565b611289565b6040516105589190613e6c565b60405180910390f35b34801561056d57600080fd5b5061058860048036038101906105839190613974565b6112a9565b6040516105959190613e05565b60405180910390f35b3480156105aa57600080fd5b506105c560048036038101906105c091906136e1565b6112bf565b6040516105d29190614084565b60405180910390f35b3480156105e757600080fd5b5061060260048036038101906105fd91906136e1565b6112d7565b60405161060f9190614084565b60405180910390f35b34801561062457600080fd5b5061062d6113b7565b005b34801561063b57600080fd5b506106446113cb565b6040516106519190613e87565b60405180910390f35b34801561066657600080fd5b5061066f6113d1565b60405161067c9190613e6c565b60405180910390f35b61069f600480360381019061069a91906139a1565b6113e4565b005b3480156106ad57600080fd5b506106b6611bc1565b6040516106c39190614084565b60405180910390f35b3480156106d857600080fd5b506106e1611bc7565b6040516106ee9190613e05565b60405180910390f35b34801561070357600080fd5b5061070c611bf1565b005b34801561071a57600080fd5b50610723611c25565b6040516107309190613ea2565b60405180910390f35b610753600480360381019061074e9190613974565b611cb7565b005b34801561076157600080fd5b5061077c60048036038101906107779190613824565b611ee1565b005b34801561078a57600080fd5b506107a560048036038101906107a09190613974565b612059565b005b3480156107b357600080fd5b506107bc61206b565b6040516107c99190613e87565b60405180910390f35b3480156107de57600080fd5b506107f960048036038101906107f491906137a1565b612071565b005b34801561080757600080fd5b50610822600480360381019061081d91906138a4565b6120c4565b005b34801561083057600080fd5b5061084b60048036038101906108469190613974565b6120d6565b6040516108589190613ea2565b60405180910390f35b34801561086d57600080fd5b506108886004803603810190610883919061392b565b612184565b005b34801561089657600080fd5b506108b160048036038101906108ac91906136e1565b6121a6565b6040516108be9190614084565b60405180910390f35b3480156108d357600080fd5b506108ee60048036038101906108e9919061370e565b6121be565b6040516108fb9190613e6c565b60405180910390f35b34801561091057600080fd5b5061092b600480360381019061092691906136e1565b612252565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109f857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a6057507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a705750610a6f826122d6565b5b9050919050565b61022b81565b606060018054610a8c9061435e565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab89061435e565b8015610b055780601f10610ada57610100808354040283529160200191610b05565b820191906000526020600020905b815481529060010190602001808311610ae857829003601f168201915b5050505050905090565b6000610b1a82612340565b610b50576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b96826112a9565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bfe576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c1d61234d565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c4f5750610c4d81610c4861234d565b6121be565b155b15610c86576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c91838383612355565b505050565b610c9e612407565b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b60008054905090565b610cde838383612485565b505050565b60085481565b6000610cf4836112d7565b8210610d2c576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610d36610cca565b905060008060005b83811015610e90576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610e3057806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e825786841415610e79578195505050505050610ea4565b83806001019450505b508080600101915050610d3e565b506000610ea057610e9f61445f565b5b5050505b92915050565b6115b381565b610eb8612407565b6000479050610ece610ec8611bc7565b826129aa565b50565b60008311610f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0b90613fe4565b60405180910390fd5b6002831115610f58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4f90613f04565b60405180910390fd5b6115b383610f64610cca565b610f6e9190614189565b1115610faf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa690613ec4565b60405180910390fd5b600d60009054906101000a900460ff16610ffe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff590614004565b60405180910390fd5b8260095461100c9190614210565b34101561104e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104590614044565b60405180910390fd5b600283600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461109b9190614189565b11156110dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d390613f84565b60405180910390fd5b6000336040516020016110ef9190613da6565b604051602081830303815290604052805190602001209050611155838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060105483612a9e565b611194576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118b90614064565b60405180910390fd5b83600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111e39190614189565b925050819055506111f43385612ab5565b50505050565b61121583838360405180602001604052806000815250612071565b505050565b6000611224610cca565b821061125c576040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b819050919050565b61126c612407565b80600f8190555050565b600d60019054906101000a900460ff1681565b600a6020528060005260406000206000915054906101000a900460ff1681565b60006112b482612ad3565b600001519050919050565b600c6020528060005260406000206000915090505481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561133f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6113bf612407565b6113c96000612c5b565b565b600f5481565b600d60009054906101000a900460ff1681565b61022b600854111580156114425750600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611897576000831161148a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148190613fe4565b60405180910390fd5b60038311156114ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c590614024565b60405180910390fd5b6115b3836114da610cca565b6114e49190614189565b1115611525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151c90613ec4565b60405180910390fd5b600d60009054906101000a900460ff16611574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156b90614004565b60405180910390fd5b60001515600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611607576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fe90613f24565b60405180910390fd5b600183611614919061426a565b6009546116219190614210565b341015611663576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165a90614044565b60405180910390fd5b6002600184611672919061426a565b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116bc9190614189565b11156116fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f490613f84565b60405180910390fd5b6000336040516020016117109190613da6565b604051602081830303815290604052805190602001209050611776838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f5483612a9e565b6117b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ac90614064565b60405180910390fd5b600860008154809291906117c8906143c1565b91905055506001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600184611832919061426a565b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118809190614189565b925050819055506118913385612ab5565b50611bbc565b600083116118da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d190613fe4565b60405180910390fd5b600283111561191e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191590613f04565b60405180910390fd5b6115b38361192a610cca565b6119349190614189565b1115611975576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196c90613ec4565b60405180910390fd5b600d60009054906101000a900460ff166119c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119bb90614004565b60405180910390fd5b826009546119d29190614210565b341015611a14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0b90614044565b60405180910390fd5b600283600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611a619190614189565b1115611aa2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9990613f84565b60405180910390fd5b600033604051602001611ab59190613da6565b604051602081830303815290604052805190602001209050611b1b838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600f5483612a9e565b611b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5190614064565b60405180910390fd5b83600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ba99190614189565b92505081905550611bba3385612ab5565b505b505050565b60095481565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611bf9612407565b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b606060028054611c349061435e565b80601f0160208091040260200160405190810160405280929190818152602001828054611c609061435e565b8015611cad5780601f10611c8257610100808354040283529160200191611cad565b820191906000526020600020905b815481529060010190602001808311611c9057829003601f168201915b5050505050905090565b60008111611cfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf190613fe4565b60405180910390fd5b6115b381611d06610cca565b611d109190614189565b1115611d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4890613ec4565b60405180910390fd5b600d60019054906101000a900460ff16611da0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9790614004565b60405180910390fd5b600281600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ded9190614189565b1115611e2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2590613f24565b60405180910390fd5b60095481611e3c9190614210565b341015611e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7590614044565b60405180910390fd5b80600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ecd9190614189565b92505081905550611ede3382612ab5565b50565b611ee961234d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f4e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060066000611f5b61234d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661200861234d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161204d9190613e6c565b60405180910390a35050565b612061612407565b8060098190555050565b60105481565b61207c848484612485565b61208884848484612d21565b6120be576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6120cc612407565b8060108190555050565b60606120e182612340565b612120576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211790613fc4565b60405180910390fd5b60008290506000600e80546121349061435e565b905011612150576040518060200160405280600081525061217c565b600e61215b82612eaf565b60405160200161216c929190613dc1565b6040516020818303038152906040525b915050919050565b61218c612407565b80600e90805190602001906121a2929190613450565b5050565b600b6020528060005260406000206000915090505481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61225a612407565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c190613ee4565b60405180910390fd5b6122d381612c5b565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61240f61234d565b73ffffffffffffffffffffffffffffffffffffffff1661242d611bc7565b73ffffffffffffffffffffffffffffffffffffffff1614612483576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247a90613fa4565b60405180910390fd5b565b600061249082612ad3565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166124b761234d565b73ffffffffffffffffffffffffffffffffffffffff16148061251357506124dc61234d565b73ffffffffffffffffffffffffffffffffffffffff166124fb84610b0f565b73ffffffffffffffffffffffffffffffffffffffff16145b8061252f575061252e826000015161252961234d565b6121be565b5b905080612568576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146125d1576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612638576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126458585856001613010565b6126556000848460000151612355565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561293a5761289981612340565b156129395782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129a38585856001613016565b5050505050565b804710156129ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129e490613f64565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612a1390613df0565b60006040518083038185875af1925050503d8060008114612a50576040519150601f19603f3d011682016040523d82523d6000602084013e612a55565b606091505b5050905080612a99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a9090613f44565b60405180910390fd5b505050565b600082612aab858461301c565b1490509392505050565b612acf828260405180602001604052806000815250613072565b5050565b612adb6134d6565b612ae482612340565b612b1a576040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008290505b60008110612c23576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612c14578092505050612c56565b50808060019003915050612b20565b506040517fe7c0edfb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000612d428473ffffffffffffffffffffffffffffffffffffffff16613084565b15612ea2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d6b61234d565b8786866040518563ffffffff1660e01b8152600401612d8d9493929190613e20565b602060405180830381600087803b158015612da757600080fd5b505af1925050508015612dd857506040513d601f19601f82011682018060405250810190612dd591906138fe565b60015b612e52573d8060008114612e08576040519150601f19603f3d011682016040523d82523d6000602084013e612e0d565b606091505b50600081511415612e4a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ea7565b600190505b949350505050565b60606000821415612ef7576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061300b565b600082905060005b60008214612f29578080612f12906143c1565b915050600a82612f2291906141df565b9150612eff565b60008167ffffffffffffffff811115612f4557612f4461454a565b5b6040519080825280601f01601f191660200182016040528015612f775781602001600182028036833780820191505090505b5090505b6000851461300457600182612f90919061426a565b9150600a85612f9f919061442e565b6030612fab9190614189565b60f81b818381518110612fc157612fc061451b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ffd91906141df565b9450612f7b565b8093505050505b919050565b50505050565b50505050565b60008082905060005b845181101561306757613052828683815181106130455761304461451b565b5b60200260200101516130a7565b9150808061305f906143c1565b915050613025565b508091505092915050565b61307f83838360016130d2565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008183106130bf576130ba8284613439565b6130ca565b6130c98383613439565b5b905092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561313f576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561317a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6131876000868387613010565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561341c57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48380156133d057506133ce6000888488612d21565b155b15613407576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050613355565b5080600081905550506134326000868387613016565b5050505050565b600082600052816020526040600020905092915050565b82805461345c9061435e565b90600052602060002090601f01602090048101928261347e57600085556134c5565b82601f1061349757805160ff19168380011785556134c5565b828001600101855582156134c5579182015b828111156134c45782518255916020019190600101906134a9565b5b5090506134d29190613510565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115613529576000816000905550600101613511565b5090565b600061354061353b846140c4565b61409f565b90508281526020810184848401111561355c5761355b614588565b5b61356784828561431c565b509392505050565b600061358261357d846140f5565b61409f565b90508281526020810184848401111561359e5761359d614588565b5b6135a984828561431c565b509392505050565b6000813590506135c081614891565b92915050565b60008083601f8401126135dc576135db61457e565b5b8235905067ffffffffffffffff8111156135f9576135f8614579565b5b60208301915083602082028301111561361557613614614583565b5b9250929050565b60008135905061362b816148a8565b92915050565b600081359050613640816148bf565b92915050565b600081359050613655816148d6565b92915050565b60008151905061366a816148d6565b92915050565b600082601f8301126136855761368461457e565b5b813561369584826020860161352d565b91505092915050565b600082601f8301126136b3576136b261457e565b5b81356136c384826020860161356f565b91505092915050565b6000813590506136db816148ed565b92915050565b6000602082840312156136f7576136f6614592565b5b6000613705848285016135b1565b91505092915050565b6000806040838503121561372557613724614592565b5b6000613733858286016135b1565b9250506020613744858286016135b1565b9150509250929050565b60008060006060848603121561376757613766614592565b5b6000613775868287016135b1565b9350506020613786868287016135b1565b9250506040613797868287016136cc565b9150509250925092565b600080600080608085870312156137bb576137ba614592565b5b60006137c9878288016135b1565b94505060206137da878288016135b1565b93505060406137eb878288016136cc565b925050606085013567ffffffffffffffff81111561380c5761380b61458d565b5b61381887828801613670565b91505092959194509250565b6000806040838503121561383b5761383a614592565b5b6000613849858286016135b1565b925050602061385a8582860161361c565b9150509250929050565b6000806040838503121561387b5761387a614592565b5b6000613889858286016135b1565b925050602061389a858286016136cc565b9150509250929050565b6000602082840312156138ba576138b9614592565b5b60006138c884828501613631565b91505092915050565b6000602082840312156138e7576138e6614592565b5b60006138f584828501613646565b91505092915050565b60006020828403121561391457613913614592565b5b60006139228482850161365b565b91505092915050565b60006020828403121561394157613940614592565b5b600082013567ffffffffffffffff81111561395f5761395e61458d565b5b61396b8482850161369e565b91505092915050565b60006020828403121561398a57613989614592565b5b6000613998848285016136cc565b91505092915050565b6000806000604084860312156139ba576139b9614592565b5b60006139c8868287016136cc565b935050602084013567ffffffffffffffff8111156139e9576139e861458d565b5b6139f5868287016135c6565b92509250509250925092565b613a0a8161429e565b82525050565b613a21613a1c8261429e565b61440a565b82525050565b613a30816142b0565b82525050565b613a3f816142bc565b82525050565b6000613a508261413b565b613a5a8185614151565b9350613a6a81856020860161432b565b613a7381614597565b840191505092915050565b6000613a8982614146565b613a93818561416d565b9350613aa381856020860161432b565b613aac81614597565b840191505092915050565b6000613ac282614146565b613acc818561417e565b9350613adc81856020860161432b565b80840191505092915050565b60008154613af58161435e565b613aff818661417e565b94506001821660008114613b1a5760018114613b2b57613b5e565b60ff19831686528186019350613b5e565b613b3485614126565b60005b83811015613b5657815481890152600182019150602081019050613b37565b838801955050505b50505092915050565b6000613b74600d8361416d565b9150613b7f826145b5565b602082019050919050565b6000613b9760268361416d565b9150613ba2826145de565b604082019050919050565b6000613bba601e8361416d565b9150613bc58261462d565b602082019050919050565b6000613bdd600f8361416d565b9150613be882614656565b602082019050919050565b6000613c00603a8361416d565b9150613c0b8261467f565b604082019050919050565b6000613c23601d8361416d565b9150613c2e826146ce565b602082019050919050565b6000613c46600e8361416d565b9150613c51826146f7565b602082019050919050565b6000613c6960058361417e565b9150613c7482614720565b600582019050919050565b6000613c8c60208361416d565b9150613c9782614749565b602082019050919050565b6000613caf602f8361416d565b9150613cba82614772565b604082019050919050565b6000613cd2601e8361416d565b9150613cdd826147c1565b602082019050919050565b6000613cf560168361416d565b9150613d00826147ea565b602082019050919050565b6000613d18601e8361416d565b9150613d2382614813565b602082019050919050565b6000613d3b600083614162565b9150613d468261483c565b600082019050919050565b6000613d5e60108361416d565b9150613d698261483f565b602082019050919050565b6000613d8160148361416d565b9150613d8c82614868565b602082019050919050565b613da081614312565b82525050565b6000613db28284613a10565b60148201915081905092915050565b6000613dcd8285613ae8565b9150613dd98284613ab7565b9150613de482613c5c565b91508190509392505050565b6000613dfb82613d2e565b9150819050919050565b6000602082019050613e1a6000830184613a01565b92915050565b6000608082019050613e356000830187613a01565b613e426020830186613a01565b613e4f6040830185613d97565b8181036060830152613e618184613a45565b905095945050505050565b6000602082019050613e816000830184613a27565b92915050565b6000602082019050613e9c6000830184613a36565b92915050565b60006020820190508181036000830152613ebc8184613a7e565b905092915050565b60006020820190508181036000830152613edd81613b67565b9050919050565b60006020820190508181036000830152613efd81613b8a565b9050919050565b60006020820190508181036000830152613f1d81613bad565b9050919050565b60006020820190508181036000830152613f3d81613bd0565b9050919050565b60006020820190508181036000830152613f5d81613bf3565b9050919050565b60006020820190508181036000830152613f7d81613c16565b9050919050565b60006020820190508181036000830152613f9d81613c39565b9050919050565b60006020820190508181036000830152613fbd81613c7f565b9050919050565b60006020820190508181036000830152613fdd81613ca2565b9050919050565b60006020820190508181036000830152613ffd81613cc5565b9050919050565b6000602082019050818103600083015261401d81613ce8565b9050919050565b6000602082019050818103600083015261403d81613d0b565b9050919050565b6000602082019050818103600083015261405d81613d51565b9050919050565b6000602082019050818103600083015261407d81613d74565b9050919050565b60006020820190506140996000830184613d97565b92915050565b60006140a96140ba565b90506140b58282614390565b919050565b6000604051905090565b600067ffffffffffffffff8211156140df576140de61454a565b5b6140e882614597565b9050602081019050919050565b600067ffffffffffffffff8211156141105761410f61454a565b5b61411982614597565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061419482614312565b915061419f83614312565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156141d4576141d361448e565b5b828201905092915050565b60006141ea82614312565b91506141f583614312565b925082614205576142046144bd565b5b828204905092915050565b600061421b82614312565b915061422683614312565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561425f5761425e61448e565b5b828202905092915050565b600061427582614312565b915061428083614312565b9250828210156142935761429261448e565b5b828203905092915050565b60006142a9826142f2565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561434957808201518184015260208101905061432e565b83811115614358576000848401525b50505050565b6000600282049050600182168061437657607f821691505b6020821081141561438a576143896144ec565b5b50919050565b61439982614597565b810181811067ffffffffffffffff821117156143b8576143b761454a565b5b80604052505050565b60006143cc82614312565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156143ff576143fe61448e565b5b600182019050919050565b60006144158261441c565b9050919050565b6000614427826145a8565b9050919050565b600061443982614312565b915061444483614312565b925082614454576144536144bd565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f7574204f662053746f636b2100000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5175616e746974792063616e6e6f74206265206d6f7265207468616e20320000600082015250565b7f416c7265616479204d696e746564210000000000000000000000000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f416c7265616479204d696e746564000000000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5175616e746974792063616e6e6f74206265206c657373207468616e20300000600082015250565b7f4974206973206e6f742074696d6520746f206d696e7400000000000000000000600082015250565b7f5175616e746974792063616e6e6f74206265206d6f7265207468616e20330000600082015250565b50565b7f4e6f7420656e6f75676820457468657200000000000000000000000000000000600082015250565b7f496e76616c6964204d65726b6c652050726f6f66000000000000000000000000600082015250565b61489a8161429e565b81146148a557600080fd5b50565b6148b1816142b0565b81146148bc57600080fd5b50565b6148c8816142bc565b81146148d357600080fd5b50565b6148df816142c6565b81146148ea57600080fd5b50565b6148f681614312565b811461490157600080fd5b5056fea26469706673582212209a9d3895db28db33759a240a91d920ae6a16ab1e1c481b01cb99ac914b78858b64736f6c63430008070033

Deployed Bytecode Sourcemap

56907:5381:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37288:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57036:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39104:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40581:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40170:345;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61659:97;;;;;;;;;;;;;:::i;:::-;;35555:101;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41438:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57090:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36209:1007;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56988:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62026:156;;;;;;;;;;;;;:::i;:::-;;57832:830;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41679:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35733:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61904:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57379:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57176:42;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38913:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57282:53;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37724:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13998:103;;;;;;;;;;;;;:::i;:::-;;57547:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57344:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58680:1864;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57131:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13350:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61572:79;;;;;;;;;;;;;:::i;:::-;;39273:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60558:530;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40857:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62190:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57651:103;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41935:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61766:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61096:344;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61448:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57225:50;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41207:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14256:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37288:372;37390:4;37442:25;37427:40;;;:11;:40;;;;:105;;;;37499:33;37484:48;;;:11;:48;;;;37427:105;:172;;;;37564:35;37549:50;;;:11;:50;;;;37427:172;:225;;;;37616:36;37640:11;37616:23;:36::i;:::-;37427:225;37407:245;;37288:372;;;:::o;57036:45::-;57078:3;57036:45;:::o;39104:100::-;39158:13;39191:5;39184:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39104:100;:::o;40581:204::-;40649:7;40674:16;40682:7;40674;:16::i;:::-;40669:64;;40699:34;;;;;;;;;;;;;;40669:64;40753:15;:24;40769:7;40753:24;;;;;;;;;;;;;;;;;;;;;40746:31;;40581:204;;;:::o;40170:345::-;40243:13;40259:24;40275:7;40259:15;:24::i;:::-;40243:40;;40304:5;40298:11;;:2;:11;;;40294:48;;;40318:24;;;;;;;;;;;;;;40294:48;40375:5;40359:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;40385:37;40402:5;40409:12;:10;:12::i;:::-;40385:16;:37::i;:::-;40384:38;40359:63;40355:111;;;40431:35;;;;;;;;;;;;;;40355:111;40479:28;40488:2;40492:7;40501:5;40479:8;:28::i;:::-;40232:283;40170:345;;:::o;61659:97::-;13236:13;:11;:13::i;:::-;61734:14:::1;;;;;;;;;;;61733:15;61716:14;;:32;;;;;;;;;;;;;;;;;;61659:97::o:0;35555:101::-;35608:7;35635:13;;35628:20;;35555:101;:::o;41438:170::-;41572:28;41582:4;41588:2;41592:7;41572:9;:28::i;:::-;41438:170;;;:::o;57090:34::-;;;;:::o;36209:1007::-;36298:7;36331:16;36341:5;36331:9;:16::i;:::-;36322:5;:25;36318:61;;36356:23;;;;;;;;;;;;;;36318:61;36390:22;36415:13;:11;:13::i;:::-;36390:38;;36439:19;36469:25;36658:9;36653:466;36673:14;36669:1;:18;36653:466;;;36713:31;36747:11;:14;36759:1;36747:14;;;;;;;;;;;36713:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36810:1;36784:28;;:9;:14;;;:28;;;36780:111;;36857:9;:14;;;36837:34;;36780:111;36934:5;36913:26;;:17;:26;;;36909:195;;;36983:5;36968:11;:20;36964:85;;;37024:1;37017:8;;;;;;;;;36964:85;37071:13;;;;;;;36909:195;36694:425;36689:3;;;;;;;36653:466;;;;37202:5;37195:13;;;;:::i;:::-;;36307:909;;;36209:1007;;;;;:::o;56988:41::-;57025:4;56988:41;:::o;62026:156::-;13236:13;:11;:13::i;:::-;62078:15:::1;62096:21;62078:39;;62130:44;62156:7;:5;:7::i;:::-;62166;62130:17;:44::i;:::-;62065:117;62026:156::o:0;57832:830::-;57954:1;57942:9;:13;57934:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;58026:1;58013:9;:14;;58005:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;57025:4;58104:9;58088:13;:11;:13::i;:::-;:25;;;;:::i;:::-;58087:41;;58079:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;58169:8;;;;;;;;;;;58161:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;58248:9;58240:5;;:17;;;;:::i;:::-;58227:9;:30;;58219:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;58344:1;58331:9;58301:15;:27;58317:10;58301:27;;;;;;;;;;;;;;;;:39;;;;:::i;:::-;:44;;58293:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;58381:12;58423:10;58406:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;58396:39;;;;;;58381:54;;58458:59;58477:12;;58458:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58491:19;;58512:4;58458:18;:59::i;:::-;58450:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;58590:9;58559:15;:27;58575:10;58559:27;;;;;;;;;;;;;;;;:40;;;;;;;:::i;:::-;;;;;;;;58614:32;58624:10;58636:9;58614;:32::i;:::-;57917:745;57832:830;;;:::o;41679:185::-;41817:39;41834:4;41840:2;41844:7;41817:39;;;;;;;;;;;;:16;:39::i;:::-;41679:185;;;:::o;35733:176::-;35800:7;35833:13;:11;:13::i;:::-;35824:5;:22;35820:58;;35855:23;;;;;;;;;;;;;;35820:58;35896:5;35889:12;;35733:176;;;:::o;61904:114::-;13236:13;:11;:13::i;:::-;61997:11:::1;61981:13;:27;;;;61904:114:::0;:::o;57379:34::-;;;;;;;;;;;;;:::o;57176:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;38913:124::-;38977:7;39004:20;39016:7;39004:11;:20::i;:::-;:25;;;38997:32;;38913:124;;;:::o;57282:53::-;;;;;;;;;;;;;;;;;:::o;37724:206::-;37788:7;37829:1;37812:19;;:5;:19;;;37808:60;;;37840:28;;;;;;;;;;;;;;37808:60;37894:12;:19;37907:5;37894:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;37886:36;;37879:43;;37724:206;;;:::o;13998:103::-;13236:13;:11;:13::i;:::-;14063:30:::1;14090:1;14063:18;:30::i;:::-;13998:103::o:0;57547:97::-;;;;:::o;57344:28::-;;;;;;;;;;;;;:::o;58680:1864::-;57078:3;58795:15;;:34;;:61;;;;;58834:10;:22;58845:10;58834:22;;;;;;;;;;;;;;;;;;;;;;;;;58833:23;58795:61;58791:1736;;;58894:1;58882:9;:13;58874:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;58966:1;58953:9;:14;;58945:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;57025:4;59044:9;59028:13;:11;:13::i;:::-;:25;;;;:::i;:::-;59027:41;;59019:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;59109:8;;;;;;;;;;;59101:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;59193:5;59167:31;;:10;:22;59178:10;59167:22;;;;;;;;;;;;;;;;;;;;;;;;;:31;;;59159:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;59275:1;59263:9;:13;;;;:::i;:::-;59254:5;;:23;;;;:::i;:::-;59241:9;:36;;59233:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;59368:1;59362;59352:9;:11;;;;:::i;:::-;59321:15;:27;59337:10;59321:27;;;;;;;;;;;;;;;;:43;;;;:::i;:::-;:48;;59313:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;59405:12;59447:10;59430:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;59420:39;;;;;;59405:54;;59482:53;59501:12;;59482:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59515:13;;59530:4;59482:18;:53::i;:::-;59474:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;59577:15;;:17;;;;;;;;;:::i;:::-;;;;;;59634:4;59609:10;:22;59620:10;59609:22;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;59697:1;59685:9;:13;;;;:::i;:::-;59653:15;:27;59669:10;59653:27;;;;;;;;;;;;;;;;:46;;;;;;;:::i;:::-;;;;;;;;59714:32;59724:10;59736:9;59714;:32::i;:::-;58857:923;58791:1736;;;59823:1;59811:9;:13;59803:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;59895:1;59882:9;:14;;59874:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;57025:4;59973:9;59957:13;:11;:13::i;:::-;:25;;;;:::i;:::-;59956:41;;59948:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;60038:8;;;;;;;;;;;60030:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;60117:9;60109:5;;:17;;;;:::i;:::-;60096:9;:30;;60088:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;60213:1;60200:9;60170:15;:27;60186:10;60170:27;;;;;;;;;;;;;;;;:39;;;;:::i;:::-;:44;;60162:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;60250:12;60292:10;60275:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;60265:39;;;;;;60250:54;;60327:53;60346:12;;60327:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60360:13;;60375:4;60327:18;:53::i;:::-;60319:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;60453:9;60422:15;:27;60438:10;60422:27;;;;;;;;;;;;;;;;:40;;;;;;;:::i;:::-;;;;;;;;60477:32;60487:10;60499:9;60477;:32::i;:::-;59786:741;58791:1736;58680:1864;;;:::o;57131:34::-;;;;:::o;13350:87::-;13396:7;13423:6;;;;;;;;;;;13416:13;;13350:87;:::o;61572:79::-;13236:13;:11;:13::i;:::-;61635:8:::1;;;;;;;;;;;61634:9;61623:8;;:20;;;;;;;;;;;;;;;;;;61572:79::o:0;39273:104::-;39329:13;39362:7;39355:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39273:104;:::o;60558:530::-;60641:1;60629:9;:13;60621:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;57025:4;60713:9;60697:13;:11;:13::i;:::-;:25;;;;:::i;:::-;60696:41;;60688:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;60774:14;;;;;;;;;;;60766:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;60880:1;60867:9;60834:18;:30;60853:10;60834:30;;;;;;;;;;;;;;;;:42;;;;:::i;:::-;:47;;60826:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;60945:5;;60933:9;:17;;;;:::i;:::-;60920:9;:30;;60912:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;61022:9;60988:18;:30;61007:10;60988:30;;;;;;;;;;;;;;;;:43;;;;;;;:::i;:::-;;;;;;;;61046:32;61056:10;61068:9;61046;:32::i;:::-;60558:530;:::o;40857:279::-;40960:12;:10;:12::i;:::-;40948:24;;:8;:24;;;40944:54;;;40981:17;;;;;;;;;;;;;;40944:54;41056:8;41011:18;:32;41030:12;:10;:12::i;:::-;41011:32;;;;;;;;;;;;;;;:42;41044:8;41011:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;41109:8;41080:48;;41095:12;:10;:12::i;:::-;41080:48;;;41119:8;41080:48;;;;;;:::i;:::-;;;;;;;;40857:279;;:::o;62190:93::-;13236:13;:11;:13::i;:::-;62267:6:::1;62259:5;:14;;;;62190:93:::0;:::o;57651:103::-;;;;:::o;41935:308::-;42094:28;42104:4;42110:2;42114:7;42094:9;:28::i;:::-;42138:48;42161:4;42167:2;42171:7;42180:5;42138:22;:48::i;:::-;42133:102;;42195:40;;;;;;;;;;;;;;42133:102;41935:308;;;;:::o;61766:126::-;13236:13;:11;:13::i;:::-;61871:11:::1;61849:19;:33;;;;61766:126:::0;:::o;61096:344::-;61169:13;61203:16;61211:7;61203;:16::i;:::-;61195:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;61284:14;61301:7;61284:24;;61357:1;61334:12;61328:26;;;;;:::i;:::-;;;:30;:104;;;;;;;;;;;;;;;;;61385:12;61399:17;:6;:15;:17::i;:::-;61368:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61328:104;61321:111;;;61096:344;;;:::o;61448:116::-;13236:13;:11;:13::i;:::-;61543::::1;61528:12;:28;;;;;;;;;;;;:::i;:::-;;61448:116:::0;:::o;57225:50::-;;;;;;;;;;;;;;;;;:::o;41207:164::-;41304:4;41328:18;:25;41347:5;41328:25;;;;;;;;;;;;;;;:35;41354:8;41328:35;;;;;;;;;;;;;;;;;;;;;;;;;41321:42;;41207:164;;;;:::o;14256:201::-;13236:13;:11;:13::i;:::-;14365:1:::1;14345:22;;:8;:22;;;;14337:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;14421:28;14440:8;14421:18;:28::i;:::-;14256:201:::0;:::o;26204:157::-;26289:4;26328:25;26313:40;;;:11;:40;;;;26306:47;;26204:157;;;:::o;42498:112::-;42555:4;42589:13;;42579:7;:23;42572:30;;42498:112;;;:::o;11901:98::-;11954:7;11981:10;11974:17;;11901:98;:::o;47261:196::-;47403:2;47376:15;:24;47392:7;47376:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;47441:7;47437:2;47421:28;;47430:5;47421:28;;;;;;;;;;;;47261:196;;;:::o;13515:132::-;13590:12;:10;:12::i;:::-;13579:23;;:7;:5;:7::i;:::-;:23;;;13571:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13515:132::o;45181:1962::-;45296:35;45334:20;45346:7;45334:11;:20::i;:::-;45296:58;;45367:22;45409:13;:18;;;45393:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;45468:12;:10;:12::i;:::-;45444:36;;:20;45456:7;45444:11;:20::i;:::-;:36;;;45393:87;:154;;;;45497:50;45514:13;:18;;;45534:12;:10;:12::i;:::-;45497:16;:50::i;:::-;45393:154;45367:181;;45566:17;45561:66;;45592:35;;;;;;;;;;;;;;45561:66;45664:4;45642:26;;:13;:18;;;:26;;;45638:67;;45677:28;;;;;;;;;;;;;;45638:67;45734:1;45720:16;;:2;:16;;;45716:52;;;45745:23;;;;;;;;;;;;;;45716:52;45781:43;45803:4;45809:2;45813:7;45822:1;45781:21;:43::i;:::-;45889:49;45906:1;45910:7;45919:13;:18;;;45889:8;:49::i;:::-;46264:1;46234:12;:18;46247:4;46234:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46308:1;46280:12;:16;46293:2;46280:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46354:2;46326:11;:20;46338:7;46326:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;46416:15;46371:11;:20;46383:7;46371:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;46684:19;46716:1;46706:7;:11;46684:33;;46777:1;46736:43;;:11;:24;46748:11;46736:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;46732:295;;;46804:20;46812:11;46804:7;:20::i;:::-;46800:212;;;46881:13;:18;;;46849:11;:24;46861:11;46849:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;46964:13;:28;;;46922:11;:24;46934:11;46922:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;46800:212;46732:295;46209:829;47074:7;47070:2;47055:27;;47064:4;47055:27;;;;;;;;;;;;47093:42;47114:4;47120:2;47124:7;47133:1;47093:20;:42::i;:::-;45285:1858;;45181:1962;;;:::o;17309:317::-;17424:6;17399:21;:31;;17391:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;17478:12;17496:9;:14;;17518:6;17496:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17477:52;;;17548:7;17540:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;17380:246;17309:317;;:::o;1219:190::-;1344:4;1397;1368:25;1381:5;1388:4;1368:12;:25::i;:::-;:33;1361:40;;1219:190;;;;;:::o;42618:104::-;42687:27;42697:2;42701:8;42687:27;;;;;;;;;;;;:9;:27::i;:::-;42618:104;;:::o;38347:504::-;38408:21;;:::i;:::-;38447:16;38455:7;38447;:16::i;:::-;38442:61;;38472:31;;;;;;;;;;;;;;38442:61;38546:12;38561:7;38546:22;;38541:245;38578:1;38570:4;:9;38541:245;;38608:31;38642:11;:17;38654:4;38642:17;;;;;;;;;;;38608:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38708:1;38682:28;;:9;:14;;;:28;;;38678:93;;38742:9;38735:16;;;;;;38678:93;38589:197;38581:6;;;;;;;;38541:245;;;;38816:27;;;;;;;;;;;;;;38347:504;;;;:::o;14617:191::-;14691:16;14710:6;;;;;;;;;;;14691:25;;14736:8;14727:6;;:17;;;;;;;;;;;;;;;;;;14791:8;14760:40;;14781:8;14760:40;;;;;;;;;;;;14680:128;14617:191;:::o;48022:765::-;48177:4;48198:15;:2;:13;;;:15::i;:::-;48194:586;;;48250:2;48234:36;;;48271:12;:10;:12::i;:::-;48285:4;48291:7;48300:5;48234:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;48230:495;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48497:1;48480:6;:13;:18;48476:234;;;48507:40;;;;;;;;;;;;;;48476:234;48660:6;48654:13;48645:6;48641:2;48637:15;48630:38;48230:495;48367:45;;;48357:55;;;:6;:55;;;;48350:62;;;;;48194:586;48764:4;48757:11;;48022:765;;;;;;;:::o;9155:723::-;9211:13;9441:1;9432:5;:10;9428:53;;;9459:10;;;;;;;;;;;;;;;;;;;;;9428:53;9491:12;9506:5;9491:20;;9522:14;9547:78;9562:1;9554:4;:9;9547:78;;9580:8;;;;;:::i;:::-;;;;9611:2;9603:10;;;;;:::i;:::-;;;9547:78;;;9635:19;9667:6;9657:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9635:39;;9685:154;9701:1;9692:5;:10;9685:154;;9729:1;9719:11;;;;;:::i;:::-;;;9796:2;9788:5;:10;;;;:::i;:::-;9775:2;:24;;;;:::i;:::-;9762:39;;9745:6;9752;9745:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;9825:2;9816:11;;;;;:::i;:::-;;;9685:154;;;9863:6;9849:21;;;;;9155:723;;;;:::o;49275:159::-;;;;;:::o;49846:158::-;;;;;:::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;43085:163::-;43208:32;43214:2;43218:8;43228:5;43235:4;43208:5;:32::i;:::-;43085:163;;;:::o;16048:326::-;16108:4;16365:1;16343:7;:19;;;:23;16336:30;;16048:326;;;:::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;43507:1420::-;43646:20;43669:13;;43646:36;;43711:1;43697:16;;:2;:16;;;43693:48;;;43722:19;;;;;;;;;;;;;;43693:48;43768:1;43756:8;:13;43752:44;;;43778:18;;;;;;;;;;;;;;43752:44;43809:61;43839:1;43843:2;43847:12;43861:8;43809:21;:61::i;:::-;44185:8;44149:12;:16;44162:2;44149:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44250:8;44209:12;:16;44222:2;44209:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44309:2;44276:11;:25;44288:12;44276:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;44376:15;44326:11;:25;44338:12;44326:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;44409:20;44432:12;44409:35;;44466:9;44461:330;44481:8;44477:1;:12;44461:330;;;44545:12;44541:2;44520:38;;44537:1;44520:38;;;;;;;;;;;;44581:4;:68;;;;;44590:59;44621:1;44625:2;44629:12;44643:5;44590:22;:59::i;:::-;44589:60;44581:68;44577:164;;;44681:40;;;;;;;;;;;;;;44577:164;44761:14;;;;;;;44491:3;;;;;;;44461:330;;;;44823:12;44807:13;:28;;;;44124:723;44859:60;44888:1;44892:2;44896:12;44910:8;44859:20;:60::i;:::-;43635:1292;43507:1420;;;;:::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;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:139::-;1762:5;1800:6;1787:20;1778:29;;1816:33;1843:5;1816:33;:::i;:::-;1716:139;;;;:::o;1861:137::-;1906:5;1944:6;1931:20;1922:29;;1960:32;1986:5;1960:32;:::i;:::-;1861:137;;;;:::o;2004:141::-;2060:5;2091:6;2085:13;2076:22;;2107:32;2133:5;2107:32;:::i;:::-;2004:141;;;;:::o;2164:338::-;2219:5;2268:3;2261:4;2253:6;2249:17;2245:27;2235:122;;2276:79;;:::i;:::-;2235:122;2393:6;2380:20;2418:78;2492:3;2484:6;2477:4;2469:6;2465:17;2418:78;:::i;:::-;2409:87;;2225:277;2164:338;;;;:::o;2522:340::-;2578:5;2627:3;2620:4;2612:6;2608:17;2604:27;2594:122;;2635:79;;:::i;:::-;2594:122;2752:6;2739:20;2777:79;2852:3;2844:6;2837:4;2829:6;2825:17;2777:79;:::i;:::-;2768:88;;2584:278;2522:340;;;;:::o;2868:139::-;2914:5;2952:6;2939:20;2930:29;;2968:33;2995:5;2968:33;:::i;:::-;2868:139;;;;:::o;3013:329::-;3072:6;3121:2;3109:9;3100:7;3096:23;3092:32;3089:119;;;3127:79;;:::i;:::-;3089:119;3247:1;3272:53;3317:7;3308:6;3297:9;3293:22;3272:53;:::i;:::-;3262:63;;3218:117;3013:329;;;;:::o;3348:474::-;3416:6;3424;3473:2;3461:9;3452:7;3448:23;3444:32;3441:119;;;3479:79;;:::i;:::-;3441:119;3599:1;3624:53;3669:7;3660:6;3649:9;3645:22;3624:53;:::i;:::-;3614:63;;3570:117;3726:2;3752:53;3797:7;3788:6;3777:9;3773:22;3752:53;:::i;:::-;3742:63;;3697:118;3348:474;;;;;:::o;3828:619::-;3905:6;3913;3921;3970:2;3958:9;3949:7;3945:23;3941:32;3938:119;;;3976:79;;:::i;:::-;3938:119;4096:1;4121:53;4166:7;4157:6;4146:9;4142:22;4121:53;:::i;:::-;4111:63;;4067:117;4223:2;4249:53;4294:7;4285:6;4274:9;4270:22;4249:53;:::i;:::-;4239:63;;4194:118;4351:2;4377:53;4422:7;4413:6;4402:9;4398:22;4377:53;:::i;:::-;4367:63;;4322:118;3828:619;;;;;:::o;4453:943::-;4548:6;4556;4564;4572;4621:3;4609:9;4600:7;4596:23;4592:33;4589:120;;;4628:79;;:::i;:::-;4589:120;4748:1;4773:53;4818:7;4809:6;4798:9;4794:22;4773:53;:::i;:::-;4763:63;;4719:117;4875:2;4901:53;4946:7;4937:6;4926:9;4922:22;4901:53;:::i;:::-;4891:63;;4846:118;5003:2;5029:53;5074:7;5065:6;5054:9;5050:22;5029:53;:::i;:::-;5019:63;;4974:118;5159:2;5148:9;5144:18;5131:32;5190:18;5182:6;5179:30;5176:117;;;5212:79;;:::i;:::-;5176:117;5317:62;5371:7;5362:6;5351:9;5347:22;5317:62;:::i;:::-;5307:72;;5102:287;4453:943;;;;;;;:::o;5402:468::-;5467:6;5475;5524:2;5512:9;5503:7;5499:23;5495:32;5492:119;;;5530:79;;:::i;:::-;5492:119;5650:1;5675:53;5720:7;5711:6;5700:9;5696:22;5675:53;:::i;:::-;5665:63;;5621:117;5777:2;5803:50;5845:7;5836:6;5825:9;5821:22;5803:50;:::i;:::-;5793:60;;5748:115;5402:468;;;;;:::o;5876:474::-;5944:6;5952;6001:2;5989:9;5980:7;5976:23;5972:32;5969:119;;;6007:79;;:::i;:::-;5969:119;6127:1;6152:53;6197:7;6188:6;6177:9;6173:22;6152:53;:::i;:::-;6142:63;;6098:117;6254:2;6280:53;6325:7;6316:6;6305:9;6301:22;6280:53;:::i;:::-;6270:63;;6225:118;5876:474;;;;;:::o;6356:329::-;6415:6;6464:2;6452:9;6443:7;6439:23;6435:32;6432:119;;;6470:79;;:::i;:::-;6432:119;6590:1;6615:53;6660:7;6651:6;6640:9;6636:22;6615:53;:::i;:::-;6605:63;;6561:117;6356:329;;;;:::o;6691:327::-;6749:6;6798:2;6786:9;6777:7;6773:23;6769:32;6766:119;;;6804:79;;:::i;:::-;6766:119;6924:1;6949:52;6993:7;6984:6;6973:9;6969:22;6949:52;:::i;:::-;6939:62;;6895:116;6691:327;;;;:::o;7024:349::-;7093:6;7142:2;7130:9;7121:7;7117:23;7113:32;7110:119;;;7148:79;;:::i;:::-;7110:119;7268:1;7293:63;7348:7;7339:6;7328:9;7324:22;7293:63;:::i;:::-;7283:73;;7239:127;7024:349;;;;:::o;7379:509::-;7448:6;7497:2;7485:9;7476:7;7472:23;7468:32;7465:119;;;7503:79;;:::i;:::-;7465:119;7651:1;7640:9;7636:17;7623:31;7681:18;7673:6;7670:30;7667:117;;;7703:79;;:::i;:::-;7667:117;7808:63;7863:7;7854:6;7843:9;7839:22;7808:63;:::i;:::-;7798:73;;7594:287;7379:509;;;;:::o;7894:329::-;7953:6;8002:2;7990:9;7981:7;7977:23;7973:32;7970:119;;;8008:79;;:::i;:::-;7970:119;8128:1;8153:53;8198:7;8189:6;8178:9;8174:22;8153:53;:::i;:::-;8143:63;;8099:117;7894:329;;;;:::o;8229:704::-;8324:6;8332;8340;8389:2;8377:9;8368:7;8364:23;8360:32;8357:119;;;8395:79;;:::i;:::-;8357:119;8515:1;8540:53;8585:7;8576:6;8565:9;8561:22;8540:53;:::i;:::-;8530:63;;8486:117;8670:2;8659:9;8655:18;8642:32;8701:18;8693:6;8690:30;8687:117;;;8723:79;;:::i;:::-;8687:117;8836:80;8908:7;8899:6;8888:9;8884:22;8836:80;:::i;:::-;8818:98;;;;8613:313;8229:704;;;;;:::o;8939:118::-;9026:24;9044:5;9026:24;:::i;:::-;9021:3;9014:37;8939:118;;:::o;9063:157::-;9168:45;9188:24;9206:5;9188:24;:::i;:::-;9168:45;:::i;:::-;9163:3;9156:58;9063:157;;:::o;9226:109::-;9307:21;9322:5;9307:21;:::i;:::-;9302:3;9295:34;9226:109;;:::o;9341:118::-;9428:24;9446:5;9428:24;:::i;:::-;9423:3;9416:37;9341:118;;:::o;9465:360::-;9551:3;9579:38;9611:5;9579:38;:::i;:::-;9633:70;9696:6;9691:3;9633:70;:::i;:::-;9626:77;;9712:52;9757:6;9752:3;9745:4;9738:5;9734:16;9712:52;:::i;:::-;9789:29;9811:6;9789:29;:::i;:::-;9784:3;9780:39;9773:46;;9555:270;9465:360;;;;:::o;9831:364::-;9919:3;9947:39;9980:5;9947:39;:::i;:::-;10002:71;10066:6;10061:3;10002:71;:::i;:::-;9995:78;;10082:52;10127:6;10122:3;10115:4;10108:5;10104:16;10082:52;:::i;:::-;10159:29;10181:6;10159:29;:::i;:::-;10154:3;10150:39;10143:46;;9923:272;9831:364;;;;:::o;10201:377::-;10307:3;10335:39;10368:5;10335:39;:::i;:::-;10390:89;10472:6;10467:3;10390:89;:::i;:::-;10383:96;;10488:52;10533:6;10528:3;10521:4;10514:5;10510:16;10488:52;:::i;:::-;10565:6;10560:3;10556:16;10549:23;;10311:267;10201:377;;;;:::o;10608:845::-;10711:3;10748:5;10742:12;10777:36;10803:9;10777:36;:::i;:::-;10829:89;10911:6;10906:3;10829:89;:::i;:::-;10822:96;;10949:1;10938:9;10934:17;10965:1;10960:137;;;;11111:1;11106:341;;;;10927:520;;10960:137;11044:4;11040:9;11029;11025:25;11020:3;11013:38;11080:6;11075:3;11071:16;11064:23;;10960:137;;11106:341;11173:38;11205:5;11173:38;:::i;:::-;11233:1;11247:154;11261:6;11258:1;11255:13;11247:154;;;11335:7;11329:14;11325:1;11320:3;11316:11;11309:35;11385:1;11376:7;11372:15;11361:26;;11283:4;11280:1;11276:12;11271:17;;11247:154;;;11430:6;11425:3;11421:16;11414:23;;11113:334;;10927:520;;10715:738;;10608:845;;;;:::o;11459:366::-;11601:3;11622:67;11686:2;11681:3;11622:67;:::i;:::-;11615:74;;11698:93;11787:3;11698:93;:::i;:::-;11816:2;11811:3;11807:12;11800:19;;11459:366;;;:::o;11831:::-;11973:3;11994:67;12058:2;12053:3;11994:67;:::i;:::-;11987:74;;12070:93;12159:3;12070:93;:::i;:::-;12188:2;12183:3;12179:12;12172:19;;11831:366;;;:::o;12203:::-;12345:3;12366:67;12430:2;12425:3;12366:67;:::i;:::-;12359:74;;12442:93;12531:3;12442:93;:::i;:::-;12560:2;12555:3;12551:12;12544:19;;12203:366;;;:::o;12575:::-;12717:3;12738:67;12802:2;12797:3;12738:67;:::i;:::-;12731:74;;12814:93;12903:3;12814:93;:::i;:::-;12932:2;12927:3;12923:12;12916:19;;12575:366;;;:::o;12947:::-;13089:3;13110:67;13174:2;13169:3;13110:67;:::i;:::-;13103:74;;13186:93;13275:3;13186:93;:::i;:::-;13304:2;13299:3;13295:12;13288:19;;12947:366;;;:::o;13319:::-;13461:3;13482:67;13546:2;13541:3;13482:67;:::i;:::-;13475:74;;13558:93;13647:3;13558:93;:::i;:::-;13676:2;13671:3;13667:12;13660:19;;13319:366;;;:::o;13691:::-;13833:3;13854:67;13918:2;13913:3;13854:67;:::i;:::-;13847:74;;13930:93;14019:3;13930:93;:::i;:::-;14048:2;14043:3;14039:12;14032:19;;13691:366;;;:::o;14063:400::-;14223:3;14244:84;14326:1;14321:3;14244:84;:::i;:::-;14237:91;;14337:93;14426:3;14337:93;:::i;:::-;14455:1;14450:3;14446:11;14439:18;;14063:400;;;:::o;14469:366::-;14611:3;14632:67;14696:2;14691:3;14632:67;:::i;:::-;14625:74;;14708:93;14797:3;14708:93;:::i;:::-;14826:2;14821:3;14817:12;14810:19;;14469:366;;;:::o;14841:::-;14983:3;15004:67;15068:2;15063:3;15004:67;:::i;:::-;14997:74;;15080:93;15169:3;15080:93;:::i;:::-;15198:2;15193:3;15189:12;15182:19;;14841:366;;;:::o;15213:::-;15355:3;15376:67;15440:2;15435:3;15376:67;:::i;:::-;15369:74;;15452:93;15541:3;15452:93;:::i;:::-;15570:2;15565:3;15561:12;15554:19;;15213:366;;;:::o;15585:::-;15727:3;15748:67;15812:2;15807:3;15748:67;:::i;:::-;15741:74;;15824:93;15913:3;15824:93;:::i;:::-;15942:2;15937:3;15933:12;15926:19;;15585:366;;;:::o;15957:::-;16099:3;16120:67;16184:2;16179:3;16120:67;:::i;:::-;16113:74;;16196:93;16285:3;16196:93;:::i;:::-;16314:2;16309:3;16305:12;16298:19;;15957:366;;;:::o;16329:398::-;16488:3;16509:83;16590:1;16585:3;16509:83;:::i;:::-;16502:90;;16601:93;16690:3;16601:93;:::i;:::-;16719:1;16714:3;16710:11;16703:18;;16329:398;;;:::o;16733:366::-;16875:3;16896:67;16960:2;16955:3;16896:67;:::i;:::-;16889:74;;16972:93;17061:3;16972:93;:::i;:::-;17090:2;17085:3;17081:12;17074:19;;16733:366;;;:::o;17105:::-;17247:3;17268:67;17332:2;17327:3;17268:67;:::i;:::-;17261:74;;17344:93;17433:3;17344:93;:::i;:::-;17462:2;17457:3;17453:12;17446:19;;17105:366;;;:::o;17477:118::-;17564:24;17582:5;17564:24;:::i;:::-;17559:3;17552:37;17477:118;;:::o;17601:256::-;17713:3;17728:75;17799:3;17790:6;17728:75;:::i;:::-;17828:2;17823:3;17819:12;17812:19;;17848:3;17841:10;;17601:256;;;;:::o;17863:695::-;18141:3;18163:92;18251:3;18242:6;18163:92;:::i;:::-;18156:99;;18272:95;18363:3;18354:6;18272:95;:::i;:::-;18265:102;;18384:148;18528:3;18384:148;:::i;:::-;18377:155;;18549:3;18542:10;;17863:695;;;;;:::o;18564:379::-;18748:3;18770:147;18913:3;18770:147;:::i;:::-;18763:154;;18934:3;18927:10;;18564:379;;;:::o;18949:222::-;19042:4;19080:2;19069:9;19065:18;19057:26;;19093:71;19161:1;19150:9;19146:17;19137:6;19093:71;:::i;:::-;18949:222;;;;:::o;19177:640::-;19372:4;19410:3;19399:9;19395:19;19387:27;;19424:71;19492:1;19481:9;19477:17;19468:6;19424:71;:::i;:::-;19505:72;19573:2;19562:9;19558:18;19549:6;19505:72;:::i;:::-;19587;19655:2;19644:9;19640:18;19631:6;19587:72;:::i;:::-;19706:9;19700:4;19696:20;19691:2;19680:9;19676:18;19669:48;19734:76;19805:4;19796:6;19734:76;:::i;:::-;19726:84;;19177:640;;;;;;;:::o;19823:210::-;19910:4;19948:2;19937:9;19933:18;19925:26;;19961:65;20023:1;20012:9;20008:17;19999:6;19961:65;:::i;:::-;19823:210;;;;:::o;20039:222::-;20132:4;20170:2;20159:9;20155:18;20147:26;;20183:71;20251:1;20240:9;20236:17;20227:6;20183:71;:::i;:::-;20039:222;;;;:::o;20267:313::-;20380:4;20418:2;20407:9;20403:18;20395:26;;20467:9;20461:4;20457:20;20453:1;20442:9;20438:17;20431:47;20495:78;20568:4;20559:6;20495:78;:::i;:::-;20487:86;;20267:313;;;;:::o;20586:419::-;20752:4;20790:2;20779:9;20775:18;20767:26;;20839:9;20833:4;20829:20;20825:1;20814:9;20810:17;20803:47;20867:131;20993:4;20867:131;:::i;:::-;20859:139;;20586:419;;;:::o;21011:::-;21177:4;21215:2;21204:9;21200:18;21192:26;;21264:9;21258:4;21254:20;21250:1;21239:9;21235:17;21228:47;21292:131;21418:4;21292:131;:::i;:::-;21284:139;;21011:419;;;:::o;21436:::-;21602:4;21640:2;21629:9;21625:18;21617:26;;21689:9;21683:4;21679:20;21675:1;21664:9;21660:17;21653:47;21717:131;21843:4;21717:131;:::i;:::-;21709:139;;21436:419;;;:::o;21861:::-;22027:4;22065:2;22054:9;22050:18;22042:26;;22114:9;22108:4;22104:20;22100:1;22089:9;22085:17;22078:47;22142:131;22268:4;22142:131;:::i;:::-;22134:139;;21861:419;;;:::o;22286:::-;22452:4;22490:2;22479:9;22475:18;22467:26;;22539:9;22533:4;22529:20;22525:1;22514:9;22510:17;22503:47;22567:131;22693:4;22567:131;:::i;:::-;22559:139;;22286:419;;;:::o;22711:::-;22877:4;22915:2;22904:9;22900:18;22892:26;;22964:9;22958:4;22954:20;22950:1;22939:9;22935:17;22928:47;22992:131;23118:4;22992:131;:::i;:::-;22984:139;;22711:419;;;:::o;23136:::-;23302:4;23340:2;23329:9;23325:18;23317:26;;23389:9;23383:4;23379:20;23375:1;23364:9;23360:17;23353:47;23417:131;23543:4;23417:131;:::i;:::-;23409:139;;23136:419;;;:::o;23561:::-;23727:4;23765:2;23754:9;23750:18;23742:26;;23814:9;23808:4;23804:20;23800:1;23789:9;23785:17;23778:47;23842:131;23968:4;23842:131;:::i;:::-;23834:139;;23561:419;;;:::o;23986:::-;24152:4;24190:2;24179:9;24175:18;24167:26;;24239:9;24233:4;24229:20;24225:1;24214:9;24210:17;24203:47;24267:131;24393:4;24267:131;:::i;:::-;24259:139;;23986:419;;;:::o;24411:::-;24577:4;24615:2;24604:9;24600:18;24592:26;;24664:9;24658:4;24654:20;24650:1;24639:9;24635:17;24628:47;24692:131;24818:4;24692:131;:::i;:::-;24684:139;;24411:419;;;:::o;24836:::-;25002:4;25040:2;25029:9;25025:18;25017:26;;25089:9;25083:4;25079:20;25075:1;25064:9;25060:17;25053:47;25117:131;25243:4;25117:131;:::i;:::-;25109:139;;24836:419;;;:::o;25261:::-;25427:4;25465:2;25454:9;25450:18;25442:26;;25514:9;25508:4;25504:20;25500:1;25489:9;25485:17;25478:47;25542:131;25668:4;25542:131;:::i;:::-;25534:139;;25261:419;;;:::o;25686:::-;25852:4;25890:2;25879:9;25875:18;25867:26;;25939:9;25933:4;25929:20;25925:1;25914:9;25910:17;25903:47;25967:131;26093:4;25967:131;:::i;:::-;25959:139;;25686:419;;;:::o;26111:::-;26277:4;26315:2;26304:9;26300:18;26292:26;;26364:9;26358:4;26354:20;26350:1;26339:9;26335:17;26328:47;26392:131;26518:4;26392:131;:::i;:::-;26384:139;;26111:419;;;:::o;26536:222::-;26629:4;26667:2;26656:9;26652:18;26644:26;;26680:71;26748:1;26737:9;26733:17;26724:6;26680:71;:::i;:::-;26536:222;;;;:::o;26764:129::-;26798:6;26825:20;;:::i;:::-;26815:30;;26854:33;26882:4;26874:6;26854:33;:::i;:::-;26764:129;;;:::o;26899:75::-;26932:6;26965:2;26959:9;26949:19;;26899:75;:::o;26980:307::-;27041:4;27131:18;27123:6;27120:30;27117:56;;;27153:18;;:::i;:::-;27117:56;27191:29;27213:6;27191:29;:::i;:::-;27183:37;;27275:4;27269;27265:15;27257:23;;26980:307;;;:::o;27293:308::-;27355:4;27445:18;27437:6;27434:30;27431:56;;;27467:18;;:::i;:::-;27431:56;27505:29;27527:6;27505:29;:::i;:::-;27497:37;;27589:4;27583;27579:15;27571:23;;27293:308;;;:::o;27607:141::-;27656:4;27679:3;27671:11;;27702:3;27699:1;27692:14;27736:4;27733:1;27723:18;27715:26;;27607:141;;;:::o;27754:98::-;27805:6;27839:5;27833:12;27823:22;;27754:98;;;:::o;27858:99::-;27910:6;27944:5;27938:12;27928:22;;27858:99;;;:::o;27963:168::-;28046:11;28080:6;28075:3;28068:19;28120:4;28115:3;28111:14;28096:29;;27963:168;;;;:::o;28137:147::-;28238:11;28275:3;28260:18;;28137:147;;;;:::o;28290:169::-;28374:11;28408:6;28403:3;28396:19;28448:4;28443:3;28439:14;28424:29;;28290:169;;;;:::o;28465:148::-;28567:11;28604:3;28589:18;;28465:148;;;;:::o;28619:305::-;28659:3;28678:20;28696:1;28678:20;:::i;:::-;28673:25;;28712:20;28730:1;28712:20;:::i;:::-;28707:25;;28866:1;28798:66;28794:74;28791:1;28788:81;28785:107;;;28872:18;;:::i;:::-;28785:107;28916:1;28913;28909:9;28902:16;;28619:305;;;;:::o;28930:185::-;28970:1;28987:20;29005:1;28987:20;:::i;:::-;28982:25;;29021:20;29039:1;29021:20;:::i;:::-;29016:25;;29060:1;29050:35;;29065:18;;:::i;:::-;29050:35;29107:1;29104;29100:9;29095:14;;28930:185;;;;:::o;29121:348::-;29161:7;29184:20;29202:1;29184:20;:::i;:::-;29179:25;;29218:20;29236:1;29218:20;:::i;:::-;29213:25;;29406:1;29338:66;29334:74;29331:1;29328:81;29323:1;29316:9;29309:17;29305:105;29302:131;;;29413:18;;:::i;:::-;29302:131;29461:1;29458;29454:9;29443:20;;29121:348;;;;:::o;29475:191::-;29515:4;29535:20;29553:1;29535:20;:::i;:::-;29530:25;;29569:20;29587:1;29569:20;:::i;:::-;29564:25;;29608:1;29605;29602:8;29599:34;;;29613:18;;:::i;:::-;29599:34;29658:1;29655;29651:9;29643:17;;29475:191;;;;:::o;29672:96::-;29709:7;29738:24;29756:5;29738:24;:::i;:::-;29727:35;;29672:96;;;:::o;29774:90::-;29808:7;29851:5;29844:13;29837:21;29826:32;;29774:90;;;:::o;29870:77::-;29907:7;29936:5;29925:16;;29870:77;;;:::o;29953:149::-;29989:7;30029:66;30022:5;30018:78;30007:89;;29953:149;;;:::o;30108:126::-;30145:7;30185:42;30178:5;30174:54;30163:65;;30108:126;;;:::o;30240:77::-;30277:7;30306:5;30295:16;;30240:77;;;:::o;30323:154::-;30407:6;30402:3;30397;30384:30;30469:1;30460:6;30455:3;30451:16;30444:27;30323:154;;;:::o;30483:307::-;30551:1;30561:113;30575:6;30572:1;30569:13;30561:113;;;30660:1;30655:3;30651:11;30645:18;30641:1;30636:3;30632:11;30625:39;30597:2;30594:1;30590:10;30585:15;;30561:113;;;30692:6;30689:1;30686:13;30683:101;;;30772:1;30763:6;30758:3;30754:16;30747:27;30683:101;30532:258;30483:307;;;:::o;30796:320::-;30840:6;30877:1;30871:4;30867:12;30857:22;;30924:1;30918:4;30914:12;30945:18;30935:81;;31001:4;30993:6;30989:17;30979:27;;30935:81;31063:2;31055:6;31052:14;31032:18;31029:38;31026:84;;;31082:18;;:::i;:::-;31026:84;30847:269;30796:320;;;:::o;31122:281::-;31205:27;31227:4;31205:27;:::i;:::-;31197:6;31193:40;31335:6;31323:10;31320:22;31299:18;31287:10;31284:34;31281:62;31278:88;;;31346:18;;:::i;:::-;31278:88;31386:10;31382:2;31375:22;31165:238;31122:281;;:::o;31409:233::-;31448:3;31471:24;31489:5;31471:24;:::i;:::-;31462:33;;31517:66;31510:5;31507:77;31504:103;;;31587:18;;:::i;:::-;31504:103;31634:1;31627:5;31623:13;31616:20;;31409:233;;;:::o;31648:100::-;31687:7;31716:26;31736:5;31716:26;:::i;:::-;31705:37;;31648:100;;;:::o;31754:94::-;31793:7;31822:20;31836:5;31822:20;:::i;:::-;31811:31;;31754:94;;;:::o;31854:176::-;31886:1;31903:20;31921:1;31903:20;:::i;:::-;31898:25;;31937:20;31955:1;31937:20;:::i;:::-;31932:25;;31976:1;31966:35;;31981:18;;:::i;:::-;31966:35;32022:1;32019;32015:9;32010:14;;31854:176;;;;:::o;32036:180::-;32084:77;32081:1;32074:88;32181:4;32178:1;32171:15;32205:4;32202:1;32195:15;32222:180;32270:77;32267:1;32260:88;32367:4;32364:1;32357:15;32391:4;32388:1;32381:15;32408:180;32456:77;32453:1;32446:88;32553:4;32550:1;32543:15;32577:4;32574:1;32567:15;32594:180;32642:77;32639:1;32632:88;32739:4;32736:1;32729:15;32763:4;32760:1;32753:15;32780:180;32828:77;32825:1;32818:88;32925:4;32922:1;32915:15;32949:4;32946:1;32939:15;32966:180;33014:77;33011:1;33004:88;33111:4;33108:1;33101:15;33135:4;33132:1;33125:15;33152:117;33261:1;33258;33251:12;33275:117;33384:1;33381;33374:12;33398:117;33507:1;33504;33497:12;33521:117;33630:1;33627;33620:12;33644:117;33753:1;33750;33743:12;33767:117;33876:1;33873;33866:12;33890:102;33931:6;33982:2;33978:7;33973:2;33966:5;33962:14;33958:28;33948:38;;33890:102;;;:::o;33998:94::-;34031:8;34079:5;34075:2;34071:14;34050:35;;33998:94;;;:::o;34098:163::-;34238:15;34234:1;34226:6;34222:14;34215:39;34098:163;:::o;34267:225::-;34407:34;34403:1;34395:6;34391:14;34384:58;34476:8;34471:2;34463:6;34459:15;34452:33;34267:225;:::o;34498:180::-;34638:32;34634:1;34626:6;34622:14;34615:56;34498:180;:::o;34684:165::-;34824:17;34820:1;34812:6;34808:14;34801:41;34684:165;:::o;34855:245::-;34995:34;34991:1;34983:6;34979:14;34972:58;35064:28;35059:2;35051:6;35047:15;35040:53;34855:245;:::o;35106:179::-;35246:31;35242:1;35234:6;35230:14;35223:55;35106:179;:::o;35291:164::-;35431:16;35427:1;35419:6;35415:14;35408:40;35291:164;:::o;35461:155::-;35601:7;35597:1;35589:6;35585:14;35578:31;35461:155;:::o;35622:182::-;35762:34;35758:1;35750:6;35746:14;35739:58;35622:182;:::o;35810:234::-;35950:34;35946:1;35938:6;35934:14;35927:58;36019:17;36014:2;36006:6;36002:15;35995:42;35810:234;:::o;36050:180::-;36190:32;36186:1;36178:6;36174:14;36167:56;36050:180;:::o;36236:172::-;36376:24;36372:1;36364:6;36360:14;36353:48;36236:172;:::o;36414:180::-;36554:32;36550:1;36542:6;36538:14;36531:56;36414:180;:::o;36600:114::-;;:::o;36720:166::-;36860:18;36856:1;36848:6;36844:14;36837:42;36720:166;:::o;36892:170::-;37032:22;37028:1;37020:6;37016:14;37009:46;36892:170;:::o;37068:122::-;37141:24;37159:5;37141:24;:::i;:::-;37134:5;37131:35;37121:63;;37180:1;37177;37170:12;37121:63;37068:122;:::o;37196:116::-;37266:21;37281:5;37266:21;:::i;:::-;37259:5;37256:32;37246:60;;37302:1;37299;37292:12;37246:60;37196:116;:::o;37318:122::-;37391:24;37409:5;37391:24;:::i;:::-;37384:5;37381:35;37371:63;;37430:1;37427;37420:12;37371:63;37318:122;:::o;37446:120::-;37518:23;37535:5;37518:23;:::i;:::-;37511:5;37508:34;37498:62;;37556:1;37553;37546:12;37498:62;37446:120;:::o;37572:122::-;37645:24;37663:5;37645:24;:::i;:::-;37638:5;37635:35;37625:63;;37684:1;37681;37674:12;37625:63;37572:122;:::o

Swarm Source

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