ETH Price: $2,675.24 (+1.52%)
Gas: 1 Gwei

Token

doodle mfer (dmfers)
 

Overview

Max Total Supply

545 dmfers

Holders

126

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 dmfers
0xce22bd15c7292c111b43d9e948470e20eacebb8b
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:
DoodleMfers

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-26
*/

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


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

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: @openzeppelin/contracts-upgradeable/utils/StorageSlotUpgradeable.sol


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

pragma solidity ^0.8.0;

/**
 * @dev Library for reading and writing primitive types to specific storage slots.
 *
 * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.
 * This library helps with reading and writing to such slots without the need for inline assembly.
 *
 * The functions in this library return Slot structs that contain a `value` member that can be used to read or write.
 *
 * Example usage to set ERC1967 implementation slot:
 * ```
 * contract ERC1967 {
 *     bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
 *
 *     function _getImplementation() internal view returns (address) {
 *         return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
 *     }
 *
 *     function _setImplementation(address newImplementation) internal {
 *         require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract");
 *         StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
 *     }
 * }
 * ```
 *
 * _Available since v4.1 for `address`, `bool`, `bytes32`, and `uint256`._
 */
library StorageSlotUpgradeable {
    struct AddressSlot {
        address value;
    }

    struct BooleanSlot {
        bool value;
    }

    struct Bytes32Slot {
        bytes32 value;
    }

    struct Uint256Slot {
        uint256 value;
    }

    /**
     * @dev Returns an `AddressSlot` with member `value` located at `slot`.
     */
    function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `BooleanSlot` with member `value` located at `slot`.
     */
    function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Bytes32Slot` with member `value` located at `slot`.
     */
    function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Uint256Slot` with member `value` located at `slot`.
     */
    function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {
        assembly {
            r.slot := slot
        }
    }
}

// File: gwei-slim-nft-contracts/contracts/base/IBaseERC721Interface.sol


pragma solidity 0.8.9;

/// Additional features and functions assigned to the
/// Base721 contract for hooks and overrides
interface IBaseERC721Interface {
    /*
     Exposing common NFT internal functionality for base contract overrides
     To save gas and make API cleaner this is only for new functionality not exposed in
     the core ERC721 contract
    */

    /// Mint an NFT. Allowed to mint by owner, approval or by the parent contract
    /// @param tokenId id to burn
    function __burn(uint256 tokenId) external;

    /// Mint an NFT. Allowed only by the parent contract
    /// @param to address to mint to
    /// @param tokenId token id to mint
    function __mint(address to, uint256 tokenId) external;

    /// Set the base URI of the contract. Allowed only by parent contract
    /// @param base base uri
    /// @param extension extension
    function __setBaseURI(string memory base, string memory extension) external;

    /* Exposes common internal read features for public use */

    /// Token exists
    /// @param tokenId token id to see if it exists
    function __exists(uint256 tokenId) external view returns (bool);

    /// Simple approval for operation check on token for address
    /// @param spender address spending/changing token
    /// @param tokenId tokenID to change / operate on
    function __isApprovedOrOwner(address spender, uint256 tokenId)
        external
        view
        returns (bool);

    function __isApprovedForAll(address owner, address operator)
        external
        view
        returns (bool);

    function __tokenURI(uint256 tokenId) external view returns (string memory);

    function __owner() external view returns (address);
}

// File: @openzeppelin/contracts-upgradeable/utils/CountersUpgradeable.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts-upgradeable/utils/StringsUpgradeable.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.sol


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

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library AddressUpgradeable {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol


// OpenZeppelin Contracts v4.4.1 (proxy/utils/Initializable.sol)

pragma solidity ^0.8.0;


/**
 * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed
 * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an
 * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer
 * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.
 *
 * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as
 * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}.
 *
 * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure
 * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity.
 *
 * [CAUTION]
 * ====
 * Avoid leaving a contract uninitialized.
 *
 * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation
 * contract, which may impact the proxy. To initialize the implementation contract, you can either invoke the
 * initializer manually, or you can include a constructor to automatically mark it as initialized when it is deployed:
 *
 * [.hljs-theme-light.nopadding]
 * ```
 * /// @custom:oz-upgrades-unsafe-allow constructor
 * constructor() initializer {}
 * ```
 * ====
 */
abstract contract Initializable {
    /**
     * @dev Indicates that the contract has been initialized.
     */
    bool private _initialized;

    /**
     * @dev Indicates that the contract is in the process of being initialized.
     */
    bool private _initializing;

    /**
     * @dev Modifier to protect an initializer function from being invoked twice.
     */
    modifier initializer() {
        // If the contract is initializing we ignore whether _initialized is set in order to support multiple
        // inheritance patterns, but we only do this in the context of a constructor, because in other contexts the
        // contract may have been reentered.
        require(_initializing ? _isConstructor() : !_initialized, "Initializable: contract is already initialized");

        bool isTopLevelCall = !_initializing;
        if (isTopLevelCall) {
            _initializing = true;
            _initialized = true;
        }

        _;

        if (isTopLevelCall) {
            _initializing = false;
        }
    }

    /**
     * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the
     * {initializer} modifier, directly or indirectly.
     */
    modifier onlyInitializing() {
        require(_initializing, "Initializable: contract is not initializing");
        _;
    }

    function _isConstructor() private view returns (bool) {
        return !AddressUpgradeable.isContract(address(this));
    }
}

// File: @openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.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 ContextUpgradeable is Initializable {
    function __Context_init() internal onlyInitializing {
        __Context_init_unchained();
    }

    function __Context_init_unchained() internal onlyInitializing {
    }
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
    uint256[50] private __gap;
}

// File: @openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol


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

pragma solidity ^0.8.0;



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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    function __Ownable_init() internal onlyInitializing {
        __Context_init_unchained();
        __Ownable_init_unchained();
    }

    function __Ownable_init_unchained() internal onlyInitializing {
        _transferOwnership(_msgSender());
    }

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

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

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

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

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

// File: @openzeppelin/contracts-upgradeable/token/ERC721/IERC721ReceiverUpgradeable.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts-upgradeable/utils/introspection/IERC165Upgradeable.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts-upgradeable/interfaces/IERC165Upgradeable.sol


// OpenZeppelin Contracts v4.4.1 (interfaces/IERC165.sol)

pragma solidity ^0.8.0;


// File: @openzeppelin/contracts-upgradeable/interfaces/IERC2981Upgradeable.sol


// OpenZeppelin Contracts v4.4.1 (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard
 */
interface IERC2981Upgradeable is IERC165Upgradeable {
    /**
     * @dev Called with the sale price to determine how much royalty is owed and to whom.
     * @param tokenId - the NFT asset queried for royalty information
     * @param salePrice - the sale price of the NFT asset specified by `tokenId`
     * @return receiver - address of who should be sent the royalty payment
     * @return royaltyAmount - the royalty payment amount for `salePrice`
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

// File: @openzeppelin/contracts-upgradeable/utils/introspection/ERC165Upgradeable.sol


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

pragma solidity ^0.8.0;



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

    function __ERC165_init_unchained() internal onlyInitializing {
    }
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165Upgradeable).interfaceId;
    }
    uint256[50] private __gap;
}

// File: @openzeppelin/contracts-upgradeable/token/ERC721/IERC721Upgradeable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts-upgradeable/token/ERC721/extensions/IERC721MetadataUpgradeable.sol


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.sol


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

pragma solidity ^0.8.0;









/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721Upgradeable is Initializable, ContextUpgradeable, ERC165Upgradeable, IERC721Upgradeable, IERC721MetadataUpgradeable {
    using AddressUpgradeable for address;
    using StringsUpgradeable for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    function __ERC721_init(string memory name_, string memory symbol_) internal onlyInitializing {
        __Context_init_unchained();
        __ERC165_init_unchained();
        __ERC721_init_unchained(name_, symbol_);
    }

    function __ERC721_init_unchained(string memory name_, string memory symbol_) internal onlyInitializing {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

// File: gwei-slim-nft-contracts/contracts/base/ERC721Base.sol


pragma solidity 0.8.9;







struct ConfigSettings {
    uint16 royaltyBps;
    string uriBase;
    string uriExtension;
    bool hasTransferHook;
}

/**
    This smart contract adds features and allows for a ownership only by another smart contract as fallback behavior
    while also implementing all normal ERC721 functions as expected
*/
contract ERC721Base is
    ERC721Upgradeable,
    IBaseERC721Interface,
    IERC2981Upgradeable,
    OwnableUpgradeable
{
    using CountersUpgradeable for CountersUpgradeable.Counter;
    // Minted counter for totalSupply()
    CountersUpgradeable.Counter private mintedCounter;

    modifier onlyInternal() {
        require(msg.sender == address(this), "Only internal");
        _;
    }

    /// on-chain record of when this contract was deployed
    uint256 public immutable deployedBlock;

    ConfigSettings public advancedConfig;

    /// Constructor called once when the base contract is deployed
    constructor() {
        // Can be used to verify contract implementation is correct at address
        deployedBlock = block.number;
    }

    /// Initializer that's called when a new child nft is setup
    /// @param newOwner Owner for the new derived nft
    /// @param _name name of NFT contract
    /// @param _symbol symbol of NFT contract
    /// @param settings configuration settings for uri, royalty, and hooks features
    function initialize(
        address newOwner,
        string memory _name,
        string memory _symbol,
        ConfigSettings memory settings
    ) public initializer {
        __ERC721_init(_name, _symbol);
        __Ownable_init();

        advancedConfig = settings;

        transferOwnership(newOwner);
    }

    /// Getter to expose appoval status to root contract
    function isApprovedForAll(address _owner, address operator)
        public
        view
        override
        returns (bool)
    {
        return
            ERC721Upgradeable.isApprovedForAll(_owner, operator) ||
            operator == address(this);
    }

    /// internal getter for approval by all
    /// When isApprovedForAll is overridden, this can be used to call original impl
    function __isApprovedForAll(address _owner, address operator)
        public
        view
        override
        returns (bool)
    {
        return isApprovedForAll(_owner, operator);
    }

    /// Hook that when enabled manually calls _beforeTokenTransfer on
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal override {
        if (advancedConfig.hasTransferHook) {
            (bool success, ) = address(this).delegatecall(
                abi.encodeWithSignature(
                    "_beforeTokenTransfer(address,address,uint256)",
                    from,
                    to,
                    tokenId
                )
            );
            // Raise error again from result if error exists
            assembly {
                switch success
                // delegatecall returns 0 on error.
                case 0 {
                    returndatacopy(0, 0, returndatasize())
                    revert(0, returndatasize())
                }
            }
        }
    }

    /// Internal-only function to update the base uri
    function __setBaseURI(string memory uriBase, string memory uriExtension)
        public
        override
        onlyInternal
    {
        advancedConfig.uriBase = uriBase;
        advancedConfig.uriExtension = uriExtension;
    }

    /// @dev returns the number of minted tokens
    /// uses some extra gas but makes etherscan and users happy so :shrug:
    /// partial erc721enumerable implemntation
    function totalSupply() public view returns (uint256) {
        return mintedCounter.current();
    }

    /**
      Internal-only
      @param to address to send the newly minted NFT to
      @dev This mints one edition to the given address by an allowed minter on the edition instance.
     */
    function __mint(address to, uint256 tokenId)
        external
        override
        onlyInternal
    {
        _mint(to, tokenId);
        mintedCounter.increment();
    }

    /**
        @param tokenId Token ID to burn
        User burn function for token id 
     */
    function burn(uint256 tokenId) public {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "Not allowed");
        _burn(tokenId);
        mintedCounter.decrement();
    }

    /// Internal only
    function __burn(uint256 tokenId) public onlyInternal {
        _burn(tokenId);
        mintedCounter.decrement();
    }

    /**
        Simple override for owner interface.
     */
    function owner()
        public
        view
        override(OwnableUpgradeable)
        returns (address)
    {
        return super.owner();
    }

    /// internal alias for overrides
    function __owner()
        public
        view
        override(IBaseERC721Interface)
        returns (address)
    {
        return owner();
    }

    /// Get royalty information for token
    /// ignored token id to get royalty info. able to override and set per-token royalties
    /// @param _salePrice sales price for token to determine royalty split
    function royaltyInfo(uint256, uint256 _salePrice)
        external
        view
        override
        returns (address receiver, uint256 royaltyAmount)
    {
        // If ownership is revoked, don't set royalties.
        if (owner() == address(0x0)) {
            return (owner(), 0);
        }
        return (owner(), (_salePrice * advancedConfig.royaltyBps) / 10_000);
    }

    /// Default simple token-uri implementation. works for ipfs folders too
    /// @param tokenId token id ot get uri for
    /// @return default uri getter functionality
    function tokenURI(uint256 tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(_exists(tokenId), "No token");

        return
            string(
                abi.encodePacked(
                    advancedConfig.uriBase,
                    StringsUpgradeable.toString(tokenId),
                    advancedConfig.uriExtension
                )
            );
    }

    /// internal base override
    function __tokenURI(uint256 tokenId)
        public
        view
        onlyInternal
        returns (string memory)
    {
        return tokenURI(tokenId);
    }

    /// Exposing token exists check for base contract
    function __exists(uint256 tokenId) external view override returns (bool) {
        return _exists(tokenId);
    }

    /// Getter for approved or owner
    function __isApprovedOrOwner(address spender, uint256 tokenId)
        external
        view
        override
        onlyInternal
        returns (bool)
    {
        return _isApprovedOrOwner(spender, tokenId);
    }

    /// IERC165 getter
    /// @param interfaceId interfaceId bytes4 to check support for
    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721Upgradeable, IERC165Upgradeable)
        returns (bool)
    {
        return
            type(IERC2981Upgradeable).interfaceId == interfaceId ||
            type(IBaseERC721Interface).interfaceId == interfaceId ||
            ERC721Upgradeable.supportsInterface(interfaceId);
    }
}

// File: gwei-slim-nft-contracts/contracts/base/ERC721Delegated.sol


pragma solidity 0.8.9;



contract ERC721Delegated {
    uint256[100000] gap;
    bytes32 internal constant _IMPLEMENTATION_SLOT =
        0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;

    // Reference to base NFT implementation
    function implementation() public view returns (address) {
        return
            StorageSlotUpgradeable.getAddressSlot(_IMPLEMENTATION_SLOT).value;
    }

    function _initImplementation(address _nftImplementation) private {
        StorageSlotUpgradeable
            .getAddressSlot(_IMPLEMENTATION_SLOT)
            .value = _nftImplementation;
    }

    /// Constructor that sets up the
    constructor(
        address _nftImplementation,
        string memory name,
        string memory symbol,
        ConfigSettings memory settings
    ) {
        /// Removed for gas saving reasons, the check below implictly accomplishes this
        // require(
        //     _nftImplementation.supportsInterface(
        //         type(IBaseERC721Interface).interfaceId
        //     )
        // );
        _initImplementation(_nftImplementation);
        (bool success, ) = _nftImplementation.delegatecall(
            abi.encodeWithSignature(
                "initialize(address,string,string,(uint16,string,string,bool))",
                msg.sender,
                name,
                symbol,
                settings
            )
        );
        require(success);
    }

    /// OnlyOwner implemntation that proxies to base ownable contract for info
    modifier onlyOwner() {
        require(msg.sender == base().__owner(), "Not owner");
        _;
    }

    /// Getter to return the base implementation contract to call methods from
    /// Don't expose base contract to parent due to need to call private internal base functions
    function base() private view returns (IBaseERC721Interface) {
        return IBaseERC721Interface(address(this));
    }

    // helpers to mimic Openzeppelin internal functions

    /// Getter for the contract owner
    /// @return address owner address
    function _owner() internal view returns (address) {
        return base().__owner();
    }

    /// Internal burn function, only accessible from within contract
    /// @param id nft id to burn
    function _burn(uint256 id) internal {
        base().__burn(id);
    }

    /// Internal mint function, only accessible from within contract
    /// @param to address to mint NFT to
    /// @param id nft id to mint
    function _mint(address to, uint256 id) internal {
        base().__mint(to, id);
    }

    /// Internal exists function to determine if fn exists
    /// @param id nft id to check if exists
    function _exists(uint256 id) internal view returns (bool) {
        return base().__exists(id);
    }

    /// Internal getter for tokenURI
    /// @param tokenId id of token to get tokenURI for
    function _tokenURI(uint256 tokenId) internal view returns (string memory) {
        return base().__tokenURI(tokenId);
    }

    /// is approved for all getter underlying getter
    /// @param owner to check
    /// @param operator to check
    function _isApprovedForAll(address owner, address operator)
        internal
        view
        returns (bool)
    {
        return base().__isApprovedForAll(owner, operator);
    }

    /// Internal getter for approved or owner for a given operator
    /// @param operator address of operator to check
    /// @param id id of nft to check for
    function _isApprovedOrOwner(address operator, uint256 id)
        internal
        view
        returns (bool)
    {
        return base().__isApprovedOrOwner(operator, id);
    }

    /// Sets the base URI of the contract. Allowed only by parent contract
    /// @param newUri new uri base (http://URI) followed by number string of nft followed by extension string
    /// @param newExtension optional uri extension
    function _setBaseURI(string memory newUri, string memory newExtension)
        internal
    {
        base().__setBaseURI(newUri, newExtension);
    }

    /**
     * @dev Delegates the current call to nftImplementation.
     *
     * This function does not return to its internall call site, it will return directly to the external caller.
     */
    function _fallback() internal virtual {
        address impl = implementation();

        assembly {
            // Copy msg.data. We take full control of memory in this inline assembly
            // block because it will not return to Solidity code. We overwrite the
            // Solidity scratch pad at memory position 0.
            calldatacopy(0, 0, calldatasize())

            // Call the implementation.
            // out and outsize are 0 because we don't know the size yet.
            let result := delegatecall(gas(), impl, 0, calldatasize(), 0, 0)

            // Copy the returned data.
            returndatacopy(0, 0, returndatasize())

            switch result
            // delegatecall returns 0 on error.
            case 0 {
                revert(0, returndatasize())
            }
            default {
                return(0, returndatasize())
            }
        }
    }

    /**
     * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if no other
     * function in the contract matches the call data.
     */
    fallback() external virtual {
        _fallback();
    }

    /**
     * @dev No base NFT functions receive any value
     */
    receive() external payable {
        revert();
    }
}

// File: contracts/mfers.sol



pragma solidity ^0.8.9;






contract DoodleMfers is ERC721Delegated, ReentrancyGuard {
  using Counters for Counters.Counter;

  constructor(address baseFactory, string memory customBaseURI_)
    ERC721Delegated(
      baseFactory,
      "doodle mfer",
      "dmfers",
      ConfigSettings({
        royaltyBps: 0,
        uriBase: customBaseURI_,
        uriExtension: "",
        hasTransferHook: false
      })
    )
  {}

  /** MINTING **/

  uint256 public constant MAX_SUPPLY = 10000;

  uint256 public constant MAX_FREE_SUPPLY = 420;

  uint256 public constant MAX_MULTIMINT = 20;

  uint256 public constant MAX_FREE_MULTIMINT = 5;

  uint256 public constant PRICE = 20000000000000000;

  string extensionURI = ".json";

  Counters.Counter private supplyCounter;

  function mint(uint256 count) public payable nonReentrant {
    require(saleIsActive, "Sale not active");

    require(totalSupply() + count - 1 < MAX_SUPPLY, "Exceeds max supply");

    require(count <= MAX_MULTIMINT, "Mint at most 20 at a time");

    require(
      msg.value >= PRICE * count, "Insufficient payment, 0.02 ETH per item"
    );

    for (uint256 i = 0; i < count; i++) {
      _mint(msg.sender, totalSupply());

      supplyCounter.increment();
    }
  }

  function freeMint(uint256 count) public payable nonReentrant {
    require(saleIsActive, "Sale not active");

    require(totalSupply() + count - 1 < MAX_FREE_SUPPLY, "Exceeds max free supply");

    require(count <= MAX_FREE_MULTIMINT, "Mint at most 5 at a time");

    for (uint256 i = 0; i < count; i++) {
      _mint(msg.sender, totalSupply());

      supplyCounter.increment();
    }
  }

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

  /** ACTIVATION **/

  bool public saleIsActive = true;

  function setSaleIsActive(bool saleIsActive_) external onlyOwner {
    saleIsActive = saleIsActive_;
  }

  /** URI HANDLING **/

  function setBaseURI(string memory customBaseURI_) external onlyOwner {
    _setBaseURI(customBaseURI_, "");
  }

  function setExtensionURI(string memory customExtensionURI_) external onlyOwner {
    extensionURI = customExtensionURI_;
  }

  function tokenURI(uint256 tokenId) public view returns (string memory) {
    return string(abi.encodePacked(_tokenURI(tokenId), extensionURI));
  }

  /** PAYOUT **/

  function withdraw() public nonReentrant onlyOwner {
    uint256 balance = address(this).balance;

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"baseFactory","type":"address"},{"internalType":"string","name":"customBaseURI_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"nonpayable","type":"fallback"},{"inputs":[],"name":"MAX_FREE_MULTIMINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MULTIMINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"customBaseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"customExtensionURI_","type":"string"}],"name":"setExtensionURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"saleIsActive_","type":"bool"}],"name":"setSaleIsActive","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250620186a190805190602001906200005392919062000308565b506001620186a360006101000a81548160ff0219169083151502179055503480156200007e57600080fd5b506040516200261b3803806200261b8339818101604052810190620000a49190620005ba565b816040518060400160405280600b81526020017f646f6f646c65206d6665720000000000000000000000000000000000000000008152506040518060400160405280600681526020017f646d6665727300000000000000000000000000000000000000000000000000008152506040518060800160405280600061ffff168152602001858152602001604051806020016040528060008152508152602001600015158152506200015a846200028060201b60201c565b60008473ffffffffffffffffffffffffffffffffffffffff16338585856040516024016200018c94939291906200078e565b6040516020818303038152906040527fb1a78e3f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506040516200021891906200083d565b600060405180830381855af49150503d806000811462000255576040519150601f19603f3d011682016040523d82523d6000602084013e6200025a565b606091505b50509050806200026957600080fd5b50505050506001620186a0819055505050620008bb565b80620002ba7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b620002fe60201b62000c811760201c565b60000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000819050919050565b828054620003169062000885565b90600052602060002090601f0160209004810192826200033a576000855562000386565b82601f106200035557805160ff191683800117855562000386565b8280016001018555821562000386579182015b828111156200038557825182559160200191906001019062000368565b5b50905062000395919062000399565b5090565b5b80821115620003b45760008160009055506001016200039a565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620003f982620003cc565b9050919050565b6200040b81620003ec565b81146200041757600080fd5b50565b6000815190506200042b8162000400565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000486826200043b565b810181811067ffffffffffffffff82111715620004a857620004a76200044c565b5b80604052505050565b6000620004bd620003b8565b9050620004cb82826200047b565b919050565b600067ffffffffffffffff821115620004ee57620004ed6200044c565b5b620004f9826200043b565b9050602081019050919050565b60005b838110156200052657808201518184015260208101905062000509565b8381111562000536576000848401525b50505050565b6000620005536200054d84620004d0565b620004b1565b90508281526020810184848401111562000572576200057162000436565b5b6200057f84828562000506565b509392505050565b600082601f8301126200059f576200059e62000431565b5b8151620005b18482602086016200053c565b91505092915050565b60008060408385031215620005d457620005d3620003c2565b5b6000620005e4858286016200041a565b925050602083015167ffffffffffffffff811115620006085762000607620003c7565b5b620006168582860162000587565b9150509250929050565b6200062b81620003ec565b82525050565b600081519050919050565b600082825260208201905092915050565b60006200065a8262000631565b6200066681856200063c565b93506200067881856020860162000506565b62000683816200043b565b840191505092915050565b600061ffff82169050919050565b620006a7816200068e565b82525050565b600082825260208201905092915050565b6000620006cb8262000631565b620006d78185620006ad565b9350620006e981856020860162000506565b620006f4816200043b565b840191505092915050565b60008115159050919050565b6200071681620006ff565b82525050565b60006080830160008301516200073660008601826200069c565b5060208301518482036020860152620007508282620006be565b915050604083015184820360408601526200076c8282620006be565b91505060608301516200078360608601826200070b565b508091505092915050565b6000608082019050620007a5600083018762000620565b8181036020830152620007b981866200064d565b90508181036040830152620007cf81856200064d565b90508181036060830152620007e581846200071c565b905095945050505050565b600081519050919050565b600081905092915050565b60006200081382620007f0565b6200081f8185620007fb565b93506200083181856020860162000506565b80840191505092915050565b60006200084b828462000806565b915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200089e57607f821691505b60208210811415620008b557620008b462000856565b5b50919050565b611d5080620008cb6000396000f3fe6080604052600436106100ec5760003560e01c80635c60da1b1161008a578063b8fc105111610059578063b8fc1051146102b0578063c3bb8c64146102db578063c87b56dd14610304578063eb8d244414610341576100f6565b80635c60da1b146102225780637c928fe91461024d5780638d859f3e14610269578063a0712d6814610294576100f6565b80632f164207116100c65780632f1642071461018c57806332cb6b0c146101b75780633ccfd60b146101e257806355f804b3146101f9576100f6565b806302c889891461010d57806302ddb65b1461013657806318160ddd14610161576100f6565b366100f657600080fd5b34801561010257600080fd5b5061010b61036c565b005b34801561011957600080fd5b50610134600480360381019061012f91906110b4565b61039e565b005b34801561014257600080fd5b5061014b6104af565b60405161015891906110fa565b60405180910390f35b34801561016d57600080fd5b506101766104b5565b60405161018391906110fa565b60405180910390f35b34801561019857600080fd5b506101a16104c8565b6040516101ae91906110fa565b60405180910390f35b3480156101c357600080fd5b506101cc6104cd565b6040516101d991906110fa565b60405180910390f35b3480156101ee57600080fd5b506101f76104d3565b005b34801561020557600080fd5b50610220600480360381019061021b919061125b565b61063a565b005b34801561022e57600080fd5b50610237610748565b60405161024491906112e5565b60405180910390f35b6102676004803603810190610262919061132c565b61079f565b005b34801561027557600080fd5b5061027e610931565b60405161028b91906110fa565b60405180910390f35b6102ae60048036038101906102a9919061132c565b61093c565b005b3480156102bc57600080fd5b506102c5610b23565b6040516102d291906110fa565b60405180910390f35b3480156102e757600080fd5b5061030260048036038101906102fd919061125b565b610b28565b005b34801561031057600080fd5b5061032b6004803603810190610326919061132c565b610c36565b60405161033891906113e1565b60405180910390f35b34801561034d57600080fd5b50610356610c6c565b6040516103639190611412565b60405180910390f35b6000610376610748565b90503660008037600080366000845af43d6000803e8060008114610399573d6000f35b3d6000fd5b6103a6610c8b565b73ffffffffffffffffffffffffffffffffffffffff166313effa0f6040518163ffffffff1660e01b815260040160206040518083038186803b1580156103eb57600080fd5b505afa1580156103ff573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104239190611459565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610490576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610487906114d2565b60405180910390fd5b80620186a360006101000a81548160ff02191690831515021790555050565b6101a481565b60006104c3620186a2610c93565b905090565b600581565b61271081565b6002620186a054141561051b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105129061153e565b60405180910390fd5b6002620186a08190555061052d610c8b565b73ffffffffffffffffffffffffffffffffffffffff166313effa0f6040518163ffffffff1660e01b815260040160206040518083038186803b15801561057257600080fd5b505afa158015610586573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105aa9190611459565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060e906114d2565b60405180910390fd5b600047905061062d610627610ca1565b82610d2d565b506001620186a081905550565b610642610c8b565b73ffffffffffffffffffffffffffffffffffffffff166313effa0f6040518163ffffffff1660e01b815260040160206040518083038186803b15801561068757600080fd5b505afa15801561069b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106bf9190611459565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461072c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610723906114d2565b60405180910390fd5b6107458160405180602001604052806000815250610e21565b50565b60006107767f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b610c81565b60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6002620186a05414156107e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107de9061153e565b60405180910390fd5b6002620186a081905550620186a360009054906101000a900460ff16610842576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610839906115aa565b60405180910390fd5b6101a46001826108506104b5565b61085a91906115f9565b610864919061164f565b106108a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089b906116cf565b60405180910390fd5b60058111156108e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108df9061173b565b60405180910390fd5b60005b8181101561092357610904336108ff6104b5565b610e99565b610910620186a2610f11565b808061091b9061175b565b9150506108eb565b506001620186a08190555050565b66470de4df82000081565b6002620186a0541415610984576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097b9061153e565b60405180910390fd5b6002620186a081905550620186a360009054906101000a900460ff166109df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d6906115aa565b60405180910390fd5b6127106001826109ed6104b5565b6109f791906115f9565b610a01919061164f565b10610a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a38906117f0565b60405180910390fd5b6014811115610a85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7c9061185c565b60405180910390fd5b8066470de4df820000610a98919061187c565b341015610ada576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad190611948565b60405180910390fd5b60005b81811015610b1557610af633610af16104b5565b610e99565b610b02620186a2610f11565b8080610b0d9061175b565b915050610add565b506001620186a08190555050565b601481565b610b30610c8b565b73ffffffffffffffffffffffffffffffffffffffff166313effa0f6040518163ffffffff1660e01b815260040160206040518083038186803b158015610b7557600080fd5b505afa158015610b89573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bad9190611459565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c11906114d2565b60405180910390fd5b80620186a19080519060200190610c32929190610fc5565b5050565b6060610c4182610f27565b620186a1604051602001610c56929190611a99565b6040516020818303038152906040529050919050565b620186a360009054906101000a900460ff1681565b6000819050919050565b600030905090565b600081600001549050919050565b6000610cab610c8b565b73ffffffffffffffffffffffffffffffffffffffff166313effa0f6040518163ffffffff1660e01b815260040160206040518083038186803b158015610cf057600080fd5b505afa158015610d04573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d289190611459565b905090565b80471015610d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6790611b09565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051610d9690611b5a565b60006040518083038185875af1925050503d8060008114610dd3576040519150601f19603f3d011682016040523d82523d6000602084013e610dd8565b606091505b5050905080610e1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1390611be1565b60405180910390fd5b505050565b610e29610c8b565b73ffffffffffffffffffffffffffffffffffffffff166301278b0283836040518363ffffffff1660e01b8152600401610e63929190611c01565b600060405180830381600087803b158015610e7d57600080fd5b505af1158015610e91573d6000803e3d6000fd5b505050505050565b610ea1610c8b565b73ffffffffffffffffffffffffffffffffffffffff16633dc8ded783836040518363ffffffff1660e01b8152600401610edb929190611c38565b600060405180830381600087803b158015610ef557600080fd5b505af1158015610f09573d6000803e3d6000fd5b505050505050565b6001816000016000828254019250508190555050565b6060610f31610c8b565b73ffffffffffffffffffffffffffffffffffffffff1663f5dbba9d836040518263ffffffff1660e01b8152600401610f6991906110fa565b60006040518083038186803b158015610f8157600080fd5b505afa158015610f95573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190610fbe9190611cd1565b9050919050565b828054610fd1906119d3565b90600052602060002090601f016020900481019282610ff3576000855561103a565b82601f1061100c57805160ff191683800117855561103a565b8280016001018555821561103a579182015b8281111561103957825182559160200191906001019061101e565b5b509050611047919061104b565b5090565b5b8082111561106457600081600090555060010161104c565b5090565b6000604051905090565b600080fd5b600080fd5b60008115159050919050565b6110918161107c565b811461109c57600080fd5b50565b6000813590506110ae81611088565b92915050565b6000602082840312156110ca576110c9611072565b5b60006110d88482850161109f565b91505092915050565b6000819050919050565b6110f4816110e1565b82525050565b600060208201905061110f60008301846110eb565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6111688261111f565b810181811067ffffffffffffffff8211171561118757611186611130565b5b80604052505050565b600061119a611068565b90506111a6828261115f565b919050565b600067ffffffffffffffff8211156111c6576111c5611130565b5b6111cf8261111f565b9050602081019050919050565b82818337600083830152505050565b60006111fe6111f9846111ab565b611190565b90508281526020810184848401111561121a5761121961111a565b5b6112258482856111dc565b509392505050565b600082601f83011261124257611241611115565b5b81356112528482602086016111eb565b91505092915050565b60006020828403121561127157611270611072565b5b600082013567ffffffffffffffff81111561128f5761128e611077565b5b61129b8482850161122d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112cf826112a4565b9050919050565b6112df816112c4565b82525050565b60006020820190506112fa60008301846112d6565b92915050565b611309816110e1565b811461131457600080fd5b50565b60008135905061132681611300565b92915050565b60006020828403121561134257611341611072565b5b600061135084828501611317565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611393578082015181840152602081019050611378565b838111156113a2576000848401525b50505050565b60006113b382611359565b6113bd8185611364565b93506113cd818560208601611375565b6113d68161111f565b840191505092915050565b600060208201905081810360008301526113fb81846113a8565b905092915050565b61140c8161107c565b82525050565b60006020820190506114276000830184611403565b92915050565b611436816112c4565b811461144157600080fd5b50565b6000815190506114538161142d565b92915050565b60006020828403121561146f5761146e611072565b5b600061147d84828501611444565b91505092915050565b7f4e6f74206f776e65720000000000000000000000000000000000000000000000600082015250565b60006114bc600983611364565b91506114c782611486565b602082019050919050565b600060208201905081810360008301526114eb816114af565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000611528601f83611364565b9150611533826114f2565b602082019050919050565b600060208201905081810360008301526115578161151b565b9050919050565b7f53616c65206e6f74206163746976650000000000000000000000000000000000600082015250565b6000611594600f83611364565b915061159f8261155e565b602082019050919050565b600060208201905081810360008301526115c381611587565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611604826110e1565b915061160f836110e1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611644576116436115ca565b5b828201905092915050565b600061165a826110e1565b9150611665836110e1565b925082821015611678576116776115ca565b5b828203905092915050565b7f45786365656473206d6178206672656520737570706c79000000000000000000600082015250565b60006116b9601783611364565b91506116c482611683565b602082019050919050565b600060208201905081810360008301526116e8816116ac565b9050919050565b7f4d696e74206174206d6f7374203520617420612074696d650000000000000000600082015250565b6000611725601883611364565b9150611730826116ef565b602082019050919050565b6000602082019050818103600083015261175481611718565b9050919050565b6000611766826110e1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415611799576117986115ca565b5b600182019050919050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b60006117da601283611364565b91506117e5826117a4565b602082019050919050565b60006020820190508181036000830152611809816117cd565b9050919050565b7f4d696e74206174206d6f737420323020617420612074696d6500000000000000600082015250565b6000611846601983611364565b915061185182611810565b602082019050919050565b6000602082019050818103600083015261187581611839565b9050919050565b6000611887826110e1565b9150611892836110e1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156118cb576118ca6115ca565b5b828202905092915050565b7f496e73756666696369656e74207061796d656e742c20302e303220455448207060008201527f6572206974656d00000000000000000000000000000000000000000000000000602082015250565b6000611932602783611364565b915061193d826118d6565b604082019050919050565b6000602082019050818103600083015261196181611925565b9050919050565b600081905092915050565b600061197e82611359565b6119888185611968565b9350611998818560208601611375565b80840191505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806119eb57607f821691505b602082108114156119ff576119fe6119a4565b5b50919050565b60008190508160005260206000209050919050565b60008154611a27816119d3565b611a318186611968565b94506001821660008114611a4c5760018114611a5d57611a90565b60ff19831686528186019350611a90565b611a6685611a05565b60005b83811015611a8857815481890152600182019150602081019050611a69565b838801955050505b50505092915050565b6000611aa58285611973565b9150611ab18284611a1a565b91508190509392505050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000611af3601d83611364565b9150611afe82611abd565b602082019050919050565b60006020820190508181036000830152611b2281611ae6565b9050919050565b600081905092915050565b50565b6000611b44600083611b29565b9150611b4f82611b34565b600082019050919050565b6000611b6582611b37565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000611bcb603a83611364565b9150611bd682611b6f565b604082019050919050565b60006020820190508181036000830152611bfa81611bbe565b9050919050565b60006040820190508181036000830152611c1b81856113a8565b90508181036020830152611c2f81846113a8565b90509392505050565b6000604082019050611c4d60008301856112d6565b611c5a60208301846110eb565b9392505050565b6000611c74611c6f846111ab565b611190565b905082815260208101848484011115611c9057611c8f61111a565b5b611c9b848285611375565b509392505050565b600082601f830112611cb857611cb7611115565b5b8151611cc8848260208601611c61565b91505092915050565b600060208284031215611ce757611ce6611072565b5b600082015167ffffffffffffffff811115611d0557611d04611077565b5b611d1184828501611ca3565b9150509291505056fea26469706673582212202431887f64dab92a44216d88e436127e7cb1d04da7b8547d84ba42491dee8bca64736f6c6343000809003300000000000000000000000043955024b1985e2b933a59021500ae5f55b040910000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000c697066733a2f2f74656d702f0000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106100ec5760003560e01c80635c60da1b1161008a578063b8fc105111610059578063b8fc1051146102b0578063c3bb8c64146102db578063c87b56dd14610304578063eb8d244414610341576100f6565b80635c60da1b146102225780637c928fe91461024d5780638d859f3e14610269578063a0712d6814610294576100f6565b80632f164207116100c65780632f1642071461018c57806332cb6b0c146101b75780633ccfd60b146101e257806355f804b3146101f9576100f6565b806302c889891461010d57806302ddb65b1461013657806318160ddd14610161576100f6565b366100f657600080fd5b34801561010257600080fd5b5061010b61036c565b005b34801561011957600080fd5b50610134600480360381019061012f91906110b4565b61039e565b005b34801561014257600080fd5b5061014b6104af565b60405161015891906110fa565b60405180910390f35b34801561016d57600080fd5b506101766104b5565b60405161018391906110fa565b60405180910390f35b34801561019857600080fd5b506101a16104c8565b6040516101ae91906110fa565b60405180910390f35b3480156101c357600080fd5b506101cc6104cd565b6040516101d991906110fa565b60405180910390f35b3480156101ee57600080fd5b506101f76104d3565b005b34801561020557600080fd5b50610220600480360381019061021b919061125b565b61063a565b005b34801561022e57600080fd5b50610237610748565b60405161024491906112e5565b60405180910390f35b6102676004803603810190610262919061132c565b61079f565b005b34801561027557600080fd5b5061027e610931565b60405161028b91906110fa565b60405180910390f35b6102ae60048036038101906102a9919061132c565b61093c565b005b3480156102bc57600080fd5b506102c5610b23565b6040516102d291906110fa565b60405180910390f35b3480156102e757600080fd5b5061030260048036038101906102fd919061125b565b610b28565b005b34801561031057600080fd5b5061032b6004803603810190610326919061132c565b610c36565b60405161033891906113e1565b60405180910390f35b34801561034d57600080fd5b50610356610c6c565b6040516103639190611412565b60405180910390f35b6000610376610748565b90503660008037600080366000845af43d6000803e8060008114610399573d6000f35b3d6000fd5b6103a6610c8b565b73ffffffffffffffffffffffffffffffffffffffff166313effa0f6040518163ffffffff1660e01b815260040160206040518083038186803b1580156103eb57600080fd5b505afa1580156103ff573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104239190611459565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610490576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610487906114d2565b60405180910390fd5b80620186a360006101000a81548160ff02191690831515021790555050565b6101a481565b60006104c3620186a2610c93565b905090565b600581565b61271081565b6002620186a054141561051b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105129061153e565b60405180910390fd5b6002620186a08190555061052d610c8b565b73ffffffffffffffffffffffffffffffffffffffff166313effa0f6040518163ffffffff1660e01b815260040160206040518083038186803b15801561057257600080fd5b505afa158015610586573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105aa9190611459565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060e906114d2565b60405180910390fd5b600047905061062d610627610ca1565b82610d2d565b506001620186a081905550565b610642610c8b565b73ffffffffffffffffffffffffffffffffffffffff166313effa0f6040518163ffffffff1660e01b815260040160206040518083038186803b15801561068757600080fd5b505afa15801561069b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106bf9190611459565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461072c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610723906114d2565b60405180910390fd5b6107458160405180602001604052806000815250610e21565b50565b60006107767f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b610c81565b60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6002620186a05414156107e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107de9061153e565b60405180910390fd5b6002620186a081905550620186a360009054906101000a900460ff16610842576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610839906115aa565b60405180910390fd5b6101a46001826108506104b5565b61085a91906115f9565b610864919061164f565b106108a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089b906116cf565b60405180910390fd5b60058111156108e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108df9061173b565b60405180910390fd5b60005b8181101561092357610904336108ff6104b5565b610e99565b610910620186a2610f11565b808061091b9061175b565b9150506108eb565b506001620186a08190555050565b66470de4df82000081565b6002620186a0541415610984576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097b9061153e565b60405180910390fd5b6002620186a081905550620186a360009054906101000a900460ff166109df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d6906115aa565b60405180910390fd5b6127106001826109ed6104b5565b6109f791906115f9565b610a01919061164f565b10610a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a38906117f0565b60405180910390fd5b6014811115610a85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7c9061185c565b60405180910390fd5b8066470de4df820000610a98919061187c565b341015610ada576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad190611948565b60405180910390fd5b60005b81811015610b1557610af633610af16104b5565b610e99565b610b02620186a2610f11565b8080610b0d9061175b565b915050610add565b506001620186a08190555050565b601481565b610b30610c8b565b73ffffffffffffffffffffffffffffffffffffffff166313effa0f6040518163ffffffff1660e01b815260040160206040518083038186803b158015610b7557600080fd5b505afa158015610b89573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bad9190611459565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c11906114d2565b60405180910390fd5b80620186a19080519060200190610c32929190610fc5565b5050565b6060610c4182610f27565b620186a1604051602001610c56929190611a99565b6040516020818303038152906040529050919050565b620186a360009054906101000a900460ff1681565b6000819050919050565b600030905090565b600081600001549050919050565b6000610cab610c8b565b73ffffffffffffffffffffffffffffffffffffffff166313effa0f6040518163ffffffff1660e01b815260040160206040518083038186803b158015610cf057600080fd5b505afa158015610d04573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d289190611459565b905090565b80471015610d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6790611b09565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051610d9690611b5a565b60006040518083038185875af1925050503d8060008114610dd3576040519150601f19603f3d011682016040523d82523d6000602084013e610dd8565b606091505b5050905080610e1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1390611be1565b60405180910390fd5b505050565b610e29610c8b565b73ffffffffffffffffffffffffffffffffffffffff166301278b0283836040518363ffffffff1660e01b8152600401610e63929190611c01565b600060405180830381600087803b158015610e7d57600080fd5b505af1158015610e91573d6000803e3d6000fd5b505050505050565b610ea1610c8b565b73ffffffffffffffffffffffffffffffffffffffff16633dc8ded783836040518363ffffffff1660e01b8152600401610edb929190611c38565b600060405180830381600087803b158015610ef557600080fd5b505af1158015610f09573d6000803e3d6000fd5b505050505050565b6001816000016000828254019250508190555050565b6060610f31610c8b565b73ffffffffffffffffffffffffffffffffffffffff1663f5dbba9d836040518263ffffffff1660e01b8152600401610f6991906110fa565b60006040518083038186803b158015610f8157600080fd5b505afa158015610f95573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190610fbe9190611cd1565b9050919050565b828054610fd1906119d3565b90600052602060002090601f016020900481019282610ff3576000855561103a565b82601f1061100c57805160ff191683800117855561103a565b8280016001018555821561103a579182015b8281111561103957825182559160200191906001019061101e565b5b509050611047919061104b565b5090565b5b8082111561106457600081600090555060010161104c565b5090565b6000604051905090565b600080fd5b600080fd5b60008115159050919050565b6110918161107c565b811461109c57600080fd5b50565b6000813590506110ae81611088565b92915050565b6000602082840312156110ca576110c9611072565b5b60006110d88482850161109f565b91505092915050565b6000819050919050565b6110f4816110e1565b82525050565b600060208201905061110f60008301846110eb565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6111688261111f565b810181811067ffffffffffffffff8211171561118757611186611130565b5b80604052505050565b600061119a611068565b90506111a6828261115f565b919050565b600067ffffffffffffffff8211156111c6576111c5611130565b5b6111cf8261111f565b9050602081019050919050565b82818337600083830152505050565b60006111fe6111f9846111ab565b611190565b90508281526020810184848401111561121a5761121961111a565b5b6112258482856111dc565b509392505050565b600082601f83011261124257611241611115565b5b81356112528482602086016111eb565b91505092915050565b60006020828403121561127157611270611072565b5b600082013567ffffffffffffffff81111561128f5761128e611077565b5b61129b8482850161122d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006112cf826112a4565b9050919050565b6112df816112c4565b82525050565b60006020820190506112fa60008301846112d6565b92915050565b611309816110e1565b811461131457600080fd5b50565b60008135905061132681611300565b92915050565b60006020828403121561134257611341611072565b5b600061135084828501611317565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611393578082015181840152602081019050611378565b838111156113a2576000848401525b50505050565b60006113b382611359565b6113bd8185611364565b93506113cd818560208601611375565b6113d68161111f565b840191505092915050565b600060208201905081810360008301526113fb81846113a8565b905092915050565b61140c8161107c565b82525050565b60006020820190506114276000830184611403565b92915050565b611436816112c4565b811461144157600080fd5b50565b6000815190506114538161142d565b92915050565b60006020828403121561146f5761146e611072565b5b600061147d84828501611444565b91505092915050565b7f4e6f74206f776e65720000000000000000000000000000000000000000000000600082015250565b60006114bc600983611364565b91506114c782611486565b602082019050919050565b600060208201905081810360008301526114eb816114af565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000611528601f83611364565b9150611533826114f2565b602082019050919050565b600060208201905081810360008301526115578161151b565b9050919050565b7f53616c65206e6f74206163746976650000000000000000000000000000000000600082015250565b6000611594600f83611364565b915061159f8261155e565b602082019050919050565b600060208201905081810360008301526115c381611587565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611604826110e1565b915061160f836110e1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611644576116436115ca565b5b828201905092915050565b600061165a826110e1565b9150611665836110e1565b925082821015611678576116776115ca565b5b828203905092915050565b7f45786365656473206d6178206672656520737570706c79000000000000000000600082015250565b60006116b9601783611364565b91506116c482611683565b602082019050919050565b600060208201905081810360008301526116e8816116ac565b9050919050565b7f4d696e74206174206d6f7374203520617420612074696d650000000000000000600082015250565b6000611725601883611364565b9150611730826116ef565b602082019050919050565b6000602082019050818103600083015261175481611718565b9050919050565b6000611766826110e1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415611799576117986115ca565b5b600182019050919050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b60006117da601283611364565b91506117e5826117a4565b602082019050919050565b60006020820190508181036000830152611809816117cd565b9050919050565b7f4d696e74206174206d6f737420323020617420612074696d6500000000000000600082015250565b6000611846601983611364565b915061185182611810565b602082019050919050565b6000602082019050818103600083015261187581611839565b9050919050565b6000611887826110e1565b9150611892836110e1565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156118cb576118ca6115ca565b5b828202905092915050565b7f496e73756666696369656e74207061796d656e742c20302e303220455448207060008201527f6572206974656d00000000000000000000000000000000000000000000000000602082015250565b6000611932602783611364565b915061193d826118d6565b604082019050919050565b6000602082019050818103600083015261196181611925565b9050919050565b600081905092915050565b600061197e82611359565b6119888185611968565b9350611998818560208601611375565b80840191505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806119eb57607f821691505b602082108114156119ff576119fe6119a4565b5b50919050565b60008190508160005260206000209050919050565b60008154611a27816119d3565b611a318186611968565b94506001821660008114611a4c5760018114611a5d57611a90565b60ff19831686528186019350611a90565b611a6685611a05565b60005b83811015611a8857815481890152600182019150602081019050611a69565b838801955050505b50505092915050565b6000611aa58285611973565b9150611ab18284611a1a565b91508190509392505050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000611af3601d83611364565b9150611afe82611abd565b602082019050919050565b60006020820190508181036000830152611b2281611ae6565b9050919050565b600081905092915050565b50565b6000611b44600083611b29565b9150611b4f82611b34565b600082019050919050565b6000611b6582611b37565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000611bcb603a83611364565b9150611bd682611b6f565b604082019050919050565b60006020820190508181036000830152611bfa81611bbe565b9050919050565b60006040820190508181036000830152611c1b81856113a8565b90508181036020830152611c2f81846113a8565b90509392505050565b6000604082019050611c4d60008301856112d6565b611c5a60208301846110eb565b9392505050565b6000611c74611c6f846111ab565b611190565b905082815260208101848484011115611c9057611c8f61111a565b5b611c9b848285611375565b509392505050565b600082601f830112611cb857611cb7611115565b5b8151611cc8848260208601611c61565b91505092915050565b600060208284031215611ce757611ce6611072565b5b600082015167ffffffffffffffff811115611d0557611d04611077565b5b611d1184828501611ca3565b9150509291505056fea26469706673582212202431887f64dab92a44216d88e436127e7cb1d04da7b8547d84ba42491dee8bca64736f6c63430008090033

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

00000000000000000000000043955024b1985e2b933a59021500ae5f55b040910000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000c697066733a2f2f74656d702f0000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseFactory (address): 0x43955024b1985E2b933A59021500aE5f55b04091
Arg [1] : customBaseURI_ (string): ipfs://temp/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 00000000000000000000000043955024b1985e2b933a59021500ae5f55b04091
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [3] : 697066733a2f2f74656d702f0000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

72905:2567:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72809:8;;;72905:2567;;;;;;;;;;;72673:11;:9;:11::i;:::-;72905:2567;74750:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73392:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74586:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73493:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73343:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75313:156;;;;;;;;;;;;;:::i;:::-;;74887:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67390:160;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74176:404;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73546:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73683:487;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73444:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;75006:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;75138:149;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;74712:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71501:930;71550:12;71565:16;:14;:16::i;:::-;71550:31;;71866:14;71863:1;71860;71847:34;72074:1;72071;72055:14;72052:1;72046:4;72039:5;72026:50;72153:16;72150:1;72147;72132:38;72193:6;72267:1;72262:68;;;;72381:16;72378:1;72371:27;72262:68;72298:16;72295:1;72288:27;74750:105;68753:6;:4;:6::i;:::-;:14;;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;68739:30;;:10;:30;;;68731:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;74836:13:::1;74821:12;;:28;;;;;;;;;;;;;;;;;;74750:105:::0;:::o;73392:45::-;73434:3;73392:45;:::o;74586:96::-;74630:7;74653:23;:13;:21;:23::i;:::-;74646:30;;74586:96;:::o;73493:46::-;73538:1;73493:46;:::o;73343:42::-;73380:5;73343:42;:::o;75313:156::-;11428:1;12026:7;;:19;;12018:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;11428:1;12159:7;:18;;;;68753:6:::1;:4;:6::i;:::-;:14;;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;68739:30;;:10;:30;;;68731:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;75370:15:::2;75388:21;75370:39;;75418:45;75444:8;:6;:8::i;:::-;75455:7;75418:17;:45::i;:::-;75363:106;11384:1:::0;12338:7;:22;;;;75313:156::o;74887:113::-;68753:6;:4;:6::i;:::-;:14;;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;68739:30;;:10;:30;;;68731:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;74963:31:::1;74975:14;74963:31;;;;;;;;;;;::::0;:11:::1;:31::i;:::-;74887:113:::0;:::o;67390:160::-;67437:7;67477:59;67270:66;67515:20;;67477:37;:59::i;:::-;:65;;;;;;;;;;;;67457:85;;67390:160;:::o;74176:404::-;11428:1;12026:7;;:19;;12018:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;11428:1;12159:7;:18;;;;74252:12:::1;;;;;;;;;;;74244:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;73434:3;74325:1;74317:5;74301:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:25;;;;:::i;:::-;:43;74293:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;73538:1;74389:5;:27;;74381:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;74459:9;74454:121;74478:5;74474:1;:9;74454:121;;;74499:32;74505:10;74517:13;:11;:13::i;:::-;74499:5;:32::i;:::-;74542:25;:13;:23;:25::i;:::-;74485:3;;;;;:::i;:::-;;;;74454:121;;;;11384:1:::0;12338:7;:22;;;;74176:404;:::o;73546:49::-;73578:17;73546:49;:::o;73683:487::-;11428:1;12026:7;;:19;;12018:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;11428:1;12159:7;:18;;;;73755:12:::1;;;;;;;;;;;73747:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;73380:5;73828:1;73820:5;73804:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:25;;;;:::i;:::-;:38;73796:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;73484:2;73882:5;:22;;73874:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;73980:5;73578:17;73972:13;;;;:::i;:::-;73959:9;:26;;73943:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;74049:9;74044:121;74068:5;74064:1;:9;74044:121;;;74089:32;74095:10;74107:13;:11;:13::i;:::-;74089:5;:32::i;:::-;74132:25;:13;:23;:25::i;:::-;74075:3;;;;;:::i;:::-;;;;74044:121;;;;11384:1:::0;12338:7;:22;;;;73683:487;:::o;73444:42::-;73484:2;73444:42;:::o;75006:126::-;68753:6;:4;:6::i;:::-;:14;;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;68739:30;;:10;:30;;;68731:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;75107:19:::1;75092:12;:34;;;;;;;;;;;;:::i;:::-;;75006:126:::0;:::o;75138:149::-;75194:13;75247:18;75257:7;75247:9;:18::i;:::-;75267:12;75230:50;;;;;;;;;:::i;:::-;;;;;;;;;;;;;75216:65;;75138:149;;;:::o;74712:31::-;;;;;;;;;;;;;:::o;14086:151::-;14147:21;14215:4;14205:14;;14086:151;;;:::o;68989:121::-;69027:20;69096:4;69060:42;;68989:121;:::o;9023:114::-;9088:7;9115;:14;;;9108:21;;9023:114;;;:::o;69255:92::-;69296:7;69323:6;:4;:6::i;:::-;:14;;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;69316:23;;69255:92;:::o;2142:317::-;2257:6;2232:21;:31;;2224:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2311:12;2329:9;:14;;2351:6;2329:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2310:52;;;2381:7;2373:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;2213:246;2142:317;;:::o;71137:154::-;71242:6;:4;:6::i;:::-;:19;;;71262:6;71270:12;71242:41;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;71137:154;;:::o;69685:88::-;69744:6;:4;:6::i;:::-;:13;;;69758:2;69762;69744:21;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69685:88;;:::o;9145:127::-;9252:1;9234:7;:14;;;:19;;;;;;;;;;;9145:127;:::o;70091:126::-;70150:13;70183:6;:4;:6::i;:::-;:17;;;70201:7;70183:26;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;70176:33;;70091:126;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:90;368:7;411:5;404:13;397:21;386:32;;334:90;;;:::o;430:116::-;500:21;515:5;500:21;:::i;:::-;493:5;490:32;480:60;;536:1;533;526:12;480:60;430:116;:::o;552:133::-;595:5;633:6;620:20;611:29;;649:30;673:5;649:30;:::i;:::-;552:133;;;;:::o;691:323::-;747:6;796:2;784:9;775:7;771:23;767:32;764:119;;;802:79;;:::i;:::-;764:119;922:1;947:50;989:7;980:6;969:9;965:22;947:50;:::i;:::-;937:60;;893:114;691:323;;;;:::o;1020:77::-;1057:7;1086:5;1075:16;;1020:77;;;:::o;1103:118::-;1190:24;1208:5;1190:24;:::i;:::-;1185:3;1178:37;1103:118;;:::o;1227:222::-;1320:4;1358:2;1347:9;1343:18;1335:26;;1371:71;1439:1;1428:9;1424:17;1415:6;1371:71;:::i;:::-;1227:222;;;;:::o;1455:117::-;1564:1;1561;1554:12;1578:117;1687:1;1684;1677:12;1701:102;1742:6;1793:2;1789:7;1784:2;1777:5;1773:14;1769:28;1759:38;;1701:102;;;:::o;1809:180::-;1857:77;1854:1;1847:88;1954:4;1951:1;1944:15;1978:4;1975:1;1968:15;1995:281;2078:27;2100:4;2078:27;:::i;:::-;2070:6;2066:40;2208:6;2196:10;2193:22;2172:18;2160:10;2157:34;2154:62;2151:88;;;2219:18;;:::i;:::-;2151:88;2259:10;2255:2;2248:22;2038:238;1995:281;;:::o;2282:129::-;2316:6;2343:20;;:::i;:::-;2333:30;;2372:33;2400:4;2392:6;2372:33;:::i;:::-;2282:129;;;:::o;2417:308::-;2479:4;2569:18;2561:6;2558:30;2555:56;;;2591:18;;:::i;:::-;2555:56;2629:29;2651:6;2629:29;:::i;:::-;2621:37;;2713:4;2707;2703:15;2695:23;;2417:308;;;:::o;2731:154::-;2815:6;2810:3;2805;2792:30;2877:1;2868:6;2863:3;2859:16;2852:27;2731:154;;;:::o;2891:412::-;2969:5;2994:66;3010:49;3052:6;3010:49;:::i;:::-;2994:66;:::i;:::-;2985:75;;3083:6;3076:5;3069:21;3121:4;3114:5;3110:16;3159:3;3150:6;3145:3;3141:16;3138:25;3135:112;;;3166:79;;:::i;:::-;3135:112;3256:41;3290:6;3285:3;3280;3256:41;:::i;:::-;2975:328;2891:412;;;;;:::o;3323:340::-;3379:5;3428:3;3421:4;3413:6;3409:17;3405:27;3395:122;;3436:79;;:::i;:::-;3395:122;3553:6;3540:20;3578:79;3653:3;3645:6;3638:4;3630:6;3626:17;3578:79;:::i;:::-;3569:88;;3385:278;3323:340;;;;:::o;3669:509::-;3738:6;3787:2;3775:9;3766:7;3762:23;3758:32;3755:119;;;3793:79;;:::i;:::-;3755:119;3941:1;3930:9;3926:17;3913:31;3971:18;3963:6;3960:30;3957:117;;;3993:79;;:::i;:::-;3957:117;4098:63;4153:7;4144:6;4133:9;4129:22;4098:63;:::i;:::-;4088:73;;3884:287;3669:509;;;;:::o;4184:126::-;4221:7;4261:42;4254:5;4250:54;4239:65;;4184:126;;;:::o;4316:96::-;4353:7;4382:24;4400:5;4382:24;:::i;:::-;4371:35;;4316:96;;;:::o;4418:118::-;4505:24;4523:5;4505:24;:::i;:::-;4500:3;4493:37;4418:118;;:::o;4542:222::-;4635:4;4673:2;4662:9;4658:18;4650:26;;4686:71;4754:1;4743:9;4739:17;4730:6;4686:71;:::i;:::-;4542:222;;;;:::o;4770:122::-;4843:24;4861:5;4843:24;:::i;:::-;4836:5;4833:35;4823:63;;4882:1;4879;4872:12;4823:63;4770:122;:::o;4898:139::-;4944:5;4982:6;4969:20;4960:29;;4998:33;5025:5;4998:33;:::i;:::-;4898:139;;;;:::o;5043:329::-;5102:6;5151:2;5139:9;5130:7;5126:23;5122:32;5119:119;;;5157:79;;:::i;:::-;5119:119;5277:1;5302:53;5347:7;5338:6;5327:9;5323:22;5302:53;:::i;:::-;5292:63;;5248:117;5043:329;;;;:::o;5378:99::-;5430:6;5464:5;5458:12;5448:22;;5378:99;;;:::o;5483:169::-;5567:11;5601:6;5596:3;5589:19;5641:4;5636:3;5632:14;5617:29;;5483:169;;;;:::o;5658:307::-;5726:1;5736:113;5750:6;5747:1;5744:13;5736:113;;;5835:1;5830:3;5826:11;5820:18;5816:1;5811:3;5807:11;5800:39;5772:2;5769:1;5765:10;5760:15;;5736:113;;;5867:6;5864:1;5861:13;5858:101;;;5947:1;5938:6;5933:3;5929:16;5922:27;5858:101;5707:258;5658:307;;;:::o;5971:364::-;6059:3;6087:39;6120:5;6087:39;:::i;:::-;6142:71;6206:6;6201:3;6142:71;:::i;:::-;6135:78;;6222:52;6267:6;6262:3;6255:4;6248:5;6244:16;6222:52;:::i;:::-;6299:29;6321:6;6299:29;:::i;:::-;6294:3;6290:39;6283:46;;6063:272;5971:364;;;;:::o;6341:313::-;6454:4;6492:2;6481:9;6477:18;6469:26;;6541:9;6535:4;6531:20;6527:1;6516:9;6512:17;6505:47;6569:78;6642:4;6633:6;6569:78;:::i;:::-;6561:86;;6341:313;;;;:::o;6660:109::-;6741:21;6756:5;6741:21;:::i;:::-;6736:3;6729:34;6660:109;;:::o;6775:210::-;6862:4;6900:2;6889:9;6885:18;6877:26;;6913:65;6975:1;6964:9;6960:17;6951:6;6913:65;:::i;:::-;6775:210;;;;:::o;6991:122::-;7064:24;7082:5;7064:24;:::i;:::-;7057:5;7054:35;7044:63;;7103:1;7100;7093:12;7044:63;6991:122;:::o;7119:143::-;7176:5;7207:6;7201:13;7192:22;;7223:33;7250:5;7223:33;:::i;:::-;7119:143;;;;:::o;7268:351::-;7338:6;7387:2;7375:9;7366:7;7362:23;7358:32;7355:119;;;7393:79;;:::i;:::-;7355:119;7513:1;7538:64;7594:7;7585:6;7574:9;7570:22;7538:64;:::i;:::-;7528:74;;7484:128;7268:351;;;;:::o;7625:159::-;7765:11;7761:1;7753:6;7749:14;7742:35;7625:159;:::o;7790:365::-;7932:3;7953:66;8017:1;8012:3;7953:66;:::i;:::-;7946:73;;8028:93;8117:3;8028:93;:::i;:::-;8146:2;8141:3;8137:12;8130:19;;7790:365;;;:::o;8161:419::-;8327:4;8365:2;8354:9;8350:18;8342:26;;8414:9;8408:4;8404:20;8400:1;8389:9;8385:17;8378:47;8442:131;8568:4;8442:131;:::i;:::-;8434:139;;8161:419;;;:::o;8586:181::-;8726:33;8722:1;8714:6;8710:14;8703:57;8586:181;:::o;8773:366::-;8915:3;8936:67;9000:2;8995:3;8936:67;:::i;:::-;8929:74;;9012:93;9101:3;9012:93;:::i;:::-;9130:2;9125:3;9121:12;9114:19;;8773:366;;;:::o;9145:419::-;9311:4;9349:2;9338:9;9334:18;9326:26;;9398:9;9392:4;9388:20;9384:1;9373:9;9369:17;9362:47;9426:131;9552:4;9426:131;:::i;:::-;9418:139;;9145:419;;;:::o;9570:165::-;9710:17;9706:1;9698:6;9694:14;9687:41;9570:165;:::o;9741:366::-;9883:3;9904:67;9968:2;9963:3;9904:67;:::i;:::-;9897:74;;9980:93;10069:3;9980:93;:::i;:::-;10098:2;10093:3;10089:12;10082:19;;9741:366;;;:::o;10113:419::-;10279:4;10317:2;10306:9;10302:18;10294:26;;10366:9;10360:4;10356:20;10352:1;10341:9;10337:17;10330:47;10394:131;10520:4;10394:131;:::i;:::-;10386:139;;10113:419;;;:::o;10538:180::-;10586:77;10583:1;10576:88;10683:4;10680:1;10673:15;10707:4;10704:1;10697:15;10724:305;10764:3;10783:20;10801:1;10783:20;:::i;:::-;10778:25;;10817:20;10835:1;10817:20;:::i;:::-;10812:25;;10971:1;10903:66;10899:74;10896:1;10893:81;10890:107;;;10977:18;;:::i;:::-;10890:107;11021:1;11018;11014:9;11007:16;;10724:305;;;;:::o;11035:191::-;11075:4;11095:20;11113:1;11095:20;:::i;:::-;11090:25;;11129:20;11147:1;11129:20;:::i;:::-;11124:25;;11168:1;11165;11162:8;11159:34;;;11173:18;;:::i;:::-;11159:34;11218:1;11215;11211:9;11203:17;;11035:191;;;;:::o;11232:173::-;11372:25;11368:1;11360:6;11356:14;11349:49;11232:173;:::o;11411:366::-;11553:3;11574:67;11638:2;11633:3;11574:67;:::i;:::-;11567:74;;11650:93;11739:3;11650:93;:::i;:::-;11768:2;11763:3;11759:12;11752:19;;11411:366;;;:::o;11783:419::-;11949:4;11987:2;11976:9;11972:18;11964:26;;12036:9;12030:4;12026:20;12022:1;12011:9;12007:17;12000:47;12064:131;12190:4;12064:131;:::i;:::-;12056:139;;11783:419;;;:::o;12208:174::-;12348:26;12344:1;12336:6;12332:14;12325:50;12208:174;:::o;12388:366::-;12530:3;12551:67;12615:2;12610:3;12551:67;:::i;:::-;12544:74;;12627:93;12716:3;12627:93;:::i;:::-;12745:2;12740:3;12736:12;12729:19;;12388:366;;;:::o;12760:419::-;12926:4;12964:2;12953:9;12949:18;12941:26;;13013:9;13007:4;13003:20;12999:1;12988:9;12984:17;12977:47;13041:131;13167:4;13041:131;:::i;:::-;13033:139;;12760:419;;;:::o;13185:233::-;13224:3;13247:24;13265:5;13247:24;:::i;:::-;13238:33;;13293:66;13286:5;13283:77;13280:103;;;13363:18;;:::i;:::-;13280:103;13410:1;13403:5;13399:13;13392:20;;13185:233;;;:::o;13424:168::-;13564:20;13560:1;13552:6;13548:14;13541:44;13424:168;:::o;13598:366::-;13740:3;13761:67;13825:2;13820:3;13761:67;:::i;:::-;13754:74;;13837:93;13926:3;13837:93;:::i;:::-;13955:2;13950:3;13946:12;13939:19;;13598:366;;;:::o;13970:419::-;14136:4;14174:2;14163:9;14159:18;14151:26;;14223:9;14217:4;14213:20;14209:1;14198:9;14194:17;14187:47;14251:131;14377:4;14251:131;:::i;:::-;14243:139;;13970:419;;;:::o;14395:175::-;14535:27;14531:1;14523:6;14519:14;14512:51;14395:175;:::o;14576:366::-;14718:3;14739:67;14803:2;14798:3;14739:67;:::i;:::-;14732:74;;14815:93;14904:3;14815:93;:::i;:::-;14933:2;14928:3;14924:12;14917:19;;14576:366;;;:::o;14948:419::-;15114:4;15152:2;15141:9;15137:18;15129:26;;15201:9;15195:4;15191:20;15187:1;15176:9;15172:17;15165:47;15229:131;15355:4;15229:131;:::i;:::-;15221:139;;14948:419;;;:::o;15373:348::-;15413:7;15436:20;15454:1;15436:20;:::i;:::-;15431:25;;15470:20;15488:1;15470:20;:::i;:::-;15465:25;;15658:1;15590:66;15586:74;15583:1;15580:81;15575:1;15568:9;15561:17;15557:105;15554:131;;;15665:18;;:::i;:::-;15554:131;15713:1;15710;15706:9;15695:20;;15373:348;;;;:::o;15727:226::-;15867:34;15863:1;15855:6;15851:14;15844:58;15936:9;15931:2;15923:6;15919:15;15912:34;15727:226;:::o;15959:366::-;16101:3;16122:67;16186:2;16181:3;16122:67;:::i;:::-;16115:74;;16198:93;16287:3;16198:93;:::i;:::-;16316:2;16311:3;16307:12;16300:19;;15959:366;;;:::o;16331:419::-;16497:4;16535:2;16524:9;16520:18;16512:26;;16584:9;16578:4;16574:20;16570:1;16559:9;16555:17;16548:47;16612:131;16738:4;16612:131;:::i;:::-;16604:139;;16331:419;;;:::o;16756:148::-;16858:11;16895:3;16880:18;;16756:148;;;;:::o;16910:377::-;17016:3;17044:39;17077:5;17044:39;:::i;:::-;17099:89;17181:6;17176:3;17099:89;:::i;:::-;17092:96;;17197:52;17242:6;17237:3;17230:4;17223:5;17219:16;17197:52;:::i;:::-;17274:6;17269:3;17265:16;17258:23;;17020:267;16910:377;;;;:::o;17293:180::-;17341:77;17338:1;17331:88;17438:4;17435:1;17428:15;17462:4;17459:1;17452:15;17479:320;17523:6;17560:1;17554:4;17550:12;17540:22;;17607:1;17601:4;17597:12;17628:18;17618:81;;17684:4;17676:6;17672:17;17662:27;;17618:81;17746:2;17738:6;17735:14;17715:18;17712:38;17709:84;;;17765:18;;:::i;:::-;17709:84;17530:269;17479:320;;;:::o;17805:141::-;17854:4;17877:3;17869:11;;17900:3;17897:1;17890:14;17934:4;17931:1;17921:18;17913:26;;17805:141;;;:::o;17976:845::-;18079:3;18116:5;18110:12;18145:36;18171:9;18145:36;:::i;:::-;18197:89;18279:6;18274:3;18197:89;:::i;:::-;18190:96;;18317:1;18306:9;18302:17;18333:1;18328:137;;;;18479:1;18474:341;;;;18295:520;;18328:137;18412:4;18408:9;18397;18393:25;18388:3;18381:38;18448:6;18443:3;18439:16;18432:23;;18328:137;;18474:341;18541:38;18573:5;18541:38;:::i;:::-;18601:1;18615:154;18629:6;18626:1;18623:13;18615:154;;;18703:7;18697:14;18693:1;18688:3;18684:11;18677:35;18753:1;18744:7;18740:15;18729:26;;18651:4;18648:1;18644:12;18639:17;;18615:154;;;18798:6;18793:3;18789:16;18782:23;;18481:334;;18295:520;;18083:738;;17976:845;;;;:::o;18827:429::-;19004:3;19026:95;19117:3;19108:6;19026:95;:::i;:::-;19019:102;;19138:92;19226:3;19217:6;19138:92;:::i;:::-;19131:99;;19247:3;19240:10;;18827:429;;;;;:::o;19262:179::-;19402:31;19398:1;19390:6;19386:14;19379:55;19262:179;:::o;19447:366::-;19589:3;19610:67;19674:2;19669:3;19610:67;:::i;:::-;19603:74;;19686:93;19775:3;19686:93;:::i;:::-;19804:2;19799:3;19795:12;19788:19;;19447:366;;;:::o;19819:419::-;19985:4;20023:2;20012:9;20008:18;20000:26;;20072:9;20066:4;20062:20;20058:1;20047:9;20043:17;20036:47;20100:131;20226:4;20100:131;:::i;:::-;20092:139;;19819:419;;;:::o;20244:147::-;20345:11;20382:3;20367:18;;20244:147;;;;:::o;20397:114::-;;:::o;20517:398::-;20676:3;20697:83;20778:1;20773:3;20697:83;:::i;:::-;20690:90;;20789:93;20878:3;20789:93;:::i;:::-;20907:1;20902:3;20898:11;20891:18;;20517:398;;;:::o;20921:379::-;21105:3;21127:147;21270:3;21127:147;:::i;:::-;21120:154;;21291:3;21284:10;;20921:379;;;:::o;21306:245::-;21446:34;21442:1;21434:6;21430:14;21423:58;21515:28;21510:2;21502:6;21498:15;21491:53;21306:245;:::o;21557:366::-;21699:3;21720:67;21784:2;21779:3;21720:67;:::i;:::-;21713:74;;21796:93;21885:3;21796:93;:::i;:::-;21914:2;21909:3;21905:12;21898:19;;21557:366;;;:::o;21929:419::-;22095:4;22133:2;22122:9;22118:18;22110:26;;22182:9;22176:4;22172:20;22168:1;22157:9;22153:17;22146:47;22210:131;22336:4;22210:131;:::i;:::-;22202:139;;21929:419;;;:::o;22354:514::-;22515:4;22553:2;22542:9;22538:18;22530:26;;22602:9;22596:4;22592:20;22588:1;22577:9;22573:17;22566:47;22630:78;22703:4;22694:6;22630:78;:::i;:::-;22622:86;;22755:9;22749:4;22745:20;22740:2;22729:9;22725:18;22718:48;22783:78;22856:4;22847:6;22783:78;:::i;:::-;22775:86;;22354:514;;;;;:::o;22874:332::-;22995:4;23033:2;23022:9;23018:18;23010:26;;23046:71;23114:1;23103:9;23099:17;23090:6;23046:71;:::i;:::-;23127:72;23195:2;23184:9;23180:18;23171:6;23127:72;:::i;:::-;22874:332;;;;;:::o;23212:421::-;23301:5;23326:66;23342:49;23384:6;23342:49;:::i;:::-;23326:66;:::i;:::-;23317:75;;23415:6;23408:5;23401:21;23453:4;23446:5;23442:16;23491:3;23482:6;23477:3;23473:16;23470:25;23467:112;;;23498:79;;:::i;:::-;23467:112;23588:39;23620:6;23615:3;23610;23588:39;:::i;:::-;23307:326;23212:421;;;;;:::o;23653:355::-;23720:5;23769:3;23762:4;23754:6;23750:17;23746:27;23736:122;;23777:79;;:::i;:::-;23736:122;23887:6;23881:13;23912:90;23998:3;23990:6;23983:4;23975:6;23971:17;23912:90;:::i;:::-;23903:99;;23726:282;23653:355;;;;:::o;24014:524::-;24094:6;24143:2;24131:9;24122:7;24118:23;24114:32;24111:119;;;24149:79;;:::i;:::-;24111:119;24290:1;24279:9;24275:17;24269:24;24320:18;24312:6;24309:30;24306:117;;;24342:79;;:::i;:::-;24306:117;24447:74;24513:7;24504:6;24493:9;24489:22;24447:74;:::i;:::-;24437:84;;24240:291;24014:524;;;;:::o

Swarm Source

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