ETH Price: $3,232.66 (-5.26%)

Token

BMG Genesis Pass (BMG)
 

Overview

Max Total Supply

250 BMG

Holders

164

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 BMG
0xb81f338d96bee146ddb1616c036651e8ac0de23f
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:
BMGGenesisPass

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-09
*/

// 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/IERC721Enumerable.sol


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

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// 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: https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
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 See {IERC721Enumerable-totalSupply}.
     * @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) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        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) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        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) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        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 {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _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);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // 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;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // 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[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, 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: https://github.com/chiru-labs/ERC721A/blob/main/contracts/extensions/ERC721AOwnersExplicit.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;


error AllOwnershipsHaveBeenSet();
error QuantityMustBeNonZero();
error NoTokensMintedYet();

abstract contract ERC721AOwnersExplicit is ERC721A {
    uint256 public nextOwnerToExplicitlySet;

    /**
     * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
     */
    function _setOwnersExplicit(uint256 quantity) internal {
        if (quantity == 0) revert QuantityMustBeNonZero();
        if (_currentIndex == _startTokenId()) revert NoTokensMintedYet();
        uint256 _nextOwnerToExplicitlySet = nextOwnerToExplicitlySet;
        if (_nextOwnerToExplicitlySet == 0) {
            _nextOwnerToExplicitlySet = _startTokenId();
        }
        if (_nextOwnerToExplicitlySet >= _currentIndex) revert AllOwnershipsHaveBeenSet();

        // Index underflow is impossible.
        // Counter or index overflow is incredibly unrealistic.
        unchecked {
            uint256 endIndex = _nextOwnerToExplicitlySet + quantity - 1;

            // Set the end index to be the last token index
            if (endIndex + 1 > _currentIndex) {
                endIndex = _currentIndex - 1;
            }

            for (uint256 i = _nextOwnerToExplicitlySet; i <= endIndex; i++) {
                if (_ownerships[i].addr == address(0) && !_ownerships[i].burned) {
                    TokenOwnership memory ownership = ownershipOf(i);
                    _ownerships[i].addr = ownership.addr;
                    _ownerships[i].startTimestamp = ownership.startTimestamp;
                }
            }

            nextOwnerToExplicitlySet = endIndex + 1;
        }
    }
}

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: contracts/BMGGenesisPass.sol


pragma solidity ^0.8.4;





 
contract BMGGenesisPass is Ownable, ERC721A, ERC721AOwnersExplicit, ReentrancyGuard {
  
  uint256 public immutable collectionSize = 250;

  bool public mintIsActive = false;

  mapping(address => uint256) public allowlist;

  constructor() ERC721A("BMG Genesis Pass", "BMG") {}
 
  modifier callerIsUser() {
    require(tx.origin == msg.sender, "The caller is another contract");
    _;
  }
 
  function seedAllowlist(address[] memory addresses) external onlyOwner {
    for (uint256 i = 0; i < addresses.length; i++) {
      allowlist[addresses[i]] = 2;
    }
  }

  function publicMint() external callerIsUser {
    require(mintIsActive, "mint has not started");
    require(totalSupply() + 2 <= collectionSize, "reached max supply");
    require(allowlist[msg.sender] > 0, "not eligible for allowlist mint");
    require(numberMinted(msg.sender) == 0, "can not mint this many");
    allowlist[msg.sender] = 0;
    _safeMint(msg.sender, 2);
  }

  function devMint(uint256 quantity) external onlyOwner {
    require(totalSupply() + quantity <= collectionSize, "exceeds max supply");
    _safeMint(msg.sender, quantity);
  }

  function flipMintState() public onlyOwner {
    mintIsActive = !mintIsActive;
  }

  // metadata URI
  string private _baseTokenURI;

  // contract.json
  string public _contractURI = "";
 
  function _baseURI() internal view virtual override returns (string memory) {
    return _baseTokenURI;
  }

  function contractURI() public view returns (string memory) {
    return _contractURI;
  }
 
  function setBaseURI(string calldata baseURI) external onlyOwner {
    _baseTokenURI = baseURI;
  }

  function setContractURI(string memory cURI) public onlyOwner {
    _contractURI = cURI;
  }
 
  function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }
 
  function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) {
    return ownershipOf(tokenId);
  }
}

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":"MintedQueryForZeroAddress","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":"_contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowlist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"collectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipMintState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"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":"mintIsActive","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":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"publicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"seedAllowlist","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":"string","name":"cURI","type":"string"}],"name":"setContractURI","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"}]

60fa608052600b805460ff1916905560c06040819052600060a08190526200002a91600e916200012a565b503480156200003857600080fd5b506040518060400160405280601081526020016f424d472047656e65736973205061737360801b81525060405180604001604052806003815260200162424d4760e81b8152506200009862000092620000d660201b60201c565b620000da565b8151620000ad9060039060208501906200012a565b508051620000c39060049060208401906200012a565b505060006001908155600a55506200020d565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200013890620001d0565b90600052602060002090601f0160209004810192826200015c5760008555620001a7565b82601f106200017757805160ff1916838001178555620001a7565b82800160010185558215620001a7579182015b82811115620001a75782518255916020019190600101906200018a565b50620001b5929150620001b9565b5090565b5b80821115620001b55760008155600101620001ba565b600181811c90821680620001e557607f821691505b602082108114156200020757634e487b7160e01b600052602260045260246000fd5b50919050565b608051611d2a62000237600039600081816102c3015281816106f701526108650152611d2a6000f3fe608060405234801561001057600080fd5b50600436106101e55760003560e01c8063715018a61161010f578063b88d4fde116100a2578063dc33e68111610071578063dc33e6811461042d578063e8a3d48514610440578063e985e9c514610448578063f2fde38b1461048457600080fd5b8063b88d4fde146103f6578063c0e7274014610409578063c87b56dd14610411578063d7224ba01461042457600080fd5b8063938e3d7b116100de578063938e3d7b146103a857806395d89b41146103bb578063a22cb465146103c3578063a7cd52cb146103d657600080fd5b8063715018a61461033357806388c206f71461033b5780638da5cb5b1461034e5780639231ab2a1461035f57600080fd5b8063375a069a1161018757806355f804b31161015657806355f804b3146102f257806359c74f29146103055780636352211e1461030d57806370a082311461032057600080fd5b8063375a069a1461029857806342842e0e146102ab57806345c0f533146102be578063471a4294146102e557600080fd5b8063095ea7b3116101c3578063095ea7b31461025257806318160ddd1461026757806323b872dd1461027d57806326092b831461029057600080fd5b806301ffc9a7146101ea57806306fdde0314610212578063081812fc14610227575b600080fd5b6101fd6101f836600461171d565b610497565b60405190151581526020015b60405180910390f35b61021a6104e9565b6040516102099190611792565b61023a6102353660046117a5565b61057b565b6040516001600160a01b039091168152602001610209565b6102656102603660046117da565b6105bf565b005b600254600154035b604051908152602001610209565b61026561028b366004611804565b61064d565b610265610658565b6102656102a63660046117a5565b610839565b6102656102b9366004611804565b6108ec565b61026f7f000000000000000000000000000000000000000000000000000000000000000081565b600b546101fd9060ff1681565b610265610300366004611840565b610907565b61026561093d565b61023a61031b3660046117a5565b61097b565b61026f61032e3660046118b1565b61098d565b6102656109db565b610265610349366004611912565b610a0f565b6000546001600160a01b031661023a565b61037261036d3660046117a5565b610aa0565b6040805182516001600160a01b031681526020808401516001600160401b03169082015291810151151590820152606001610209565b6102656103b6366004611a15565b610ac6565b61021a610b03565b6102656103d1366004611a5d565b610b12565b61026f6103e43660046118b1565b600c6020526000908152604090205481565b610265610404366004611a99565b610ba8565b61021a610bf9565b61021a61041f3660046117a5565b610c87565b61026f60095481565b61026f61043b3660046118b1565b610d0c565b61021a610d17565b6101fd610456366004611b14565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b6102656104923660046118b1565b610d26565b60006001600160e01b031982166380ac58cd60e01b14806104c857506001600160e01b03198216635b5e139f60e01b145b806104e357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600380546104f890611b47565b80601f016020809104026020016040519081016040528092919081815260200182805461052490611b47565b80156105715780601f1061054657610100808354040283529160200191610571565b820191906000526020600020905b81548152906001019060200180831161055457829003601f168201915b5050505050905090565b600061058682610dbe565b6105a3576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006105ca8261097b565b9050806001600160a01b0316836001600160a01b031614156105ff5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061061f575061061d8133610456565b155b1561063d576040516367d9dca160e11b815260040160405180910390fd5b610648838383610dea565b505050565b610648838383610e46565b3233146106ac5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064015b60405180910390fd5b600b5460ff166106f55760405162461bcd60e51b81526020600482015260146024820152731b5a5b9d081a185cc81b9bdd081cdd185c9d195960621b60448201526064016106a3565b7f00000000000000000000000000000000000000000000000000000000000000006107236002546001540390565b61072e906002611b98565b11156107715760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b60448201526064016106a3565b336000908152600c60205260409020546107cd5760405162461bcd60e51b815260206004820152601f60248201527f6e6f7420656c696769626c6520666f7220616c6c6f776c697374206d696e740060448201526064016106a3565b6107d633610d0c565b1561081c5760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b60448201526064016106a3565b336000818152600c602052604081205561083790600261105a565b565b6000546001600160a01b031633146108635760405162461bcd60e51b81526004016106a390611bb0565b7f0000000000000000000000000000000000000000000000000000000000000000816108926002546001540390565b61089c9190611b98565b11156108df5760405162461bcd60e51b815260206004820152601260248201527165786365656473206d617820737570706c7960701b60448201526064016106a3565b6108e9338261105a565b50565b61064883838360405180602001604052806000815250610ba8565b6000546001600160a01b031633146109315760405162461bcd60e51b81526004016106a390611bb0565b610648600d83836115fa565b6000546001600160a01b031633146109675760405162461bcd60e51b81526004016106a390611bb0565b600b805460ff19811660ff90911615179055565b600061098682611074565b5192915050565b60006001600160a01b0382166109b6576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6000546001600160a01b03163314610a055760405162461bcd60e51b81526004016106a390611bb0565b610837600061118e565b6000546001600160a01b03163314610a395760405162461bcd60e51b81526004016106a390611bb0565b60005b8151811015610a9c576002600c6000848481518110610a5d57610a5d611be5565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080610a9490611bfb565b915050610a3c565b5050565b60408051606081018252600080825260208201819052918101919091526104e382611074565b6000546001600160a01b03163314610af05760405162461bcd60e51b81526004016106a390611bb0565b8051610a9c90600e90602084019061167e565b6060600480546104f890611b47565b6001600160a01b038216331415610b3c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610bb3848484610e46565b6001600160a01b0383163b15158015610bd55750610bd3848484846111de565b155b15610bf3576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600e8054610c0690611b47565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3290611b47565b8015610c7f5780601f10610c5457610100808354040283529160200191610c7f565b820191906000526020600020905b815481529060010190602001808311610c6257829003601f168201915b505050505081565b6060610c9282610dbe565b610caf57604051630a14c4b560e41b815260040160405180910390fd5b6000610cb96112c7565b9050805160001415610cda5760405180602001604052806000815250610d05565b80610ce4846112d6565b604051602001610cf5929190611c16565b6040516020818303038152906040525b9392505050565b60006104e3826113d3565b6060600e80546104f890611b47565b6000546001600160a01b03163314610d505760405162461bcd60e51b81526004016106a390611bb0565b6001600160a01b038116610db55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106a3565b6108e98161118e565b6000600154821080156104e3575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610e5182611074565b80519091506000906001600160a01b0316336001600160a01b03161480610e7f57508151610e7f9033610456565b80610e9a575033610e8f8461057b565b6001600160a01b0316145b905080610eba57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610eef5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610f1657604051633a954ecd60e21b815260040160405180910390fd5b610f266000848460000151610dea565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166110105760015481101561101057825160008281526005602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610a9c828260405180602001604052806000815250611428565b60408051606081018252600080825260208201819052918101919091528160015481101561117557600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906111735780516001600160a01b03161561110a579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561116e579392505050565b61110a565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611213903390899088908890600401611c45565b6020604051808303816000875af192505050801561124e575060408051601f3d908101601f1916820190925261124b91810190611c82565b60015b6112a9573d80801561127c576040519150601f19603f3d011682016040523d82523d6000602084013e611281565b606091505b5080516112a1576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600d80546104f890611b47565b6060816112fa5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611324578061130e81611bfb565b915061131d9050600a83611cb5565b91506112fe565b6000816001600160401b0381111561133e5761133e6118cc565b6040519080825280601f01601f191660200182016040528015611368576020820181803683370190505b5090505b84156112bf5761137d600183611cc9565b915061138a600a86611ce0565b611395906030611b98565b60f81b8183815181106113aa576113aa611be5565b60200101906001600160f81b031916908160001a9053506113cc600a86611cb5565b945061136c565b60006001600160a01b0382166113fc576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260066020526040902054600160401b90046001600160401b031690565b610648838383600180546001600160a01b03851661145857604051622e076360e81b815260040160405180910390fd5b836114765760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561152257506001600160a01b0387163b15155b156115ab575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461157360008884806001019550886111de565b611590576040516368d2bf6b60e11b815260040160405180910390fd5b808214156115285782600154146115a657600080fd5b6115f1565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156115ac575b50600155611053565b82805461160690611b47565b90600052602060002090601f016020900481019282611628576000855561166e565b82601f106116415782800160ff1982351617855561166e565b8280016001018555821561166e579182015b8281111561166e578235825591602001919060010190611653565b5061167a9291506116f2565b5090565b82805461168a90611b47565b90600052602060002090601f0160209004810192826116ac576000855561166e565b82601f106116c557805160ff191683800117855561166e565b8280016001018555821561166e579182015b8281111561166e5782518255916020019190600101906116d7565b5b8082111561167a57600081556001016116f3565b6001600160e01b0319811681146108e957600080fd5b60006020828403121561172f57600080fd5b8135610d0581611707565b60005b8381101561175557818101518382015260200161173d565b83811115610bf35750506000910152565b6000815180845261177e81602086016020860161173a565b601f01601f19169290920160200192915050565b602081526000610d056020830184611766565b6000602082840312156117b757600080fd5b5035919050565b80356001600160a01b03811681146117d557600080fd5b919050565b600080604083850312156117ed57600080fd5b6117f6836117be565b946020939093013593505050565b60008060006060848603121561181957600080fd5b611822846117be565b9250611830602085016117be565b9150604084013590509250925092565b6000806020838503121561185357600080fd5b82356001600160401b038082111561186a57600080fd5b818501915085601f83011261187e57600080fd5b81358181111561188d57600080fd5b86602082850101111561189f57600080fd5b60209290920196919550909350505050565b6000602082840312156118c357600080fd5b610d05826117be565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561190a5761190a6118cc565b604052919050565b6000602080838503121561192557600080fd5b82356001600160401b038082111561193c57600080fd5b818501915085601f83011261195057600080fd5b813581811115611962576119626118cc565b8060051b91506119738483016118e2565b818152918301840191848101908884111561198d57600080fd5b938501935b838510156119b2576119a3856117be565b82529385019390850190611992565b98975050505050505050565b60006001600160401b038311156119d7576119d76118cc565b6119ea601f8401601f19166020016118e2565b90508281528383830111156119fe57600080fd5b828260208301376000602084830101529392505050565b600060208284031215611a2757600080fd5b81356001600160401b03811115611a3d57600080fd5b8201601f81018413611a4e57600080fd5b6112bf848235602084016119be565b60008060408385031215611a7057600080fd5b611a79836117be565b915060208301358015158114611a8e57600080fd5b809150509250929050565b60008060008060808587031215611aaf57600080fd5b611ab8856117be565b9350611ac6602086016117be565b92506040850135915060608501356001600160401b03811115611ae857600080fd5b8501601f81018713611af957600080fd5b611b08878235602084016119be565b91505092959194509250565b60008060408385031215611b2757600080fd5b611b30836117be565b9150611b3e602084016117be565b90509250929050565b600181811c90821680611b5b57607f821691505b60208210811415611b7c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611bab57611bab611b82565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b6000600019821415611c0f57611c0f611b82565b5060010190565b60008351611c2881846020880161173a565b835190830190611c3c81836020880161173a565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c7890830184611766565b9695505050505050565b600060208284031215611c9457600080fd5b8151610d0581611707565b634e487b7160e01b600052601260045260246000fd5b600082611cc457611cc4611c9f565b500490565b600082821015611cdb57611cdb611b82565b500390565b600082611cef57611cef611c9f565b50069056fea2646970667358221220c8d0a25f937452ec1732c98c93a8aef8d2cf2bd2d77d1371f1f1c98f781290a064736f6c634300080b0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101e55760003560e01c8063715018a61161010f578063b88d4fde116100a2578063dc33e68111610071578063dc33e6811461042d578063e8a3d48514610440578063e985e9c514610448578063f2fde38b1461048457600080fd5b8063b88d4fde146103f6578063c0e7274014610409578063c87b56dd14610411578063d7224ba01461042457600080fd5b8063938e3d7b116100de578063938e3d7b146103a857806395d89b41146103bb578063a22cb465146103c3578063a7cd52cb146103d657600080fd5b8063715018a61461033357806388c206f71461033b5780638da5cb5b1461034e5780639231ab2a1461035f57600080fd5b8063375a069a1161018757806355f804b31161015657806355f804b3146102f257806359c74f29146103055780636352211e1461030d57806370a082311461032057600080fd5b8063375a069a1461029857806342842e0e146102ab57806345c0f533146102be578063471a4294146102e557600080fd5b8063095ea7b3116101c3578063095ea7b31461025257806318160ddd1461026757806323b872dd1461027d57806326092b831461029057600080fd5b806301ffc9a7146101ea57806306fdde0314610212578063081812fc14610227575b600080fd5b6101fd6101f836600461171d565b610497565b60405190151581526020015b60405180910390f35b61021a6104e9565b6040516102099190611792565b61023a6102353660046117a5565b61057b565b6040516001600160a01b039091168152602001610209565b6102656102603660046117da565b6105bf565b005b600254600154035b604051908152602001610209565b61026561028b366004611804565b61064d565b610265610658565b6102656102a63660046117a5565b610839565b6102656102b9366004611804565b6108ec565b61026f7f00000000000000000000000000000000000000000000000000000000000000fa81565b600b546101fd9060ff1681565b610265610300366004611840565b610907565b61026561093d565b61023a61031b3660046117a5565b61097b565b61026f61032e3660046118b1565b61098d565b6102656109db565b610265610349366004611912565b610a0f565b6000546001600160a01b031661023a565b61037261036d3660046117a5565b610aa0565b6040805182516001600160a01b031681526020808401516001600160401b03169082015291810151151590820152606001610209565b6102656103b6366004611a15565b610ac6565b61021a610b03565b6102656103d1366004611a5d565b610b12565b61026f6103e43660046118b1565b600c6020526000908152604090205481565b610265610404366004611a99565b610ba8565b61021a610bf9565b61021a61041f3660046117a5565b610c87565b61026f60095481565b61026f61043b3660046118b1565b610d0c565b61021a610d17565b6101fd610456366004611b14565b6001600160a01b03918216600090815260086020908152604080832093909416825291909152205460ff1690565b6102656104923660046118b1565b610d26565b60006001600160e01b031982166380ac58cd60e01b14806104c857506001600160e01b03198216635b5e139f60e01b145b806104e357506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600380546104f890611b47565b80601f016020809104026020016040519081016040528092919081815260200182805461052490611b47565b80156105715780601f1061054657610100808354040283529160200191610571565b820191906000526020600020905b81548152906001019060200180831161055457829003601f168201915b5050505050905090565b600061058682610dbe565b6105a3576040516333d1c03960e21b815260040160405180910390fd5b506000908152600760205260409020546001600160a01b031690565b60006105ca8261097b565b9050806001600160a01b0316836001600160a01b031614156105ff5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061061f575061061d8133610456565b155b1561063d576040516367d9dca160e11b815260040160405180910390fd5b610648838383610dea565b505050565b610648838383610e46565b3233146106ac5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064015b60405180910390fd5b600b5460ff166106f55760405162461bcd60e51b81526020600482015260146024820152731b5a5b9d081a185cc81b9bdd081cdd185c9d195960621b60448201526064016106a3565b7f00000000000000000000000000000000000000000000000000000000000000fa6107236002546001540390565b61072e906002611b98565b11156107715760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b60448201526064016106a3565b336000908152600c60205260409020546107cd5760405162461bcd60e51b815260206004820152601f60248201527f6e6f7420656c696769626c6520666f7220616c6c6f776c697374206d696e740060448201526064016106a3565b6107d633610d0c565b1561081c5760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b60448201526064016106a3565b336000818152600c602052604081205561083790600261105a565b565b6000546001600160a01b031633146108635760405162461bcd60e51b81526004016106a390611bb0565b7f00000000000000000000000000000000000000000000000000000000000000fa816108926002546001540390565b61089c9190611b98565b11156108df5760405162461bcd60e51b815260206004820152601260248201527165786365656473206d617820737570706c7960701b60448201526064016106a3565b6108e9338261105a565b50565b61064883838360405180602001604052806000815250610ba8565b6000546001600160a01b031633146109315760405162461bcd60e51b81526004016106a390611bb0565b610648600d83836115fa565b6000546001600160a01b031633146109675760405162461bcd60e51b81526004016106a390611bb0565b600b805460ff19811660ff90911615179055565b600061098682611074565b5192915050565b60006001600160a01b0382166109b6576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600660205260409020546001600160401b031690565b6000546001600160a01b03163314610a055760405162461bcd60e51b81526004016106a390611bb0565b610837600061118e565b6000546001600160a01b03163314610a395760405162461bcd60e51b81526004016106a390611bb0565b60005b8151811015610a9c576002600c6000848481518110610a5d57610a5d611be5565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080610a9490611bfb565b915050610a3c565b5050565b60408051606081018252600080825260208201819052918101919091526104e382611074565b6000546001600160a01b03163314610af05760405162461bcd60e51b81526004016106a390611bb0565b8051610a9c90600e90602084019061167e565b6060600480546104f890611b47565b6001600160a01b038216331415610b3c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526008602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610bb3848484610e46565b6001600160a01b0383163b15158015610bd55750610bd3848484846111de565b155b15610bf3576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600e8054610c0690611b47565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3290611b47565b8015610c7f5780601f10610c5457610100808354040283529160200191610c7f565b820191906000526020600020905b815481529060010190602001808311610c6257829003601f168201915b505050505081565b6060610c9282610dbe565b610caf57604051630a14c4b560e41b815260040160405180910390fd5b6000610cb96112c7565b9050805160001415610cda5760405180602001604052806000815250610d05565b80610ce4846112d6565b604051602001610cf5929190611c16565b6040516020818303038152906040525b9392505050565b60006104e3826113d3565b6060600e80546104f890611b47565b6000546001600160a01b03163314610d505760405162461bcd60e51b81526004016106a390611bb0565b6001600160a01b038116610db55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106a3565b6108e98161118e565b6000600154821080156104e3575050600090815260056020526040902054600160e01b900460ff161590565b60008281526007602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610e5182611074565b80519091506000906001600160a01b0316336001600160a01b03161480610e7f57508151610e7f9033610456565b80610e9a575033610e8f8461057b565b6001600160a01b0316145b905080610eba57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610eef5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610f1657604051633a954ecd60e21b815260040160405180910390fd5b610f266000848460000151610dea565b6001600160a01b038581166000908152600660209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600590945282852080546001600160e01b031916909417600160a01b4290921691909102179092559086018083529120549091166110105760015481101561101057825160008281526005602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b610a9c828260405180602001604052806000815250611428565b60408051606081018252600080825260208201819052918101919091528160015481101561117557600081815260056020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906111735780516001600160a01b03161561110a579392505050565b5060001901600081815260056020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff161515928101929092521561116e579392505050565b61110a565b505b604051636f96cda160e11b815260040160405180910390fd5b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611213903390899088908890600401611c45565b6020604051808303816000875af192505050801561124e575060408051601f3d908101601f1916820190925261124b91810190611c82565b60015b6112a9573d80801561127c576040519150601f19603f3d011682016040523d82523d6000602084013e611281565b606091505b5080516112a1576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600d80546104f890611b47565b6060816112fa5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611324578061130e81611bfb565b915061131d9050600a83611cb5565b91506112fe565b6000816001600160401b0381111561133e5761133e6118cc565b6040519080825280601f01601f191660200182016040528015611368576020820181803683370190505b5090505b84156112bf5761137d600183611cc9565b915061138a600a86611ce0565b611395906030611b98565b60f81b8183815181106113aa576113aa611be5565b60200101906001600160f81b031916908160001a9053506113cc600a86611cb5565b945061136c565b60006001600160a01b0382166113fc576040516335ebb31960e01b815260040160405180910390fd5b506001600160a01b0316600090815260066020526040902054600160401b90046001600160401b031690565b610648838383600180546001600160a01b03851661145857604051622e076360e81b815260040160405180910390fd5b836114765760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260066020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600590925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561152257506001600160a01b0387163b15155b156115ab575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461157360008884806001019550886111de565b611590576040516368d2bf6b60e11b815260040160405180910390fd5b808214156115285782600154146115a657600080fd5b6115f1565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156115ac575b50600155611053565b82805461160690611b47565b90600052602060002090601f016020900481019282611628576000855561166e565b82601f106116415782800160ff1982351617855561166e565b8280016001018555821561166e579182015b8281111561166e578235825591602001919060010190611653565b5061167a9291506116f2565b5090565b82805461168a90611b47565b90600052602060002090601f0160209004810192826116ac576000855561166e565b82601f106116c557805160ff191683800117855561166e565b8280016001018555821561166e579182015b8281111561166e5782518255916020019190600101906116d7565b5b8082111561167a57600081556001016116f3565b6001600160e01b0319811681146108e957600080fd5b60006020828403121561172f57600080fd5b8135610d0581611707565b60005b8381101561175557818101518382015260200161173d565b83811115610bf35750506000910152565b6000815180845261177e81602086016020860161173a565b601f01601f19169290920160200192915050565b602081526000610d056020830184611766565b6000602082840312156117b757600080fd5b5035919050565b80356001600160a01b03811681146117d557600080fd5b919050565b600080604083850312156117ed57600080fd5b6117f6836117be565b946020939093013593505050565b60008060006060848603121561181957600080fd5b611822846117be565b9250611830602085016117be565b9150604084013590509250925092565b6000806020838503121561185357600080fd5b82356001600160401b038082111561186a57600080fd5b818501915085601f83011261187e57600080fd5b81358181111561188d57600080fd5b86602082850101111561189f57600080fd5b60209290920196919550909350505050565b6000602082840312156118c357600080fd5b610d05826117be565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561190a5761190a6118cc565b604052919050565b6000602080838503121561192557600080fd5b82356001600160401b038082111561193c57600080fd5b818501915085601f83011261195057600080fd5b813581811115611962576119626118cc565b8060051b91506119738483016118e2565b818152918301840191848101908884111561198d57600080fd5b938501935b838510156119b2576119a3856117be565b82529385019390850190611992565b98975050505050505050565b60006001600160401b038311156119d7576119d76118cc565b6119ea601f8401601f19166020016118e2565b90508281528383830111156119fe57600080fd5b828260208301376000602084830101529392505050565b600060208284031215611a2757600080fd5b81356001600160401b03811115611a3d57600080fd5b8201601f81018413611a4e57600080fd5b6112bf848235602084016119be565b60008060408385031215611a7057600080fd5b611a79836117be565b915060208301358015158114611a8e57600080fd5b809150509250929050565b60008060008060808587031215611aaf57600080fd5b611ab8856117be565b9350611ac6602086016117be565b92506040850135915060608501356001600160401b03811115611ae857600080fd5b8501601f81018713611af957600080fd5b611b08878235602084016119be565b91505092959194509250565b60008060408385031215611b2757600080fd5b611b30836117be565b9150611b3e602084016117be565b90509250929050565b600181811c90821680611b5b57607f821691505b60208210811415611b7c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611bab57611bab611b82565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b6000600019821415611c0f57611c0f611b82565b5060010190565b60008351611c2881846020880161173a565b835190830190611c3c81836020880161173a565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c7890830184611766565b9695505050505050565b600060208284031215611c9457600080fd5b8151610d0581611707565b634e487b7160e01b600052601260045260246000fd5b600082611cc457611cc4611c9f565b500490565b600082821015611cdb57611cdb611b82565b500390565b600082611cef57611cef611c9f565b50069056fea2646970667358221220c8d0a25f937452ec1732c98c93a8aef8d2cf2bd2d77d1371f1f1c98f781290a064736f6c634300080b0033

Deployed Bytecode Sourcemap

50432:2031:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25782:305;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;25782:305:0;;;;;;;;29167:100;;;:::i;:::-;;;;;;;:::i;30670:204::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;30670:204:0;1528:203:1;30233:371:0;;;;;;:::i;:::-;;:::i;:::-;;25031:303;25285:12;;25269:13;;:28;25031:303;;;2319:25:1;;;2307:2;2292:18;25031:303:0;2173:177:1;31535:170:0;;;;;;:::i;:::-;;:::i;51022:385::-;;;:::i;51413:178::-;;;;;;:::i;:::-;;:::i;31776:185::-;;;;;;:::i;:::-;;:::i;50525:45::-;;;;;50577:32;;;;;;;;;52011:100;;;;;;:::i;:::-;;:::i;51597:83::-;;;:::i;28976:124::-;;;;;;:::i;:::-;;:::i;26151:206::-;;;;;;:::i;:::-;;:::i;46775:103::-;;;:::i;50843:173::-;;;;;;:::i;:::-;;:::i;46124:87::-;46170:7;46197:6;-1:-1:-1;;;;;46197:6:0;46124:87;;52331:129;;;;;;:::i;:::-;;:::i;:::-;;;;5075:13:1;;-1:-1:-1;;;;;5071:39:1;5053:58;;5171:4;5159:17;;;5153:24;-1:-1:-1;;;;;5149:49:1;5127:20;;;5120:79;5257:17;;;5251:24;5244:32;5237:40;5215:20;;;5208:70;5041:2;5026:18;52331:129:0;4845:439:1;52117:93:0;;;;;;:::i;:::-;;:::i;29336:104::-;;;:::i;30946:287::-;;;;;;:::i;:::-;;:::i;50616:44::-;;;;;;:::i;:::-;;;;;;;;;;;;;;32032:369;;;;;;:::i;:::-;;:::i;51760:31::-;;;:::i;29511:318::-;;;;;;:::i;:::-;;:::i;43572:39::-;;;;;;52217:107;;;;;;:::i;:::-;;:::i;51913:91::-;;;:::i;31304:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;31425:25:0;;;31401:4;31425:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31304:164;47033:201;;;;;;:::i;:::-;;:::i;25782:305::-;25884:4;-1:-1:-1;;;;;;25921:40:0;;-1:-1:-1;;;25921:40:0;;:105;;-1:-1:-1;;;;;;;25978:48:0;;-1:-1:-1;;;25978:48:0;25921:105;:158;;;-1:-1:-1;;;;;;;;;;13549:40:0;;;26043:36;25901:178;25782:305;-1:-1:-1;;25782:305:0:o;29167:100::-;29221:13;29254:5;29247:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29167:100;:::o;30670:204::-;30738:7;30763:16;30771:7;30763;:16::i;:::-;30758:64;;30788:34;;-1:-1:-1;;;30788:34:0;;;;;;;;;;;30758:64;-1:-1:-1;30842:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30842:24:0;;30670:204::o;30233:371::-;30306:13;30322:24;30338:7;30322:15;:24::i;:::-;30306:40;;30367:5;-1:-1:-1;;;;;30361:11:0;:2;-1:-1:-1;;;;;30361:11:0;;30357:48;;;30381:24;;-1:-1:-1;;;30381:24:0;;;;;;;;;;;30357:48;21118:10;-1:-1:-1;;;;;30422:21:0;;;;;;:63;;-1:-1:-1;30448:37:0;30465:5;21118:10;31304:164;:::i;30448:37::-;30447:38;30422:63;30418:138;;;30509:35;;-1:-1:-1;;;30509:35:0;;;;;;;;;;;30418:138;30568:28;30577:2;30581:7;30590:5;30568:8;:28::i;:::-;30295:309;30233:371;;:::o;31535:170::-;31669:28;31679:4;31685:2;31689:7;31669:9;:28::i;51022:385::-;50764:9;50777:10;50764:23;50756:66;;;;-1:-1:-1;;;50756:66:0;;8033:2:1;50756:66:0;;;8015:21:1;8072:2;8052:18;;;8045:30;8111:32;8091:18;;;8084:60;8161:18;;50756:66:0;;;;;;;;;51081:12:::1;::::0;::::1;;51073:45;;;::::0;-1:-1:-1;;;51073:45:0;;8392:2:1;51073:45:0::1;::::0;::::1;8374:21:1::0;8431:2;8411:18;;;8404:30;-1:-1:-1;;;8450:18:1;;;8443:50;8510:18;;51073:45:0::1;8190:344:1::0;51073:45:0::1;51154:14;51133:13;25285:12:::0;;25269:13;;:28;;25031:303;51133:13:::1;:17;::::0;51149:1:::1;51133:17;:::i;:::-;:35;;51125:66;;;::::0;-1:-1:-1;;;51125:66:0;;9006:2:1;51125:66:0::1;::::0;::::1;8988:21:1::0;9045:2;9025:18;;;9018:30;-1:-1:-1;;;9064:18:1;;;9057:48;9122:18;;51125:66:0::1;8804:342:1::0;51125:66:0::1;51216:10;51230:1;51206:21:::0;;;:9:::1;:21;::::0;;;;;51198:69:::1;;;::::0;-1:-1:-1;;;51198:69:0;;9353:2:1;51198:69:0::1;::::0;::::1;9335:21:1::0;9392:2;9372:18;;;9365:30;9431:33;9411:18;;;9404:61;9482:18;;51198:69:0::1;9151:355:1::0;51198:69:0::1;51282:24;51295:10;51282:12;:24::i;:::-;:29:::0;51274:64:::1;;;::::0;-1:-1:-1;;;51274:64:0;;9713:2:1;51274:64:0::1;::::0;::::1;9695:21:1::0;9752:2;9732:18;;;9725:30;-1:-1:-1;;;9771:18:1;;;9764:52;9833:18;;51274:64:0::1;9511:346:1::0;51274:64:0::1;51355:10;51369:1;51345:21:::0;;;:9:::1;:21;::::0;;;;:25;51377:24:::1;::::0;51399:1:::1;51377:9;:24::i;:::-;51022:385::o:0;51413:178::-;46170:7;46197:6;-1:-1:-1;;;;;46197:6:0;21118:10;46344:23;46336:68;;;;-1:-1:-1;;;46336:68:0;;;;;;;:::i;:::-;51510:14:::1;51498:8;51482:13;25285:12:::0;;25269:13;;:28;;25031:303;51482:13:::1;:24;;;;:::i;:::-;:42;;51474:73;;;::::0;-1:-1:-1;;;51474:73:0;;10425:2:1;51474:73:0::1;::::0;::::1;10407:21:1::0;10464:2;10444:18;;;10437:30;-1:-1:-1;;;10483:18:1;;;10476:48;10541:18;;51474:73:0::1;10223:342:1::0;51474:73:0::1;51554:31;51564:10;51576:8;51554:9;:31::i;:::-;51413:178:::0;:::o;31776:185::-;31914:39;31931:4;31937:2;31941:7;31914:39;;;;;;;;;;;;:16;:39::i;52011:100::-;46170:7;46197:6;-1:-1:-1;;;;;46197:6:0;21118:10;46344:23;46336:68;;;;-1:-1:-1;;;46336:68:0;;;;;;;:::i;:::-;52082:23:::1;:13;52098:7:::0;;52082:23:::1;:::i;51597:83::-:0;46170:7;46197:6;-1:-1:-1;;;;;46197:6:0;21118:10;46344:23;46336:68;;;;-1:-1:-1;;;46336:68:0;;;;;;;:::i;:::-;51662:12:::1;::::0;;-1:-1:-1;;51646:28:0;::::1;51662:12;::::0;;::::1;51661:13;51646:28;::::0;;51597:83::o;28976:124::-;29040:7;29067:20;29079:7;29067:11;:20::i;:::-;:25;;28976:124;-1:-1:-1;;28976:124:0:o;26151:206::-;26215:7;-1:-1:-1;;;;;26239:19:0;;26235:60;;26267:28;;-1:-1:-1;;;26267:28:0;;;;;;;;;;;26235:60;-1:-1:-1;;;;;;26321:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;26321:27:0;;26151:206::o;46775:103::-;46170:7;46197:6;-1:-1:-1;;;;;46197:6:0;21118:10;46344:23;46336:68;;;;-1:-1:-1;;;46336:68:0;;;;;;;:::i;:::-;46840:30:::1;46867:1;46840:18;:30::i;50843:173::-:0;46170:7;46197:6;-1:-1:-1;;;;;46197:6:0;21118:10;46344:23;46336:68;;;;-1:-1:-1;;;46336:68:0;;;;;;;:::i;:::-;50925:9:::1;50920:91;50944:9;:16;50940:1;:20;50920:91;;;51002:1;50976:9;:23;50986:9;50996:1;50986:12;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;50976:23:0::1;-1:-1:-1::0;;;;;50976:23:0::1;;;;;;;;;;;;:27;;;;50962:3;;;;;:::i;:::-;;;;50920:91;;;;50843:173:::0;:::o;52331:129::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;52434:20:0;52446:7;52434:11;:20::i;52117:93::-;46170:7;46197:6;-1:-1:-1;;;;;46197:6:0;21118:10;46344:23;46336:68;;;;-1:-1:-1;;;46336:68:0;;;;;;;:::i;:::-;52185:19;;::::1;::::0;:12:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;29336:104::-:0;29392:13;29425:7;29418:14;;;;;:::i;30946:287::-;-1:-1:-1;;;;;31045:24:0;;21118:10;31045:24;31041:54;;;31078:17;;-1:-1:-1;;;31078:17:0;;;;;;;;;;;31041:54;21118:10;31108:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31108:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31108:53:0;;;;;;;;;;31177:48;;540:41:1;;;31108:42:0;;21118:10;31177:48;;513:18:1;31177:48:0;;;;;;;30946:287;;:::o;32032:369::-;32199:28;32209:4;32215:2;32219:7;32199:9;:28::i;:::-;-1:-1:-1;;;;;32242:13:0;;3652:19;:23;;32242:76;;;;;32262:56;32293:4;32299:2;32303:7;32312:5;32262:30;:56::i;:::-;32261:57;32242:76;32238:156;;;32342:40;;-1:-1:-1;;;32342:40:0;;;;;;;;;;;32238:156;32032:369;;;;:::o;51760:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29511:318::-;29584:13;29615:16;29623:7;29615;:16::i;:::-;29610:59;;29640:29;;-1:-1:-1;;;29640:29:0;;;;;;;;;;;29610:59;29682:21;29706:10;:8;:10::i;:::-;29682:34;;29740:7;29734:21;29759:1;29734:26;;:87;;;;;;;;;;;;;;;;;29787:7;29796:18;:7;:16;:18::i;:::-;29770:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;29734:87;29727:94;29511:318;-1:-1:-1;;;29511:318:0:o;52217:107::-;52275:7;52298:20;52312:5;52298:13;:20::i;51913:91::-;51957:13;51986:12;51979:19;;;;;:::i;47033:201::-;46170:7;46197:6;-1:-1:-1;;;;;46197:6:0;21118:10;46344:23;46336:68;;;;-1:-1:-1;;;46336:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47122:22:0;::::1;47114:73;;;::::0;-1:-1:-1;;;47114:73:0;;11519:2:1;47114:73:0::1;::::0;::::1;11501:21:1::0;11558:2;11538:18;;;11531:30;11597:34;11577:18;;;11570:62;-1:-1:-1;;;11648:18:1;;;11641:36;11694:19;;47114:73:0::1;11317:402:1::0;47114:73:0::1;47198:28;47217:8;47198:18;:28::i;32656:187::-:0;32713:4;32777:13;;32767:7;:23;32737:98;;;;-1:-1:-1;;32808:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;32808:27:0;;;;32807:28;;32656:187::o;40267:196::-;40382:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;40382:29:0;-1:-1:-1;;;;;40382:29:0;;;;;;;;;40427:28;;40382:24;;40427:28;;;;;;;40267:196;;;:::o;35769:2112::-;35884:35;35922:20;35934:7;35922:11;:20::i;:::-;35997:18;;35884:58;;-1:-1:-1;35955:22:0;;-1:-1:-1;;;;;35981:34:0;21118:10;-1:-1:-1;;;;;35981:34:0;;:101;;;-1:-1:-1;36049:18:0;;36032:50;;21118:10;31304:164;:::i;36032:50::-;35981:154;;;-1:-1:-1;21118:10:0;36099:20;36111:7;36099:11;:20::i;:::-;-1:-1:-1;;;;;36099:36:0;;35981:154;35955:181;;36154:17;36149:66;;36180:35;;-1:-1:-1;;;36180:35:0;;;;;;;;;;;36149:66;36252:4;-1:-1:-1;;;;;36230:26:0;:13;:18;;;-1:-1:-1;;;;;36230:26:0;;36226:67;;36265:28;;-1:-1:-1;;;36265:28:0;;;;;;;;;;;36226:67;-1:-1:-1;;;;;36308:16:0;;36304:52;;36333:23;;-1:-1:-1;;;36333:23:0;;;;;;;;;;;36304:52;36477:49;36494:1;36498:7;36507:13;:18;;;36477:8;:49::i;:::-;-1:-1:-1;;;;;36822:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;36822:31:0;;;-1:-1:-1;;;;;36822:31:0;;;-1:-1:-1;;36822:31:0;;;;;;;36868:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;36868:29:0;;;;;;;;;;;36914:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;36959:61:0;;;;-1:-1:-1;;;37004:15:0;36959:61;;;;;;;;;;;37294:11;;;37324:24;;;;;:29;37294:11;;37324:29;37320:445;;37549:13;;37535:11;:27;37531:219;;;37619:18;;;37587:24;;;:11;:24;;;;;;;;:50;;37702:28;;;;-1:-1:-1;;;;;37660:70:0;-1:-1:-1;;;37660:70:0;-1:-1:-1;;;;;;37660:70:0;;;-1:-1:-1;;;;;37587:50:0;;;37660:70;;;;;;;37531:219;36797:979;37812:7;37808:2;-1:-1:-1;;;;;37793:27:0;37802:4;-1:-1:-1;;;;;37793:27:0;;;;;;;;;;;37831:42;35873:2008;;35769:2112;;;:::o;32851:104::-;32920:27;32930:2;32934:8;32920:27;;;;;;;;;;;;:9;:27::i;27806:1108::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;27916:7:0;27999:13;;27992:4;:20;27961:886;;;28033:31;28067:17;;;:11;:17;;;;;;;;;28033:51;;;;;;;;;-1:-1:-1;;;;;28033:51:0;;;;-1:-1:-1;;;28033:51:0;;-1:-1:-1;;;;;28033:51:0;;;;;;;;-1:-1:-1;;;28033:51:0;;;;;;;;;;;;;;28103:729;;28153:14;;-1:-1:-1;;;;;28153:28:0;;28149:101;;28217:9;27806:1108;-1:-1:-1;;;27806:1108:0:o;28149:101::-;-1:-1:-1;;;28592:6:0;28637:17;;;;:11;:17;;;;;;;;;28625:29;;;;;;;;;-1:-1:-1;;;;;28625:29:0;;;;;-1:-1:-1;;;28625:29:0;;-1:-1:-1;;;;;28625:29:0;;;;;;;;-1:-1:-1;;;28625:29:0;;;;;;;;;;;;;28685:28;28681:109;;28753:9;27806:1108;-1:-1:-1;;;27806:1108:0:o;28681:109::-;28552:261;;;28014:833;27961:886;28875:31;;-1:-1:-1;;;28875:31:0;;;;;;;;;;;47394:191;47468:16;47487:6;;-1:-1:-1;;;;;47504:17:0;;;-1:-1:-1;;;;;;47504:17:0;;;;;;47537:40;;47487:6;;;;;;;47537:40;;47468:16;47537:40;47457:128;47394:191;:::o;40955:667::-;41139:72;;-1:-1:-1;;;41139:72:0;;41118:4;;-1:-1:-1;;;;;41139:36:0;;;;;:72;;21118:10;;41190:4;;41196:7;;41205:5;;41139:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41139:72:0;;;;;;;;-1:-1:-1;;41139:72:0;;;;;;;;;;;;:::i;:::-;;;41135:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41373:13:0;;41369:235;;41419:40;;-1:-1:-1;;;41419:40:0;;;;;;;;;;;41369:235;41562:6;41556:13;41547:6;41543:2;41539:15;41532:38;41135:480;-1:-1:-1;;;;;;41258:55:0;-1:-1:-1;;;41258:55:0;;-1:-1:-1;41135:480:0;40955:667;;;;;;:::o;51799:108::-;51859:13;51888;51881:20;;;;;:::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;-1:-1:-1;;;;;867:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-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;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;26439:207;26500:7;-1:-1:-1;;;;;26524:19:0;;26520:59;;26552:27;;-1:-1:-1;;;26552:27:0;;;;;;;;;;;26520:59;-1:-1:-1;;;;;;26605:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;26605:32:0;;-1:-1:-1;;;;;26605:32:0;;26439:207::o;33318:163::-;33441:32;33447:2;33451:8;33461:5;33468:4;33902:13;;-1:-1:-1;;;;;33930:16:0;;33926:48;;33955:19;;-1:-1:-1;;;33955:19:0;;;;;;;;;;;33926:48;33989:13;33985:44;;34011:18;;-1:-1:-1;;;34011:18:0;;;;;;;;;;;33985:44;-1:-1:-1;;;;;34380:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;34439:49:0;;-1:-1:-1;;;;;34380:44:0;;;;;;;34439:49;;;-1:-1:-1;;;;;34380:44:0;;;;;;34439:49;;;;;;;;;;;;;;;;34505:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;34555:66:0;;;;-1:-1:-1;;;34605:15:0;34555:66;;;;;;;;;;34505:25;34702:23;;;34746:4;:23;;;;-1:-1:-1;;;;;;34754:13:0;;3652:19;:23;;34754:15;34742:641;;;34790:314;34821:38;;34846:12;;-1:-1:-1;;;;;34821:38:0;;;34838:1;;34821:38;;34838:1;;34821:38;34887:69;34926:1;34930:2;34934:14;;;;;;34950:5;34887:30;:69::i;:::-;34882:174;;34992:40;;-1:-1:-1;;;34992:40:0;;;;;;;;;;;34882:174;35099:3;35083:12;:19;;34790:314;;35185:12;35168:13;;:29;35164:43;;35199:8;;;35164:43;34742:641;;;35248:120;35279:40;;35304:14;;;;;-1:-1:-1;;;;;35279:40:0;;;35296:1;;35279:40;;35296:1;;35279:40;35363:3;35347:12;:19;;35248:120;;34742:641;-1:-1:-1;35397:13:0;:28;35447:60;32032:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:592::-;2759:6;2767;2820:2;2808:9;2799:7;2795:23;2791:32;2788:52;;;2836:1;2833;2826:12;2788:52;2876:9;2863:23;-1:-1:-1;;;;;2946:2:1;2938:6;2935:14;2932:34;;;2962:1;2959;2952:12;2932:34;3000:6;2989:9;2985:22;2975:32;;3045:7;3038:4;3034:2;3030:13;3026:27;3016:55;;3067:1;3064;3057:12;3016:55;3107:2;3094:16;3133:2;3125:6;3122:14;3119:34;;;3149:1;3146;3139:12;3119:34;3194:7;3189:2;3180:6;3176:2;3172:15;3168:24;3165:37;3162:57;;;3215:1;3212;3205:12;3162:57;3246:2;3238:11;;;;;3268:6;;-1:-1:-1;2688:592:1;;-1:-1:-1;;;;2688:592:1:o;3285:186::-;3344:6;3397:2;3385:9;3376:7;3372:23;3368:32;3365:52;;;3413:1;3410;3403:12;3365:52;3436:29;3455:9;3436:29;:::i;3476:127::-;3537:10;3532:3;3528:20;3525:1;3518:31;3568:4;3565:1;3558:15;3592:4;3589:1;3582:15;3608:275;3679:2;3673:9;3744:2;3725:13;;-1:-1:-1;;3721:27:1;3709:40;;-1:-1:-1;;;;;3764:34:1;;3800:22;;;3761:62;3758:88;;;3826:18;;:::i;:::-;3862:2;3855:22;3608:275;;-1:-1:-1;3608:275:1:o;3888:952::-;3972:6;4003:2;4046;4034:9;4025:7;4021:23;4017:32;4014:52;;;4062:1;4059;4052:12;4014:52;4102:9;4089:23;-1:-1:-1;;;;;4172:2:1;4164:6;4161:14;4158:34;;;4188:1;4185;4178:12;4158:34;4226:6;4215:9;4211:22;4201:32;;4271:7;4264:4;4260:2;4256:13;4252:27;4242:55;;4293:1;4290;4283:12;4242:55;4329:2;4316:16;4351:2;4347;4344:10;4341:36;;;4357:18;;:::i;:::-;4403:2;4400:1;4396:10;4386:20;;4426:28;4450:2;4446;4442:11;4426:28;:::i;:::-;4488:15;;;4558:11;;;4554:20;;;4519:12;;;;4586:19;;;4583:39;;;4618:1;4615;4608:12;4583:39;4642:11;;;;4662:148;4678:6;4673:3;4670:15;4662:148;;;4744:23;4763:3;4744:23;:::i;:::-;4732:36;;4695:12;;;;4788;;;;4662:148;;;4829:5;3888:952;-1:-1:-1;;;;;;;;3888:952:1:o;5289:407::-;5354:5;-1:-1:-1;;;;;5380:6:1;5377:30;5374:56;;;5410:18;;:::i;:::-;5448:57;5493:2;5472:15;;-1:-1:-1;;5468:29:1;5499:4;5464:40;5448:57;:::i;:::-;5439:66;;5528:6;5521:5;5514:21;5568:3;5559:6;5554:3;5550:16;5547:25;5544:45;;;5585:1;5582;5575:12;5544:45;5634:6;5629:3;5622:4;5615:5;5611:16;5598:43;5688:1;5681:4;5672:6;5665:5;5661:18;5657:29;5650:40;5289:407;;;;;:::o;5701:451::-;5770:6;5823:2;5811:9;5802:7;5798:23;5794:32;5791:52;;;5839:1;5836;5829:12;5791:52;5879:9;5866:23;-1:-1:-1;;;;;5904:6:1;5901:30;5898:50;;;5944:1;5941;5934:12;5898:50;5967:22;;6020:4;6012:13;;6008:27;-1:-1:-1;5998:55:1;;6049:1;6046;6039:12;5998:55;6072:74;6138:7;6133:2;6120:16;6115:2;6111;6107:11;6072:74;:::i;6157:347::-;6222:6;6230;6283:2;6271:9;6262:7;6258:23;6254:32;6251:52;;;6299:1;6296;6289:12;6251:52;6322:29;6341:9;6322:29;:::i;:::-;6312:39;;6401:2;6390:9;6386:18;6373:32;6448:5;6441:13;6434:21;6427:5;6424:32;6414:60;;6470:1;6467;6460:12;6414:60;6493:5;6483:15;;;6157:347;;;;;:::o;6509:667::-;6604:6;6612;6620;6628;6681:3;6669:9;6660:7;6656:23;6652:33;6649:53;;;6698:1;6695;6688:12;6649:53;6721:29;6740:9;6721:29;:::i;:::-;6711:39;;6769:38;6803:2;6792:9;6788:18;6769:38;:::i;:::-;6759:48;;6854:2;6843:9;6839:18;6826:32;6816:42;;6909:2;6898:9;6894:18;6881:32;-1:-1:-1;;;;;6928:6:1;6925:30;6922:50;;;6968:1;6965;6958:12;6922:50;6991:22;;7044:4;7036:13;;7032:27;-1:-1:-1;7022:55:1;;7073:1;7070;7063:12;7022:55;7096:74;7162:7;7157:2;7144:16;7139:2;7135;7131:11;7096:74;:::i;:::-;7086:84;;;6509:667;;;;;;;:::o;7181:260::-;7249:6;7257;7310:2;7298:9;7289:7;7285:23;7281:32;7278:52;;;7326:1;7323;7316:12;7278:52;7349:29;7368:9;7349:29;:::i;:::-;7339:39;;7397:38;7431:2;7420:9;7416:18;7397:38;:::i;:::-;7387:48;;7181:260;;;;;:::o;7446:380::-;7525:1;7521:12;;;;7568;;;7589:61;;7643:4;7635:6;7631:17;7621:27;;7589:61;7696:2;7688:6;7685:14;7665:18;7662:38;7659:161;;;7742:10;7737:3;7733:20;7730:1;7723:31;7777:4;7774:1;7767:15;7805:4;7802:1;7795:15;7659:161;;7446:380;;;:::o;8539:127::-;8600:10;8595:3;8591:20;8588:1;8581:31;8631:4;8628:1;8621:15;8655:4;8652:1;8645:15;8671:128;8711:3;8742:1;8738:6;8735:1;8732:13;8729:39;;;8748:18;;:::i;:::-;-1:-1:-1;8784:9:1;;8671:128::o;9862:356::-;10064:2;10046:21;;;10083:18;;;10076:30;10142:34;10137:2;10122:18;;10115:62;10209:2;10194:18;;9862:356::o;10570:127::-;10631:10;10626:3;10622:20;10619:1;10612:31;10662:4;10659:1;10652:15;10686:4;10683:1;10676:15;10702:135;10741:3;-1:-1:-1;;10762:17:1;;10759:43;;;10782:18;;:::i;:::-;-1:-1:-1;10829:1:1;10818:13;;10702:135::o;10842:470::-;11021:3;11059:6;11053:13;11075:53;11121:6;11116:3;11109:4;11101:6;11097:17;11075:53;:::i;:::-;11191:13;;11150:16;;;;11213:57;11191:13;11150:16;11247:4;11235:17;;11213:57;:::i;:::-;11286:20;;10842:470;-1:-1:-1;;;;10842:470:1:o;11724:489::-;-1:-1:-1;;;;;11993:15:1;;;11975:34;;12045:15;;12040:2;12025:18;;12018:43;12092:2;12077:18;;12070:34;;;12140:3;12135:2;12120:18;;12113:31;;;11918:4;;12161:46;;12187:19;;12179:6;12161:46;:::i;:::-;12153:54;11724:489;-1:-1:-1;;;;;;11724:489:1:o;12218:249::-;12287:6;12340:2;12328:9;12319:7;12315:23;12311:32;12308:52;;;12356:1;12353;12346:12;12308:52;12388:9;12382:16;12407:30;12431:5;12407:30;:::i;12472:127::-;12533:10;12528:3;12524:20;12521:1;12514:31;12564:4;12561:1;12554:15;12588:4;12585:1;12578:15;12604:120;12644:1;12670;12660:35;;12675:18;;:::i;:::-;-1:-1:-1;12709:9:1;;12604:120::o;12729:125::-;12769:4;12797:1;12794;12791:8;12788:34;;;12802:18;;:::i;:::-;-1:-1:-1;12839:9:1;;12729:125::o;12859:112::-;12891:1;12917;12907:35;;12922:18;;:::i;:::-;-1:-1:-1;12956:9:1;;12859:112::o

Swarm Source

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