ETH Price: $3,502.48 (+2.50%)
Gas: 16 Gwei

Token

FractionalGentleman (FG)
 

Overview

Max Total Supply

131 FG

Holders

69

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 FG
0xD80b6996C73BA77FF96FF2ADA982eBA1cb73d387
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:
FractionalGentleman

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-12
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;

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

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

// File: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

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

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

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

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

        _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 {
        _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 {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: contracts/FractionalGentleman.sol



/*
BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB
BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB
BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB
BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB####
BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB###BBGGGPPPP5
BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB#BBPYJ7!~~~^^^^^^
BBBBBBBBBBBBBBBBBBBBBBBBBBBBBB#BPY7~~~~~~~~~~!!!!!
BBBBBBBBBBBBBBBBBBBBBBBBBBBBBGY7~~~~!!?JJJJJJJ??!!
BBBBBBBBBBBBBBBBBBBBBBB#BGBBY7!~!!!!!?BBBBBBBBBBJ!
BBBBBBBBBBBBBBBBB#BBB#G7::??!!!!!!!777Y555YYYJJ?7!
BBBBBBBBBBBBBBBB#5~^7J^.^!???777777!!~~~~~~~~~~~!!
BBBBBBBBBBBBBBBBG~:^!!~7?7~^~!!777!!~~^^^^^^^^~~~!
BBBBBBBBBBBBBBB#J^~!7~^7~::^:.:!777777?JY5PPPP5YJ?
BBBBBBBBBBBBBBBBJ~~~!~~77PGGPJ?PGGBB#&@@@@&&&&&@@&
BBBBBBBBBBBBBBB#Y~~~~~~?5555JYG&@@@@@@&##BBBBBBB##
BBBBBBBBBBBBBB#P~:::^!77??!^::~JY#@@@#BBBBBBBBBBBB
BBBBBBBBBBBBB#P^::::^~7!::^:^~??7Y@@@#BBBBBBBBBBBB
BBBBBBBBBBBBBB!::::^^~77~^^^7J?7775@@&#BBBBBBBBBB#
BBBBBBBBBBBB#5~^^^^^~!?7777??777777YB@@&##BBBB##&@
BBBBBBBBBBBG?^^^^^~~7YYYJ?77777777777YG#@@@@@@@&#G
BBBBBBBBBBBB57~^::^~JB5Y?777777777777777?YY55YJ?7!
BBBBBBBBBBBB##BGP5JJYB5Y?77777????77!!!!!!!!!!!!!!
BBBBBBBBBBBBBBBB#####BPJJ?7777777777!!!!~~!!!!!7!7
BBBBBBBBBBBBBBBBBBBBBBBYJJ?777!!!777777!!~77777?77
BBBBBBBBBBBBBBBBBBBBBBBGYJJ?7777777??77!!~!~!!!7!!
BBBBBBBBBBBBBBBBBBBBBBBBGYJJ?777777?????77!!!!!7!!
BBBBBBBBBBBBBBBBBBBBBBBBBG5JJ??7777777??J???777!!!
BBBBBBBBBBBBBBBBBBBBBBBBBBBPYJJ??77777777??JJJJJJJ
BBBBBBBBBBBBBBBBBBBBBBBBBBBBBPYJJ???777777777?????
BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBGPYJJ??????????????
BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBGP5YJJ??????????
BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBGGPP555555P
BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB##BBBBB##
BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB
BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB
BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB
BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB
*/
pragma solidity ^0.8.4;



/// @title The Fractional Gentleman (FG).
/// @notice This is the FG NFT contract.
/// @dev FG are only available by airdrop
contract FractionalGentleman is ERC721A, Ownable {
    using Strings for uint256;
    uint256 public constant MAX_SUPPLY = 2000;

    string public baseUri;
    bool public revealed;

    constructor() ERC721A("FractionalGentleman", "FG") {}

    function airdrop(
        address[] calldata addressesToAirDrop,
        uint256[] calldata amountsToAirDrop
    ) external onlyOwner {
        require(
            addressesToAirDrop.length == amountsToAirDrop.length,
            "Length of two given array's do not match"
        );

        for (uint256 i = 0; i < addressesToAirDrop.length; i++) {
            require(
                totalSupply() + amountsToAirDrop[i] <= MAX_SUPPLY,
                "You cannot mint more than the total supply!"
            );

            _mint(addressesToAirDrop[i], amountsToAirDrop[i], "", false);
        }
    }

    function withdraw() external onlyOwner {
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override(ERC721A)
        returns (string memory)
    {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        string memory baseURI = _baseURI();
        string memory finalTokenId = "-1";

        if (revealed) {
            finalTokenId = tokenId.toString();
        }

        return
            bytes(baseURI).length != 0
                ? string(abi.encodePacked(baseURI, finalTokenId))
                : "";
    }

    function setBaseURI(string memory _baseUri) external onlyOwner {
        baseUri = _baseUri;
    }

    function setRevealed(bool _revealed) external onlyOwner {
        revealed = _revealed;
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addressesToAirDrop","type":"address[]"},{"internalType":"uint256[]","name":"amountsToAirDrop","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_revealed","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280601381526020017f4672616374696f6e616c47656e746c656d616e0000000000000000000000000081525060405180604001604052806002815260200161464760f01b81525081600290805190602001906200007b929190620000fb565b50805162000091906003906020840190620000fb565b50506000805550620000a333620000a9565b620001de565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200010990620001a1565b90600052602060002090601f0160209004810192826200012d576000855562000178565b82601f106200014857805160ff191683800117855562000178565b8280016001018555821562000178579182015b82811115620001785782518255916020019190600101906200015b565b50620001869291506200018a565b5090565b5b808211156200018657600081556001016200018b565b600181811c90821680620001b657607f821691505b60208210811415620001d857634e487b7160e01b600052602260045260246000fd5b50919050565b61197c80620001ee6000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c806367243482116100c3578063a22cb4651161007c578063a22cb465146102a9578063b88d4fde146102bc578063c87b56dd146102cf578063e0a80853146102e2578063e985e9c5146102f5578063f2fde38b1461033157600080fd5b8063672434821461025a57806370a082311461026d578063715018a6146102805780638da5cb5b1461028857806395d89b41146102995780639abc8320146102a157600080fd5b806332cb6b0c1161011557806332cb6b0c146102035780633ccfd60b1461020c57806342842e0e14610214578063518302271461022757806355f804b3146102345780636352211e1461024757600080fd5b806301ffc9a71461015d57806306fdde0314610185578063081812fc1461019a578063095ea7b3146101c557806318160ddd146101da57806323b872dd146101f0575b600080fd5b61017061016b36600461169f565b610344565b60405190151581526020015b60405180910390f35b61018d610396565b60405161017c91906117cd565b6101ad6101a836600461171d565b610428565b6040516001600160a01b03909116815260200161017c565b6101d86101d33660046115f3565b61046c565b005b600154600054035b60405190815260200161017c565b6101d86101fe366004611516565b6104fa565b6101e26107d081565b6101d8610505565b6101d8610222366004611516565b6105ac565b600a546101709060ff1681565b6101d86102423660046116d7565b6105c7565b6101ad61025536600461171d565b610608565b6101d861026836600461161c565b61061a565b6101e261027b3660046114c3565b6107e1565b6101d8610830565b6008546001600160a01b03166101ad565b61018d610866565b61018d610875565b6101d86102b73660046115ca565b610903565b6101d86102ca366004611551565b610999565b61018d6102dd36600461171d565b6109ea565b6101d86102f0366004611685565b610a96565b6101706103033660046114e4565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6101d861033f3660046114c3565b610ad3565b60006001600160e01b031982166380ac58cd60e01b148061037557506001600160e01b03198216635b5e139f60e01b145b8061039057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546103a590611884565b80601f01602080910402602001604051908101604052809291908181526020018280546103d190611884565b801561041e5780601f106103f35761010080835404028352916020019161041e565b820191906000526020600020905b81548152906001019060200180831161040157829003601f168201915b5050505050905090565b600061043382610b6b565b610450576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061047782610608565b9050806001600160a01b0316836001600160a01b031614156104ac5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906104cc57506104ca8133610303565b155b156104ea576040516367d9dca160e11b815260040160405180910390fd5b6104f5838383610b96565b505050565b6104f5838383610bf2565b6008546001600160a01b031633146105385760405162461bcd60e51b815260040161052f906117e0565b60405180910390fd5b600061054c6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610596576040519150601f19603f3d011682016040523d82523d6000602084013e61059b565b606091505b50509050806105a957600080fd5b50565b6104f583838360405180602001604052806000815250610999565b6008546001600160a01b031633146105f15760405162461bcd60e51b815260040161052f906117e0565b805161060490600990602084019061133e565b5050565b600061061382610ddf565b5192915050565b6008546001600160a01b031633146106445760405162461bcd60e51b815260040161052f906117e0565b8281146106a45760405162461bcd60e51b815260206004820152602860248201527f4c656e677468206f662074776f20676976656e206172726179277320646f206e6044820152670dee840dac2e8c6d60c31b606482015260840161052f565b60005b838110156107da576107d08383838181106106d257634e487b7160e01b600052603260045260246000fd5b905060200201356106e66001546000540390565b6106f09190611815565b11156107525760405162461bcd60e51b815260206004820152602b60248201527f596f752063616e6e6f74206d696e74206d6f7265207468616e2074686520746f60448201526a74616c20737570706c792160a81b606482015260840161052f565b6107c885858381811061077557634e487b7160e01b600052603260045260246000fd5b905060200201602081019061078a91906114c3565b8484848181106107aa57634e487b7160e01b600052603260045260246000fd5b90506020020135604051806020016040528060008152506000610efb565b806107d2816118bf565b9150506106a7565b5050505050565b60006001600160a01b03821661080a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b0316331461085a5760405162461bcd60e51b815260040161052f906117e0565b61086460006110cc565b565b6060600380546103a590611884565b6009805461088290611884565b80601f01602080910402602001604051908101604052809291908181526020018280546108ae90611884565b80156108fb5780601f106108d0576101008083540402835291602001916108fb565b820191906000526020600020905b8154815290600101906020018083116108de57829003601f168201915b505050505081565b6001600160a01b03821633141561092d5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6109a4848484610bf2565b6001600160a01b0383163b151580156109c657506109c48484848461111e565b155b156109e4576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606109f582610b6b565b610a1257604051630a14c4b560e41b815260040160405180910390fd5b6000610a1c611215565b6040805180820190915260028152612d3160f01b6020820152600a549192509060ff1615610a5057610a4d84611224565b90505b8151610a6b5760405180602001604052806000815250610a8e565b8181604051602001610a7e929190611761565b6040516020818303038152906040525b949350505050565b6008546001600160a01b03163314610ac05760405162461bcd60e51b815260040161052f906117e0565b600a805460ff1916911515919091179055565b6008546001600160a01b03163314610afd5760405162461bcd60e51b815260040161052f906117e0565b6001600160a01b038116610b625760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161052f565b6105a9816110cc565b6000805482108015610390575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610bfd82610ddf565b9050836001600160a01b031681600001516001600160a01b031614610c345760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610c525750610c528533610303565b80610c6d575033610c6284610428565b6001600160a01b0316145b905080610c8d57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610cb457604051633a954ecd60e21b815260040160405180910390fd5b610cc060008487610b96565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116610d96576000548214610d96578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46107da565b604080516060810182526000808252602082018190529181019190915281600054811015610ee257600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290610ee05780516001600160a01b031615610e76579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215610edb579392505050565b610e76565b505b604051636f96cda160e11b815260040160405180910390fd5b6000546001600160a01b038516610f2457604051622e076360e81b815260040160405180910390fd5b83610f425760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015610ff457506001600160a01b0387163b15155b1561107d575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611045600088848060010195508861111e565b611062576040516368d2bf6b60e11b815260040160405180910390fd5b80821415610ffa57826000541461107857600080fd5b6110c3565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082141561107e575b506000556107da565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611153903390899088908890600401611790565b602060405180830381600087803b15801561116d57600080fd5b505af192505050801561119d575060408051601f3d908101601f1916820190925261119a918101906116bb565b60015b6111f8573d8080156111cb576040519150601f19603f3d011682016040523d82523d6000602084013e6111d0565b606091505b5080516111f0576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600980546103a590611884565b6060816112485750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611272578061125c816118bf565b915061126b9050600a8361182d565b915061124c565b60008167ffffffffffffffff81111561129b57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156112c5576020820181803683370190505b5090505b8415610a8e576112da600183611841565b91506112e7600a866118da565b6112f2906030611815565b60f81b81838151811061131557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611337600a8661182d565b94506112c9565b82805461134a90611884565b90600052602060002090601f01602090048101928261136c57600085556113b2565b82601f1061138557805160ff19168380011785556113b2565b828001600101855582156113b2579182015b828111156113b2578251825591602001919060010190611397565b506113be9291506113c2565b5090565b5b808211156113be57600081556001016113c3565b600067ffffffffffffffff808411156113f2576113f261191a565b604051601f8501601f19908116603f0116810190828211818310171561141a5761141a61191a565b8160405280935085815286868601111561143357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461146457600080fd5b919050565b60008083601f84011261147a578081fd5b50813567ffffffffffffffff811115611491578182fd5b6020830191508360208260051b85010111156114ac57600080fd5b9250929050565b8035801515811461146457600080fd5b6000602082840312156114d4578081fd5b6114dd8261144d565b9392505050565b600080604083850312156114f6578081fd5b6114ff8361144d565b915061150d6020840161144d565b90509250929050565b60008060006060848603121561152a578081fd5b6115338461144d565b92506115416020850161144d565b9150604084013590509250925092565b60008060008060808587031215611566578081fd5b61156f8561144d565b935061157d6020860161144d565b925060408501359150606085013567ffffffffffffffff81111561159f578182fd5b8501601f810187136115af578182fd5b6115be878235602084016113d7565b91505092959194509250565b600080604083850312156115dc578182fd5b6115e58361144d565b915061150d602084016114b3565b60008060408385031215611605578182fd5b61160e8361144d565b946020939093013593505050565b60008060008060408587031215611631578384fd5b843567ffffffffffffffff80821115611648578586fd5b61165488838901611469565b9096509450602087013591508082111561166c578384fd5b5061167987828801611469565b95989497509550505050565b600060208284031215611696578081fd5b6114dd826114b3565b6000602082840312156116b0578081fd5b81356114dd81611930565b6000602082840312156116cc578081fd5b81516114dd81611930565b6000602082840312156116e8578081fd5b813567ffffffffffffffff8111156116fe578182fd5b8201601f8101841361170e578182fd5b610a8e848235602084016113d7565b60006020828403121561172e578081fd5b5035919050565b6000815180845261174d816020860160208601611858565b601f01601f19169290920160200192915050565b60008351611773818460208801611858565b835190830190611787818360208801611858565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906117c390830184611735565b9695505050505050565b6020815260006114dd6020830184611735565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611828576118286118ee565b500190565b60008261183c5761183c611904565b500490565b600082821015611853576118536118ee565b500390565b60005b8381101561187357818101518382015260200161185b565b838111156109e45750506000910152565b600181811c9082168061189857607f821691505b602082108114156118b957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156118d3576118d36118ee565b5060010190565b6000826118e9576118e9611904565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146105a957600080fdfea26469706673582212205da38f260541d2d885e732996548576ffe7e60914335bf8a487e8d3e15599f9e64736f6c63430008040033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101585760003560e01c806367243482116100c3578063a22cb4651161007c578063a22cb465146102a9578063b88d4fde146102bc578063c87b56dd146102cf578063e0a80853146102e2578063e985e9c5146102f5578063f2fde38b1461033157600080fd5b8063672434821461025a57806370a082311461026d578063715018a6146102805780638da5cb5b1461028857806395d89b41146102995780639abc8320146102a157600080fd5b806332cb6b0c1161011557806332cb6b0c146102035780633ccfd60b1461020c57806342842e0e14610214578063518302271461022757806355f804b3146102345780636352211e1461024757600080fd5b806301ffc9a71461015d57806306fdde0314610185578063081812fc1461019a578063095ea7b3146101c557806318160ddd146101da57806323b872dd146101f0575b600080fd5b61017061016b36600461169f565b610344565b60405190151581526020015b60405180910390f35b61018d610396565b60405161017c91906117cd565b6101ad6101a836600461171d565b610428565b6040516001600160a01b03909116815260200161017c565b6101d86101d33660046115f3565b61046c565b005b600154600054035b60405190815260200161017c565b6101d86101fe366004611516565b6104fa565b6101e26107d081565b6101d8610505565b6101d8610222366004611516565b6105ac565b600a546101709060ff1681565b6101d86102423660046116d7565b6105c7565b6101ad61025536600461171d565b610608565b6101d861026836600461161c565b61061a565b6101e261027b3660046114c3565b6107e1565b6101d8610830565b6008546001600160a01b03166101ad565b61018d610866565b61018d610875565b6101d86102b73660046115ca565b610903565b6101d86102ca366004611551565b610999565b61018d6102dd36600461171d565b6109ea565b6101d86102f0366004611685565b610a96565b6101706103033660046114e4565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6101d861033f3660046114c3565b610ad3565b60006001600160e01b031982166380ac58cd60e01b148061037557506001600160e01b03198216635b5e139f60e01b145b8061039057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546103a590611884565b80601f01602080910402602001604051908101604052809291908181526020018280546103d190611884565b801561041e5780601f106103f35761010080835404028352916020019161041e565b820191906000526020600020905b81548152906001019060200180831161040157829003601f168201915b5050505050905090565b600061043382610b6b565b610450576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061047782610608565b9050806001600160a01b0316836001600160a01b031614156104ac5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906104cc57506104ca8133610303565b155b156104ea576040516367d9dca160e11b815260040160405180910390fd5b6104f5838383610b96565b505050565b6104f5838383610bf2565b6008546001600160a01b031633146105385760405162461bcd60e51b815260040161052f906117e0565b60405180910390fd5b600061054c6008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610596576040519150601f19603f3d011682016040523d82523d6000602084013e61059b565b606091505b50509050806105a957600080fd5b50565b6104f583838360405180602001604052806000815250610999565b6008546001600160a01b031633146105f15760405162461bcd60e51b815260040161052f906117e0565b805161060490600990602084019061133e565b5050565b600061061382610ddf565b5192915050565b6008546001600160a01b031633146106445760405162461bcd60e51b815260040161052f906117e0565b8281146106a45760405162461bcd60e51b815260206004820152602860248201527f4c656e677468206f662074776f20676976656e206172726179277320646f206e6044820152670dee840dac2e8c6d60c31b606482015260840161052f565b60005b838110156107da576107d08383838181106106d257634e487b7160e01b600052603260045260246000fd5b905060200201356106e66001546000540390565b6106f09190611815565b11156107525760405162461bcd60e51b815260206004820152602b60248201527f596f752063616e6e6f74206d696e74206d6f7265207468616e2074686520746f60448201526a74616c20737570706c792160a81b606482015260840161052f565b6107c885858381811061077557634e487b7160e01b600052603260045260246000fd5b905060200201602081019061078a91906114c3565b8484848181106107aa57634e487b7160e01b600052603260045260246000fd5b90506020020135604051806020016040528060008152506000610efb565b806107d2816118bf565b9150506106a7565b5050505050565b60006001600160a01b03821661080a576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b0316331461085a5760405162461bcd60e51b815260040161052f906117e0565b61086460006110cc565b565b6060600380546103a590611884565b6009805461088290611884565b80601f01602080910402602001604051908101604052809291908181526020018280546108ae90611884565b80156108fb5780601f106108d0576101008083540402835291602001916108fb565b820191906000526020600020905b8154815290600101906020018083116108de57829003601f168201915b505050505081565b6001600160a01b03821633141561092d5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6109a4848484610bf2565b6001600160a01b0383163b151580156109c657506109c48484848461111e565b155b156109e4576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606109f582610b6b565b610a1257604051630a14c4b560e41b815260040160405180910390fd5b6000610a1c611215565b6040805180820190915260028152612d3160f01b6020820152600a549192509060ff1615610a5057610a4d84611224565b90505b8151610a6b5760405180602001604052806000815250610a8e565b8181604051602001610a7e929190611761565b6040516020818303038152906040525b949350505050565b6008546001600160a01b03163314610ac05760405162461bcd60e51b815260040161052f906117e0565b600a805460ff1916911515919091179055565b6008546001600160a01b03163314610afd5760405162461bcd60e51b815260040161052f906117e0565b6001600160a01b038116610b625760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161052f565b6105a9816110cc565b6000805482108015610390575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610bfd82610ddf565b9050836001600160a01b031681600001516001600160a01b031614610c345760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610c525750610c528533610303565b80610c6d575033610c6284610428565b6001600160a01b0316145b905080610c8d57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610cb457604051633a954ecd60e21b815260040160405180910390fd5b610cc060008487610b96565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116610d96576000548214610d96578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46107da565b604080516060810182526000808252602082018190529181019190915281600054811015610ee257600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff16151591810182905290610ee05780516001600160a01b031615610e76579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215610edb579392505050565b610e76565b505b604051636f96cda160e11b815260040160405180910390fd5b6000546001600160a01b038516610f2457604051622e076360e81b815260040160405180910390fd5b83610f425760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015610ff457506001600160a01b0387163b15155b1561107d575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611045600088848060010195508861111e565b611062576040516368d2bf6b60e11b815260040160405180910390fd5b80821415610ffa57826000541461107857600080fd5b6110c3565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082141561107e575b506000556107da565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611153903390899088908890600401611790565b602060405180830381600087803b15801561116d57600080fd5b505af192505050801561119d575060408051601f3d908101601f1916820190925261119a918101906116bb565b60015b6111f8573d8080156111cb576040519150601f19603f3d011682016040523d82523d6000602084013e6111d0565b606091505b5080516111f0576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600980546103a590611884565b6060816112485750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611272578061125c816118bf565b915061126b9050600a8361182d565b915061124c565b60008167ffffffffffffffff81111561129b57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156112c5576020820181803683370190505b5090505b8415610a8e576112da600183611841565b91506112e7600a866118da565b6112f2906030611815565b60f81b81838151811061131557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611337600a8661182d565b94506112c9565b82805461134a90611884565b90600052602060002090601f01602090048101928261136c57600085556113b2565b82601f1061138557805160ff19168380011785556113b2565b828001600101855582156113b2579182015b828111156113b2578251825591602001919060010190611397565b506113be9291506113c2565b5090565b5b808211156113be57600081556001016113c3565b600067ffffffffffffffff808411156113f2576113f261191a565b604051601f8501601f19908116603f0116810190828211818310171561141a5761141a61191a565b8160405280935085815286868601111561143357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461146457600080fd5b919050565b60008083601f84011261147a578081fd5b50813567ffffffffffffffff811115611491578182fd5b6020830191508360208260051b85010111156114ac57600080fd5b9250929050565b8035801515811461146457600080fd5b6000602082840312156114d4578081fd5b6114dd8261144d565b9392505050565b600080604083850312156114f6578081fd5b6114ff8361144d565b915061150d6020840161144d565b90509250929050565b60008060006060848603121561152a578081fd5b6115338461144d565b92506115416020850161144d565b9150604084013590509250925092565b60008060008060808587031215611566578081fd5b61156f8561144d565b935061157d6020860161144d565b925060408501359150606085013567ffffffffffffffff81111561159f578182fd5b8501601f810187136115af578182fd5b6115be878235602084016113d7565b91505092959194509250565b600080604083850312156115dc578182fd5b6115e58361144d565b915061150d602084016114b3565b60008060408385031215611605578182fd5b61160e8361144d565b946020939093013593505050565b60008060008060408587031215611631578384fd5b843567ffffffffffffffff80821115611648578586fd5b61165488838901611469565b9096509450602087013591508082111561166c578384fd5b5061167987828801611469565b95989497509550505050565b600060208284031215611696578081fd5b6114dd826114b3565b6000602082840312156116b0578081fd5b81356114dd81611930565b6000602082840312156116cc578081fd5b81516114dd81611930565b6000602082840312156116e8578081fd5b813567ffffffffffffffff8111156116fe578182fd5b8201601f8101841361170e578182fd5b610a8e848235602084016113d7565b60006020828403121561172e578081fd5b5035919050565b6000815180845261174d816020860160208601611858565b601f01601f19169290920160200192915050565b60008351611773818460208801611858565b835190830190611787818360208801611858565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906117c390830184611735565b9695505050505050565b6020815260006114dd6020830184611735565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611828576118286118ee565b500190565b60008261183c5761183c611904565b500490565b600082821015611853576118536118ee565b500390565b60005b8381101561187357818101518382015260200161185b565b838111156109e45750506000910152565b600181811c9082168061189857607f821691505b602082108114156118b957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156118d3576118d36118ee565b5060010190565b6000826118e9576118e9611904565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146105a957600080fdfea26469706673582212205da38f260541d2d885e732996548576ffe7e60914335bf8a487e8d3e15599f9e64736f6c63430008040033

Deployed Bytecode Sourcemap

46871:1917:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24442:305;;;;;;:::i;:::-;;:::i;:::-;;;7467:14:1;;7460:22;7442:41;;7430:2;7415:18;24442:305:0;;;;;;;;27555:100;;;:::i;:::-;;;;;;;:::i;29058:204::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6765:32:1;;;6747:51;;6735:2;6720:18;29058:204:0;6702:102:1;28621:371:0;;;;;;:::i;:::-;;:::i;:::-;;23691:303;23945:12;;23735:7;23929:13;:28;23691:303;;;9453:25:1;;;9441:2;9426:18;23691:303:0;9408:76:1;29923:170:0;;;;;;:::i;:::-;;:::i;46959:41::-;;46996:4;46959:41;;47759:149;;;:::i;30164:185::-;;;;;;:::i;:::-;;:::i;47037:20::-;;;;;;;;;48474:100;;;;;;:::i;:::-;;:::i;27363:125::-;;;;;;:::i;:::-;;:::i;47127:624::-;;;;;;:::i;:::-;;:::i;24811:206::-;;;;;;:::i;:::-;;:::i;43913:103::-;;;:::i;43262:87::-;43335:6;;-1:-1:-1;;;;;43335:6:0;43262:87;;27724:104;;;:::i;47009:21::-;;;:::i;29334:287::-;;;;;;:::i;:::-;;:::i;30420:369::-;;;;;;:::i;:::-;;:::i;47916:550::-;;;;;;:::i;:::-;;:::i;48582:95::-;;;;;;:::i;:::-;;:::i;29692:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;29813:25:0;;;29789:4;29813:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29692:164;44171:201;;;;;;:::i;:::-;;:::i;24442:305::-;24544:4;-1:-1:-1;;;;;;24581:40:0;;-1:-1:-1;;;24581:40:0;;:105;;-1:-1:-1;;;;;;;24638:48:0;;-1:-1:-1;;;24638:48:0;24581:105;:158;;;-1:-1:-1;;;;;;;;;;13549:40:0;;;24703:36;24561:178;24442:305;-1:-1:-1;;24442:305:0:o;27555:100::-;27609:13;27642:5;27635:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27555:100;:::o;29058:204::-;29126:7;29151:16;29159:7;29151;:16::i;:::-;29146:64;;29176:34;;-1:-1:-1;;;29176:34:0;;;;;;;;;;;29146:64;-1:-1:-1;29230:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29230:24:0;;29058:204::o;28621:371::-;28694:13;28710:24;28726:7;28710:15;:24::i;:::-;28694:40;;28755:5;-1:-1:-1;;;;;28749:11:0;:2;-1:-1:-1;;;;;28749:11:0;;28745:48;;;28769:24;;-1:-1:-1;;;28769:24:0;;;;;;;;;;;28745:48;20038:10;-1:-1:-1;;;;;28810:21:0;;;;;;:63;;-1:-1:-1;28836:37:0;28853:5;20038:10;29692:164;:::i;28836:37::-;28835:38;28810:63;28806:138;;;28897:35;;-1:-1:-1;;;28897:35:0;;;;;;;;;;;28806:138;28956:28;28965:2;28969:7;28978:5;28956:8;:28::i;:::-;28621:371;;;:::o;29923:170::-;30057:28;30067:4;30073:2;30077:7;30057:9;:28::i;47759:149::-;43335:6;;-1:-1:-1;;;;;43335:6:0;20038:10;43482:23;43474:68;;;;-1:-1:-1;;;43474:68:0;;;;;;;:::i;:::-;;;;;;;;;47810:7:::1;47831;43335:6:::0;;-1:-1:-1;;;;;43335:6:0;;43262:87;47831:7:::1;-1:-1:-1::0;;;;;47823:21:0::1;47852;47823:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47809:69;;;47897:2;47889:11;;;::::0;::::1;;43553:1;47759:149::o:0;30164:185::-;30302:39;30319:4;30325:2;30329:7;30302:39;;;;;;;;;;;;:16;:39::i;48474:100::-;43335:6;;-1:-1:-1;;;;;43335:6:0;20038:10;43482:23;43474:68;;;;-1:-1:-1;;;43474:68:0;;;;;;;:::i;:::-;48548:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48474:100:::0;:::o;27363:125::-;27427:7;27454:21;27467:7;27454:12;:21::i;:::-;:26;;27363:125;-1:-1:-1;;27363:125:0:o;47127:624::-;43335:6;;-1:-1:-1;;;;;43335:6:0;20038:10;43482:23;43474:68;;;;-1:-1:-1;;;43474:68:0;;;;;;;:::i;:::-;47297:52;;::::1;47275:142;;;::::0;-1:-1:-1;;;47275:142:0;;9100:2:1;47275:142:0::1;::::0;::::1;9082:21:1::0;9139:2;9119:18;;;9112:30;9178:34;9158:18;;;9151:62;-1:-1:-1;;;9229:18:1;;;9222:38;9277:19;;47275:142:0::1;9072:230:1::0;47275:142:0::1;47435:9;47430:314;47450:29:::0;;::::1;47430:314;;;46996:4;47543:16;;47560:1;47543:19;;;;;-1:-1:-1::0;;;47543:19:0::1;;;;;;;;;;;;;;;47527:13;23945:12:::0;;23735:7;23929:13;:28;;23691:303;47527:13:::1;:35;;;;:::i;:::-;:49;;47501:154;;;::::0;-1:-1:-1;;;47501:154:0;;8327:2:1;47501:154:0::1;::::0;::::1;8309:21:1::0;8366:2;8346:18;;;8339:30;8405:34;8385:18;;;8378:62;-1:-1:-1;;;8456:18:1;;;8449:41;8507:19;;47501:154:0::1;8299:233:1::0;47501:154:0::1;47672:60;47678:18;;47697:1;47678:21;;;;;-1:-1:-1::0;;;47678:21:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47701:16;;47718:1;47701:19;;;;;-1:-1:-1::0;;;47701:19:0::1;;;;;;;;;;;;;;;47672:60;;;;;;;;;;;::::0;47726:5:::1;47672;:60::i;:::-;47481:3:::0;::::1;::::0;::::1;:::i;:::-;;;;47430:314;;;;47127:624:::0;;;;:::o;24811:206::-;24875:7;-1:-1:-1;;;;;24899:19:0;;24895:60;;24927:28;;-1:-1:-1;;;24927:28:0;;;;;;;;;;;24895:60;-1:-1:-1;;;;;;24981:19:0;;;;;:12;:19;;;;;:27;;;;24811:206::o;43913:103::-;43335:6;;-1:-1:-1;;;;;43335:6:0;20038:10;43482:23;43474:68;;;;-1:-1:-1;;;43474:68:0;;;;;;;:::i;:::-;43978:30:::1;44005:1;43978:18;:30::i;:::-;43913:103::o:0;27724:104::-;27780:13;27813:7;27806:14;;;;;:::i;47009:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29334:287::-;-1:-1:-1;;;;;29433:24:0;;20038:10;29433:24;29429:54;;;29466:17;;-1:-1:-1;;;29466:17:0;;;;;;;;;;;29429:54;20038:10;29496:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29496:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29496:53:0;;;;;;;;;;29565:48;;7442:41:1;;;29496:42:0;;20038:10;29565:48;;7415:18:1;29565:48:0;;;;;;;29334:287;;:::o;30420:369::-;30587:28;30597:4;30603:2;30607:7;30587:9;:28::i;:::-;-1:-1:-1;;;;;30630:13:0;;3652:19;:23;;30630:76;;;;;30650:56;30681:4;30687:2;30691:7;30700:5;30650:30;:56::i;:::-;30649:57;30630:76;30626:156;;;30730:40;;-1:-1:-1;;;30730:40:0;;;;;;;;;;;30626:156;30420:369;;;;:::o;47916:550::-;48043:13;48079:16;48087:7;48079;:16::i;:::-;48074:59;;48104:29;;-1:-1:-1;;;48104:29:0;;;;;;;;;;;48074:59;48146:21;48170:10;:8;:10::i;:::-;48191:33;;;;;;;;;;;;-1:-1:-1;;;48191:33:0;;;;48241:8;;48146:34;;-1:-1:-1;48191:33:0;48241:8;;48237:74;;;48281:18;:7;:16;:18::i;:::-;48266:33;;48237:74;48343:21;;:115;;;;;;;;;;;;;;;;;48413:7;48422:12;48396:39;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48343:115;48323:135;47916:550;-1:-1:-1;;;;47916:550:0:o;48582:95::-;43335:6;;-1:-1:-1;;;;;43335:6:0;20038:10;43482:23;43474:68;;;;-1:-1:-1;;;43474:68:0;;;;;;;:::i;:::-;48649:8:::1;:20:::0;;-1:-1:-1;;48649:20:0::1;::::0;::::1;;::::0;;;::::1;::::0;;48582:95::o;44171:201::-;43335:6;;-1:-1:-1;;;;;43335:6:0;20038:10;43482:23;43474:68;;;;-1:-1:-1;;;43474:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44260:22:0;::::1;44252:73;;;::::0;-1:-1:-1;;;44252:73:0;;7920:2:1;44252:73:0::1;::::0;::::1;7902:21:1::0;7959:2;7939:18;;;7932:30;7998:34;7978:18;;;7971:62;-1:-1:-1;;;8049:18:1;;;8042:36;8095:19;;44252:73:0::1;7892:228:1::0;44252:73:0::1;44336:28;44355:8;44336:18;:28::i;31044:187::-:0;31101:4;31165:13;;31155:7;:23;31125:98;;;;-1:-1:-1;;31196:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;31196:27:0;;;;31195:28;;31044:187::o;39214:196::-;39329:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39329:29:0;-1:-1:-1;;;;;39329:29:0;;;;;;;;;39374:28;;39329:24;;39374:28;;;;;;;39214:196;;;:::o;34157:2130::-;34272:35;34310:21;34323:7;34310:12;:21::i;:::-;34272:59;;34370:4;-1:-1:-1;;;;;34348:26:0;:13;:18;;;-1:-1:-1;;;;;34348:26:0;;34344:67;;34383:28;;-1:-1:-1;;;34383:28:0;;;;;;;;;;;34344:67;34424:22;20038:10;-1:-1:-1;;;;;34450:20:0;;;;:73;;-1:-1:-1;34487:36:0;34504:4;20038:10;29692:164;:::i;34487:36::-;34450:126;;;-1:-1:-1;20038:10:0;34540:20;34552:7;34540:11;:20::i;:::-;-1:-1:-1;;;;;34540:36:0;;34450:126;34424:153;;34595:17;34590:66;;34621:35;;-1:-1:-1;;;34621:35:0;;;;;;;;;;;34590:66;-1:-1:-1;;;;;34671:16:0;;34667:52;;34696:23;;-1:-1:-1;;;34696:23:0;;;;;;;;;;;34667:52;34840:35;34857:1;34861:7;34870:4;34840:8;:35::i;:::-;-1:-1:-1;;;;;35171:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;35171:31:0;;;;;;;-1:-1:-1;;35171:31:0;;;;;;;35217:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;35217:29:0;;;;;;;;;;;35297:20;;;:11;:20;;;;;;35332:18;;-1:-1:-1;;;;;;35365:49:0;;;;-1:-1:-1;;;35398:15:0;35365:49;;;;;;;;;;35688:11;;35748:24;;;;;35791:13;;35297:20;;35748:24;;35791:13;35787:384;;36001:13;;35986:11;:28;35982:174;;36039:20;;36108:28;;;;36082:54;;-1:-1:-1;;;36082:54:0;-1:-1:-1;;;;;;36082:54:0;;;-1:-1:-1;;;;;36039:20:0;;36082:54;;;;35982:174;34157:2130;;;36218:7;36214:2;-1:-1:-1;;;;;36199:27:0;36208:4;-1:-1:-1;;;;;36199:27:0;;;;;;;;;;;36237:42;30420:369;26192:1109;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;26303:7:0;26386:13;;26379:4;:20;26348:886;;;26420:31;26454:17;;;:11;:17;;;;;;;;;26420:51;;;;;;;;;-1:-1:-1;;;;;26420:51:0;;;;-1:-1:-1;;;26420:51:0;;;;;;;;;;;-1:-1:-1;;;26420:51:0;;;;;;;;;;;;;;26490:729;;26540:14;;-1:-1:-1;;;;;26540:28:0;;26536:101;;26604:9;26192:1109;-1:-1:-1;;;26192:1109:0:o;26536:101::-;-1:-1:-1;;;26979:6:0;27024:17;;;;:11;:17;;;;;;;;;27012:29;;;;;;;;;-1:-1:-1;;;;;27012:29:0;;;;;-1:-1:-1;;;27012:29:0;;;;;;;;;;;-1:-1:-1;;;27012:29:0;;;;;;;;;;;;;27072:28;27068:109;;27140:9;26192:1109;-1:-1:-1;;;26192:1109:0:o;27068:109::-;26939:261;;;26348:886;;27262:31;;-1:-1:-1;;;27262:31:0;;;;;;;;;;;32128:1775;32267:20;32290:13;-1:-1:-1;;;;;32318:16:0;;32314:48;;32343:19;;-1:-1:-1;;;32343:19:0;;;;;;;;;;;32314:48;32377:13;32373:44;;32399:18;;-1:-1:-1;;;32399:18:0;;;;;;;;;;;32373:44;-1:-1:-1;;;;;32768:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;32827:49:0;;32768:44;;;;;;;;32827:49;;;;-1:-1:-1;;32768:44:0;;;;;;32827:49;;;;;;;;;;;;;;;;32893:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;32943:66:0;;;;-1:-1:-1;;;32993:15:0;32943:66;;;;;;;;;;32893:25;33090:23;;;33134:4;:23;;;;-1:-1:-1;;;;;;33142:13:0;;3652:19;:23;;33142:15;33130:641;;;33178:314;33209:38;;33234:12;;-1:-1:-1;;;;;33209:38:0;;;33226:1;;33209:38;;33226:1;;33209:38;33275:69;33314:1;33318:2;33322:14;;;;;;33338:5;33275:30;:69::i;:::-;33270:174;;33380:40;;-1:-1:-1;;;33380:40:0;;;;;;;;;;;33270:174;33487:3;33471:12;:19;;33178:314;;33573:12;33556:13;;:29;33552:43;;33587:8;;;33552:43;33130:641;;;33636:120;33667:40;;33692:14;;;;;-1:-1:-1;;;;;33667:40:0;;;33684:1;;33667:40;;33684:1;;33667:40;33751:3;33735:12;:19;;33636:120;;33130:641;-1:-1:-1;33785:13:0;:28;33835:60;30420:369;44532:191;44625:6;;;-1:-1:-1;;;;;44642:17:0;;;-1:-1:-1;;;;;;44642:17:0;;;;;;;44675:40;;44625:6;;;44642:17;44625:6;;44675:40;;44606:16;;44675:40;44532:191;;:::o;39902:667::-;40086:72;;-1:-1:-1;;;40086:72:0;;40065:4;;-1:-1:-1;;;;;40086:36:0;;;;;:72;;20038:10;;40137:4;;40143:7;;40152:5;;40086:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40086:72:0;;;;;;;;-1:-1:-1;;40086:72:0;;;;;;;;;;;;:::i;:::-;;;40082:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40320:13:0;;40316:235;;40366:40;;-1:-1:-1;;;40366:40:0;;;;;;;;;;;40316:235;40509:6;40503:13;40494:6;40490:2;40486:15;40479:38;40082:480;-1:-1:-1;;;;;;40205:55:0;-1:-1:-1;;;40205:55:0;;-1:-1:-1;39902:667:0;;;;;;:::o;48685:100::-;48737:13;48770:7;48763:14;;;;;:::i;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;-1:-1:-1;;;867:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;-1:-1:-1;;;955:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:391::-;891:8;901:6;955:3;948:4;940:6;936:17;932:27;922:2;;978:6;970;963:22;922:2;-1:-1:-1;1006:20:1;;1049:18;1038:30;;1035:2;;;1088:8;1078;1071:26;1035:2;1132:4;1124:6;1120:17;1108:29;;1192:3;1185:4;1175:6;1172:1;1168:14;1160:6;1156:27;1152:38;1149:47;1146:2;;;1209:1;1206;1199:12;1146:2;912:307;;;;;:::o;1224:160::-;1289:20;;1345:13;;1338:21;1328:32;;1318:2;;1374:1;1371;1364:12;1389:196;1448:6;1501:2;1489:9;1480:7;1476:23;1472:32;1469:2;;;1522:6;1514;1507:22;1469:2;1550:29;1569:9;1550:29;:::i;:::-;1540:39;1459:126;-1:-1:-1;;;1459:126:1:o;1590:270::-;1658:6;1666;1719:2;1707:9;1698:7;1694:23;1690:32;1687:2;;;1740:6;1732;1725:22;1687:2;1768:29;1787:9;1768:29;:::i;:::-;1758:39;;1816:38;1850:2;1839:9;1835:18;1816:38;:::i;:::-;1806:48;;1677:183;;;;;:::o;1865:338::-;1942:6;1950;1958;2011:2;1999:9;1990:7;1986:23;1982:32;1979:2;;;2032:6;2024;2017:22;1979:2;2060:29;2079:9;2060:29;:::i;:::-;2050:39;;2108:38;2142:2;2131:9;2127:18;2108:38;:::i;:::-;2098:48;;2193:2;2182:9;2178:18;2165:32;2155:42;;1969:234;;;;;:::o;2208:696::-;2303:6;2311;2319;2327;2380:3;2368:9;2359:7;2355:23;2351:33;2348:2;;;2402:6;2394;2387:22;2348:2;2430:29;2449:9;2430:29;:::i;:::-;2420:39;;2478:38;2512:2;2501:9;2497:18;2478:38;:::i;:::-;2468:48;;2563:2;2552:9;2548:18;2535:32;2525:42;;2618:2;2607:9;2603:18;2590:32;2645:18;2637:6;2634:30;2631:2;;;2682:6;2674;2667:22;2631:2;2710:22;;2763:4;2755:13;;2751:27;-1:-1:-1;2741:2:1;;2797:6;2789;2782:22;2741:2;2825:73;2890:7;2885:2;2872:16;2867:2;2863;2859:11;2825:73;:::i;:::-;2815:83;;;2338:566;;;;;;;:::o;2909:264::-;2974:6;2982;3035:2;3023:9;3014:7;3010:23;3006:32;3003:2;;;3056:6;3048;3041:22;3003:2;3084:29;3103:9;3084:29;:::i;:::-;3074:39;;3132:35;3163:2;3152:9;3148:18;3132:35;:::i;3178:264::-;3246:6;3254;3307:2;3295:9;3286:7;3282:23;3278:32;3275:2;;;3328:6;3320;3313:22;3275:2;3356:29;3375:9;3356:29;:::i;:::-;3346:39;3432:2;3417:18;;;;3404:32;;-1:-1:-1;;;3265:177:1:o;3447:803::-;3569:6;3577;3585;3593;3646:2;3634:9;3625:7;3621:23;3617:32;3614:2;;;3667:6;3659;3652:22;3614:2;3712:9;3699:23;3741:18;3782:2;3774:6;3771:14;3768:2;;;3803:6;3795;3788:22;3768:2;3847:70;3909:7;3900:6;3889:9;3885:22;3847:70;:::i;:::-;3936:8;;-1:-1:-1;3821:96:1;-1:-1:-1;4024:2:1;4009:18;;3996:32;;-1:-1:-1;4040:16:1;;;4037:2;;;4074:6;4066;4059:22;4037:2;;4118:72;4182:7;4171:8;4160:9;4156:24;4118:72;:::i;:::-;3604:646;;;;-1:-1:-1;4209:8:1;-1:-1:-1;;;;3604:646:1:o;4255:190::-;4311:6;4364:2;4352:9;4343:7;4339:23;4335:32;4332:2;;;4385:6;4377;4370:22;4332:2;4413:26;4429:9;4413:26;:::i;4450:255::-;4508:6;4561:2;4549:9;4540:7;4536:23;4532:32;4529:2;;;4582:6;4574;4567:22;4529:2;4626:9;4613:23;4645:30;4669:5;4645:30;:::i;4710:259::-;4779:6;4832:2;4820:9;4811:7;4807:23;4803:32;4800:2;;;4853:6;4845;4838:22;4800:2;4890:9;4884:16;4909:30;4933:5;4909:30;:::i;4974:480::-;5043:6;5096:2;5084:9;5075:7;5071:23;5067:32;5064:2;;;5117:6;5109;5102:22;5064:2;5162:9;5149:23;5195:18;5187:6;5184:30;5181:2;;;5232:6;5224;5217:22;5181:2;5260:22;;5313:4;5305:13;;5301:27;-1:-1:-1;5291:2:1;;5347:6;5339;5332:22;5291:2;5375:73;5440:7;5435:2;5422:16;5417:2;5413;5409:11;5375:73;:::i;5459:190::-;5518:6;5571:2;5559:9;5550:7;5546:23;5542:32;5539:2;;;5592:6;5584;5577:22;5539:2;-1:-1:-1;5620:23:1;;5529:120;-1:-1:-1;5529:120:1:o;5654:257::-;5695:3;5733:5;5727:12;5760:6;5755:3;5748:19;5776:63;5832:6;5825:4;5820:3;5816:14;5809:4;5802:5;5798:16;5776:63;:::i;:::-;5893:2;5872:15;-1:-1:-1;;5868:29:1;5859:39;;;;5900:4;5855:50;;5703:208;-1:-1:-1;;5703:208:1:o;5916:470::-;6095:3;6133:6;6127:13;6149:53;6195:6;6190:3;6183:4;6175:6;6171:17;6149:53;:::i;:::-;6265:13;;6224:16;;;;6287:57;6265:13;6224:16;6321:4;6309:17;;6287:57;:::i;:::-;6360:20;;6103:283;-1:-1:-1;;;;6103:283:1:o;6809:488::-;-1:-1:-1;;;;;7078:15:1;;;7060:34;;7130:15;;7125:2;7110:18;;7103:43;7177:2;7162:18;;7155:34;;;7225:3;7220:2;7205:18;;7198:31;;;7003:4;;7246:45;;7271:19;;7263:6;7246:45;:::i;:::-;7238:53;7012:285;-1:-1:-1;;;;;;7012:285:1:o;7494:219::-;7643:2;7632:9;7625:21;7606:4;7663:44;7703:2;7692:9;7688:18;7680:6;7663:44;:::i;8537:356::-;8739:2;8721:21;;;8758:18;;;8751:30;8817:34;8812:2;8797:18;;8790:62;8884:2;8869:18;;8711:182::o;9489:128::-;9529:3;9560:1;9556:6;9553:1;9550:13;9547:2;;;9566:18;;:::i;:::-;-1:-1:-1;9602:9:1;;9537:80::o;9622:120::-;9662:1;9688;9678:2;;9693:18;;:::i;:::-;-1:-1:-1;9727:9:1;;9668:74::o;9747:125::-;9787:4;9815:1;9812;9809:8;9806:2;;;9820:18;;:::i;:::-;-1:-1:-1;9857:9:1;;9796:76::o;9877:258::-;9949:1;9959:113;9973:6;9970:1;9967:13;9959:113;;;10049:11;;;10043:18;10030:11;;;10023:39;9995:2;9988:10;9959:113;;;10090:6;10087:1;10084:13;10081:2;;;-1:-1:-1;;10125:1:1;10107:16;;10100:27;9930:205::o;10140:380::-;10219:1;10215:12;;;;10262;;;10283:2;;10337:4;10329:6;10325:17;10315:27;;10283:2;10390;10382:6;10379:14;10359:18;10356:38;10353:2;;;10436:10;10431:3;10427:20;10424:1;10417:31;10471:4;10468:1;10461:15;10499:4;10496:1;10489:15;10353:2;;10195:325;;;:::o;10525:135::-;10564:3;-1:-1:-1;;10585:17:1;;10582:2;;;10605:18;;:::i;:::-;-1:-1:-1;10652:1:1;10641:13;;10572:88::o;10665:112::-;10697:1;10723;10713:2;;10728:18;;:::i;:::-;-1:-1:-1;10762:9:1;;10703:74::o;10782:127::-;10843:10;10838:3;10834:20;10831:1;10824:31;10874:4;10871:1;10864:15;10898:4;10895:1;10888:15;10914:127;10975:10;10970:3;10966:20;10963:1;10956:31;11006:4;11003:1;10996:15;11030:4;11027:1;11020:15;11046:127;11107:10;11102:3;11098:20;11095:1;11088:31;11138:4;11135:1;11128:15;11162:4;11159:1;11152:15;11178:131;-1:-1:-1;;;;;;11252:32:1;;11242:43;;11232:2;;11299:1;11296;11289:12

Swarm Source

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