ETH Price: $2,613.87 (+0.78%)

Token

VOID ENTITY (VOID)
 

Overview

Max Total Supply

605 VOID

Holders

301

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
faresb.eth
Balance
1 VOID
0xc9e489Dc86bf2D5EEf11BcE89846E67039275Bd9
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:
VOIDENTITY

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-02-15
*/

// 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/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.5.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.
 */
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 Merklee 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/Counters.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (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/IERC721Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: contracts/VOIDENTITY.sol



pragma solidity >=0.7.0 <0.9.0;






// ██╗░░░██╗░█████╗░██╗██████╗░
// ██║░░░██║██╔══██╗██║██╔══██╗
// ╚██╗░██╔╝██║░░██║██║██║░░██║
// ░╚████╔╝░██║░░██║██║██║░░██║
// ░░╚██╔╝░░╚█████╔╝██║██████╔╝
// ░░░╚═╝░░░░╚════╝░╚═╝╚═════╝░

struct PresaleConfig {
  uint32 startTime;
  uint32 endTime;
  uint32 maxMintPerWhitelistWallet;
  uint256 whitelistCost;
}

contract VOIDENTITY is ERC721, Ownable, ReentrancyGuard {
  using Strings for uint256;
  using Counters for Counters.Counter;

  bytes32 public merkleRoot = 0x51b64bef034e9c742b76ec4ba99d6309ab6244305f4edb171c9887d36da2d16a;

  Counters.Counter private supply;

  string public uriPrefix = ""; 
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;
  
  uint32 publicSaleStartTime;

  uint256 public cost = 0.12 ether;
  uint256 public maxSupply = 5000;
  uint256 public maxMintAmountPerTx = 5;
  uint256 public maxMintPerWallet = 5;

  PresaleConfig public presaleConfig;

  bool public presaleOn = true;
  bool public paused = false;
  bool public revealed;

  mapping(address => uint256) public userWallets;

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _hiddenMetadataUri,
    string memory initialBaseUri
  ) ERC721(_name, _symbol) {
    presaleConfig = PresaleConfig({
      startTime: 1645041600, // FEB16th 2022 8:00:00 PM GMT
      endTime: 1645128000, //	FEB17th, 2022 8:00:00 PM GMT
      maxMintPerWhitelistWallet: 2,
      whitelistCost: 0.09 ether
    });
    publicSaleStartTime = 1645128000; // FEB17th, 2022 8:00:00 PM GMT
    hiddenMetadataUri = _hiddenMetadataUri;
    uriPrefix = initialBaseUri;
}

  modifier mintCompliance(uint256 _mintAmount) {
    require(msg.sender == tx.origin, "You Cannot Mint Through Another Contract");
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount. Should be less than or equal to 5!");
    require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!");
    require(userWallets[msg.sender] + _mintAmount <= maxMintPerWallet, "User exceeds max mint limit per wallet!");
    _;
  }

  function buyPresale(uint256 _mintAmount, bytes32[] calldata _merkleProof)
    external
    payable
    mintCompliance(_mintAmount) 
    nonReentrant
  {
    PresaleConfig memory config_ = presaleConfig;
    
    require(presaleOn, "Presale has been paused.");
    require(block.timestamp >= config_.startTime && block.timestamp < config_.endTime, "Presale is not active yet!");
    require(msg.value >= config_.whitelistCost * _mintAmount, "Insufficient funds!");
    require(userWallets[msg.sender] + _mintAmount <= config_.maxMintPerWhitelistWallet, "User exceeds max mint per whitelisted wallet!");
    bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
    require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), "Invalid Merkle Proof.");

    _mintLoop(msg.sender, _mintAmount);
  }  

  function buyPublic(uint256 _mintAmount)
    external
    payable
    mintCompliance(_mintAmount)
    nonReentrant
  {
    require(!paused, "Public minting is paused.");
    require(publicSaleStartTime <= block.timestamp, "Public sale is not active yet!");
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");

    _mintLoop(msg.sender, _mintAmount);
  }

  function totalSupply() public view returns (uint256) {
    return supply.current();
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public onlyOwner {
    _mintLoop(_receiver, _mintAmount);
  }

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

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

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

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

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

    if (revealed == false) {
      return hiddenMetadataUri;
    }

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

  function setRevealed() public onlyOwner {
    revealed = true;
  }

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setPresaleCost(uint256 _presaleCost) public onlyOwner {
    presaleConfig.whitelistCost = _presaleCost;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

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

  function setPresaleOn(bool _state) public onlyOwner {
    presaleOn = _state;
  }

  function emergencyOverridePublicSaleStartTime(uint32 startTime_) public onlyOwner {
    publicSaleStartTime = startTime_;
  }

  function emergencyOverridePresaleTimings(uint32 startTime_, uint32 endTime_) public onlyOwner {
    presaleConfig.startTime = startTime_;
    presaleConfig.endTime = endTime_;
  }

  function setMerkleRoot(bytes32 merkleRoot_) public onlyOwner {
    merkleRoot = merkleRoot_;
  }

  function withdraw() public onlyOwner {
    (bool ada, ) = payable(0xC352ce5800FE74b5A55B8A28E11C3d8cA17Ba562).call{value: address(this).balance * 29 / 100}("");
    require(ada);
    (bool adaa, ) = payable(0x446B7f1EC4749fddAfC50CcaA0c8f82d4665FB61).call{value: address(this).balance * 1 / 100}("");
    require(adaa);
    (bool adb, ) = payable(0xE2D9871835441739B73a7A4D46E7dA2981740029).call{value: address(this).balance * 30 / 100}("");
    require(adb);
    (bool adc, ) = payable(0x144720e2677FCAAB73C63229E3D1Eb6CA4a3C56C).call{value: address(this).balance * 30 / 100}("");
    require(adc);
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_hiddenMetadataUri","type":"string"},{"internalType":"string","name":"initialBaseUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"buyPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"buyPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32","name":"startTime_","type":"uint32"},{"internalType":"uint32","name":"endTime_","type":"uint32"}],"name":"emergencyOverridePresaleTimings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"startTime_","type":"uint32"}],"name":"emergencyOverridePublicSaleStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleConfig","outputs":[{"internalType":"uint32","name":"startTime","type":"uint32"},{"internalType":"uint32","name":"endTime","type":"uint32"},{"internalType":"uint32","name":"maxMintPerWhitelistWallet","type":"uint32"},{"internalType":"uint256","name":"whitelistCost","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot_","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_presaleCost","type":"uint256"}],"name":"setPresaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPresaleOn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","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":"_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":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userWallets","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

7f51b64bef034e9c742b76ec4ba99d6309ab6244305f4edb171c9887d36da2d16a60085560a06040819052600060808190526200003f91600a916200020e565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200006e91600b916200020e565b506701aa535d3d0c0000600e55611388600f55600560108190556011556014805461ffff19166001179055348015620000a657600080fd5b506040516200332e3803806200332e833981016040819052620000c9916200036b565b835184908490620000e29060009060208501906200020e565b508051620000f89060019060208401906200020e565b505050620001156200010f620001b860201b60201c565b620001bc565b60016007556040805160808101825263620d57c0815263620ea940602080830182905260029383019390935267013fbe85edc900006060909201829052601280546001600160601b0319166802620ea940620d57c0179055601391909155600d805463ffffffff1916909117905582516200019791600c91908501906200020e565b508051620001ad90600a9060208401906200020e565b505050505062000477565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200021c9062000424565b90600052602060002090601f0160209004810192826200024057600085556200028b565b82601f106200025b57805160ff19168380011785556200028b565b828001600101855582156200028b579182015b828111156200028b5782518255916020019190600101906200026e565b50620002999291506200029d565b5090565b5b808211156200029957600081556001016200029e565b600082601f830112620002c657600080fd5b81516001600160401b0380821115620002e357620002e362000461565b604051601f8301601f19908116603f011681019082821181831017156200030e576200030e62000461565b816040528381526020925086838588010111156200032b57600080fd5b600091505b838210156200034f578582018301518183018401529082019062000330565b83821115620003615760008385830101525b9695505050505050565b600080600080608085870312156200038257600080fd5b84516001600160401b03808211156200039a57600080fd5b620003a888838901620002b4565b95506020870151915080821115620003bf57600080fd5b620003cd88838901620002b4565b94506040870151915080821115620003e457600080fd5b620003f288838901620002b4565b935060608701519150808211156200040957600080fd5b506200041887828801620002b4565b91505092959194509250565b600181811c908216806200043957607f821691505b602082108114156200045b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612ea780620004876000396000f3fe6080604052600436106102885760003560e01c806363e6ffdd1161015a578063a45ba8e7116100c1578063c91fab521161007a578063c91fab5214610770578063d5abeb0114610783578063e985e9c514610799578063efbd73f4146107e2578063f2fde38b14610802578063fd88fa691461082257600080fd5b8063a45ba8e7146106d2578063b071401b146106e7578063b228d92514610707578063b88d4fde1461071d578063c0c8dd071461073d578063c87b56dd1461075057600080fd5b80638da5cb5b116101135780638da5cb5b146106295780638fdcf942146106475780639423ad261461066757806394354fd01461068757806395d89b411461069d578063a22cb465146106b257600080fd5b806363e6ffdd1461056757806370a0823114610594578063715018a6146105b45780637699cb91146105c95780637cb64759146105e95780637ec4a6591461060957600080fd5b80633bd64968116101fe5780634fdd43cb116101b75780634fdd43cb146104be57806351830227146104de5780635503a0e8146104fe5780635c975abb1461051357806362b99ad4146105325780636352211e1461054757600080fd5b80633bd64968146104075780633ccfd60b1461041c57806342842e0e14610431578063438b63001461045157806344a0d68a1461047e578063456969631461049e57600080fd5b806316ba10e01161025057806316ba10e01461036257806316c38b3c1461038257806318160ddd146103a25780631ad874b4146103b757806323b872dd146103d15780632eb4a7ab146103f157600080fd5b806301ffc9a71461028d57806306fdde03146102c2578063081812fc146102e4578063095ea7b31461031c57806313faede61461033e575b600080fd5b34801561029957600080fd5b506102ad6102a8366004612859565b61088d565b60405190151581526020015b60405180910390f35b3480156102ce57600080fd5b506102d76108df565b6040516102b99190612b34565b3480156102f057600080fd5b506103046102ff366004612840565b610971565b6040516001600160a01b0390911681526020016102b9565b34801561032857600080fd5b5061033c6103373660046127fb565b610a0b565b005b34801561034a57600080fd5b50610354600e5481565b6040519081526020016102b9565b34801561036e57600080fd5b5061033c61037d366004612893565b610b21565b34801561038e57600080fd5b5061033c61039d366004612825565b610b62565b3480156103ae57600080fd5b50610354610ba6565b3480156103c357600080fd5b506014546102ad9060ff1681565b3480156103dd57600080fd5b5061033c6103ec366004612719565b610bb6565b3480156103fd57600080fd5b5061035460085481565b34801561041357600080fd5b5061033c610be7565b34801561042857600080fd5b5061033c610c24565b34801561043d57600080fd5b5061033c61044c366004612719565b610eba565b34801561045d57600080fd5b5061047161046c3660046126cb565b610ed5565b6040516102b99190612af0565b34801561048a57600080fd5b5061033c610499366004612840565b610fb6565b3480156104aa57600080fd5b5061033c6104b936600461297e565b610fe5565b3480156104ca57600080fd5b5061033c6104d9366004612893565b61102b565b3480156104ea57600080fd5b506014546102ad9062010000900460ff1681565b34801561050a57600080fd5b506102d7611068565b34801561051f57600080fd5b506014546102ad90610100900460ff1681565b34801561053e57600080fd5b506102d76110f6565b34801561055357600080fd5b50610304610562366004612840565b611103565b34801561057357600080fd5b506103546105823660046126cb565b60156020526000908152604090205481565b3480156105a057600080fd5b506103546105af3660046126cb565b61117a565b3480156105c057600080fd5b5061033c611201565b3480156105d557600080fd5b5061033c6105e4366004612999565b611237565b3480156105f557600080fd5b5061033c610604366004612840565b611291565b34801561061557600080fd5b5061033c610624366004612893565b6112c0565b34801561063557600080fd5b506006546001600160a01b0316610304565b34801561065357600080fd5b5061033c610662366004612840565b6112fd565b34801561067357600080fd5b5061033c610682366004612825565b61132c565b34801561069357600080fd5b5061035460105481565b3480156106a957600080fd5b506102d7611369565b3480156106be57600080fd5b5061033c6106cd3660046127d1565b611378565b3480156106de57600080fd5b506102d7611383565b3480156106f357600080fd5b5061033c610702366004612840565b611390565b34801561071357600080fd5b5061035460115481565b34801561072957600080fd5b5061033c610738366004612755565b6113bf565b61033c61074b366004612840565b6113f7565b34801561075c57600080fd5b506102d761076b366004612840565b61164d565b61033c61077e3660046128ff565b6117cd565b34801561078f57600080fd5b50610354600f5481565b3480156107a557600080fd5b506102ad6107b43660046126e6565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107ee57600080fd5b5061033c6107fd3660046128dc565b611bbf565b34801561080e57600080fd5b5061033c61081d3660046126cb565b611bf3565b34801561082e57600080fd5b5060125460135461085b9163ffffffff808216926401000000008304821692600160401b90049091169084565b6040516102b9949392919063ffffffff9485168152928416602084015292166040820152606081019190915260800190565b60006001600160e01b031982166380ac58cd60e01b14806108be57506001600160e01b03198216635b5e139f60e01b145b806108d957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546108ee90612d99565b80601f016020809104026020016040519081016040528092919081815260200182805461091a90612d99565b80156109675780601f1061093c57610100808354040283529160200191610967565b820191906000526020600020905b81548152906001019060200180831161094a57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109ef5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610a1682611103565b9050806001600160a01b0316836001600160a01b03161415610a845760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016109e6565b336001600160a01b0382161480610aa05750610aa081336107b4565b610b125760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109e6565b610b1c8383611c8e565b505050565b6006546001600160a01b03163314610b4b5760405162461bcd60e51b81526004016109e690612b99565b8051610b5e90600b90602084019061257c565b5050565b6006546001600160a01b03163314610b8c5760405162461bcd60e51b81526004016109e690612b99565b601480549115156101000261ff0019909216919091179055565b6000610bb160095490565b905090565b610bc03382611cfc565b610bdc5760405162461bcd60e51b81526004016109e690612c2b565b610b1c838383611df3565b6006546001600160a01b03163314610c115760405162461bcd60e51b81526004016109e690612b99565b6014805462ff0000191662010000179055565b6006546001600160a01b03163314610c4e5760405162461bcd60e51b81526004016109e690612b99565b600073c352ce5800fe74b5a55b8a28e11c3d8ca17ba5626064610c7247601d612d37565b610c7c9190612d23565b604051600081818185875af1925050503d8060008114610cb8576040519150601f19603f3d011682016040523d82523d6000602084013e610cbd565b606091505b5050905080610ccb57600080fd5b600073446b7f1ec4749fddafc50ccaa0c8f82d4665fb616064610cef476001612d37565b610cf99190612d23565b604051600081818185875af1925050503d8060008114610d35576040519150601f19603f3d011682016040523d82523d6000602084013e610d3a565b606091505b5050905080610d4857600080fd5b600073e2d9871835441739b73a7a4d46e7da29817400296064610d6c47601e612d37565b610d769190612d23565b604051600081818185875af1925050503d8060008114610db2576040519150601f19603f3d011682016040523d82523d6000602084013e610db7565b606091505b5050905080610dc557600080fd5b600073144720e2677fcaab73c63229e3d1eb6ca4a3c56c6064610de947601e612d37565b610df39190612d23565b604051600081818185875af1925050503d8060008114610e2f576040519150601f19603f3d011682016040523d82523d6000602084013e610e34565b606091505b5050905080610e4257600080fd5b6000610e566006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610ea0576040519150601f19603f3d011682016040523d82523d6000602084013e610ea5565b606091505b5050905080610eb357600080fd5b5050505050565b610b1c838383604051806020016040528060008152506113bf565b60606000610ee28361117a565b905060008167ffffffffffffffff811115610eff57610eff612e45565b604051908082528060200260200182016040528015610f28578160200160208202803683370190505b509050600160005b8381108015610f415750600f548211155b15610fac576000610f5183611103565b9050866001600160a01b0316816001600160a01b03161415610f995782848381518110610f8057610f80612e2f565b602090810291909101015281610f9581612dd4565b9250505b82610fa381612dd4565b93505050610f30565b5090949350505050565b6006546001600160a01b03163314610fe05760405162461bcd60e51b81526004016109e690612b99565b600e55565b6006546001600160a01b0316331461100f5760405162461bcd60e51b81526004016109e690612b99565b600d805463ffffffff191663ffffffff92909216919091179055565b6006546001600160a01b031633146110555760405162461bcd60e51b81526004016109e690612b99565b8051610b5e90600c90602084019061257c565b600b805461107590612d99565b80601f01602080910402602001604051908101604052809291908181526020018280546110a190612d99565b80156110ee5780601f106110c3576101008083540402835291602001916110ee565b820191906000526020600020905b8154815290600101906020018083116110d157829003601f168201915b505050505081565b600a805461107590612d99565b6000818152600260205260408120546001600160a01b0316806108d95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016109e6565b60006001600160a01b0382166111e55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016109e6565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b0316331461122b5760405162461bcd60e51b81526004016109e690612b99565b6112356000611f8f565b565b6006546001600160a01b031633146112615760405162461bcd60e51b81526004016109e690612b99565b6012805463ffffffff9283166401000000000267ffffffffffffffff199091169290931691909117919091179055565b6006546001600160a01b031633146112bb5760405162461bcd60e51b81526004016109e690612b99565b600855565b6006546001600160a01b031633146112ea5760405162461bcd60e51b81526004016109e690612b99565b8051610b5e90600a90602084019061257c565b6006546001600160a01b031633146113275760405162461bcd60e51b81526004016109e690612b99565b601355565b6006546001600160a01b031633146113565760405162461bcd60e51b81526004016109e690612b99565b6014805460ff1916911515919091179055565b6060600180546108ee90612d99565b610b5e338383611fe1565b600c805461107590612d99565b6006546001600160a01b031633146113ba5760405162461bcd60e51b81526004016109e690612b99565b601055565b6113c93383611cfc565b6113e55760405162461bcd60e51b81526004016109e690612c2b565b6113f1848484846120b0565b50505050565b803332146114175760405162461bcd60e51b81526004016109e690612c7c565b60008111801561142957506010548111155b6114455760405162461bcd60e51b81526004016109e690612bce565b600f548161145260095490565b61145c9190612d0b565b11156114a15760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016109e6565b601154336000908152601560205260409020546114bf908390612d0b565b11156114dd5760405162461bcd60e51b81526004016109e690612cc4565b600260075414156115305760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109e6565b6002600755601454610100900460ff161561158d5760405162461bcd60e51b815260206004820152601960248201527f5075626c6963206d696e74696e67206973207061757365642e0000000000000060448201526064016109e6565b600d544263ffffffff90911611156115e75760405162461bcd60e51b815260206004820152601e60248201527f5075626c69632073616c65206973206e6f74206163746976652079657421000060448201526064016109e6565b81600e546115f59190612d37565b34101561163a5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016109e6565b61164433836120e3565b50506001600755565b6000818152600260205260409020546060906001600160a01b03166116cc5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109e6565b60145462010000900460ff1661176e57600c80546116e990612d99565b80601f016020809104026020016040519081016040528092919081815260200182805461171590612d99565b80156117625780601f1061173757610100808354040283529160200191611762565b820191906000526020600020905b81548152906001019060200180831161174557829003601f168201915b50505050509050919050565b6000611778612149565b9050600081511161179857604051806020016040528060008152506117c6565b806117a284612158565b600b6040516020016117b6939291906129ef565b6040516020818303038152906040525b9392505050565b823332146117ed5760405162461bcd60e51b81526004016109e690612c7c565b6000811180156117ff57506010548111155b61181b5760405162461bcd60e51b81526004016109e690612bce565b600f548161182860095490565b6118329190612d0b565b11156118775760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016109e6565b60115433600090815260156020526040902054611895908390612d0b565b11156118b35760405162461bcd60e51b81526004016109e690612cc4565b600260075414156119065760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109e6565b60026007556040805160808101825260125463ffffffff8082168352640100000000820481166020840152600160401b9091041691810191909152601354606082015260145460ff1661199b5760405162461bcd60e51b815260206004820152601860248201527f50726573616c6520686173206265656e207061757365642e000000000000000060448201526064016109e6565b805163ffffffff1642108015906119bb5750806020015163ffffffff1642105b611a075760405162461bcd60e51b815260206004820152601a60248201527f50726573616c65206973206e6f7420616374697665207965742100000000000060448201526064016109e6565b848160600151611a179190612d37565b341015611a5c5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016109e6565b6040808201513360009081526015602052919091205463ffffffff90911690611a86908790612d0b565b1115611aea5760405162461bcd60e51b815260206004820152602d60248201527f557365722065786365656473206d6178206d696e74207065722077686974656c60448201526c69737465642077616c6c65742160981b60648201526084016109e6565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050611b64858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506008549150849050612256565b611ba85760405162461bcd60e51b815260206004820152601560248201527424b73b30b634b21026b2b935b63290283937b7b31760591b60448201526064016109e6565b611bb233876120e3565b5050600160075550505050565b6006546001600160a01b03163314611be95760405162461bcd60e51b81526004016109e690612b99565b610b5e81836120e3565b6006546001600160a01b03163314611c1d5760405162461bcd60e51b81526004016109e690612b99565b6001600160a01b038116611c825760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109e6565b611c8b81611f8f565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611cc382611103565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611d755760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109e6565b6000611d8083611103565b9050806001600160a01b0316846001600160a01b03161480611dbb5750836001600160a01b0316611db084610971565b6001600160a01b0316145b80611deb57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611e0682611103565b6001600160a01b031614611e6a5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016109e6565b6001600160a01b038216611ecc5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109e6565b611ed7600082611c8e565b6001600160a01b0383166000908152600360205260408120805460019290611f00908490612d56565b90915550506001600160a01b0382166000908152600360205260408120805460019290611f2e908490612d0b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156120435760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109e6565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6120bb848484611df3565b6120c78484848461226c565b6113f15760405162461bcd60e51b81526004016109e690612b47565b60005b81811015610b1c576001600160a01b038316600090815260156020526040812080549161211283612dd4565b9190505550612125600980546001019055565b6121378361213260095490565b612379565b8061214181612dd4565b9150506120e6565b6060600a80546108ee90612d99565b60608161217c5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156121a6578061219081612dd4565b915061219f9050600a83612d23565b9150612180565b60008167ffffffffffffffff8111156121c1576121c1612e45565b6040519080825280601f01601f1916602001820160405280156121eb576020820181803683370190505b5090505b8415611deb57612200600183612d56565b915061220d600a86612def565b612218906030612d0b565b60f81b81838151811061222d5761222d612e2f565b60200101906001600160f81b031916908160001a90535061224f600a86612d23565b94506121ef565b6000826122638584612393565b14949350505050565b60006001600160a01b0384163b1561236e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906122b0903390899088908890600401612ab3565b602060405180830381600087803b1580156122ca57600080fd5b505af19250505080156122fa575060408051601f3d908101601f191682019092526122f791810190612876565b60015b612354573d808015612328576040519150601f19603f3d011682016040523d82523d6000602084013e61232d565b606091505b50805161234c5760405162461bcd60e51b81526004016109e690612b47565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611deb565b506001949350505050565b610b5e828260405180602001604052806000815250612407565b600081815b84518110156123ff5760008582815181106123b5576123b5612e2f565b602002602001015190508083116123db57600083815260208290526040902092506123ec565b600081815260208490526040902092505b50806123f781612dd4565b915050612398565b509392505050565b612411838361243a565b61241e600084848461226c565b610b1c5760405162461bcd60e51b81526004016109e690612b47565b6001600160a01b0382166124905760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109e6565b6000818152600260205260409020546001600160a01b0316156124f55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109e6565b6001600160a01b038216600090815260036020526040812080546001929061251e908490612d0b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461258890612d99565b90600052602060002090601f0160209004810192826125aa57600085556125f0565b82601f106125c357805160ff19168380011785556125f0565b828001600101855582156125f0579182015b828111156125f05782518255916020019190600101906125d5565b506125fc929150612600565b5090565b5b808211156125fc5760008155600101612601565b600067ffffffffffffffff8084111561263057612630612e45565b604051601f8501601f19908116603f0116810190828211818310171561265857612658612e45565b8160405280935085815286868601111561267157600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146126a257600080fd5b919050565b803580151581146126a257600080fd5b803563ffffffff811681146126a257600080fd5b6000602082840312156126dd57600080fd5b6117c68261268b565b600080604083850312156126f957600080fd5b6127028361268b565b91506127106020840161268b565b90509250929050565b60008060006060848603121561272e57600080fd5b6127378461268b565b92506127456020850161268b565b9150604084013590509250925092565b6000806000806080858703121561276b57600080fd5b6127748561268b565b93506127826020860161268b565b925060408501359150606085013567ffffffffffffffff8111156127a557600080fd5b8501601f810187136127b657600080fd5b6127c587823560208401612615565b91505092959194509250565b600080604083850312156127e457600080fd5b6127ed8361268b565b9150612710602084016126a7565b6000806040838503121561280e57600080fd5b6128178361268b565b946020939093013593505050565b60006020828403121561283757600080fd5b6117c6826126a7565b60006020828403121561285257600080fd5b5035919050565b60006020828403121561286b57600080fd5b81356117c681612e5b565b60006020828403121561288857600080fd5b81516117c681612e5b565b6000602082840312156128a557600080fd5b813567ffffffffffffffff8111156128bc57600080fd5b8201601f810184136128cd57600080fd5b611deb84823560208401612615565b600080604083850312156128ef57600080fd5b823591506127106020840161268b565b60008060006040848603121561291457600080fd5b83359250602084013567ffffffffffffffff8082111561293357600080fd5b818601915086601f83011261294757600080fd5b81358181111561295657600080fd5b8760208260051b850101111561296b57600080fd5b6020830194508093505050509250925092565b60006020828403121561299057600080fd5b6117c6826126b7565b600080604083850312156129ac57600080fd5b6129b5836126b7565b9150612710602084016126b7565b600081518084526129db816020860160208601612d6d565b601f01601f19169290920160200192915050565b600084516020612a028285838a01612d6d565b855191840191612a158184848a01612d6d565b8554920191600090600181811c9080831680612a3257607f831692505b858310811415612a5057634e487b7160e01b85526022600452602485fd5b808015612a645760018114612a7557612aa2565b60ff19851688528388019550612aa2565b60008b81526020902060005b85811015612a9a5781548a820152908401908801612a81565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612ae6908301846129c3565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612b2857835183529284019291840191600101612b0c565b50909695505050505050565b6020815260006117c660208301846129c3565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526037908201527f496e76616c6964206d696e7420616d6f756e742e2053686f756c64206265206c60408201527f657373207468616e206f7220657175616c20746f203521000000000000000000606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526028908201527f596f752043616e6e6f74204d696e74205468726f75676820416e6f746865722060408201526710dbdb9d1c9858dd60c21b606082015260800190565b60208082526027908201527f557365722065786365656473206d6178206d696e74206c696d6974207065722060408201526677616c6c65742160c81b606082015260800190565b60008219821115612d1e57612d1e612e03565b500190565b600082612d3257612d32612e19565b500490565b6000816000190483118215151615612d5157612d51612e03565b500290565b600082821015612d6857612d68612e03565b500390565b60005b83811015612d88578181015183820152602001612d70565b838111156113f15750506000910152565b600181811c90821680612dad57607f821691505b60208210811415612dce57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612de857612de8612e03565b5060010190565b600082612dfe57612dfe612e19565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611c8b57600080fdfea26469706673582212209d6bda22e8dcdd736b619c64e16d93d8299ce845e589222ed5ca8e3e8d7559e764736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000b564f494420454e544954590000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004564f4944000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d525a6155734e354d3865474c6b62336b5362484d786a7943596938526772457054444c5474446f50613759442f68696464656e2e6a736f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5738477869385969436b534c355134416b6b566d4b45656e61586f4c6a36316e57376a5a575879744371455a2f00000000000000000000

Deployed Bytecode

0x6080604052600436106102885760003560e01c806363e6ffdd1161015a578063a45ba8e7116100c1578063c91fab521161007a578063c91fab5214610770578063d5abeb0114610783578063e985e9c514610799578063efbd73f4146107e2578063f2fde38b14610802578063fd88fa691461082257600080fd5b8063a45ba8e7146106d2578063b071401b146106e7578063b228d92514610707578063b88d4fde1461071d578063c0c8dd071461073d578063c87b56dd1461075057600080fd5b80638da5cb5b116101135780638da5cb5b146106295780638fdcf942146106475780639423ad261461066757806394354fd01461068757806395d89b411461069d578063a22cb465146106b257600080fd5b806363e6ffdd1461056757806370a0823114610594578063715018a6146105b45780637699cb91146105c95780637cb64759146105e95780637ec4a6591461060957600080fd5b80633bd64968116101fe5780634fdd43cb116101b75780634fdd43cb146104be57806351830227146104de5780635503a0e8146104fe5780635c975abb1461051357806362b99ad4146105325780636352211e1461054757600080fd5b80633bd64968146104075780633ccfd60b1461041c57806342842e0e14610431578063438b63001461045157806344a0d68a1461047e578063456969631461049e57600080fd5b806316ba10e01161025057806316ba10e01461036257806316c38b3c1461038257806318160ddd146103a25780631ad874b4146103b757806323b872dd146103d15780632eb4a7ab146103f157600080fd5b806301ffc9a71461028d57806306fdde03146102c2578063081812fc146102e4578063095ea7b31461031c57806313faede61461033e575b600080fd5b34801561029957600080fd5b506102ad6102a8366004612859565b61088d565b60405190151581526020015b60405180910390f35b3480156102ce57600080fd5b506102d76108df565b6040516102b99190612b34565b3480156102f057600080fd5b506103046102ff366004612840565b610971565b6040516001600160a01b0390911681526020016102b9565b34801561032857600080fd5b5061033c6103373660046127fb565b610a0b565b005b34801561034a57600080fd5b50610354600e5481565b6040519081526020016102b9565b34801561036e57600080fd5b5061033c61037d366004612893565b610b21565b34801561038e57600080fd5b5061033c61039d366004612825565b610b62565b3480156103ae57600080fd5b50610354610ba6565b3480156103c357600080fd5b506014546102ad9060ff1681565b3480156103dd57600080fd5b5061033c6103ec366004612719565b610bb6565b3480156103fd57600080fd5b5061035460085481565b34801561041357600080fd5b5061033c610be7565b34801561042857600080fd5b5061033c610c24565b34801561043d57600080fd5b5061033c61044c366004612719565b610eba565b34801561045d57600080fd5b5061047161046c3660046126cb565b610ed5565b6040516102b99190612af0565b34801561048a57600080fd5b5061033c610499366004612840565b610fb6565b3480156104aa57600080fd5b5061033c6104b936600461297e565b610fe5565b3480156104ca57600080fd5b5061033c6104d9366004612893565b61102b565b3480156104ea57600080fd5b506014546102ad9062010000900460ff1681565b34801561050a57600080fd5b506102d7611068565b34801561051f57600080fd5b506014546102ad90610100900460ff1681565b34801561053e57600080fd5b506102d76110f6565b34801561055357600080fd5b50610304610562366004612840565b611103565b34801561057357600080fd5b506103546105823660046126cb565b60156020526000908152604090205481565b3480156105a057600080fd5b506103546105af3660046126cb565b61117a565b3480156105c057600080fd5b5061033c611201565b3480156105d557600080fd5b5061033c6105e4366004612999565b611237565b3480156105f557600080fd5b5061033c610604366004612840565b611291565b34801561061557600080fd5b5061033c610624366004612893565b6112c0565b34801561063557600080fd5b506006546001600160a01b0316610304565b34801561065357600080fd5b5061033c610662366004612840565b6112fd565b34801561067357600080fd5b5061033c610682366004612825565b61132c565b34801561069357600080fd5b5061035460105481565b3480156106a957600080fd5b506102d7611369565b3480156106be57600080fd5b5061033c6106cd3660046127d1565b611378565b3480156106de57600080fd5b506102d7611383565b3480156106f357600080fd5b5061033c610702366004612840565b611390565b34801561071357600080fd5b5061035460115481565b34801561072957600080fd5b5061033c610738366004612755565b6113bf565b61033c61074b366004612840565b6113f7565b34801561075c57600080fd5b506102d761076b366004612840565b61164d565b61033c61077e3660046128ff565b6117cd565b34801561078f57600080fd5b50610354600f5481565b3480156107a557600080fd5b506102ad6107b43660046126e6565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107ee57600080fd5b5061033c6107fd3660046128dc565b611bbf565b34801561080e57600080fd5b5061033c61081d3660046126cb565b611bf3565b34801561082e57600080fd5b5060125460135461085b9163ffffffff808216926401000000008304821692600160401b90049091169084565b6040516102b9949392919063ffffffff9485168152928416602084015292166040820152606081019190915260800190565b60006001600160e01b031982166380ac58cd60e01b14806108be57506001600160e01b03198216635b5e139f60e01b145b806108d957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546108ee90612d99565b80601f016020809104026020016040519081016040528092919081815260200182805461091a90612d99565b80156109675780601f1061093c57610100808354040283529160200191610967565b820191906000526020600020905b81548152906001019060200180831161094a57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109ef5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610a1682611103565b9050806001600160a01b0316836001600160a01b03161415610a845760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016109e6565b336001600160a01b0382161480610aa05750610aa081336107b4565b610b125760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109e6565b610b1c8383611c8e565b505050565b6006546001600160a01b03163314610b4b5760405162461bcd60e51b81526004016109e690612b99565b8051610b5e90600b90602084019061257c565b5050565b6006546001600160a01b03163314610b8c5760405162461bcd60e51b81526004016109e690612b99565b601480549115156101000261ff0019909216919091179055565b6000610bb160095490565b905090565b610bc03382611cfc565b610bdc5760405162461bcd60e51b81526004016109e690612c2b565b610b1c838383611df3565b6006546001600160a01b03163314610c115760405162461bcd60e51b81526004016109e690612b99565b6014805462ff0000191662010000179055565b6006546001600160a01b03163314610c4e5760405162461bcd60e51b81526004016109e690612b99565b600073c352ce5800fe74b5a55b8a28e11c3d8ca17ba5626064610c7247601d612d37565b610c7c9190612d23565b604051600081818185875af1925050503d8060008114610cb8576040519150601f19603f3d011682016040523d82523d6000602084013e610cbd565b606091505b5050905080610ccb57600080fd5b600073446b7f1ec4749fddafc50ccaa0c8f82d4665fb616064610cef476001612d37565b610cf99190612d23565b604051600081818185875af1925050503d8060008114610d35576040519150601f19603f3d011682016040523d82523d6000602084013e610d3a565b606091505b5050905080610d4857600080fd5b600073e2d9871835441739b73a7a4d46e7da29817400296064610d6c47601e612d37565b610d769190612d23565b604051600081818185875af1925050503d8060008114610db2576040519150601f19603f3d011682016040523d82523d6000602084013e610db7565b606091505b5050905080610dc557600080fd5b600073144720e2677fcaab73c63229e3d1eb6ca4a3c56c6064610de947601e612d37565b610df39190612d23565b604051600081818185875af1925050503d8060008114610e2f576040519150601f19603f3d011682016040523d82523d6000602084013e610e34565b606091505b5050905080610e4257600080fd5b6000610e566006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610ea0576040519150601f19603f3d011682016040523d82523d6000602084013e610ea5565b606091505b5050905080610eb357600080fd5b5050505050565b610b1c838383604051806020016040528060008152506113bf565b60606000610ee28361117a565b905060008167ffffffffffffffff811115610eff57610eff612e45565b604051908082528060200260200182016040528015610f28578160200160208202803683370190505b509050600160005b8381108015610f415750600f548211155b15610fac576000610f5183611103565b9050866001600160a01b0316816001600160a01b03161415610f995782848381518110610f8057610f80612e2f565b602090810291909101015281610f9581612dd4565b9250505b82610fa381612dd4565b93505050610f30565b5090949350505050565b6006546001600160a01b03163314610fe05760405162461bcd60e51b81526004016109e690612b99565b600e55565b6006546001600160a01b0316331461100f5760405162461bcd60e51b81526004016109e690612b99565b600d805463ffffffff191663ffffffff92909216919091179055565b6006546001600160a01b031633146110555760405162461bcd60e51b81526004016109e690612b99565b8051610b5e90600c90602084019061257c565b600b805461107590612d99565b80601f01602080910402602001604051908101604052809291908181526020018280546110a190612d99565b80156110ee5780601f106110c3576101008083540402835291602001916110ee565b820191906000526020600020905b8154815290600101906020018083116110d157829003601f168201915b505050505081565b600a805461107590612d99565b6000818152600260205260408120546001600160a01b0316806108d95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016109e6565b60006001600160a01b0382166111e55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016109e6565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b0316331461122b5760405162461bcd60e51b81526004016109e690612b99565b6112356000611f8f565b565b6006546001600160a01b031633146112615760405162461bcd60e51b81526004016109e690612b99565b6012805463ffffffff9283166401000000000267ffffffffffffffff199091169290931691909117919091179055565b6006546001600160a01b031633146112bb5760405162461bcd60e51b81526004016109e690612b99565b600855565b6006546001600160a01b031633146112ea5760405162461bcd60e51b81526004016109e690612b99565b8051610b5e90600a90602084019061257c565b6006546001600160a01b031633146113275760405162461bcd60e51b81526004016109e690612b99565b601355565b6006546001600160a01b031633146113565760405162461bcd60e51b81526004016109e690612b99565b6014805460ff1916911515919091179055565b6060600180546108ee90612d99565b610b5e338383611fe1565b600c805461107590612d99565b6006546001600160a01b031633146113ba5760405162461bcd60e51b81526004016109e690612b99565b601055565b6113c93383611cfc565b6113e55760405162461bcd60e51b81526004016109e690612c2b565b6113f1848484846120b0565b50505050565b803332146114175760405162461bcd60e51b81526004016109e690612c7c565b60008111801561142957506010548111155b6114455760405162461bcd60e51b81526004016109e690612bce565b600f548161145260095490565b61145c9190612d0b565b11156114a15760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016109e6565b601154336000908152601560205260409020546114bf908390612d0b565b11156114dd5760405162461bcd60e51b81526004016109e690612cc4565b600260075414156115305760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109e6565b6002600755601454610100900460ff161561158d5760405162461bcd60e51b815260206004820152601960248201527f5075626c6963206d696e74696e67206973207061757365642e0000000000000060448201526064016109e6565b600d544263ffffffff90911611156115e75760405162461bcd60e51b815260206004820152601e60248201527f5075626c69632073616c65206973206e6f74206163746976652079657421000060448201526064016109e6565b81600e546115f59190612d37565b34101561163a5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016109e6565b61164433836120e3565b50506001600755565b6000818152600260205260409020546060906001600160a01b03166116cc5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109e6565b60145462010000900460ff1661176e57600c80546116e990612d99565b80601f016020809104026020016040519081016040528092919081815260200182805461171590612d99565b80156117625780601f1061173757610100808354040283529160200191611762565b820191906000526020600020905b81548152906001019060200180831161174557829003601f168201915b50505050509050919050565b6000611778612149565b9050600081511161179857604051806020016040528060008152506117c6565b806117a284612158565b600b6040516020016117b6939291906129ef565b6040516020818303038152906040525b9392505050565b823332146117ed5760405162461bcd60e51b81526004016109e690612c7c565b6000811180156117ff57506010548111155b61181b5760405162461bcd60e51b81526004016109e690612bce565b600f548161182860095490565b6118329190612d0b565b11156118775760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b60448201526064016109e6565b60115433600090815260156020526040902054611895908390612d0b565b11156118b35760405162461bcd60e51b81526004016109e690612cc4565b600260075414156119065760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016109e6565b60026007556040805160808101825260125463ffffffff8082168352640100000000820481166020840152600160401b9091041691810191909152601354606082015260145460ff1661199b5760405162461bcd60e51b815260206004820152601860248201527f50726573616c6520686173206265656e207061757365642e000000000000000060448201526064016109e6565b805163ffffffff1642108015906119bb5750806020015163ffffffff1642105b611a075760405162461bcd60e51b815260206004820152601a60248201527f50726573616c65206973206e6f7420616374697665207965742100000000000060448201526064016109e6565b848160600151611a179190612d37565b341015611a5c5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016109e6565b6040808201513360009081526015602052919091205463ffffffff90911690611a86908790612d0b565b1115611aea5760405162461bcd60e51b815260206004820152602d60248201527f557365722065786365656473206d6178206d696e74207065722077686974656c60448201526c69737465642077616c6c65742160981b60648201526084016109e6565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050611b64858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506008549150849050612256565b611ba85760405162461bcd60e51b815260206004820152601560248201527424b73b30b634b21026b2b935b63290283937b7b31760591b60448201526064016109e6565b611bb233876120e3565b5050600160075550505050565b6006546001600160a01b03163314611be95760405162461bcd60e51b81526004016109e690612b99565b610b5e81836120e3565b6006546001600160a01b03163314611c1d5760405162461bcd60e51b81526004016109e690612b99565b6001600160a01b038116611c825760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109e6565b611c8b81611f8f565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611cc382611103565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611d755760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109e6565b6000611d8083611103565b9050806001600160a01b0316846001600160a01b03161480611dbb5750836001600160a01b0316611db084610971565b6001600160a01b0316145b80611deb57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611e0682611103565b6001600160a01b031614611e6a5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016109e6565b6001600160a01b038216611ecc5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109e6565b611ed7600082611c8e565b6001600160a01b0383166000908152600360205260408120805460019290611f00908490612d56565b90915550506001600160a01b0382166000908152600360205260408120805460019290611f2e908490612d0b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156120435760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109e6565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6120bb848484611df3565b6120c78484848461226c565b6113f15760405162461bcd60e51b81526004016109e690612b47565b60005b81811015610b1c576001600160a01b038316600090815260156020526040812080549161211283612dd4565b9190505550612125600980546001019055565b6121378361213260095490565b612379565b8061214181612dd4565b9150506120e6565b6060600a80546108ee90612d99565b60608161217c5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156121a6578061219081612dd4565b915061219f9050600a83612d23565b9150612180565b60008167ffffffffffffffff8111156121c1576121c1612e45565b6040519080825280601f01601f1916602001820160405280156121eb576020820181803683370190505b5090505b8415611deb57612200600183612d56565b915061220d600a86612def565b612218906030612d0b565b60f81b81838151811061222d5761222d612e2f565b60200101906001600160f81b031916908160001a90535061224f600a86612d23565b94506121ef565b6000826122638584612393565b14949350505050565b60006001600160a01b0384163b1561236e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906122b0903390899088908890600401612ab3565b602060405180830381600087803b1580156122ca57600080fd5b505af19250505080156122fa575060408051601f3d908101601f191682019092526122f791810190612876565b60015b612354573d808015612328576040519150601f19603f3d011682016040523d82523d6000602084013e61232d565b606091505b50805161234c5760405162461bcd60e51b81526004016109e690612b47565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611deb565b506001949350505050565b610b5e828260405180602001604052806000815250612407565b600081815b84518110156123ff5760008582815181106123b5576123b5612e2f565b602002602001015190508083116123db57600083815260208290526040902092506123ec565b600081815260208490526040902092505b50806123f781612dd4565b915050612398565b509392505050565b612411838361243a565b61241e600084848461226c565b610b1c5760405162461bcd60e51b81526004016109e690612b47565b6001600160a01b0382166124905760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109e6565b6000818152600260205260409020546001600160a01b0316156124f55760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109e6565b6001600160a01b038216600090815260036020526040812080546001929061251e908490612d0b565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461258890612d99565b90600052602060002090601f0160209004810192826125aa57600085556125f0565b82601f106125c357805160ff19168380011785556125f0565b828001600101855582156125f0579182015b828111156125f05782518255916020019190600101906125d5565b506125fc929150612600565b5090565b5b808211156125fc5760008155600101612601565b600067ffffffffffffffff8084111561263057612630612e45565b604051601f8501601f19908116603f0116810190828211818310171561265857612658612e45565b8160405280935085815286868601111561267157600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146126a257600080fd5b919050565b803580151581146126a257600080fd5b803563ffffffff811681146126a257600080fd5b6000602082840312156126dd57600080fd5b6117c68261268b565b600080604083850312156126f957600080fd5b6127028361268b565b91506127106020840161268b565b90509250929050565b60008060006060848603121561272e57600080fd5b6127378461268b565b92506127456020850161268b565b9150604084013590509250925092565b6000806000806080858703121561276b57600080fd5b6127748561268b565b93506127826020860161268b565b925060408501359150606085013567ffffffffffffffff8111156127a557600080fd5b8501601f810187136127b657600080fd5b6127c587823560208401612615565b91505092959194509250565b600080604083850312156127e457600080fd5b6127ed8361268b565b9150612710602084016126a7565b6000806040838503121561280e57600080fd5b6128178361268b565b946020939093013593505050565b60006020828403121561283757600080fd5b6117c6826126a7565b60006020828403121561285257600080fd5b5035919050565b60006020828403121561286b57600080fd5b81356117c681612e5b565b60006020828403121561288857600080fd5b81516117c681612e5b565b6000602082840312156128a557600080fd5b813567ffffffffffffffff8111156128bc57600080fd5b8201601f810184136128cd57600080fd5b611deb84823560208401612615565b600080604083850312156128ef57600080fd5b823591506127106020840161268b565b60008060006040848603121561291457600080fd5b83359250602084013567ffffffffffffffff8082111561293357600080fd5b818601915086601f83011261294757600080fd5b81358181111561295657600080fd5b8760208260051b850101111561296b57600080fd5b6020830194508093505050509250925092565b60006020828403121561299057600080fd5b6117c6826126b7565b600080604083850312156129ac57600080fd5b6129b5836126b7565b9150612710602084016126b7565b600081518084526129db816020860160208601612d6d565b601f01601f19169290920160200192915050565b600084516020612a028285838a01612d6d565b855191840191612a158184848a01612d6d565b8554920191600090600181811c9080831680612a3257607f831692505b858310811415612a5057634e487b7160e01b85526022600452602485fd5b808015612a645760018114612a7557612aa2565b60ff19851688528388019550612aa2565b60008b81526020902060005b85811015612a9a5781548a820152908401908801612a81565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612ae6908301846129c3565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612b2857835183529284019291840191600101612b0c565b50909695505050505050565b6020815260006117c660208301846129c3565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526037908201527f496e76616c6964206d696e7420616d6f756e742e2053686f756c64206265206c60408201527f657373207468616e206f7220657175616c20746f203521000000000000000000606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526028908201527f596f752043616e6e6f74204d696e74205468726f75676820416e6f746865722060408201526710dbdb9d1c9858dd60c21b606082015260800190565b60208082526027908201527f557365722065786365656473206d6178206d696e74206c696d6974207065722060408201526677616c6c65742160c81b606082015260800190565b60008219821115612d1e57612d1e612e03565b500190565b600082612d3257612d32612e19565b500490565b6000816000190483118215151615612d5157612d51612e03565b500290565b600082821015612d6857612d68612e03565b500390565b60005b83811015612d88578181015183820152602001612d70565b838111156113f15750506000910152565b600181811c90821680612dad57607f821691505b60208210811415612dce57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612de857612de8612e03565b5060010190565b600082612dfe57612dfe612e19565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611c8b57600080fdfea26469706673582212209d6bda22e8dcdd736b619c64e16d93d8299ce845e589222ed5ca8e3e8d7559e764736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000000b564f494420454e544954590000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004564f4944000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d525a6155734e354d3865474c6b62336b5362484d786a7943596938526772457054444c5474446f50613759442f68696464656e2e6a736f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5738477869385969436b534c355134416b6b566d4b45656e61586f4c6a36316e57376a5a575879744371455a2f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): VOID ENTITY
Arg [1] : _symbol (string): VOID
Arg [2] : _hiddenMetadataUri (string): ipfs://QmRZaUsN5M8eGLkb3kSbHMxjyCYi8RgrEpTDLTtDoPa7YD/hidden.json
Arg [3] : initialBaseUri (string): ipfs://QmW8Gxi8YiCkSL5Q4AkkVmKEenaXoLj61nW7jZWXytCqEZ/

-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [5] : 564f494420454e54495459000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 564f494400000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [9] : 697066733a2f2f516d525a6155734e354d3865474c6b62336b5362484d786a79
Arg [10] : 43596938526772457054444c5474446f50613759442f68696464656e2e6a736f
Arg [11] : 6e00000000000000000000000000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [13] : 697066733a2f2f516d5738477869385969436b534c355134416b6b566d4b4565
Arg [14] : 6e61586f4c6a36316e57376a5a575879744371455a2f00000000000000000000


Deployed Bytecode Sourcemap

44590:6802:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30722:305;;;;;;;;;;-1:-1:-1;30722:305:0;;;;;:::i;:::-;;:::i;:::-;;;9791:14:1;;9784:22;9766:41;;9754:2;9739:18;30722:305:0;;;;;;;;31667:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33226:221::-;;;;;;;;;;-1:-1:-1;33226:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8452:32:1;;;8434:51;;8422:2;8407:18;33226:221:0;8288:203:1;32749:411:0;;;;;;;;;;-1:-1:-1;32749:411:0;;;;;:::i;:::-;;:::i;:::-;;45007:32;;;;;;;;;;;;;;;;;;;9964:25:1;;;9952:2;9937:18;45007:32:0;9818:177:1;49622:100:0;;;;;;;;;;-1:-1:-1;49622:100:0;;;;;:::i;:::-;;:::i;49728:77::-;;;;;;;;;;-1:-1:-1;49728:77:0;;;;;:::i;:::-;;:::i;47593:89::-;;;;;;;;;;;;;:::i;45205:28::-;;;;;;;;;;-1:-1:-1;45205:28:0;;;;;;;;33976:339;;;;;;;;;;-1:-1:-1;33976:339:0;;;;;:::i;:::-;;:::i;44723:94::-;;;;;;;;;;;;;;;;48964:68;;;;;;;;;;;;;:::i;50325:706::-;;;;;;;;;;;;;:::i;34386:185::-;;;;;;;;;;-1:-1:-1;34386:185:0;;;;;:::i;:::-;;:::i;47823:635::-;;;;;;;;;;-1:-1:-1;47823:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;49038:74::-;;;;;;;;;;-1:-1:-1;49038:74:0;;;;;:::i;:::-;;:::i;49900:127::-;;;;;;;;;;-1:-1:-1;49900:127:0;;;;;:::i;:::-;;:::i;49378:132::-;;;;;;;;;;-1:-1:-1;49378:132:0;;;;;:::i;:::-;;:::i;45269:20::-;;;;;;;;;;-1:-1:-1;45269:20:0;;;;;;;;;;;44896:33;;;;;;;;;;;;;:::i;45238:26::-;;;;;;;;;;-1:-1:-1;45238:26:0;;;;;;;;;;;44862:28;;;;;;;;;;;;;:::i;31361:239::-;;;;;;;;;;-1:-1:-1;31361:239:0;;;;;:::i;:::-;;:::i;45296:46::-;;;;;;;;;;-1:-1:-1;45296:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;31091:208;;;;;;;;;;-1:-1:-1;31091:208:0;;;;;:::i;:::-;;:::i;11343:103::-;;;;;;;;;;;;;:::i;50033:182::-;;;;;;;;;;-1:-1:-1;50033:182:0;;;;;:::i;:::-;;:::i;50221:98::-;;;;;;;;;;-1:-1:-1;50221:98:0;;;;;:::i;:::-;;:::i;49516:100::-;;;;;;;;;;-1:-1:-1;49516:100:0;;;;;:::i;:::-;;:::i;10692:87::-;;;;;;;;;;-1:-1:-1;10765:6:0;;-1:-1:-1;;;;;10765:6:0;10692:87;;49118:118;;;;;;;;;;-1:-1:-1;49118:118:0;;;;;:::i;:::-;;:::i;49811:83::-;;;;;;;;;;-1:-1:-1;49811:83:0;;;;;:::i;:::-;;:::i;45080:37::-;;;;;;;;;;;;;;;;31836:104;;;;;;;;;;;;;:::i;33519:155::-;;;;;;;;;;-1:-1:-1;33519:155:0;;;;;:::i;:::-;;:::i;44934:31::-;;;;;;;;;;;;;:::i;49242:130::-;;;;;;;;;;-1:-1:-1;49242:130:0;;;;;:::i;:::-;;:::i;45122:35::-;;;;;;;;;;;;;;;;34642:328;;;;;;;;;;-1:-1:-1;34642:328:0;;;;;:::i;:::-;;:::i;47207:380::-;;;;;;:::i;:::-;;:::i;48464:494::-;;;;;;;;;;-1:-1:-1;48464:494:0;;;;;:::i;:::-;;:::i;46387:812::-;;;;;;:::i;:::-;;:::i;45044:31::-;;;;;;;;;;;;;;;;33745:164;;;;;;;;;;-1:-1:-1;33745:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33866:25:0;;;33842:4;33866:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;33745:164;47690:127;;;;;;;;;;-1:-1:-1;47690:127:0;;;;;:::i;:::-;;:::i;11601:201::-;;;;;;;;;;-1:-1:-1;11601:201:0;;;;;:::i;:::-;;:::i;45164:34::-;;;;;;;;;;-1:-1:-1;45164:34:0;;;;;;;;;;;;;;;;;-1:-1:-1;;;45164:34:0;;;;;;;;;;;;;;;;;21502:10:1;21539:15;;;21521:34;;21591:15;;;21586:2;21571:18;;21564:43;21643:15;;21638:2;21623:18;;21616:43;21690:2;21675:18;;21668:34;;;;21479:3;21464:19;;21267:441;30722:305:0;30824:4;-1:-1:-1;;;;;;30861:40:0;;-1:-1:-1;;;30861:40:0;;:105;;-1:-1:-1;;;;;;;30918:48:0;;-1:-1:-1;;;30918:48:0;30861:105;:158;;;-1:-1:-1;;;;;;;;;;23585:40:0;;;30983:36;30841:178;30722:305;-1:-1:-1;;30722:305:0:o;31667:100::-;31721:13;31754:5;31747:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31667:100;:::o;33226:221::-;33302:7;36569:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36569:16:0;33322:73;;;;-1:-1:-1;;;33322:73:0;;15852:2:1;33322:73:0;;;15834:21:1;15891:2;15871:18;;;15864:30;15930:34;15910:18;;;15903:62;-1:-1:-1;;;15981:18:1;;;15974:42;16033:19;;33322:73:0;;;;;;;;;-1:-1:-1;33415:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33415:24:0;;33226:221::o;32749:411::-;32830:13;32846:23;32861:7;32846:14;:23::i;:::-;32830:39;;32894:5;-1:-1:-1;;;;;32888:11:0;:2;-1:-1:-1;;;;;32888:11:0;;;32880:57;;;;-1:-1:-1;;;32880:57:0;;17825:2:1;32880:57:0;;;17807:21:1;17864:2;17844:18;;;17837:30;17903:34;17883:18;;;17876:62;-1:-1:-1;;;17954:18:1;;;17947:31;17995:19;;32880:57:0;17623:397:1;32880:57:0;9496:10;-1:-1:-1;;;;;32972:21:0;;;;:62;;-1:-1:-1;32997:37:0;33014:5;9496:10;33745:164;:::i;32997:37::-;32950:168;;;;-1:-1:-1;;;32950:168:0;;13890:2:1;32950:168:0;;;13872:21:1;13929:2;13909:18;;;13902:30;13968:34;13948:18;;;13941:62;14039:26;14019:18;;;14012:54;14083:19;;32950:168:0;13688:420:1;32950:168:0;33131:21;33140:2;33144:7;33131:8;:21::i;:::-;32819:341;32749:411;;:::o;49622:100::-;10765:6;;-1:-1:-1;;;;;10765:6:0;9496:10;10912:23;10904:68;;;;-1:-1:-1;;;10904:68:0;;;;;;;:::i;:::-;49694:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;49622:100:::0;:::o;49728:77::-;10765:6;;-1:-1:-1;;;;;10765:6:0;9496:10;10912:23;10904:68;;;;-1:-1:-1;;;10904:68:0;;;;;;;:::i;:::-;49784:6:::1;:15:::0;;;::::1;;;;-1:-1:-1::0;;49784:15:0;;::::1;::::0;;;::::1;::::0;;49728:77::o;47593:89::-;47637:7;47660:16;:6;6112:14;;6020:114;47660:16;47653:23;;47593:89;:::o;33976:339::-;34171:41;9496:10;34204:7;34171:18;:41::i;:::-;34163:103;;;;-1:-1:-1;;;34163:103:0;;;;;;;:::i;:::-;34279:28;34289:4;34295:2;34299:7;34279:9;:28::i;48964:68::-;10765:6;;-1:-1:-1;;;;;10765:6:0;9496:10;10912:23;10904:68;;;;-1:-1:-1;;;10904:68:0;;;;;;;:::i;:::-;49011:8:::1;:15:::0;;-1:-1:-1;;49011:15:0::1;::::0;::::1;::::0;;48964:68::o;50325:706::-;10765:6;;-1:-1:-1;;;;;10765:6:0;9496:10;10912:23;10904:68;;;;-1:-1:-1;;;10904:68:0;;;;;;;:::i;:::-;50370:8:::1;50392:42;50477:3;50448:26;:21;50472:2;50448:26;:::i;:::-;:32;;;;:::i;:::-;50384:101;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50369:116;;;50500:3;50492:12;;;::::0;::::1;;50512:9;50535:42;50619:3;50591:25;:21;50615:1;50591:25;:::i;:::-;:31;;;;:::i;:::-;50527:100;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50511:116;;;50642:4;50634:13;;;::::0;::::1;;50655:8;50677:42;50762:3;50733:26;:21;50757:2;50733:26;:::i;:::-;:32;;;;:::i;:::-;50669:101;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50654:116;;;50785:3;50777:12;;;::::0;::::1;;50797:8;50819:42;50904:3;50875:26;:21;50899:2;50875:26;:::i;:::-;:32;;;;:::i;:::-;50811:101;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50796:116;;;50927:3;50919:12;;;::::0;::::1;;50939:7;50960;10765:6:::0;;-1:-1:-1;;;;;10765:6:0;;10692:87;50960:7:::1;-1:-1:-1::0;;;;;50952:21:0::1;50981;50952:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50938:69;;;51022:2;51014:11;;;::::0;::::1;;50362:669;;;;;50325:706::o:0;34386:185::-;34524:39;34541:4;34547:2;34551:7;34524:39;;;;;;;;;;;;:16;:39::i;47823:635::-;47898:16;47926:23;47952:17;47962:6;47952:9;:17::i;:::-;47926:43;;47976:30;48023:15;48009:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48009:30:0;-1:-1:-1;47976:63:0;-1:-1:-1;48071:1:0;48046:22;48115:309;48140:15;48122;:33;:64;;;;;48177:9;;48159:14;:27;;48122:64;48115:309;;;48197:25;48225:23;48233:14;48225:7;:23::i;:::-;48197:51;;48284:6;-1:-1:-1;;;;;48263:27:0;:17;-1:-1:-1;;;;;48263:27:0;;48259:131;;;48336:14;48303:13;48317:15;48303:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;48363:17;;;;:::i;:::-;;;;48259:131;48400:16;;;;:::i;:::-;;;;48188:236;48115:309;;;-1:-1:-1;48439:13:0;;47823:635;-1:-1:-1;;;;47823:635:0:o;49038:74::-;10765:6;;-1:-1:-1;;;;;10765:6:0;9496:10;10912:23;10904:68;;;;-1:-1:-1;;;10904:68:0;;;;;;;:::i;:::-;49094:4:::1;:12:::0;49038:74::o;49900:127::-;10765:6;;-1:-1:-1;;;;;10765:6:0;9496:10;10912:23;10904:68;;;;-1:-1:-1;;;10904:68:0;;;;;;;:::i;:::-;49989:19:::1;:32:::0;;-1:-1:-1;;49989:32:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;49900:127::o;49378:132::-;10765:6;;-1:-1:-1;;;;;10765:6:0;9496:10;10912:23;10904:68;;;;-1:-1:-1;;;10904:68:0;;;;;;;:::i;:::-;49466:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;44896:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44862:28::-;;;;;;;:::i;31361:239::-;31433:7;31469:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31469:16:0;31504:19;31496:73;;;;-1:-1:-1;;;31496:73:0;;14726:2:1;31496:73:0;;;14708:21:1;14765:2;14745:18;;;14738:30;14804:34;14784:18;;;14777:62;-1:-1:-1;;;14855:18:1;;;14848:39;14904:19;;31496:73:0;14524:405:1;31091:208:0;31163:7;-1:-1:-1;;;;;31191:19:0;;31183:74;;;;-1:-1:-1;;;31183:74:0;;14315:2:1;31183:74:0;;;14297:21:1;14354:2;14334:18;;;14327:30;14393:34;14373:18;;;14366:62;-1:-1:-1;;;14444:18:1;;;14437:40;14494:19;;31183:74:0;14113:406:1;31183:74:0;-1:-1:-1;;;;;;31275:16:0;;;;;:9;:16;;;;;;;31091:208::o;11343:103::-;10765:6;;-1:-1:-1;;;;;10765:6:0;9496:10;10912:23;10904:68;;;;-1:-1:-1;;;10904:68:0;;;;;;;:::i;:::-;11408:30:::1;11435:1;11408:18;:30::i;:::-;11343:103::o:0;50033:182::-;10765:6;;-1:-1:-1;;;;;10765:6:0;9496:10;10912:23;10904:68;;;;-1:-1:-1;;;10904:68:0;;;;;;;:::i;:::-;50134:13:::1;:36:::0;;::::1;50177:32:::0;;::::1;::::0;::::1;-1:-1:-1::0;;50177:32:0;;;50134:36;;;::::1;50177:32:::0;;;;;;;::::1;::::0;;50033:182::o;50221:98::-;10765:6;;-1:-1:-1;;;;;10765:6:0;9496:10;10912:23;10904:68;;;;-1:-1:-1;;;10904:68:0;;;;;;;:::i;:::-;50289:10:::1;:24:::0;50221:98::o;49516:100::-;10765:6;;-1:-1:-1;;;;;10765:6:0;9496:10;10912:23;10904:68;;;;-1:-1:-1;;;10904:68:0;;;;;;;:::i;:::-;49588:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;49118:118::-:0;10765:6;;-1:-1:-1;;;;;10765:6:0;9496:10;10912:23;10904:68;;;;-1:-1:-1;;;10904:68:0;;;;;;;:::i;:::-;49188:27;:42;49118:118::o;49811:83::-;10765:6;;-1:-1:-1;;;;;10765:6:0;9496:10;10912:23;10904:68;;;;-1:-1:-1;;;10904:68:0;;;;;;;:::i;:::-;49870:9:::1;:18:::0;;-1:-1:-1;;49870:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49811:83::o;31836:104::-;31892:13;31925:7;31918:14;;;;;:::i;33519:155::-;33614:52;9496:10;33647:8;33657;33614:18;:52::i;44934:31::-;;;;;;;:::i;49242:130::-;10765:6;;-1:-1:-1;;;;;10765:6:0;9496:10;10912:23;10904:68;;;;-1:-1:-1;;;10904:68:0;;;;;;;:::i;:::-;49326:18:::1;:40:::0;49242:130::o;34642:328::-;34817:41;9496:10;34850:7;34817:18;:41::i;:::-;34809:103;;;;-1:-1:-1;;;34809:103:0;;;;;;;:::i;:::-;34923:39;34937:4;34943:2;34947:7;34956:5;34923:13;:39::i;:::-;34642:328;;;;:::o;47207:380::-;47294:11;45973:10;45987:9;45973:23;45965:76;;;;-1:-1:-1;;;45965:76:0;;;;;;;:::i;:::-;46070:1;46056:11;:15;:52;;;;;46090:18;;46075:11;:33;;46056:52;46048:120;;;;-1:-1:-1;;;46048:120:0;;;;;;;:::i;:::-;46217:9;;46202:11;46183:16;:6;6112:14;;6020:114;46183:16;:30;;;;:::i;:::-;:43;;46175:76;;;;-1:-1:-1;;;46175:76:0;;18641:2:1;46175:76:0;;;18623:21:1;18680:2;18660:18;;;18653:30;-1:-1:-1;;;18699:18:1;;;18692:50;18759:18;;46175:76:0;18439:344:1;46175:76:0;46307:16;;46278:10;46266:23;;;;:11;:23;;;;;;:37;;46292:11;;46266:37;:::i;:::-;:57;;46258:109;;;;-1:-1:-1;;;46258:109:0;;;;;;;:::i;:::-;1812:1:::1;2410:7;;:19;;2402:63;;;::::0;-1:-1:-1;;;2402:63:0;;19762:2:1;2402:63:0::1;::::0;::::1;19744:21:1::0;19801:2;19781:18;;;19774:30;19840:33;19820:18;;;19813:61;19891:18;;2402:63:0::1;19560:355:1::0;2402:63:0::1;1812:1;2543:7;:18:::0;47344:6:::2;::::0;::::2;::::0;::::2;;;47343:7;47335:45;;;::::0;-1:-1:-1;;;47335:45:0;;19408:2:1;47335:45:0::2;::::0;::::2;19390:21:1::0;19447:2;19427:18;;;19420:30;19486:27;19466:18;;;19459:55;19531:18;;47335:45:0::2;19206:349:1::0;47335:45:0::2;47395:19;::::0;47418:15:::2;47395:19;::::0;;::::2;:38;;47387:81;;;::::0;-1:-1:-1;;;47387:81:0;;16626:2:1;47387:81:0::2;::::0;::::2;16608:21:1::0;16665:2;16645:18;;;16638:30;16704:32;16684:18;;;16677:60;16754:18;;47387:81:0::2;16424:354:1::0;47387:81:0::2;47503:11;47496:4;;:18;;;;:::i;:::-;47483:9;:31;;47475:63;;;::::0;-1:-1:-1;;;47475:63:0;;20939:2:1;47475:63:0::2;::::0;::::2;20921:21:1::0;20978:2;20958:18;;;20951:30;-1:-1:-1;;;20997:18:1;;;20990:49;21056:18;;47475:63:0::2;20737:343:1::0;47475:63:0::2;47547:34;47557:10;47569:11;47547:9;:34::i;:::-;-1:-1:-1::0;;1768:1:0::1;2722:7;:22:::0;47207:380::o;48464:494::-;36545:4;36569:16;;;:7;:16;;;;;;48563:13;;-1:-1:-1;;;;;36569:16:0;48588:98;;;;-1:-1:-1;;;48588:98:0;;16985:2:1;48588:98:0;;;16967:21:1;17024:2;17004:18;;;16997:30;17063:34;17043:18;;;17036:62;-1:-1:-1;;;17114:18:1;;;17107:45;17169:19;;48588:98:0;16783:411:1;48588:98:0;48699:8;;;;;;;48695:64;;48734:17;48727:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48464:494;;;:::o;48695:64::-;48767:28;48798:10;:8;:10::i;:::-;48767:41;;48853:1;48828:14;48822:28;:32;:130;;;;;;;;;;;;;;;;;48890:14;48906:19;:8;:17;:19::i;:::-;48927:9;48873:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48822:130;48815:137;48464:494;-1:-1:-1;;;48464:494:0:o;46387:812::-;46508:11;45973:10;45987:9;45973:23;45965:76;;;;-1:-1:-1;;;45965:76:0;;;;;;;:::i;:::-;46070:1;46056:11;:15;:52;;;;;46090:18;;46075:11;:33;;46056:52;46048:120;;;;-1:-1:-1;;;46048:120:0;;;;;;;:::i;:::-;46217:9;;46202:11;46183:16;:6;6112:14;;6020:114;46183:16;:30;;;;:::i;:::-;:43;;46175:76;;;;-1:-1:-1;;;46175:76:0;;18641:2:1;46175:76:0;;;18623:21:1;18680:2;18660:18;;;18653:30;-1:-1:-1;;;18699:18:1;;;18692:50;18759:18;;46175:76:0;18439:344:1;46175:76:0;46307:16;;46278:10;46266:23;;;;:11;:23;;;;;;:37;;46292:11;;46266:37;:::i;:::-;:57;;46258:109;;;;-1:-1:-1;;;46258:109:0;;;;;;;:::i;:::-;1812:1:::1;2410:7;;:19;;2402:63;;;::::0;-1:-1:-1;;;2402:63:0;;19762:2:1;2402:63:0::1;::::0;::::1;19744:21:1::0;19801:2;19781:18;;;19774:30;19840:33;19820:18;;;19813:61;19891:18;;2402:63:0::1;19560:355:1::0;2402:63:0::1;1812:1;2543:7;:18:::0;46550:44:::2;::::0;;::::2;::::0;::::2;::::0;;46581:13:::2;46550:44:::0;::::2;::::0;;::::2;::::0;;;;::::2;::::0;::::2;;::::0;::::2;::::0;-1:-1:-1;;;46550:44:0;;::::2;;::::0;;;;;;;;;;;;;46615:9:::2;::::0;::::2;;46607:46;;;::::0;-1:-1:-1;;;46607:46:0;;12015:2:1;46607:46:0::2;::::0;::::2;11997:21:1::0;12054:2;12034:18;;;12027:30;12093:26;12073:18;;;12066:54;12137:18;;46607:46:0::2;11813:348:1::0;46607:46:0::2;46687:17:::0;;46668:36:::2;;:15;:36;::::0;::::2;::::0;:73:::2;;;46726:7;:15;;;46708:33;;:15;:33;46668:73;46660:112;;;::::0;-1:-1:-1;;;46660:112:0;;15497:2:1;46660:112:0::2;::::0;::::2;15479:21:1::0;15536:2;15516:18;;;15509:30;15575:28;15555:18;;;15548:56;15621:18;;46660:112:0::2;15295:350:1::0;46660:112:0::2;46824:11;46800:7;:21;;;:35;;;;:::i;:::-;46787:9;:48;;46779:80;;;::::0;-1:-1:-1;;;46779:80:0;;20939:2:1;46779:80:0::2;::::0;::::2;20921:21:1::0;20978:2;20958:18;;;20951:30;-1:-1:-1;;;20997:18:1;;;20990:49;21056:18;;46779:80:0::2;20737:343:1::0;46779:80:0::2;46915:33;::::0;;::::2;::::0;46886:10:::2;46874:23;::::0;;;:11:::2;:23;::::0;;;;;;:74:::2;::::0;;::::2;::::0;:37:::2;::::0;46900:11;;46874:37:::2;:::i;:::-;:74;;46866:132;;;::::0;-1:-1:-1;;;46866:132:0;;18227:2:1;46866:132:0::2;::::0;::::2;18209:21:1::0;18266:2;18246:18;;;18239:30;18305:34;18285:18;;;18278:62;-1:-1:-1;;;18356:18:1;;;18349:43;18409:19;;46866:132:0::2;18025:409:1::0;46866:132:0::2;47030:28;::::0;-1:-1:-1;;47047:10:0::2;6461:2:1::0;6457:15;6453:53;47030:28:0::2;::::0;::::2;6441:66:1::0;47005:12:0::2;::::0;6523::1;;47030:28:0::2;;;;;;;;;;;;47020:39;;;;;;47005:54;;47074:50;47093:12;;47074:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;::::0;;;;-1:-1:-1;;47107:10:0::2;::::0;;-1:-1:-1;47119:4:0;;-1:-1:-1;47074:18:0::2;:50::i;:::-;47066:84;;;::::0;-1:-1:-1;;;47066:84:0;;13127:2:1;47066:84:0::2;::::0;::::2;13109:21:1::0;13166:2;13146:18;;;13139:30;-1:-1:-1;;;13185:18:1;;;13178:51;13246:18;;47066:84:0::2;12925:345:1::0;47066:84:0::2;47159:34;47169:10;47181:11;47159:9;:34::i;:::-;-1:-1:-1::0;;1768:1:0::1;2722:7;:22:::0;-1:-1:-1;;;;46387:812:0:o;47690:127::-;10765:6;;-1:-1:-1;;;;;10765:6:0;9496:10;10912:23;10904:68;;;;-1:-1:-1;;;10904:68:0;;;;;;;:::i;:::-;47778:33:::1;47788:9;47799:11;47778:9;:33::i;11601:201::-:0;10765:6;;-1:-1:-1;;;;;10765:6:0;9496:10;10912:23;10904:68;;;;-1:-1:-1;;;10904:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11690:22:0;::::1;11682:73;;;::::0;-1:-1:-1;;;11682:73:0;;10845:2:1;11682:73:0::1;::::0;::::1;10827:21:1::0;10884:2;10864:18;;;10857:30;10923:34;10903:18;;;10896:62;-1:-1:-1;;;10974:18:1;;;10967:36;11020:19;;11682:73:0::1;10643:402:1::0;11682:73:0::1;11766:28;11785:8;11766:18;:28::i;:::-;11601:201:::0;:::o;40626:174::-;40701:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;40701:29:0;-1:-1:-1;;;;;40701:29:0;;;;;;;;:24;;40755:23;40701:24;40755:14;:23::i;:::-;-1:-1:-1;;;;;40746:46:0;;;;;;;;;;;40626:174;;:::o;36774:348::-;36867:4;36569:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36569:16:0;36884:73;;;;-1:-1:-1;;;36884:73:0;;13477:2:1;36884:73:0;;;13459:21:1;13516:2;13496:18;;;13489:30;13555:34;13535:18;;;13528:62;-1:-1:-1;;;13606:18:1;;;13599:42;13658:19;;36884:73:0;13275:408:1;36884:73:0;36968:13;36984:23;36999:7;36984:14;:23::i;:::-;36968:39;;37037:5;-1:-1:-1;;;;;37026:16:0;:7;-1:-1:-1;;;;;37026:16:0;;:51;;;;37070:7;-1:-1:-1;;;;;37046:31:0;:20;37058:7;37046:11;:20::i;:::-;-1:-1:-1;;;;;37046:31:0;;37026:51;:87;;;-1:-1:-1;;;;;;33866:25:0;;;33842:4;33866:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;37081:32;37018:96;36774:348;-1:-1:-1;;;;36774:348:0:o;39883:625::-;40042:4;-1:-1:-1;;;;;40015:31:0;:23;40030:7;40015:14;:23::i;:::-;-1:-1:-1;;;;;40015:31:0;;40007:81;;;;-1:-1:-1;;;40007:81:0;;11252:2:1;40007:81:0;;;11234:21:1;11291:2;11271:18;;;11264:30;11330:34;11310:18;;;11303:62;-1:-1:-1;;;11381:18:1;;;11374:35;11426:19;;40007:81:0;11050:401:1;40007:81:0;-1:-1:-1;;;;;40107:16:0;;40099:65;;;;-1:-1:-1;;;40099:65:0;;12368:2:1;40099:65:0;;;12350:21:1;12407:2;12387:18;;;12380:30;12446:34;12426:18;;;12419:62;-1:-1:-1;;;12497:18:1;;;12490:34;12541:19;;40099:65:0;12166:400:1;40099:65:0;40281:29;40298:1;40302:7;40281:8;:29::i;:::-;-1:-1:-1;;;;;40323:15:0;;;;;;:9;:15;;;;;:20;;40342:1;;40323:15;:20;;40342:1;;40323:20;:::i;:::-;;;;-1:-1:-1;;;;;;;40354:13:0;;;;;;:9;:13;;;;;:18;;40371:1;;40354:13;:18;;40371:1;;40354:18;:::i;:::-;;;;-1:-1:-1;;40383:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;40383:21:0;-1:-1:-1;;;;;40383:21:0;;;;;;;;;40422:27;;40383:16;;40422:27;;;;;;;32819:341;32749:411;;:::o;11962:191::-;12055:6;;;-1:-1:-1;;;;;12072:17:0;;;-1:-1:-1;;;;;;12072:17:0;;;;;;;12105:40;;12055:6;;;12072:17;12055:6;;12105:40;;12036:16;;12105:40;12025:128;11962:191;:::o;40942:315::-;41097:8;-1:-1:-1;;;;;41088:17:0;:5;-1:-1:-1;;;;;41088:17:0;;;41080:55;;;;-1:-1:-1;;;41080:55:0;;12773:2:1;41080:55:0;;;12755:21:1;12812:2;12792:18;;;12785:30;12851:27;12831:18;;;12824:55;12896:18;;41080:55:0;12571:349:1;41080:55:0;-1:-1:-1;;;;;41146:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;41146:46:0;;;;;;;;;;41208:41;;9766::1;;;41208::0;;9739:18:1;41208:41:0;;;;;;;40942:315;;;:::o;35852:::-;36009:28;36019:4;36025:2;36029:7;36009:9;:28::i;:::-;36056:48;36079:4;36085:2;36089:7;36098:5;36056:22;:48::i;:::-;36048:111;;;;-1:-1:-1;;;36048:111:0;;;;;;;:::i;51037:242::-;51112:6;51125:149;51141:11;51137:1;:15;51125:149;;;-1:-1:-1;;;;;51168:22:0;;;;;;:11;:22;;;;;:24;;;;;;:::i;:::-;;;;;;51201:18;:6;6231:19;;6249:1;6231:19;;;6142:127;51201:18;51228:38;51238:9;51249:16;:6;6112:14;;6020:114;51249:16;51228:9;:38::i;:::-;51154:3;;;;:::i;:::-;;;;51125:149;;51285:104;51345:13;51374:9;51367:16;;;;;:::i;6978:723::-;7034:13;7255:10;7251:53;;-1:-1:-1;;7282:10:0;;;;;;;;;;;;-1:-1:-1;;;7282:10:0;;;;;6978:723::o;7251:53::-;7329:5;7314:12;7370:78;7377:9;;7370:78;;7403:8;;;;:::i;:::-;;-1:-1:-1;7426:10:0;;-1:-1:-1;7434:2:0;7426:10;;:::i;:::-;;;7370:78;;;7458:19;7490:6;7480:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7480:17:0;;7458:39;;7508:154;7515:10;;7508:154;;7542:11;7552:1;7542:11;;:::i;:::-;;-1:-1:-1;7611:10:0;7619:2;7611:5;:10;:::i;:::-;7598:24;;:2;:24;:::i;:::-;7585:39;;7568:6;7575;7568:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;7568:56:0;;;;;;;;-1:-1:-1;7639:11:0;7648:2;7639:11;;:::i;:::-;;;7508:154;;3682:190;3807:4;3860;3831:25;3844:5;3851:4;3831:12;:25::i;:::-;:33;;3682:190;-1:-1:-1;;;;3682:190:0:o;41822:799::-;41977:4;-1:-1:-1;;;;;41998:13:0;;13688:19;:23;41994:620;;42034:72;;-1:-1:-1;;;42034:72:0;;-1:-1:-1;;;;;42034:36:0;;;;;:72;;9496:10;;42085:4;;42091:7;;42100:5;;42034:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42034:72:0;;;;;;;;-1:-1:-1;;42034:72:0;;;;;;;;;;;;:::i;:::-;;;42030:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42276:13:0;;42272:272;;42319:60;;-1:-1:-1;;;42319:60:0;;;;;;;:::i;42272:272::-;42494:6;42488:13;42479:6;42475:2;42471:15;42464:38;42030:529;-1:-1:-1;;;;;;42157:51:0;-1:-1:-1;;;42157:51:0;;-1:-1:-1;42150:58:0;;41994:620;-1:-1:-1;42598:4:0;41822:799;;;;;;:::o;37464:110::-;37540:26;37550:2;37554:7;37540:26;;;;;;;;;;;;:9;:26::i;4234:675::-;4317:7;4360:4;4317:7;4375:497;4399:5;:12;4395:1;:16;4375:497;;;4433:20;4456:5;4462:1;4456:8;;;;;;;;:::i;:::-;;;;;;;4433:31;;4499:12;4483;:28;4479:382;;4985:13;5035:15;;;5071:4;5064:15;;;5118:4;5102:21;;4611:57;;4479:382;;;4985:13;5035:15;;;5071:4;5064:15;;;5118:4;5102:21;;4788:57;;4479:382;-1:-1:-1;4413:3:0;;;;:::i;:::-;;;;4375:497;;;-1:-1:-1;4889:12:0;4234:675;-1:-1:-1;;;4234:675:0:o;37801:321::-;37931:18;37937:2;37941:7;37931:5;:18::i;:::-;37982:54;38013:1;38017:2;38021:7;38030:5;37982:22;:54::i;:::-;37960:154;;;;-1:-1:-1;;;37960:154:0;;;;;;;:::i;38458:439::-;-1:-1:-1;;;;;38538:16:0;;38530:61;;;;-1:-1:-1;;;38530:61:0;;15136:2:1;38530:61:0;;;15118:21:1;;;15155:18;;;15148:30;15214:34;15194:18;;;15187:62;15266:18;;38530:61:0;14934:356:1;38530:61:0;36545:4;36569:16;;;:7;:16;;;;;;-1:-1:-1;;;;;36569:16:0;:30;38602:58;;;;-1:-1:-1;;;38602:58:0;;11658:2:1;38602:58:0;;;11640:21:1;11697:2;11677:18;;;11670:30;11736;11716:18;;;11709:58;11784:18;;38602:58:0;11456:352:1;38602:58:0;-1:-1:-1;;;;;38731:13:0;;;;;;:9;:13;;;;;:18;;38748:1;;38731:13;:18;;38748:1;;38731:18;:::i;:::-;;;;-1:-1:-1;;38760:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38760:21:0;-1:-1:-1;;;;;38760:21:0;;;;;;;;38799:33;;38760:16;;;38799:33;;38760:16;;38799:33;49694:22:::1;49622:100:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:163;1060:20;;1120:10;1109:22;;1099:33;;1089:61;;1146:1;1143;1136:12;1161:186;1220:6;1273:2;1261:9;1252:7;1248:23;1244:32;1241:52;;;1289:1;1286;1279:12;1241:52;1312:29;1331:9;1312:29;:::i;1352:260::-;1420:6;1428;1481:2;1469:9;1460:7;1456:23;1452:32;1449:52;;;1497:1;1494;1487:12;1449:52;1520:29;1539:9;1520:29;:::i;:::-;1510:39;;1568:38;1602:2;1591:9;1587:18;1568:38;:::i;:::-;1558:48;;1352:260;;;;;:::o;1617:328::-;1694:6;1702;1710;1763:2;1751:9;1742:7;1738:23;1734:32;1731:52;;;1779:1;1776;1769:12;1731:52;1802:29;1821:9;1802:29;:::i;:::-;1792:39;;1850:38;1884:2;1873:9;1869:18;1850:38;:::i;:::-;1840:48;;1935:2;1924:9;1920:18;1907:32;1897:42;;1617:328;;;;;:::o;1950:666::-;2045:6;2053;2061;2069;2122:3;2110:9;2101:7;2097:23;2093:33;2090:53;;;2139:1;2136;2129:12;2090:53;2162:29;2181:9;2162:29;:::i;:::-;2152:39;;2210:38;2244:2;2233:9;2229:18;2210:38;:::i;:::-;2200:48;;2295:2;2284:9;2280:18;2267:32;2257:42;;2350:2;2339:9;2335:18;2322:32;2377:18;2369:6;2366:30;2363:50;;;2409:1;2406;2399:12;2363:50;2432:22;;2485:4;2477:13;;2473:27;-1:-1:-1;2463:55:1;;2514:1;2511;2504:12;2463:55;2537:73;2602:7;2597:2;2584:16;2579:2;2575;2571:11;2537:73;:::i;:::-;2527:83;;;1950:666;;;;;;;:::o;2621:254::-;2686:6;2694;2747:2;2735:9;2726:7;2722:23;2718:32;2715:52;;;2763:1;2760;2753:12;2715:52;2786:29;2805:9;2786:29;:::i;:::-;2776:39;;2834:35;2865:2;2854:9;2850:18;2834:35;:::i;2880:254::-;2948:6;2956;3009:2;2997:9;2988:7;2984:23;2980:32;2977:52;;;3025:1;3022;3015:12;2977:52;3048:29;3067:9;3048:29;:::i;:::-;3038:39;3124:2;3109:18;;;;3096:32;;-1:-1:-1;;;2880:254:1:o;3139:180::-;3195:6;3248:2;3236:9;3227:7;3223:23;3219:32;3216:52;;;3264:1;3261;3254:12;3216:52;3287:26;3303:9;3287:26;:::i;3324:180::-;3383:6;3436:2;3424:9;3415:7;3411:23;3407:32;3404:52;;;3452:1;3449;3442:12;3404:52;-1:-1:-1;3475:23:1;;3324:180;-1:-1:-1;3324:180:1:o;3509:245::-;3567:6;3620:2;3608:9;3599:7;3595:23;3591:32;3588:52;;;3636:1;3633;3626:12;3588:52;3675:9;3662:23;3694:30;3718:5;3694:30;:::i;3759:249::-;3828:6;3881:2;3869:9;3860:7;3856:23;3852:32;3849:52;;;3897:1;3894;3887:12;3849:52;3929:9;3923:16;3948:30;3972:5;3948:30;:::i;4013:450::-;4082:6;4135:2;4123:9;4114:7;4110:23;4106:32;4103:52;;;4151:1;4148;4141:12;4103:52;4191:9;4178:23;4224:18;4216:6;4213:30;4210:50;;;4256:1;4253;4246:12;4210:50;4279:22;;4332:4;4324:13;;4320:27;-1:-1:-1;4310:55:1;;4361:1;4358;4351:12;4310:55;4384:73;4449:7;4444:2;4431:16;4426:2;4422;4418:11;4384:73;:::i;4653:254::-;4721:6;4729;4782:2;4770:9;4761:7;4757:23;4753:32;4750:52;;;4798:1;4795;4788:12;4750:52;4834:9;4821:23;4811:33;;4863:38;4897:2;4886:9;4882:18;4863:38;:::i;4912:683::-;5007:6;5015;5023;5076:2;5064:9;5055:7;5051:23;5047:32;5044:52;;;5092:1;5089;5082:12;5044:52;5128:9;5115:23;5105:33;;5189:2;5178:9;5174:18;5161:32;5212:18;5253:2;5245:6;5242:14;5239:34;;;5269:1;5266;5259:12;5239:34;5307:6;5296:9;5292:22;5282:32;;5352:7;5345:4;5341:2;5337:13;5333:27;5323:55;;5374:1;5371;5364:12;5323:55;5414:2;5401:16;5440:2;5432:6;5429:14;5426:34;;;5456:1;5453;5446:12;5426:34;5509:7;5504:2;5494:6;5491:1;5487:14;5483:2;5479:23;5475:32;5472:45;5469:65;;;5530:1;5527;5520:12;5469:65;5561:2;5557;5553:11;5543:21;;5583:6;5573:16;;;;;4912:683;;;;;:::o;5600:184::-;5658:6;5711:2;5699:9;5690:7;5686:23;5682:32;5679:52;;;5727:1;5724;5717:12;5679:52;5750:28;5768:9;5750:28;:::i;5789:256::-;5855:6;5863;5916:2;5904:9;5895:7;5891:23;5887:32;5884:52;;;5932:1;5929;5922:12;5884:52;5955:28;5973:9;5955:28;:::i;:::-;5945:38;;6002:37;6035:2;6024:9;6020:18;6002:37;:::i;6050:257::-;6091:3;6129:5;6123:12;6156:6;6151:3;6144:19;6172:63;6228:6;6221:4;6216:3;6212:14;6205:4;6198:5;6194:16;6172:63;:::i;:::-;6289:2;6268:15;-1:-1:-1;;6264:29:1;6255:39;;;;6296:4;6251:50;;6050:257;-1:-1:-1;;6050:257:1:o;6546:1527::-;6770:3;6808:6;6802:13;6834:4;6847:51;6891:6;6886:3;6881:2;6873:6;6869:15;6847:51;:::i;:::-;6961:13;;6920:16;;;;6983:55;6961:13;6920:16;7005:15;;;6983:55;:::i;:::-;7127:13;;7060:20;;;7100:1;;7187;7209:18;;;;7262;;;;7289:93;;7367:4;7357:8;7353:19;7341:31;;7289:93;7430:2;7420:8;7417:16;7397:18;7394:40;7391:167;;;-1:-1:-1;;;7457:33:1;;7513:4;7510:1;7503:15;7543:4;7464:3;7531:17;7391:167;7574:18;7601:110;;;;7725:1;7720:328;;;;7567:481;;7601:110;-1:-1:-1;;7636:24:1;;7622:39;;7681:20;;;;-1:-1:-1;7601:110:1;;7720:328;21786:1;21779:14;;;21823:4;21810:18;;7815:1;7829:169;7843:8;7840:1;7837:15;7829:169;;;7925:14;;7910:13;;;7903:37;7968:16;;;;7860:10;;7829:169;;;7833:3;;8029:8;8022:5;8018:20;8011:27;;7567:481;-1:-1:-1;8064:3:1;;6546:1527;-1:-1:-1;;;;;;;;;;;6546:1527:1:o;8496:488::-;-1:-1:-1;;;;;8765:15:1;;;8747:34;;8817:15;;8812:2;8797:18;;8790:43;8864:2;8849:18;;8842:34;;;8912:3;8907:2;8892:18;;8885:31;;;8690:4;;8933:45;;8958:19;;8950:6;8933:45;:::i;:::-;8925:53;8496:488;-1:-1:-1;;;;;;8496:488:1:o;8989:632::-;9160:2;9212:21;;;9282:13;;9185:18;;;9304:22;;;9131:4;;9160:2;9383:15;;;;9357:2;9342:18;;;9131:4;9426:169;9440:6;9437:1;9434:13;9426:169;;;9501:13;;9489:26;;9570:15;;;;9535:12;;;;9462:1;9455:9;9426:169;;;-1:-1:-1;9612:3:1;;8989:632;-1:-1:-1;;;;;;8989:632:1:o;10000:219::-;10149:2;10138:9;10131:21;10112:4;10169:44;10209:2;10198:9;10194:18;10186:6;10169:44;:::i;10224:414::-;10426:2;10408:21;;;10465:2;10445:18;;;10438:30;10504:34;10499:2;10484:18;;10477:62;-1:-1:-1;;;10570:2:1;10555:18;;10548:48;10628:3;10613:19;;10224:414::o;16063:356::-;16265:2;16247:21;;;16284:18;;;16277:30;16343:34;16338:2;16323:18;;16316:62;16410:2;16395:18;;16063:356::o;17199:419::-;17401:2;17383:21;;;17440:2;17420:18;;;17413:30;17479:34;17474:2;17459:18;;17452:62;17550:25;17545:2;17530:18;;17523:53;17608:3;17593:19;;17199:419::o;18788:413::-;18990:2;18972:21;;;19029:2;19009:18;;;19002:30;19068:34;19063:2;19048:18;;19041:62;-1:-1:-1;;;19134:2:1;19119:18;;19112:47;19191:3;19176:19;;18788:413::o;19920:404::-;20122:2;20104:21;;;20161:2;20141:18;;;20134:30;20200:34;20195:2;20180:18;;20173:62;-1:-1:-1;;;20266:2:1;20251:18;;20244:38;20314:3;20299:19;;19920:404::o;20329:403::-;20531:2;20513:21;;;20570:2;20550:18;;;20543:30;20609:34;20604:2;20589:18;;20582:62;-1:-1:-1;;;20675:2:1;20660:18;;20653:37;20722:3;20707:19;;20329:403::o;21839:128::-;21879:3;21910:1;21906:6;21903:1;21900:13;21897:39;;;21916:18;;:::i;:::-;-1:-1:-1;21952:9:1;;21839:128::o;21972:120::-;22012:1;22038;22028:35;;22043:18;;:::i;:::-;-1:-1:-1;22077:9:1;;21972:120::o;22097:168::-;22137:7;22203:1;22199;22195:6;22191:14;22188:1;22185:21;22180:1;22173:9;22166:17;22162:45;22159:71;;;22210:18;;:::i;:::-;-1:-1:-1;22250:9:1;;22097:168::o;22270:125::-;22310:4;22338:1;22335;22332:8;22329:34;;;22343:18;;:::i;:::-;-1:-1:-1;22380:9:1;;22270:125::o;22400:258::-;22472:1;22482:113;22496:6;22493:1;22490:13;22482:113;;;22572:11;;;22566:18;22553:11;;;22546:39;22518:2;22511:10;22482:113;;;22613:6;22610:1;22607:13;22604:48;;;-1:-1:-1;;22648:1:1;22630:16;;22623:27;22400:258::o;22663:380::-;22742:1;22738:12;;;;22785;;;22806:61;;22860:4;22852:6;22848:17;22838:27;;22806:61;22913:2;22905:6;22902:14;22882:18;22879:38;22876:161;;;22959:10;22954:3;22950:20;22947:1;22940:31;22994:4;22991:1;22984:15;23022:4;23019:1;23012:15;22876:161;;22663:380;;;:::o;23048:135::-;23087:3;-1:-1:-1;;23108:17:1;;23105:43;;;23128:18;;:::i;:::-;-1:-1:-1;23175:1:1;23164:13;;23048:135::o;23188:112::-;23220:1;23246;23236:35;;23251:18;;:::i;:::-;-1:-1:-1;23285:9:1;;23188:112::o;23305:127::-;23366:10;23361:3;23357:20;23354:1;23347:31;23397:4;23394:1;23387:15;23421:4;23418:1;23411:15;23437:127;23498:10;23493:3;23489:20;23486:1;23479:31;23529:4;23526:1;23519:15;23553:4;23550:1;23543:15;23569:127;23630:10;23625:3;23621:20;23618:1;23611:31;23661:4;23658:1;23651:15;23685:4;23682:1;23675:15;23701:127;23762:10;23757:3;23753:20;23750:1;23743:31;23793:4;23790:1;23783:15;23817:4;23814:1;23807:15;23833:131;-1:-1:-1;;;;;;23907:32:1;;23897:43;;23887:71;;23954:1;23951;23944:12

Swarm Source

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