ETH Price: $3,288.14 (+0.45%)

Token

CryptoDocs (CDOCS)
 

Overview

Max Total Supply

425 CDOCS

Holders

161

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
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:
CryptoDocs

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: Unlicensed

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


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

        return (signer, RecoverError.NoError);
    }

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

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

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

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

// File: @openzeppelin/contracts/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 v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 ||
            super.supportsInterface(interfaceId);
    }

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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 {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _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 virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

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

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: CryptoDocs.sol



pragma solidity ^0.8.0;






contract CryptoDocs is ERC721, Ownable {
  
  using ECDSA for bytes32;
  using Strings for uint256;
  using  Counters for Counters.Counter;

  Counters.Counter private supply;

  string private baseURI;
  string private baseExtension;
  string private RevealedUri;
  address[] private Twallets;
  uint256 public presaleCost = 0.1 ether;
  uint256 public cost = 0.15 ether;
  uint256 public maxSupply = 10000;
  uint256 public prSupply = 1000;
  uint256 public maxMintable = maxSupply-prSupply;
  uint256 public maxMintAmountPerTx = 5;
  bool public paused = true;
  bool public revealed = false;
  bool public presaleActive = true; 
  mapping(address => uint256) public addressMintedBalance;
  address public signerAddress = 0x7E4723A50108AC20CBE09cD9F656bd065f5B42c8; 

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI,
    string memory _initRevealedUri
  ) ERC721(_name, _symbol) {
    setBaseURI(_initBaseURI);
    setRevealedURI(_initRevealedUri);
  }

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

  
  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    require(supply.current() + _mintAmount <= maxMintable, "This tx would exceed max supply");
    _;
  }

  function totalSupply() public view returns (uint256) {
    return supply.current();
  }


  // Mint-Presale and Public

  function premint(uint256 _mintAmount, bytes calldata _signature) public payable mintCompliance(_mintAmount) {
    require(!paused, "the contract is paused");
    require(presaleActive, "Presale is not Active!");
    require(msg.value == presaleCost * _mintAmount, "Balance too low");
    require(_verify(_signature), "bad signature");
        
    
        _mintLoop(msg.sender, _mintAmount);
    }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) { 
    require(!paused, "the contract is paused");
    require(!presaleActive, "Presale is still active");
    require(msg.value == cost * _mintAmount, "Balance too low");
        
        _mintLoop(msg.sender, _mintAmount);
  
    }
    

  function _hash(address _address) internal view returns (bytes32) {
        return keccak256(abi.encode(address(this),_address)).toEthSignedMessageHash();
  }

  function _verify( bytes memory signature) internal view returns (bool) {
        return (_hash(msg.sender).recover(signature) == signerAddress);
  }

   function mintForPRAddress(uint256 _mintAmount, address _receiver) public onlyOwner {
        require(supply.current() + _mintAmount <= maxSupply);
        _mintLoop(_receiver, _mintAmount);
    }


   function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

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

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


  //owner commands only
  function reveal() public onlyOwner {
      revealed = true;
  }

  function setSignerAddress(address signer) external onlyOwner {
        signerAddress = signer;
  }
  
  function setpresaleCost(uint256 _newpreCost) public onlyOwner {
    presaleCost = _newpreCost;
  }

  function setPublicCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  function setmaxMintAmount(uint256 _newmaxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _newmaxMintAmountPerTx;
  }

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

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

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }

  function setpreSale(bool _state) public onlyOwner {
    presaleActive = _state;
  }
  
  function setTwallets(address[] calldata _devwallets) public onlyOwner {
      delete Twallets;
      Twallets = _devwallets;
  }

  function getBalance() public view onlyOwner returns (uint256) {
        return address(this).balance;
    }

  function withdraw() public onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }
 
  function withdrawl1() public payable onlyOwner {
    // Do the splits here!

    uint256 withdrawalBalance = address(this).balance;

    (bool hs, ) = payable(Twallets[0]).call{value:  withdrawalBalance * 6200 / 10000}("");
    require(hs);
    (bool bs, ) = payable(Twallets[1]).call{value:  withdrawalBalance * 1200 / 10000}("");
    require(bs);
    (bool cs, ) = payable(Twallets[2]).call{value:  withdrawalBalance * 500 / 10000}("");
    require(cs);
    (bool es, ) = payable(Twallets[3]).call{value:  withdrawalBalance * 300 / 10000}("");
    require(es);
    (bool ds, ) = payable(Twallets[4]).call{value:  withdrawalBalance * 300 / 10000}("");
    require(ds);
    (bool ss, ) = payable(Twallets[5]).call{value:  withdrawalBalance * 300 / 10000}("");
    require(ss);
    (bool qs, ) = payable(Twallets[6]).call{value:  withdrawalBalance * 250 / 10000}("");
    require(qs);
    (bool zs, ) = payable(Twallets[7]).call{value:  withdrawalBalance * 200 / 10000}("");
    require(zs);
    (bool ps, ) = payable(Twallets[8]).call{value:  withdrawalBalance * 100 / 10000}("");
    require(ps);
    (bool ts, ) = payable(Twallets[9]).call{value:  withdrawalBalance * 100 / 10000}("");
    require(ts);
    (bool ys, ) = payable(Twallets[10]).call{value:  withdrawalBalance * 100 / 10000}("");
    require(ys);
    (bool ws, ) = payable(Twallets[11]).call{value:  withdrawalBalance * 25 / 10000}("");
    require(ws);
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }

   function _mintLoop(address _receiver, uint256 _mintAmount) internal {
    for (uint256 i = 0; i < _mintAmount; i++) {
      supply.increment();
      _safeMint(_receiver, supply.current());
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForPRAddress","outputs":[],"stateMutability":"nonpayable","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":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"prSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes","name":"_signature","type":"bytes"}],"name":"premint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setPublicCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_RevealedURI","type":"string"}],"name":"setRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"signer","type":"address"}],"name":"setSignerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_devwallets","type":"address[]"}],"name":"setTwallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmountPerTx","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setpreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newpreCost","type":"uint256"}],"name":"setpresaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawl1","outputs":[],"stateMutability":"payable","type":"function"}]

608060405267016345785d8a0000600c55670214e8348c4f0000600d55612710600e8190556103e8600f819055620000379162000443565b6010556005601155601280546201000162ffffff19909116179055601480546001600160a01b031916737e4723a50108ac20cbe09cd9f656bd065f5b42c81790553480156200008557600080fd5b506040516200388838038062003888833981016040819052620000a8916200038a565b835184908490620000c19060009060208501906200022d565b508051620000d79060019060208401906200022d565b505050620000f4620000ee6200011460201b60201c565b62000118565b620000ff826200016a565b6200010a81620001d2565b50505050620004bc565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620001b95760405162461bcd60e51b815260206004820181905260248201526000805160206200386883398151915260448201526064015b60405180910390fd5b8051620001ce9060089060208401906200022d565b5050565b6006546001600160a01b031633146200021d5760405162461bcd60e51b81526020600482018190526024820152600080516020620038688339815191526044820152606401620001b0565b8051620001ce90600a9060208401905b8280546200023b9062000469565b90600052602060002090601f0160209004810192826200025f5760008555620002aa565b82601f106200027a57805160ff1916838001178555620002aa565b82800160010185558215620002aa579182015b82811115620002aa5782518255916020019190600101906200028d565b50620002b8929150620002bc565b5090565b5b80821115620002b85760008155600101620002bd565b600082601f830112620002e557600080fd5b81516001600160401b0380821115620003025762000302620004a6565b604051601f8301601f19908116603f011681019082821181831017156200032d576200032d620004a6565b816040528381526020925086838588010111156200034a57600080fd5b600091505b838210156200036e57858201830151818301840152908201906200034f565b83821115620003805760008385830101525b9695505050505050565b60008060008060808587031215620003a157600080fd5b84516001600160401b0380821115620003b957600080fd5b620003c788838901620002d3565b95506020870151915080821115620003de57600080fd5b620003ec88838901620002d3565b945060408701519150808211156200040357600080fd5b6200041188838901620002d3565b935060608701519150808211156200042857600080fd5b506200043787828801620002d3565b91505092959194509250565b6000828210156200046457634e487b7160e01b600052601160045260246000fd5b500390565b600181811c908216806200047e57607f821691505b60208210811415620004a057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61339c80620004cc6000396000f3fe60806040526004361061027d5760003560e01c80636352211e1161014f578063a22cb465116100c1578063bb8fddcc1161007a578063bb8fddcc14610744578063c87b56dd1461074c578063d5abeb011461076c578063da3ef23f14610782578063e985e9c5146107a2578063f2fde38b146107eb57600080fd5b8063a22cb46514610699578063a475b5dd146106b9578063a6048b6c146106ce578063ac9354e7146106e4578063b622b5e214610704578063b88d4fde1461072457600080fd5b8063811d243711610113578063811d2437146105fd57806386f9e3f01461061d5780638da5cb5b1461063d57806394354fd01461065b57806395d89b4114610671578063a0712d681461068657600080fd5b80636352211e146105755780636da1ce361461059557806370a08231146105a8578063715018a6146105c85780637f00c7a6146105dd57600080fd5b80632154dc39116101f3578063438b6300116101ac578063438b6300146104af57806351830227146104dc57806353135ca0146104fb57806355f804b31461051b5780635b7633d01461053b5780635c975abb1461055b57600080fd5b80632154dc391461040e57806323b872dd146104245780632a23d07d14610444578063326d43881461045a5780633ccfd60b1461047a57806342842e0e1461048f57600080fd5b8063081812fc11610245578063081812fc1461033b578063095ea7b31461037357806312065fe01461039357806313faede6146103b657806318160ddd146103cc57806318cae269146103e157600080fd5b806301ffc9a71461028257806302329a29146102b7578063046dc166146102d957806306e3c395146102f957806306fdde0314610319575b600080fd5b34801561028e57600080fd5b506102a261029d366004612e53565b61080b565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102d76102d2366004612e38565b61085d565b005b3480156102e557600080fd5b506102d76102f4366004612c69565b6108a3565b34801561030557600080fd5b506102d7610314366004612dc3565b6108ef565b34801561032557600080fd5b5061032e610936565b6040516102ae91906130ff565b34801561034757600080fd5b5061035b610356366004612ed6565b6109c8565b6040516001600160a01b0390911681526020016102ae565b34801561037f57600080fd5b506102d761038e366004612d99565b610a5d565b34801561039f57600080fd5b506103a8610b6e565b6040519081526020016102ae565b3480156103c257600080fd5b506103a8600d5481565b3480156103d857600080fd5b506103a8610ba0565b3480156103ed57600080fd5b506103a86103fc366004612c69565b60136020526000908152604090205481565b34801561041a57600080fd5b506103a860105481565b34801561043057600080fd5b506102d761043f366004612cb7565b610bb0565b34801561045057600080fd5b506103a8600c5481565b34801561046657600080fd5b506102d7610475366004612e8d565b610be1565b34801561048657600080fd5b506102d7610c22565b34801561049b57600080fd5b506102d76104aa366004612cb7565b610c7b565b3480156104bb57600080fd5b506104cf6104ca366004612c69565b610c96565b6040516102ae91906130bb565b3480156104e857600080fd5b506012546102a290610100900460ff1681565b34801561050757600080fd5b506012546102a29062010000900460ff1681565b34801561052757600080fd5b506102d7610536366004612e8d565b610d77565b34801561054757600080fd5b5060145461035b906001600160a01b031681565b34801561056757600080fd5b506012546102a29060ff1681565b34801561058157600080fd5b5061035b610590366004612ed6565b610db4565b6102d76105a3366004612f12565b610e2b565b3480156105b457600080fd5b506103a86105c3366004612c69565b61105c565b3480156105d457600080fd5b506102d76110e3565b3480156105e957600080fd5b506102d76105f8366004612ed6565b611119565b34801561060957600080fd5b506102d7610618366004612ed6565b611148565b34801561062957600080fd5b506102d7610638366004612e38565b611177565b34801561064957600080fd5b506006546001600160a01b031661035b565b34801561066757600080fd5b506103a860115481565b34801561067d57600080fd5b5061032e6111bd565b6102d7610694366004612ed6565b6111cc565b3480156106a557600080fd5b506102d76106b4366004612d6f565b611384565b3480156106c557600080fd5b506102d761138f565b3480156106da57600080fd5b506103a8600f5481565b3480156106f057600080fd5b506102d76106ff366004612ed6565b6113ca565b34801561071057600080fd5b506102d761071f366004612eef565b6113f9565b34801561073057600080fd5b506102d761073f366004612cf3565b61144f565b6102d7611481565b34801561075857600080fd5b5061032e610767366004612ed6565b611c0e565b34801561077857600080fd5b506103a8600e5481565b34801561078e57600080fd5b506102d761079d366004612e8d565b611d8d565b3480156107ae57600080fd5b506102a26107bd366004612c84565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107f757600080fd5b506102d7610806366004612c69565b611dca565b60006001600160e01b031982166380ac58cd60e01b148061083c57506001600160e01b03198216635b5e139f60e01b145b8061085757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006546001600160a01b031633146108905760405162461bcd60e51b815260040161088790613164565b60405180910390fd5b6012805460ff1916911515919091179055565b6006546001600160a01b031633146108cd5760405162461bcd60e51b815260040161088790613164565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b031633146109195760405162461bcd60e51b815260040161088790613164565b610925600b6000612abd565b610931600b8383612adb565b505050565b60606000805461094590613278565b80601f016020809104026020016040519081016040528092919081815260200182805461097190613278565b80156109be5780601f10610993576101008083540402835291602001916109be565b820191906000526020600020905b8154815290600101906020018083116109a157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a415760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610887565b506000908152600460205260409020546001600160a01b031690565b6000610a6882610db4565b9050806001600160a01b0316836001600160a01b03161415610ad65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610887565b336001600160a01b0382161480610af25750610af281336107bd565b610b645760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610887565b6109318383611e62565b6006546000906001600160a01b03163314610b9b5760405162461bcd60e51b815260040161088790613164565b504790565b6000610bab60075490565b905090565b610bba3382611ed0565b610bd65760405162461bcd60e51b815260040161088790613199565b610931838383611fc7565b6006546001600160a01b03163314610c0b5760405162461bcd60e51b815260040161088790613164565b8051610c1e90600a906020840190612b3e565b5050565b6006546001600160a01b03163314610c4c5760405162461bcd60e51b815260040161088790613164565b60405133904780156108fc02916000818181858888f19350505050158015610c78573d6000803e3d6000fd5b50565b6109318383836040518060200160405280600081525061144f565b60606000610ca38361105c565b905060008167ffffffffffffffff811115610cc057610cc061333a565b604051908082528060200260200182016040528015610ce9578160200160208202803683370190505b509050600160005b8381108015610d025750600e548211155b15610d6d576000610d1283610db4565b9050866001600160a01b0316816001600160a01b03161415610d5a5782848381518110610d4157610d41613324565b602090810291909101015281610d56816132b3565b9250505b82610d64816132b3565b93505050610cf1565b5090949350505050565b6006546001600160a01b03163314610da15760405162461bcd60e51b815260040161088790613164565b8051610c1e906008906020840190612b3e565b6000818152600260205260408120546001600160a01b0316806108575760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610887565b82600081118015610e3e57506011548111155b610e815760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610887565b60105481610e8e60075490565b610e9891906131ea565b1115610ee65760405162461bcd60e51b815260206004820152601f60248201527f5468697320747820776f756c6420657863656564206d617820737570706c79006044820152606401610887565b60125460ff1615610f325760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610887565b60125462010000900460ff16610f835760405162461bcd60e51b815260206004820152601660248201527550726573616c65206973206e6f74204163746976652160501b6044820152606401610887565b83600c54610f919190613216565b3414610fd15760405162461bcd60e51b815260206004820152600f60248201526e42616c616e636520746f6f206c6f7760881b6044820152606401610887565b61101083838080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061216792505050565b61104c5760405162461bcd60e51b815260206004820152600d60248201526c626164207369676e617475726560981b6044820152606401610887565b6110563385612199565b50505050565b60006001600160a01b0382166110c75760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610887565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b0316331461110d5760405162461bcd60e51b815260040161088790613164565b61111760006121d6565b565b6006546001600160a01b031633146111435760405162461bcd60e51b815260040161088790613164565b601155565b6006546001600160a01b031633146111725760405162461bcd60e51b815260040161088790613164565b600d55565b6006546001600160a01b031633146111a15760405162461bcd60e51b815260040161088790613164565b60128054911515620100000262ff000019909216919091179055565b60606001805461094590613278565b806000811180156111df57506011548111155b6112225760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610887565b6010548161122f60075490565b61123991906131ea565b11156112875760405162461bcd60e51b815260206004820152601f60248201527f5468697320747820776f756c6420657863656564206d617820737570706c79006044820152606401610887565b60125460ff16156112d35760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610887565b60125462010000900460ff161561132c5760405162461bcd60e51b815260206004820152601760248201527f50726573616c65206973207374696c6c206163746976650000000000000000006044820152606401610887565b81600d5461133a9190613216565b341461137a5760405162461bcd60e51b815260206004820152600f60248201526e42616c616e636520746f6f206c6f7760881b6044820152606401610887565b610c1e3383612199565b610c1e338383612228565b6006546001600160a01b031633146113b95760405162461bcd60e51b815260040161088790613164565b6012805461ff001916610100179055565b6006546001600160a01b031633146113f45760405162461bcd60e51b815260040161088790613164565b600c55565b6006546001600160a01b031633146114235760405162461bcd60e51b815260040161088790613164565b600e548261143060075490565b61143a91906131ea565b111561144557600080fd5b610c1e8183612199565b6114593383611ed0565b6114755760405162461bcd60e51b815260040161088790613199565b611056848484846122f7565b6006546001600160a01b031633146114ab5760405162461bcd60e51b815260040161088790613164565b60004790506000600b6000815481106114c6576114c6613324565b6000918252602090912001546001600160a01b03166127106114ea84611838613216565b6114f49190613202565b604051600081818185875af1925050503d8060008114611530576040519150601f19603f3d011682016040523d82523d6000602084013e611535565b606091505b505090508061154357600080fd5b6000600b60018154811061155957611559613324565b6000918252602090912001546001600160a01b031661271061157d856104b0613216565b6115879190613202565b604051600081818185875af1925050503d80600081146115c3576040519150601f19603f3d011682016040523d82523d6000602084013e6115c8565b606091505b50509050806115d657600080fd5b6000600b6002815481106115ec576115ec613324565b6000918252602090912001546001600160a01b0316612710611610866101f4613216565b61161a9190613202565b604051600081818185875af1925050503d8060008114611656576040519150601f19603f3d011682016040523d82523d6000602084013e61165b565b606091505b505090508061166957600080fd5b6000600b60038154811061167f5761167f613324565b6000918252602090912001546001600160a01b03166127106116a38761012c613216565b6116ad9190613202565b604051600081818185875af1925050503d80600081146116e9576040519150601f19603f3d011682016040523d82523d6000602084013e6116ee565b606091505b50509050806116fc57600080fd5b6000600b60048154811061171257611712613324565b6000918252602090912001546001600160a01b03166127106117368861012c613216565b6117409190613202565b604051600081818185875af1925050503d806000811461177c576040519150601f19603f3d011682016040523d82523d6000602084013e611781565b606091505b505090508061178f57600080fd5b6000600b6005815481106117a5576117a5613324565b6000918252602090912001546001600160a01b03166127106117c98961012c613216565b6117d39190613202565b604051600081818185875af1925050503d806000811461180f576040519150601f19603f3d011682016040523d82523d6000602084013e611814565b606091505b505090508061182257600080fd5b6000600b60068154811061183857611838613324565b6000918252602090912001546001600160a01b031661271061185b8a60fa613216565b6118659190613202565b604051600081818185875af1925050503d80600081146118a1576040519150601f19603f3d011682016040523d82523d6000602084013e6118a6565b606091505b50509050806118b457600080fd5b6000600b6007815481106118ca576118ca613324565b6000918252602090912001546001600160a01b03166127106118ed8b60c8613216565b6118f79190613202565b604051600081818185875af1925050503d8060008114611933576040519150601f19603f3d011682016040523d82523d6000602084013e611938565b606091505b505090508061194657600080fd5b6000600b60088154811061195c5761195c613324565b6000918252602090912001546001600160a01b031661271061197f8c6064613216565b6119899190613202565b604051600081818185875af1925050503d80600081146119c5576040519150601f19603f3d011682016040523d82523d6000602084013e6119ca565b606091505b50509050806119d857600080fd5b6000600b6009815481106119ee576119ee613324565b6000918252602090912001546001600160a01b0316612710611a118d6064613216565b611a1b9190613202565b604051600081818185875af1925050503d8060008114611a57576040519150601f19603f3d011682016040523d82523d6000602084013e611a5c565b606091505b5050905080611a6a57600080fd5b6000600b600a81548110611a8057611a80613324565b6000918252602090912001546001600160a01b0316612710611aa38e6064613216565b611aad9190613202565b604051600081818185875af1925050503d8060008114611ae9576040519150601f19603f3d011682016040523d82523d6000602084013e611aee565b606091505b5050905080611afc57600080fd5b6000600b8081548110611b1157611b11613324565b6000918252602090912001546001600160a01b0316612710611b348f6019613216565b611b3e9190613202565b604051600081818185875af1925050503d8060008114611b7a576040519150601f19603f3d011682016040523d82523d6000602084013e611b7f565b606091505b5050905080611b8d57600080fd5b6000611ba16006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114611beb576040519150601f19603f3d011682016040523d82523d6000602084013e611bf0565b606091505b5050905080611bfe57600080fd5b5050505050505050505050505050565b6000818152600260205260409020546060906001600160a01b0316611c8d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610887565b601254610100900460ff16611d2e57600a8054611ca990613278565b80601f0160208091040260200160405190810160405280929190818152602001828054611cd590613278565b8015611d225780601f10611cf757610100808354040283529160200191611d22565b820191906000526020600020905b815481529060010190602001808311611d0557829003601f168201915b50505050509050919050565b6000611d3861232a565b90506000815111611d585760405180602001604052806000815250611d86565b80611d6284612339565b6009604051602001611d7693929190612fba565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314611db75760405162461bcd60e51b815260040161088790613164565b8051610c1e906009906020840190612b3e565b6006546001600160a01b03163314611df45760405162461bcd60e51b815260040161088790613164565b6001600160a01b038116611e595760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610887565b610c78816121d6565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611e9782610db4565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611f495760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610887565b6000611f5483610db4565b9050806001600160a01b0316846001600160a01b03161480611f8f5750836001600160a01b0316611f84846109c8565b6001600160a01b0316145b80611fbf57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611fda82610db4565b6001600160a01b0316146120425760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610887565b6001600160a01b0382166120a45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610887565b6120af600082611e62565b6001600160a01b03831660009081526003602052604081208054600192906120d8908490613235565b90915550506001600160a01b03821660009081526003602052604081208054600192906121069084906131ea565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6014546000906001600160a01b03166121898361218333612437565b906124b6565b6001600160a01b03161492915050565b60005b81811015610931576121b2600780546001019055565b6121c4836121bf60075490565b6124da565b806121ce816132b3565b91505061219c565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316141561228a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610887565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612302848484611fc7565b61230e848484846124f4565b6110565760405162461bcd60e51b815260040161088790613112565b60606008805461094590613278565b60608161235d5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156123875780612371816132b3565b91506123809050600a83613202565b9150612361565b60008167ffffffffffffffff8111156123a2576123a261333a565b6040519080825280601f01601f1916602001820160405280156123cc576020820181803683370190505b5090505b8415611fbf576123e1600183613235565b91506123ee600a866132ce565b6123f99060306131ea565b60f81b81838151811061240e5761240e613324565b60200101906001600160f81b031916908160001a905350612430600a86613202565b94506123d0565b60408051306020808301919091526001600160a01b038416828401528251808303840181526060830184528051908201207f19457468657265756d205369676e6564204d6573736167653a0a3332000000006080840152609c808401919091528351808403909101815260bc9092019092528051910120600090610857565b60008060006124c58585612601565b915091506124d281612671565b509392505050565b610c1e82826040518060200160405280600081525061282c565b60006001600160a01b0384163b156125f657604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061253890339089908890889060040161307e565b602060405180830381600087803b15801561255257600080fd5b505af1925050508015612582575060408051601f3d908101601f1916820190925261257f91810190612e70565b60015b6125dc573d8080156125b0576040519150601f19603f3d011682016040523d82523d6000602084013e6125b5565b606091505b5080516125d45760405162461bcd60e51b815260040161088790613112565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611fbf565b506001949350505050565b6000808251604114156126385760208301516040840151606085015160001a61262c8782858561285f565b9450945050505061266a565b825160401415612662576020830151604084015161265786838361294c565b93509350505061266a565b506000905060025b9250929050565b60008160048111156126855761268561330e565b141561268e5750565b60018160048111156126a2576126a261330e565b14156126f05760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610887565b60028160048111156127045761270461330e565b14156127525760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610887565b60038160048111156127665761276661330e565b14156127bf5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610887565b60048160048111156127d3576127d361330e565b1415610c785760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610887565b612836838361297b565b61284360008484846124f4565b6109315760405162461bcd60e51b815260040161088790613112565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156128965750600090506003612943565b8460ff16601b141580156128ae57508460ff16601c14155b156128bf5750600090506004612943565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612913573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661293c57600060019250925050612943565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b0161296d8782888561285f565b935093505050935093915050565b6001600160a01b0382166129d15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610887565b6000818152600260205260409020546001600160a01b031615612a365760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610887565b6001600160a01b0382166000908152600360205260408120805460019290612a5f9084906131ea565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b5080546000825590600052602060002090810190610c789190612bb2565b828054828255906000526020600020908101928215612b2e579160200282015b82811115612b2e5781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190612afb565b50612b3a929150612bb2565b5090565b828054612b4a90613278565b90600052602060002090601f016020900481019282612b6c5760008555612b2e565b82601f10612b8557805160ff1916838001178555612b2e565b82800160010185558215612b2e579182015b82811115612b2e578251825591602001919060010190612b97565b5b80821115612b3a5760008155600101612bb3565b600067ffffffffffffffff80841115612be257612be261333a565b604051601f8501601f19908116603f01168101908282118183101715612c0a57612c0a61333a565b81604052809350858152868686011115612c2357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612c5457600080fd5b919050565b80358015158114612c5457600080fd5b600060208284031215612c7b57600080fd5b611d8682612c3d565b60008060408385031215612c9757600080fd5b612ca083612c3d565b9150612cae60208401612c3d565b90509250929050565b600080600060608486031215612ccc57600080fd5b612cd584612c3d565b9250612ce360208501612c3d565b9150604084013590509250925092565b60008060008060808587031215612d0957600080fd5b612d1285612c3d565b9350612d2060208601612c3d565b925060408501359150606085013567ffffffffffffffff811115612d4357600080fd5b8501601f81018713612d5457600080fd5b612d6387823560208401612bc7565b91505092959194509250565b60008060408385031215612d8257600080fd5b612d8b83612c3d565b9150612cae60208401612c59565b60008060408385031215612dac57600080fd5b612db583612c3d565b946020939093013593505050565b60008060208385031215612dd657600080fd5b823567ffffffffffffffff80821115612dee57600080fd5b818501915085601f830112612e0257600080fd5b813581811115612e1157600080fd5b8660208260051b8501011115612e2657600080fd5b60209290920196919550909350505050565b600060208284031215612e4a57600080fd5b611d8682612c59565b600060208284031215612e6557600080fd5b8135611d8681613350565b600060208284031215612e8257600080fd5b8151611d8681613350565b600060208284031215612e9f57600080fd5b813567ffffffffffffffff811115612eb657600080fd5b8201601f81018413612ec757600080fd5b611fbf84823560208401612bc7565b600060208284031215612ee857600080fd5b5035919050565b60008060408385031215612f0257600080fd5b82359150612cae60208401612c3d565b600080600060408486031215612f2757600080fd5b83359250602084013567ffffffffffffffff80821115612f4657600080fd5b818601915086601f830112612f5a57600080fd5b813581811115612f6957600080fd5b876020828501011115612f7b57600080fd5b6020830194508093505050509250925092565b60008151808452612fa681602086016020860161324c565b601f01601f19169290920160200192915050565b600084516020612fcd8285838a0161324c565b855191840191612fe08184848a0161324c565b8554920191600090600181811c9080831680612ffd57607f831692505b85831081141561301b57634e487b7160e01b85526022600452602485fd5b80801561302f57600181146130405761306d565b60ff1985168852838801955061306d565b60008b81526020902060005b858110156130655781548a82015290840190880161304c565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906130b190830184612f8e565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156130f3578351835292840192918401916001016130d7565b50909695505050505050565b602081526000611d866020830184612f8e565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156131fd576131fd6132e2565b500190565b600082613211576132116132f8565b500490565b6000816000190483118215151615613230576132306132e2565b500290565b600082821015613247576132476132e2565b500390565b60005b8381101561326757818101518382015260200161324f565b838111156110565750506000910152565b600181811c9082168061328c57607f821691505b602082108114156132ad57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156132c7576132c76132e2565b5060010190565b6000826132dd576132dd6132f8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c7857600080fdfea26469706673582212203be0f322b1c0033d88d50935f768b16e303380d944ff960dbf2994163ea6976c64736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000a43727970746f446f637300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000543444f4353000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001274686973697361706c616365686f6c64657200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045697066733a2f2f516d555265716d55315554426244424c547454365a503754554c32684746706a7835556d71354737326350575a322f756e72657665616c65642e6a736f6e000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061027d5760003560e01c80636352211e1161014f578063a22cb465116100c1578063bb8fddcc1161007a578063bb8fddcc14610744578063c87b56dd1461074c578063d5abeb011461076c578063da3ef23f14610782578063e985e9c5146107a2578063f2fde38b146107eb57600080fd5b8063a22cb46514610699578063a475b5dd146106b9578063a6048b6c146106ce578063ac9354e7146106e4578063b622b5e214610704578063b88d4fde1461072457600080fd5b8063811d243711610113578063811d2437146105fd57806386f9e3f01461061d5780638da5cb5b1461063d57806394354fd01461065b57806395d89b4114610671578063a0712d681461068657600080fd5b80636352211e146105755780636da1ce361461059557806370a08231146105a8578063715018a6146105c85780637f00c7a6146105dd57600080fd5b80632154dc39116101f3578063438b6300116101ac578063438b6300146104af57806351830227146104dc57806353135ca0146104fb57806355f804b31461051b5780635b7633d01461053b5780635c975abb1461055b57600080fd5b80632154dc391461040e57806323b872dd146104245780632a23d07d14610444578063326d43881461045a5780633ccfd60b1461047a57806342842e0e1461048f57600080fd5b8063081812fc11610245578063081812fc1461033b578063095ea7b31461037357806312065fe01461039357806313faede6146103b657806318160ddd146103cc57806318cae269146103e157600080fd5b806301ffc9a71461028257806302329a29146102b7578063046dc166146102d957806306e3c395146102f957806306fdde0314610319575b600080fd5b34801561028e57600080fd5b506102a261029d366004612e53565b61080b565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102d76102d2366004612e38565b61085d565b005b3480156102e557600080fd5b506102d76102f4366004612c69565b6108a3565b34801561030557600080fd5b506102d7610314366004612dc3565b6108ef565b34801561032557600080fd5b5061032e610936565b6040516102ae91906130ff565b34801561034757600080fd5b5061035b610356366004612ed6565b6109c8565b6040516001600160a01b0390911681526020016102ae565b34801561037f57600080fd5b506102d761038e366004612d99565b610a5d565b34801561039f57600080fd5b506103a8610b6e565b6040519081526020016102ae565b3480156103c257600080fd5b506103a8600d5481565b3480156103d857600080fd5b506103a8610ba0565b3480156103ed57600080fd5b506103a86103fc366004612c69565b60136020526000908152604090205481565b34801561041a57600080fd5b506103a860105481565b34801561043057600080fd5b506102d761043f366004612cb7565b610bb0565b34801561045057600080fd5b506103a8600c5481565b34801561046657600080fd5b506102d7610475366004612e8d565b610be1565b34801561048657600080fd5b506102d7610c22565b34801561049b57600080fd5b506102d76104aa366004612cb7565b610c7b565b3480156104bb57600080fd5b506104cf6104ca366004612c69565b610c96565b6040516102ae91906130bb565b3480156104e857600080fd5b506012546102a290610100900460ff1681565b34801561050757600080fd5b506012546102a29062010000900460ff1681565b34801561052757600080fd5b506102d7610536366004612e8d565b610d77565b34801561054757600080fd5b5060145461035b906001600160a01b031681565b34801561056757600080fd5b506012546102a29060ff1681565b34801561058157600080fd5b5061035b610590366004612ed6565b610db4565b6102d76105a3366004612f12565b610e2b565b3480156105b457600080fd5b506103a86105c3366004612c69565b61105c565b3480156105d457600080fd5b506102d76110e3565b3480156105e957600080fd5b506102d76105f8366004612ed6565b611119565b34801561060957600080fd5b506102d7610618366004612ed6565b611148565b34801561062957600080fd5b506102d7610638366004612e38565b611177565b34801561064957600080fd5b506006546001600160a01b031661035b565b34801561066757600080fd5b506103a860115481565b34801561067d57600080fd5b5061032e6111bd565b6102d7610694366004612ed6565b6111cc565b3480156106a557600080fd5b506102d76106b4366004612d6f565b611384565b3480156106c557600080fd5b506102d761138f565b3480156106da57600080fd5b506103a8600f5481565b3480156106f057600080fd5b506102d76106ff366004612ed6565b6113ca565b34801561071057600080fd5b506102d761071f366004612eef565b6113f9565b34801561073057600080fd5b506102d761073f366004612cf3565b61144f565b6102d7611481565b34801561075857600080fd5b5061032e610767366004612ed6565b611c0e565b34801561077857600080fd5b506103a8600e5481565b34801561078e57600080fd5b506102d761079d366004612e8d565b611d8d565b3480156107ae57600080fd5b506102a26107bd366004612c84565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107f757600080fd5b506102d7610806366004612c69565b611dca565b60006001600160e01b031982166380ac58cd60e01b148061083c57506001600160e01b03198216635b5e139f60e01b145b8061085757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006546001600160a01b031633146108905760405162461bcd60e51b815260040161088790613164565b60405180910390fd5b6012805460ff1916911515919091179055565b6006546001600160a01b031633146108cd5760405162461bcd60e51b815260040161088790613164565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b031633146109195760405162461bcd60e51b815260040161088790613164565b610925600b6000612abd565b610931600b8383612adb565b505050565b60606000805461094590613278565b80601f016020809104026020016040519081016040528092919081815260200182805461097190613278565b80156109be5780601f10610993576101008083540402835291602001916109be565b820191906000526020600020905b8154815290600101906020018083116109a157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a415760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610887565b506000908152600460205260409020546001600160a01b031690565b6000610a6882610db4565b9050806001600160a01b0316836001600160a01b03161415610ad65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610887565b336001600160a01b0382161480610af25750610af281336107bd565b610b645760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610887565b6109318383611e62565b6006546000906001600160a01b03163314610b9b5760405162461bcd60e51b815260040161088790613164565b504790565b6000610bab60075490565b905090565b610bba3382611ed0565b610bd65760405162461bcd60e51b815260040161088790613199565b610931838383611fc7565b6006546001600160a01b03163314610c0b5760405162461bcd60e51b815260040161088790613164565b8051610c1e90600a906020840190612b3e565b5050565b6006546001600160a01b03163314610c4c5760405162461bcd60e51b815260040161088790613164565b60405133904780156108fc02916000818181858888f19350505050158015610c78573d6000803e3d6000fd5b50565b6109318383836040518060200160405280600081525061144f565b60606000610ca38361105c565b905060008167ffffffffffffffff811115610cc057610cc061333a565b604051908082528060200260200182016040528015610ce9578160200160208202803683370190505b509050600160005b8381108015610d025750600e548211155b15610d6d576000610d1283610db4565b9050866001600160a01b0316816001600160a01b03161415610d5a5782848381518110610d4157610d41613324565b602090810291909101015281610d56816132b3565b9250505b82610d64816132b3565b93505050610cf1565b5090949350505050565b6006546001600160a01b03163314610da15760405162461bcd60e51b815260040161088790613164565b8051610c1e906008906020840190612b3e565b6000818152600260205260408120546001600160a01b0316806108575760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610887565b82600081118015610e3e57506011548111155b610e815760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610887565b60105481610e8e60075490565b610e9891906131ea565b1115610ee65760405162461bcd60e51b815260206004820152601f60248201527f5468697320747820776f756c6420657863656564206d617820737570706c79006044820152606401610887565b60125460ff1615610f325760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610887565b60125462010000900460ff16610f835760405162461bcd60e51b815260206004820152601660248201527550726573616c65206973206e6f74204163746976652160501b6044820152606401610887565b83600c54610f919190613216565b3414610fd15760405162461bcd60e51b815260206004820152600f60248201526e42616c616e636520746f6f206c6f7760881b6044820152606401610887565b61101083838080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061216792505050565b61104c5760405162461bcd60e51b815260206004820152600d60248201526c626164207369676e617475726560981b6044820152606401610887565b6110563385612199565b50505050565b60006001600160a01b0382166110c75760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610887565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b0316331461110d5760405162461bcd60e51b815260040161088790613164565b61111760006121d6565b565b6006546001600160a01b031633146111435760405162461bcd60e51b815260040161088790613164565b601155565b6006546001600160a01b031633146111725760405162461bcd60e51b815260040161088790613164565b600d55565b6006546001600160a01b031633146111a15760405162461bcd60e51b815260040161088790613164565b60128054911515620100000262ff000019909216919091179055565b60606001805461094590613278565b806000811180156111df57506011548111155b6112225760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b6044820152606401610887565b6010548161122f60075490565b61123991906131ea565b11156112875760405162461bcd60e51b815260206004820152601f60248201527f5468697320747820776f756c6420657863656564206d617820737570706c79006044820152606401610887565b60125460ff16156112d35760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b6044820152606401610887565b60125462010000900460ff161561132c5760405162461bcd60e51b815260206004820152601760248201527f50726573616c65206973207374696c6c206163746976650000000000000000006044820152606401610887565b81600d5461133a9190613216565b341461137a5760405162461bcd60e51b815260206004820152600f60248201526e42616c616e636520746f6f206c6f7760881b6044820152606401610887565b610c1e3383612199565b610c1e338383612228565b6006546001600160a01b031633146113b95760405162461bcd60e51b815260040161088790613164565b6012805461ff001916610100179055565b6006546001600160a01b031633146113f45760405162461bcd60e51b815260040161088790613164565b600c55565b6006546001600160a01b031633146114235760405162461bcd60e51b815260040161088790613164565b600e548261143060075490565b61143a91906131ea565b111561144557600080fd5b610c1e8183612199565b6114593383611ed0565b6114755760405162461bcd60e51b815260040161088790613199565b611056848484846122f7565b6006546001600160a01b031633146114ab5760405162461bcd60e51b815260040161088790613164565b60004790506000600b6000815481106114c6576114c6613324565b6000918252602090912001546001600160a01b03166127106114ea84611838613216565b6114f49190613202565b604051600081818185875af1925050503d8060008114611530576040519150601f19603f3d011682016040523d82523d6000602084013e611535565b606091505b505090508061154357600080fd5b6000600b60018154811061155957611559613324565b6000918252602090912001546001600160a01b031661271061157d856104b0613216565b6115879190613202565b604051600081818185875af1925050503d80600081146115c3576040519150601f19603f3d011682016040523d82523d6000602084013e6115c8565b606091505b50509050806115d657600080fd5b6000600b6002815481106115ec576115ec613324565b6000918252602090912001546001600160a01b0316612710611610866101f4613216565b61161a9190613202565b604051600081818185875af1925050503d8060008114611656576040519150601f19603f3d011682016040523d82523d6000602084013e61165b565b606091505b505090508061166957600080fd5b6000600b60038154811061167f5761167f613324565b6000918252602090912001546001600160a01b03166127106116a38761012c613216565b6116ad9190613202565b604051600081818185875af1925050503d80600081146116e9576040519150601f19603f3d011682016040523d82523d6000602084013e6116ee565b606091505b50509050806116fc57600080fd5b6000600b60048154811061171257611712613324565b6000918252602090912001546001600160a01b03166127106117368861012c613216565b6117409190613202565b604051600081818185875af1925050503d806000811461177c576040519150601f19603f3d011682016040523d82523d6000602084013e611781565b606091505b505090508061178f57600080fd5b6000600b6005815481106117a5576117a5613324565b6000918252602090912001546001600160a01b03166127106117c98961012c613216565b6117d39190613202565b604051600081818185875af1925050503d806000811461180f576040519150601f19603f3d011682016040523d82523d6000602084013e611814565b606091505b505090508061182257600080fd5b6000600b60068154811061183857611838613324565b6000918252602090912001546001600160a01b031661271061185b8a60fa613216565b6118659190613202565b604051600081818185875af1925050503d80600081146118a1576040519150601f19603f3d011682016040523d82523d6000602084013e6118a6565b606091505b50509050806118b457600080fd5b6000600b6007815481106118ca576118ca613324565b6000918252602090912001546001600160a01b03166127106118ed8b60c8613216565b6118f79190613202565b604051600081818185875af1925050503d8060008114611933576040519150601f19603f3d011682016040523d82523d6000602084013e611938565b606091505b505090508061194657600080fd5b6000600b60088154811061195c5761195c613324565b6000918252602090912001546001600160a01b031661271061197f8c6064613216565b6119899190613202565b604051600081818185875af1925050503d80600081146119c5576040519150601f19603f3d011682016040523d82523d6000602084013e6119ca565b606091505b50509050806119d857600080fd5b6000600b6009815481106119ee576119ee613324565b6000918252602090912001546001600160a01b0316612710611a118d6064613216565b611a1b9190613202565b604051600081818185875af1925050503d8060008114611a57576040519150601f19603f3d011682016040523d82523d6000602084013e611a5c565b606091505b5050905080611a6a57600080fd5b6000600b600a81548110611a8057611a80613324565b6000918252602090912001546001600160a01b0316612710611aa38e6064613216565b611aad9190613202565b604051600081818185875af1925050503d8060008114611ae9576040519150601f19603f3d011682016040523d82523d6000602084013e611aee565b606091505b5050905080611afc57600080fd5b6000600b8081548110611b1157611b11613324565b6000918252602090912001546001600160a01b0316612710611b348f6019613216565b611b3e9190613202565b604051600081818185875af1925050503d8060008114611b7a576040519150601f19603f3d011682016040523d82523d6000602084013e611b7f565b606091505b5050905080611b8d57600080fd5b6000611ba16006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114611beb576040519150601f19603f3d011682016040523d82523d6000602084013e611bf0565b606091505b5050905080611bfe57600080fd5b5050505050505050505050505050565b6000818152600260205260409020546060906001600160a01b0316611c8d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610887565b601254610100900460ff16611d2e57600a8054611ca990613278565b80601f0160208091040260200160405190810160405280929190818152602001828054611cd590613278565b8015611d225780601f10611cf757610100808354040283529160200191611d22565b820191906000526020600020905b815481529060010190602001808311611d0557829003601f168201915b50505050509050919050565b6000611d3861232a565b90506000815111611d585760405180602001604052806000815250611d86565b80611d6284612339565b6009604051602001611d7693929190612fba565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314611db75760405162461bcd60e51b815260040161088790613164565b8051610c1e906009906020840190612b3e565b6006546001600160a01b03163314611df45760405162461bcd60e51b815260040161088790613164565b6001600160a01b038116611e595760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610887565b610c78816121d6565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611e9782610db4565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611f495760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610887565b6000611f5483610db4565b9050806001600160a01b0316846001600160a01b03161480611f8f5750836001600160a01b0316611f84846109c8565b6001600160a01b0316145b80611fbf57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611fda82610db4565b6001600160a01b0316146120425760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610887565b6001600160a01b0382166120a45760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610887565b6120af600082611e62565b6001600160a01b03831660009081526003602052604081208054600192906120d8908490613235565b90915550506001600160a01b03821660009081526003602052604081208054600192906121069084906131ea565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6014546000906001600160a01b03166121898361218333612437565b906124b6565b6001600160a01b03161492915050565b60005b81811015610931576121b2600780546001019055565b6121c4836121bf60075490565b6124da565b806121ce816132b3565b91505061219c565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316141561228a5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610887565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612302848484611fc7565b61230e848484846124f4565b6110565760405162461bcd60e51b815260040161088790613112565b60606008805461094590613278565b60608161235d5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156123875780612371816132b3565b91506123809050600a83613202565b9150612361565b60008167ffffffffffffffff8111156123a2576123a261333a565b6040519080825280601f01601f1916602001820160405280156123cc576020820181803683370190505b5090505b8415611fbf576123e1600183613235565b91506123ee600a866132ce565b6123f99060306131ea565b60f81b81838151811061240e5761240e613324565b60200101906001600160f81b031916908160001a905350612430600a86613202565b94506123d0565b60408051306020808301919091526001600160a01b038416828401528251808303840181526060830184528051908201207f19457468657265756d205369676e6564204d6573736167653a0a3332000000006080840152609c808401919091528351808403909101815260bc9092019092528051910120600090610857565b60008060006124c58585612601565b915091506124d281612671565b509392505050565b610c1e82826040518060200160405280600081525061282c565b60006001600160a01b0384163b156125f657604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061253890339089908890889060040161307e565b602060405180830381600087803b15801561255257600080fd5b505af1925050508015612582575060408051601f3d908101601f1916820190925261257f91810190612e70565b60015b6125dc573d8080156125b0576040519150601f19603f3d011682016040523d82523d6000602084013e6125b5565b606091505b5080516125d45760405162461bcd60e51b815260040161088790613112565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611fbf565b506001949350505050565b6000808251604114156126385760208301516040840151606085015160001a61262c8782858561285f565b9450945050505061266a565b825160401415612662576020830151604084015161265786838361294c565b93509350505061266a565b506000905060025b9250929050565b60008160048111156126855761268561330e565b141561268e5750565b60018160048111156126a2576126a261330e565b14156126f05760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610887565b60028160048111156127045761270461330e565b14156127525760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610887565b60038160048111156127665761276661330e565b14156127bf5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610887565b60048160048111156127d3576127d361330e565b1415610c785760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610887565b612836838361297b565b61284360008484846124f4565b6109315760405162461bcd60e51b815260040161088790613112565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156128965750600090506003612943565b8460ff16601b141580156128ae57508460ff16601c14155b156128bf5750600090506004612943565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612913573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661293c57600060019250925050612943565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b0161296d8782888561285f565b935093505050935093915050565b6001600160a01b0382166129d15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610887565b6000818152600260205260409020546001600160a01b031615612a365760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610887565b6001600160a01b0382166000908152600360205260408120805460019290612a5f9084906131ea565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b5080546000825590600052602060002090810190610c789190612bb2565b828054828255906000526020600020908101928215612b2e579160200282015b82811115612b2e5781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190612afb565b50612b3a929150612bb2565b5090565b828054612b4a90613278565b90600052602060002090601f016020900481019282612b6c5760008555612b2e565b82601f10612b8557805160ff1916838001178555612b2e565b82800160010185558215612b2e579182015b82811115612b2e578251825591602001919060010190612b97565b5b80821115612b3a5760008155600101612bb3565b600067ffffffffffffffff80841115612be257612be261333a565b604051601f8501601f19908116603f01168101908282118183101715612c0a57612c0a61333a565b81604052809350858152868686011115612c2357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612c5457600080fd5b919050565b80358015158114612c5457600080fd5b600060208284031215612c7b57600080fd5b611d8682612c3d565b60008060408385031215612c9757600080fd5b612ca083612c3d565b9150612cae60208401612c3d565b90509250929050565b600080600060608486031215612ccc57600080fd5b612cd584612c3d565b9250612ce360208501612c3d565b9150604084013590509250925092565b60008060008060808587031215612d0957600080fd5b612d1285612c3d565b9350612d2060208601612c3d565b925060408501359150606085013567ffffffffffffffff811115612d4357600080fd5b8501601f81018713612d5457600080fd5b612d6387823560208401612bc7565b91505092959194509250565b60008060408385031215612d8257600080fd5b612d8b83612c3d565b9150612cae60208401612c59565b60008060408385031215612dac57600080fd5b612db583612c3d565b946020939093013593505050565b60008060208385031215612dd657600080fd5b823567ffffffffffffffff80821115612dee57600080fd5b818501915085601f830112612e0257600080fd5b813581811115612e1157600080fd5b8660208260051b8501011115612e2657600080fd5b60209290920196919550909350505050565b600060208284031215612e4a57600080fd5b611d8682612c59565b600060208284031215612e6557600080fd5b8135611d8681613350565b600060208284031215612e8257600080fd5b8151611d8681613350565b600060208284031215612e9f57600080fd5b813567ffffffffffffffff811115612eb657600080fd5b8201601f81018413612ec757600080fd5b611fbf84823560208401612bc7565b600060208284031215612ee857600080fd5b5035919050565b60008060408385031215612f0257600080fd5b82359150612cae60208401612c3d565b600080600060408486031215612f2757600080fd5b83359250602084013567ffffffffffffffff80821115612f4657600080fd5b818601915086601f830112612f5a57600080fd5b813581811115612f6957600080fd5b876020828501011115612f7b57600080fd5b6020830194508093505050509250925092565b60008151808452612fa681602086016020860161324c565b601f01601f19169290920160200192915050565b600084516020612fcd8285838a0161324c565b855191840191612fe08184848a0161324c565b8554920191600090600181811c9080831680612ffd57607f831692505b85831081141561301b57634e487b7160e01b85526022600452602485fd5b80801561302f57600181146130405761306d565b60ff1985168852838801955061306d565b60008b81526020902060005b858110156130655781548a82015290840190880161304c565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906130b190830184612f8e565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156130f3578351835292840192918401916001016130d7565b50909695505050505050565b602081526000611d866020830184612f8e565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156131fd576131fd6132e2565b500190565b600082613211576132116132f8565b500490565b6000816000190483118215151615613230576132306132e2565b500290565b600082821015613247576132476132e2565b500390565b60005b8381101561326757818101518382015260200161324f565b838111156110565750506000910152565b600181811c9082168061328c57607f821691505b602082108114156132ad57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156132c7576132c76132e2565b5060010190565b6000826132dd576132dd6132f8565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c7857600080fdfea26469706673582212203be0f322b1c0033d88d50935f768b16e303380d944ff960dbf2994163ea6976c64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000000a43727970746f446f637300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000543444f4353000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001274686973697361706c616365686f6c64657200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045697066733a2f2f516d555265716d55315554426244424c547454365a503754554c32684746706a7835556d71354737326350575a322f756e72657665616c65642e6a736f6e000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): CryptoDocs
Arg [1] : _symbol (string): CDOCS
Arg [2] : _initBaseURI (string): thisisaplaceholder
Arg [3] : _initRevealedUri (string): ipfs://QmUReqmU1UTBbDBLTtT6ZP7TUL2hGFpjx5Umq5G72cPWZ2/unrevealed.json

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [5] : 43727970746f446f637300000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 43444f4353000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [9] : 74686973697361706c616365686f6c6465720000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000045
Arg [11] : 697066733a2f2f516d555265716d55315554426244424c547454365a50375455
Arg [12] : 4c32684746706a7835556d71354737326350575a322f756e72657665616c6564
Arg [13] : 2e6a736f6e000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

47323:7140:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34815:305;;;;;;;;;;-1:-1:-1;34815:305:0;;;;;:::i;:::-;;:::i;:::-;;;10044:14:1;;10037:22;10019:41;;10007:2;9992:18;34815:305:0;;;;;;;;52165:73;;;;;;;;;;-1:-1:-1;52165:73:0;;;;;:::i;:::-;;:::i;:::-;;51374:100;;;;;;;;;;-1:-1:-1;51374:100:0;;;;;:::i;:::-;;:::i;52337:131::-;;;;;;;;;;-1:-1:-1;52337:131:0;;;;;:::i;:::-;;:::i;35760:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;37319:221::-;;;;;;;;;;-1:-1:-1;37319:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8396:32:1;;;8378:51;;8366:2;8351:18;37319:221:0;8232:203:1;36842:411:0;;;;;;;;;;-1:-1:-1;36842:411:0;;;;;:::i;:::-;;:::i;52474:109::-;;;;;;;;;;;;;:::i;:::-;;;21194:25:1;;;21182:2;21167:18;52474:109:0;21048:177:1;47675:32:0;;;;;;;;;;;;;;;;48731:89;;;;;;;;;;;;;:::i;47979:55::-;;;;;;;;;;-1:-1:-1;47979:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;47784:47;;;;;;;;;;;;;;;;38069:339;;;;;;;;;;-1:-1:-1;38069:339:0;;;;;:::i;:::-;;:::i;47632:38::-;;;;;;;;;;;;;;;;52051:108;;;;;;;;;;-1:-1:-1;52051:108:0;;;;;:::i;:::-;;:::i;52589:107::-;;;;;;;;;;;;;:::i;38479:185::-;;;;;;;;;;-1:-1:-1;38479:185:0;;;;;:::i;:::-;;:::i;50131:635::-;;;;;;;;;;-1:-1:-1;50131:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;47908:28::-;;;;;;;;;;-1:-1:-1;47908:28:0;;;;;;;;;;;47941:32;;;;;;;;;;-1:-1:-1;47941:32:0;;;;;;;;;;;51817:98;;;;;;;;;;-1:-1:-1;51817:98:0;;;;;:::i;:::-;;:::i;48039:73::-;;;;;;;;;;-1:-1:-1;48039:73:0;;;;-1:-1:-1;;;;;48039:73:0;;;47878:25;;;;;;;;;;-1:-1:-1;47878:25:0;;;;;;;;35454:239;;;;;;;;;;-1:-1:-1;35454:239:0;;;;;:::i;:::-;;:::i;48860:406::-;;;;;;:::i;:::-;;:::i;35184:208::-;;;;;;;;;;-1:-1:-1;35184:208:0;;;;;:::i;:::-;;:::i;15803:103::-;;;;;;;;;;;;;:::i;51680:131::-;;;;;;;;;;-1:-1:-1;51680:131:0;;;;;:::i;:::-;;:::i;51588:86::-;;;;;;;;;;-1:-1:-1;51588:86:0;;;;;:::i;:::-;;:::i;52244:85::-;;;;;;;;;;-1:-1:-1;52244:85:0;;;;;:::i;:::-;;:::i;15152:87::-;;;;;;;;;;-1:-1:-1;15225:6:0;;-1:-1:-1;;;;;15225:6:0;15152:87;;47836:37;;;;;;;;;;;;;;;;35929:104;;;;;;;;;;;;;:::i;49272:318::-;;;;;;:::i;:::-;;:::i;37612:155::-;;;;;;;;;;-1:-1:-1;37612:155:0;;;;;:::i;:::-;;:::i;51303:65::-;;;;;;;;;;;;;:::i;47749:30::-;;;;;;;;;;;;;;;;51482:100;;;;;;;;;;-1:-1:-1;51482:100:0;;;;;:::i;:::-;;:::i;49924:198::-;;;;;;;;;;-1:-1:-1;49924:198:0;;;;;:::i;:::-;;:::i;38735:328::-;;;;;;;;;;-1:-1:-1;38735:328:0;;;;;:::i;:::-;;:::i;52703:1546::-;;;:::i;50772:498::-;;;;;;;;;;-1:-1:-1;50772:498:0;;;;;:::i;:::-;;:::i;47712:32::-;;;;;;;;;;;;;;;;51921:122;;;;;;;;;;-1:-1:-1;51921:122:0;;;;;:::i;:::-;;:::i;37838:164::-;;;;;;;;;;-1:-1:-1;37838:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;37959:25:0;;;37935:4;37959:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;37838:164;16061:201;;;;;;;;;;-1:-1:-1;16061:201:0;;;;;:::i;:::-;;:::i;34815:305::-;34917:4;-1:-1:-1;;;;;;34954:40:0;;-1:-1:-1;;;34954:40:0;;:105;;-1:-1:-1;;;;;;;35011:48:0;;-1:-1:-1;;;35011:48:0;34954:105;:158;;;-1:-1:-1;;;;;;;;;;27693:40:0;;;35076:36;34934:178;34815:305;-1:-1:-1;;34815:305:0:o;52165:73::-;15225:6;;-1:-1:-1;;;;;15225:6:0;13956:10;15372:23;15364:68;;;;-1:-1:-1;;;15364:68:0;;;;;;;:::i;:::-;;;;;;;;;52217:6:::1;:15:::0;;-1:-1:-1;;52217:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;52165:73::o;51374:100::-;15225:6;;-1:-1:-1;;;;;15225:6:0;13956:10;15372:23;15364:68;;;;-1:-1:-1;;;15364:68:0;;;;;;;:::i;:::-;51446:13:::1;:22:::0;;-1:-1:-1;;;;;;51446:22:0::1;-1:-1:-1::0;;;;;51446:22:0;;;::::1;::::0;;;::::1;::::0;;51374:100::o;52337:131::-;15225:6;;-1:-1:-1;;;;;15225:6:0;13956:10;15372:23;15364:68;;;;-1:-1:-1;;;15364:68:0;;;;;;;:::i;:::-;52416:15:::1;52423:8;;52416:15;:::i;:::-;52440:22;:8;52451:11:::0;;52440:22:::1;:::i;:::-;;52337:131:::0;;:::o;35760:100::-;35814:13;35847:5;35840:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35760:100;:::o;37319:221::-;37395:7;40662:16;;;:7;:16;;;;;;-1:-1:-1;;;;;40662:16:0;37415:73;;;;-1:-1:-1;;;37415:73:0;;18127:2:1;37415:73:0;;;18109:21:1;18166:2;18146:18;;;18139:30;18205:34;18185:18;;;18178:62;-1:-1:-1;;;18256:18:1;;;18249:42;18308:19;;37415:73:0;17925:408:1;37415:73:0;-1:-1:-1;37508:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;37508:24:0;;37319:221::o;36842:411::-;36923:13;36939:23;36954:7;36939:14;:23::i;:::-;36923:39;;36987:5;-1:-1:-1;;;;;36981:11:0;:2;-1:-1:-1;;;;;36981:11:0;;;36973:57;;;;-1:-1:-1;;;36973:57:0;;20078:2:1;36973:57:0;;;20060:21:1;20117:2;20097:18;;;20090:30;20156:34;20136:18;;;20129:62;-1:-1:-1;;;20207:18:1;;;20200:31;20248:19;;36973:57:0;19876:397:1;36973:57:0;13956:10;-1:-1:-1;;;;;37065:21:0;;;;:62;;-1:-1:-1;37090:37:0;37107:5;13956:10;37838:164;:::i;37090:37::-;37043:168;;;;-1:-1:-1;;;37043:168:0;;16117:2:1;37043:168:0;;;16099:21:1;16156:2;16136:18;;;16129:30;16195:34;16175:18;;;16168:62;16266:26;16246:18;;;16239:54;16310:19;;37043:168:0;15915:420:1;37043:168:0;37224:21;37233:2;37237:7;37224:8;:21::i;52474:109::-;15225:6;;52527:7;;-1:-1:-1;;;;;15225:6:0;13956:10;15372:23;15364:68;;;;-1:-1:-1;;;15364:68:0;;;;;;;:::i;:::-;-1:-1:-1;52554:21:0::1;52474:109:::0;:::o;48731:89::-;48775:7;48798:16;:6;1006:14;;914:114;48798:16;48791:23;;48731:89;:::o;38069:339::-;38264:41;13956:10;38297:7;38264:18;:41::i;:::-;38256:103;;;;-1:-1:-1;;;38256:103:0;;;;;;;:::i;:::-;38372:28;38382:4;38388:2;38392:7;38372:9;:28::i;52051:108::-;15225:6;;-1:-1:-1;;;;;15225:6:0;13956:10;15372:23;15364:68;;;;-1:-1:-1;;;15364:68:0;;;;;;;:::i;:::-;52127:26;;::::1;::::0;:11:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;:::-;;52051:108:::0;:::o;52589:107::-;15225:6;;-1:-1:-1;;;;;15225:6:0;13956:10;15372:23;15364:68;;;;-1:-1:-1;;;15364:68:0;;;;;;;:::i;:::-;52637:51:::1;::::0;52645:10:::1;::::0;52666:21:::1;52637:51:::0;::::1;;;::::0;::::1;::::0;;;52666:21;52645:10;52637:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;52589:107::o:0;38479:185::-;38617:39;38634:4;38640:2;38644:7;38617:39;;;;;;;;;;;;:16;:39::i;50131:635::-;50206:16;50234:23;50260:17;50270:6;50260:9;:17::i;:::-;50234:43;;50284:30;50331:15;50317:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50317:30:0;-1:-1:-1;50284:63:0;-1:-1:-1;50379:1:0;50354:22;50423:309;50448:15;50430;:33;:64;;;;;50485:9;;50467:14;:27;;50430:64;50423:309;;;50505:25;50533:23;50541:14;50533:7;:23::i;:::-;50505:51;;50592:6;-1:-1:-1;;;;;50571:27:0;:17;-1:-1:-1;;;;;50571:27:0;;50567:131;;;50644:14;50611:13;50625:15;50611:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;50671:17;;;;:::i;:::-;;;;50567:131;50708:16;;;;:::i;:::-;;;;50496:236;50423:309;;;-1:-1:-1;50747:13:0;;50131:635;-1:-1:-1;;;;50131:635:0:o;51817:98::-;15225:6;;-1:-1:-1;;;;;15225:6:0;13956:10;15372:23;15364:68;;;;-1:-1:-1;;;15364:68:0;;;;;;;:::i;:::-;51888:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;35454:239::-:0;35526:7;35562:16;;;:7;:16;;;;;;-1:-1:-1;;;;;35562:16:0;35597:19;35589:73;;;;-1:-1:-1;;;35589:73:0;;16953:2:1;35589:73:0;;;16935:21:1;16992:2;16972:18;;;16965:30;17031:34;17011:18;;;17004:62;-1:-1:-1;;;17082:18:1;;;17075:39;17131:19;;35589:73:0;16751:405:1;48860:406:0;48955:11;48552:1;48538:11;:15;:52;;;;;48572:18;;48557:11;:33;;48538:52;48530:85;;;;-1:-1:-1;;;48530:85:0;;13140:2:1;48530:85:0;;;13122:21:1;13179:2;13159:18;;;13152:30;-1:-1:-1;;;13198:18:1;;;13191:50;13258:18;;48530:85:0;12938:344:1;48530:85:0;48664:11;;48649;48630:16;:6;1006:14;;914:114;48630:16;:30;;;;:::i;:::-;:45;;48622:89;;;;-1:-1:-1;;;48622:89:0;;14590:2:1;48622:89:0;;;14572:21:1;14629:2;14609:18;;;14602:30;14668:33;14648:18;;;14641:61;14719:18;;48622:89:0;14388:355:1;48622:89:0;48984:6:::1;::::0;::::1;;48983:7;48975:42;;;::::0;-1:-1:-1;;;48975:42:0;;18901:2:1;48975:42:0::1;::::0;::::1;18883:21:1::0;18940:2;18920:18;;;18913:30;-1:-1:-1;;;18959:18:1;;;18952:52;19021:18;;48975:42:0::1;18699:346:1::0;48975:42:0::1;49032:13;::::0;;;::::1;;;49024:48;;;::::0;-1:-1:-1;;;49024:48:0;;15766:2:1;49024:48:0::1;::::0;::::1;15748:21:1::0;15805:2;15785:18;;;15778:30;-1:-1:-1;;;15824:18:1;;;15817:52;15886:18;;49024:48:0::1;15564:346:1::0;49024:48:0::1;49114:11;49100;;:25;;;;:::i;:::-;49087:9;:38;49079:66;;;::::0;-1:-1:-1;;;49079:66:0;;11253:2:1;49079:66:0::1;::::0;::::1;11235:21:1::0;11292:2;11272:18;;;11265:30;-1:-1:-1;;;11311:18:1;;;11304:45;11366:18;;49079:66:0::1;11051:339:1::0;49079:66:0::1;49160:19;49168:10;;49160:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;49160:7:0::1;::::0;-1:-1:-1;;;49160:19:0:i:1;:::-;49152:45;;;::::0;-1:-1:-1;;;49152:45:0;;14248:2:1;49152:45:0::1;::::0;::::1;14230:21:1::0;14287:2;14267:18;;;14260:30;-1:-1:-1;;;14306:18:1;;;14299:43;14359:18;;49152:45:0::1;14046:337:1::0;49152:45:0::1;49224:34;49234:10;49246:11;49224:9;:34::i;:::-;48860:406:::0;;;;:::o;35184:208::-;35256:7;-1:-1:-1;;;;;35284:19:0;;35276:74;;;;-1:-1:-1;;;35276:74:0;;16542:2:1;35276:74:0;;;16524:21:1;16581:2;16561:18;;;16554:30;16620:34;16600:18;;;16593:62;-1:-1:-1;;;16671:18:1;;;16664:40;16721:19;;35276:74:0;16340:406:1;35276:74:0;-1:-1:-1;;;;;;35368:16:0;;;;;:9;:16;;;;;;;35184:208::o;15803:103::-;15225:6;;-1:-1:-1;;;;;15225:6:0;13956:10;15372:23;15364:68;;;;-1:-1:-1;;;15364:68:0;;;;;;;:::i;:::-;15868:30:::1;15895:1;15868:18;:30::i;:::-;15803:103::o:0;51680:131::-;15225:6;;-1:-1:-1;;;;;15225:6:0;13956:10;15372:23;15364:68;;;;-1:-1:-1;;;15364:68:0;;;;;;;:::i;:::-;51762:18:::1;:43:::0;51680:131::o;51588:86::-;15225:6;;-1:-1:-1;;;;;15225:6:0;13956:10;15372:23;15364:68;;;;-1:-1:-1;;;15364:68:0;;;;;;;:::i;:::-;51653:4:::1;:15:::0;51588:86::o;52244:85::-;15225:6;;-1:-1:-1;;;;;15225:6:0;13956:10;15372:23;15364:68;;;;-1:-1:-1;;;15364:68:0;;;;;;;:::i;:::-;52301:13:::1;:22:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;52301:22:0;;::::1;::::0;;;::::1;::::0;;52244:85::o;35929:104::-;35985:13;36018:7;36011:14;;;;;:::i;49272:318::-;49337:11;48552:1;48538:11;:15;:52;;;;;48572:18;;48557:11;:33;;48538:52;48530:85;;;;-1:-1:-1;;;48530:85:0;;13140:2:1;48530:85:0;;;13122:21:1;13179:2;13159:18;;;13152:30;-1:-1:-1;;;13198:18:1;;;13191:50;13258:18;;48530:85:0;12938:344:1;48530:85:0;48664:11;;48649;48630:16;:6;1006:14;;914:114;48630:16;:30;;;;:::i;:::-;:45;;48622:89;;;;-1:-1:-1;;;48622:89:0;;14590:2:1;48622:89:0;;;14572:21:1;14629:2;14609:18;;;14602:30;14668:33;14648:18;;;14641:61;14719:18;;48622:89:0;14388:355:1;48622:89:0;49367:6:::1;::::0;::::1;;49366:7;49358:42;;;::::0;-1:-1:-1;;;49358:42:0;;18901:2:1;49358:42:0::1;::::0;::::1;18883:21:1::0;18940:2;18920:18;;;18913:30;-1:-1:-1;;;18959:18:1;;;18952:52;19021:18;;49358:42:0::1;18699:346:1::0;49358:42:0::1;49416:13;::::0;;;::::1;;;49415:14;49407:50;;;::::0;-1:-1:-1;;;49407:50:0;;20898:2:1;49407:50:0::1;::::0;::::1;20880:21:1::0;20937:2;20917:18;;;20910:30;20976:25;20956:18;;;20949:53;21019:18;;49407:50:0::1;20696:347:1::0;49407:50:0::1;49492:11;49485:4;;:18;;;;:::i;:::-;49472:9;:31;49464:59;;;::::0;-1:-1:-1;;;49464:59:0;;11253:2:1;49464:59:0::1;::::0;::::1;11235:21:1::0;11292:2;11272:18;;;11265:30;-1:-1:-1;;;11311:18:1;;;11304:45;11366:18;;49464:59:0::1;11051:339:1::0;49464:59:0::1;49544:34;49554:10;49566:11;49544:9;:34::i;37612:155::-:0;37707:52;13956:10;37740:8;37750;37707:18;:52::i;51303:65::-;15225:6;;-1:-1:-1;;;;;15225:6:0;13956:10;15372:23;15364:68;;;;-1:-1:-1;;;15364:68:0;;;;;;;:::i;:::-;51347:8:::1;:15:::0;;-1:-1:-1;;51347:15:0::1;;;::::0;;51303:65::o;51482:100::-;15225:6;;-1:-1:-1;;;;;15225:6:0;13956:10;15372:23;15364:68;;;;-1:-1:-1;;;15364:68:0;;;;;;;:::i;:::-;51551:11:::1;:25:::0;51482:100::o;49924:198::-;15225:6;;-1:-1:-1;;;;;15225:6:0;13956:10;15372:23;15364:68;;;;-1:-1:-1;;;15364:68:0;;;;;;;:::i;:::-;50060:9:::1;;50045:11;50026:16;:6;1006:14:::0;;914:114;50026:16:::1;:30;;;;:::i;:::-;:43;;50018:52;;;::::0;::::1;;50081:33;50091:9;50102:11;50081:9;:33::i;38735:328::-:0;38910:41;13956:10;38943:7;38910:18;:41::i;:::-;38902:103;;;;-1:-1:-1;;;38902:103:0;;;;;;;:::i;:::-;39016:39;39030:4;39036:2;39040:7;39049:5;39016:13;:39::i;52703:1546::-;15225:6;;-1:-1:-1;;;;;15225:6:0;13956:10;15372:23;15364:68;;;;-1:-1:-1;;;15364:68:0;;;;;;;:::i;:::-;52787:25:::1;52815:21;52787:49;;52846:7;52867:8;52876:1;52867:11;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;52867:11:0::1;52920:5;52893:24;:17:::0;52913:4:::1;52893:24;:::i;:::-;:32;;;;:::i;:::-;52859:71;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52845:85;;;52945:2;52937:11;;;::::0;::::1;;52956:7;52977:8;52986:1;52977:11;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;52977:11:0::1;53030:5;53003:24;:17:::0;53023:4:::1;53003:24;:::i;:::-;:32;;;;:::i;:::-;52969:71;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52955:85;;;53055:2;53047:11;;;::::0;::::1;;53066:7;53087:8;53096:1;53087:11;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;53087:11:0::1;53139:5;53113:23;:17:::0;53133:3:::1;53113:23;:::i;:::-;:31;;;;:::i;:::-;53079:70;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53065:84;;;53164:2;53156:11;;;::::0;::::1;;53175:7;53196:8;53205:1;53196:11;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;53196:11:0::1;53248:5;53222:23;:17:::0;53242:3:::1;53222:23;:::i;:::-;:31;;;;:::i;:::-;53188:70;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53174:84;;;53273:2;53265:11;;;::::0;::::1;;53284:7;53305:8;53314:1;53305:11;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;53305:11:0::1;53357:5;53331:23;:17:::0;53351:3:::1;53331:23;:::i;:::-;:31;;;;:::i;:::-;53297:70;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53283:84;;;53382:2;53374:11;;;::::0;::::1;;53393:7;53414:8;53423:1;53414:11;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;53414:11:0::1;53466:5;53440:23;:17:::0;53460:3:::1;53440:23;:::i;:::-;:31;;;;:::i;:::-;53406:70;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53392:84;;;53491:2;53483:11;;;::::0;::::1;;53502:7;53523:8;53532:1;53523:11;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;53523:11:0::1;53575:5;53549:23;:17:::0;53569:3:::1;53549:23;:::i;:::-;:31;;;;:::i;:::-;53515:70;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53501:84;;;53600:2;53592:11;;;::::0;::::1;;53611:7;53632:8;53641:1;53632:11;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;53632:11:0::1;53684:5;53658:23;:17:::0;53678:3:::1;53658:23;:::i;:::-;:31;;;;:::i;:::-;53624:70;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53610:84;;;53709:2;53701:11;;;::::0;::::1;;53720:7;53741:8;53750:1;53741:11;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;53741:11:0::1;53793:5;53767:23;:17:::0;53787:3:::1;53767:23;:::i;:::-;:31;;;;:::i;:::-;53733:70;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53719:84;;;53818:2;53810:11;;;::::0;::::1;;53829:7;53850:8;53859:1;53850:11;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;53850:11:0::1;53902:5;53876:23;:17:::0;53896:3:::1;53876:23;:::i;:::-;:31;;;;:::i;:::-;53842:70;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53828:84;;;53927:2;53919:11;;;::::0;::::1;;53938:7;53959:8;53968:2;53959:12;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;53959:12:0::1;54012:5;53986:23;:17:::0;54006:3:::1;53986:23;:::i;:::-;:31;;;;:::i;:::-;53951:71;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53937:85;;;54037:2;54029:11;;;::::0;::::1;;54048:7;54069:8;54078:2:::0;54069:12:::1;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;54069:12:0::1;54121:5;54096:22;:17:::0;54116:2:::1;54096:22;:::i;:::-;:30;;;;:::i;:::-;54061:70;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54047:84;;;54146:2;54138:11;;;::::0;::::1;;54157:7;54178;15225:6:::0;;-1:-1:-1;;;;;15225:6:0;;15152:87;54178:7:::1;-1:-1:-1::0;;;;;54170:21:0::1;54199;54170:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54156:69;;;54240:2;54232:11;;;::::0;::::1;;52750:1499;;;;;;;;;;;;;;52703:1546::o:0;50772:498::-;40638:4;40662:16;;;:7;:16;;;;;;50870:13;;-1:-1:-1;;;;;40662:16:0;50897:97;;;;-1:-1:-1;;;50897:97:0;;19662:2:1;50897:97:0;;;19644:21:1;19701:2;19681:18;;;19674:30;19740:34;19720:18;;;19713:62;-1:-1:-1;;;19791:18:1;;;19784:45;19846:19;;50897:97:0;19460:411:1;50897:97:0;51010:8;;;;;;;51007:59;;51047:11;51040:18;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50772:498;;;:::o;51007:59::-;51074:28;51105:10;:8;:10::i;:::-;51074:41;;51160:1;51135:14;51129:28;:32;:133;;;;;;;;;;;;;;;;;51197:14;51213:18;:7;:16;:18::i;:::-;51233:13;51180:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51129:133;51122:140;50772:498;-1:-1:-1;;;50772:498:0:o;51921:122::-;15225:6;;-1:-1:-1;;;;;15225:6:0;13956:10;15372:23;15364:68;;;;-1:-1:-1;;;15364:68:0;;;;;;;:::i;:::-;52004:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;16061:201::-:0;15225:6;;-1:-1:-1;;;;;15225:6:0;13956:10;15372:23;15364:68;;;;-1:-1:-1;;;15364:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;16150:22:0;::::1;16142:73;;;::::0;-1:-1:-1;;;16142:73:0;;12376:2:1;16142:73:0::1;::::0;::::1;12358:21:1::0;12415:2;12395:18;;;12388:30;12454:34;12434:18;;;12427:62;-1:-1:-1;;;12505:18:1;;;12498:36;12551:19;;16142:73:0::1;12174:402:1::0;16142:73:0::1;16226:28;16245:8;16226:18;:28::i;44555:174::-:0;44630:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;44630:29:0;-1:-1:-1;;;;;44630:29:0;;;;;;;;:24;;44684:23;44630:24;44684:14;:23::i;:::-;-1:-1:-1;;;;;44675:46:0;;;;;;;;;;;44555:174;;:::o;40867:348::-;40960:4;40662:16;;;:7;:16;;;;;;-1:-1:-1;;;;;40662:16:0;40977:73;;;;-1:-1:-1;;;40977:73:0;;15353:2:1;40977:73:0;;;15335:21:1;15392:2;15372:18;;;15365:30;15431:34;15411:18;;;15404:62;-1:-1:-1;;;15482:18:1;;;15475:42;15534:19;;40977:73:0;15151:408:1;40977:73:0;41061:13;41077:23;41092:7;41077:14;:23::i;:::-;41061:39;;41130:5;-1:-1:-1;;;;;41119:16:0;:7;-1:-1:-1;;;;;41119:16:0;;:51;;;;41163:7;-1:-1:-1;;;;;41139:31:0;:20;41151:7;41139:11;:20::i;:::-;-1:-1:-1;;;;;41139:31:0;;41119:51;:87;;;-1:-1:-1;;;;;;37959:25:0;;;37935:4;37959:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;41174:32;41111:96;40867:348;-1:-1:-1;;;;40867:348:0:o;43859:578::-;44018:4;-1:-1:-1;;;;;43991:31:0;:23;44006:7;43991:14;:23::i;:::-;-1:-1:-1;;;;;43991:31:0;;43983:85;;;;-1:-1:-1;;;43983:85:0;;19252:2:1;43983:85:0;;;19234:21:1;19291:2;19271:18;;;19264:30;19330:34;19310:18;;;19303:62;-1:-1:-1;;;19381:18:1;;;19374:39;19430:19;;43983:85:0;19050:405:1;43983:85:0;-1:-1:-1;;;;;44087:16:0;;44079:65;;;;-1:-1:-1;;;44079:65:0;;13489:2:1;44079:65:0;;;13471:21:1;13528:2;13508:18;;;13501:30;13567:34;13547:18;;;13540:62;-1:-1:-1;;;13618:18:1;;;13611:34;13662:19;;44079:65:0;13287:400:1;44079:65:0;44261:29;44278:1;44282:7;44261:8;:29::i;:::-;-1:-1:-1;;;;;44303:15:0;;;;;;:9;:15;;;;;:20;;44322:1;;44303:15;:20;;44322:1;;44303:20;:::i;:::-;;;;-1:-1:-1;;;;;;;44334:13:0;;;;;;:9;:13;;;;;:18;;44351:1;;44334:13;:18;;44351:1;;44334:18;:::i;:::-;;;;-1:-1:-1;;44363:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;44363:21:0;-1:-1:-1;;;;;44363:21:0;;;;;;;;;44402:27;;44363:16;;44402:27;;;;;;;43859:578;;;:::o;49767:150::-;49897:13;;49832:4;;-1:-1:-1;;;;;49897:13:0;49857:36;49883:9;49857:17;49863:10;49857:5;:17::i;:::-;:25;;:36::i;:::-;-1:-1:-1;;;;;49857:53:0;;;49767:150;-1:-1:-1;;49767:150:0:o;54256:204::-;54336:9;54331:124;54355:11;54351:1;:15;54331:124;;;54382:18;:6;1125:19;;1143:1;1125:19;;;1036:127;54382:18;54409:38;54419:9;54430:16;:6;1006:14;;914:114;54430:16;54409:9;:38::i;:::-;54368:3;;;;:::i;:::-;;;;54331:124;;16422:191;16515:6;;;-1:-1:-1;;;;;16532:17:0;;;-1:-1:-1;;;;;;16532:17:0;;;;;;;16565:40;;16515:6;;;16532:17;16515:6;;16565:40;;16496:16;;16565:40;16485:128;16422:191;:::o;44871:315::-;45026:8;-1:-1:-1;;;;;45017:17:0;:5;-1:-1:-1;;;;;45017:17:0;;;45009:55;;;;-1:-1:-1;;;45009:55:0;;13894:2:1;45009:55:0;;;13876:21:1;13933:2;13913:18;;;13906:30;13972:27;13952:18;;;13945:55;14017:18;;45009:55:0;13692:349:1;45009:55:0;-1:-1:-1;;;;;45075:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;45075:46:0;;;;;;;;;;45137:41;;10019::1;;;45137::0;;9992:18:1;45137:41:0;;;;;;;44871:315;;;:::o;39945:::-;40102:28;40112:4;40118:2;40122:7;40102:9;:28::i;:::-;40149:48;40172:4;40178:2;40182:7;40191:5;40149:22;:48::i;:::-;40141:111;;;;-1:-1:-1;;;40141:111:0;;;;;;;:::i;48366:102::-;48426:13;48455:7;48448:14;;;;;:::i;1872:723::-;1928:13;2149:10;2145:53;;-1:-1:-1;;2176:10:0;;;;;;;;;;;;-1:-1:-1;;;2176:10:0;;;;;1872:723::o;2145:53::-;2223:5;2208:12;2264:78;2271:9;;2264:78;;2297:8;;;;:::i;:::-;;-1:-1:-1;2320:10:0;;-1:-1:-1;2328:2:0;2320:10;;:::i;:::-;;;2264:78;;;2352:19;2384:6;2374:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2374:17:0;;2352:39;;2402:154;2409:10;;2402:154;;2436:11;2446:1;2436:11;;:::i;:::-;;-1:-1:-1;2505:10:0;2513:2;2505:5;:10;:::i;:::-;2492:24;;:2;:24;:::i;:::-;2479:39;;2462:6;2469;2462:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2462:56:0;;;;;;;;-1:-1:-1;2533:11:0;2542:2;2533:11;;:::i;:::-;;;2402:154;;49602:159;49695:34;;;49714:4;49695:34;;;;8652::1;;;;-1:-1:-1;;;;;8722:15:1;;8702:18;;;8695:43;49695:34:0;;;;;;;;;8587:18:1;;;49695:34:0;;49685:45;;;;;;7879:66:1;12084:58:0;;;7867:79:1;7962:12;;;;7955:28;;;;12084:58:0;;;;;;;;;;7999:12:1;;;;12084:58:0;;;12074:69;;;;;-1:-1:-1;;49685:70:0;11882:269;8033:231;8111:7;8132:17;8151:18;8173:27;8184:4;8190:9;8173:10;:27::i;:::-;8131:69;;;;8211:18;8223:5;8211:11;:18::i;:::-;-1:-1:-1;8247:9:0;8033:231;-1:-1:-1;;;8033:231:0:o;41557:110::-;41633:26;41643:2;41647:7;41633:26;;;;;;;;;;;;:9;:26::i;45751:799::-;45906:4;-1:-1:-1;;;;;45927:13:0;;17763:20;17811:8;45923:620;;45963:72;;-1:-1:-1;;;45963:72:0;;-1:-1:-1;;;;;45963:36:0;;;;;:72;;13956:10;;46014:4;;46020:7;;46029:5;;45963:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45963:72:0;;;;;;;;-1:-1:-1;;45963:72:0;;;;;;;;;;;;:::i;:::-;;;45959:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46205:13:0;;46201:272;;46248:60;;-1:-1:-1;;;46248:60:0;;;;;;;:::i;46201:272::-;46423:6;46417:13;46408:6;46404:2;46400:15;46393:38;45959:529;-1:-1:-1;;;;;;46086:51:0;-1:-1:-1;;;46086:51:0;;-1:-1:-1;46079:58:0;;45923:620;-1:-1:-1;46527:4:0;45751:799;;;;;;:::o;5923:1308::-;6004:7;6013:12;6238:9;:16;6258:2;6238:22;6234:990;;;6534:4;6519:20;;6513:27;6584:4;6569:20;;6563:27;6642:4;6627:20;;6621:27;6277:9;6613:36;6685:25;6696:4;6613:36;6513:27;6563;6685:10;:25::i;:::-;6678:32;;;;;;;;;6234:990;6732:9;:16;6752:2;6732:22;6728:496;;;7007:4;6992:20;;6986:27;7058:4;7043:20;;7037:27;7100:23;7111:4;6986:27;7037;7100:10;:23::i;:::-;7093:30;;;;;;;;6728:496;-1:-1:-1;7172:1:0;;-1:-1:-1;7176:35:0;6728:496;5923:1308;;;;;:::o;4194:643::-;4272:20;4263:5;:29;;;;;;;;:::i;:::-;;4259:571;;;4194:643;:::o;4259:571::-;4370:29;4361:5;:38;;;;;;;;:::i;:::-;;4357:473;;;4416:34;;-1:-1:-1;;;4416:34:0;;10900:2:1;4416:34:0;;;10882:21:1;10939:2;10919:18;;;10912:30;10978:26;10958:18;;;10951:54;11022:18;;4416:34:0;10698:348:1;4357:473:0;4481:35;4472:5;:44;;;;;;;;:::i;:::-;;4468:362;;;4533:41;;-1:-1:-1;;;4533:41:0;;11597:2:1;4533:41:0;;;11579:21:1;11636:2;11616:18;;;11609:30;11675:33;11655:18;;;11648:61;11726:18;;4533:41:0;11395:355:1;4468:362:0;4605:30;4596:5;:39;;;;;;;;:::i;:::-;;4592:238;;;4652:44;;-1:-1:-1;;;4652:44:0;;14950:2:1;4652:44:0;;;14932:21:1;14989:2;14969:18;;;14962:30;15028:34;15008:18;;;15001:62;-1:-1:-1;;;15079:18:1;;;15072:32;15121:19;;4652:44:0;14748:398:1;4592:238:0;4727:30;4718:5;:39;;;;;;;;:::i;:::-;;4714:116;;;4774:44;;-1:-1:-1;;;4774:44:0;;17363:2:1;4774:44:0;;;17345:21:1;17402:2;17382:18;;;17375:30;17441:34;17421:18;;;17414:62;-1:-1:-1;;;17492:18:1;;;17485:32;17534:19;;4774:44:0;17161:398:1;41894:321:0;42024:18;42030:2;42034:7;42024:5;:18::i;:::-;42075:54;42106:1;42110:2;42114:7;42123:5;42075:22;:54::i;:::-;42053:154;;;;-1:-1:-1;;;42053:154:0;;;;;;;:::i;9532:1632::-;9663:7;;10597:66;10584:79;;10580:163;;;-1:-1:-1;10696:1:0;;-1:-1:-1;10700:30:0;10680:51;;10580:163;10757:1;:7;;10762:2;10757:7;;:18;;;;;10768:1;:7;;10773:2;10768:7;;10757:18;10753:102;;;-1:-1:-1;10808:1:0;;-1:-1:-1;10812:30:0;10792:51;;10753:102;10969:24;;;10952:14;10969:24;;;;;;;;;10298:25:1;;;10371:4;10359:17;;10339:18;;;10332:45;;;;10393:18;;;10386:34;;;10436:18;;;10429:34;;;10969:24:0;;10270:19:1;;10969:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;10969:24:0;;-1:-1:-1;;10969:24:0;;;-1:-1:-1;;;;;;;11008:20:0;;11004:103;;11061:1;11065:29;11045:50;;;;;;;11004:103;11127:6;-1:-1:-1;11135:20:0;;-1:-1:-1;9532:1632:0;;;;;;;;:::o;8527:391::-;8641:7;;-1:-1:-1;;;;;8742:75:0;;8844:3;8840:12;;;8854:2;8836:21;8885:25;8896:4;8836:21;8905:1;8742:75;8885:10;:25::i;:::-;8878:32;;;;;;8527:391;;;;;;:::o;42551:382::-;-1:-1:-1;;;;;42631:16:0;;42623:61;;;;-1:-1:-1;;;42623:61:0;;17766:2:1;42623:61:0;;;17748:21:1;;;17785:18;;;17778:30;17844:34;17824:18;;;17817:62;17896:18;;42623:61:0;17564:356:1;42623:61:0;40638:4;40662:16;;;:7;:16;;;;;;-1:-1:-1;;;;;40662:16:0;:30;42695:58;;;;-1:-1:-1;;;42695:58:0;;12783:2:1;42695:58:0;;;12765:21:1;12822:2;12802:18;;;12795:30;12861;12841:18;;;12834:58;12909:18;;42695:58:0;12581:352:1;42695:58:0;-1:-1:-1;;;;;42824:13:0;;;;;;:9;:13;;;;;:18;;42841:1;;42824:13;:18;;42841:1;;42824:18;:::i;:::-;;;;-1:-1:-1;;42853:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;42853:21:0;-1:-1:-1;;;;;42853:21:0;;;;;;;;42892:33;;42853:16;;;42892:33;;42853:16;;42892:33;42551:382;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:615::-;3057:6;3065;3118:2;3106:9;3097:7;3093:23;3089:32;3086:52;;;3134:1;3131;3124:12;3086:52;3174:9;3161:23;3203:18;3244:2;3236:6;3233:14;3230:34;;;3260:1;3257;3250:12;3230:34;3298:6;3287:9;3283:22;3273:32;;3343:7;3336:4;3332:2;3328:13;3324:27;3314:55;;3365:1;3362;3355:12;3314:55;3405:2;3392:16;3431:2;3423:6;3420:14;3417:34;;;3447:1;3444;3437:12;3417:34;3500:7;3495:2;3485:6;3482:1;3478:14;3474:2;3470:23;3466:32;3463:45;3460:65;;;3521:1;3518;3511:12;3460:65;3552:2;3544:11;;;;;3574:6;;-1:-1:-1;2971:615:1;;-1:-1:-1;;;;2971:615:1:o;3591:180::-;3647:6;3700:2;3688:9;3679:7;3675:23;3671:32;3668:52;;;3716:1;3713;3706:12;3668:52;3739:26;3755:9;3739:26;:::i;3776:245::-;3834:6;3887:2;3875:9;3866:7;3862:23;3858:32;3855:52;;;3903:1;3900;3893:12;3855:52;3942:9;3929:23;3961:30;3985:5;3961:30;:::i;4026:249::-;4095:6;4148:2;4136:9;4127:7;4123:23;4119:32;4116:52;;;4164:1;4161;4154:12;4116:52;4196:9;4190:16;4215:30;4239:5;4215:30;:::i;4280:450::-;4349:6;4402:2;4390:9;4381:7;4377:23;4373:32;4370:52;;;4418:1;4415;4408:12;4370:52;4458:9;4445:23;4491:18;4483:6;4480:30;4477:50;;;4523:1;4520;4513:12;4477:50;4546:22;;4599:4;4591:13;;4587:27;-1:-1:-1;4577:55:1;;4628:1;4625;4618:12;4577:55;4651:73;4716:7;4711:2;4698:16;4693:2;4689;4685:11;4651:73;:::i;4735:180::-;4794:6;4847:2;4835:9;4826:7;4822:23;4818:32;4815:52;;;4863:1;4860;4853:12;4815:52;-1:-1:-1;4886:23:1;;4735:180;-1:-1:-1;4735:180:1:o;4920:254::-;4988:6;4996;5049:2;5037:9;5028:7;5024:23;5020:32;5017:52;;;5065:1;5062;5055:12;5017:52;5101:9;5088:23;5078:33;;5130:38;5164:2;5153:9;5149:18;5130:38;:::i;5179:659::-;5258:6;5266;5274;5327:2;5315:9;5306:7;5302:23;5298:32;5295:52;;;5343:1;5340;5333:12;5295:52;5379:9;5366:23;5356:33;;5440:2;5429:9;5425:18;5412:32;5463:18;5504:2;5496:6;5493:14;5490:34;;;5520:1;5517;5510:12;5490:34;5558:6;5547:9;5543:22;5533:32;;5603:7;5596:4;5592:2;5588:13;5584:27;5574:55;;5625:1;5622;5615:12;5574:55;5665:2;5652:16;5691:2;5683:6;5680:14;5677:34;;;5707:1;5704;5697:12;5677:34;5752:7;5747:2;5738:6;5734:2;5730:15;5726:24;5723:37;5720:57;;;5773:1;5770;5763:12;5720:57;5804:2;5800;5796:11;5786:21;;5826:6;5816:16;;;;;5179:659;;;;;:::o;5843:257::-;5884:3;5922:5;5916:12;5949:6;5944:3;5937:19;5965:63;6021:6;6014:4;6009:3;6005:14;5998:4;5991:5;5987:16;5965:63;:::i;:::-;6082:2;6061:15;-1:-1:-1;;6057:29:1;6048:39;;;;6089:4;6044:50;;5843:257;-1:-1:-1;;5843:257:1:o;6105:1527::-;6329:3;6367:6;6361:13;6393:4;6406:51;6450:6;6445:3;6440:2;6432:6;6428:15;6406:51;:::i;:::-;6520:13;;6479:16;;;;6542:55;6520:13;6479:16;6564:15;;;6542:55;:::i;:::-;6686:13;;6619:20;;;6659:1;;6746;6768:18;;;;6821;;;;6848:93;;6926:4;6916:8;6912:19;6900:31;;6848:93;6989:2;6979:8;6976:16;6956:18;6953:40;6950:167;;;-1:-1:-1;;;7016:33:1;;7072:4;7069:1;7062:15;7102:4;7023:3;7090:17;6950:167;7133:18;7160:110;;;;7284:1;7279:328;;;;7126:481;;7160:110;-1:-1:-1;;7195:24:1;;7181:39;;7240:20;;;;-1:-1:-1;7160:110:1;;7279:328;21303:1;21296:14;;;21340:4;21327:18;;7374:1;7388:169;7402:8;7399:1;7396:15;7388:169;;;7484:14;;7469:13;;;7462:37;7527:16;;;;7419:10;;7388:169;;;7392:3;;7588:8;7581:5;7577:20;7570:27;;7126:481;-1:-1:-1;7623:3:1;;6105:1527;-1:-1:-1;;;;;;;;;;;6105:1527:1:o;8749:488::-;-1:-1:-1;;;;;9018:15:1;;;9000:34;;9070:15;;9065:2;9050:18;;9043:43;9117:2;9102:18;;9095:34;;;9165:3;9160:2;9145:18;;9138:31;;;8943:4;;9186:45;;9211:19;;9203:6;9186:45;:::i;:::-;9178:53;8749:488;-1:-1:-1;;;;;;8749:488:1:o;9242:632::-;9413:2;9465:21;;;9535:13;;9438:18;;;9557:22;;;9384:4;;9413:2;9636:15;;;;9610:2;9595:18;;;9384:4;9679:169;9693:6;9690:1;9687:13;9679:169;;;9754:13;;9742:26;;9823:15;;;;9788:12;;;;9715:1;9708:9;9679:169;;;-1:-1:-1;9865:3:1;;9242:632;-1:-1:-1;;;;;;9242:632:1:o;10474:219::-;10623:2;10612:9;10605:21;10586:4;10643:44;10683:2;10672:9;10668:18;10660:6;10643:44;:::i;11755:414::-;11957:2;11939:21;;;11996:2;11976:18;;;11969:30;12035:34;12030:2;12015:18;;12008:62;-1:-1:-1;;;12101:2:1;12086:18;;12079:48;12159:3;12144:19;;11755:414::o;18338:356::-;18540:2;18522:21;;;18559:18;;;18552:30;18618:34;18613:2;18598:18;;18591:62;18685:2;18670:18;;18338:356::o;20278:413::-;20480:2;20462:21;;;20519:2;20499:18;;;20492:30;20558:34;20553:2;20538:18;;20531:62;-1:-1:-1;;;20624:2:1;20609:18;;20602:47;20681:3;20666:19;;20278:413::o;21356:128::-;21396:3;21427:1;21423:6;21420:1;21417:13;21414:39;;;21433:18;;:::i;:::-;-1:-1:-1;21469:9:1;;21356:128::o;21489:120::-;21529:1;21555;21545:35;;21560:18;;:::i;:::-;-1:-1:-1;21594:9:1;;21489:120::o;21614:168::-;21654:7;21720:1;21716;21712:6;21708:14;21705:1;21702:21;21697:1;21690:9;21683:17;21679:45;21676:71;;;21727:18;;:::i;:::-;-1:-1:-1;21767:9:1;;21614:168::o;21787:125::-;21827:4;21855:1;21852;21849:8;21846:34;;;21860:18;;:::i;:::-;-1:-1:-1;21897:9:1;;21787:125::o;21917:258::-;21989:1;21999:113;22013:6;22010:1;22007:13;21999:113;;;22089:11;;;22083:18;22070:11;;;22063:39;22035:2;22028:10;21999:113;;;22130:6;22127:1;22124:13;22121:48;;;-1:-1:-1;;22165:1:1;22147:16;;22140:27;21917:258::o;22180:380::-;22259:1;22255:12;;;;22302;;;22323:61;;22377:4;22369:6;22365:17;22355:27;;22323:61;22430:2;22422:6;22419:14;22399:18;22396:38;22393:161;;;22476:10;22471:3;22467:20;22464:1;22457:31;22511:4;22508:1;22501:15;22539:4;22536:1;22529:15;22393:161;;22180:380;;;:::o;22565:135::-;22604:3;-1:-1:-1;;22625:17:1;;22622:43;;;22645:18;;:::i;:::-;-1:-1:-1;22692:1:1;22681:13;;22565:135::o;22705:112::-;22737:1;22763;22753:35;;22768:18;;:::i;:::-;-1:-1:-1;22802:9:1;;22705:112::o;22822:127::-;22883:10;22878:3;22874:20;22871:1;22864:31;22914:4;22911:1;22904:15;22938:4;22935:1;22928:15;22954:127;23015:10;23010:3;23006:20;23003:1;22996:31;23046:4;23043:1;23036:15;23070:4;23067:1;23060:15;23086:127;23147:10;23142:3;23138:20;23135:1;23128:31;23178:4;23175:1;23168:15;23202:4;23199:1;23192:15;23218:127;23279:10;23274:3;23270:20;23267:1;23260:31;23310:4;23307:1;23300:15;23334:4;23331:1;23324:15;23350:127;23411:10;23406:3;23402:20;23399:1;23392:31;23442:4;23439:1;23432:15;23466:4;23463:1;23456:15;23482:131;-1:-1:-1;;;;;;23556:32:1;;23546:43;;23536:71;;23603:1;23600;23593:12

Swarm Source

ipfs://3be0f322b1c0033d88d50935f768b16e303380d944ff960dbf2994163ea6976c
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.