ETH Price: $3,308.57 (-3.65%)
Gas: 20 Gwei

Token

Bluethumb Digital Genesis (BTDG)
 

Overview

Max Total Supply

16 BTDG

Holders

11

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
vault.gts.eth
Balance
1 BTDG
0xDAb36A4CE12aa220e18c60Ef0dE489c232322a1a
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:
BluethumbDigitalGenesis

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

// File: contracts/@openzeppelin/contracts-upgradeable/utils/introspection/IERC165Upgradeable.sol
// SPDX-License-Identifier: MIT

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: contracts/@openzeppelin/contracts-upgradeable/token/ERC721/IERC721Upgradeable.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: contracts/@openzeppelin/contracts-upgradeable/token/ERC721/IERC721ReceiverUpgradeable.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: contracts/@openzeppelin/contracts-upgradeable/token/ERC721/extensions/IERC721MetadataUpgradeable.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: contracts/@openzeppelin/contracts-upgradeable/utils/AddressUpgradeable.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: contracts/@openzeppelin/contracts-upgradeable/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.
 */
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() {
        require(_initializing || !_initialized, "Initializable: contract is already initialized");

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

        _;

        if (isTopLevelCall) {
            _initializing = false;
        }
    }
}

// File: contracts/@openzeppelin/contracts-upgradeable/utils/ContextUpgradeable.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 initializer {
        __Context_init_unchained();
    }

    function __Context_init_unchained() internal initializer {
    }
    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: contracts/@openzeppelin/contracts-upgradeable/utils/StringsUpgradeable.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: contracts/@openzeppelin/contracts-upgradeable/utils/introspection/ERC165Upgradeable.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 initializer {
        __ERC165_init_unchained();
    }

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

// File: contracts/@openzeppelin/contracts-upgradeable/token/ERC721/ERC721Upgradeable.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 initializer {
        __Context_init_unchained();
        __ERC165_init_unchained();
        __ERC721_init_unchained(name_, symbol_);
    }

    function __ERC721_init_unchained(string memory name_, string memory symbol_) internal initializer {
        _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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public 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 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: contracts/@openzeppelin/contracts-upgradeable/interfaces/IERC165Upgradeable.sol


pragma solidity ^0.8.0;

// File: contracts/@openzeppelin/contracts-upgradeable/interfaces/IERC2981Upgradeable.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: contracts/@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.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 initializer {
        __Context_init_unchained();
        __Ownable_init_unchained();
    }

    function __Ownable_init_unchained() internal initializer {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
    uint256[49] private __gap;
}

// File: contracts/@openzeppelin/contracts-upgradeable/utils/CountersUpgradeable.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: contracts/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: contracts/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: contracts/@openzeppelin/contracts-upgradeable/utils/StorageSlotUpgradeable.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: contracts/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/@openzeppelin/contracts/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 make 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: contracts/@openzeppelin/contracts/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: contracts/@openzeppelin/contracts/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: contracts/BluethumbDigitalGenesis.sol


pragma solidity ^0.8.9;





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

  uint256 public whitelistMint = 1645689600; // Thursday, February 24, 2022 8:00:00 AM GMT+00:00
  uint256 public allMint = 1645776000; // Friday, February 25, 2022 8:00:00 AM GMT+00:00

  constructor(address baseFactory, string memory customBaseURI_)
    ERC721Delegated(
      baseFactory,
      "Bluethumb Digital Genesis",
      "BTDG",
      ConfigSettings({
        royaltyBps: 1250,
        uriBase: customBaseURI_,
        uriExtension: "",
        hasTransferHook: false
      })
    )
  {
    allowedMintCountMap[msg.sender] = 15;

    allowedMintCountMap[0x055580E7b88225Dae30dC1305Ad03ABA43686449] = 15;

    allowedMintCountMap[0x0613460B6853d17795C12Cb257fe47F432384096] = 15;

    allowedMintCountMap[0x0834722F2FA51f7F270D3c47695106B775E5A32f] = 15;

    allowedMintCountMap[0x090c562b3BcC4960C015D4BE4F5E68F3C4917035] = 15;

    allowedMintCountMap[0x09681e52Efe61A1D14a726bC440512A3DeB964cf] = 15;

    allowedMintCountMap[0x0fb19Ea0bA06dc0Afb7B9A2D8749D6a9dE4d14ed] = 15;

    allowedMintCountMap[0x12734419dcc90cD7BD89C84fE323Bc66ecb52f24] = 15;

    allowedMintCountMap[0x1279bfC493f9C556aAEca7Ec5E9e09F342bb8Cd0] = 15;

    allowedMintCountMap[0x139b11F3A9BeD54F3F25af6CF1686e44DB31Bb83] = 15;

    allowedMintCountMap[0x1a8898f49db7e43DCe100AAB860BBBBE5956f00d] = 15;

    allowedMintCountMap[0x27b56c91F60316ac56983cE38e86d44a639B8bf4] = 15;

    allowedMintCountMap[0x2b919e1Fd19e5F5E0d58fa2791e2fAFc7F0DE7cD] = 15;

    allowedMintCountMap[0x2dD32A8A16E9f0D113a9b835F4BF0c3AB103eF6C] = 15;

    allowedMintCountMap[0x375CC1b3574F3e5f0418D006bbADbcE5CFe13564] = 15;

    allowedMintCountMap[0x421245F7D4759af99bFAA8Ec11705D28B0456A89] = 15;

    allowedMintCountMap[0x46e8986B1684cf9d8b2f4d6A310482E765F593F6] = 15;

    allowedMintCountMap[0x48405CCd294c75F38A1cf003e25D1189ffAFb329] = 15;

    allowedMintCountMap[0x4D60C50d3d08e8088F3E9748Fe3E87a86f9571ce] = 15;

    allowedMintCountMap[0x5226d1f2d4840Acf1C6069a2b98a5b945369B9Ba] = 15;

    allowedMintCountMap[0x55A6944Db96288d4668d5Ea2eE83ff30138aC5D2] = 15;

    allowedMintCountMap[0x55AaC00eE798875D563Bbb7e32cE714Ceb91dB0c] = 15;

    allowedMintCountMap[0x5A287D335F545146D0015CE9700af21878734942] = 15;

    allowedMintCountMap[0x5Dbb70602BBec7f392467664B0a27298174cC859] = 15;

    allowedMintCountMap[0x5F5e3148532d1682866131A1971Bb74a92D96376] = 15;

    allowedMintCountMap[0x620051B8553a724b742ae6ae9cC3585d29F49848] = 15;

    allowedMintCountMap[0x64eb4E3cAE1c6baf4eb6f07C3506EC9063D9301c] = 15;

    allowedMintCountMap[0x659410b8c3267a74662b96E684b6b7c7fa799940] = 15;

    allowedMintCountMap[0x68EA90b95cf332a816119Ed2A73BB809cAeef170] = 15;

    allowedMintCountMap[0x6e56DC0499D8404c39D01Bc76c5Ca4f4798DBc2D] = 15;

    allowedMintCountMap[0x776ed51aE75dD4A89B7e1bF554f18F57555c6E49] = 15;

    allowedMintCountMap[0x77B2134CD2401C1E62811bA841f55EaEe6707837] = 15;

    allowedMintCountMap[0x780C5432f01A83Fd0368c47d08A806183368Ce6B] = 15;

    allowedMintCountMap[0x7b6156b6170cD98260D62Bd076BF73CD6042B94F] = 15;

    allowedMintCountMap[0x7CA325b9C324d3eDfb9b03B20CAc2b76BB2E9EA0] = 15;

    allowedMintCountMap[0x80fA68aCA31Ef103c1f9A4AC774fA54bbADFc01A] = 15;

    allowedMintCountMap[0x832EF062edC896f0974b0c70f748b13b4f261d8E] = 15;

    allowedMintCountMap[0x89e084cC06b180ec5bEb1D8992e62B0a61abb2c4] = 15;

    allowedMintCountMap[0x8BC66aACb79e73c2aB463d28D8f70d6421049bD4] = 15;

    allowedMintCountMap[0x8eb93eCD02eF88933D04b28482a8ddd54C1B2d89] = 15;

    allowedMintCountMap[0x90B682e4C468e1e2e506eE07D1e31ce8A1870856] = 15;

    allowedMintCountMap[0x933131Fa555C9907ebB94d9A1BcB036D60a36805] = 15;

    allowedMintCountMap[0x94CDf7083fdBA1Db27C2AEd1FB6b90adF0862569] = 15;

    allowedMintCountMap[0x94d32792c9ceC2605bff4ee3360bFA882A138B30] = 15;

    allowedMintCountMap[0x9741718E702091EC2aB88331Ef46CE34789CC6Ca] = 15;

    allowedMintCountMap[0x9d85A0928aC5C6329eac50E27ecb8086600924B0] = 15;

    allowedMintCountMap[0xa3c65a4c791846524A56d86E7a842A6804d3D9bB] = 15;

    allowedMintCountMap[0xa5fc73424d710c0eF80De3b5eD6402fedDd0218E] = 15;

    allowedMintCountMap[0xaa14eDCaD86BdcCBcbD69C535400e67160FA683D] = 15;

    allowedMintCountMap[0xB0719B0A76D547E763B17C9663CEF75Ed88f0A5e] = 15;

    allowedMintCountMap[0xB0919CC42D5Ba1eA8e93D53Cc3ad3ebe083C3823] = 15;

    allowedMintCountMap[0xB3bdb4345C5daA505Ad4f945D30C80299835eeB7] = 15;

    allowedMintCountMap[0xB62Af5e86E25385B597A4c74233f87eCAd806AC4] = 15;

    allowedMintCountMap[0xb6ab7289069ca6333B2f29813b50Ed5bcBe8B102] = 15;

    allowedMintCountMap[0xbc4eC4aef8254f7434b654DF5D9DF3EAB15B252f] = 15;

    allowedMintCountMap[0xC247c61C9C094437B5b720BB7E85e2A72D8a1798] = 15;

    allowedMintCountMap[0xC2931c1C9D6f37BC5E4913C4CE25225901217399] = 15;

    allowedMintCountMap[0xc3F4914EA59935db7Fcf4f645AC6b18Be7d4BF1f] = 15;

    allowedMintCountMap[0xCaBB96eAEec3875697fe65a23cA74f11b99eA0b4] = 15;

    allowedMintCountMap[0xD10AECe721dbe3F8f652B16eCC5520425B9BB0Cd] = 15;

    allowedMintCountMap[0xd455712e43582134F101a0C686d26548B5438A3b] = 15;

    allowedMintCountMap[0xD4F839266C2A3CD74Fc925d8bfcf1aF1bB4a18a8] = 15;

    allowedMintCountMap[0xD52CdE57c6f442423d67AF9F8145AE209AB6c61C] = 15;

    allowedMintCountMap[0xDc253466a6b7ecb0CaE038f5430A8480AABCDa5c] = 15;

    allowedMintCountMap[0xDC5cE4aa77E606A7052BFb89A299AF6dB8F29Bf2] = 15;

    allowedMintCountMap[0xdDd28f0Bb07e8D273be0f2dB4c146D65DB29Cf8a] = 15;

    allowedMintCountMap[0xe40FF883845081C4c5D8579eD905e574553C51e0] = 15;

    allowedMintCountMap[0xe6AfA012FceA90c5fEB0660D5e43BaB04D7b87DD] = 15;

    allowedMintCountMap[0xeC44e64399EB446505F2044bbF819F09E3B7A6d1] = 15;

    allowedMintCountMap[0xEe88465494b611b6eF41df825fE28C2F64146628] = 15;

    allowedMintCountMap[0xF62b33dBF34a589AF97aA5292d84C470F29Be818] = 15;

    allowedMintCountMap[0xFa555014B3E532C26D432c57947965D95E2e9BE4] = 15;

    allowedMintCountMap[0xFE6b7A4494B308f8c0025DCc635ac22630ec7330] = 15;

    mintPriceMap[0] = 100000000000000000;
    mintPriceMap[1] = 100000000000000000;
    mintPriceMap[2] = 100000000000000000;
    mintPriceMap[3] = 100000000000000000;
    mintPriceMap[4] = 100000000000000000;
    mintPriceMap[5] = 100000000000000000;
    mintPriceMap[6] = 100000000000000000;
    mintPriceMap[7] = 100000000000000000;
    mintPriceMap[8] = 100000000000000000;
    mintPriceMap[9] = 100000000000000000;
    mintPriceMap[10] = 100000000000000000;
    mintPriceMap[11] = 100000000000000000;
    mintPriceMap[12] = 100000000000000000;
    mintPriceMap[13] = 100000000000000000;
    mintPriceMap[14] = 100000000000000000;
    mintPriceMap[15] = 100000000000000000;
    mintPriceMap[16] = 100000000000000000;
    mintPriceMap[17] = 100000000000000000;
    mintPriceMap[18] = 100000000000000000;
    mintPriceMap[19] = 100000000000000000;
    mintPriceMap[20] = 100000000000000000;
    mintPriceMap[21] = 200000000000000000;
    mintPriceMap[22] = 200000000000000000;
    mintPriceMap[23] = 200000000000000000;
    mintPriceMap[24] = 200000000000000000;
    mintPriceMap[25] = 200000000000000000;
    mintPriceMap[26] = 200000000000000000;
    mintPriceMap[27] = 200000000000000000;
    mintPriceMap[28] = 200000000000000000;
    mintPriceMap[29] = 200000000000000000;
    mintPriceMap[30] = 200000000000000000;
    mintPriceMap[31] = 200000000000000000;
    mintPriceMap[32] = 200000000000000000;
    mintPriceMap[33] = 300000000000000000;
    mintPriceMap[34] = 300000000000000000;
    mintPriceMap[35] = 400000000000000000;
    mintPriceMap[36] = 400000000000000000;
    mintPriceMap[37] = 400000000000000000;
    mintPriceMap[38] = 400000000000000000;
    mintPriceMap[39] = 400000000000000000;
    mintPriceMap[40] = 400000000000000000;
    mintPriceMap[41] = 400000000000000000;
    mintPriceMap[42] = 400000000000000000;
    mintPriceMap[43] = 400000000000000000;
    mintPriceMap[44] = 400000000000000000;
    mintPriceMap[45] = 400000000000000000;
    mintPriceMap[46] = 400000000000000000;
    mintPriceMap[47] = 400000000000000000;
    mintPriceMap[48] = 400000000000000000;
    mintPriceMap[49] = 500000000000000000;
    mintPriceMap[50] = 500000000000000000;
    mintPriceMap[51] = 500000000000000000;
    mintPriceMap[52] = 500000000000000000;
    mintPriceMap[53] = 500000000000000000;
    mintPriceMap[54] = 500000000000000000;
    mintPriceMap[55] = 500000000000000000;
    mintPriceMap[56] = 500000000000000000;
    mintPriceMap[57] = 500000000000000000;
    mintPriceMap[58] = 500000000000000000;
    mintPriceMap[59] = 500000000000000000;
    mintPriceMap[60] = 500000000000000000;
    mintPriceMap[61] = 500000000000000000;
    mintPriceMap[62] = 500000000000000000;
    mintPriceMap[63] = 500000000000000000;
    mintPriceMap[64] = 500000000000000000;
    mintPriceMap[65] = 500000000000000000;
    mintPriceMap[66] = 600000000000000000;
    mintPriceMap[67] = 700000000000000000;
    mintPriceMap[68] = 700000000000000000;
    mintPriceMap[69] = 700000000000000000;
    mintPriceMap[70] = 700000000000000000;
    mintPriceMap[71] = 700000000000000000;
    mintPriceMap[72] = 1000000000000000000;
    mintPriceMap[73] = 1000000000000000000;
    mintPriceMap[74] = 1000000000000000000;
    mintPriceMap[75] = 1000000000000000000;
    mintPriceMap[76] = 1000000000000000000;
    mintPriceMap[77] = 1000000000000000000;
    mintPriceMap[78] = 1000000000000000000;
    mintPriceMap[79] = 1000000000000000000;
    mintPriceMap[80] = 1000000000000000000;
    mintPriceMap[81] = 1000000000000000000;
    mintPriceMap[82] = 1000000000000000000;
    mintPriceMap[83] = 1000000000000000000;
    mintPriceMap[84] = 1000000000000000000;
    mintPriceMap[85] = 1000000000000000000;
    mintPriceMap[86] = 2000000000000000000;
    mintPriceMap[87] = 4000000000000000000;
    mintPriceMap[88] = 4500000000000000000;
    mintPriceMap[89] = 4500000000000000000;
    mintPriceMap[90] = 5000000000000000000;
    mintPriceMap[91] = 5000000000000000000;
  }

  /** MINTING LIMITS **/

  mapping(address => uint256) private mintCountMap;

  mapping(address => uint256) private allowedMintCountMap;

  function allowedMintCount(address minter) public view returns (uint256) {
    return allowedMintCountMap[minter] - mintCountMap[minter];
  }

  function updateMintCount(address minter, uint256 count) private {
    mintCountMap[minter] += count;
  }

  /** MINTING PRICES **/

  mapping(uint256 => uint256) private mintPriceMap;

  function tokenPrice(uint256 id) public view returns (uint256) {
    return mintPriceMap[id];
  }

  /** MINTING **/

  uint256 public constant MAX_SUPPLY = 92;

  Counters.Counter private supplyCounter;

  function mint(uint256 id) public payable nonReentrant {
    require(block.timestamp >= whitelistMint, "Mint is not active");

    if (block.timestamp < allMint) {
      if (allowedMintCount(msg.sender) >= 1) {
        updateMintCount(msg.sender, 1);
      } else {
        revert("Address not in the whitelist");
      }
    }

    require(totalSupply() < MAX_SUPPLY, "Exceeds max supply");

    require(id < MAX_SUPPLY, "Invalid token id");

    require((_owner() == msg.sender) || (msg.value >= tokenPrice(id)), "Insufficient payment");

    _mint(msg.sender, id);

    supplyCounter.increment();
  }

  function multimint(uint256[] calldata ids) public nonReentrant onlyOwner {
    for (uint256 i = 0; i < ids.length; i++) {
      uint256 id = ids[i];

      _mint(msg.sender, id);

      supplyCounter.increment();
    }
  }

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

  /** URI HANDLING **/

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

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

  /** PAYOUT **/

  address private constant payoutAddress1 =
    0xE69Eb4946188c5085f38e683b61b892a96c27124;

  address private constant payoutAddress2 =
    0x5F5e3148532d1682866131A1971Bb74a92D96376;

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

    Address.sendValue(payable(_owner()), balance * 90 / 100);

    Address.sendValue(payable(payoutAddress1), balance * 5 / 100);

    Address.sendValue(payable(payoutAddress2), balance * 5 / 100);
  }
}

// Contract created with Studio 721 v1.5.0
// https://721.so

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_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"allowedMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"multimint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"customBaseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526362173b00620186a1556362188c80620186a2553480156200002557600080fd5b506040516200486a3803806200486a83398181016040528101906200004b919062002b24565b816040518060400160405280601981526020017f426c75657468756d62204469676974616c2047656e65736973000000000000008152506040518060400160405280600481526020017f425444470000000000000000000000000000000000000000000000000000000081525060405180608001604052806104e261ffff1681526020018581526020016040518060200160405280600081525081526020016000151581525062000102846200289a60201b60201c565b60008473ffffffffffffffffffffffffffffffffffffffff163385858560405160240162000134949392919062002cf8565b6040516020818303038152906040527fb1a78e3f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051620001c0919062002da7565b600060405180830381855af49150503d8060008114620001fd576040519150601f19603f3d011682016040523d82523d6000602084013e62000202565b606091505b50509050806200021157600080fd5b50505050506001620186a081905550600f620186a460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a4600073055580e7b88225dae30dc1305ad03aba4368644973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a46000730613460b6853d17795c12cb257fe47f43238409673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a46000730834722f2fa51f7f270d3c47695106b775e5a32f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a4600073090c562b3bcc4960c015d4be4f5e68f3c491703573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a460007309681e52efe61a1d14a726bc440512a3deb964cf73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a46000730fb19ea0ba06dc0afb7b9a2d8749d6a9de4d14ed73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a460007312734419dcc90cd7bd89c84fe323bc66ecb52f2473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a46000731279bfc493f9c556aaeca7ec5e9e09f342bb8cd073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a4600073139b11f3a9bed54f3f25af6cf1686e44db31bb8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a46000731a8898f49db7e43dce100aab860bbbbe5956f00d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a460007327b56c91f60316ac56983ce38e86d44a639b8bf473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a46000732b919e1fd19e5f5e0d58fa2791e2fafc7f0de7cd73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a46000732dd32a8a16e9f0d113a9b835f4bf0c3ab103ef6c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a4600073375cc1b3574f3e5f0418d006bbadbce5cfe1356473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a4600073421245f7d4759af99bfaa8ec11705d28b0456a8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a460007346e8986b1684cf9d8b2f4d6a310482e765f593f673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a460007348405ccd294c75f38a1cf003e25d1189ffafb32973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a46000734d60c50d3d08e8088f3e9748fe3e87a86f9571ce73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a46000735226d1f2d4840acf1c6069a2b98a5b945369b9ba73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a460007355a6944db96288d4668d5ea2ee83ff30138ac5d273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a460007355aac00ee798875d563bbb7e32ce714ceb91db0c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a46000735a287d335f545146d0015ce9700af2187873494273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a46000735dbb70602bbec7f392467664b0a27298174cc85973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a46000735f5e3148532d1682866131a1971bb74a92d9637673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a4600073620051b8553a724b742ae6ae9cc3585d29f4984873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a460007364eb4e3cae1c6baf4eb6f07c3506ec9063d9301c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a4600073659410b8c3267a74662b96e684b6b7c7fa79994073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a460007368ea90b95cf332a816119ed2a73bb809caeef17073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a46000736e56dc0499d8404c39d01bc76c5ca4f4798dbc2d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a4600073776ed51ae75dd4a89b7e1bf554f18f57555c6e4973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a460007377b2134cd2401c1e62811ba841f55eaee670783773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a4600073780c5432f01a83fd0368c47d08a806183368ce6b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a46000737b6156b6170cd98260d62bd076bf73cd6042b94f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a46000737ca325b9c324d3edfb9b03b20cac2b76bb2e9ea073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a460007380fa68aca31ef103c1f9a4ac774fa54bbadfc01a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a4600073832ef062edc896f0974b0c70f748b13b4f261d8e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a460007389e084cc06b180ec5beb1d8992e62b0a61abb2c473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a46000738bc66aacb79e73c2ab463d28d8f70d6421049bd473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a46000738eb93ecd02ef88933d04b28482a8ddd54c1b2d8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a460007390b682e4c468e1e2e506ee07d1e31ce8a187085673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a4600073933131fa555c9907ebb94d9a1bcb036d60a3680573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a460007394cdf7083fdba1db27c2aed1fb6b90adf086256973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a460007394d32792c9cec2605bff4ee3360bfa882a138b3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a46000739741718e702091ec2ab88331ef46ce34789cc6ca73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a46000739d85a0928ac5c6329eac50e27ecb8086600924b073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a4600073a3c65a4c791846524a56d86e7a842a6804d3d9bb73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a4600073a5fc73424d710c0ef80de3b5ed6402feddd0218e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a4600073aa14edcad86bdccbcbd69c535400e67160fa683d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a4600073b0719b0a76d547e763b17c9663cef75ed88f0a5e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a4600073b0919cc42d5ba1ea8e93d53cc3ad3ebe083c382373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a4600073b3bdb4345c5daa505ad4f945d30c80299835eeb773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a4600073b62af5e86e25385b597a4c74233f87ecad806ac473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a4600073b6ab7289069ca6333b2f29813b50ed5bcbe8b10273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a4600073bc4ec4aef8254f7434b654df5d9df3eab15b252f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a4600073c247c61c9c094437b5b720bb7e85e2a72d8a179873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a4600073c2931c1c9d6f37bc5e4913c4ce2522590121739973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a4600073c3f4914ea59935db7fcf4f645ac6b18be7d4bf1f73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a4600073cabb96eaeec3875697fe65a23ca74f11b99ea0b473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a4600073d10aece721dbe3f8f652b16ecc5520425b9bb0cd73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a4600073d455712e43582134f101a0c686d26548b5438a3b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a4600073d4f839266c2a3cd74fc925d8bfcf1af1bb4a18a873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a4600073d52cde57c6f442423d67af9f8145ae209ab6c61c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a4600073dc253466a6b7ecb0cae038f5430a8480aabcda5c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a4600073dc5ce4aa77e606a7052bfb89a299af6db8f29bf273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a4600073ddd28f0bb07e8d273be0f2db4c146d65db29cf8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a4600073e40ff883845081c4c5d8579ed905e574553c51e073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a4600073e6afa012fcea90c5feb0660d5e43bab04d7b87dd73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a4600073ec44e64399eb446505f2044bbf819f09e3b7a6d173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a4600073ee88465494b611b6ef41df825fe28c2f6414662873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a4600073f62b33dbf34a589af97aa5292d84c470f29be81873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a4600073fa555014b3e532c26d432c57947965d95e2e9be473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600f620186a4600073fe6b7a4494b308f8c0025dcc635ac22630ec733073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555067016345785d8a0000620186a560008081526020019081526020016000208190555067016345785d8a0000620186a56000600181526020019081526020016000208190555067016345785d8a0000620186a56000600281526020019081526020016000208190555067016345785d8a0000620186a56000600381526020019081526020016000208190555067016345785d8a0000620186a56000600481526020019081526020016000208190555067016345785d8a0000620186a56000600581526020019081526020016000208190555067016345785d8a0000620186a56000600681526020019081526020016000208190555067016345785d8a0000620186a56000600781526020019081526020016000208190555067016345785d8a0000620186a56000600881526020019081526020016000208190555067016345785d8a0000620186a56000600981526020019081526020016000208190555067016345785d8a0000620186a56000600a81526020019081526020016000208190555067016345785d8a0000620186a56000600b81526020019081526020016000208190555067016345785d8a0000620186a56000600c81526020019081526020016000208190555067016345785d8a0000620186a56000600d81526020019081526020016000208190555067016345785d8a0000620186a56000600e81526020019081526020016000208190555067016345785d8a0000620186a56000600f81526020019081526020016000208190555067016345785d8a0000620186a56000601081526020019081526020016000208190555067016345785d8a0000620186a56000601181526020019081526020016000208190555067016345785d8a0000620186a56000601281526020019081526020016000208190555067016345785d8a0000620186a56000601381526020019081526020016000208190555067016345785d8a0000620186a5600060148152602001908152602001600020819055506702c68af0bb140000620186a5600060158152602001908152602001600020819055506702c68af0bb140000620186a5600060168152602001908152602001600020819055506702c68af0bb140000620186a5600060178152602001908152602001600020819055506702c68af0bb140000620186a5600060188152602001908152602001600020819055506702c68af0bb140000620186a5600060198152602001908152602001600020819055506702c68af0bb140000620186a56000601a8152602001908152602001600020819055506702c68af0bb140000620186a56000601b8152602001908152602001600020819055506702c68af0bb140000620186a56000601c8152602001908152602001600020819055506702c68af0bb140000620186a56000601d8152602001908152602001600020819055506702c68af0bb140000620186a56000601e8152602001908152602001600020819055506702c68af0bb140000620186a56000601f8152602001908152602001600020819055506702c68af0bb140000620186a560006020815260200190815260200160002081905550670429d069189e0000620186a560006021815260200190815260200160002081905550670429d069189e0000620186a56000602281526020019081526020016000208190555067058d15e176280000620186a56000602381526020019081526020016000208190555067058d15e176280000620186a56000602481526020019081526020016000208190555067058d15e176280000620186a56000602581526020019081526020016000208190555067058d15e176280000620186a56000602681526020019081526020016000208190555067058d15e176280000620186a56000602781526020019081526020016000208190555067058d15e176280000620186a56000602881526020019081526020016000208190555067058d15e176280000620186a56000602981526020019081526020016000208190555067058d15e176280000620186a56000602a81526020019081526020016000208190555067058d15e176280000620186a56000602b81526020019081526020016000208190555067058d15e176280000620186a56000602c81526020019081526020016000208190555067058d15e176280000620186a56000602d81526020019081526020016000208190555067058d15e176280000620186a56000602e81526020019081526020016000208190555067058d15e176280000620186a56000602f81526020019081526020016000208190555067058d15e176280000620186a5600060308152602001908152602001600020819055506706f05b59d3b20000620186a5600060318152602001908152602001600020819055506706f05b59d3b20000620186a5600060328152602001908152602001600020819055506706f05b59d3b20000620186a5600060338152602001908152602001600020819055506706f05b59d3b20000620186a5600060348152602001908152602001600020819055506706f05b59d3b20000620186a5600060358152602001908152602001600020819055506706f05b59d3b20000620186a5600060368152602001908152602001600020819055506706f05b59d3b20000620186a5600060378152602001908152602001600020819055506706f05b59d3b20000620186a5600060388152602001908152602001600020819055506706f05b59d3b20000620186a5600060398152602001908152602001600020819055506706f05b59d3b20000620186a56000603a8152602001908152602001600020819055506706f05b59d3b20000620186a56000603b8152602001908152602001600020819055506706f05b59d3b20000620186a56000603c8152602001908152602001600020819055506706f05b59d3b20000620186a56000603d8152602001908152602001600020819055506706f05b59d3b20000620186a56000603e8152602001908152602001600020819055506706f05b59d3b20000620186a56000603f8152602001908152602001600020819055506706f05b59d3b20000620186a5600060408152602001908152602001600020819055506706f05b59d3b20000620186a560006041815260200190815260200160002081905550670853a0d2313c0000620186a5600060428152602001908152602001600020819055506709b6e64a8ec60000620186a5600060438152602001908152602001600020819055506709b6e64a8ec60000620186a5600060448152602001908152602001600020819055506709b6e64a8ec60000620186a5600060458152602001908152602001600020819055506709b6e64a8ec60000620186a5600060468152602001908152602001600020819055506709b6e64a8ec60000620186a560006047815260200190815260200160002081905550670de0b6b3a7640000620186a560006048815260200190815260200160002081905550670de0b6b3a7640000620186a560006049815260200190815260200160002081905550670de0b6b3a7640000620186a56000604a815260200190815260200160002081905550670de0b6b3a7640000620186a56000604b815260200190815260200160002081905550670de0b6b3a7640000620186a56000604c815260200190815260200160002081905550670de0b6b3a7640000620186a56000604d815260200190815260200160002081905550670de0b6b3a7640000620186a56000604e815260200190815260200160002081905550670de0b6b3a7640000620186a56000604f815260200190815260200160002081905550670de0b6b3a7640000620186a560006050815260200190815260200160002081905550670de0b6b3a7640000620186a560006051815260200190815260200160002081905550670de0b6b3a7640000620186a560006052815260200190815260200160002081905550670de0b6b3a7640000620186a560006053815260200190815260200160002081905550670de0b6b3a7640000620186a560006054815260200190815260200160002081905550670de0b6b3a7640000620186a560006055815260200190815260200160002081905550671bc16d674ec80000620186a560006056815260200190815260200160002081905550673782dace9d900000620186a560006057815260200190815260200160002081905550673e73362871420000620186a560006058815260200190815260200160002081905550673e73362871420000620186a560006059815260200190815260200160002081905550674563918244f40000620186a56000605a815260200190815260200160002081905550674563918244f40000620186a56000605b815260200190815260200160002081905550505062002dc0565b80620028d47f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b6200291860201b62000a601760201c565b60000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000819050919050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620029638262002936565b9050919050565b620029758162002956565b81146200298157600080fd5b50565b60008151905062002995816200296a565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620029f082620029a5565b810181811067ffffffffffffffff8211171562002a125762002a11620029b6565b5b80604052505050565b600062002a2762002922565b905062002a358282620029e5565b919050565b600067ffffffffffffffff82111562002a585762002a57620029b6565b5b62002a6382620029a5565b9050602081019050919050565b60005b8381101562002a9057808201518184015260208101905062002a73565b8381111562002aa0576000848401525b50505050565b600062002abd62002ab78462002a3a565b62002a1b565b90508281526020810184848401111562002adc5762002adb620029a0565b5b62002ae984828562002a70565b509392505050565b600082601f83011262002b095762002b086200299b565b5b815162002b1b84826020860162002aa6565b91505092915050565b6000806040838503121562002b3e5762002b3d6200292c565b5b600062002b4e8582860162002984565b925050602083015167ffffffffffffffff81111562002b725762002b7162002931565b5b62002b808582860162002af1565b9150509250929050565b62002b958162002956565b82525050565b600081519050919050565b600082825260208201905092915050565b600062002bc48262002b9b565b62002bd0818562002ba6565b935062002be281856020860162002a70565b62002bed81620029a5565b840191505092915050565b600061ffff82169050919050565b62002c118162002bf8565b82525050565b600082825260208201905092915050565b600062002c358262002b9b565b62002c41818562002c17565b935062002c5381856020860162002a70565b62002c5e81620029a5565b840191505092915050565b60008115159050919050565b62002c808162002c69565b82525050565b600060808301600083015162002ca0600086018262002c06565b506020830151848203602086015262002cba828262002c28565b9150506040830151848203604086015262002cd6828262002c28565b915050606083015162002ced606086018262002c75565b508091505092915050565b600060808201905062002d0f600083018762002b8a565b818103602083015262002d23818662002bb7565b9050818103604083015262002d39818562002bb7565b9050818103606083015262002d4f818462002c86565b905095945050505050565b600081519050919050565b600081905092915050565b600062002d7d8262002d5a565b62002d89818562002d65565b935062002d9b81856020860162002a70565b80840191505092915050565b600062002db5828462002d70565b915081905092915050565b611a9a8062002dd06000396000f3fe6080604052600436106100ab5760003560e01c8063804f43cd11610064578063804f43cd146101b6578063a0712d68146101e1578063bb660c0a146101fd578063c87b56dd1461023a578063d4ddce8a14610277578063dfc52cad146102b4576100b5565b806309a96534146100cc57806318160ddd146100f557806332cb6b0c146101205780633ccfd60b1461014b57806355f804b3146101625780635c60da1b1461018b576100b5565b366100b557600080fd5b3480156100c157600080fd5b506100ca6102df565b005b3480156100d857600080fd5b506100f360048036038101906100ee9190610e79565b610311565b005b34801561010157600080fd5b5061010a6104ba565b6040516101179190610edf565b60405180910390f35b34801561012c57600080fd5b506101356104cd565b6040516101429190610edf565b60405180910390f35b34801561015757600080fd5b506101606104d2565b005b34801561016e57600080fd5b506101896004803603810190610184919061103b565b6105cb565b005b34801561019757600080fd5b506101a06106d9565b6040516101ad91906110c5565b60405180910390f35b3480156101c257600080fd5b506101cb610730565b6040516101d89190610edf565b60405180910390f35b6101fb60048036038101906101f6919061110c565b610738565b005b34801561020957600080fd5b50610224600480360381019061021f9190611165565b610971565b6040516102319190610edf565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c919061110c565b610a08565b60405161026e919061121a565b60405180910390f35b34801561028357600080fd5b5061029e6004803603810190610299919061110c565b610a39565b6040516102ab9190610edf565b60405180910390f35b3480156102c057600080fd5b506102c9610a58565b6040516102d69190610edf565b60405180910390f35b60006102e96106d9565b90503660008037600080366000845af43d6000803e806000811461030c573d6000f35b3d6000fd5b6002620186a0541415610359576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161035090611288565b60405180910390fd5b6002620186a08190555061036b610a6a565b73ffffffffffffffffffffffffffffffffffffffff166313effa0f6040518163ffffffff1660e01b815260040160206040518083038186803b1580156103b057600080fd5b505afa1580156103c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103e891906112bd565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161044c90611336565b60405180910390fd5b60005b828290508110156104ab57600083838381811061047857610477611356565b5b90506020020135905061048b3382610a72565b610497620186a6610aea565b5080806104a3906113b4565b915050610458565b506001620186a0819055505050565b60006104c8620186a6610b00565b905090565b605c81565b6002620186a054141561051a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051190611288565b60405180910390fd5b6002620186a0819055506000479050610552610534610b0e565b6064605a8461054391906113fd565b61054d9190611486565b610b9a565b61058873e69eb4946188c5085f38e683b61b892a96c27124606460058461057991906113fd565b6105839190611486565b610b9a565b6105be735f5e3148532d1682866131a1971bb74a92d9637660646005846105af91906113fd565b6105b99190611486565b610b9a565b506001620186a081905550565b6105d3610a6a565b73ffffffffffffffffffffffffffffffffffffffff166313effa0f6040518163ffffffff1660e01b815260040160206040518083038186803b15801561061857600080fd5b505afa15801561062c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061065091906112bd565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146106bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b490611336565b60405180910390fd5b6106d68160405180602001604052806000815250610c8e565b50565b60006107077f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b610a60565b60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620186a15481565b6002620186a0541415610780576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077790611288565b60405180910390fd5b6002620186a081905550620186a1544210156107d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c890611503565b60405180910390fd5b620186a2544210156108395760016107e833610971565b106107fd576107f8336001610d06565b610838565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082f9061156f565b60405180910390fd5b5b605c6108436104ba565b10610883576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087a906115db565b60405180910390fd5b605c81106108c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bd90611647565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108e5610b0e565b73ffffffffffffffffffffffffffffffffffffffff16148061090f575061090b81610a39565b3410155b61094e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610945906116b3565b60405180910390fd5b6109583382610a72565b610964620186a6610aea565b6001620186a08190555050565b6000620186a360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054620186a460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610a0191906116d3565b9050919050565b6060610a1382610d62565b604051602001610a23919061178f565b6040516020818303038152906040529050919050565b6000620186a56000838152602001908152602001600020549050919050565b620186a25481565b6000819050919050565b600030905090565b610a7a610a6a565b73ffffffffffffffffffffffffffffffffffffffff16633dc8ded783836040518363ffffffff1660e01b8152600401610ab49291906117b1565b600060405180830381600087803b158015610ace57600080fd5b505af1158015610ae2573d6000803e3d6000fd5b505050505050565b6001816000016000828254019250508190555050565b600081600001549050919050565b6000610b18610a6a565b73ffffffffffffffffffffffffffffffffffffffff166313effa0f6040518163ffffffff1660e01b815260040160206040518083038186803b158015610b5d57600080fd5b505afa158015610b71573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b9591906112bd565b905090565b80471015610bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd490611826565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051610c0390611877565b60006040518083038185875af1925050503d8060008114610c40576040519150601f19603f3d011682016040523d82523d6000602084013e610c45565b606091505b5050905080610c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c80906118fe565b60405180910390fd5b505050565b610c96610a6a565b73ffffffffffffffffffffffffffffffffffffffff166301278b0283836040518363ffffffff1660e01b8152600401610cd092919061191e565b600060405180830381600087803b158015610cea57600080fd5b505af1158015610cfe573d6000803e3d6000fd5b505050505050565b80620186a360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d579190611955565b925050819055505050565b6060610d6c610a6a565b73ffffffffffffffffffffffffffffffffffffffff1663f5dbba9d836040518263ffffffff1660e01b8152600401610da49190610edf565b60006040518083038186803b158015610dbc57600080fd5b505afa158015610dd0573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190610df99190611a1b565b9050919050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b60008083601f840112610e3957610e38610e14565b5b8235905067ffffffffffffffff811115610e5657610e55610e19565b5b602083019150836020820283011115610e7257610e71610e1e565b5b9250929050565b60008060208385031215610e9057610e8f610e0a565b5b600083013567ffffffffffffffff811115610eae57610ead610e0f565b5b610eba85828601610e23565b92509250509250929050565b6000819050919050565b610ed981610ec6565b82525050565b6000602082019050610ef46000830184610ed0565b92915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b610f4882610eff565b810181811067ffffffffffffffff82111715610f6757610f66610f10565b5b80604052505050565b6000610f7a610e00565b9050610f868282610f3f565b919050565b600067ffffffffffffffff821115610fa657610fa5610f10565b5b610faf82610eff565b9050602081019050919050565b82818337600083830152505050565b6000610fde610fd984610f8b565b610f70565b905082815260208101848484011115610ffa57610ff9610efa565b5b611005848285610fbc565b509392505050565b600082601f83011261102257611021610e14565b5b8135611032848260208601610fcb565b91505092915050565b60006020828403121561105157611050610e0a565b5b600082013567ffffffffffffffff81111561106f5761106e610e0f565b5b61107b8482850161100d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006110af82611084565b9050919050565b6110bf816110a4565b82525050565b60006020820190506110da60008301846110b6565b92915050565b6110e981610ec6565b81146110f457600080fd5b50565b600081359050611106816110e0565b92915050565b60006020828403121561112257611121610e0a565b5b6000611130848285016110f7565b91505092915050565b611142816110a4565b811461114d57600080fd5b50565b60008135905061115f81611139565b92915050565b60006020828403121561117b5761117a610e0a565b5b600061118984828501611150565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111cc5780820151818401526020810190506111b1565b838111156111db576000848401525b50505050565b60006111ec82611192565b6111f6818561119d565b93506112068185602086016111ae565b61120f81610eff565b840191505092915050565b6000602082019050818103600083015261123481846111e1565b905092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000611272601f8361119d565b915061127d8261123c565b602082019050919050565b600060208201905081810360008301526112a181611265565b9050919050565b6000815190506112b781611139565b92915050565b6000602082840312156112d3576112d2610e0a565b5b60006112e1848285016112a8565b91505092915050565b7f4e6f74206f776e65720000000000000000000000000000000000000000000000600082015250565b600061132060098361119d565b915061132b826112ea565b602082019050919050565b6000602082019050818103600083015261134f81611313565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006113bf82610ec6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156113f2576113f1611385565b5b600182019050919050565b600061140882610ec6565b915061141383610ec6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561144c5761144b611385565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061149182610ec6565b915061149c83610ec6565b9250826114ac576114ab611457565b5b828204905092915050565b7f4d696e74206973206e6f74206163746976650000000000000000000000000000600082015250565b60006114ed60128361119d565b91506114f8826114b7565b602082019050919050565b6000602082019050818103600083015261151c816114e0565b9050919050565b7f41646472657373206e6f7420696e207468652077686974656c69737400000000600082015250565b6000611559601c8361119d565b915061156482611523565b602082019050919050565b600060208201905081810360008301526115888161154c565b9050919050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b60006115c560128361119d565b91506115d08261158f565b602082019050919050565b600060208201905081810360008301526115f4816115b8565b9050919050565b7f496e76616c696420746f6b656e20696400000000000000000000000000000000600082015250565b600061163160108361119d565b915061163c826115fb565b602082019050919050565b6000602082019050818103600083015261166081611624565b9050919050565b7f496e73756666696369656e74207061796d656e74000000000000000000000000600082015250565b600061169d60148361119d565b91506116a882611667565b602082019050919050565b600060208201905081810360008301526116cc81611690565b9050919050565b60006116de82610ec6565b91506116e983610ec6565b9250828210156116fc576116fb611385565b5b828203905092915050565b600081905092915050565b600061171d82611192565b6117278185611707565b93506117378185602086016111ae565b80840191505092915050565b7f2e746f6b656e2e6a736f6e000000000000000000000000000000000000000000600082015250565b6000611779600b83611707565b915061178482611743565b600b82019050919050565b600061179b8284611712565b91506117a68261176c565b915081905092915050565b60006040820190506117c660008301856110b6565b6117d36020830184610ed0565b9392505050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000611810601d8361119d565b915061181b826117da565b602082019050919050565b6000602082019050818103600083015261183f81611803565b9050919050565b600081905092915050565b50565b6000611861600083611846565b915061186c82611851565b600082019050919050565b600061188282611854565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b60006118e8603a8361119d565b91506118f38261188c565b604082019050919050565b60006020820190508181036000830152611917816118db565b9050919050565b6000604082019050818103600083015261193881856111e1565b9050818103602083015261194c81846111e1565b90509392505050565b600061196082610ec6565b915061196b83610ec6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156119a05761199f611385565b5b828201905092915050565b60006119be6119b984610f8b565b610f70565b9050828152602081018484840111156119da576119d9610efa565b5b6119e58482856111ae565b509392505050565b600082601f830112611a0257611a01610e14565b5b8151611a128482602086016119ab565b91505092915050565b600060208284031215611a3157611a30610e0a565b5b600082015167ffffffffffffffff811115611a4f57611a4e610e0f565b5b611a5b848285016119ed565b9150509291505056fea2646970667358221220aaf865732f2b7df9af0bb1242178d3c84ead269764e88196d33fb0a5296da0e064736f6c6343000809003300000000000000000000000043955024b1985e2b933a59021500ae5f55b0409100000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569683461647032686c763569627a72676166797137716e32326c7a636a686933626279726e72637166656269666e647562776c6f752f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106100ab5760003560e01c8063804f43cd11610064578063804f43cd146101b6578063a0712d68146101e1578063bb660c0a146101fd578063c87b56dd1461023a578063d4ddce8a14610277578063dfc52cad146102b4576100b5565b806309a96534146100cc57806318160ddd146100f557806332cb6b0c146101205780633ccfd60b1461014b57806355f804b3146101625780635c60da1b1461018b576100b5565b366100b557600080fd5b3480156100c157600080fd5b506100ca6102df565b005b3480156100d857600080fd5b506100f360048036038101906100ee9190610e79565b610311565b005b34801561010157600080fd5b5061010a6104ba565b6040516101179190610edf565b60405180910390f35b34801561012c57600080fd5b506101356104cd565b6040516101429190610edf565b60405180910390f35b34801561015757600080fd5b506101606104d2565b005b34801561016e57600080fd5b506101896004803603810190610184919061103b565b6105cb565b005b34801561019757600080fd5b506101a06106d9565b6040516101ad91906110c5565b60405180910390f35b3480156101c257600080fd5b506101cb610730565b6040516101d89190610edf565b60405180910390f35b6101fb60048036038101906101f6919061110c565b610738565b005b34801561020957600080fd5b50610224600480360381019061021f9190611165565b610971565b6040516102319190610edf565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c919061110c565b610a08565b60405161026e919061121a565b60405180910390f35b34801561028357600080fd5b5061029e6004803603810190610299919061110c565b610a39565b6040516102ab9190610edf565b60405180910390f35b3480156102c057600080fd5b506102c9610a58565b6040516102d69190610edf565b60405180910390f35b60006102e96106d9565b90503660008037600080366000845af43d6000803e806000811461030c573d6000f35b3d6000fd5b6002620186a0541415610359576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161035090611288565b60405180910390fd5b6002620186a08190555061036b610a6a565b73ffffffffffffffffffffffffffffffffffffffff166313effa0f6040518163ffffffff1660e01b815260040160206040518083038186803b1580156103b057600080fd5b505afa1580156103c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103e891906112bd565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610455576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161044c90611336565b60405180910390fd5b60005b828290508110156104ab57600083838381811061047857610477611356565b5b90506020020135905061048b3382610a72565b610497620186a6610aea565b5080806104a3906113b4565b915050610458565b506001620186a0819055505050565b60006104c8620186a6610b00565b905090565b605c81565b6002620186a054141561051a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161051190611288565b60405180910390fd5b6002620186a0819055506000479050610552610534610b0e565b6064605a8461054391906113fd565b61054d9190611486565b610b9a565b61058873e69eb4946188c5085f38e683b61b892a96c27124606460058461057991906113fd565b6105839190611486565b610b9a565b6105be735f5e3148532d1682866131a1971bb74a92d9637660646005846105af91906113fd565b6105b99190611486565b610b9a565b506001620186a081905550565b6105d3610a6a565b73ffffffffffffffffffffffffffffffffffffffff166313effa0f6040518163ffffffff1660e01b815260040160206040518083038186803b15801561061857600080fd5b505afa15801561062c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061065091906112bd565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146106bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106b490611336565b60405180910390fd5b6106d68160405180602001604052806000815250610c8e565b50565b60006107077f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc60001b610a60565b60000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620186a15481565b6002620186a0541415610780576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077790611288565b60405180910390fd5b6002620186a081905550620186a1544210156107d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c890611503565b60405180910390fd5b620186a2544210156108395760016107e833610971565b106107fd576107f8336001610d06565b610838565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082f9061156f565b60405180910390fd5b5b605c6108436104ba565b10610883576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087a906115db565b60405180910390fd5b605c81106108c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bd90611647565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108e5610b0e565b73ffffffffffffffffffffffffffffffffffffffff16148061090f575061090b81610a39565b3410155b61094e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610945906116b3565b60405180910390fd5b6109583382610a72565b610964620186a6610aea565b6001620186a08190555050565b6000620186a360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054620186a460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610a0191906116d3565b9050919050565b6060610a1382610d62565b604051602001610a23919061178f565b6040516020818303038152906040529050919050565b6000620186a56000838152602001908152602001600020549050919050565b620186a25481565b6000819050919050565b600030905090565b610a7a610a6a565b73ffffffffffffffffffffffffffffffffffffffff16633dc8ded783836040518363ffffffff1660e01b8152600401610ab49291906117b1565b600060405180830381600087803b158015610ace57600080fd5b505af1158015610ae2573d6000803e3d6000fd5b505050505050565b6001816000016000828254019250508190555050565b600081600001549050919050565b6000610b18610a6a565b73ffffffffffffffffffffffffffffffffffffffff166313effa0f6040518163ffffffff1660e01b815260040160206040518083038186803b158015610b5d57600080fd5b505afa158015610b71573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b9591906112bd565b905090565b80471015610bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd490611826565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051610c0390611877565b60006040518083038185875af1925050503d8060008114610c40576040519150601f19603f3d011682016040523d82523d6000602084013e610c45565b606091505b5050905080610c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c80906118fe565b60405180910390fd5b505050565b610c96610a6a565b73ffffffffffffffffffffffffffffffffffffffff166301278b0283836040518363ffffffff1660e01b8152600401610cd092919061191e565b600060405180830381600087803b158015610cea57600080fd5b505af1158015610cfe573d6000803e3d6000fd5b505050505050565b80620186a360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d579190611955565b925050819055505050565b6060610d6c610a6a565b73ffffffffffffffffffffffffffffffffffffffff1663f5dbba9d836040518263ffffffff1660e01b8152600401610da49190610edf565b60006040518083038186803b158015610dbc57600080fd5b505afa158015610dd0573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190610df99190611a1b565b9050919050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b60008083601f840112610e3957610e38610e14565b5b8235905067ffffffffffffffff811115610e5657610e55610e19565b5b602083019150836020820283011115610e7257610e71610e1e565b5b9250929050565b60008060208385031215610e9057610e8f610e0a565b5b600083013567ffffffffffffffff811115610eae57610ead610e0f565b5b610eba85828601610e23565b92509250509250929050565b6000819050919050565b610ed981610ec6565b82525050565b6000602082019050610ef46000830184610ed0565b92915050565b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b610f4882610eff565b810181811067ffffffffffffffff82111715610f6757610f66610f10565b5b80604052505050565b6000610f7a610e00565b9050610f868282610f3f565b919050565b600067ffffffffffffffff821115610fa657610fa5610f10565b5b610faf82610eff565b9050602081019050919050565b82818337600083830152505050565b6000610fde610fd984610f8b565b610f70565b905082815260208101848484011115610ffa57610ff9610efa565b5b611005848285610fbc565b509392505050565b600082601f83011261102257611021610e14565b5b8135611032848260208601610fcb565b91505092915050565b60006020828403121561105157611050610e0a565b5b600082013567ffffffffffffffff81111561106f5761106e610e0f565b5b61107b8482850161100d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006110af82611084565b9050919050565b6110bf816110a4565b82525050565b60006020820190506110da60008301846110b6565b92915050565b6110e981610ec6565b81146110f457600080fd5b50565b600081359050611106816110e0565b92915050565b60006020828403121561112257611121610e0a565b5b6000611130848285016110f7565b91505092915050565b611142816110a4565b811461114d57600080fd5b50565b60008135905061115f81611139565b92915050565b60006020828403121561117b5761117a610e0a565b5b600061118984828501611150565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156111cc5780820151818401526020810190506111b1565b838111156111db576000848401525b50505050565b60006111ec82611192565b6111f6818561119d565b93506112068185602086016111ae565b61120f81610eff565b840191505092915050565b6000602082019050818103600083015261123481846111e1565b905092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000611272601f8361119d565b915061127d8261123c565b602082019050919050565b600060208201905081810360008301526112a181611265565b9050919050565b6000815190506112b781611139565b92915050565b6000602082840312156112d3576112d2610e0a565b5b60006112e1848285016112a8565b91505092915050565b7f4e6f74206f776e65720000000000000000000000000000000000000000000000600082015250565b600061132060098361119d565b915061132b826112ea565b602082019050919050565b6000602082019050818103600083015261134f81611313565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006113bf82610ec6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156113f2576113f1611385565b5b600182019050919050565b600061140882610ec6565b915061141383610ec6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561144c5761144b611385565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061149182610ec6565b915061149c83610ec6565b9250826114ac576114ab611457565b5b828204905092915050565b7f4d696e74206973206e6f74206163746976650000000000000000000000000000600082015250565b60006114ed60128361119d565b91506114f8826114b7565b602082019050919050565b6000602082019050818103600083015261151c816114e0565b9050919050565b7f41646472657373206e6f7420696e207468652077686974656c69737400000000600082015250565b6000611559601c8361119d565b915061156482611523565b602082019050919050565b600060208201905081810360008301526115888161154c565b9050919050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b60006115c560128361119d565b91506115d08261158f565b602082019050919050565b600060208201905081810360008301526115f4816115b8565b9050919050565b7f496e76616c696420746f6b656e20696400000000000000000000000000000000600082015250565b600061163160108361119d565b915061163c826115fb565b602082019050919050565b6000602082019050818103600083015261166081611624565b9050919050565b7f496e73756666696369656e74207061796d656e74000000000000000000000000600082015250565b600061169d60148361119d565b91506116a882611667565b602082019050919050565b600060208201905081810360008301526116cc81611690565b9050919050565b60006116de82610ec6565b91506116e983610ec6565b9250828210156116fc576116fb611385565b5b828203905092915050565b600081905092915050565b600061171d82611192565b6117278185611707565b93506117378185602086016111ae565b80840191505092915050565b7f2e746f6b656e2e6a736f6e000000000000000000000000000000000000000000600082015250565b6000611779600b83611707565b915061178482611743565b600b82019050919050565b600061179b8284611712565b91506117a68261176c565b915081905092915050565b60006040820190506117c660008301856110b6565b6117d36020830184610ed0565b9392505050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000611810601d8361119d565b915061181b826117da565b602082019050919050565b6000602082019050818103600083015261183f81611803565b9050919050565b600081905092915050565b50565b6000611861600083611846565b915061186c82611851565b600082019050919050565b600061188282611854565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b60006118e8603a8361119d565b91506118f38261188c565b604082019050919050565b60006020820190508181036000830152611917816118db565b9050919050565b6000604082019050818103600083015261193881856111e1565b9050818103602083015261194c81846111e1565b90509392505050565b600061196082610ec6565b915061196b83610ec6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156119a05761199f611385565b5b828201905092915050565b60006119be6119b984610f8b565b610f70565b9050828152602081018484840111156119da576119d9610efa565b5b6119e58482856111ae565b509392505050565b600082601f830112611a0257611a01610e14565b5b8151611a128482602086016119ab565b91505092915050565b600060208284031215611a3157611a30610e0a565b5b600082015167ffffffffffffffff811115611a4f57611a4e610e0f565b5b611a5b848285016119ed565b9150509291505056fea2646970667358221220aaf865732f2b7df9af0bb1242178d3c84ead269764e88196d33fb0a5296da0e064736f6c63430008090033

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

00000000000000000000000043955024b1985e2b933a59021500ae5f55b0409100000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000043697066733a2f2f62616679626569683461647032686c763569627a72676166797137716e32326c7a636a686933626279726e72637166656269666e647562776c6f752f0000000000000000000000000000000000000000000000000000000000

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

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 00000000000000000000000043955024b1985e2b933a59021500ae5f55b04091
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [3] : 697066733a2f2f62616679626569683461647032686c763569627a7267616679
Arg [4] : 7137716e32326c7a636a686933626279726e72637166656269666e647562776c
Arg [5] : 6f752f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

70125:12768:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57792:8;;;70125:12768;;;;;;;;;;;57656:11;:9;:11::i;:::-;70125:12768;81742:230;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;81978:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81023:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82593:297;;;;;;;;;;;;;:::i;:::-;;82106:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52373:160;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70241:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;81114:622;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;80555:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;82225:150;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;80898:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70339:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56484:930;56533:12;56548:16;:14;:16::i;:::-;56533:31;;56849:14;56846:1;56843;56830:34;57057:1;57054;57038:14;57035:1;57029:4;57022:5;57009:50;57136:16;57133:1;57130;57115:38;57176:6;57250:1;57245:68;;;;57364:16;57361:1;57354:27;57245:68;57281:16;57278:1;57271:27;81742:230;59570:1;60166:7;;:19;;60158:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;59570:1;60299:7;:18;;;;53736:6:::1;:4;:6::i;:::-;:14;;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53722:30;;:10;:30;;;53714:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;81827:9:::2;81822:145;81846:3;;:10;;81842:1;:14;81822:145;;;81872:10;81885:3;;81889:1;81885:6;;;;;;;:::i;:::-;;;;;;;;81872:19;;81902:21;81908:10;81920:2;81902:5;:21::i;:::-;81934:25;:13;:23;:25::i;:::-;81863:104;81858:3;;;;;:::i;:::-;;;;81822:145;;;;59526:1:::0;60478:7;:22;;;;81742:230;;:::o;81978:96::-;82022:7;82045:23;:13;:21;:23::i;:::-;82038:30;;81978:96;:::o;81023:39::-;81060:2;81023:39;:::o;82593:297::-;59570:1;60166:7;;:19;;60158:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;59570:1;60299:7;:18;;;;82640:15:::1;82658:21;82640:39;;82688:56;82714:8;:6;:8::i;:::-;82740:3;82735:2;82725:7;:12;;;;:::i;:::-;:18;;;;:::i;:::-;82688:17;:56::i;:::-;82753:61;82448:42;82810:3;82806:1;82796:7;:11;;;;:::i;:::-;:17;;;;:::i;:::-;82753;:61::i;:::-;82823;82544:42;82880:3;82876:1;82866:7;:11;;;;:::i;:::-;:17;;;;:::i;:::-;82823;:61::i;:::-;82633:257;59526:1:::0;60478:7;:22;;;;82593:297::o;82106:113::-;53736:6;:4;:6::i;:::-;:14;;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;53722:30;;:10;:30;;;53714:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;82182:31:::1;82194:14;82182:31;;;;;;;;;;;::::0;:11:::1;:31::i;:::-;82106:113:::0;:::o;52373:160::-;52420:7;52460:59;52253:66;52498:20;;52460:37;:59::i;:::-;:65;;;;;;;;;;;;52440:85;;52373:160;:::o;70241:41::-;;;;:::o;81114:622::-;59570:1;60166:7;;:19;;60158:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;59570:1;60299:7;:18;;;;81202:13:::1;;81183:15;:32;;81175:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;81269:7;;81251:15;:25;81247:202;;;81323:1;81291:28;81308:10;81291:16;:28::i;:::-;:33;81287:155;;81337:30;81353:10;81365:1;81337:15;:30::i;:::-;81287:155;;;81394:38;;;;;;;;;;:::i;:::-;;;;;;;;81287:155;81247:202;81060:2;81465:13;:11;:13::i;:::-;:26;81457:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;81060:2;81531;:15;81523:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;81597:10;81585:22;;:8;:6;:8::i;:::-;:22;;;81584:57;;;;81626:14;81637:2;81626:10;:14::i;:::-;81613:9;:27;;81584:57;81576:90;;;;;;;;;;;;:::i;:::-;;;;;;;;;81675:21;81681:10;81693:2;81675:5;:21::i;:::-;81705:25;:13;:23;:25::i;:::-;59526:1:::0;60478:7;:22;;;;81114:622;:::o;80555:142::-;80618:7;80671:12;:20;80684:6;80671:20;;;;;;;;;;;;;;;;80641:19;:27;80661:6;80641:27;;;;;;;;;;;;;;;;:50;;;;:::i;:::-;80634:57;;80555:142;;;:::o;82225:150::-;82281:13;82334:18;82344:7;82334:9;:18::i;:::-;82317:51;;;;;;;;:::i;:::-;;;;;;;;;;;;;82303:66;;82225:150;;;:::o;80898:98::-;80951:7;80974:12;:16;80987:2;80974:16;;;;;;;;;;;;80967:23;;80898:98;;;:::o;70339:35::-;;;;:::o;51110:151::-;51171:21;51239:4;51229:14;;51110:151;;;:::o;53972:121::-;54010:20;54079:4;54043:42;;53972:121;:::o;54668:88::-;54727:6;:4;:6::i;:::-;:13;;;54741:2;54745;54727:21;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54668:88;;:::o;61462:127::-;61569:1;61551:7;:14;;;:19;;;;;;;;;;;61462:127;:::o;61340:114::-;61405:7;61432;:14;;;61425:21;;61340:114;;;:::o;54238:92::-;54279:7;54306:6;:4;:6::i;:::-;:14;;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;54299:23;;54238:92;:::o;64029:317::-;64144:6;64119:21;:31;;64111:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;64198:12;64216:9;:14;;64238:6;64216:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64197:52;;;64268:7;64260:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;64100:246;64029:317;;:::o;56120:154::-;56225:6;:4;:6::i;:::-;:19;;;56245:6;56253:12;56225:41;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56120:154;;:::o;80703:106::-;80798:5;80774:12;:20;80787:6;80774:20;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;80703:106;;:::o;55074:126::-;55133:13;55166:6;:4;:6::i;:::-;:17;;;55184:7;55166:26;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;55159:33;;55074:126;;;:::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:117;443:1;440;433:12;457:117;566:1;563;556:12;580:117;689:1;686;679:12;720:568;793:8;803:6;853:3;846:4;838:6;834:17;830:27;820:122;;861:79;;:::i;:::-;820:122;974:6;961:20;951:30;;1004:18;996:6;993:30;990:117;;;1026:79;;:::i;:::-;990:117;1140:4;1132:6;1128:17;1116:29;;1194:3;1186:4;1178:6;1174:17;1164:8;1160:32;1157:41;1154:128;;;1201:79;;:::i;:::-;1154:128;720:568;;;;;:::o;1294:559::-;1380:6;1388;1437:2;1425:9;1416:7;1412:23;1408:32;1405:119;;;1443:79;;:::i;:::-;1405:119;1591:1;1580:9;1576:17;1563:31;1621:18;1613:6;1610:30;1607:117;;;1643:79;;:::i;:::-;1607:117;1756:80;1828:7;1819:6;1808:9;1804:22;1756:80;:::i;:::-;1738:98;;;;1534:312;1294:559;;;;;:::o;1859:77::-;1896:7;1925:5;1914:16;;1859:77;;;:::o;1942:118::-;2029:24;2047:5;2029:24;:::i;:::-;2024:3;2017:37;1942:118;;:::o;2066:222::-;2159:4;2197:2;2186:9;2182:18;2174:26;;2210:71;2278:1;2267:9;2263:17;2254:6;2210:71;:::i;:::-;2066:222;;;;:::o;2294:117::-;2403:1;2400;2393:12;2417:102;2458:6;2509:2;2505:7;2500:2;2493:5;2489:14;2485:28;2475:38;;2417:102;;;:::o;2525:180::-;2573:77;2570:1;2563:88;2670:4;2667:1;2660:15;2694:4;2691:1;2684:15;2711:281;2794:27;2816:4;2794:27;:::i;:::-;2786:6;2782:40;2924:6;2912:10;2909:22;2888:18;2876:10;2873:34;2870:62;2867:88;;;2935:18;;:::i;:::-;2867:88;2975:10;2971:2;2964:22;2754:238;2711:281;;:::o;2998:129::-;3032:6;3059:20;;:::i;:::-;3049:30;;3088:33;3116:4;3108:6;3088:33;:::i;:::-;2998:129;;;:::o;3133:308::-;3195:4;3285:18;3277:6;3274:30;3271:56;;;3307:18;;:::i;:::-;3271:56;3345:29;3367:6;3345:29;:::i;:::-;3337:37;;3429:4;3423;3419:15;3411:23;;3133:308;;;:::o;3447:154::-;3531:6;3526:3;3521;3508:30;3593:1;3584:6;3579:3;3575:16;3568:27;3447:154;;;:::o;3607:412::-;3685:5;3710:66;3726:49;3768:6;3726:49;:::i;:::-;3710:66;:::i;:::-;3701:75;;3799:6;3792:5;3785:21;3837:4;3830:5;3826:16;3875:3;3866:6;3861:3;3857:16;3854:25;3851:112;;;3882:79;;:::i;:::-;3851:112;3972:41;4006:6;4001:3;3996;3972:41;:::i;:::-;3691:328;3607:412;;;;;:::o;4039:340::-;4095:5;4144:3;4137:4;4129:6;4125:17;4121:27;4111:122;;4152:79;;:::i;:::-;4111:122;4269:6;4256:20;4294:79;4369:3;4361:6;4354:4;4346:6;4342:17;4294:79;:::i;:::-;4285:88;;4101:278;4039:340;;;;:::o;4385:509::-;4454:6;4503:2;4491:9;4482:7;4478:23;4474:32;4471:119;;;4509:79;;:::i;:::-;4471:119;4657:1;4646:9;4642:17;4629:31;4687:18;4679:6;4676:30;4673:117;;;4709:79;;:::i;:::-;4673:117;4814:63;4869:7;4860:6;4849:9;4845:22;4814:63;:::i;:::-;4804:73;;4600:287;4385:509;;;;:::o;4900:126::-;4937:7;4977:42;4970:5;4966:54;4955:65;;4900:126;;;:::o;5032:96::-;5069:7;5098:24;5116:5;5098:24;:::i;:::-;5087:35;;5032:96;;;:::o;5134:118::-;5221:24;5239:5;5221:24;:::i;:::-;5216:3;5209:37;5134:118;;:::o;5258:222::-;5351:4;5389:2;5378:9;5374:18;5366:26;;5402:71;5470:1;5459:9;5455:17;5446:6;5402:71;:::i;:::-;5258:222;;;;:::o;5486:122::-;5559:24;5577:5;5559:24;:::i;:::-;5552:5;5549:35;5539:63;;5598:1;5595;5588:12;5539:63;5486:122;:::o;5614:139::-;5660:5;5698:6;5685:20;5676:29;;5714:33;5741:5;5714:33;:::i;:::-;5614:139;;;;:::o;5759:329::-;5818:6;5867:2;5855:9;5846:7;5842:23;5838:32;5835:119;;;5873:79;;:::i;:::-;5835:119;5993:1;6018:53;6063:7;6054:6;6043:9;6039:22;6018:53;:::i;:::-;6008:63;;5964:117;5759:329;;;;:::o;6094:122::-;6167:24;6185:5;6167:24;:::i;:::-;6160:5;6157:35;6147:63;;6206:1;6203;6196:12;6147:63;6094:122;:::o;6222:139::-;6268:5;6306:6;6293:20;6284:29;;6322:33;6349:5;6322:33;:::i;:::-;6222:139;;;;:::o;6367:329::-;6426:6;6475:2;6463:9;6454:7;6450:23;6446:32;6443:119;;;6481:79;;:::i;:::-;6443:119;6601:1;6626:53;6671:7;6662:6;6651:9;6647:22;6626:53;:::i;:::-;6616:63;;6572:117;6367:329;;;;:::o;6702:99::-;6754:6;6788:5;6782:12;6772:22;;6702:99;;;:::o;6807:169::-;6891:11;6925:6;6920:3;6913:19;6965:4;6960:3;6956:14;6941:29;;6807:169;;;;:::o;6982:307::-;7050:1;7060:113;7074:6;7071:1;7068:13;7060:113;;;7159:1;7154:3;7150:11;7144:18;7140:1;7135:3;7131:11;7124:39;7096:2;7093:1;7089:10;7084:15;;7060:113;;;7191:6;7188:1;7185:13;7182:101;;;7271:1;7262:6;7257:3;7253:16;7246:27;7182:101;7031:258;6982:307;;;:::o;7295:364::-;7383:3;7411:39;7444:5;7411:39;:::i;:::-;7466:71;7530:6;7525:3;7466:71;:::i;:::-;7459:78;;7546:52;7591:6;7586:3;7579:4;7572:5;7568:16;7546:52;:::i;:::-;7623:29;7645:6;7623:29;:::i;:::-;7618:3;7614:39;7607:46;;7387:272;7295:364;;;;:::o;7665:313::-;7778:4;7816:2;7805:9;7801:18;7793:26;;7865:9;7859:4;7855:20;7851:1;7840:9;7836:17;7829:47;7893:78;7966:4;7957:6;7893:78;:::i;:::-;7885:86;;7665:313;;;;:::o;7984:181::-;8124:33;8120:1;8112:6;8108:14;8101:57;7984:181;:::o;8171:366::-;8313:3;8334:67;8398:2;8393:3;8334:67;:::i;:::-;8327:74;;8410:93;8499:3;8410:93;:::i;:::-;8528:2;8523:3;8519:12;8512:19;;8171:366;;;:::o;8543:419::-;8709:4;8747:2;8736:9;8732:18;8724:26;;8796:9;8790:4;8786:20;8782:1;8771:9;8767:17;8760:47;8824:131;8950:4;8824:131;:::i;:::-;8816:139;;8543:419;;;:::o;8968:143::-;9025:5;9056:6;9050:13;9041:22;;9072:33;9099:5;9072:33;:::i;:::-;8968:143;;;;:::o;9117:351::-;9187:6;9236:2;9224:9;9215:7;9211:23;9207:32;9204:119;;;9242:79;;:::i;:::-;9204:119;9362:1;9387:64;9443:7;9434:6;9423:9;9419:22;9387:64;:::i;:::-;9377:74;;9333:128;9117:351;;;;:::o;9474:159::-;9614:11;9610:1;9602:6;9598:14;9591:35;9474:159;:::o;9639:365::-;9781:3;9802:66;9866:1;9861:3;9802:66;:::i;:::-;9795:73;;9877:93;9966:3;9877:93;:::i;:::-;9995:2;9990:3;9986:12;9979:19;;9639:365;;;:::o;10010:419::-;10176:4;10214:2;10203:9;10199:18;10191:26;;10263:9;10257:4;10253:20;10249:1;10238:9;10234:17;10227:47;10291:131;10417:4;10291:131;:::i;:::-;10283:139;;10010:419;;;:::o;10435:180::-;10483:77;10480:1;10473:88;10580:4;10577:1;10570:15;10604:4;10601:1;10594:15;10621:180;10669:77;10666:1;10659:88;10766:4;10763:1;10756:15;10790:4;10787:1;10780:15;10807:233;10846:3;10869:24;10887:5;10869:24;:::i;:::-;10860:33;;10915:66;10908:5;10905:77;10902:103;;;10985:18;;:::i;:::-;10902:103;11032:1;11025:5;11021:13;11014:20;;10807:233;;;:::o;11046:348::-;11086:7;11109:20;11127:1;11109:20;:::i;:::-;11104:25;;11143:20;11161:1;11143:20;:::i;:::-;11138:25;;11331:1;11263:66;11259:74;11256:1;11253:81;11248:1;11241:9;11234:17;11230:105;11227:131;;;11338:18;;:::i;:::-;11227:131;11386:1;11383;11379:9;11368:20;;11046:348;;;;:::o;11400:180::-;11448:77;11445:1;11438:88;11545:4;11542:1;11535:15;11569:4;11566:1;11559:15;11586:185;11626:1;11643:20;11661:1;11643:20;:::i;:::-;11638:25;;11677:20;11695:1;11677:20;:::i;:::-;11672:25;;11716:1;11706:35;;11721:18;;:::i;:::-;11706:35;11763:1;11760;11756:9;11751:14;;11586:185;;;;:::o;11777:168::-;11917:20;11913:1;11905:6;11901:14;11894:44;11777:168;:::o;11951:366::-;12093:3;12114:67;12178:2;12173:3;12114:67;:::i;:::-;12107:74;;12190:93;12279:3;12190:93;:::i;:::-;12308:2;12303:3;12299:12;12292:19;;11951:366;;;:::o;12323:419::-;12489:4;12527:2;12516:9;12512:18;12504:26;;12576:9;12570:4;12566:20;12562:1;12551:9;12547:17;12540:47;12604:131;12730:4;12604:131;:::i;:::-;12596:139;;12323:419;;;:::o;12748:178::-;12888:30;12884:1;12876:6;12872:14;12865:54;12748:178;:::o;12932:366::-;13074:3;13095:67;13159:2;13154:3;13095:67;:::i;:::-;13088:74;;13171:93;13260:3;13171:93;:::i;:::-;13289:2;13284:3;13280:12;13273:19;;12932:366;;;:::o;13304:419::-;13470:4;13508:2;13497:9;13493:18;13485:26;;13557:9;13551:4;13547:20;13543:1;13532:9;13528:17;13521:47;13585:131;13711:4;13585:131;:::i;:::-;13577:139;;13304:419;;;:::o;13729:168::-;13869:20;13865:1;13857:6;13853:14;13846:44;13729:168;:::o;13903:366::-;14045:3;14066:67;14130:2;14125:3;14066:67;:::i;:::-;14059:74;;14142:93;14231:3;14142:93;:::i;:::-;14260:2;14255:3;14251:12;14244:19;;13903:366;;;:::o;14275:419::-;14441:4;14479:2;14468:9;14464:18;14456:26;;14528:9;14522:4;14518:20;14514:1;14503:9;14499:17;14492:47;14556:131;14682:4;14556:131;:::i;:::-;14548:139;;14275:419;;;:::o;14700:166::-;14840:18;14836:1;14828:6;14824:14;14817:42;14700:166;:::o;14872:366::-;15014:3;15035:67;15099:2;15094:3;15035:67;:::i;:::-;15028:74;;15111:93;15200:3;15111:93;:::i;:::-;15229:2;15224:3;15220:12;15213:19;;14872:366;;;:::o;15244:419::-;15410:4;15448:2;15437:9;15433:18;15425:26;;15497:9;15491:4;15487:20;15483:1;15472:9;15468:17;15461:47;15525:131;15651:4;15525:131;:::i;:::-;15517:139;;15244:419;;;:::o;15669:170::-;15809:22;15805:1;15797:6;15793:14;15786:46;15669:170;:::o;15845:366::-;15987:3;16008:67;16072:2;16067:3;16008:67;:::i;:::-;16001:74;;16084:93;16173:3;16084:93;:::i;:::-;16202:2;16197:3;16193:12;16186:19;;15845:366;;;:::o;16217:419::-;16383:4;16421:2;16410:9;16406:18;16398:26;;16470:9;16464:4;16460:20;16456:1;16445:9;16441:17;16434:47;16498:131;16624:4;16498:131;:::i;:::-;16490:139;;16217:419;;;:::o;16642:191::-;16682:4;16702:20;16720:1;16702:20;:::i;:::-;16697:25;;16736:20;16754:1;16736:20;:::i;:::-;16731:25;;16775:1;16772;16769:8;16766:34;;;16780:18;;:::i;:::-;16766:34;16825:1;16822;16818:9;16810:17;;16642:191;;;;:::o;16839:148::-;16941:11;16978:3;16963:18;;16839:148;;;;:::o;16993:377::-;17099:3;17127:39;17160:5;17127:39;:::i;:::-;17182:89;17264:6;17259:3;17182:89;:::i;:::-;17175:96;;17280:52;17325:6;17320:3;17313:4;17306:5;17302:16;17280:52;:::i;:::-;17357:6;17352:3;17348:16;17341:23;;17103:267;16993:377;;;;:::o;17376:161::-;17516:13;17512:1;17504:6;17500:14;17493:37;17376:161;:::o;17543:402::-;17703:3;17724:85;17806:2;17801:3;17724:85;:::i;:::-;17717:92;;17818:93;17907:3;17818:93;:::i;:::-;17936:2;17931:3;17927:12;17920:19;;17543:402;;;:::o;17951:541::-;18184:3;18206:95;18297:3;18288:6;18206:95;:::i;:::-;18199:102;;18318:148;18462:3;18318:148;:::i;:::-;18311:155;;18483:3;18476:10;;17951:541;;;;:::o;18498:332::-;18619:4;18657:2;18646:9;18642:18;18634:26;;18670:71;18738:1;18727:9;18723:17;18714:6;18670:71;:::i;:::-;18751:72;18819:2;18808:9;18804:18;18795:6;18751:72;:::i;:::-;18498:332;;;;;:::o;18836:179::-;18976:31;18972:1;18964:6;18960:14;18953:55;18836:179;:::o;19021:366::-;19163:3;19184:67;19248:2;19243:3;19184:67;:::i;:::-;19177:74;;19260:93;19349:3;19260:93;:::i;:::-;19378:2;19373:3;19369:12;19362:19;;19021:366;;;:::o;19393:419::-;19559:4;19597:2;19586:9;19582:18;19574:26;;19646:9;19640:4;19636:20;19632:1;19621:9;19617:17;19610:47;19674:131;19800:4;19674:131;:::i;:::-;19666:139;;19393:419;;;:::o;19818:147::-;19919:11;19956:3;19941:18;;19818:147;;;;:::o;19971:114::-;;:::o;20091:398::-;20250:3;20271:83;20352:1;20347:3;20271:83;:::i;:::-;20264:90;;20363:93;20452:3;20363:93;:::i;:::-;20481:1;20476:3;20472:11;20465:18;;20091:398;;;:::o;20495:379::-;20679:3;20701:147;20844:3;20701:147;:::i;:::-;20694:154;;20865:3;20858:10;;20495:379;;;:::o;20880:245::-;21020:34;21016:1;21008:6;21004:14;20997:58;21089:28;21084:2;21076:6;21072:15;21065:53;20880:245;:::o;21131:366::-;21273:3;21294:67;21358:2;21353:3;21294:67;:::i;:::-;21287:74;;21370:93;21459:3;21370:93;:::i;:::-;21488:2;21483:3;21479:12;21472:19;;21131:366;;;:::o;21503:419::-;21669:4;21707:2;21696:9;21692:18;21684:26;;21756:9;21750:4;21746:20;21742:1;21731:9;21727:17;21720:47;21784:131;21910:4;21784:131;:::i;:::-;21776:139;;21503:419;;;:::o;21928:514::-;22089:4;22127:2;22116:9;22112:18;22104:26;;22176:9;22170:4;22166:20;22162:1;22151:9;22147:17;22140:47;22204:78;22277:4;22268:6;22204:78;:::i;:::-;22196:86;;22329:9;22323:4;22319:20;22314:2;22303:9;22299:18;22292:48;22357:78;22430:4;22421:6;22357:78;:::i;:::-;22349:86;;21928:514;;;;;:::o;22448:305::-;22488:3;22507:20;22525:1;22507:20;:::i;:::-;22502:25;;22541:20;22559:1;22541:20;:::i;:::-;22536:25;;22695:1;22627:66;22623:74;22620:1;22617:81;22614:107;;;22701:18;;:::i;:::-;22614:107;22745:1;22742;22738:9;22731:16;;22448:305;;;;:::o;22759:421::-;22848:5;22873:66;22889:49;22931:6;22889:49;:::i;:::-;22873:66;:::i;:::-;22864:75;;22962:6;22955:5;22948:21;23000:4;22993:5;22989:16;23038:3;23029:6;23024:3;23020:16;23017:25;23014:112;;;23045:79;;:::i;:::-;23014:112;23135:39;23167:6;23162:3;23157;23135:39;:::i;:::-;22854:326;22759:421;;;;;:::o;23200:355::-;23267:5;23316:3;23309:4;23301:6;23297:17;23293:27;23283:122;;23324:79;;:::i;:::-;23283:122;23434:6;23428:13;23459:90;23545:3;23537:6;23530:4;23522:6;23518:17;23459:90;:::i;:::-;23450:99;;23273:282;23200:355;;;;:::o;23561:524::-;23641:6;23690:2;23678:9;23669:7;23665:23;23661:32;23658:119;;;23696:79;;:::i;:::-;23658:119;23837:1;23826:9;23822:17;23816:24;23867:18;23859:6;23856:30;23853:117;;;23889:79;;:::i;:::-;23853:117;23994:74;24060:7;24051:6;24040:9;24036:22;23994:74;:::i;:::-;23984:84;;23787:291;23561:524;;;;:::o

Swarm Source

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