ETH Price: $2,956.04 (-5.27%)
Gas: 7 Gwei

Token

MenderNFT (MenderNFT)
 

Overview

Max Total Supply

6,000 MenderNFT

Holders

2,473

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
Null: 0x000...000
Balance
0 MenderNFT
0x0000000000000000000000000000000000000000
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:
MenderNFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-18
*/

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

                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/IERC721Enumerable.sol


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;

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

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

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

// 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 (last updated v4.5.0) (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 = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 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/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

// File: contracts/ERC721A.sol



pragma solidity ^0.8.0;









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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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


pragma solidity ^0.8.0;







contract MenderNFT is Ownable, ERC721A, ReentrancyGuard {
  using ECDSA for bytes32;
  uint256 private constant MAX_PERADDRESS_DURING_MINT = 6;
  uint256 private constant MAX_CONTRIBUTOR = 3000;
  uint256 private constant MAX_TEAMER = 1000;
  uint256 private constant COLLECTTION_SIZE = 10000;

  uint256 private contriMintCounter = 0;
  uint256 private teamMintCounter = 0;

  mapping(address => uint256) private allowlistMinted;
  mapping(address => bool) private contriMinted;
  mapping(address => uint256) private teamlistMinted;
  mapping(address => bool) private publicMinted;

  bytes32 private merkleRootRole2;
  bytes32 private merkleRootRole3;
  bytes32 private merkleRootRole4;
  bytes32 private merkleRootRole6;

  address private contriSigner;
  address private teamSigner;


  struct SaleConfig {
    uint32 allowlistSaleStartTime;
    uint32 allowlistSaleEndTime;
    uint32 publicSaleStartTime;
    uint32 publicSaleKey;
  }
  SaleConfig public saleConfig;

  string private _baseTokenURI = "";

  constructor(
    bytes32 merkleRootRole2_,
    bytes32 merkleRootRole3_,
    bytes32 merkleRootRole4_,
    bytes32 merkleRootRole6_,
    uint32 allowlistSaleStartTime_,
    uint32 allowlistSaleEndTime_,
    uint32 publicSaleStartTime_,
    uint32 publicSaleKey_,
    string memory baseURI_
  ) ERC721A("MenderNFT", "MenderNFT", MAX_PERADDRESS_DURING_MINT, COLLECTTION_SIZE) {
    merkleRootRole2 = merkleRootRole2_;
    merkleRootRole3 = merkleRootRole3_;
    merkleRootRole4 = merkleRootRole4_;
    merkleRootRole6 = merkleRootRole6_;

    saleConfig.allowlistSaleStartTime = allowlistSaleStartTime_;
    saleConfig.allowlistSaleEndTime = allowlistSaleEndTime_;
    saleConfig.publicSaleStartTime = publicSaleStartTime_;
    saleConfig.publicSaleKey = publicSaleKey_;

    _baseTokenURI = baseURI_;
  }

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

  function isAllowlisted(
    address _account,
    bytes32[] calldata _proof,
    uint256 _role
  ) internal view returns (bool) {
    bytes32 _leaf = leaf(_account);
    if (_role == 2) {
      return MerkleProof.verify(_proof, merkleRootRole2, _leaf);
    } else if (_role == 3) {
      return MerkleProof.verify(_proof, merkleRootRole3, _leaf);
    } else if (_role == 4) {
      return MerkleProof.verify(_proof, merkleRootRole4, _leaf);
    } else if (_role == 6) {
      return MerkleProof.verify(_proof, merkleRootRole6, _leaf);
    } else {
      return false;
    }
  }


  function leaf(address _account) internal pure returns (bytes32) {
    return keccak256(abi.encodePacked(_account));
  }

  function allowlistMint(
    uint256 _quantity,
    bytes32[] calldata _proof,
    uint256 _role
  ) external callerIsUser {
    uint256 allowlistSaleStartTime = uint256(saleConfig.allowlistSaleStartTime);
    uint256 allowlistSaleEndTime = uint256(saleConfig.allowlistSaleEndTime);

    require(
      allowlistSaleStartTime != 0 && block.timestamp >= allowlistSaleStartTime,
      "allowlist sale has not begun yet"
    );
    require(block.timestamp <= allowlistSaleEndTime,"allowlist sale has ended");
    require(_quantity > 0, "invalid mint quantity");
    require(allowlistMinted[msg.sender] + _quantity <= _role, "reached role limit");
    require(MAX_CONTRIBUTOR - contriMintCounter + MAX_TEAMER - teamMintCounter + totalSupply() + _quantity <= COLLECTTION_SIZE, "reached max supply");
    require(isAllowlisted(msg.sender, _proof, _role), "not allowlisted");

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

  function contriMint(bytes calldata signature) external callerIsUser {
    require(contriMinted[msg.sender] != true, "already minted");
    require(
        contriSigner==
            keccak256(
                abi.encodePacked(
                    "\x19Ethereum Signed Message:\n32",
                    bytes32(uint256(uint160(msg.sender)))
                )
            ).recover(signature),
        "Signer address mismatch."
    );
    require(contriMintCounter + 1 <= MAX_CONTRIBUTOR, "reached max contributor supply");
    contriMinted[msg.sender] = true;
    contriMintCounter += 1;
    _safeMint(msg.sender, 1);
  }

  function teamMint(uint256 _quantity,bytes calldata signature) external callerIsUser {
    require(teamlistMinted[msg.sender] + _quantity <= 5, "reached  limit");
    require(
        teamSigner==
            keccak256(
                abi.encodePacked(
                    "\x19Ethereum Signed Message:\n32",
                    bytes32(uint256(uint160(msg.sender)))
                )
            ).recover(signature),
        "Signer address mismatch."
    );
    require(teamMintCounter + _quantity <= MAX_TEAMER, "reached max team supply");
    teamlistMinted[msg.sender] += _quantity;
    teamMintCounter += _quantity;
    _safeMint(msg.sender, _quantity);
  }

  function publicMint(uint256 _callerPublicSaleKey) external callerIsUser {
    SaleConfig memory config = saleConfig;
    uint256 publicSaleKey = uint256(config.publicSaleKey);
    uint256 publicSaleStartTime = uint256(config.publicSaleStartTime);
    require(publicMinted[msg.sender] != true, "already minted");
    require(publicSaleKey == _callerPublicSaleKey, "called with incorrect public sale key");
    require(isPublicSaleOn(publicSaleKey, publicSaleStartTime), "public sale has not begun yet");
    require(MAX_CONTRIBUTOR - contriMintCounter + MAX_TEAMER - teamMintCounter + totalSupply() + 1 <= COLLECTTION_SIZE, "reached max supply");
    require(numberMinted(msg.sender) + 1 <= MAX_PERADDRESS_DURING_MINT, "can not mint this many");
    publicMinted[msg.sender] = true;
    _safeMint(msg.sender, 1);
  }

  function isPublicSaleOn(uint256 publicSaleKey, uint256 publicSaleStartTime) public view returns (bool) {
    return publicSaleKey != 0 && publicSaleStartTime != 0 && block.timestamp >= publicSaleStartTime;
  }

  function setMerkleRoot(uint256 role, bytes32 _merkleRoot) external onlyOwner {
    if (role == 2) {
      merkleRootRole2 = _merkleRoot;
    } else if (role == 3) {
      merkleRootRole3 = _merkleRoot;
    } else if (role == 4) {
      merkleRootRole4 = _merkleRoot;
    } else if (role == 6) {
      merkleRootRole6 = _merkleRoot;
    }
  }

  function setMerkleRootAll(
    bytes32 _merkleRootRole2,
    bytes32 _merkleRootRole3,
    bytes32 _merkleRootRole4,
    bytes32 _merkleRootRole6
  ) external onlyOwner {
    merkleRootRole2 = _merkleRootRole2;
    merkleRootRole3 = _merkleRootRole3;
    merkleRootRole4 = _merkleRootRole4;
    merkleRootRole6 = _merkleRootRole6;
  }

  function setAllowlistSaleStartTime(uint32 timestamp) external onlyOwner {
    saleConfig.allowlistSaleStartTime = timestamp;
  }

  function setAllowlistSaleEndTime(uint32 timestamp) external onlyOwner {
    saleConfig.allowlistSaleEndTime = timestamp;
  }

  function setPublicSaleStartTime(uint32 timestamp) external onlyOwner {
    saleConfig.publicSaleStartTime = timestamp;
  }

  function setPublicSaleKey(uint32 key) external onlyOwner {
    saleConfig.publicSaleKey = key;
  }

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

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

  function setSigner(address contriSigner_,address teamSigner_) external onlyOwner {
    contriSigner = contriSigner_;
    teamSigner = teamSigner_;
  }

  function withdrawMoney() external onlyOwner nonReentrant {
    (bool success, ) = msg.sender.call{value: address(this).balance}("");
    require(success, "transfer failed");
  }

  function setOwnersExplicit(uint256 quantity) external onlyOwner nonReentrant {
    _setOwnersExplicit(quantity);
  }

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

  function numberAllowlistMinted(address owner) public view returns (uint256) {
    return allowlistMinted[owner];
  }

  function isContriMinted(address owner) public view returns (bool) {
    return contriMinted[owner];
  }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"bytes32","name":"merkleRootRole2_","type":"bytes32"},{"internalType":"bytes32","name":"merkleRootRole3_","type":"bytes32"},{"internalType":"bytes32","name":"merkleRootRole4_","type":"bytes32"},{"internalType":"bytes32","name":"merkleRootRole6_","type":"bytes32"},{"internalType":"uint32","name":"allowlistSaleStartTime_","type":"uint32"},{"internalType":"uint32","name":"allowlistSaleEndTime_","type":"uint32"},{"internalType":"uint32","name":"publicSaleStartTime_","type":"uint32"},{"internalType":"uint32","name":"publicSaleKey_","type":"uint32"},{"internalType":"string","name":"baseURI_","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":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"},{"internalType":"uint256","name":"_role","type":"uint256"}],"name":"allowlistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"contriMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"isContriMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"publicSaleKey","type":"uint256"},{"internalType":"uint256","name":"publicSaleStartTime","type":"uint256"}],"name":"isPublicSaleOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberAllowlistMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_callerPublicSaleKey","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleConfig","outputs":[{"internalType":"uint32","name":"allowlistSaleStartTime","type":"uint32"},{"internalType":"uint32","name":"allowlistSaleEndTime","type":"uint32"},{"internalType":"uint32","name":"publicSaleStartTime","type":"uint32"},{"internalType":"uint32","name":"publicSaleKey","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"timestamp","type":"uint32"}],"name":"setAllowlistSaleEndTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"timestamp","type":"uint32"}],"name":"setAllowlistSaleStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"role","type":"uint256"},{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRootRole2","type":"bytes32"},{"internalType":"bytes32","name":"_merkleRootRole3","type":"bytes32"},{"internalType":"bytes32","name":"_merkleRootRole4","type":"bytes32"},{"internalType":"bytes32","name":"_merkleRootRole6","type":"bytes32"}],"name":"setMerkleRootAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"key","type":"uint32"}],"name":"setPublicSaleKey","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"timestamp","type":"uint32"}],"name":"setPublicSaleStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"contriSigner_","type":"address"},{"internalType":"address","name":"teamSigner_","type":"address"}],"name":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600060018190556008819055600a819055600b81905560e0604081905260c0829052620000309160179190620002c1565b503480156200003e57600080fd5b5060405162003bba38038062003bba833981016040819052620000619162000381565b6040518060400160405280600981526020016813595b99195c93919560ba1b8152506040518060400160405280600981526020016813595b99195c93919560ba1b8152506006612710620000c4620000be6200026d60201b60201c565b62000271565b60008111620001315760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001935760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000128565b8351620001a8906002906020870190620002c1565b508251620001be906003906020860190620002c1565b5060a0919091526080525050600160095560108990556011889055601287905560138690556016805463ffffffff8781166001600160401b0319909216919091176401000000008783160217600160401b600160801b031916680100000000000000008683160263ffffffff60601b1916176c010000000000000000000000009185169190910217905580516200025d906017906020840190620002c1565b5050505050505050505062000529565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620002cf90620004d6565b90600052602060002090601f016020900481019282620002f357600085556200033e565b82601f106200030e57805160ff19168380011785556200033e565b828001600101855582156200033e579182015b828111156200033e57825182559160200191906001019062000321565b506200034c92915062000350565b5090565b5b808211156200034c576000815560010162000351565b805163ffffffff811681146200037c57600080fd5b919050565b60008060008060008060008060006101208a8c031215620003a157600080fd5b8951985060208a0151975060408a0151965060608a01519550620003c860808b0162000367565b9450620003d860a08b0162000367565b9350620003e860c08b0162000367565b9250620003f860e08b0162000367565b6101008b01519092506001600160401b03808211156200041757600080fd5b818c0191508c601f8301126200042c57600080fd5b81518181111562000441576200044162000513565b604051601f8201601f19908116603f011681019083821181831017156200046c576200046c62000513565b816040528281528f60208487010111156200048657600080fd5b600093505b82841015620004ae5760208486010151602085830101526020840193506200048b565b82841115620004c1576000602084830101525b80955050505050509295985092959850929598565b600181811c90821680620004eb57607f821691505b602082108114156200050d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160a051613656620005646000396000818161238b015281816123b50152612873015260008181611fcd0152611fff01526136566000f3fe608060405234801561001057600080fd5b50600436106102485760003560e01c80635fd84c281161013b578063a22cb465116100b8578063d7224ba01161007c578063d7224ba01461059c578063dbcad76f146105a5578063dc33e681146105b8578063e985e9c5146105cb578063f2fde38b1461060757600080fd5b8063a22cb46514610548578063ac4460021461055b578063b6f194f414610563578063b88d4fde14610576578063c87b56dd1461058957600080fd5b806390028083116100ff578063900280831461046457806390aa0b0f146104775780639231ab2a146104d757806395d89b41146105175780639a97c8eb1461051f57600080fd5b80635fd84c28146104125780636352211e1461042557806370a0823114610438578063715018a61461044b5780638da5cb5b1461045357600080fd5b80632d20fb60116101c9578063453acecf1161018d578063453acecf146103b35780634f6ccce7146103c657806355f804b3146103d9578063570cc09c146103ec5780635c9109ab146103ff57600080fd5b80632d20fb60146103545780632db11544146103675780632f745c591461037a57806332c314e11461038d57806342842e0e146103a057600080fd5b806318160ddd1161021057806318160ddd146102dd57806318712c21146102ef57806323b872dd14610302578063288adbba1461031557806329c57ed21461034157600080fd5b806301ffc9a71461024d57806306fdde0314610275578063081812fc1461028a578063095ea7b3146102b557806317f9fad1146102ca575b600080fd5b61026061025b36600461314d565b61061a565b60405190151581526020015b60405180910390f35b61027d610687565b60405161026c9190613390565b61029d6102983660046131c8565b610719565b6040516001600160a01b03909116815260200161026c565b6102c86102c33660046130f1565b6107a9565b005b6102c86102d8366004612f6b565b6108c1565b6001545b60405190815260200161026c565b6102c86102fd366004613265565b610919565b6102c8610310366004612f9e565b610983565b610260610323366004612f50565b6001600160a01b03166000908152600d602052604090205460ff1690565b6102c861034f36600461311b565b61098e565b6102c86103623660046131c8565b6109cc565b6102c86103753660046131c8565b610a5f565b6102e16103883660046130f1565b610cec565b6102c861039b3660046132d2565b610e64565b6102c86103ae366004612f9e565b610eaa565b6102c86103c13660046132d2565b610ec5565b6102e16103d43660046131c8565b610f17565b6102c86103e7366004613187565b610f80565b6102c86103fa3660046131e1565b610fb6565b6102c861040d366004613187565b61124c565b6102c86104203660046132d2565b611450565b61029d6104333660046131c8565b6114a5565b6102e1610446366004612f50565b6114b7565b6102c8611548565b6000546001600160a01b031661029d565b6102c86104723660046132d2565b61157e565b6016546104a79063ffffffff808216916401000000008104821691600160401b8204811691600160601b90041684565b6040805163ffffffff9586168152938516602085015291841691830191909152909116606082015260800161026c565b6104ea6104e53660046131c8565b6115ce565b6040805182516001600160a01b031681526020928301516001600160401b0316928101929092520161026c565b61027d6115eb565b6102e161052d366004612f50565b6001600160a01b03166000908152600c602052604090205490565b6102c86105563660046130b5565b6115fa565b6102c86116bf565b6102c8610571366004613287565b6117cb565b6102c8610584366004612fda565b6119b8565b61027d6105973660046131c8565b6119eb565b6102e160085481565b6102606105b3366004613265565b611ab8565b6102e16105c6366004612f50565b611ad8565b6102606105d9366004612f6b565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6102c8610615366004612f50565b611ae3565b60006001600160e01b031982166380ac58cd60e01b148061064b57506001600160e01b03198216635b5e139f60e01b145b8061066657506001600160e01b0319821663780e9d6360e01b145b8061068157506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461069690613532565b80601f01602080910402602001604051908101604052809291908181526020018280546106c290613532565b801561070f5780601f106106e45761010080835404028352916020019161070f565b820191906000526020600020905b8154815290600101906020018083116106f257829003601f168201915b5050505050905090565b6000610726826001541190565b61078d5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107b4826114a5565b9050806001600160a01b0316836001600160a01b031614156108235760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610784565b336001600160a01b038216148061083f575061083f81336105d9565b6108b15760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610784565b6108bc838383611b7e565b505050565b6000546001600160a01b031633146108eb5760405162461bcd60e51b8152600401610784906133a3565b601480546001600160a01b039384166001600160a01b03199182161790915560158054929093169116179055565b6000546001600160a01b031633146109435760405162461bcd60e51b8152600401610784906133a3565b81600214156109525760105550565b81600314156109615760115550565b81600414156109705760125550565b816006141561097f5760138190555b5050565b6108bc838383611bda565b6000546001600160a01b031633146109b85760405162461bcd60e51b8152600401610784906133a3565b601093909355601191909155601255601355565b6000546001600160a01b031633146109f65760405162461bcd60e51b8152600401610784906133a3565b60026009541415610a495760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610784565b6002600955610a5781611f5c565b506001600955565b323314610a7e5760405162461bcd60e51b81526004016107849061342b565b6040805160808101825260165463ffffffff808216835264010000000082048116602080850191909152600160401b83048216848601819052600160601b90930490911660608401819052336000908152600f9092529390205491929160ff16151560011415610b215760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481b5a5b9d195960921b6044820152606401610784565b838214610b7e5760405162461bcd60e51b815260206004820152602560248201527f63616c6c6564207769746820696e636f7272656374207075626c69632073616c60448201526465206b657960d81b6064820152608401610784565b610b888282611ab8565b610bd45760405162461bcd60e51b815260206004820152601d60248201527f7075626c69632073616c6520686173206e6f7420626567756e207965740000006044820152606401610784565b612710610be060015490565b600b546103e8600a54610bb8610bf691906134d8565b610c009190613484565b610c0a91906134d8565b610c149190613484565b610c1f906001613484565b1115610c625760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610784565b6006610c6d33611ad8565b610c78906001613484565b1115610cbf5760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b6044820152606401610784565b336000818152600f60205260409020805460ff19166001908117909155610ce69190612145565b50505050565b6000610cf7836114b7565b8210610d505760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610784565b6000610d5b60015490565b905060008060005b83811015610e04576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610db557805192505b876001600160a01b0316836001600160a01b03161415610df15786841415610de35750935061068192505050565b83610ded8161356d565b9450505b5080610dfc8161356d565b915050610d63565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610784565b6000546001600160a01b03163314610e8e5760405162461bcd60e51b8152600401610784906133a3565b6016805463ffffffff191663ffffffff92909216919091179055565b6108bc838383604051806020016040528060008152506119b8565b6000546001600160a01b03163314610eef5760405162461bcd60e51b8152600401610784906133a3565b6016805463ffffffff9092166401000000000267ffffffff0000000019909216919091179055565b6000610f2260015490565b8210610f7c5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610784565b5090565b6000546001600160a01b03163314610faa5760405162461bcd60e51b8152600401610784906133a3565b6108bc60178383612e63565b323314610fd55760405162461bcd60e51b81526004016107849061342b565b60165463ffffffff808216916401000000009004168115801590610ff95750814210155b6110455760405162461bcd60e51b815260206004820181905260248201527f616c6c6f776c6973742073616c6520686173206e6f7420626567756e207965746044820152606401610784565b804211156110955760405162461bcd60e51b815260206004820152601860248201527f616c6c6f776c6973742073616c652068617320656e64656400000000000000006044820152606401610784565b600086116110dd5760405162461bcd60e51b8152602060048201526015602482015274696e76616c6964206d696e74207175616e7469747960581b6044820152606401610784565b336000908152600c602052604090205483906110fa908890613484565b111561113d5760405162461bcd60e51b81526020600482015260126024820152711c995858da1959081c9bdb19481b1a5b5a5d60721b6044820152606401610784565b6127108661114a60015490565b600b546103e8600a54610bb861116091906134d8565b61116a9190613484565b61117491906134d8565b61117e9190613484565b6111889190613484565b11156111cb5760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610784565b6111d73386868661215f565b6112155760405162461bcd60e51b815260206004820152600f60248201526e1b9bdd08185b1b1bdddb1a5cdd1959608a1b6044820152606401610784565b336000908152600c602052604081208054889290611234908490613484565b9091555061124490503387612145565b505050505050565b32331461126b5760405162461bcd60e51b81526004016107849061342b565b336000908152600d602052604090205460ff161515600114156112c15760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481b5a5b9d195960921b6044820152606401610784565b61135782828080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250506040517f19457468657265756d205369676e6564204d6573736167653a0a333200000000602082015233603c820152605c0191506113339050565b604051602081830303815290604052805190602001206122e590919063ffffffff16565b6014546001600160a01b039081169116146113af5760405162461bcd60e51b815260206004820152601860248201527729b4b3b732b91030b2323932b9b99036b4b9b6b0ba31b41760411b6044820152606401610784565b610bb8600a5460016113c19190613484565b111561140f5760405162461bcd60e51b815260206004820152601e60248201527f72656163686564206d617820636f6e7472696275746f7220737570706c7900006044820152606401610784565b336000908152600d60205260408120805460ff19166001908117909155600a80549192909161143f908490613484565b9091555061097f9050336001612145565b6000546001600160a01b0316331461147a5760405162461bcd60e51b8152600401610784906133a3565b6016805463ffffffff909216600160401b026bffffffff000000000000000019909216919091179055565b60006114b082612309565b5192915050565b60006001600160a01b0382166115235760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610784565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b031633146115725760405162461bcd60e51b8152600401610784906133a3565b61157c60006124b2565b565b6000546001600160a01b031633146115a85760405162461bcd60e51b8152600401610784906133a3565b6016805463ffffffff909216600160601b0263ffffffff60601b19909216919091179055565b604080518082019091526000808252602082015261068182612309565b60606003805461069690613532565b6001600160a01b0382163314156116535760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610784565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146116e95760405162461bcd60e51b8152600401610784906133a3565b6002600954141561173c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610784565b6002600955604051600090339047908381818185875af1925050503d8060008114611783576040519150601f19603f3d011682016040523d82523d6000602084013e611788565b606091505b5050905080610a575760405162461bcd60e51b815260206004820152600f60248201526e1d1c985b9cd9995c8819985a5b1959608a1b6044820152606401610784565b3233146117ea5760405162461bcd60e51b81526004016107849061342b565b336000908152600e6020526040902054600590611808908590613484565b11156118475760405162461bcd60e51b815260206004820152600e60248201526d1c995858da195908081b1a5b5a5d60921b6044820152606401610784565b6118b982828080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250506040517f19457468657265756d205369676e6564204d6573736167653a0a333200000000602082015233603c820152605c0191506113339050565b6015546001600160a01b039081169116146119115760405162461bcd60e51b815260206004820152601860248201527729b4b3b732b91030b2323932b9b99036b4b9b6b0ba31b41760411b6044820152606401610784565b6103e883600b546119229190613484565b11156119705760405162461bcd60e51b815260206004820152601760248201527f72656163686564206d6178207465616d20737570706c790000000000000000006044820152606401610784565b336000908152600e60205260408120805485929061198f908490613484565b9250508190555082600b60008282546119a89190613484565b909155506108bc90503384612145565b6119c3848484611bda565b6119cf84848484612502565b610ce65760405162461bcd60e51b8152600401610784906133d8565b60606119f8826001541190565b611a5c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610784565b6000611a6661260c565b90506000815111611a865760405180602001604052806000815250611ab1565b80611a908461261b565b604051602001611aa1929190613324565b6040516020818303038152906040525b9392505050565b60008215801590611ac857508115155b8015611ab1575050421015919050565b600061068182612718565b6000546001600160a01b03163314611b0d5760405162461bcd60e51b8152600401610784906133a3565b6001600160a01b038116611b725760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610784565b611b7b816124b2565b50565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611be582612309565b80519091506000906001600160a01b0316336001600160a01b03161480611c1c575033611c1184610719565b6001600160a01b0316145b80611c2e57508151611c2e90336105d9565b905080611c985760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610784565b846001600160a01b031682600001516001600160a01b031614611d0c5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610784565b6001600160a01b038416611d705760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610784565b611d806000848460000151611b7e565b6001600160a01b0385166000908152600560205260408120805460019290611db29084906001600160801b03166134b0565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526005602052604081208054600194509092611dfe91859116613462565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611e85846001613484565b6000818152600460205260409020549091506001600160a01b0316611f1657611eaf816001541190565b15611f165760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611244565b60085481611fac5760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610784565b60006001611fba8484613484565b611fc491906134d8565b9050611ff160017f00000000000000000000000000000000000000000000000000000000000000006134d8565b8111156120265761202360017f00000000000000000000000000000000000000000000000000000000000000006134d8565b90505b612031816001541190565b61208c5760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610784565b815b818111612131576000818152600460205260409020546001600160a01b031661211f5760006120bc82612309565b60408051808201825282516001600160a01b0390811682526020938401516001600160401b039081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b806121298161356d565b91505061208e565b5061213d816001613484565b600855505050565b61097f8282604051806020016040528060008152506127b6565b6000806121a5866040516bffffffffffffffffffffffff19606083901b166020820152600090603401604051602081830303815290604052805190602001209050919050565b905082600214156121f9576121f1858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506010549150849050612a90565b9150506122dd565b8260031415612243576121f1858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506011549150849050612a90565b826004141561228d576121f1858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506012549150849050612a90565b82600614156122d7576121f1858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506013549150849050612a90565b60009150505b949350505050565b60008060006122f48585612aa6565b9150915061230181612b16565b509392505050565b6040805180820190915260008082526020820152612328826001541190565b6123875760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610784565b60007f000000000000000000000000000000000000000000000000000000000000000083106123e8576123da7f0000000000000000000000000000000000000000000000000000000000000000846134d8565b6123e5906001613484565b90505b825b818110612451576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561243e57949350505050565b50806124498161351b565b9150506123ea565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610784565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b1561260457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612546903390899088908890600401613353565b602060405180830381600087803b15801561256057600080fd5b505af1925050508015612590575060408051601f3d908101601f1916820190925261258d9181019061316a565b60015b6125ea573d8080156125be576040519150601f19603f3d011682016040523d82523d6000602084013e6125c3565b606091505b5080516125e25760405162461bcd60e51b8152600401610784906133d8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506122dd565b5060016122dd565b60606017805461069690613532565b60608161263f5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561266957806126538161356d565b91506126629050600a8361349c565b9150612643565b6000816001600160401b03811115612683576126836135f4565b6040519080825280601f01601f1916602001820160405280156126ad576020820181803683370190505b5090505b84156122dd576126c26001836134d8565b91506126cf600a86613588565b6126da906030613484565b60f81b8183815181106126ef576126ef6135de565b60200101906001600160f81b031916908160001a905350612711600a8661349c565b94506126b1565b60006001600160a01b03821661278a5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610784565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b0384166128195760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610784565b612824816001541190565b156128715760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610784565b7f00000000000000000000000000000000000000000000000000000000000000008311156128ec5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610784565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612948908790613462565b6001600160801b031681526020018583602001516129669190613462565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015612a855760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612a496000888488612502565b612a655760405162461bcd60e51b8152600401610784906133d8565b81612a6f8161356d565b9250508080612a7d9061356d565b9150506129fc565b506001819055611244565b600082612a9d8584612cd1565b14949350505050565b600080825160411415612add5760208301516040840151606085015160001a612ad187828585612d3d565b94509450505050612b0f565b825160401415612b075760208301516040840151612afc868383612e2a565b935093505050612b0f565b506000905060025b9250929050565b6000816004811115612b2a57612b2a6135c8565b1415612b335750565b6001816004811115612b4757612b476135c8565b1415612b955760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610784565b6002816004811115612ba957612ba96135c8565b1415612bf75760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610784565b6003816004811115612c0b57612c0b6135c8565b1415612c645760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610784565b6004816004811115612c7857612c786135c8565b1415611b7b5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610784565b600081815b8451811015612301576000858281518110612cf357612cf36135de565b60200260200101519050808311612d195760008381526020829052604090209250612d2a565b600081815260208490526040902092505b5080612d358161356d565b915050612cd6565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115612d745750600090506003612e21565b8460ff16601b14158015612d8c57508460ff16601c14155b15612d9d5750600090506004612e21565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612df1573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116612e1a57600060019250925050612e21565b9150600090505b94509492505050565b6000806001600160ff1b03831681612e4760ff86901c601b613484565b9050612e5587828885612d3d565b935093505050935093915050565b828054612e6f90613532565b90600052602060002090601f016020900481019282612e915760008555612ed7565b82601f10612eaa5782800160ff19823516178555612ed7565b82800160010185558215612ed7579182015b82811115612ed7578235825591602001919060010190612ebc565b50610f7c9291505b80821115610f7c5760008155600101612edf565b80356001600160a01b0381168114612f0a57600080fd5b919050565b60008083601f840112612f2157600080fd5b5081356001600160401b03811115612f3857600080fd5b602083019150836020828501011115612b0f57600080fd5b600060208284031215612f6257600080fd5b611ab182612ef3565b60008060408385031215612f7e57600080fd5b612f8783612ef3565b9150612f9560208401612ef3565b90509250929050565b600080600060608486031215612fb357600080fd5b612fbc84612ef3565b9250612fca60208501612ef3565b9150604084013590509250925092565b60008060008060808587031215612ff057600080fd5b612ff985612ef3565b935061300760208601612ef3565b92506040850135915060608501356001600160401b038082111561302a57600080fd5b818701915087601f83011261303e57600080fd5b813581811115613050576130506135f4565b604051601f8201601f19908116603f01168101908382118183101715613078576130786135f4565b816040528281528a602084870101111561309157600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156130c857600080fd5b6130d183612ef3565b9150602083013580151581146130e657600080fd5b809150509250929050565b6000806040838503121561310457600080fd5b61310d83612ef3565b946020939093013593505050565b6000806000806080858703121561313157600080fd5b5050823594602084013594506040840135936060013592509050565b60006020828403121561315f57600080fd5b8135611ab18161360a565b60006020828403121561317c57600080fd5b8151611ab18161360a565b6000806020838503121561319a57600080fd5b82356001600160401b038111156131b057600080fd5b6131bc85828601612f0f565b90969095509350505050565b6000602082840312156131da57600080fd5b5035919050565b600080600080606085870312156131f757600080fd5b8435935060208501356001600160401b038082111561321557600080fd5b818701915087601f83011261322957600080fd5b81358181111561323857600080fd5b8860208260051b850101111561324d57600080fd5b95986020929092019750949560400135945092505050565b6000806040838503121561327857600080fd5b50508035926020909101359150565b60008060006040848603121561329c57600080fd5b8335925060208401356001600160401b038111156132b957600080fd5b6132c586828701612f0f565b9497909650939450505050565b6000602082840312156132e457600080fd5b813563ffffffff81168114611ab157600080fd5b600081518084526133108160208601602086016134ef565b601f01601f19169290920160200192915050565b600083516133368184602088016134ef565b83519083019061334a8183602088016134ef565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613386908301846132f8565b9695505050505050565b602081526000611ab160208301846132f8565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601e908201527f7468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b60006001600160801b0380831681851680830382111561334a5761334a61359c565b600082198211156134975761349761359c565b500190565b6000826134ab576134ab6135b2565b500490565b60006001600160801b03838116908316818110156134d0576134d061359c565b039392505050565b6000828210156134ea576134ea61359c565b500390565b60005b8381101561350a5781810151838201526020016134f2565b83811115610ce65750506000910152565b60008161352a5761352a61359c565b506000190190565b600181811c9082168061354657607f821691505b6020821081141561356757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156135815761358161359c565b5060010190565b600082613597576135976135b2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611b7b57600080fdfea2646970667358221220a3695689eb1af73f69f3d71779b5e6492016076b2146fef676de2a4a058c726764736f6c63430008070033e454721281a704627e71447ddd7e071dca19bd576846fe7f032ee7da88dabf06e4a11691b21c3695eb91e47a099fa22254be83a72ec2840f794b5e892af36fb1c462e8dc1168500958c3d984997b9455066d8d64bf51c9de2bca5c54d53bb8c8954293f1484eb548ca06b914c2ca9df388b5907c57816dd9fead5c1cefe52ad9000000000000000000000000000000000000000000000000000000006284edd000000000000000000000000000000000000000000000000000000000628790d0000000000000000000000000000000000000000000000000000000006287910c0000000000000000000000000000000000000000000000000000000001348a6600000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000034687474703a2f2f7777772e6d656e646572636c75622e636f2f70726f642d6170692f70726f66696c652f6d656e6465726e66742f000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102485760003560e01c80635fd84c281161013b578063a22cb465116100b8578063d7224ba01161007c578063d7224ba01461059c578063dbcad76f146105a5578063dc33e681146105b8578063e985e9c5146105cb578063f2fde38b1461060757600080fd5b8063a22cb46514610548578063ac4460021461055b578063b6f194f414610563578063b88d4fde14610576578063c87b56dd1461058957600080fd5b806390028083116100ff578063900280831461046457806390aa0b0f146104775780639231ab2a146104d757806395d89b41146105175780639a97c8eb1461051f57600080fd5b80635fd84c28146104125780636352211e1461042557806370a0823114610438578063715018a61461044b5780638da5cb5b1461045357600080fd5b80632d20fb60116101c9578063453acecf1161018d578063453acecf146103b35780634f6ccce7146103c657806355f804b3146103d9578063570cc09c146103ec5780635c9109ab146103ff57600080fd5b80632d20fb60146103545780632db11544146103675780632f745c591461037a57806332c314e11461038d57806342842e0e146103a057600080fd5b806318160ddd1161021057806318160ddd146102dd57806318712c21146102ef57806323b872dd14610302578063288adbba1461031557806329c57ed21461034157600080fd5b806301ffc9a71461024d57806306fdde0314610275578063081812fc1461028a578063095ea7b3146102b557806317f9fad1146102ca575b600080fd5b61026061025b36600461314d565b61061a565b60405190151581526020015b60405180910390f35b61027d610687565b60405161026c9190613390565b61029d6102983660046131c8565b610719565b6040516001600160a01b03909116815260200161026c565b6102c86102c33660046130f1565b6107a9565b005b6102c86102d8366004612f6b565b6108c1565b6001545b60405190815260200161026c565b6102c86102fd366004613265565b610919565b6102c8610310366004612f9e565b610983565b610260610323366004612f50565b6001600160a01b03166000908152600d602052604090205460ff1690565b6102c861034f36600461311b565b61098e565b6102c86103623660046131c8565b6109cc565b6102c86103753660046131c8565b610a5f565b6102e16103883660046130f1565b610cec565b6102c861039b3660046132d2565b610e64565b6102c86103ae366004612f9e565b610eaa565b6102c86103c13660046132d2565b610ec5565b6102e16103d43660046131c8565b610f17565b6102c86103e7366004613187565b610f80565b6102c86103fa3660046131e1565b610fb6565b6102c861040d366004613187565b61124c565b6102c86104203660046132d2565b611450565b61029d6104333660046131c8565b6114a5565b6102e1610446366004612f50565b6114b7565b6102c8611548565b6000546001600160a01b031661029d565b6102c86104723660046132d2565b61157e565b6016546104a79063ffffffff808216916401000000008104821691600160401b8204811691600160601b90041684565b6040805163ffffffff9586168152938516602085015291841691830191909152909116606082015260800161026c565b6104ea6104e53660046131c8565b6115ce565b6040805182516001600160a01b031681526020928301516001600160401b0316928101929092520161026c565b61027d6115eb565b6102e161052d366004612f50565b6001600160a01b03166000908152600c602052604090205490565b6102c86105563660046130b5565b6115fa565b6102c86116bf565b6102c8610571366004613287565b6117cb565b6102c8610584366004612fda565b6119b8565b61027d6105973660046131c8565b6119eb565b6102e160085481565b6102606105b3366004613265565b611ab8565b6102e16105c6366004612f50565b611ad8565b6102606105d9366004612f6b565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6102c8610615366004612f50565b611ae3565b60006001600160e01b031982166380ac58cd60e01b148061064b57506001600160e01b03198216635b5e139f60e01b145b8061066657506001600160e01b0319821663780e9d6360e01b145b8061068157506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461069690613532565b80601f01602080910402602001604051908101604052809291908181526020018280546106c290613532565b801561070f5780601f106106e45761010080835404028352916020019161070f565b820191906000526020600020905b8154815290600101906020018083116106f257829003601f168201915b5050505050905090565b6000610726826001541190565b61078d5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107b4826114a5565b9050806001600160a01b0316836001600160a01b031614156108235760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610784565b336001600160a01b038216148061083f575061083f81336105d9565b6108b15760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610784565b6108bc838383611b7e565b505050565b6000546001600160a01b031633146108eb5760405162461bcd60e51b8152600401610784906133a3565b601480546001600160a01b039384166001600160a01b03199182161790915560158054929093169116179055565b6000546001600160a01b031633146109435760405162461bcd60e51b8152600401610784906133a3565b81600214156109525760105550565b81600314156109615760115550565b81600414156109705760125550565b816006141561097f5760138190555b5050565b6108bc838383611bda565b6000546001600160a01b031633146109b85760405162461bcd60e51b8152600401610784906133a3565b601093909355601191909155601255601355565b6000546001600160a01b031633146109f65760405162461bcd60e51b8152600401610784906133a3565b60026009541415610a495760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610784565b6002600955610a5781611f5c565b506001600955565b323314610a7e5760405162461bcd60e51b81526004016107849061342b565b6040805160808101825260165463ffffffff808216835264010000000082048116602080850191909152600160401b83048216848601819052600160601b90930490911660608401819052336000908152600f9092529390205491929160ff16151560011415610b215760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481b5a5b9d195960921b6044820152606401610784565b838214610b7e5760405162461bcd60e51b815260206004820152602560248201527f63616c6c6564207769746820696e636f7272656374207075626c69632073616c60448201526465206b657960d81b6064820152608401610784565b610b888282611ab8565b610bd45760405162461bcd60e51b815260206004820152601d60248201527f7075626c69632073616c6520686173206e6f7420626567756e207965740000006044820152606401610784565b612710610be060015490565b600b546103e8600a54610bb8610bf691906134d8565b610c009190613484565b610c0a91906134d8565b610c149190613484565b610c1f906001613484565b1115610c625760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610784565b6006610c6d33611ad8565b610c78906001613484565b1115610cbf5760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b6044820152606401610784565b336000818152600f60205260409020805460ff19166001908117909155610ce69190612145565b50505050565b6000610cf7836114b7565b8210610d505760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610784565b6000610d5b60015490565b905060008060005b83811015610e04576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610db557805192505b876001600160a01b0316836001600160a01b03161415610df15786841415610de35750935061068192505050565b83610ded8161356d565b9450505b5080610dfc8161356d565b915050610d63565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610784565b6000546001600160a01b03163314610e8e5760405162461bcd60e51b8152600401610784906133a3565b6016805463ffffffff191663ffffffff92909216919091179055565b6108bc838383604051806020016040528060008152506119b8565b6000546001600160a01b03163314610eef5760405162461bcd60e51b8152600401610784906133a3565b6016805463ffffffff9092166401000000000267ffffffff0000000019909216919091179055565b6000610f2260015490565b8210610f7c5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610784565b5090565b6000546001600160a01b03163314610faa5760405162461bcd60e51b8152600401610784906133a3565b6108bc60178383612e63565b323314610fd55760405162461bcd60e51b81526004016107849061342b565b60165463ffffffff808216916401000000009004168115801590610ff95750814210155b6110455760405162461bcd60e51b815260206004820181905260248201527f616c6c6f776c6973742073616c6520686173206e6f7420626567756e207965746044820152606401610784565b804211156110955760405162461bcd60e51b815260206004820152601860248201527f616c6c6f776c6973742073616c652068617320656e64656400000000000000006044820152606401610784565b600086116110dd5760405162461bcd60e51b8152602060048201526015602482015274696e76616c6964206d696e74207175616e7469747960581b6044820152606401610784565b336000908152600c602052604090205483906110fa908890613484565b111561113d5760405162461bcd60e51b81526020600482015260126024820152711c995858da1959081c9bdb19481b1a5b5a5d60721b6044820152606401610784565b6127108661114a60015490565b600b546103e8600a54610bb861116091906134d8565b61116a9190613484565b61117491906134d8565b61117e9190613484565b6111889190613484565b11156111cb5760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610784565b6111d73386868661215f565b6112155760405162461bcd60e51b815260206004820152600f60248201526e1b9bdd08185b1b1bdddb1a5cdd1959608a1b6044820152606401610784565b336000908152600c602052604081208054889290611234908490613484565b9091555061124490503387612145565b505050505050565b32331461126b5760405162461bcd60e51b81526004016107849061342b565b336000908152600d602052604090205460ff161515600114156112c15760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481b5a5b9d195960921b6044820152606401610784565b61135782828080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250506040517f19457468657265756d205369676e6564204d6573736167653a0a333200000000602082015233603c820152605c0191506113339050565b604051602081830303815290604052805190602001206122e590919063ffffffff16565b6014546001600160a01b039081169116146113af5760405162461bcd60e51b815260206004820152601860248201527729b4b3b732b91030b2323932b9b99036b4b9b6b0ba31b41760411b6044820152606401610784565b610bb8600a5460016113c19190613484565b111561140f5760405162461bcd60e51b815260206004820152601e60248201527f72656163686564206d617820636f6e7472696275746f7220737570706c7900006044820152606401610784565b336000908152600d60205260408120805460ff19166001908117909155600a80549192909161143f908490613484565b9091555061097f9050336001612145565b6000546001600160a01b0316331461147a5760405162461bcd60e51b8152600401610784906133a3565b6016805463ffffffff909216600160401b026bffffffff000000000000000019909216919091179055565b60006114b082612309565b5192915050565b60006001600160a01b0382166115235760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610784565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b031633146115725760405162461bcd60e51b8152600401610784906133a3565b61157c60006124b2565b565b6000546001600160a01b031633146115a85760405162461bcd60e51b8152600401610784906133a3565b6016805463ffffffff909216600160601b0263ffffffff60601b19909216919091179055565b604080518082019091526000808252602082015261068182612309565b60606003805461069690613532565b6001600160a01b0382163314156116535760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610784565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146116e95760405162461bcd60e51b8152600401610784906133a3565b6002600954141561173c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610784565b6002600955604051600090339047908381818185875af1925050503d8060008114611783576040519150601f19603f3d011682016040523d82523d6000602084013e611788565b606091505b5050905080610a575760405162461bcd60e51b815260206004820152600f60248201526e1d1c985b9cd9995c8819985a5b1959608a1b6044820152606401610784565b3233146117ea5760405162461bcd60e51b81526004016107849061342b565b336000908152600e6020526040902054600590611808908590613484565b11156118475760405162461bcd60e51b815260206004820152600e60248201526d1c995858da195908081b1a5b5a5d60921b6044820152606401610784565b6118b982828080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250506040517f19457468657265756d205369676e6564204d6573736167653a0a333200000000602082015233603c820152605c0191506113339050565b6015546001600160a01b039081169116146119115760405162461bcd60e51b815260206004820152601860248201527729b4b3b732b91030b2323932b9b99036b4b9b6b0ba31b41760411b6044820152606401610784565b6103e883600b546119229190613484565b11156119705760405162461bcd60e51b815260206004820152601760248201527f72656163686564206d6178207465616d20737570706c790000000000000000006044820152606401610784565b336000908152600e60205260408120805485929061198f908490613484565b9250508190555082600b60008282546119a89190613484565b909155506108bc90503384612145565b6119c3848484611bda565b6119cf84848484612502565b610ce65760405162461bcd60e51b8152600401610784906133d8565b60606119f8826001541190565b611a5c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610784565b6000611a6661260c565b90506000815111611a865760405180602001604052806000815250611ab1565b80611a908461261b565b604051602001611aa1929190613324565b6040516020818303038152906040525b9392505050565b60008215801590611ac857508115155b8015611ab1575050421015919050565b600061068182612718565b6000546001600160a01b03163314611b0d5760405162461bcd60e51b8152600401610784906133a3565b6001600160a01b038116611b725760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610784565b611b7b816124b2565b50565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611be582612309565b80519091506000906001600160a01b0316336001600160a01b03161480611c1c575033611c1184610719565b6001600160a01b0316145b80611c2e57508151611c2e90336105d9565b905080611c985760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610784565b846001600160a01b031682600001516001600160a01b031614611d0c5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610784565b6001600160a01b038416611d705760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610784565b611d806000848460000151611b7e565b6001600160a01b0385166000908152600560205260408120805460019290611db29084906001600160801b03166134b0565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526005602052604081208054600194509092611dfe91859116613462565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611e85846001613484565b6000818152600460205260409020549091506001600160a01b0316611f1657611eaf816001541190565b15611f165760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611244565b60085481611fac5760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610784565b60006001611fba8484613484565b611fc491906134d8565b9050611ff160017f00000000000000000000000000000000000000000000000000000000000027106134d8565b8111156120265761202360017f00000000000000000000000000000000000000000000000000000000000027106134d8565b90505b612031816001541190565b61208c5760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610784565b815b818111612131576000818152600460205260409020546001600160a01b031661211f5760006120bc82612309565b60408051808201825282516001600160a01b0390811682526020938401516001600160401b039081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b806121298161356d565b91505061208e565b5061213d816001613484565b600855505050565b61097f8282604051806020016040528060008152506127b6565b6000806121a5866040516bffffffffffffffffffffffff19606083901b166020820152600090603401604051602081830303815290604052805190602001209050919050565b905082600214156121f9576121f1858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506010549150849050612a90565b9150506122dd565b8260031415612243576121f1858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506011549150849050612a90565b826004141561228d576121f1858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506012549150849050612a90565b82600614156122d7576121f1858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506013549150849050612a90565b60009150505b949350505050565b60008060006122f48585612aa6565b9150915061230181612b16565b509392505050565b6040805180820190915260008082526020820152612328826001541190565b6123875760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610784565b60007f000000000000000000000000000000000000000000000000000000000000000683106123e8576123da7f0000000000000000000000000000000000000000000000000000000000000006846134d8565b6123e5906001613484565b90505b825b818110612451576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561243e57949350505050565b50806124498161351b565b9150506123ea565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610784565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b1561260457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612546903390899088908890600401613353565b602060405180830381600087803b15801561256057600080fd5b505af1925050508015612590575060408051601f3d908101601f1916820190925261258d9181019061316a565b60015b6125ea573d8080156125be576040519150601f19603f3d011682016040523d82523d6000602084013e6125c3565b606091505b5080516125e25760405162461bcd60e51b8152600401610784906133d8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506122dd565b5060016122dd565b60606017805461069690613532565b60608161263f5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561266957806126538161356d565b91506126629050600a8361349c565b9150612643565b6000816001600160401b03811115612683576126836135f4565b6040519080825280601f01601f1916602001820160405280156126ad576020820181803683370190505b5090505b84156122dd576126c26001836134d8565b91506126cf600a86613588565b6126da906030613484565b60f81b8183815181106126ef576126ef6135de565b60200101906001600160f81b031916908160001a905350612711600a8661349c565b94506126b1565b60006001600160a01b03821661278a5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610784565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b0384166128195760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610784565b612824816001541190565b156128715760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610784565b7f00000000000000000000000000000000000000000000000000000000000000068311156128ec5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610784565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612948908790613462565b6001600160801b031681526020018583602001516129669190613462565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015612a855760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612a496000888488612502565b612a655760405162461bcd60e51b8152600401610784906133d8565b81612a6f8161356d565b9250508080612a7d9061356d565b9150506129fc565b506001819055611244565b600082612a9d8584612cd1565b14949350505050565b600080825160411415612add5760208301516040840151606085015160001a612ad187828585612d3d565b94509450505050612b0f565b825160401415612b075760208301516040840151612afc868383612e2a565b935093505050612b0f565b506000905060025b9250929050565b6000816004811115612b2a57612b2a6135c8565b1415612b335750565b6001816004811115612b4757612b476135c8565b1415612b955760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610784565b6002816004811115612ba957612ba96135c8565b1415612bf75760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610784565b6003816004811115612c0b57612c0b6135c8565b1415612c645760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610784565b6004816004811115612c7857612c786135c8565b1415611b7b5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610784565b600081815b8451811015612301576000858281518110612cf357612cf36135de565b60200260200101519050808311612d195760008381526020829052604090209250612d2a565b600081815260208490526040902092505b5080612d358161356d565b915050612cd6565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115612d745750600090506003612e21565b8460ff16601b14158015612d8c57508460ff16601c14155b15612d9d5750600090506004612e21565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612df1573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116612e1a57600060019250925050612e21565b9150600090505b94509492505050565b6000806001600160ff1b03831681612e4760ff86901c601b613484565b9050612e5587828885612d3d565b935093505050935093915050565b828054612e6f90613532565b90600052602060002090601f016020900481019282612e915760008555612ed7565b82601f10612eaa5782800160ff19823516178555612ed7565b82800160010185558215612ed7579182015b82811115612ed7578235825591602001919060010190612ebc565b50610f7c9291505b80821115610f7c5760008155600101612edf565b80356001600160a01b0381168114612f0a57600080fd5b919050565b60008083601f840112612f2157600080fd5b5081356001600160401b03811115612f3857600080fd5b602083019150836020828501011115612b0f57600080fd5b600060208284031215612f6257600080fd5b611ab182612ef3565b60008060408385031215612f7e57600080fd5b612f8783612ef3565b9150612f9560208401612ef3565b90509250929050565b600080600060608486031215612fb357600080fd5b612fbc84612ef3565b9250612fca60208501612ef3565b9150604084013590509250925092565b60008060008060808587031215612ff057600080fd5b612ff985612ef3565b935061300760208601612ef3565b92506040850135915060608501356001600160401b038082111561302a57600080fd5b818701915087601f83011261303e57600080fd5b813581811115613050576130506135f4565b604051601f8201601f19908116603f01168101908382118183101715613078576130786135f4565b816040528281528a602084870101111561309157600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156130c857600080fd5b6130d183612ef3565b9150602083013580151581146130e657600080fd5b809150509250929050565b6000806040838503121561310457600080fd5b61310d83612ef3565b946020939093013593505050565b6000806000806080858703121561313157600080fd5b5050823594602084013594506040840135936060013592509050565b60006020828403121561315f57600080fd5b8135611ab18161360a565b60006020828403121561317c57600080fd5b8151611ab18161360a565b6000806020838503121561319a57600080fd5b82356001600160401b038111156131b057600080fd5b6131bc85828601612f0f565b90969095509350505050565b6000602082840312156131da57600080fd5b5035919050565b600080600080606085870312156131f757600080fd5b8435935060208501356001600160401b038082111561321557600080fd5b818701915087601f83011261322957600080fd5b81358181111561323857600080fd5b8860208260051b850101111561324d57600080fd5b95986020929092019750949560400135945092505050565b6000806040838503121561327857600080fd5b50508035926020909101359150565b60008060006040848603121561329c57600080fd5b8335925060208401356001600160401b038111156132b957600080fd5b6132c586828701612f0f565b9497909650939450505050565b6000602082840312156132e457600080fd5b813563ffffffff81168114611ab157600080fd5b600081518084526133108160208601602086016134ef565b601f01601f19169290920160200192915050565b600083516133368184602088016134ef565b83519083019061334a8183602088016134ef565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613386908301846132f8565b9695505050505050565b602081526000611ab160208301846132f8565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601e908201527f7468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b60006001600160801b0380831681851680830382111561334a5761334a61359c565b600082198211156134975761349761359c565b500190565b6000826134ab576134ab6135b2565b500490565b60006001600160801b03838116908316818110156134d0576134d061359c565b039392505050565b6000828210156134ea576134ea61359c565b500390565b60005b8381101561350a5781810151838201526020016134f2565b83811115610ce65750506000910152565b60008161352a5761352a61359c565b506000190190565b600181811c9082168061354657607f821691505b6020821081141561356757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156135815761358161359c565b5060010190565b600082613597576135976135b2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611b7b57600080fdfea2646970667358221220a3695689eb1af73f69f3d71779b5e6492016076b2146fef676de2a4a058c726764736f6c63430008070033

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

e454721281a704627e71447ddd7e071dca19bd576846fe7f032ee7da88dabf06e4a11691b21c3695eb91e47a099fa22254be83a72ec2840f794b5e892af36fb1c462e8dc1168500958c3d984997b9455066d8d64bf51c9de2bca5c54d53bb8c8954293f1484eb548ca06b914c2ca9df388b5907c57816dd9fead5c1cefe52ad9000000000000000000000000000000000000000000000000000000006284edd000000000000000000000000000000000000000000000000000000000628790d0000000000000000000000000000000000000000000000000000000006287910c0000000000000000000000000000000000000000000000000000000001348a6600000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000034687474703a2f2f7777772e6d656e646572636c75622e636f2f70726f642d6170692f70726f66696c652f6d656e6465726e66742f000000000000000000000000

-----Decoded View---------------
Arg [0] : merkleRootRole2_ (bytes32): 0xe454721281a704627e71447ddd7e071dca19bd576846fe7f032ee7da88dabf06
Arg [1] : merkleRootRole3_ (bytes32): 0xe4a11691b21c3695eb91e47a099fa22254be83a72ec2840f794b5e892af36fb1
Arg [2] : merkleRootRole4_ (bytes32): 0xc462e8dc1168500958c3d984997b9455066d8d64bf51c9de2bca5c54d53bb8c8
Arg [3] : merkleRootRole6_ (bytes32): 0x954293f1484eb548ca06b914c2ca9df388b5907c57816dd9fead5c1cefe52ad9
Arg [4] : allowlistSaleStartTime_ (uint32): 1652878800
Arg [5] : allowlistSaleEndTime_ (uint32): 1653051600
Arg [6] : publicSaleStartTime_ (uint32): 1653051660
Arg [7] : publicSaleKey_ (uint32): 20220518
Arg [8] : baseURI_ (string): http://www.menderclub.co/prod-api/profile/mendernft/

-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : e454721281a704627e71447ddd7e071dca19bd576846fe7f032ee7da88dabf06
Arg [1] : e4a11691b21c3695eb91e47a099fa22254be83a72ec2840f794b5e892af36fb1
Arg [2] : c462e8dc1168500958c3d984997b9455066d8d64bf51c9de2bca5c54d53bb8c8
Arg [3] : 954293f1484eb548ca06b914c2ca9df388b5907c57816dd9fead5c1cefe52ad9
Arg [4] : 000000000000000000000000000000000000000000000000000000006284edd0
Arg [5] : 00000000000000000000000000000000000000000000000000000000628790d0
Arg [6] : 000000000000000000000000000000000000000000000000000000006287910c
Arg [7] : 0000000000000000000000000000000000000000000000000000000001348a66
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000034
Arg [10] : 687474703a2f2f7777772e6d656e646572636c75622e636f2f70726f642d6170
Arg [11] : 692f70726f66696c652f6d656e6465726e66742f000000000000000000000000


Deployed Bytecode Sourcemap

54894:8467:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39985:370;;;;;;:::i;:::-;;:::i;:::-;;;9452:14:1;;9445:22;9427:41;;9415:2;9400:18;39985:370:0;;;;;;;;41711:94;;;:::i;:::-;;;;;;;:::i;43236:204::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8750:32:1;;;8732:51;;8720:2;8705:18;43236:204:0;8586:203:1;42799:379:0;;;;;;:::i;:::-;;:::i;:::-;;62412:153;;;;;;:::i;:::-;;:::i;38546:94::-;38622:12;;38546:94;;;27404:25:1;;;27392:2;27377:18;38546:94:0;27258:177:1;60981:351:0;;;;;;:::i;:::-;;:::i;44086:142::-;;;;;;:::i;:::-;;:::i;63118:105::-;;;;;;:::i;:::-;-1:-1:-1;;;;;63198:19:0;63178:4;63198:19;;;:12;:19;;;;;;;;;63118:105;61338:344;;;;;;:::i;:::-;;:::i;62757:118::-;;;;;;:::i;:::-;;:::i;59932:826::-;;;;;;:::i;:::-;;:::i;39177:744::-;;;;;;:::i;:::-;;:::i;61688:130::-;;;;;;:::i;:::-;;:::i;44291:157::-;;;;;;:::i;:::-;;:::i;61824:126::-;;;;;;:::i;:::-;;:::i;38709:177::-;;;;;;:::i;:::-;;:::i;62192:100::-;;;;;;:::i;:::-;;:::i;57619:976::-;;;;;;:::i;:::-;;:::i;58601:639::-;;;;;;:::i;:::-;;:::i;61956:124::-;;;;;;:::i;:::-;;:::i;41534:118::-;;;;;;:::i;:::-;;:::i;40411:211::-;;;;;;:::i;:::-;;:::i;54000:103::-;;;:::i;53349:87::-;53395:7;53422:6;-1:-1:-1;;;;;53422:6:0;53349:87;;62086:100;;;;;;:::i;:::-;;:::i;55867:28::-;;;;;;;;;;;;;;;;-1:-1:-1;;;55867:28:0;;;;;-1:-1:-1;;;55867:28:0;;;;;;;;;27673:10:1;27710:15;;;27692:34;;27762:15;;;27757:2;27742:18;;27735:43;27814:15;;;27794:18;;;27787:43;;;;27866:15;;;27861:2;27846:18;;27839:43;27650:3;27635:19;55867:28:0;27440:448:1;63229:129:0;;;;;;:::i;:::-;;:::i;:::-;;;;27123:13:1;;-1:-1:-1;;;;;27119:39:1;27101:58;;27219:4;27207:17;;;27201:24;-1:-1:-1;;;;;27197:49:1;27175:20;;;27168:79;;;;27074:18;63229:129:0;26891:362:1;41866:98:0;;;:::i;62994:118::-;;;;;;:::i;:::-;-1:-1:-1;;;;;63084:22:0;63061:7;63084:22;;;:15;:22;;;;;;;62994:118;43504:274;;;;;;:::i;:::-;;:::i;62571:180::-;;;:::i;59246:680::-;;;;;;:::i;:::-;;:::i;44511:311::-;;;;;;:::i;:::-;;:::i;42027:394::-;;;;;;:::i;:::-;;:::i;48926:43::-;;;;;;60764:211;;;;;;:::i;:::-;;:::i;62881:107::-;;;;;;:::i;:::-;;:::i;43841:186::-;;;;;;:::i;:::-;-1:-1:-1;;;;;43986:25:0;;;43963:4;43986:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;43841:186;54258:201;;;;;;:::i;:::-;;:::i;39985:370::-;40112:4;-1:-1:-1;;;;;;40142:40:0;;-1:-1:-1;;;40142:40:0;;:99;;-1:-1:-1;;;;;;;40193:48:0;;-1:-1:-1;;;40193:48:0;40142:99;:160;;;-1:-1:-1;;;;;;;40252:50:0;;-1:-1:-1;;;40252:50:0;40142:160;:207;;;-1:-1:-1;;;;;;;;;;11425:40:0;;;40313:36;40128:221;39985:370;-1:-1:-1;;39985:370:0:o;41711:94::-;41765:13;41794:5;41787:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41711:94;:::o;43236:204::-;43304:7;43328:16;43336:7;45148:12;;-1:-1:-1;45138:22:0;45061:105;43328:16;43320:74;;;;-1:-1:-1;;;43320:74:0;;25933:2:1;43320:74:0;;;25915:21:1;25972:2;25952:18;;;25945:30;26011:34;25991:18;;;25984:62;-1:-1:-1;;;26062:18:1;;;26055:43;26115:19;;43320:74:0;;;;;;;;;-1:-1:-1;43410:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;43410:24:0;;43236:204::o;42799:379::-;42868:13;42884:24;42900:7;42884:15;:24::i;:::-;42868:40;;42929:5;-1:-1:-1;;;;;42923:11:0;:2;-1:-1:-1;;;;;42923:11:0;;;42915:58;;;;-1:-1:-1;;;42915:58:0;;21698:2:1;42915:58:0;;;21680:21:1;21737:2;21717:18;;;21710:30;21776:34;21756:18;;;21749:62;-1:-1:-1;;;21827:18:1;;;21820:32;21869:19;;42915:58:0;21496:398:1;42915:58:0;36096:10;-1:-1:-1;;;;;42998:21:0;;;;:62;;-1:-1:-1;43023:37:0;43040:5;36096:10;43841:186;:::i;43023:37::-;42982:153;;;;-1:-1:-1;;;42982:153:0;;16031:2:1;42982:153:0;;;16013:21:1;16070:2;16050:18;;;16043:30;16109:34;16089:18;;;16082:62;16180:27;16160:18;;;16153:55;16225:19;;42982:153:0;15829:421:1;42982:153:0;43144:28;43153:2;43157:7;43166:5;43144:8;:28::i;:::-;42861:317;42799:379;;:::o;62412:153::-;53395:7;53422:6;-1:-1:-1;;;;;53422:6:0;36096:10;53569:23;53561:68;;;;-1:-1:-1;;;53561:68:0;;;;;;;:::i;:::-;62500:12:::1;:28:::0;;-1:-1:-1;;;;;62500:28:0;;::::1;-1:-1:-1::0;;;;;;62500:28:0;;::::1;;::::0;;;62535:10:::1;:24:::0;;;;;::::1;::::0;::::1;;::::0;;62412:153::o;60981:351::-;53395:7;53422:6;-1:-1:-1;;;;;53422:6:0;36096:10;53569:23;53561:68;;;;-1:-1:-1;;;53561:68:0;;;;;;;:::i;:::-;61069:4:::1;61077:1;61069:9;61065:262;;;61089:15;:29:::0;-1:-1:-1;60981:351:0:o;61065:262::-:1;61136:4;61144:1;61136:9;61132:195;;;61156:15;:29:::0;-1:-1:-1;60981:351:0:o;61132:195::-:1;61203:4;61211:1;61203:9;61199:128;;;61223:15;:29:::0;-1:-1:-1;60981:351:0:o;61199:128::-:1;61270:4;61278:1;61270:9;61266:61;;;61290:15;:29:::0;;;61266:61:::1;60981:351:::0;;:::o;44086:142::-;44194:28;44204:4;44210:2;44214:7;44194:9;:28::i;61338:344::-;53395:7;53422:6;-1:-1:-1;;;;;53422:6:0;36096:10;53569:23;53561:68;;;;-1:-1:-1;;;53561:68:0;;;;;;;:::i;:::-;61519:15:::1;:34:::0;;;;61560:15:::1;:34:::0;;;;61601:15:::1;:34:::0;61642:15:::1;:34:::0;61338:344::o;62757:118::-;53395:7;53422:6;-1:-1:-1;;;;;53422:6:0;36096:10;53569:23;53561:68;;;;-1:-1:-1;;;53561:68:0;;;;;;;:::i;:::-;34390:1:::1;34988:7;;:19;;34980:63;;;::::0;-1:-1:-1;;;34980:63:0;;25157:2:1;34980:63:0::1;::::0;::::1;25139:21:1::0;25196:2;25176:18;;;25169:30;25235:33;25215:18;;;25208:61;25286:18;;34980:63:0::1;24955:355:1::0;34980:63:0::1;34390:1;35121:7;:18:::0;62841:28:::2;62860:8:::0;62841:18:::2;:28::i;:::-;-1:-1:-1::0;34346:1:0::1;35300:7;:22:::0;62757:118::o;59932:826::-;56812:9;56825:10;56812:23;56804:66;;;;-1:-1:-1;;;56804:66:0;;;;;;;:::i;:::-;60011:37:::1;::::0;;::::1;::::0;::::1;::::0;;60038:10:::1;60011:37:::0;::::1;::::0;;::::1;::::0;;;;::::1;::::0;::::1;;::::0;;::::1;::::0;;;;-1:-1:-1;;;60011:37:0;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;;;60011:37:0;;::::1;::::0;;::::1;::::0;;;;;;60208:10:::1;60011:24;60195::::0;;;:12:::1;:24:::0;;;;;;;60011:37;;;60195:24:::1;;:32;;60011:37:::0;60195:32:::1;;60187:59;;;::::0;-1:-1:-1;;;60187:59:0;;26750:2:1;60187:59:0::1;::::0;::::1;26732:21:1::0;26789:2;26769:18;;;26762:30;-1:-1:-1;;;26808:18:1;;;26801:44;26862:18;;60187:59:0::1;26548:338:1::0;60187:59:0::1;60278:20;60261:13;:37;60253:87;;;::::0;-1:-1:-1;;;60253:87:0;;15625:2:1;60253:87:0::1;::::0;::::1;15607:21:1::0;15664:2;15644:18;;;15637:30;15703:34;15683:18;;;15676:62;-1:-1:-1;;;15754:18:1;;;15747:35;15799:19;;60253:87:0::1;15423:401:1::0;60253:87:0::1;60355:50;60370:13;60385:19;60355:14;:50::i;:::-;60347:92;;;::::0;-1:-1:-1;;;60347:92:0;;21340:2:1;60347:92:0::1;::::0;::::1;21322:21:1::0;21379:2;21359:18;;;21352:30;21418:31;21398:18;;;21391:59;21467:18;;60347:92:0::1;21138:353:1::0;60347:92:0::1;55186:5;60523:13;38622:12:::0;;;38546:94;60523:13:::1;60505:15;;55133:4;60472:17;;55086:4;60454:35;;;;:::i;:::-;:48;;;;:::i;:::-;:66;;;;:::i;:::-;:82;;;;:::i;:::-;:86;::::0;60539:1:::1;60454:86;:::i;:::-;:106;;60446:137;;;::::0;-1:-1:-1;;;60446:137:0;;17625:2:1;60446:137:0::1;::::0;::::1;17607:21:1::0;17664:2;17644:18;;;17637:30;-1:-1:-1;;;17683:18:1;;;17676:48;17741:18;;60446:137:0::1;17423:342:1::0;60446:137:0::1;55037:1;60598:24;60611:10;60598:12;:24::i;:::-;:28;::::0;60625:1:::1;60598:28;:::i;:::-;:58;;60590:93;;;::::0;-1:-1:-1;;;60590:93:0;;23281:2:1;60590:93:0::1;::::0;::::1;23263:21:1::0;23320:2;23300:18;;;23293:30;-1:-1:-1;;;23339:18:1;;;23332:52;23401:18;;60590:93:0::1;23079:346:1::0;60590:93:0::1;60703:10;60690:24;::::0;;;:12:::1;:24;::::0;;;;:31;;-1:-1:-1;;60690:31:0::1;60717:4;60690:31:::0;;::::1;::::0;;;60728:24:::1;::::0;60703:10;60728:9:::1;:24::i;:::-;60004:754;;;59932:826:::0;:::o;39177:744::-;39286:7;39321:16;39331:5;39321:9;:16::i;:::-;39313:5;:24;39305:71;;;;-1:-1:-1;;;39305:71:0;;10661:2:1;39305:71:0;;;10643:21:1;10700:2;10680:18;;;10673:30;10739:34;10719:18;;;10712:62;-1:-1:-1;;;10790:18:1;;;10783:32;10832:19;;39305:71:0;10459:398:1;39305:71:0;39383:22;39408:13;38622:12;;;38546:94;39408:13;39383:38;;39428:19;39458:25;39508:9;39503:350;39527:14;39523:1;:18;39503:350;;;39557:31;39591:14;;;:11;:14;;;;;;;;;39557:48;;;;;;;;;-1:-1:-1;;;;;39557:48:0;;;;;-1:-1:-1;;;39557:48:0;;;-1:-1:-1;;;;;39557:48:0;;;;;;;;39618:28;39614:89;;39679:14;;;-1:-1:-1;39614:89:0;39736:5;-1:-1:-1;;;;;39715:26:0;:17;-1:-1:-1;;;;;39715:26:0;;39711:135;;;39773:5;39758:11;:20;39754:59;;;-1:-1:-1;39800:1:0;-1:-1:-1;39793:8:0;;-1:-1:-1;;;39793:8:0;39754:59;39823:13;;;;:::i;:::-;;;;39711:135;-1:-1:-1;39543:3:0;;;;:::i;:::-;;;;39503:350;;;-1:-1:-1;39859:56:0;;-1:-1:-1;;;39859:56:0;;24335:2:1;39859:56:0;;;24317:21:1;24374:2;24354:18;;;24347:30;24413:34;24393:18;;;24386:62;-1:-1:-1;;;24464:18:1;;;24457:44;24518:19;;39859:56:0;24133:410:1;61688:130:0;53395:7;53422:6;-1:-1:-1;;;;;53422:6:0;36096:10;53569:23;53561:68;;;;-1:-1:-1;;;53561:68:0;;;;;;;:::i;:::-;61767:10:::1;:45:::0;;-1:-1:-1;;61767:45:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;61688:130::o;44291:157::-;44403:39;44420:4;44426:2;44430:7;44403:39;;;;;;;;;;;;:16;:39::i;61824:126::-;53395:7;53422:6;-1:-1:-1;;;;;53422:6:0;36096:10;53569:23;53561:68;;;;-1:-1:-1;;;53561:68:0;;;;;;;:::i;:::-;61901:10:::1;:43:::0;;::::1;::::0;;::::1;::::0;::::1;-1:-1:-1::0;;61901:43:0;;::::1;::::0;;;::::1;::::0;;61824:126::o;38709:177::-;38776:7;38808:13;38622:12;;;38546:94;38808:13;38800:5;:21;38792:69;;;;-1:-1:-1;;;38792:69:0;;13994:2:1;38792:69:0;;;13976:21:1;14033:2;14013:18;;;14006:30;14072:34;14052:18;;;14045:62;-1:-1:-1;;;14123:18:1;;;14116:33;14166:19;;38792:69:0;13792:399:1;38792:69:0;-1:-1:-1;38875:5:0;38709:177::o;62192:100::-;53395:7;53422:6;-1:-1:-1;;;;;53422:6:0;36096:10;53569:23;53561:68;;;;-1:-1:-1;;;53561:68:0;;;;;;;:::i;:::-;62263:23:::1;:13;62279:7:::0;;62263:23:::1;:::i;57619:976::-:0;56812:9;56825:10;56812:23;56804:66;;;;-1:-1:-1;;;56804:66:0;;;;;;;:::i;:::-;57793:10:::1;:33:::0;::::1;::::0;;::::1;::::0;57873:31;;::::1;;57930:27:::0;;;::::1;::::0;:72:::1;;;57980:22;57961:15;:41;;57930:72;57914:138;;;::::0;-1:-1:-1;;;57914:138:0;;20627:2:1;57914:138:0::1;::::0;::::1;20609:21:1::0;;;20646:18;;;20639:30;20705:34;20685:18;;;20678:62;20757:18;;57914:138:0::1;20425:356:1::0;57914:138:0::1;58086:20;58067:15;:39;;58059:75;;;::::0;-1:-1:-1;;;58059:75:0;;17972:2:1;58059:75:0::1;::::0;::::1;17954:21:1::0;18011:2;17991:18;;;17984:30;18050:26;18030:18;;;18023:54;18094:18;;58059:75:0::1;17770:348:1::0;58059:75:0::1;58161:1;58149:9;:13;58141:47;;;::::0;-1:-1:-1;;;58141:47:0;;11064:2:1;58141:47:0::1;::::0;::::1;11046:21:1::0;11103:2;11083:18;;;11076:30;-1:-1:-1;;;11122:18:1;;;11115:51;11183:18;;58141:47:0::1;10862:345:1::0;58141:47:0::1;58219:10;58203:27;::::0;;;:15:::1;:27;::::0;;;;;58246:5;;58203:39:::1;::::0;58233:9;;58203:39:::1;:::i;:::-;:48;;58195:79;;;::::0;-1:-1:-1;;;58195:79:0;;13304:2:1;58195:79:0::1;::::0;::::1;13286:21:1::0;13343:2;13323:18;;;13316:30;-1:-1:-1;;;13362:18:1;;;13355:48;13420:18;;58195:79:0::1;13102:342:1::0;58195:79:0::1;55186:5;58374:9;58358:13;38622:12:::0;;;38546:94;58358:13:::1;58340:15;;55133:4;58307:17;;55086:4;58289:35;;;;:::i;:::-;:48;;;;:::i;:::-;:66;;;;:::i;:::-;:82;;;;:::i;:::-;:94;;;;:::i;:::-;:114;;58281:145;;;::::0;-1:-1:-1;;;58281:145:0;;17625:2:1;58281:145:0::1;::::0;::::1;17607:21:1::0;17664:2;17644:18;;;17637:30;-1:-1:-1;;;17683:18:1;;;17676:48;17741:18;;58281:145:0::1;17423:342:1::0;58281:145:0::1;58441:40;58455:10;58467:6;;58475:5;58441:13;:40::i;:::-;58433:68;;;::::0;-1:-1:-1;;;58433:68:0;;19093:2:1;58433:68:0::1;::::0;::::1;19075:21:1::0;19132:2;19112:18;;;19105:30;-1:-1:-1;;;19151:18:1;;;19144:45;19206:18;;58433:68:0::1;18891:339:1::0;58433:68:0::1;58526:10;58510:27;::::0;;;:15:::1;:27;::::0;;;;:40;;58541:9;;58510:27;:40:::1;::::0;58541:9;;58510:40:::1;:::i;:::-;::::0;;;-1:-1:-1;58557:32:0::1;::::0;-1:-1:-1;58567:10:0::1;58579:9:::0;58557::::1;:32::i;:::-;57745:850;;57619:976:::0;;;;:::o;58601:639::-;56812:9;56825:10;56812:23;56804:66;;;;-1:-1:-1;;;56804:66:0;;;;;;;:::i;:::-;58697:10:::1;58684:24;::::0;;;:12:::1;:24;::::0;;;;;::::1;;:32;;:24:::0;:32:::1;;58676:59;;;::::0;-1:-1:-1;;;58676:59:0;;26750:2:1;58676:59:0::1;::::0;::::1;26732:21:1::0;26789:2;26769:18;;;26762:30;-1:-1:-1;;;26808:18:1;;;26801:44;26862:18;;58676:59:0::1;26548:338:1::0;58676:59:0::1;58788:214;58992:9;;58788:214;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;58816:152:0::1;::::0;8233:66:1;58816:152:0::1;::::0;::::1;8221:79:1::0;58936:10:0::1;8316:12:1::0;;;8309:28;8353:12;;;-1:-1:-1;58816:152:0::1;::::0;-1:-1:-1;7991:380:1;58816:152:0::1;;;;;;;;;;;;;58788:195;;;;;;:203;;:214;;;;:::i;:::-;58760:12;::::0;-1:-1:-1;;;;;58760:12:0;;::::1;:242:::0;::::1;;58742:304;;;::::0;-1:-1:-1;;;58742:304:0;;11414:2:1;58742:304:0::1;::::0;::::1;11396:21:1::0;11453:2;11433:18;;;11426:30;-1:-1:-1;;;11472:18:1;;;11465:54;11536:18;;58742:304:0::1;11212:348:1::0;58742:304:0::1;55086:4;59061:17;;59081:1;59061:21;;;;:::i;:::-;:40;;59053:83;;;::::0;-1:-1:-1;;;59053:83:0;;11767:2:1;59053:83:0::1;::::0;::::1;11749:21:1::0;11806:2;11786:18;;;11779:30;11845:32;11825:18;;;11818:60;11895:18;;59053:83:0::1;11565:354:1::0;59053:83:0::1;59156:10;59143:24;::::0;;;:12:::1;:24;::::0;;;;:31;;-1:-1:-1;;59143:31:0::1;59170:4;59143:31:::0;;::::1;::::0;;;59181:17:::1;:22:::0;;59170:4;;59181:17;;:22:::1;::::0;59170:4;;59181:22:::1;:::i;:::-;::::0;;;-1:-1:-1;59210:24:0::1;::::0;-1:-1:-1;59220:10:0::1;59232:1;59210:9;:24::i;61956:124::-:0;53395:7;53422:6;-1:-1:-1;;;;;53422:6:0;36096:10;53569:23;53561:68;;;;-1:-1:-1;;;53561:68:0;;;;;;;:::i;:::-;62032:10:::1;:42:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;;62032:42:0::1;-1:-1:-1::0;;62032:42:0;;::::1;::::0;;;::::1;::::0;;61956:124::o;41534:118::-;41598:7;41621:20;41633:7;41621:11;:20::i;:::-;:25;;41534:118;-1:-1:-1;;41534:118:0:o;40411:211::-;40475:7;-1:-1:-1;;;;;40499:19:0;;40491:75;;;;-1:-1:-1;;;40491:75:0;;16810:2:1;40491:75:0;;;16792:21:1;16849:2;16829:18;;;16822:30;16888:34;16868:18;;;16861:62;-1:-1:-1;;;16939:18:1;;;16932:41;16990:19;;40491:75:0;16608:407:1;40491:75:0;-1:-1:-1;;;;;;40588:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;40588:27:0;;40411:211::o;54000:103::-;53395:7;53422:6;-1:-1:-1;;;;;53422:6:0;36096:10;53569:23;53561:68;;;;-1:-1:-1;;;53561:68:0;;;;;;;:::i;:::-;54065:30:::1;54092:1;54065:18;:30::i;:::-;54000:103::o:0;62086:100::-;53395:7;53422:6;-1:-1:-1;;;;;53422:6:0;36096:10;53569:23;53561:68;;;;-1:-1:-1;;;53561:68:0;;;;;;;:::i;:::-;62150:10:::1;:30:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;;62150:30:0::1;-1:-1:-1::0;;;;62150:30:0;;::::1;::::0;;;::::1;::::0;;62086:100::o;63229:129::-;-1:-1:-1;;;;;;;;;;;;;;;;;63332:20:0;63344:7;63332:11;:20::i;41866:98::-;41922:13;41951:7;41944:14;;;;;:::i;43504:274::-;-1:-1:-1;;;;;43595:24:0;;36096:10;43595:24;;43587:63;;;;-1:-1:-1;;;43587:63:0;;19853:2:1;43587:63:0;;;19835:21:1;19892:2;19872:18;;;19865:30;19931:28;19911:18;;;19904:56;19977:18;;43587:63:0;19651:350:1;43587:63:0;36096:10;43659:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;43659:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;43659:53:0;;;;;;;;;;43724:48;;9427:41:1;;;43659:42:0;;36096:10;43724:48;;9400:18:1;43724:48:0;;;;;;;43504:274;;:::o;62571:180::-;53395:7;53422:6;-1:-1:-1;;;;;53422:6:0;36096:10;53569:23;53561:68;;;;-1:-1:-1;;;53561:68:0;;;;;;;:::i;:::-;34390:1:::1;34988:7;;:19;;34980:63;;;::::0;-1:-1:-1;;;34980:63:0;;25157:2:1;34980:63:0::1;::::0;::::1;25139:21:1::0;25196:2;25176:18;;;25169:30;25235:33;25215:18;;;25208:61;25286:18;;34980:63:0::1;24955:355:1::0;34980:63:0::1;34390:1;35121:7;:18:::0;62654:49:::2;::::0;62636:12:::2;::::0;62654:10:::2;::::0;62677:21:::2;::::0;62636:12;62654:49;62636:12;62654:49;62677:21;62654:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62635:68;;;62718:7;62710:35;;;::::0;-1:-1:-1;;;62710:35:0;;23991:2:1;62710:35:0::2;::::0;::::2;23973:21:1::0;24030:2;24010:18;;;24003:30;-1:-1:-1;;;24049:18:1;;;24042:45;24104:18;;62710:35:0::2;23789:339:1::0;59246:680:0;56812:9;56825:10;56812:23;56804:66;;;;-1:-1:-1;;;56804:66:0;;;;;;;:::i;:::-;59360:10:::1;59345:26;::::0;;;:14:::1;:26;::::0;;;;;59387:1:::1;::::0;59345:38:::1;::::0;59374:9;;59345:38:::1;:::i;:::-;:43;;59337:70;;;::::0;-1:-1:-1;;;59337:70:0;;13651:2:1;59337:70:0::1;::::0;::::1;13633:21:1::0;13690:2;13670:18;;;13663:30;-1:-1:-1;;;13709:18:1;;;13702:44;13763:18;;59337:70:0::1;13449:338:1::0;59337:70:0::1;59458:214;59662:9;;59458:214;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;59486:152:0::1;::::0;8233:66:1;59486:152:0::1;::::0;::::1;8221:79:1::0;59606:10:0::1;8316:12:1::0;;;8309:28;8353:12;;;-1:-1:-1;59486:152:0::1;::::0;-1:-1:-1;7991:380:1;59458:214:0::1;59432:10;::::0;-1:-1:-1;;;;;59432:10:0;;::::1;:240:::0;::::1;;59414:302;;;::::0;-1:-1:-1;;;59414:302:0;;11414:2:1;59414:302:0::1;::::0;::::1;11396:21:1::0;11453:2;11433:18;;;11426:30;-1:-1:-1;;;11472:18:1;;;11465:54;11536:18;;59414:302:0::1;11212:348:1::0;59414:302:0::1;55133:4;59749:9;59731:15;;:27;;;;:::i;:::-;:41;;59723:77;;;::::0;-1:-1:-1;;;59723:77:0;;20988:2:1;59723:77:0::1;::::0;::::1;20970:21:1::0;21027:2;21007:18;;;21000:30;21066:25;21046:18;;;21039:53;21109:18;;59723:77:0::1;20786:347:1::0;59723:77:0::1;59822:10;59807:26;::::0;;;:14:::1;:26;::::0;;;;:39;;59837:9;;59807:26;:39:::1;::::0;59837:9;;59807:39:::1;:::i;:::-;;;;;;;;59872:9;59853:15;;:28;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;59888:32:0::1;::::0;-1:-1:-1;59898:10:0::1;59910:9:::0;59888::::1;:32::i;44511:311::-:0;44648:28;44658:4;44664:2;44668:7;44648:9;:28::i;:::-;44699:48;44722:4;44728:2;44732:7;44741:5;44699:22;:48::i;:::-;44683:133;;;;-1:-1:-1;;;44683:133:0;;;;;;;:::i;42027:394::-;42125:13;42166:16;42174:7;45148:12;;-1:-1:-1;45138:22:0;45061:105;42166:16;42150:97;;;;-1:-1:-1;;;42150:97:0;;19437:2:1;42150:97:0;;;19419:21:1;19476:2;19456:18;;;19449:30;19515:34;19495:18;;;19488:62;-1:-1:-1;;;19566:18:1;;;19559:45;19621:19;;42150:97:0;19235:411:1;42150:97:0;42256:21;42280:10;:8;:10::i;:::-;42256:34;;42335:1;42317:7;42311:21;:25;:104;;;;;;;;;;;;;;;;;42372:7;42381:18;:7;:16;:18::i;:::-;42355:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42311:104;42297:118;42027:394;-1:-1:-1;;;42027:394:0:o;60764:211::-;60861:4;60881:18;;;;;:46;;-1:-1:-1;60903:24:0;;;60881:46;:88;;;;-1:-1:-1;;60931:15:0;:38;;;60874:95;-1:-1:-1;60764:211:0:o;62881:107::-;62939:7;62962:20;62976:5;62962:13;:20::i;54258:201::-;53395:7;53422:6;-1:-1:-1;;;;;53422:6:0;36096:10;53569:23;53561:68;;;;-1:-1:-1;;;53561:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;54347:22:0;::::1;54339:73;;;::::0;-1:-1:-1;;;54339:73:0;;12486:2:1;54339:73:0::1;::::0;::::1;12468:21:1::0;12525:2;12505:18;;;12498:30;12564:34;12544:18;;;12537:62;-1:-1:-1;;;12615:18:1;;;12608:36;12661:19;;54339:73:0::1;12284:402:1::0;54339:73:0::1;54423:28;54442:8;54423:18;:28::i;:::-;54258:201:::0;:::o;48748:172::-;48845:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;48845:29:0;-1:-1:-1;;;;;48845:29:0;;;;;;;;;48886:28;;48845:24;;48886:28;;;;;;;48748:172;;;:::o;47113:1529::-;47210:35;47248:20;47260:7;47248:11;:20::i;:::-;47319:18;;47210:58;;-1:-1:-1;47277:22:0;;-1:-1:-1;;;;;47303:34:0;36096:10;-1:-1:-1;;;;;47303:34:0;;:81;;;-1:-1:-1;36096:10:0;47348:20;47360:7;47348:11;:20::i;:::-;-1:-1:-1;;;;;47348:36:0;;47303:81;:142;;;-1:-1:-1;47412:18:0;;47395:50;;36096:10;43841:186;:::i;47395:50::-;47277:169;;47471:17;47455:101;;;;-1:-1:-1;;;47455:101:0;;20208:2:1;47455:101:0;;;20190:21:1;20247:2;20227:18;;;20220:30;20286:34;20266:18;;;20259:62;-1:-1:-1;;;20337:18:1;;;20330:48;20395:19;;47455:101:0;20006:414:1;47455:101:0;47603:4;-1:-1:-1;;;;;47581:26:0;:13;:18;;;-1:-1:-1;;;;;47581:26:0;;47565:98;;;;-1:-1:-1;;;47565:98:0;;18325:2:1;47565:98:0;;;18307:21:1;18364:2;18344:18;;;18337:30;18403:34;18383:18;;;18376:62;-1:-1:-1;;;18454:18:1;;;18447:36;18500:19;;47565:98:0;18123:402:1;47565:98:0;-1:-1:-1;;;;;47678:16:0;;47670:66;;;;-1:-1:-1;;;47670:66:0;;14398:2:1;47670:66:0;;;14380:21:1;14437:2;14417:18;;;14410:30;14476:34;14456:18;;;14449:62;-1:-1:-1;;;14527:18:1;;;14520:35;14572:19;;47670:66:0;14196:401:1;47670:66:0;47845:49;47862:1;47866:7;47875:13;:18;;;47845:8;:49::i;:::-;-1:-1:-1;;;;;47903:18:0;;;;;;:12;:18;;;;;:31;;47933:1;;47903:18;:31;;47933:1;;-1:-1:-1;;;;;47903:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;47903:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;47941:16:0;;-1:-1:-1;47941:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;47941:16:0;;:29;;-1:-1:-1;;47941:29:0;;:::i;:::-;;;-1:-1:-1;;;;;47941:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48000:43:0;;;;;;;;-1:-1:-1;;;;;48000:43:0;;;;;-1:-1:-1;;;;;48026:15:0;48000:43;;;;;;;;;-1:-1:-1;47977:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;47977:66:0;-1:-1:-1;;;;;;47977:66:0;;;;;;;;;;;48293:11;47989:7;-1:-1:-1;48293:11:0;:::i;:::-;48356:1;48315:24;;;:11;:24;;;;;:29;48271:33;;-1:-1:-1;;;;;;48315:29:0;48311:236;;48373:20;48381:11;45148:12;;-1:-1:-1;45138:22:0;45061:105;48373:20;48369:171;;;48433:97;;;;;;;;48460:18;;-1:-1:-1;;;;;48433:97:0;;;;;;48491:28;;;;-1:-1:-1;;;;;48433:97:0;;;;;;;;;-1:-1:-1;48406:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;48406:124:0;-1:-1:-1;;;;;;48406:124:0;;;;;;;;;;;;48369:171;48579:7;48575:2;-1:-1:-1;;;;;48560:27:0;48569:4;-1:-1:-1;;;;;48560:27:0;;;;;;;;;;;48594:42;59932:826;49074:846;49164:24;;49203:12;49195:49;;;;-1:-1:-1;;;49195:49:0;;16457:2:1;49195:49:0;;;16439:21:1;16496:2;16476:18;;;16469:30;16535:26;16515:18;;;16508:54;16579:18;;49195:49:0;16255:348:1;49195:49:0;49251:16;49301:1;49270:28;49290:8;49270:17;:28;:::i;:::-;:32;;;;:::i;:::-;49251:51;-1:-1:-1;49324:18:0;49341:1;49324:14;:18;:::i;:::-;49313:8;:29;49309:81;;;49364:18;49381:1;49364:14;:18;:::i;:::-;49353:29;;49309:81;49505:17;49513:8;45148:12;;-1:-1:-1;45138:22:0;45061:105;49505:17;49497:68;;;;-1:-1:-1;;;49497:68:0;;24750:2:1;49497:68:0;;;24732:21:1;24789:2;24769:18;;;24762:30;24828:34;24808:18;;;24801:62;-1:-1:-1;;;24879:18:1;;;24872:36;24925:19;;49497:68:0;24548:402:1;49497:68:0;49589:17;49572:297;49613:8;49608:1;:13;49572:297;;49672:1;49641:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;49641:19:0;49637:225;;49687:31;49721:14;49733:1;49721:11;:14::i;:::-;49763:89;;;;;;;;49790:14;;-1:-1:-1;;;;;49763:89:0;;;;;;49817:24;;;;-1:-1:-1;;;;;49763:89:0;;;;;;;;;-1:-1:-1;49746:14:0;;;:11;:14;;;;;;;:106;;;;;;;;;-1:-1:-1;;;49746:106:0;-1:-1:-1;;;;;;49746:106:0;;;;;;;;;;;;-1:-1:-1;49637:225:0;49623:3;;;;:::i;:::-;;;;49572:297;;;-1:-1:-1;49902:12:0;:8;49913:1;49902:12;:::i;:::-;49875:24;:39;-1:-1:-1;;;49074:846:0:o;45172:98::-;45237:27;45247:2;45251:8;45237:27;;;;;;;;;;;;:9;:27::i;56890:594::-;57016:4;57029:13;57045:14;57050:8;57580:26;;-1:-1:-1;;7431:2:1;7427:15;;;7423:53;57580:26:0;;;7411:66:1;57547:7:0;;7493:12:1;;57580:26:0;;;;;;;;;;;;57570:37;;;;;;57563:44;;57492:121;;;;57045:14;57029:30;;57070:5;57079:1;57070:10;57066:413;;;57098:50;57117:6;;57098:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;57125:15:0;;;-1:-1:-1;57142:5:0;;-1:-1:-1;57098:18:0;:50::i;:::-;57091:57;;;;;57066:413;57166:5;57175:1;57166:10;57162:317;;;57194:50;57213:6;;57194:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;57221:15:0;;;-1:-1:-1;57238:5:0;;-1:-1:-1;57194:18:0;:50::i;57162:317::-;57262:5;57271:1;57262:10;57258:221;;;57290:50;57309:6;;57290:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;57317:15:0;;;-1:-1:-1;57334:5:0;;-1:-1:-1;57290:18:0;:50::i;57258:221::-;57358:5;57367:1;57358:10;57354:125;;;57386:50;57405:6;;57386:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;57413:15:0;;;-1:-1:-1;57430:5:0;;-1:-1:-1;57386:18:0;:50::i;57354:125::-;57466:5;57459:12;;;56890:594;;;;;;;:::o;27461:231::-;27539:7;27560:17;27579:18;27601:27;27612:4;27618:9;27601:10;:27::i;:::-;27559:69;;;;27639:18;27651:5;27639:11;:18::i;:::-;-1:-1:-1;27675:9:0;27461:231;-1:-1:-1;;;27461:231:0:o;40874:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;40991:16:0;40999:7;45148:12;;-1:-1:-1;45138:22:0;45061:105;40991:16;40983:71;;;;-1:-1:-1;;;40983:71:0;;12893:2:1;40983:71:0;;;12875:21:1;12932:2;12912:18;;;12905:30;12971:34;12951:18;;;12944:62;-1:-1:-1;;;13022:18:1;;;13015:40;13072:19;;40983:71:0;12691:406:1;40983:71:0;41063:26;41111:12;41100:7;:23;41096:93;;41155:22;41165:12;41155:7;:22;:::i;:::-;:26;;41180:1;41155:26;:::i;:::-;41134:47;;41096:93;41217:7;41197:212;41234:18;41226:4;:26;41197:212;;41271:31;41305:17;;;:11;:17;;;;;;;;;41271:51;;;;;;;;;-1:-1:-1;;;;;41271:51:0;;;;;-1:-1:-1;;;41271:51:0;;;-1:-1:-1;;;;;41271:51:0;;;;;;;;41335:28;41331:71;;41383:9;40874:606;-1:-1:-1;;;;40874:606:0:o;41331:71::-;-1:-1:-1;41254:6:0;;;;:::i;:::-;;;;41197:212;;;-1:-1:-1;41417:57:0;;-1:-1:-1;;;41417:57:0;;25517:2:1;41417:57:0;;;25499:21:1;25556:2;25536:18;;;25529:30;25595:34;25575:18;;;25568:62;-1:-1:-1;;;25646:18:1;;;25639:45;25701:19;;41417:57:0;25315:411:1;54619:191:0;54693:16;54712:6;;-1:-1:-1;;;;;54729:17:0;;;-1:-1:-1;;;;;;54729:17:0;;;;;;54762:40;;54712:6;;;;;;;54762:40;;54693:16;54762:40;54682:128;54619:191;:::o;50463:690::-;50600:4;-1:-1:-1;;;;;50617:13:0;;1528:19;:23;50613:535;;50656:72;;-1:-1:-1;;;50656:72:0;;-1:-1:-1;;;;;50656:36:0;;;;;:72;;36096:10;;50707:4;;50713:7;;50722:5;;50656:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50656:72:0;;;;;;;;-1:-1:-1;;50656:72:0;;;;;;;;;;;;:::i;:::-;;;50643:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50887:13:0;;50883:215;;50920:61;;-1:-1:-1;;;50920:61:0;;;;;;;:::i;50883:215::-;51066:6;51060:13;51051:6;51047:2;51043:15;51036:38;50643:464;-1:-1:-1;;;;;;50778:55:0;-1:-1:-1;;;50778:55:0;;-1:-1:-1;50771:62:0;;50613:535;-1:-1:-1;51136:4:0;51129:11;;62298:108;62358:13;62387;62380:20;;;;;:::i;21285:723::-;21341:13;21562:10;21558:53;;-1:-1:-1;;21589:10:0;;;;;;;;;;;;-1:-1:-1;;;21589:10:0;;;;;21285:723::o;21558:53::-;21636:5;21621:12;21677:78;21684:9;;21677:78;;21710:8;;;;:::i;:::-;;-1:-1:-1;21733:10:0;;-1:-1:-1;21741:2:0;21733:10;;:::i;:::-;;;21677:78;;;21765:19;21797:6;-1:-1:-1;;;;;21787:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21787:17:0;;21765:39;;21815:154;21822:10;;21815:154;;21849:11;21859:1;21849:11;;:::i;:::-;;-1:-1:-1;21918:10:0;21926:2;21918:5;:10;:::i;:::-;21905:24;;:2;:24;:::i;:::-;21892:39;;21875:6;21882;21875:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;21875:56:0;;;;;;;;-1:-1:-1;21946:11:0;21955:2;21946:11;;:::i;:::-;;;21815:154;;40628:240;40689:7;-1:-1:-1;;;;;40721:19:0;;40705:102;;;;-1:-1:-1;;;40705:102:0;;14804:2:1;40705:102:0;;;14786:21:1;14843:2;14823:18;;;14816:30;14882:34;14862:18;;;14855:62;-1:-1:-1;;;14933:18:1;;;14926:47;14990:19;;40705:102:0;14602:413:1;40705:102:0;-1:-1:-1;;;;;;40829:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;40829:32:0;;-1:-1:-1;;;;;40829:32:0;;40628:240::o;45609:1272::-;45737:12;;-1:-1:-1;;;;;45764:16:0;;45756:62;;;;-1:-1:-1;;;45756:62:0;;22879:2:1;45756:62:0;;;22861:21:1;22918:2;22898:18;;;22891:30;22957:34;22937:18;;;22930:62;-1:-1:-1;;;23008:18:1;;;23001:31;23049:19;;45756:62:0;22677:397:1;45756:62:0;45955:21;45963:12;45148;;-1:-1:-1;45138:22:0;45061:105;45955:21;45954:22;45946:64;;;;-1:-1:-1;;;45946:64:0;;22521:2:1;45946:64:0;;;22503:21:1;22560:2;22540:18;;;22533:30;22599:31;22579:18;;;22572:59;22648:18;;45946:64:0;22319:353:1;45946:64:0;46037:12;46025:8;:24;;46017:71;;;;-1:-1:-1;;;46017:71:0;;26347:2:1;46017:71:0;;;26329:21:1;26386:2;26366:18;;;26359:30;26425:34;26405:18;;;26398:62;-1:-1:-1;;;26476:18:1;;;26469:32;26518:19;;46017:71:0;26145:398:1;46017:71:0;-1:-1:-1;;;;;46200:16:0;;46167:30;46200:16;;;:12;:16;;;;;;;;;46167:49;;;;;;;;;-1:-1:-1;;;;;46167:49:0;;;;;-1:-1:-1;;;46167:49:0;;;;;;;;;;;46242:119;;;;;;;;46262:19;;46167:49;;46242:119;;;46262:39;;46292:8;;46262:39;:::i;:::-;-1:-1:-1;;;;;46242:119:0;;;;;46345:8;46310:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;46242:119:0;;;;;;-1:-1:-1;;;;;46223:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;46223:138:0;;;;;;;;;;;;46396:43;;;;;;;;;;-1:-1:-1;;;;;46422:15:0;46396:43;;;;;;;;46368:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;46368:71:0;-1:-1:-1;;;;;;46368:71:0;;;;;;;;;;;;;;;;;;46380:12;;46492:281;46516:8;46512:1;:12;46492:281;;;46545:38;;46570:12;;-1:-1:-1;;;;;46545:38:0;;;46562:1;;46545:38;;46562:1;;46545:38;46610:59;46641:1;46645:2;46649:12;46663:5;46610:22;:59::i;:::-;46592:150;;;;-1:-1:-1;;;46592:150:0;;;;;;;:::i;:::-;46751:14;;;;:::i;:::-;;;;46526:3;;;;;:::i;:::-;;;;46492:281;;;-1:-1:-1;46781:12:0;:27;;;46815:60;59932:826;19455:190;19580:4;19633;19604:25;19617:5;19624:4;19604:12;:25::i;:::-;:33;;19455:190;-1:-1:-1;;;;19455:190:0:o;25351:1308::-;25432:7;25441:12;25666:9;:16;25686:2;25666:22;25662:990;;;25962:4;25947:20;;25941:27;26012:4;25997:20;;25991:27;26070:4;26055:20;;26049:27;25705:9;26041:36;26113:25;26124:4;26041:36;25941:27;25991;26113:10;:25::i;:::-;26106:32;;;;;;;;;25662:990;26160:9;:16;26180:2;26160:22;26156:496;;;26435:4;26420:20;;26414:27;26486:4;26471:20;;26465:27;26528:23;26539:4;26414:27;26465;26528:10;:23::i;:::-;26521:30;;;;;;;;26156:496;-1:-1:-1;26600:1:0;;-1:-1:-1;26604:35:0;26156:496;25351:1308;;;;;:::o;23622:643::-;23700:20;23691:5;:29;;;;;;;;:::i;:::-;;23687:571;;;23622:643;:::o;23687:571::-;23798:29;23789:5;:38;;;;;;;;:::i;:::-;;23785:473;;;23844:34;;-1:-1:-1;;;23844:34:0;;10308:2:1;23844:34:0;;;10290:21:1;10347:2;10327:18;;;10320:30;10386:26;10366:18;;;10359:54;10430:18;;23844:34:0;10106:348:1;23785:473:0;23909:35;23900:5;:44;;;;;;;;:::i;:::-;;23896:362;;;23961:41;;-1:-1:-1;;;23961:41:0;;12126:2:1;23961:41:0;;;12108:21:1;12165:2;12145:18;;;12138:30;12204:33;12184:18;;;12177:61;12255:18;;23961:41:0;11924:355:1;23896:362:0;24033:30;24024:5;:39;;;;;;;;:::i;:::-;;24020:238;;;24080:44;;-1:-1:-1;;;24080:44:0;;15222:2:1;24080:44:0;;;15204:21:1;15261:2;15241:18;;;15234:30;15300:34;15280:18;;;15273:62;-1:-1:-1;;;15351:18:1;;;15344:32;15393:19;;24080:44:0;15020:398:1;24020:238:0;24155:30;24146:5;:39;;;;;;;;:::i;:::-;;24142:116;;;24202:44;;-1:-1:-1;;;24202:44:0;;17222:2:1;24202:44:0;;;17204:21:1;17261:2;17241:18;;;17234:30;17300:34;17280:18;;;17273:62;-1:-1:-1;;;17351:18:1;;;17344:32;17393:19;;24202:44:0;17020:398:1;20006:675:0;20089:7;20132:4;20089:7;20147:497;20171:5;:12;20167:1;:16;20147:497;;;20205:20;20228:5;20234:1;20228:8;;;;;;;;:::i;:::-;;;;;;;20205:31;;20271:12;20255;:28;20251:382;;20757:13;20807:15;;;20843:4;20836:15;;;20890:4;20874:21;;20383:57;;20251:382;;;20757:13;20807:15;;;20843:4;20836:15;;;20890:4;20874:21;;20560:57;;20251:382;-1:-1:-1;20185:3:0;;;;:::i;:::-;;;;20147:497;;28913:1632;29044:7;;29978:66;29965:79;;29961:163;;;-1:-1:-1;30077:1:0;;-1:-1:-1;30081:30:0;30061:51;;29961:163;30138:1;:7;;30143:2;30138:7;;:18;;;;;30149:1;:7;;30154:2;30149:7;;30138:18;30134:102;;;-1:-1:-1;30189:1:0;;-1:-1:-1;30193:30:0;30173:51;;30134:102;30350:24;;;30333:14;30350:24;;;;;;;;;9706:25:1;;;9779:4;9767:17;;9747:18;;;9740:45;;;;9801:18;;;9794:34;;;9844:18;;;9837:34;;;30350:24:0;;9678:19:1;;30350:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;30350:24:0;;-1:-1:-1;;30350:24:0;;;-1:-1:-1;;;;;;;30389:20:0;;30385:103;;30442:1;30446:29;30426:50;;;;;;;30385:103;30508:6;-1:-1:-1;30516:20:0;;-1:-1:-1;28913:1632:0;;;;;;;;:::o;27955:344::-;28069:7;;-1:-1:-1;;;;;28115:80:0;;28069:7;28222:25;28238:3;28223:18;;;28245:2;28222:25;:::i;:::-;28206:42;;28266:25;28277:4;28283:1;28286;28289;28266:10;:25::i;:::-;28259:32;;;;;;27955:344;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:347::-;243:8;253:6;307:3;300:4;292:6;288:17;284:27;274:55;;325:1;322;315:12;274:55;-1:-1:-1;348:20:1;;-1:-1:-1;;;;;380:30:1;;377:50;;;423:1;420;413:12;377:50;460:4;452:6;448:17;436:29;;512:3;505:4;496:6;488;484:19;480:30;477:39;474:59;;;529:1;526;519:12;544:186;603:6;656:2;644:9;635:7;631:23;627:32;624:52;;;672:1;669;662:12;624:52;695:29;714:9;695:29;:::i;735:260::-;803:6;811;864:2;852:9;843:7;839:23;835:32;832:52;;;880:1;877;870:12;832:52;903:29;922:9;903:29;:::i;:::-;893:39;;951:38;985:2;974:9;970:18;951:38;:::i;:::-;941:48;;735:260;;;;;:::o;1000:328::-;1077:6;1085;1093;1146:2;1134:9;1125:7;1121:23;1117:32;1114:52;;;1162:1;1159;1152:12;1114:52;1185:29;1204:9;1185:29;:::i;:::-;1175:39;;1233:38;1267:2;1256:9;1252:18;1233:38;:::i;:::-;1223:48;;1318:2;1307:9;1303:18;1290:32;1280:42;;1000:328;;;;;:::o;1333:1138::-;1428:6;1436;1444;1452;1505:3;1493:9;1484:7;1480:23;1476:33;1473:53;;;1522:1;1519;1512:12;1473:53;1545:29;1564:9;1545:29;:::i;:::-;1535:39;;1593:38;1627:2;1616:9;1612:18;1593:38;:::i;:::-;1583:48;;1678:2;1667:9;1663:18;1650:32;1640:42;;1733:2;1722:9;1718:18;1705:32;-1:-1:-1;;;;;1797:2:1;1789:6;1786:14;1783:34;;;1813:1;1810;1803:12;1783:34;1851:6;1840:9;1836:22;1826:32;;1896:7;1889:4;1885:2;1881:13;1877:27;1867:55;;1918:1;1915;1908:12;1867:55;1954:2;1941:16;1976:2;1972;1969:10;1966:36;;;1982:18;;:::i;:::-;2057:2;2051:9;2025:2;2111:13;;-1:-1:-1;;2107:22:1;;;2131:2;2103:31;2099:40;2087:53;;;2155:18;;;2175:22;;;2152:46;2149:72;;;2201:18;;:::i;:::-;2241:10;2237:2;2230:22;2276:2;2268:6;2261:18;2316:7;2311:2;2306;2302;2298:11;2294:20;2291:33;2288:53;;;2337:1;2334;2327:12;2288:53;2393:2;2388;2384;2380:11;2375:2;2367:6;2363:15;2350:46;2438:1;2433:2;2428;2420:6;2416:15;2412:24;2405:35;2459:6;2449:16;;;;;;;1333:1138;;;;;;;:::o;2476:347::-;2541:6;2549;2602:2;2590:9;2581:7;2577:23;2573:32;2570:52;;;2618:1;2615;2608:12;2570:52;2641:29;2660:9;2641:29;:::i;:::-;2631:39;;2720:2;2709:9;2705:18;2692:32;2767:5;2760:13;2753:21;2746:5;2743:32;2733:60;;2789:1;2786;2779:12;2733:60;2812:5;2802:15;;;2476:347;;;;;:::o;2828:254::-;2896:6;2904;2957:2;2945:9;2936:7;2932:23;2928:32;2925:52;;;2973:1;2970;2963:12;2925:52;2996:29;3015:9;2996:29;:::i;:::-;2986:39;3072:2;3057:18;;;;3044:32;;-1:-1:-1;;;2828:254:1:o;3087:385::-;3173:6;3181;3189;3197;3250:3;3238:9;3229:7;3225:23;3221:33;3218:53;;;3267:1;3264;3257:12;3218:53;-1:-1:-1;;3290:23:1;;;3360:2;3345:18;;3332:32;;-1:-1:-1;3411:2:1;3396:18;;3383:32;;3462:2;3447:18;3434:32;;-1:-1:-1;3087:385:1;-1:-1:-1;3087:385:1:o;3477:245::-;3535:6;3588:2;3576:9;3567:7;3563:23;3559:32;3556:52;;;3604:1;3601;3594:12;3556:52;3643:9;3630:23;3662:30;3686:5;3662:30;:::i;3727:249::-;3796:6;3849:2;3837:9;3828:7;3824:23;3820:32;3817:52;;;3865:1;3862;3855:12;3817:52;3897:9;3891:16;3916:30;3940:5;3916:30;:::i;3981:409::-;4051:6;4059;4112:2;4100:9;4091:7;4087:23;4083:32;4080:52;;;4128:1;4125;4118:12;4080:52;4168:9;4155:23;-1:-1:-1;;;;;4193:6:1;4190:30;4187:50;;;4233:1;4230;4223:12;4187:50;4272:58;4322:7;4313:6;4302:9;4298:22;4272:58;:::i;:::-;4349:8;;4246:84;;-1:-1:-1;3981:409:1;-1:-1:-1;;;;3981:409:1:o;4810:180::-;4869:6;4922:2;4910:9;4901:7;4897:23;4893:32;4890:52;;;4938:1;4935;4928:12;4890:52;-1:-1:-1;4961:23:1;;4810:180;-1:-1:-1;4810:180:1:o;4995:751::-;5099:6;5107;5115;5123;5176:2;5164:9;5155:7;5151:23;5147:32;5144:52;;;5192:1;5189;5182:12;5144:52;5228:9;5215:23;5205:33;;5289:2;5278:9;5274:18;5261:32;-1:-1:-1;;;;;5353:2:1;5345:6;5342:14;5339:34;;;5369:1;5366;5359:12;5339:34;5407:6;5396:9;5392:22;5382:32;;5452:7;5445:4;5441:2;5437:13;5433:27;5423:55;;5474:1;5471;5464:12;5423:55;5514:2;5501:16;5540:2;5532:6;5529:14;5526:34;;;5556:1;5553;5546:12;5526:34;5609:7;5604:2;5594:6;5591:1;5587:14;5583:2;5579:23;5575:32;5572:45;5569:65;;;5630:1;5627;5620:12;5569:65;4995:751;;5661:2;5653:11;;;;;-1:-1:-1;5683:6:1;;5736:2;5721:18;5708:32;;-1:-1:-1;4995:751:1;-1:-1:-1;;;4995:751:1:o;5751:248::-;5819:6;5827;5880:2;5868:9;5859:7;5855:23;5851:32;5848:52;;;5896:1;5893;5886:12;5848:52;-1:-1:-1;;5919:23:1;;;5989:2;5974:18;;;5961:32;;-1:-1:-1;5751:248:1:o;6004:477::-;6083:6;6091;6099;6152:2;6140:9;6131:7;6127:23;6123:32;6120:52;;;6168:1;6165;6158:12;6120:52;6204:9;6191:23;6181:33;;6265:2;6254:9;6250:18;6237:32;-1:-1:-1;;;;;6284:6:1;6281:30;6278:50;;;6324:1;6321;6314:12;6278:50;6363:58;6413:7;6404:6;6393:9;6389:22;6363:58;:::i;:::-;6004:477;;6440:8;;-1:-1:-1;6337:84:1;;-1:-1:-1;;;;6004:477:1:o;6739:276::-;6797:6;6850:2;6838:9;6829:7;6825:23;6821:32;6818:52;;;6866:1;6863;6856:12;6818:52;6905:9;6892:23;6955:10;6948:5;6944:22;6937:5;6934:33;6924:61;;6981:1;6978;6971:12;7020:257;7061:3;7099:5;7093:12;7126:6;7121:3;7114:19;7142:63;7198:6;7191:4;7186:3;7182:14;7175:4;7168:5;7164:16;7142:63;:::i;:::-;7259:2;7238:15;-1:-1:-1;;7234:29:1;7225:39;;;;7266:4;7221:50;;7020:257;-1:-1:-1;;7020:257:1:o;7516:470::-;7695:3;7733:6;7727:13;7749:53;7795:6;7790:3;7783:4;7775:6;7771:17;7749:53;:::i;:::-;7865:13;;7824:16;;;;7887:57;7865:13;7824:16;7921:4;7909:17;;7887:57;:::i;:::-;7960:20;;7516:470;-1:-1:-1;;;;7516:470:1:o;8794:488::-;-1:-1:-1;;;;;9063:15:1;;;9045:34;;9115:15;;9110:2;9095:18;;9088:43;9162:2;9147:18;;9140:34;;;9210:3;9205:2;9190:18;;9183:31;;;8988:4;;9231:45;;9256:19;;9248:6;9231:45;:::i;:::-;9223:53;8794:488;-1:-1:-1;;;;;;8794:488:1:o;9882:219::-;10031:2;10020:9;10013:21;9994:4;10051:44;10091:2;10080:9;10076:18;10068:6;10051:44;:::i;18530:356::-;18732:2;18714:21;;;18751:18;;;18744:30;18810:34;18805:2;18790:18;;18783:62;18877:2;18862:18;;18530:356::o;21899:415::-;22101:2;22083:21;;;22140:2;22120:18;;;22113:30;22179:34;22174:2;22159:18;;22152:62;-1:-1:-1;;;22245:2:1;22230:18;;22223:49;22304:3;22289:19;;21899:415::o;23430:354::-;23632:2;23614:21;;;23671:2;23651:18;;;23644:30;23710:32;23705:2;23690:18;;23683:60;23775:2;23760:18;;23430:354::o;27893:253::-;27933:3;-1:-1:-1;;;;;28022:2:1;28019:1;28015:10;28052:2;28049:1;28045:10;28083:3;28079:2;28075:12;28070:3;28067:21;28064:47;;;28091:18;;:::i;28151:128::-;28191:3;28222:1;28218:6;28215:1;28212:13;28209:39;;;28228:18;;:::i;:::-;-1:-1:-1;28264:9:1;;28151:128::o;28284:120::-;28324:1;28350;28340:35;;28355:18;;:::i;:::-;-1:-1:-1;28389:9:1;;28284:120::o;28409:246::-;28449:4;-1:-1:-1;;;;;28562:10:1;;;;28532;;28584:12;;;28581:38;;;28599:18;;:::i;:::-;28636:13;;28409:246;-1:-1:-1;;;28409:246:1:o;28660:125::-;28700:4;28728:1;28725;28722:8;28719:34;;;28733:18;;:::i;:::-;-1:-1:-1;28770:9:1;;28660:125::o;28790:258::-;28862:1;28872:113;28886:6;28883:1;28880:13;28872:113;;;28962:11;;;28956:18;28943:11;;;28936:39;28908:2;28901:10;28872:113;;;29003:6;29000:1;28997:13;28994:48;;;-1:-1:-1;;29038:1:1;29020:16;;29013:27;28790:258::o;29053:136::-;29092:3;29120:5;29110:39;;29129:18;;:::i;:::-;-1:-1:-1;;;29165:18:1;;29053:136::o;29194:380::-;29273:1;29269:12;;;;29316;;;29337:61;;29391:4;29383:6;29379:17;29369:27;;29337:61;29444:2;29436:6;29433:14;29413:18;29410:38;29407:161;;;29490:10;29485:3;29481:20;29478:1;29471:31;29525:4;29522:1;29515:15;29553:4;29550:1;29543:15;29407:161;;29194:380;;;:::o;29579:135::-;29618:3;-1:-1:-1;;29639:17:1;;29636:43;;;29659:18;;:::i;:::-;-1:-1:-1;29706:1:1;29695:13;;29579:135::o;29719:112::-;29751:1;29777;29767:35;;29782:18;;:::i;:::-;-1:-1:-1;29816:9:1;;29719:112::o;29836:127::-;29897:10;29892:3;29888:20;29885:1;29878:31;29928:4;29925:1;29918:15;29952:4;29949:1;29942:15;29968:127;30029:10;30024:3;30020:20;30017:1;30010:31;30060:4;30057:1;30050:15;30084:4;30081:1;30074:15;30100:127;30161:10;30156:3;30152:20;30149:1;30142:31;30192:4;30189:1;30182:15;30216:4;30213:1;30206:15;30232:127;30293:10;30288:3;30284:20;30281:1;30274:31;30324:4;30321:1;30314:15;30348:4;30345:1;30338:15;30364:127;30425:10;30420:3;30416:20;30413:1;30406:31;30456:4;30453:1;30446:15;30480:4;30477:1;30470:15;30496:131;-1:-1:-1;;;;;;30570:32:1;;30560:43;;30550:71;;30617:1;30614;30607:12

Swarm Source

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