ETH Price: $2,521.94 (-0.13%)

Token

Drippy Zombies (DZs)
 

Overview

Max Total Supply

400 DZs

Holders

181

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 DZs
0xfd4ff4220568d5280c399f37afc2e238d1310908
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:
DrippyZombies

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-09-25
*/

// SPDX-License-Identifier: MIT
/*
  ____       _                     _____               _     _           
 |  _ \ _ __(_)_ __  _ __  _   _  |__  /___  _ __ ___ | |__ (_) ___  ___ 
 | | | | '__| | '_ \| '_ \| | | |   / // _ \| '_ ` _ \| '_ \| |/ _ \/ __|
 | |_| | |  | | |_) | |_) | |_| |  / /| (_) | | | | | | |_) | |  __/\__ \
 |____/|_|  |_| .__/| .__/ \__, | /____\___/|_| |_| |_|_.__/|_|\___||___/
              |_|   |_|    |___/                                         

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.7.3) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

        return (signer, RecoverError.NoError);
    }

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

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

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

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

    /**
     * @dev Hook that is called after a set of serially-ordered token IDs
     * have been transferred. This includes minting.
     * And also called after one token has been burned.
     *
     * `startTokenId` - the first token ID to be transferred.
     * `quantity` - the amount to be transferred.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}

// File: contract.sol


pragma solidity ^0.8.7;






contract DrippyZombies is ERC721A, Ownable {
    using Strings for uint256;
    using ECDSA for bytes32;

    string private baseURI =
        "https://gateway.pinata.cloud/ipfs//";
    string public privateSigWord = "DRIPPY_PRIVATE";
    uint256 public maxSaleSupply = 3800;
    uint256 public maxTeamSupply = 200;
    uint256 public privatePrice = 0.029 ether;
    uint256 public publicPrice = 0.05 ether;
    uint256 public maxMintsPerTx = 4;
    uint256 public maxPerWallet = 3;
    uint256 public mintedCounter;
    uint256 public teamMintedCounter;
    address public privateSigner = 0x0A5f0929bD06d3034dF044b9C94E207E6E9e9bA1;
    bool public publicLive;
    bool public privateLive;
    uint256 private devAmountPaid;
    mapping(address => uint256) public privateMinters;

    constructor() ERC721A("Drippy Zombies", "DZs") {}

    function _startTokenId()
        internal
        view
        virtual
        override(ERC721A)
        returns (uint256)
    {
        return 1;
    }

    modifier notContract() {
        require(
            (!_isContract(msg.sender)) && (msg.sender == tx.origin),
            "contract not allowed"
        );
        _;
    }

    function _isContract(address addr) internal view returns (bool) {
        uint256 size;
        assembly {
            size := extcodesize(addr)
        }
        return size > 0;
    }

    function matchAddresSigner(bytes memory signature)
        private
        view
        returns (bool)
    {
        bytes32 hash = keccak256(
            abi.encodePacked(
                "\x19Ethereum Signed Message:\n32",
                keccak256(abi.encodePacked(msg.sender, privateSigWord))
            )
        );
        return privateSigner == hash.recover(signature);
    }

    function mint(uint256 tokenQuantity) external payable notContract {
        require(publicLive, "MINT_CLOSED");
        require(
            mintedCounter + tokenQuantity <= maxSaleSupply,
            "EXCEED_SALE_SUPPLY"
        );
        require(tokenQuantity <= maxMintsPerTx, "EXCEED_PER_TX");
        require(publicPrice * tokenQuantity <= msg.value, "INSUFFICIENT_ETH");

        mintedCounter += tokenQuantity;
        _mint(msg.sender, tokenQuantity);
    }

    function privateMint(uint256 tokenQuantity, bytes memory signature)
        external
        payable
        notContract
    {
        require(privateLive, "MINT_CLOSED");
        require(
            mintedCounter + tokenQuantity <= maxSaleSupply,
            "EXCEED_SALE_SUPPLY"
        );
        require(matchAddresSigner(signature), "INVALID_SIGNATURE");
        require(
            privateMinters[msg.sender] + tokenQuantity <= maxPerWallet,
            "EXCEED_PER_WALLET"
        );
        require(privatePrice * tokenQuantity <= msg.value, "INSUFFICIENT_ETH");

        mintedCounter += tokenQuantity;
        privateMinters[msg.sender] = privateMinters[msg.sender] + tokenQuantity;
        _mint(msg.sender, tokenQuantity);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721A)
        returns (string memory)
    {
        require(_exists(tokenId), "Cannot query non-existent token");
        return string(abi.encodePacked(baseURI, tokenId.toString()));
    }

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

    function gift(address[] calldata receivers) external onlyOwner {
        require(
            teamMintedCounter + receivers.length <= maxTeamSupply,
            "EXCEED_TEAM_SUPPLY"
        );

        teamMintedCounter += receivers.length;
        for (uint256 i = 0; i < receivers.length; i++) {
            _mint(receivers[i], 1);
        }
    }

    function founderMint(uint256 tokenQuantity) external onlyOwner {
        require(
            teamMintedCounter + tokenQuantity <= maxTeamSupply,
            "EXCEED_TEAM_SUPPLY"
        );

        teamMintedCounter += tokenQuantity;
        _mint(msg.sender, tokenQuantity);
    }

    function togglePublicStatus() external onlyOwner {
        publicLive = !publicLive;
    }

    function togglePrivateStatus() external onlyOwner {
        privateLive = !privateLive;
    }

    function setPublicPrice(uint256 newPrice) external onlyOwner {
        publicPrice = newPrice;
    }

    function setPrivatePrice(uint256 newPrice) external onlyOwner {
        privatePrice = newPrice;
    }

    function setMax(uint256 newCount) external onlyOwner {
        maxSaleSupply = newCount;
    }

    function setTeamMax(uint256 newCount) external onlyOwner {
        maxTeamSupply = newCount;
    }

    function setMaxPerTx(uint256 newCount) external onlyOwner {
        maxMintsPerTx = newCount;
    }

    function setMaxPerWallet(uint256 newCount) external onlyOwner {
        maxPerWallet = newCount;
    }

    function setSigner(address newAddress) external onlyOwner {
        privateSigner = newAddress;
    }

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

    function withdraw() external onlyOwner {
        uint256 currentBalance = address(this).balance;

        if (devAmountPaid + currentBalance <= 2.35 ether) {
            devAmountPaid += address(this).balance;
            Address.sendValue(
                payable(0x0000F92fA20f4cE4E17f8f3a65D566EA2e2cEbcD),
                address(this).balance
            );
        } else {
            uint256 amountToBePaid = 2.35 ether - devAmountPaid;
            devAmountPaid = 2.35 ether;
            Address.sendValue(
                payable(0x0000F92fA20f4cE4E17f8f3a65D566EA2e2cEbcD),
                amountToBePaid
            );
            Address.sendValue(payable(msg.sender), address(this).balance);
        }
    }

    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":"tokenQuantity","type":"uint256"}],"name":"founderMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"receivers","type":"address[]"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","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":"maxMintsPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSaleSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTeamSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintedCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenQuantity","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"privateMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"privateMinters","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privatePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateSigWord","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateSigner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newCount","type":"uint256"}],"name":"setMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newCount","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newCount","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrivatePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newCount","type":"uint256"}],"name":"setTeamMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamMintedCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePrivateStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicStatus","outputs":[],"stateMutability":"nonpayable","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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60e060405260236080818152906200278460a0398051620000299160099160209091019062000193565b5060408051808201909152600e8082526d4452495050595f5052495641544560901b60209092019182526200006191600a9162000193565b50610ed8600b5560c8600c5566670758aa7c8000600d5566b1a2bc2ec50000600e556004600f556003601055601380546001600160a01b031916730a5f0929bd06d3034df044b9c94e207e6e9e9ba1179055348015620000c057600080fd5b50604080518082018252600e81526d447269707079205a6f6d6269657360901b602080830191825283518085019094526003845262445a7360e81b908401528151919291620001129160029162000193565b5080516200012890600390602084019062000193565b50506001600055506200013b3362000141565b62000276565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001a19062000239565b90600052602060002090601f016020900481019282620001c5576000855562000210565b82601f10620001e057805160ff191683800117855562000210565b8280016001018555821562000210579182015b8281111562000210578251825591602001919060010190620001f3565b506200021e92915062000222565b5090565b5b808211156200021e576000815560010162000223565b600181811c908216806200024e57607f821691505b602082108114156200027057634e487b7160e01b600052602260045260246000fd5b50919050565b6124fe80620002866000396000f3fe6080604052600436106102765760003560e01c80638da5cb5b1161014f578063b88d4fde116100c1578063d97d28d21161007a578063d97d28d214610705578063dc30158b14610725578063e268e4d31461073b578063e985e9c51461075b578063f2fde38b146107a4578063f42202e8146107c457600080fd5b8063b88d4fde14610650578063c46eb68514610670578063c627525514610685578063c6f6f216146106a5578063c87b56dd146106c5578063cbe11644146106e557600080fd5b8063a0712d6811610113578063a0712d68146105b0578063a10f151e146105c3578063a22cb465146105e3578063a945bf8014610603578063b29418d514610619578063b7f751d81461062f57600080fd5b80638da5cb5b1461051c57806390edd6971461053a57806392eca5b41461056757806395d89b411461057a57806397283d2f1461058f57600080fd5b806342842e0e116101e85780636c19e783116101ac5780636c19e7831461048657806370a08231146104a6578063715018a6146104c657806379aee341146104db57806387c0568b146104f1578063898f71721461050757600080fd5b806342842e0e146103fa578063453c23101461041a5780634b2596c71461043057806355f804b3146104465780636352211e1461046657600080fd5b806318160ddd1161023a57806318160ddd146103535780631ead38771461037a5780631fe9eabc1461039057806323b872dd146103b057806333098c01146103d05780633ccfd60b146103e557600080fd5b806301ffc9a71461028257806306fdde03146102b7578063081812fc146102d9578063095ea7b314610311578063163e1e611461033357600080fd5b3661027d57005b600080fd5b34801561028e57600080fd5b506102a261029d3660046120f3565b6107e4565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cc610836565b6040516102ae9190612339565b3480156102e557600080fd5b506102f96102f436600461218d565b6108c8565b6040516001600160a01b0390911681526020016102ae565b34801561031d57600080fd5b5061033161032c366004612054565b61090c565b005b34801561033f57600080fd5b5061033161034e36600461207e565b6109ac565b34801561035f57600080fd5b5060015460005403600019015b6040519081526020016102ae565b34801561038657600080fd5b5061036c60125481565b34801561039c57600080fd5b506103316103ab36600461218d565b610a7b565b3480156103bc57600080fd5b506103316103cb366004611f74565b610a88565b3480156103dc57600080fd5b50610331610c19565b3480156103f157600080fd5b50610331610c42565b34801561040657600080fd5b50610331610415366004611f74565b610cf0565b34801561042657600080fd5b5061036c60105481565b34801561043c57600080fd5b5061036c600c5481565b34801561045257600080fd5b5061033161046136600461212d565b610d0b565b34801561047257600080fd5b506102f961048136600461218d565b610d1f565b34801561049257600080fd5b506103316104a1366004611f26565b610d2a565b3480156104b257600080fd5b5061036c6104c1366004611f26565b610d54565b3480156104d257600080fd5b50610331610da3565b3480156104e757600080fd5b5061036c60115481565b3480156104fd57600080fd5b5061036c600d5481565b34801561051357600080fd5b506102cc610db7565b34801561052857600080fd5b506008546001600160a01b03166102f9565b34801561054657600080fd5b5061036c610555366004611f26565b60156020526000908152604090205481565b6103316105753660046121a6565b610e45565b34801561058657600080fd5b506102cc611079565b34801561059b57600080fd5b506013546102a290600160a81b900460ff1681565b6103316105be36600461218d565b611088565b3480156105cf57600080fd5b506103316105de36600461218d565b611228565b3480156105ef57600080fd5b506103316105fe366004612018565b611235565b34801561060f57600080fd5b5061036c600e5481565b34801561062557600080fd5b5061036c600b5481565b34801561063b57600080fd5b506013546102a290600160a01b900460ff1681565b34801561065c57600080fd5b5061033161066b366004611fb0565b6112cb565b34801561067c57600080fd5b50610331611315565b34801561069157600080fd5b506103316106a036600461218d565b61133e565b3480156106b157600080fd5b506103316106c036600461218d565b61134b565b3480156106d157600080fd5b506102cc6106e036600461218d565b611358565b3480156106f157600080fd5b5061033161070036600461218d565b6113e1565b34801561071157600080fd5b506013546102f9906001600160a01b031681565b34801561073157600080fd5b5061036c600f5481565b34801561074757600080fd5b5061033161075636600461218d565b6113ee565b34801561076757600080fd5b506102a2610776366004611f41565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156107b057600080fd5b506103316107bf366004611f26565b6113fb565b3480156107d057600080fd5b506103316107df36600461218d565b611471565b60006301ffc9a760e01b6001600160e01b03198316148061081557506380ac58cd60e01b6001600160e01b03198316145b806108305750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610845906123da565b80601f0160208091040260200160405190810160405280929190818152602001828054610871906123da565b80156108be5780601f10610893576101008083540402835291602001916108be565b820191906000526020600020905b8154815290600101906020018083116108a157829003601f168201915b5050505050905090565b60006108d3826114df565b6108f0576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061091782610d1f565b9050336001600160a01b03821614610950576109338133610776565b610950576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6109b4611514565b600c546012546109c590839061234c565b1115610a0d5760405162461bcd60e51b81526020600482015260126024820152714558434545445f5445414d5f535550504c5960701b60448201526064015b60405180910390fd5b8181905060126000828254610a22919061234c565b90915550600090505b81811015610a7657610a64838383818110610a4857610a48612486565b9050602002016020810190610a5d9190611f26565b600161156e565b80610a6e81612415565b915050610a2b565b505050565b610a83611514565b600b55565b6000610a9382611665565b9050836001600160a01b0316816001600160a01b031614610ac65760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610b1357610af68633610776565b610b1357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610b3a57604051633a954ecd60e21b815260040160405180910390fd5b8015610b4557600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b8316610bd05760018401600081815260046020526040902054610bce576000548114610bce5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610c21611514565b6013805460ff60a01b198116600160a01b9182900460ff1615909102179055565b610c4a611514565b601454479067209ce08c962b000090610c6490839061234c565b11610ca0574760146000828254610c7b919061234c565b90915550610c9d905071f92fa20f4ce4e17f8f3a65d566ea2e2cebcd476116d5565b50565b600060145467209ce08c962b0000610cb89190612397565b67209ce08c962b00006014559050610ce271f92fa20f4ce4e17f8f3a65d566ea2e2cebcd826116d5565b610cec33476116d5565b5050565b610a76838383604051806020016040528060008152506112cb565b610d13611514565b610a7660098383611de4565b600061083082611665565b610d32611514565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b038216610d7d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610dab611514565b610db560006117ee565b565b600a8054610dc4906123da565b80601f0160208091040260200160405190810160405280929190818152602001828054610df0906123da565b8015610e3d5780601f10610e1257610100808354040283529160200191610e3d565b820191906000526020600020905b815481529060010190602001808311610e2057829003601f168201915b505050505081565b333b158015610e5357503332145b610e965760405162461bcd60e51b815260206004820152601460248201527318dbdb9d1c9858dd081b9bdd08185b1b1bddd95960621b6044820152606401610a04565b601354600160a81b900460ff16610edd5760405162461bcd60e51b815260206004820152600b60248201526a1352539517d0d313d4d15160aa1b6044820152606401610a04565b600b5482601154610eee919061234c565b1115610f315760405162461bcd60e51b81526020600482015260126024820152714558434545445f53414c455f535550504c5960701b6044820152606401610a04565b610f3a81611840565b610f7a5760405162461bcd60e51b8152602060048201526011602482015270494e56414c49445f5349474e415455524560781b6044820152606401610a04565b60105433600090815260156020526040902054610f9890849061234c565b1115610fda5760405162461bcd60e51b8152602060048201526011602482015270115610d1515117d4115497d5d053131155607a1b6044820152606401610a04565b3482600d54610fe99190612378565b111561102a5760405162461bcd60e51b815260206004820152601060248201526f0929ca6aa8c8c9286928a9ca8be8aa8960831b6044820152606401610a04565b816011600082825461103c919061234c565b90915550503360009081526015602052604090205461105c90839061234c565b33600081815260156020526040902091909155610cec908361156e565b606060038054610845906123da565b333b15801561109657503332145b6110d95760405162461bcd60e51b815260206004820152601460248201527318dbdb9d1c9858dd081b9bdd08185b1b1bddd95960621b6044820152606401610a04565b601354600160a01b900460ff166111205760405162461bcd60e51b815260206004820152600b60248201526a1352539517d0d313d4d15160aa1b6044820152606401610a04565b600b5481601154611131919061234c565b11156111745760405162461bcd60e51b81526020600482015260126024820152714558434545445f53414c455f535550504c5960701b6044820152606401610a04565b600f548111156111b65760405162461bcd60e51b815260206004820152600d60248201526c08ab0868a8a88bea08aa4bea8b609b1b6044820152606401610a04565b3481600e546111c59190612378565b11156112065760405162461bcd60e51b815260206004820152601060248201526f0929ca6aa8c8c9286928a9ca8be8aa8960831b6044820152606401610a04565b8060116000828254611218919061234c565b90915550610c9d9050338261156e565b611230611514565b600d55565b6001600160a01b03821633141561125f5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6112d6848484610a88565b6001600160a01b0383163b1561130f576112f2848484846118dc565b61130f576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b61131d611514565b6013805460ff60a81b198116600160a81b9182900460ff1615909102179055565b611346611514565b600e55565b611353611514565b600f55565b6060611363826114df565b6113af5760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e006044820152606401610a04565b60096113ba836119d4565b6040516020016113cb9291906122d7565b6040516020818303038152906040529050919050565b6113e9611514565b600c55565b6113f6611514565b601055565b611403611514565b6001600160a01b0381166114685760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a04565b610c9d816117ee565b611479611514565b600c548160125461148a919061234c565b11156114cd5760405162461bcd60e51b81526020600482015260126024820152714558434545445f5445414d5f535550504c5960701b6044820152606401610a04565b8060126000828254611218919061234c565b6000816001111580156114f3575060005482105b8015610830575050600090815260046020526040902054600160e01b161590565b6008546001600160a01b03163314610db55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a04565b6000548161158f5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461163e57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611606565b508161165c57604051622e076360e81b815260040160405180910390fd5b60005550505050565b600081806001116116bc576000548110156116bc57600081815260046020526040902054600160e01b81166116ba575b806116b3575060001901600081815260046020526040902054611695565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b804710156117255760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610a04565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611772576040519150601f19603f3d011682016040523d82523d6000602084013e611777565b606091505b5050905080610a765760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610a04565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008033600a6040516020016118579291906122b3565b60408051601f198184030181529082905280516020918201207f19457468657265756d205369676e6564204d6573736167653a0a33320000000091830191909152603c820152605c0160408051601f19818403018152919052805160209091012090506118c48184611ad2565b6013546001600160a01b039081169116149392505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906119119033908990889088906004016122fc565b602060405180830381600087803b15801561192b57600080fd5b505af192505050801561195b575060408051601f3d908101601f1916820190925261195891810190612110565b60015b6119b6573d808015611989576040519150601f19603f3d011682016040523d82523d6000602084013e61198e565b606091505b5080516119ae576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816119f85750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a225780611a0c81612415565b9150611a1b9050600a83612364565b91506119fc565b60008167ffffffffffffffff811115611a3d57611a3d61249c565b6040519080825280601f01601f191660200182016040528015611a67576020820181803683370190505b5090505b84156119cc57611a7c600183612397565b9150611a89600a86612430565b611a9490603061234c565b60f81b818381518110611aa957611aa9612486565b60200101906001600160f81b031916908160001a905350611acb600a86612364565b9450611a6b565b6000806000611ae18585611af6565b91509150611aee81611b3c565b509392505050565b600080825160411415611b2d5760208301516040840151606085015160001a611b2187828585611cf7565b94509450505050611b35565b506000905060025b9250929050565b6000816004811115611b5057611b50612470565b1415611b595750565b6001816004811115611b6d57611b6d612470565b1415611bbb5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610a04565b6002816004811115611bcf57611bcf612470565b1415611c1d5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610a04565b6003816004811115611c3157611c31612470565b1415611c8a5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610a04565b6004816004811115611c9e57611c9e612470565b1415610c9d5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610a04565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611d2e5750600090506003611ddb565b8460ff16601b14158015611d4657508460ff16601c14155b15611d575750600090506004611ddb565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611dab573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611dd457600060019250925050611ddb565b9150600090505b94509492505050565b828054611df0906123da565b90600052602060002090601f016020900481019282611e125760008555611e58565b82601f10611e2b5782800160ff19823516178555611e58565b82800160010185558215611e58579182015b82811115611e58578235825591602001919060010190611e3d565b50611e64929150611e68565b5090565b5b80821115611e645760008155600101611e69565b80356001600160a01b0381168114611e9457600080fd5b919050565b600082601f830112611eaa57600080fd5b813567ffffffffffffffff80821115611ec557611ec561249c565b604051601f8301601f19908116603f01168101908282118183101715611eed57611eed61249c565b81604052838152866020858801011115611f0657600080fd5b836020870160208301376000602085830101528094505050505092915050565b600060208284031215611f3857600080fd5b6116b382611e7d565b60008060408385031215611f5457600080fd5b611f5d83611e7d565b9150611f6b60208401611e7d565b90509250929050565b600080600060608486031215611f8957600080fd5b611f9284611e7d565b9250611fa060208501611e7d565b9150604084013590509250925092565b60008060008060808587031215611fc657600080fd5b611fcf85611e7d565b9350611fdd60208601611e7d565b925060408501359150606085013567ffffffffffffffff81111561200057600080fd5b61200c87828801611e99565b91505092959194509250565b6000806040838503121561202b57600080fd5b61203483611e7d565b91506020830135801515811461204957600080fd5b809150509250929050565b6000806040838503121561206757600080fd5b61207083611e7d565b946020939093013593505050565b6000806020838503121561209157600080fd5b823567ffffffffffffffff808211156120a957600080fd5b818501915085601f8301126120bd57600080fd5b8135818111156120cc57600080fd5b8660208260051b85010111156120e157600080fd5b60209290920196919550909350505050565b60006020828403121561210557600080fd5b81356116b3816124b2565b60006020828403121561212257600080fd5b81516116b3816124b2565b6000806020838503121561214057600080fd5b823567ffffffffffffffff8082111561215857600080fd5b818501915085601f83011261216c57600080fd5b81358181111561217b57600080fd5b8660208285010111156120e157600080fd5b60006020828403121561219f57600080fd5b5035919050565b600080604083850312156121b957600080fd5b82359150602083013567ffffffffffffffff8111156121d757600080fd5b6121e385828601611e99565b9150509250929050565b600081518084526122058160208601602086016123ae565b601f01601f19169290920160200192915050565b8054600090600181811c908083168061223357607f831692505b602080841082141561225557634e487b7160e01b600052602260045260246000fd5b818015612269576001811461227a576122a7565b60ff198616895284890196506122a7565b60008881526020902060005b8681101561229f5781548b820152908501908301612286565b505084890196505b50505050505092915050565b6bffffffffffffffffffffffff198360601b16815260006119cc6014830184612219565b60006122e38285612219565b83516122f38183602088016123ae565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061232f908301846121ed565b9695505050505050565b6020815260006116b360208301846121ed565b6000821982111561235f5761235f612444565b500190565b6000826123735761237361245a565b500490565b600081600019048311821515161561239257612392612444565b500290565b6000828210156123a9576123a9612444565b500390565b60005b838110156123c95781810151838201526020016123b1565b8381111561130f5750506000910152565b600181811c908216806123ee57607f821691505b6020821081141561240f57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561242957612429612444565b5060010190565b60008261243f5761243f61245a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c9d57600080fdfea26469706673582212208a0839813dcc95fbeafcd84778c6653077a1a0f9bd08b0ecc3f0dda671e67bc064736f6c6343000807003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f2f

Deployed Bytecode

0x6080604052600436106102765760003560e01c80638da5cb5b1161014f578063b88d4fde116100c1578063d97d28d21161007a578063d97d28d214610705578063dc30158b14610725578063e268e4d31461073b578063e985e9c51461075b578063f2fde38b146107a4578063f42202e8146107c457600080fd5b8063b88d4fde14610650578063c46eb68514610670578063c627525514610685578063c6f6f216146106a5578063c87b56dd146106c5578063cbe11644146106e557600080fd5b8063a0712d6811610113578063a0712d68146105b0578063a10f151e146105c3578063a22cb465146105e3578063a945bf8014610603578063b29418d514610619578063b7f751d81461062f57600080fd5b80638da5cb5b1461051c57806390edd6971461053a57806392eca5b41461056757806395d89b411461057a57806397283d2f1461058f57600080fd5b806342842e0e116101e85780636c19e783116101ac5780636c19e7831461048657806370a08231146104a6578063715018a6146104c657806379aee341146104db57806387c0568b146104f1578063898f71721461050757600080fd5b806342842e0e146103fa578063453c23101461041a5780634b2596c71461043057806355f804b3146104465780636352211e1461046657600080fd5b806318160ddd1161023a57806318160ddd146103535780631ead38771461037a5780631fe9eabc1461039057806323b872dd146103b057806333098c01146103d05780633ccfd60b146103e557600080fd5b806301ffc9a71461028257806306fdde03146102b7578063081812fc146102d9578063095ea7b314610311578063163e1e611461033357600080fd5b3661027d57005b600080fd5b34801561028e57600080fd5b506102a261029d3660046120f3565b6107e4565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cc610836565b6040516102ae9190612339565b3480156102e557600080fd5b506102f96102f436600461218d565b6108c8565b6040516001600160a01b0390911681526020016102ae565b34801561031d57600080fd5b5061033161032c366004612054565b61090c565b005b34801561033f57600080fd5b5061033161034e36600461207e565b6109ac565b34801561035f57600080fd5b5060015460005403600019015b6040519081526020016102ae565b34801561038657600080fd5b5061036c60125481565b34801561039c57600080fd5b506103316103ab36600461218d565b610a7b565b3480156103bc57600080fd5b506103316103cb366004611f74565b610a88565b3480156103dc57600080fd5b50610331610c19565b3480156103f157600080fd5b50610331610c42565b34801561040657600080fd5b50610331610415366004611f74565b610cf0565b34801561042657600080fd5b5061036c60105481565b34801561043c57600080fd5b5061036c600c5481565b34801561045257600080fd5b5061033161046136600461212d565b610d0b565b34801561047257600080fd5b506102f961048136600461218d565b610d1f565b34801561049257600080fd5b506103316104a1366004611f26565b610d2a565b3480156104b257600080fd5b5061036c6104c1366004611f26565b610d54565b3480156104d257600080fd5b50610331610da3565b3480156104e757600080fd5b5061036c60115481565b3480156104fd57600080fd5b5061036c600d5481565b34801561051357600080fd5b506102cc610db7565b34801561052857600080fd5b506008546001600160a01b03166102f9565b34801561054657600080fd5b5061036c610555366004611f26565b60156020526000908152604090205481565b6103316105753660046121a6565b610e45565b34801561058657600080fd5b506102cc611079565b34801561059b57600080fd5b506013546102a290600160a81b900460ff1681565b6103316105be36600461218d565b611088565b3480156105cf57600080fd5b506103316105de36600461218d565b611228565b3480156105ef57600080fd5b506103316105fe366004612018565b611235565b34801561060f57600080fd5b5061036c600e5481565b34801561062557600080fd5b5061036c600b5481565b34801561063b57600080fd5b506013546102a290600160a01b900460ff1681565b34801561065c57600080fd5b5061033161066b366004611fb0565b6112cb565b34801561067c57600080fd5b50610331611315565b34801561069157600080fd5b506103316106a036600461218d565b61133e565b3480156106b157600080fd5b506103316106c036600461218d565b61134b565b3480156106d157600080fd5b506102cc6106e036600461218d565b611358565b3480156106f157600080fd5b5061033161070036600461218d565b6113e1565b34801561071157600080fd5b506013546102f9906001600160a01b031681565b34801561073157600080fd5b5061036c600f5481565b34801561074757600080fd5b5061033161075636600461218d565b6113ee565b34801561076757600080fd5b506102a2610776366004611f41565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156107b057600080fd5b506103316107bf366004611f26565b6113fb565b3480156107d057600080fd5b506103316107df36600461218d565b611471565b60006301ffc9a760e01b6001600160e01b03198316148061081557506380ac58cd60e01b6001600160e01b03198316145b806108305750635b5e139f60e01b6001600160e01b03198316145b92915050565b606060028054610845906123da565b80601f0160208091040260200160405190810160405280929190818152602001828054610871906123da565b80156108be5780601f10610893576101008083540402835291602001916108be565b820191906000526020600020905b8154815290600101906020018083116108a157829003601f168201915b5050505050905090565b60006108d3826114df565b6108f0576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061091782610d1f565b9050336001600160a01b03821614610950576109338133610776565b610950576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6109b4611514565b600c546012546109c590839061234c565b1115610a0d5760405162461bcd60e51b81526020600482015260126024820152714558434545445f5445414d5f535550504c5960701b60448201526064015b60405180910390fd5b8181905060126000828254610a22919061234c565b90915550600090505b81811015610a7657610a64838383818110610a4857610a48612486565b9050602002016020810190610a5d9190611f26565b600161156e565b80610a6e81612415565b915050610a2b565b505050565b610a83611514565b600b55565b6000610a9382611665565b9050836001600160a01b0316816001600160a01b031614610ac65760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b03881690911417610b1357610af68633610776565b610b1357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038516610b3a57604051633a954ecd60e21b815260040160405180910390fd5b8015610b4557600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b8316610bd05760018401600081815260046020526040902054610bce576000548114610bce5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b610c21611514565b6013805460ff60a01b198116600160a01b9182900460ff1615909102179055565b610c4a611514565b601454479067209ce08c962b000090610c6490839061234c565b11610ca0574760146000828254610c7b919061234c565b90915550610c9d905071f92fa20f4ce4e17f8f3a65d566ea2e2cebcd476116d5565b50565b600060145467209ce08c962b0000610cb89190612397565b67209ce08c962b00006014559050610ce271f92fa20f4ce4e17f8f3a65d566ea2e2cebcd826116d5565b610cec33476116d5565b5050565b610a76838383604051806020016040528060008152506112cb565b610d13611514565b610a7660098383611de4565b600061083082611665565b610d32611514565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b038216610d7d576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b610dab611514565b610db560006117ee565b565b600a8054610dc4906123da565b80601f0160208091040260200160405190810160405280929190818152602001828054610df0906123da565b8015610e3d5780601f10610e1257610100808354040283529160200191610e3d565b820191906000526020600020905b815481529060010190602001808311610e2057829003601f168201915b505050505081565b333b158015610e5357503332145b610e965760405162461bcd60e51b815260206004820152601460248201527318dbdb9d1c9858dd081b9bdd08185b1b1bddd95960621b6044820152606401610a04565b601354600160a81b900460ff16610edd5760405162461bcd60e51b815260206004820152600b60248201526a1352539517d0d313d4d15160aa1b6044820152606401610a04565b600b5482601154610eee919061234c565b1115610f315760405162461bcd60e51b81526020600482015260126024820152714558434545445f53414c455f535550504c5960701b6044820152606401610a04565b610f3a81611840565b610f7a5760405162461bcd60e51b8152602060048201526011602482015270494e56414c49445f5349474e415455524560781b6044820152606401610a04565b60105433600090815260156020526040902054610f9890849061234c565b1115610fda5760405162461bcd60e51b8152602060048201526011602482015270115610d1515117d4115497d5d053131155607a1b6044820152606401610a04565b3482600d54610fe99190612378565b111561102a5760405162461bcd60e51b815260206004820152601060248201526f0929ca6aa8c8c9286928a9ca8be8aa8960831b6044820152606401610a04565b816011600082825461103c919061234c565b90915550503360009081526015602052604090205461105c90839061234c565b33600081815260156020526040902091909155610cec908361156e565b606060038054610845906123da565b333b15801561109657503332145b6110d95760405162461bcd60e51b815260206004820152601460248201527318dbdb9d1c9858dd081b9bdd08185b1b1bddd95960621b6044820152606401610a04565b601354600160a01b900460ff166111205760405162461bcd60e51b815260206004820152600b60248201526a1352539517d0d313d4d15160aa1b6044820152606401610a04565b600b5481601154611131919061234c565b11156111745760405162461bcd60e51b81526020600482015260126024820152714558434545445f53414c455f535550504c5960701b6044820152606401610a04565b600f548111156111b65760405162461bcd60e51b815260206004820152600d60248201526c08ab0868a8a88bea08aa4bea8b609b1b6044820152606401610a04565b3481600e546111c59190612378565b11156112065760405162461bcd60e51b815260206004820152601060248201526f0929ca6aa8c8c9286928a9ca8be8aa8960831b6044820152606401610a04565b8060116000828254611218919061234c565b90915550610c9d9050338261156e565b611230611514565b600d55565b6001600160a01b03821633141561125f5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6112d6848484610a88565b6001600160a01b0383163b1561130f576112f2848484846118dc565b61130f576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b61131d611514565b6013805460ff60a81b198116600160a81b9182900460ff1615909102179055565b611346611514565b600e55565b611353611514565b600f55565b6060611363826114df565b6113af5760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e006044820152606401610a04565b60096113ba836119d4565b6040516020016113cb9291906122d7565b6040516020818303038152906040529050919050565b6113e9611514565b600c55565b6113f6611514565b601055565b611403611514565b6001600160a01b0381166114685760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a04565b610c9d816117ee565b611479611514565b600c548160125461148a919061234c565b11156114cd5760405162461bcd60e51b81526020600482015260126024820152714558434545445f5445414d5f535550504c5960701b6044820152606401610a04565b8060126000828254611218919061234c565b6000816001111580156114f3575060005482105b8015610830575050600090815260046020526040902054600160e01b161590565b6008546001600160a01b03163314610db55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a04565b6000548161158f5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461163e57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600101611606565b508161165c57604051622e076360e81b815260040160405180910390fd5b60005550505050565b600081806001116116bc576000548110156116bc57600081815260046020526040902054600160e01b81166116ba575b806116b3575060001901600081815260046020526040902054611695565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b804710156117255760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610a04565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611772576040519150601f19603f3d011682016040523d82523d6000602084013e611777565b606091505b5050905080610a765760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610a04565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60008033600a6040516020016118579291906122b3565b60408051601f198184030181529082905280516020918201207f19457468657265756d205369676e6564204d6573736167653a0a33320000000091830191909152603c820152605c0160408051601f19818403018152919052805160209091012090506118c48184611ad2565b6013546001600160a01b039081169116149392505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906119119033908990889088906004016122fc565b602060405180830381600087803b15801561192b57600080fd5b505af192505050801561195b575060408051601f3d908101601f1916820190925261195891810190612110565b60015b6119b6573d808015611989576040519150601f19603f3d011682016040523d82523d6000602084013e61198e565b606091505b5080516119ae576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816119f85750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a225780611a0c81612415565b9150611a1b9050600a83612364565b91506119fc565b60008167ffffffffffffffff811115611a3d57611a3d61249c565b6040519080825280601f01601f191660200182016040528015611a67576020820181803683370190505b5090505b84156119cc57611a7c600183612397565b9150611a89600a86612430565b611a9490603061234c565b60f81b818381518110611aa957611aa9612486565b60200101906001600160f81b031916908160001a905350611acb600a86612364565b9450611a6b565b6000806000611ae18585611af6565b91509150611aee81611b3c565b509392505050565b600080825160411415611b2d5760208301516040840151606085015160001a611b2187828585611cf7565b94509450505050611b35565b506000905060025b9250929050565b6000816004811115611b5057611b50612470565b1415611b595750565b6001816004811115611b6d57611b6d612470565b1415611bbb5760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610a04565b6002816004811115611bcf57611bcf612470565b1415611c1d5760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610a04565b6003816004811115611c3157611c31612470565b1415611c8a5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610a04565b6004816004811115611c9e57611c9e612470565b1415610c9d5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610a04565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611d2e5750600090506003611ddb565b8460ff16601b14158015611d4657508460ff16601c14155b15611d575750600090506004611ddb565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015611dab573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611dd457600060019250925050611ddb565b9150600090505b94509492505050565b828054611df0906123da565b90600052602060002090601f016020900481019282611e125760008555611e58565b82601f10611e2b5782800160ff19823516178555611e58565b82800160010185558215611e58579182015b82811115611e58578235825591602001919060010190611e3d565b50611e64929150611e68565b5090565b5b80821115611e645760008155600101611e69565b80356001600160a01b0381168114611e9457600080fd5b919050565b600082601f830112611eaa57600080fd5b813567ffffffffffffffff80821115611ec557611ec561249c565b604051601f8301601f19908116603f01168101908282118183101715611eed57611eed61249c565b81604052838152866020858801011115611f0657600080fd5b836020870160208301376000602085830101528094505050505092915050565b600060208284031215611f3857600080fd5b6116b382611e7d565b60008060408385031215611f5457600080fd5b611f5d83611e7d565b9150611f6b60208401611e7d565b90509250929050565b600080600060608486031215611f8957600080fd5b611f9284611e7d565b9250611fa060208501611e7d565b9150604084013590509250925092565b60008060008060808587031215611fc657600080fd5b611fcf85611e7d565b9350611fdd60208601611e7d565b925060408501359150606085013567ffffffffffffffff81111561200057600080fd5b61200c87828801611e99565b91505092959194509250565b6000806040838503121561202b57600080fd5b61203483611e7d565b91506020830135801515811461204957600080fd5b809150509250929050565b6000806040838503121561206757600080fd5b61207083611e7d565b946020939093013593505050565b6000806020838503121561209157600080fd5b823567ffffffffffffffff808211156120a957600080fd5b818501915085601f8301126120bd57600080fd5b8135818111156120cc57600080fd5b8660208260051b85010111156120e157600080fd5b60209290920196919550909350505050565b60006020828403121561210557600080fd5b81356116b3816124b2565b60006020828403121561212257600080fd5b81516116b3816124b2565b6000806020838503121561214057600080fd5b823567ffffffffffffffff8082111561215857600080fd5b818501915085601f83011261216c57600080fd5b81358181111561217b57600080fd5b8660208285010111156120e157600080fd5b60006020828403121561219f57600080fd5b5035919050565b600080604083850312156121b957600080fd5b82359150602083013567ffffffffffffffff8111156121d757600080fd5b6121e385828601611e99565b9150509250929050565b600081518084526122058160208601602086016123ae565b601f01601f19169290920160200192915050565b8054600090600181811c908083168061223357607f831692505b602080841082141561225557634e487b7160e01b600052602260045260246000fd5b818015612269576001811461227a576122a7565b60ff198616895284890196506122a7565b60008881526020902060005b8681101561229f5781548b820152908501908301612286565b505084890196505b50505050505092915050565b6bffffffffffffffffffffffff198360601b16815260006119cc6014830184612219565b60006122e38285612219565b83516122f38183602088016123ae565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061232f908301846121ed565b9695505050505050565b6020815260006116b360208301846121ed565b6000821982111561235f5761235f612444565b500190565b6000826123735761237361245a565b500490565b600081600019048311821515161561239257612392612444565b500290565b6000828210156123a9576123a9612444565b500390565b60005b838110156123c95781810151838201526020016123b1565b8381111561130f5750506000910152565b600181811c908216806123ee57607f821691505b6020821081141561240f57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561242957612429612444565b5060010190565b60008261243f5761243f61245a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c9d57600080fdfea26469706673582212208a0839813dcc95fbeafcd84778c6653077a1a0f9bd08b0ecc3f0dda671e67bc064736f6c63430008070033

Deployed Bytecode Sourcemap

75025:6008:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42570:639;;;;;;;;;;-1:-1:-1;42570:639:0;;;;;:::i;:::-;;:::i;:::-;;;8552:14:1;;8545:22;8527:41;;8515:2;8500:18;42570:639:0;;;;;;;;43472:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;49955:218::-;;;;;;;;;;-1:-1:-1;49955:218:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7850:32:1;;;7832:51;;7820:2;7805:18;49955:218:0;7686:203:1;49396:400:0;;;;;;;;;;-1:-1:-1;49396:400:0;;;;;:::i;:::-;;:::i;:::-;;78506:359;;;;;;;;;;-1:-1:-1;78506:359:0;;;;;:::i;:::-;;:::i;39223:323::-;;;;;;;;;;-1:-1:-1;76040:1:0;39497:12;39284:7;39481:13;:28;-1:-1:-1;;39481:46:0;39223:323;;;15546:25:1;;;15534:2;15519:18;39223:323:0;15400:177:1;75560:32:0;;;;;;;;;;;;;;;;79596:96;;;;;;;;;;-1:-1:-1;79596:96:0;;;;;:::i;:::-;;:::i;53662:2817::-;;;;;;;;;;-1:-1:-1;53662:2817:0;;;;;:::i;:::-;;:::i;79171:92::-;;;;;;;;;;;;;:::i;80254:739::-;;;;;;;;;;;;;:::i;56575:185::-;;;;;;;;;;-1:-1:-1;56575:185:0;;;;;:::i;:::-;;:::i;75487:31::-;;;;;;;;;;;;;;;;75313:34;;;;;;;;;;;;;;;;80140:106;;;;;;;;;;-1:-1:-1;80140:106:0;;;;;:::i;:::-;;:::i;44865:152::-;;;;;;;;;;-1:-1:-1;44865:152:0;;;;;:::i;:::-;;:::i;80029:103::-;;;;;;;;;;-1:-1:-1;80029:103:0;;;;;:::i;:::-;;:::i;40407:233::-;;;;;;;;;;-1:-1:-1;40407:233:0;;;;;:::i;:::-;;:::i;23318:103::-;;;;;;;;;;;;;:::i;75525:28::-;;;;;;;;;;;;;;;;75354:41;;;;;;;;;;;;;;;;75217:47;;;;;;;;;;;;;:::i;22670:87::-;;;;;;;;;;-1:-1:-1;22743:6:0;;-1:-1:-1;;;;;22743:6:0;22670:87;;75774:49;;;;;;;;;;-1:-1:-1;75774:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;77332:762;;;;;;:::i;:::-;;:::i;43648:104::-;;;;;;;;;;;;;:::i;75708:23::-;;;;;;;;;;-1:-1:-1;75708:23:0;;;;-1:-1:-1;;;75708:23:0;;;;;;76847:477;;;;;;:::i;:::-;;:::i;79484:104::-;;;;;;;;;;-1:-1:-1;79484:104:0;;;;;:::i;:::-;;:::i;50513:308::-;;;;;;;;;;-1:-1:-1;50513:308:0;;;;;:::i;:::-;;:::i;75402:39::-;;;;;;;;;;;;;;;;75271:35;;;;;;;;;;;;;;;;75679:22;;;;;;;;;;-1:-1:-1;75679:22:0;;;;-1:-1:-1;;;75679:22:0;;;;;;57358:399;;;;;;;;;;-1:-1:-1;57358:399:0;;;;;:::i;:::-;;:::i;79271:95::-;;;;;;;;;;;;;:::i;79374:102::-;;;;;;;;;;-1:-1:-1;79374:102:0;;;;;:::i;:::-;;:::i;79808:101::-;;;;;;;;;;-1:-1:-1;79808:101:0;;;;;:::i;:::-;;:::i;78102:280::-;;;;;;;;;;-1:-1:-1;78102:280:0;;;;;:::i;:::-;;:::i;79700:100::-;;;;;;;;;;-1:-1:-1;79700:100:0;;;;;:::i;:::-;;:::i;75599:73::-;;;;;;;;;;-1:-1:-1;75599:73:0;;;;-1:-1:-1;;;;;75599:73:0;;;75448:32;;;;;;;;;;;;;;;;79917:104;;;;;;;;;;-1:-1:-1;79917:104:0;;;;;:::i;:::-;;:::i;50978:164::-;;;;;;;;;;-1:-1:-1;50978:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;51099:25:0;;;51075:4;51099:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;50978:164;23576:201;;;;;;;;;;-1:-1:-1;23576:201:0;;;;;:::i;:::-;;:::i;78873:290::-;;;;;;;;;;-1:-1:-1;78873:290:0;;;;;:::i;:::-;;:::i;42570:639::-;42655:4;-1:-1:-1;;;;;;;;;42979:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;43056:25:0;;;42979:102;:179;;;-1:-1:-1;;;;;;;;;;43133:25:0;;;42979:179;42959:199;42570:639;-1:-1:-1;;42570:639:0:o;43472:100::-;43526:13;43559:5;43552:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43472:100;:::o;49955:218::-;50031:7;50056:16;50064:7;50056;:16::i;:::-;50051:64;;50081:34;;-1:-1:-1;;;50081:34:0;;;;;;;;;;;50051:64;-1:-1:-1;50135:24:0;;;;:15;:24;;;;;:30;-1:-1:-1;;;;;50135:30:0;;49955:218::o;49396:400::-;49477:13;49493:16;49501:7;49493;:16::i;:::-;49477:32;-1:-1:-1;73253:10:0;-1:-1:-1;;;;;49526:28:0;;;49522:175;;49574:44;49591:5;73253:10;50978:164;:::i;49574:44::-;49569:128;;49646:35;;-1:-1:-1;;;49646:35:0;;;;;;;;;;;49569:128;49709:24;;;;:15;:24;;;;;;:35;;-1:-1:-1;;;;;;49709:35:0;-1:-1:-1;;;;;49709:35:0;;;;;;;;;49760:28;;49709:24;;49760:28;;;;;;;49466:330;49396:400;;:::o;78506:359::-;22556:13;:11;:13::i;:::-;78642::::1;::::0;78602:17:::1;::::0;:36:::1;::::0;78622:9;;78602:36:::1;:::i;:::-;:53;;78580:121;;;::::0;-1:-1:-1;;;78580:121:0;;13152:2:1;78580:121:0::1;::::0;::::1;13134:21:1::0;13191:2;13171:18;;;13164:30;-1:-1:-1;;;13210:18:1;;;13203:48;13268:18;;78580:121:0::1;;;;;;;;;78735:9;;:16;;78714:17;;:37;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;78767:9:0::1;::::0;-1:-1:-1;78762:96:0::1;78782:20:::0;;::::1;78762:96;;;78824:22;78830:9;;78840:1;78830:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;78844:1;78824:5;:22::i;:::-;78804:3:::0;::::1;::::0;::::1;:::i;:::-;;;;78762:96;;;;78506:359:::0;;:::o;79596:96::-;22556:13;:11;:13::i;:::-;79660::::1;:24:::0;79596:96::o;53662:2817::-;53796:27;53826;53845:7;53826:18;:27::i;:::-;53796:57;;53911:4;-1:-1:-1;;;;;53870:45:0;53886:19;-1:-1:-1;;;;;53870:45:0;;53866:86;;53924:28;;-1:-1:-1;;;53924:28:0;;;;;;;;;;;53866:86;53966:27;52776:24;;;:15;:24;;;;;52998:26;;73253:10;52401:30;;;-1:-1:-1;;;;;52094:28:0;;52379:20;;;52376:56;54152:180;;54245:43;54262:4;73253:10;50978:164;:::i;54245:43::-;54240:92;;54297:35;;-1:-1:-1;;;54297:35:0;;;;;;;;;;;54240:92;-1:-1:-1;;;;;54349:16:0;;54345:52;;54374:23;;-1:-1:-1;;;54374:23:0;;;;;;;;;;;54345:52;54546:15;54543:160;;;54686:1;54665:19;54658:30;54543:160;-1:-1:-1;;;;;55083:24:0;;;;;;;:18;:24;;;;;;55081:26;;-1:-1:-1;;55081:26:0;;;55152:22;;;;;;;;;55150:24;;-1:-1:-1;55150:24:0;;;48254:11;48229:23;48225:41;48212:63;-1:-1:-1;;;48212:63:0;55445:26;;;;:17;:26;;;;;:175;-1:-1:-1;;;55740:47:0;;55736:627;;55845:1;55835:11;;55813:19;55968:30;;;:17;:30;;;;;;55964:384;;56106:13;;56091:11;:28;56087:242;;56253:30;;;;:17;:30;;;;;:52;;;56087:242;55794:569;55736:627;56410:7;56406:2;-1:-1:-1;;;;;56391:27:0;56400:4;-1:-1:-1;;;;;56391:27:0;;;;;;;;;;;53785:2694;;;53662:2817;;;:::o;79171:92::-;22556:13;:11;:13::i;:::-;79245:10:::1;::::0;;-1:-1:-1;;;;79231:24:0;::::1;-1:-1:-1::0;;;79245:10:0;;;::::1;;;79244:11;79231:24:::0;;::::1;;::::0;;79171:92::o;80254:739::-;22556:13;:11;:13::i;:::-;80367::::1;::::0;80329:21:::1;::::0;80401:10:::1;::::0;80367:30:::1;::::0;80329:21;;80367:30:::1;:::i;:::-;:44;80363:623;;80445:21;80428:13;;:38;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;80481:142:0::1;::::0;-1:-1:-1;80525:42:0::1;80587:21;80481:17;:142::i;:::-;80293:700;80254:739::o:0;80363:623::-:1;80656:22;80694:13;;80681:10;:26;;;;:::i;:::-;80738:10;80722:13;:26:::0;80656:51;-1:-1:-1;80763:135:0::1;80807:42;80656:51:::0;80763:17:::1;:135::i;:::-;80913:61;80939:10;80952:21;80913:17;:61::i;:::-;80641:345;80293:700;80254:739::o:0;56575:185::-;56713:39;56730:4;56736:2;56740:7;56713:39;;;;;;;;;;;;:16;:39::i;80140:106::-;22556:13;:11;:13::i;:::-;80218:20:::1;:7;80228:10:::0;;80218:20:::1;:::i;44865:152::-:0;44937:7;44980:27;44999:7;44980:18;:27::i;80029:103::-;22556:13;:11;:13::i;:::-;80098::::1;:26:::0;;-1:-1:-1;;;;;;80098:26:0::1;-1:-1:-1::0;;;;;80098:26:0;;;::::1;::::0;;;::::1;::::0;;80029:103::o;40407:233::-;40479:7;-1:-1:-1;;;;;40503:19:0;;40499:60;;40531:28;;-1:-1:-1;;;40531:28:0;;;;;;;;;;;40499:60;-1:-1:-1;;;;;;40577:25:0;;;;;:18;:25;;;;;;34566:13;40577:55;;40407:233::o;23318:103::-;22556:13;:11;:13::i;:::-;23383:30:::1;23410:1;23383:18;:30::i;:::-;23318:103::o:0;75217:47::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;77332:762::-;76127:10;76374:17;76419:8;;;76113:55;;-1:-1:-1;76144:10:0;76158:9;76144:23;76113:55;76091:125;;;;-1:-1:-1;;;76091:125:0;;13860:2:1;76091:125:0;;;13842:21:1;13899:2;13879:18;;;13872:30;-1:-1:-1;;;13918:18:1;;;13911:50;13978:18;;76091:125:0;13658:344:1;76091:125:0;77480:11:::1;::::0;-1:-1:-1;;;77480:11:0;::::1;;;77472:35;;;::::0;-1:-1:-1;;;77472:35:0;;10528:2:1;77472:35:0::1;::::0;::::1;10510:21:1::0;10567:2;10547:18;;;10540:30;-1:-1:-1;;;10586:18:1;;;10579:41;10637:18;;77472:35:0::1;10326:335:1::0;77472:35:0::1;77573:13;;77556;77540;;:29;;;;:::i;:::-;:46;;77518:114;;;::::0;-1:-1:-1;;;77518:114:0;;12402:2:1;77518:114:0::1;::::0;::::1;12384:21:1::0;12441:2;12421:18;;;12414:30;-1:-1:-1;;;12460:18:1;;;12453:48;12518:18;;77518:114:0::1;12200:342:1::0;77518:114:0::1;77651:28;77669:9;77651:17;:28::i;:::-;77643:58;;;::::0;-1:-1:-1;;;77643:58:0;;12056:2:1;77643:58:0::1;::::0;::::1;12038:21:1::0;12095:2;12075:18;;;12068:30;-1:-1:-1;;;12114:18:1;;;12107:47;12171:18;;77643:58:0::1;11854:341:1::0;77643:58:0::1;77780:12;::::0;77749:10:::1;77734:26;::::0;;;:14:::1;:26;::::0;;;;;:42:::1;::::0;77763:13;;77734:42:::1;:::i;:::-;:58;;77712:125;;;::::0;-1:-1:-1;;;77712:125:0;;14209:2:1;77712:125:0::1;::::0;::::1;14191:21:1::0;14248:2;14228:18;;;14221:30;-1:-1:-1;;;14267:18:1;;;14260:47;14324:18;;77712:125:0::1;14007:341:1::0;77712:125:0::1;77888:9;77871:13;77856:12;;:28;;;;:::i;:::-;:41;;77848:70;;;::::0;-1:-1:-1;;;77848:70:0;;15257:2:1;77848:70:0::1;::::0;::::1;15239:21:1::0;15296:2;15276:18;;;15269:30;-1:-1:-1;;;15315:18:1;;;15308:46;15371:18;;77848:70:0::1;15055:340:1::0;77848:70:0::1;77948:13;77931;;:30;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;78016:10:0::1;78001:26;::::0;;;:14:::1;:26;::::0;;;;;:42:::1;::::0;78030:13;;78001:42:::1;:::i;:::-;77987:10;77972:26;::::0;;;:14:::1;:26;::::0;;;;:71;;;;78054:32:::1;::::0;78072:13;78054:5:::1;:32::i;43648:104::-:0;43704:13;43737:7;43730:14;;;;;:::i;76847:477::-;76127:10;76374:17;76419:8;;;76113:55;;-1:-1:-1;76144:10:0;76158:9;76144:23;76113:55;76091:125;;;;-1:-1:-1;;;76091:125:0;;13860:2:1;76091:125:0;;;13842:21:1;13899:2;13879:18;;;13872:30;-1:-1:-1;;;13918:18:1;;;13911:50;13978:18;;76091:125:0;13658:344:1;76091:125:0;76932:10:::1;::::0;-1:-1:-1;;;76932:10:0;::::1;;;76924:34;;;::::0;-1:-1:-1;;;76924:34:0;;10528:2:1;76924:34:0::1;::::0;::::1;10510:21:1::0;10567:2;10547:18;;;10540:30;-1:-1:-1;;;10586:18:1;;;10579:41;10637:18;;76924:34:0::1;10326:335:1::0;76924:34:0::1;77024:13;;77007;76991;;:29;;;;:::i;:::-;:46;;76969:114;;;::::0;-1:-1:-1;;;76969:114:0;;12402:2:1;76969:114:0::1;::::0;::::1;12384:21:1::0;12441:2;12421:18;;;12414:30;-1:-1:-1;;;12460:18:1;;;12453:48;12518:18;;76969:114:0::1;12200:342:1::0;76969:114:0::1;77119:13;;77102;:30;;77094:56;;;::::0;-1:-1:-1;;;77094:56:0;;14915:2:1;77094:56:0::1;::::0;::::1;14897:21:1::0;14954:2;14934:18;;;14927:30;-1:-1:-1;;;14973:18:1;;;14966:43;15026:18;;77094:56:0::1;14713:337:1::0;77094:56:0::1;77200:9;77183:13;77169:11;;:27;;;;:::i;:::-;:40;;77161:69;;;::::0;-1:-1:-1;;;77161:69:0;;15257:2:1;77161:69:0::1;::::0;::::1;15239:21:1::0;15296:2;15276:18;;;15269:30;-1:-1:-1;;;15315:18:1;;;15308:46;15371:18;;77161:69:0::1;15055:340:1::0;77161:69:0::1;77260:13;77243;;:30;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;77284:32:0::1;::::0;-1:-1:-1;77290:10:0::1;77302:13:::0;77284:5:::1;:32::i;79484:104::-:0;22556:13;:11;:13::i;:::-;79557:12:::1;:23:::0;79484:104::o;50513:308::-;-1:-1:-1;;;;;50612:31:0;;73253:10;50612:31;50608:61;;;50652:17;;-1:-1:-1;;;50652:17:0;;;;;;;;;;;50608:61;73253:10;50682:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;50682:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;50682:60:0;;;;;;;;;;50758:55;;8527:41:1;;;50682:49:0;;73253:10;50758:55;;8500:18:1;50758:55:0;;;;;;;50513:308;;:::o;57358:399::-;57525:31;57538:4;57544:2;57548:7;57525:12;:31::i;:::-;-1:-1:-1;;;;;57571:14:0;;;:19;57567:183;;57610:56;57641:4;57647:2;57651:7;57660:5;57610:30;:56::i;:::-;57605:145;;57694:40;;-1:-1:-1;;;57694:40:0;;;;;;;;;;;57605:145;57358:399;;;;:::o;79271:95::-;22556:13;:11;:13::i;:::-;79347:11:::1;::::0;;-1:-1:-1;;;;79332:26:0;::::1;-1:-1:-1::0;;;79347:11:0;;;::::1;;;79346:12;79332:26:::0;;::::1;;::::0;;79271:95::o;79374:102::-;22556:13;:11;:13::i;:::-;79446:11:::1;:22:::0;79374:102::o;79808:101::-;22556:13;:11;:13::i;:::-;79877::::1;:24:::0;79808:101::o;78102:280::-;78212:13;78251:16;78259:7;78251;:16::i;:::-;78243:60;;;;-1:-1:-1;;;78243:60:0;;14555:2:1;78243:60:0;;;14537:21:1;14594:2;14574:18;;;14567:30;14633:33;14613:18;;;14606:61;14684:18;;78243:60:0;14353:355:1;78243:60:0;78345:7;78354:18;:7;:16;:18::i;:::-;78328:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;78314:60;;78102:280;;;:::o;79700:100::-;22556:13;:11;:13::i;:::-;79768::::1;:24:::0;79700:100::o;79917:104::-;22556:13;:11;:13::i;:::-;79990:12:::1;:23:::0;79917:104::o;23576:201::-;22556:13;:11;:13::i;:::-;-1:-1:-1;;;;;23665:22:0;::::1;23657:73;;;::::0;-1:-1:-1;;;23657:73:0;;10121:2:1;23657:73:0::1;::::0;::::1;10103:21:1::0;10160:2;10140:18;;;10133:30;10199:34;10179:18;;;10172:62;-1:-1:-1;;;10250:18:1;;;10243:36;10296:19;;23657:73:0::1;9919:402:1::0;23657:73:0::1;23741:28;23760:8;23741:18;:28::i;78873:290::-:0;22556:13;:11;:13::i;:::-;79006::::1;;78989;78969:17;;:33;;;;:::i;:::-;:50;;78947:118;;;::::0;-1:-1:-1;;;78947:118:0;;13152:2:1;78947:118:0::1;::::0;::::1;13134:21:1::0;13191:2;13171:18;;;13164:30;-1:-1:-1;;;13210:18:1;;;13203:48;13268:18;;78947:118:0::1;12950:342:1::0;78947:118:0::1;79099:13;79078:17;;:34;;;;;;;:::i;51400:282::-:0;51465:4;51521:7;76040:1;51502:26;;:66;;;;;51555:13;;51545:7;:23;51502:66;:153;;;;-1:-1:-1;;51606:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;51606:44:0;:49;;51400:282::o;22835:132::-;22743:6;;-1:-1:-1;;;;;22743:6:0;73253:10;22899:23;22891:68;;;;-1:-1:-1;;;22891:68:0;;13499:2:1;22891:68:0;;;13481:21:1;;;13518:18;;;13511:30;13577:34;13557:18;;;13550:62;13629:18;;22891:68:0;13297:356:1;61019:2454:0;61092:20;61115:13;61143;61139:44;;61165:18;;-1:-1:-1;;;61165:18:0;;;;;;;;;;;61139:44;-1:-1:-1;;;;;61671:22:0;;;;;;:18;:22;;;;34704:2;61671:22;;;:71;;61709:32;61697:45;;61671:71;;;61985:31;;;:17;:31;;;;;-1:-1:-1;48685:15:0;;48659:24;48655:46;48254:11;48229:23;48225:41;48222:52;48212:63;;61985:173;;62220:23;;;;61985:31;;61671:22;;62719:25;61671:22;;62572:335;62987:1;62973:12;62969:20;62927:346;63028:3;63019:7;63016:16;62927:346;;63246:7;63236:8;63233:1;63206:25;63203:1;63200;63195:59;63081:1;63068:15;62927:346;;;-1:-1:-1;63306:13:0;63302:45;;63328:19;;-1:-1:-1;;;63328:19:0;;;;;;;;;;;63302:45;63364:13;:19;-1:-1:-1;78762:96:0::1;78506:359:::0;;:::o;46020:1275::-;46087:7;46122;;76040:1;46171:23;46167:1061;;46224:13;;46217:4;:20;46213:1015;;;46262:14;46279:23;;;:17;:23;;;;;;-1:-1:-1;;;46368:24:0;;46364:845;;47033:113;47040:11;47033:113;;-1:-1:-1;;;47111:6:0;47093:25;;;;:17;:25;;;;;;47033:113;;;47179:6;46020:1275;-1:-1:-1;;;46020:1275:0:o;46364:845::-;46239:989;46213:1015;47256:31;;-1:-1:-1;;;47256:31:0;;;;;;;;;;;3013:317;3128:6;3103:21;:31;;3095:73;;;;-1:-1:-1;;;3095:73:0;;11698:2:1;3095:73:0;;;11680:21:1;11737:2;11717:18;;;11710:30;11776:31;11756:18;;;11749:59;11825:18;;3095:73:0;11496:353:1;3095:73:0;3182:12;3200:9;-1:-1:-1;;;;;3200:14:0;3222:6;3200:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3181:52;;;3252:7;3244:78;;;;-1:-1:-1;;;3244:78:0;;10868:2:1;3244:78:0;;;10850:21:1;10907:2;10887:18;;;10880:30;10946:34;10926:18;;;10919:62;11017:28;10997:18;;;10990:56;11063:19;;3244:78:0;10666:422:1;23937:191:0;24030:6;;;-1:-1:-1;;;;;24047:17:0;;;-1:-1:-1;;;;;;24047:17:0;;;;;;;24080:40;;24030:6;;;24047:17;24030:6;;24080:40;;24011:16;;24080:40;24000:128;23937:191;:::o;76443:396::-;76543:4;76565:12;76719:10;76731:14;76702:44;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;76702:44:0;;;;;;;;;;76692:55;;76702:44;76692:55;;;;7333:66:1;76604:158:0;;;7321:79:1;;;;7416:12;;;7409:28;7453:12;;76604:158:0;;;-1:-1:-1;;76604:158:0;;;;;;;;;76580:193;;76604:158;76580:193;;;;;-1:-1:-1;76808:23:0;76580:193;76821:9;76808:12;:23::i;:::-;76791:13;;-1:-1:-1;;;;;76791:13:0;;;:40;;;;76443:396;-1:-1:-1;;;76443:396:0:o;59841:716::-;60025:88;;-1:-1:-1;;;60025:88:0;;60004:4;;-1:-1:-1;;;;;60025:45:0;;;;;:88;;73253:10;;60092:4;;60098:7;;60107:5;;60025:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;60025:88:0;;;;;;;;-1:-1:-1;;60025:88:0;;;;;;;;;;;;:::i;:::-;;;60021:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;60308:13:0;;60304:235;;60354:40;;-1:-1:-1;;;60354:40:0;;;;;;;;;;;60304:235;60497:6;60491:13;60482:6;60478:2;60474:15;60467:38;60021:529;-1:-1:-1;;;;;;60184:64:0;-1:-1:-1;;;60184:64:0;;-1:-1:-1;60021:529:0;59841:716;;;;;;:::o;9502:723::-;9558:13;9779:10;9775:53;;-1:-1:-1;;9806:10:0;;;;;;;;;;;;-1:-1:-1;;;9806:10:0;;;;;9502:723::o;9775:53::-;9853:5;9838:12;9894:78;9901:9;;9894:78;;9927:8;;;;:::i;:::-;;-1:-1:-1;9950:10:0;;-1:-1:-1;9958:2:0;9950:10;;:::i;:::-;;;9894:78;;;9982:19;10014:6;10004:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10004:17:0;;9982:39;;10032:154;10039:10;;10032:154;;10066:11;10076:1;10066:11;;:::i;:::-;;-1:-1:-1;10135:10:0;10143:2;10135:5;:10;:::i;:::-;10122:24;;:2;:24;:::i;:::-;10109:39;;10092:6;10099;10092:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;10092:56:0;;;;;;;;-1:-1:-1;10163:11:0;10172:2;10163:11;;:::i;:::-;;;10032:154;;15425:231;15503:7;15524:17;15543:18;15565:27;15576:4;15582:9;15565:10;:27::i;:::-;15523:69;;;;15603:18;15615:5;15603:11;:18::i;:::-;-1:-1:-1;15639:9:0;15425:231;-1:-1:-1;;;15425:231:0:o;13876:747::-;13957:7;13966:12;13995:9;:16;14015:2;13995:22;13991:625;;;14339:4;14324:20;;14318:27;14389:4;14374:20;;14368:27;14447:4;14432:20;;14426:27;14034:9;14418:36;14490:25;14501:4;14418:36;14318:27;14368;14490:10;:25::i;:::-;14483:32;;;;;;;;;13991:625;-1:-1:-1;14564:1:0;;-1:-1:-1;14568:35:0;13991:625;13876:747;;;;;:::o;12147:643::-;12225:20;12216:5;:29;;;;;;;;:::i;:::-;;12212:571;;;12147:643;:::o;12212:571::-;12323:29;12314:5;:38;;;;;;;;:::i;:::-;;12310:473;;;12369:34;;-1:-1:-1;;;12369:34:0;;9408:2:1;12369:34:0;;;9390:21:1;9447:2;9427:18;;;9420:30;9486:26;9466:18;;;9459:54;9530:18;;12369:34:0;9206:348:1;12310:473:0;12434:35;12425:5;:44;;;;;;;;:::i;:::-;;12421:362;;;12486:41;;-1:-1:-1;;;12486:41:0;;9761:2:1;12486:41:0;;;9743:21:1;9800:2;9780:18;;;9773:30;9839:33;9819:18;;;9812:61;9890:18;;12486:41:0;9559:355:1;12421:362:0;12558:30;12549:5;:39;;;;;;;;:::i;:::-;;12545:238;;;12605:44;;-1:-1:-1;;;12605:44:0;;11295:2:1;12605:44:0;;;11277:21:1;11334:2;11314:18;;;11307:30;11373:34;11353:18;;;11346:62;-1:-1:-1;;;11424:18:1;;;11417:32;11466:19;;12605:44:0;11093:398:1;12545:238:0;12680:30;12671:5;:39;;;;;;;;:::i;:::-;;12667:116;;;12727:44;;-1:-1:-1;;;12727:44:0;;12749:2:1;12727:44:0;;;12731:21:1;12788:2;12768:18;;;12761:30;12827:34;12807:18;;;12800:62;-1:-1:-1;;;12878:18:1;;;12871:32;12920:19;;12727:44:0;12547:398:1;16877:1632:0;17008:7;;17942:66;17929:79;;17925:163;;;-1:-1:-1;18041:1:0;;-1:-1:-1;18045:30:0;18025:51;;17925:163;18102:1;:7;;18107:2;18102:7;;:18;;;;;18113:1;:7;;18118:2;18113:7;;18102:18;18098:102;;;-1:-1:-1;18153:1:0;;-1:-1:-1;18157:30:0;18137:51;;18098:102;18314:24;;;18297:14;18314:24;;;;;;;;;8806:25:1;;;8879:4;8867:17;;8847:18;;;8840:45;;;;8901:18;;;8894:34;;;8944:18;;;8937:34;;;18314:24:0;;8778:19:1;;18314:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;18314:24:0;;-1:-1:-1;;18314:24:0;;;-1:-1:-1;;;;;;;18353:20:0;;18349:103;;18406:1;18410:29;18390:50;;;;;;;18349:103;18472:6;-1:-1:-1;18480:20:0;;-1:-1:-1;16877:1632:0;;;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:718::-;234:5;287:3;280:4;272:6;268:17;264:27;254:55;;305:1;302;295:12;254:55;341:6;328:20;367:18;404:2;400;397:10;394:36;;;410:18;;:::i;:::-;485:2;479:9;453:2;539:13;;-1:-1:-1;;535:22:1;;;559:2;531:31;527:40;515:53;;;583:18;;;603:22;;;580:46;577:72;;;629:18;;:::i;:::-;669:10;665:2;658:22;704:2;696:6;689:18;750:3;743:4;738:2;730:6;726:15;722:26;719:35;716:55;;;767:1;764;757:12;716:55;831:2;824:4;816:6;812:17;805:4;797:6;793:17;780:54;878:1;871:4;866:2;858:6;854:15;850:26;843:37;898:6;889:15;;;;;;192:718;;;;:::o;915:186::-;974:6;1027:2;1015:9;1006:7;1002:23;998:32;995:52;;;1043:1;1040;1033:12;995:52;1066:29;1085:9;1066:29;:::i;1106:260::-;1174:6;1182;1235:2;1223:9;1214:7;1210:23;1206:32;1203:52;;;1251:1;1248;1241:12;1203:52;1274:29;1293:9;1274:29;:::i;:::-;1264:39;;1322:38;1356:2;1345:9;1341:18;1322:38;:::i;:::-;1312:48;;1106:260;;;;;:::o;1371:328::-;1448:6;1456;1464;1517:2;1505:9;1496:7;1492:23;1488:32;1485:52;;;1533:1;1530;1523:12;1485:52;1556:29;1575:9;1556:29;:::i;:::-;1546:39;;1604:38;1638:2;1627:9;1623:18;1604:38;:::i;:::-;1594:48;;1689:2;1678:9;1674:18;1661:32;1651:42;;1371:328;;;;;:::o;1704:537::-;1799:6;1807;1815;1823;1876:3;1864:9;1855:7;1851:23;1847:33;1844:53;;;1893:1;1890;1883:12;1844:53;1916:29;1935:9;1916:29;:::i;:::-;1906:39;;1964:38;1998:2;1987:9;1983:18;1964:38;:::i;:::-;1954:48;;2049:2;2038:9;2034:18;2021:32;2011:42;;2104:2;2093:9;2089:18;2076:32;2131:18;2123:6;2120:30;2117:50;;;2163:1;2160;2153:12;2117:50;2186:49;2227:7;2218:6;2207:9;2203:22;2186:49;:::i;:::-;2176:59;;;1704:537;;;;;;;:::o;2246:347::-;2311:6;2319;2372:2;2360:9;2351:7;2347:23;2343:32;2340:52;;;2388:1;2385;2378:12;2340:52;2411:29;2430:9;2411:29;:::i;:::-;2401:39;;2490:2;2479:9;2475:18;2462:32;2537:5;2530:13;2523:21;2516:5;2513:32;2503:60;;2559:1;2556;2549:12;2503:60;2582:5;2572:15;;;2246:347;;;;;:::o;2598:254::-;2666:6;2674;2727:2;2715:9;2706:7;2702:23;2698:32;2695:52;;;2743:1;2740;2733:12;2695:52;2766:29;2785:9;2766:29;:::i;:::-;2756:39;2842:2;2827:18;;;;2814:32;;-1:-1:-1;;;2598:254:1:o;2857:615::-;2943:6;2951;3004:2;2992:9;2983:7;2979:23;2975:32;2972:52;;;3020:1;3017;3010:12;2972:52;3060:9;3047:23;3089:18;3130:2;3122:6;3119:14;3116:34;;;3146:1;3143;3136:12;3116:34;3184:6;3173:9;3169:22;3159:32;;3229:7;3222:4;3218:2;3214:13;3210:27;3200:55;;3251:1;3248;3241:12;3200:55;3291:2;3278:16;3317:2;3309:6;3306:14;3303:34;;;3333:1;3330;3323:12;3303:34;3386:7;3381:2;3371:6;3368:1;3364:14;3360:2;3356:23;3352:32;3349:45;3346:65;;;3407:1;3404;3397:12;3346:65;3438:2;3430:11;;;;;3460:6;;-1:-1:-1;2857:615:1;;-1:-1:-1;;;;2857:615:1:o;3477:245::-;3535:6;3588:2;3576:9;3567:7;3563:23;3559:32;3556:52;;;3604:1;3601;3594:12;3556:52;3643:9;3630:23;3662:30;3686:5;3662:30;:::i;3727:249::-;3796:6;3849:2;3837:9;3828:7;3824:23;3820:32;3817:52;;;3865:1;3862;3855:12;3817:52;3897:9;3891:16;3916:30;3940:5;3916:30;:::i;3981:592::-;4052:6;4060;4113:2;4101:9;4092:7;4088:23;4084:32;4081:52;;;4129:1;4126;4119:12;4081:52;4169:9;4156:23;4198:18;4239:2;4231:6;4228:14;4225:34;;;4255:1;4252;4245:12;4225:34;4293:6;4282:9;4278:22;4268:32;;4338:7;4331:4;4327:2;4323:13;4319:27;4309:55;;4360:1;4357;4350:12;4309:55;4400:2;4387:16;4426:2;4418:6;4415:14;4412:34;;;4442:1;4439;4432:12;4412:34;4487:7;4482:2;4473:6;4469:2;4465:15;4461:24;4458:37;4455:57;;;4508:1;4505;4498:12;4578:180;4637:6;4690:2;4678:9;4669:7;4665:23;4661:32;4658:52;;;4706:1;4703;4696:12;4658:52;-1:-1:-1;4729:23:1;;4578:180;-1:-1:-1;4578:180:1:o;4763:388::-;4840:6;4848;4901:2;4889:9;4880:7;4876:23;4872:32;4869:52;;;4917:1;4914;4907:12;4869:52;4953:9;4940:23;4930:33;;5014:2;5003:9;4999:18;4986:32;5041:18;5033:6;5030:30;5027:50;;;5073:1;5070;5063:12;5027:50;5096:49;5137:7;5128:6;5117:9;5113:22;5096:49;:::i;:::-;5086:59;;;4763:388;;;;;:::o;5156:257::-;5197:3;5235:5;5229:12;5262:6;5257:3;5250:19;5278:63;5334:6;5327:4;5322:3;5318:14;5311:4;5304:5;5300:16;5278:63;:::i;:::-;5395:2;5374:15;-1:-1:-1;;5370:29:1;5361:39;;;;5402:4;5357:50;;5156:257;-1:-1:-1;;5156:257:1:o;5418:973::-;5503:12;;5468:3;;5558:1;5578:18;;;;5631;;;;5658:61;;5712:4;5704:6;5700:17;5690:27;;5658:61;5738:2;5786;5778:6;5775:14;5755:18;5752:38;5749:161;;;5832:10;5827:3;5823:20;5820:1;5813:31;5867:4;5864:1;5857:15;5895:4;5892:1;5885:15;5749:161;5926:18;5953:104;;;;6071:1;6066:319;;;;5919:466;;5953:104;-1:-1:-1;;5986:24:1;;5974:37;;6031:16;;;;-1:-1:-1;5953:104:1;;6066:319;15655:1;15648:14;;;15692:4;15679:18;;6160:1;6174:165;6188:6;6185:1;6182:13;6174:165;;;6266:14;;6253:11;;;6246:35;6309:16;;;;6203:10;;6174:165;;;6178:3;;6368:6;6363:3;6359:16;6352:23;;5919:466;;;;;;;5418:973;;;;:::o;6396:309::-;6607:26;6603:31;6594:6;6590:2;6586:15;6582:53;6577:3;6570:66;6552:3;6652:47;6695:2;6690:3;6686:12;6678:6;6652:47;:::i;6710:376::-;6886:3;6914:38;6948:3;6940:6;6914:38;:::i;:::-;6981:6;6975:13;6997:52;7042:6;7038:2;7031:4;7023:6;7019:17;6997:52;:::i;:::-;7065:15;;6710:376;-1:-1:-1;;;;6710:376:1:o;7894:488::-;-1:-1:-1;;;;;8163:15:1;;;8145:34;;8215:15;;8210:2;8195:18;;8188:43;8262:2;8247:18;;8240:34;;;8310:3;8305:2;8290:18;;8283:31;;;8088:4;;8331:45;;8356:19;;8348:6;8331:45;:::i;:::-;8323:53;7894:488;-1:-1:-1;;;;;;7894:488:1:o;8982:219::-;9131:2;9120:9;9113:21;9094:4;9151:44;9191:2;9180:9;9176:18;9168:6;9151:44;:::i;15708:128::-;15748:3;15779:1;15775:6;15772:1;15769:13;15766:39;;;15785:18;;:::i;:::-;-1:-1:-1;15821:9:1;;15708:128::o;15841:120::-;15881:1;15907;15897:35;;15912:18;;:::i;:::-;-1:-1:-1;15946:9:1;;15841:120::o;15966:168::-;16006:7;16072:1;16068;16064:6;16060:14;16057:1;16054:21;16049:1;16042:9;16035:17;16031:45;16028:71;;;16079:18;;:::i;:::-;-1:-1:-1;16119:9:1;;15966:168::o;16139:125::-;16179:4;16207:1;16204;16201:8;16198:34;;;16212:18;;:::i;:::-;-1:-1:-1;16249:9:1;;16139:125::o;16269:258::-;16341:1;16351:113;16365:6;16362:1;16359:13;16351:113;;;16441:11;;;16435:18;16422:11;;;16415:39;16387:2;16380:10;16351:113;;;16482:6;16479:1;16476:13;16473:48;;;-1:-1:-1;;16517:1:1;16499:16;;16492:27;16269:258::o;16532:380::-;16611:1;16607:12;;;;16654;;;16675:61;;16729:4;16721:6;16717:17;16707:27;;16675:61;16782:2;16774:6;16771:14;16751:18;16748:38;16745:161;;;16828:10;16823:3;16819:20;16816:1;16809:31;16863:4;16860:1;16853:15;16891:4;16888:1;16881:15;16745:161;;16532:380;;;:::o;16917:135::-;16956:3;-1:-1:-1;;16977:17:1;;16974:43;;;16997:18;;:::i;:::-;-1:-1:-1;17044:1:1;17033:13;;16917:135::o;17057:112::-;17089:1;17115;17105:35;;17120:18;;:::i;:::-;-1:-1:-1;17154:9:1;;17057:112::o;17174:127::-;17235:10;17230:3;17226:20;17223:1;17216:31;17266:4;17263:1;17256:15;17290:4;17287:1;17280:15;17306:127;17367:10;17362:3;17358:20;17355:1;17348:31;17398:4;17395:1;17388:15;17422:4;17419:1;17412:15;17438:127;17499:10;17494:3;17490:20;17487:1;17480:31;17530:4;17527:1;17520:15;17554:4;17551:1;17544:15;17570:127;17631:10;17626:3;17622:20;17619:1;17612:31;17662:4;17659:1;17652:15;17686:4;17683:1;17676:15;17702:127;17763:10;17758:3;17754:20;17751:1;17744:31;17794:4;17791:1;17784:15;17818:4;17815:1;17808:15;17834:131;-1:-1:-1;;;;;;17908:32:1;;17898:43;;17888:71;;17955:1;17952;17945:12

Swarm Source

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