ETH Price: $3,276.16 (-4.08%)

Token

Bulbbers Meta-Pass (BMP)
 

Overview

Max Total Supply

205 BMP

Holders

136

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
anglochino.eth
Balance
2 BMP
0x47EF26Eb5C4a906C387A04FAA155Eddf05542180
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:
BulbbersMetaPass

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-01-13
*/

// SPDX-License-Identifier: MIT
// 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/token/ERC721/[email protected]

// 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/[email protected]

// 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/token/ERC721/extensions/[email protected]

// 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/[email protected]

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]

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

pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/utils/[email protected]

// 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) {

        // 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/introspection/[email protected]

// 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/[email protected]

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

pragma solidity ^0.8.0;







/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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


// File @openzeppelin/contracts/access/[email protected]

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


// File contracts/MetaPass.sol

pragma solidity ^0.8.11;
contract BulbbersMetaPass is ERC721, Ownable  {
    uint16 public constant MAX_SUPPLY = 700;
    uint256 public constant PRICE = 0.06 ether;
    uint8 public constant MAX_PER_MINT = 5;
    uint8 public constant MAX_PER_ACCOUNT = 5;

    uint8 public saleStage = 0;

    uint16 public _totalSupply = 0;

    string public baseTokenURI;

    constructor(string memory baseURI) ERC721("Bulbbers Meta-Pass", "BMP") {
        setBaseURI(baseURI);
    }

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

    function totalSupply() public view returns (uint16) {
        return _totalSupply;
    }

    function _mintSingleNFT() private {
        require(_totalSupply < MAX_SUPPLY, "Reached maximum count of NFTs!");

        _safeMint(msg.sender, _totalSupply);
        _totalSupply += 1;
    }

    function mintNFTs(uint8 _count) public payable {
        require(saleStage > 0, "Sale has not been started!");
        require(saleStage < 2, "Sale has been ended!");
        require(balanceOf(msg.sender) + _count < MAX_PER_ACCOUNT + 1, "Reached maximum limit per account");
        require(_totalSupply + _count < MAX_SUPPLY + 1, "Not enough NFTs!");
        require(_count > 0 && _count < MAX_PER_MINT + 1, "Cannot mint specified number of NFTs.");
        require(msg.value >= (PRICE * _count), "Not enough ether to purchase NFTs.");

        for (uint8 i = 0; i < _count; i++) {
            _mintSingleNFT();
        }
    }

    function supportsInterface(bytes4 interfaceId) public view override(ERC721) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

    function getStage() public view returns (uint8) {
        return saleStage;
    }

    // Root Only

    function setBaseURI(string memory _baseTokenURI) public onlyOwner {
        baseTokenURI = _baseTokenURI;
    }

    function reserveNFTs(uint8 count, address receipment) public onlyOwner {
        require(_totalSupply + count < MAX_SUPPLY + 1, "Not enough NFTs");

        for (uint8 i = 0; i < count; i++) {
            _safeMint(receipment, _totalSupply);
            _totalSupply += 1;
        }
    }

    function withdraw() public payable onlyOwner {
        uint balance = address(this).balance;
        require(balance > 0, "No ether left to withdraw");

        (bool success, ) = (msg.sender).call{value: balance}("");
        require(success, "Transfer failed.");
    }

    function setStage(uint8 stage) public onlyOwner {
        saleStage = stage;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PER_ACCOUNT","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_MINT","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"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":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getStage","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"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":[{"internalType":"uint8","name":"_count","type":"uint8"}],"name":"mintNFTs","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"count","type":"uint8"},{"internalType":"address","name":"receipment","type":"address"}],"name":"reserveNFTs","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":[],"name":"saleStage","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","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":"_baseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"stage","type":"uint8"}],"name":"setStage","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":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526006805462ffffff60a01b191690553480156200002057600080fd5b506040516200249938038062002499833981016040819052620000439162000267565b604080518082018252601281527142756c6262657273204d6574612d5061737360701b6020808301918252835180850190945260038452620424d560ec1b9084015281519192916200009891600091620001ab565b508051620000ae906001906020840190620001ab565b505050620000cb620000c5620000dd60201b60201c565b620000e1565b620000d68162000133565b5062000380565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620001925760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001a7906007906020840190620001ab565b5050565b828054620001b99062000343565b90600052602060002090601f016020900481019282620001dd576000855562000228565b82601f10620001f857805160ff191683800117855562000228565b8280016001018555821562000228579182015b82811115620002285782518255916020019190600101906200020b565b50620002369291506200023a565b5090565b5b808211156200023657600081556001016200023b565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156200027b57600080fd5b82516001600160401b03808211156200029357600080fd5b818501915085601f830112620002a857600080fd5b815181811115620002bd57620002bd62000251565b604051601f8201601f19908116603f01168101908382118183101715620002e857620002e862000251565b8160405282815288868487010111156200030157600080fd5b600093505b8284101562000325578484018601518185018701529285019262000306565b82841115620003375760008684830101525b98975050505050505050565b600181811c908216806200035857607f821691505b602082108114156200037a57634e487b7160e01b600052602260045260246000fd5b50919050565b61210980620003906000396000f3fe6080604052600436106101cd5760003560e01c80636352211e116100f7578063a326134011610095578063d547cfb711610064578063d547cfb7146104fe578063e985e9c514610513578063f2fde38b1461055c578063fcaa76641461057c57600080fd5b8063a326134014610283578063b88d4fde1461049e578063c87b56dd146104be578063ce3cd997146104de57600080fd5b80638d859f3e116100d15780638d859f3e146104305780638da5cb5b1461044b57806395d89b4114610469578063a22cb4651461047e57600080fd5b80636352211e146103cd57806370a08231146103ed578063715018a61461041b57600080fd5b806325bd42c11161016f5780633eaaf86b1161013e5780633eaaf86b1461034a57806342842e0e1461036c5780634aaca86d1461038c57806355f804b3146103ad57600080fd5b806325bd42c1146102f957806331dc665a1461030c57806332cb6b0c1461032c5780633ccfd60b1461034257600080fd5b8063095ea7b3116101ab578063095ea7b31461026157806309d42b301461028357806318160ddd146102aa57806323b872dd146102d957600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611abc565b61059b565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105ac565b6040516101fe9190611b31565b34801561023557600080fd5b50610249610244366004611b44565b61063e565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004611b79565b6106d8565b005b34801561028f57600080fd5b50610298600581565b60405160ff90911681526020016101fe565b3480156102b657600080fd5b50600654600160a81b900461ffff165b60405161ffff90911681526020016101fe565b3480156102e557600080fd5b506102816102f4366004611ba3565b6107ee565b610281610307366004611bf0565b61081f565b34801561031857600080fd5b50610281610327366004611c0b565b610ad5565b34801561033857600080fd5b506102c66102bc81565b610281610be7565b34801561035657600080fd5b506006546102c690600160a81b900461ffff1681565b34801561037857600080fd5b50610281610387366004611ba3565b610cea565b34801561039857600080fd5b5060065461029890600160a01b900460ff1681565b3480156103b957600080fd5b506102816103c8366004611cca565b610d05565b3480156103d957600080fd5b506102496103e8366004611b44565b610d42565b3480156103f957600080fd5b5061040d610408366004611d13565b610db9565b6040519081526020016101fe565b34801561042757600080fd5b50610281610e40565b34801561043c57600080fd5b5061040d66d529ae9e86000081565b34801561045757600080fd5b506006546001600160a01b0316610249565b34801561047557600080fd5b5061021c610e76565b34801561048a57600080fd5b50610281610499366004611d2e565b610e85565b3480156104aa57600080fd5b506102816104b9366004611d6a565b610e90565b3480156104ca57600080fd5b5061021c6104d9366004611b44565b610ec8565b3480156104ea57600080fd5b506102816104f9366004611bf0565b610fa3565b34801561050a57600080fd5b5061021c610fed565b34801561051f57600080fd5b506101f261052e366004611de6565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561056857600080fd5b50610281610577366004611d13565b61107b565b34801561058857600080fd5b50600654600160a01b900460ff16610298565b60006105a682611116565b92915050565b6060600080546105bb90611e02565b80601f01602080910402602001604051908101604052809291908181526020018280546105e790611e02565b80156106345780601f1061060957610100808354040283529160200191610634565b820191906000526020600020905b81548152906001019060200180831161061757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106bc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106e382610d42565b9050806001600160a01b0316836001600160a01b031614156107515760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106b3565b336001600160a01b038216148061076d575061076d813361052e565b6107df5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106b3565b6107e98383611166565b505050565b6107f833826111d4565b6108145760405162461bcd60e51b81526004016106b390611e3d565b6107e98383836112cb565b600654600160a01b900460ff166108785760405162461bcd60e51b815260206004820152601a60248201527f53616c6520686173206e6f74206265656e20737461727465642100000000000060448201526064016106b3565b6006546002600160a01b90910460ff16106108cc5760405162461bcd60e51b815260206004820152601460248201527353616c6520686173206265656e20656e6465642160601b60448201526064016106b3565b6108d860056001611ea4565b60ff168160ff166108e833610db9565b6108f29190611ec9565b106109495760405162461bcd60e51b815260206004820152602160248201527f52656163686564206d6178696d756d206c696d697420706572206163636f756e6044820152601d60fa1b60648201526084016106b3565b6109566102bc6001611ee1565b60065461ffff918216916109779160ff851691600160a81b90910416611ee1565b61ffff16106109bb5760405162461bcd60e51b815260206004820152601060248201526f4e6f7420656e6f756768204e4654732160801b60448201526064016106b3565b60008160ff161180156109de57506109d560056001611ea4565b60ff168160ff16105b610a385760405162461bcd60e51b815260206004820152602560248201527f43616e6e6f74206d696e7420737065636966696564206e756d626572206f662060448201526427232a399760d91b60648201526084016106b3565b610a4c60ff821666d529ae9e860000611f07565b341015610aa65760405162461bcd60e51b815260206004820152602260248201527f4e6f7420656e6f75676820657468657220746f207075726368617365204e4654604482015261399760f11b60648201526084016106b3565b60005b8160ff168160ff161015610ad157610abf61146b565b80610ac981611f26565b915050610aa9565b5050565b6006546001600160a01b03163314610aff5760405162461bcd60e51b81526004016106b390611f46565b610b0c6102bc6001611ee1565b60065461ffff91821691610b2d9160ff861691600160a81b90910416611ee1565b61ffff1610610b705760405162461bcd60e51b815260206004820152600f60248201526e4e6f7420656e6f756768204e46547360881b60448201526064016106b3565b60005b8260ff168160ff1610156107e957600654610b9a908390600160a81b900461ffff1661151f565b6001600660158282829054906101000a900461ffff16610bba9190611ee1565b92506101000a81548161ffff021916908361ffff1602179055508080610bdf90611f26565b915050610b73565b6006546001600160a01b03163314610c115760405162461bcd60e51b81526004016106b390611f46565b4780610c5f5760405162461bcd60e51b815260206004820152601960248201527f4e6f206574686572206c65667420746f2077697468647261770000000000000060448201526064016106b3565b604051600090339083908381818185875af1925050503d8060008114610ca1576040519150601f19603f3d011682016040523d82523d6000602084013e610ca6565b606091505b5050905080610ad15760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016106b3565b6107e983838360405180602001604052806000815250610e90565b6006546001600160a01b03163314610d2f5760405162461bcd60e51b81526004016106b390611f46565b8051610ad1906007906020840190611a0d565b6000818152600260205260408120546001600160a01b0316806105a65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106b3565b60006001600160a01b038216610e245760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106b3565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610e6a5760405162461bcd60e51b81526004016106b390611f46565b610e746000611539565b565b6060600180546105bb90611e02565b610ad133838361158b565b610e9a33836111d4565b610eb65760405162461bcd60e51b81526004016106b390611e3d565b610ec28484848461165a565b50505050565b6000818152600260205260409020546060906001600160a01b0316610f475760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106b3565b6000610f5161168d565b90506000815111610f715760405180602001604052806000815250610f9c565b80610f7b8461169c565b604051602001610f8c929190611f7b565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314610fcd5760405162461bcd60e51b81526004016106b390611f46565b6006805460ff909216600160a01b0260ff60a01b19909216919091179055565b60078054610ffa90611e02565b80601f016020809104026020016040519081016040528092919081815260200182805461102690611e02565b80156110735780601f1061104857610100808354040283529160200191611073565b820191906000526020600020905b81548152906001019060200180831161105657829003601f168201915b505050505081565b6006546001600160a01b031633146110a55760405162461bcd60e51b81526004016106b390611f46565b6001600160a01b03811661110a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106b3565b61111381611539565b50565b60006001600160e01b031982166380ac58cd60e01b148061114757506001600160e01b03198216635b5e139f60e01b145b806105a657506301ffc9a760e01b6001600160e01b03198316146105a6565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061119b82610d42565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661124d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106b3565b600061125883610d42565b9050806001600160a01b0316846001600160a01b031614806112935750836001600160a01b03166112888461063e565b6001600160a01b0316145b806112c357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166112de82610d42565b6001600160a01b0316146113465760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106b3565b6001600160a01b0382166113a85760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106b3565b6113b3600082611166565b6001600160a01b03831660009081526003602052604081208054600192906113dc908490611fa1565b90915550506001600160a01b038216600090815260036020526040812080546001929061140a908490611ec9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6006546102bc600160a81b90910461ffff16106114ca5760405162461bcd60e51b815260206004820152601e60248201527f52656163686564206d6178696d756d20636f756e74206f66204e46547321000060448201526064016106b3565b6006546114e3903390600160a81b900461ffff1661151f565b6001600660158282829054906101000a900461ffff166115039190611ee1565b92506101000a81548161ffff021916908361ffff160217905550565b610ad182826040518060200160405280600081525061179a565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156115ed5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106b3565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6116658484846112cb565b611671848484846117cd565b610ec25760405162461bcd60e51b81526004016106b390611fb8565b6060600780546105bb90611e02565b6060816116c05750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116ea57806116d48161200a565b91506116e39050600a8361203b565b91506116c4565b60008167ffffffffffffffff81111561170557611705611c3e565b6040519080825280601f01601f19166020018201604052801561172f576020820181803683370190505b5090505b84156112c357611744600183611fa1565b9150611751600a8661204f565b61175c906030611ec9565b60f81b81838151811061177157611771612063565b60200101906001600160f81b031916908160001a905350611793600a8661203b565b9450611733565b6117a483836118cb565b6117b160008484846117cd565b6107e95760405162461bcd60e51b81526004016106b390611fb8565b60006001600160a01b0384163b156118c057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611811903390899088908890600401612079565b6020604051808303816000875af192505050801561184c575060408051601f3d908101601f19168201909252611849918101906120b6565b60015b6118a6573d80801561187a576040519150601f19603f3d011682016040523d82523d6000602084013e61187f565b606091505b50805161189e5760405162461bcd60e51b81526004016106b390611fb8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112c3565b506001949350505050565b6001600160a01b0382166119215760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106b3565b6000818152600260205260409020546001600160a01b0316156119865760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106b3565b6001600160a01b03821660009081526003602052604081208054600192906119af908490611ec9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611a1990611e02565b90600052602060002090601f016020900481019282611a3b5760008555611a81565b82601f10611a5457805160ff1916838001178555611a81565b82800160010185558215611a81579182015b82811115611a81578251825591602001919060010190611a66565b50611a8d929150611a91565b5090565b5b80821115611a8d5760008155600101611a92565b6001600160e01b03198116811461111357600080fd5b600060208284031215611ace57600080fd5b8135610f9c81611aa6565b60005b83811015611af4578181015183820152602001611adc565b83811115610ec25750506000910152565b60008151808452611b1d816020860160208601611ad9565b601f01601f19169290920160200192915050565b602081526000610f9c6020830184611b05565b600060208284031215611b5657600080fd5b5035919050565b80356001600160a01b0381168114611b7457600080fd5b919050565b60008060408385031215611b8c57600080fd5b611b9583611b5d565b946020939093013593505050565b600080600060608486031215611bb857600080fd5b611bc184611b5d565b9250611bcf60208501611b5d565b9150604084013590509250925092565b803560ff81168114611b7457600080fd5b600060208284031215611c0257600080fd5b610f9c82611bdf565b60008060408385031215611c1e57600080fd5b611c2783611bdf565b9150611c3560208401611b5d565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611c6f57611c6f611c3e565b604051601f8501601f19908116603f01168101908282118183101715611c9757611c97611c3e565b81604052809350858152868686011115611cb057600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611cdc57600080fd5b813567ffffffffffffffff811115611cf357600080fd5b8201601f81018413611d0457600080fd5b6112c384823560208401611c54565b600060208284031215611d2557600080fd5b610f9c82611b5d565b60008060408385031215611d4157600080fd5b611d4a83611b5d565b915060208301358015158114611d5f57600080fd5b809150509250929050565b60008060008060808587031215611d8057600080fd5b611d8985611b5d565b9350611d9760208601611b5d565b925060408501359150606085013567ffffffffffffffff811115611dba57600080fd5b8501601f81018713611dcb57600080fd5b611dda87823560208401611c54565b91505092959194509250565b60008060408385031215611df957600080fd5b611c2783611b5d565b600181811c90821680611e1657607f821691505b60208210811415611e3757634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600060ff821660ff84168060ff03821115611ec157611ec1611e8e565b019392505050565b60008219821115611edc57611edc611e8e565b500190565b600061ffff808316818516808303821115611efe57611efe611e8e565b01949350505050565b6000816000190483118215151615611f2157611f21611e8e565b500290565b600060ff821660ff811415611f3d57611f3d611e8e565b60010192915050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008351611f8d818460208801611ad9565b835190830190611efe818360208801611ad9565b600082821015611fb357611fb3611e8e565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600060001982141561201e5761201e611e8e565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261204a5761204a612025565b500490565b60008261205e5761205e612025565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120ac90830184611b05565b9695505050505050565b6000602082840312156120c857600080fd5b8151610f9c81611aa656fea2646970667358221220514af43480ae2766572eba915676757bb1c30adfd4d153ac3aca8195852b32df64736f6c634300080b00330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002468747470733a2f2f6d696e742e62756c62626572732e636f6d2f6d6574612d646174612f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c80636352211e116100f7578063a326134011610095578063d547cfb711610064578063d547cfb7146104fe578063e985e9c514610513578063f2fde38b1461055c578063fcaa76641461057c57600080fd5b8063a326134014610283578063b88d4fde1461049e578063c87b56dd146104be578063ce3cd997146104de57600080fd5b80638d859f3e116100d15780638d859f3e146104305780638da5cb5b1461044b57806395d89b4114610469578063a22cb4651461047e57600080fd5b80636352211e146103cd57806370a08231146103ed578063715018a61461041b57600080fd5b806325bd42c11161016f5780633eaaf86b1161013e5780633eaaf86b1461034a57806342842e0e1461036c5780634aaca86d1461038c57806355f804b3146103ad57600080fd5b806325bd42c1146102f957806331dc665a1461030c57806332cb6b0c1461032c5780633ccfd60b1461034257600080fd5b8063095ea7b3116101ab578063095ea7b31461026157806309d42b301461028357806318160ddd146102aa57806323b872dd146102d957600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611abc565b61059b565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105ac565b6040516101fe9190611b31565b34801561023557600080fd5b50610249610244366004611b44565b61063e565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004611b79565b6106d8565b005b34801561028f57600080fd5b50610298600581565b60405160ff90911681526020016101fe565b3480156102b657600080fd5b50600654600160a81b900461ffff165b60405161ffff90911681526020016101fe565b3480156102e557600080fd5b506102816102f4366004611ba3565b6107ee565b610281610307366004611bf0565b61081f565b34801561031857600080fd5b50610281610327366004611c0b565b610ad5565b34801561033857600080fd5b506102c66102bc81565b610281610be7565b34801561035657600080fd5b506006546102c690600160a81b900461ffff1681565b34801561037857600080fd5b50610281610387366004611ba3565b610cea565b34801561039857600080fd5b5060065461029890600160a01b900460ff1681565b3480156103b957600080fd5b506102816103c8366004611cca565b610d05565b3480156103d957600080fd5b506102496103e8366004611b44565b610d42565b3480156103f957600080fd5b5061040d610408366004611d13565b610db9565b6040519081526020016101fe565b34801561042757600080fd5b50610281610e40565b34801561043c57600080fd5b5061040d66d529ae9e86000081565b34801561045757600080fd5b506006546001600160a01b0316610249565b34801561047557600080fd5b5061021c610e76565b34801561048a57600080fd5b50610281610499366004611d2e565b610e85565b3480156104aa57600080fd5b506102816104b9366004611d6a565b610e90565b3480156104ca57600080fd5b5061021c6104d9366004611b44565b610ec8565b3480156104ea57600080fd5b506102816104f9366004611bf0565b610fa3565b34801561050a57600080fd5b5061021c610fed565b34801561051f57600080fd5b506101f261052e366004611de6565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561056857600080fd5b50610281610577366004611d13565b61107b565b34801561058857600080fd5b50600654600160a01b900460ff16610298565b60006105a682611116565b92915050565b6060600080546105bb90611e02565b80601f01602080910402602001604051908101604052809291908181526020018280546105e790611e02565b80156106345780601f1061060957610100808354040283529160200191610634565b820191906000526020600020905b81548152906001019060200180831161061757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106bc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106e382610d42565b9050806001600160a01b0316836001600160a01b031614156107515760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106b3565b336001600160a01b038216148061076d575061076d813361052e565b6107df5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106b3565b6107e98383611166565b505050565b6107f833826111d4565b6108145760405162461bcd60e51b81526004016106b390611e3d565b6107e98383836112cb565b600654600160a01b900460ff166108785760405162461bcd60e51b815260206004820152601a60248201527f53616c6520686173206e6f74206265656e20737461727465642100000000000060448201526064016106b3565b6006546002600160a01b90910460ff16106108cc5760405162461bcd60e51b815260206004820152601460248201527353616c6520686173206265656e20656e6465642160601b60448201526064016106b3565b6108d860056001611ea4565b60ff168160ff166108e833610db9565b6108f29190611ec9565b106109495760405162461bcd60e51b815260206004820152602160248201527f52656163686564206d6178696d756d206c696d697420706572206163636f756e6044820152601d60fa1b60648201526084016106b3565b6109566102bc6001611ee1565b60065461ffff918216916109779160ff851691600160a81b90910416611ee1565b61ffff16106109bb5760405162461bcd60e51b815260206004820152601060248201526f4e6f7420656e6f756768204e4654732160801b60448201526064016106b3565b60008160ff161180156109de57506109d560056001611ea4565b60ff168160ff16105b610a385760405162461bcd60e51b815260206004820152602560248201527f43616e6e6f74206d696e7420737065636966696564206e756d626572206f662060448201526427232a399760d91b60648201526084016106b3565b610a4c60ff821666d529ae9e860000611f07565b341015610aa65760405162461bcd60e51b815260206004820152602260248201527f4e6f7420656e6f75676820657468657220746f207075726368617365204e4654604482015261399760f11b60648201526084016106b3565b60005b8160ff168160ff161015610ad157610abf61146b565b80610ac981611f26565b915050610aa9565b5050565b6006546001600160a01b03163314610aff5760405162461bcd60e51b81526004016106b390611f46565b610b0c6102bc6001611ee1565b60065461ffff91821691610b2d9160ff861691600160a81b90910416611ee1565b61ffff1610610b705760405162461bcd60e51b815260206004820152600f60248201526e4e6f7420656e6f756768204e46547360881b60448201526064016106b3565b60005b8260ff168160ff1610156107e957600654610b9a908390600160a81b900461ffff1661151f565b6001600660158282829054906101000a900461ffff16610bba9190611ee1565b92506101000a81548161ffff021916908361ffff1602179055508080610bdf90611f26565b915050610b73565b6006546001600160a01b03163314610c115760405162461bcd60e51b81526004016106b390611f46565b4780610c5f5760405162461bcd60e51b815260206004820152601960248201527f4e6f206574686572206c65667420746f2077697468647261770000000000000060448201526064016106b3565b604051600090339083908381818185875af1925050503d8060008114610ca1576040519150601f19603f3d011682016040523d82523d6000602084013e610ca6565b606091505b5050905080610ad15760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016106b3565b6107e983838360405180602001604052806000815250610e90565b6006546001600160a01b03163314610d2f5760405162461bcd60e51b81526004016106b390611f46565b8051610ad1906007906020840190611a0d565b6000818152600260205260408120546001600160a01b0316806105a65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106b3565b60006001600160a01b038216610e245760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106b3565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610e6a5760405162461bcd60e51b81526004016106b390611f46565b610e746000611539565b565b6060600180546105bb90611e02565b610ad133838361158b565b610e9a33836111d4565b610eb65760405162461bcd60e51b81526004016106b390611e3d565b610ec28484848461165a565b50505050565b6000818152600260205260409020546060906001600160a01b0316610f475760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106b3565b6000610f5161168d565b90506000815111610f715760405180602001604052806000815250610f9c565b80610f7b8461169c565b604051602001610f8c929190611f7b565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314610fcd5760405162461bcd60e51b81526004016106b390611f46565b6006805460ff909216600160a01b0260ff60a01b19909216919091179055565b60078054610ffa90611e02565b80601f016020809104026020016040519081016040528092919081815260200182805461102690611e02565b80156110735780601f1061104857610100808354040283529160200191611073565b820191906000526020600020905b81548152906001019060200180831161105657829003601f168201915b505050505081565b6006546001600160a01b031633146110a55760405162461bcd60e51b81526004016106b390611f46565b6001600160a01b03811661110a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106b3565b61111381611539565b50565b60006001600160e01b031982166380ac58cd60e01b148061114757506001600160e01b03198216635b5e139f60e01b145b806105a657506301ffc9a760e01b6001600160e01b03198316146105a6565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061119b82610d42565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661124d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106b3565b600061125883610d42565b9050806001600160a01b0316846001600160a01b031614806112935750836001600160a01b03166112888461063e565b6001600160a01b0316145b806112c357506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166112de82610d42565b6001600160a01b0316146113465760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106b3565b6001600160a01b0382166113a85760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106b3565b6113b3600082611166565b6001600160a01b03831660009081526003602052604081208054600192906113dc908490611fa1565b90915550506001600160a01b038216600090815260036020526040812080546001929061140a908490611ec9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6006546102bc600160a81b90910461ffff16106114ca5760405162461bcd60e51b815260206004820152601e60248201527f52656163686564206d6178696d756d20636f756e74206f66204e46547321000060448201526064016106b3565b6006546114e3903390600160a81b900461ffff1661151f565b6001600660158282829054906101000a900461ffff166115039190611ee1565b92506101000a81548161ffff021916908361ffff160217905550565b610ad182826040518060200160405280600081525061179a565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156115ed5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106b3565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6116658484846112cb565b611671848484846117cd565b610ec25760405162461bcd60e51b81526004016106b390611fb8565b6060600780546105bb90611e02565b6060816116c05750506040805180820190915260018152600360fc1b602082015290565b8160005b81156116ea57806116d48161200a565b91506116e39050600a8361203b565b91506116c4565b60008167ffffffffffffffff81111561170557611705611c3e565b6040519080825280601f01601f19166020018201604052801561172f576020820181803683370190505b5090505b84156112c357611744600183611fa1565b9150611751600a8661204f565b61175c906030611ec9565b60f81b81838151811061177157611771612063565b60200101906001600160f81b031916908160001a905350611793600a8661203b565b9450611733565b6117a483836118cb565b6117b160008484846117cd565b6107e95760405162461bcd60e51b81526004016106b390611fb8565b60006001600160a01b0384163b156118c057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611811903390899088908890600401612079565b6020604051808303816000875af192505050801561184c575060408051601f3d908101601f19168201909252611849918101906120b6565b60015b6118a6573d80801561187a576040519150601f19603f3d011682016040523d82523d6000602084013e61187f565b606091505b50805161189e5760405162461bcd60e51b81526004016106b390611fb8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112c3565b506001949350505050565b6001600160a01b0382166119215760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106b3565b6000818152600260205260409020546001600160a01b0316156119865760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106b3565b6001600160a01b03821660009081526003602052604081208054600192906119af908490611ec9565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611a1990611e02565b90600052602060002090601f016020900481019282611a3b5760008555611a81565b82601f10611a5457805160ff1916838001178555611a81565b82800160010185558215611a81579182015b82811115611a81578251825591602001919060010190611a66565b50611a8d929150611a91565b5090565b5b80821115611a8d5760008155600101611a92565b6001600160e01b03198116811461111357600080fd5b600060208284031215611ace57600080fd5b8135610f9c81611aa6565b60005b83811015611af4578181015183820152602001611adc565b83811115610ec25750506000910152565b60008151808452611b1d816020860160208601611ad9565b601f01601f19169290920160200192915050565b602081526000610f9c6020830184611b05565b600060208284031215611b5657600080fd5b5035919050565b80356001600160a01b0381168114611b7457600080fd5b919050565b60008060408385031215611b8c57600080fd5b611b9583611b5d565b946020939093013593505050565b600080600060608486031215611bb857600080fd5b611bc184611b5d565b9250611bcf60208501611b5d565b9150604084013590509250925092565b803560ff81168114611b7457600080fd5b600060208284031215611c0257600080fd5b610f9c82611bdf565b60008060408385031215611c1e57600080fd5b611c2783611bdf565b9150611c3560208401611b5d565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611c6f57611c6f611c3e565b604051601f8501601f19908116603f01168101908282118183101715611c9757611c97611c3e565b81604052809350858152868686011115611cb057600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611cdc57600080fd5b813567ffffffffffffffff811115611cf357600080fd5b8201601f81018413611d0457600080fd5b6112c384823560208401611c54565b600060208284031215611d2557600080fd5b610f9c82611b5d565b60008060408385031215611d4157600080fd5b611d4a83611b5d565b915060208301358015158114611d5f57600080fd5b809150509250929050565b60008060008060808587031215611d8057600080fd5b611d8985611b5d565b9350611d9760208601611b5d565b925060408501359150606085013567ffffffffffffffff811115611dba57600080fd5b8501601f81018713611dcb57600080fd5b611dda87823560208401611c54565b91505092959194509250565b60008060408385031215611df957600080fd5b611c2783611b5d565b600181811c90821680611e1657607f821691505b60208210811415611e3757634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600060ff821660ff84168060ff03821115611ec157611ec1611e8e565b019392505050565b60008219821115611edc57611edc611e8e565b500190565b600061ffff808316818516808303821115611efe57611efe611e8e565b01949350505050565b6000816000190483118215151615611f2157611f21611e8e565b500290565b600060ff821660ff811415611f3d57611f3d611e8e565b60010192915050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008351611f8d818460208801611ad9565b835190830190611efe818360208801611ad9565b600082821015611fb357611fb3611e8e565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600060001982141561201e5761201e611e8e565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261204a5761204a612025565b500490565b60008261205e5761205e612025565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120ac90830184611b05565b9695505050505050565b6000602082840312156120c857600080fd5b8151610f9c81611aa656fea2646970667358221220514af43480ae2766572eba915676757bb1c30adfd4d153ac3aca8195852b32df64736f6c634300080b0033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002468747470733a2f2f6d696e742e62756c62626572732e636f6d2f6d6574612d646174612f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://mint.bulbbers.com/meta-data/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000024
Arg [2] : 68747470733a2f2f6d696e742e62756c62626572732e636f6d2f6d6574612d64
Arg [3] : 6174612f00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

36186:2707:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37826:153;;;;;;;;;;-1:-1:-1;37826:153:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;37826:153:0;;;;;;;;22095:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23654:221::-;;;;;;;;;;-1:-1:-1;23654:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;23654:221:0;1528:203:1;23177:411:0;;;;;;;;;;-1:-1:-1;23177:411:0;;;;;:::i;:::-;;:::i;:::-;;36334:38;;;;;;;;;;;;36371:1;36334:38;;;;;2345:4:1;2333:17;;;2315:36;;2303:2;2288:18;36334:38:0;2173:184:1;36876:90:0;;;;;;;;;;-1:-1:-1;36946:12:0;;-1:-1:-1;;;36946:12:0;;;;36876:90;;;2536:6:1;2524:19;;;2506:38;;2494:2;2479:18;36876:90:0;2362:188:1;24404:339:0;;;;;;;;;;-1:-1:-1;24404:339:0;;;;;:::i;:::-;;:::i;37179:639::-;;;;;;:::i;:::-;;:::i;38219:295::-;;;;;;;;;;-1:-1:-1;38219:295:0;;;;;:::i;:::-;;:::i;36239:39::-;;;;;;;;;;;;36275:3;36239:39;;38522:276;;;:::i;36464:30::-;;;;;;;;;;-1:-1:-1;36464:30:0;;;;-1:-1:-1;;;36464:30:0;;;;;;24814:185;;;;;;;;;;-1:-1:-1;24814:185:0;;;;;:::i;:::-;;:::i;36429:26::-;;;;;;;;;;-1:-1:-1;36429:26:0;;;;-1:-1:-1;;;36429:26:0;;;;;;38098:113;;;;;;;;;;-1:-1:-1;38098:113:0;;;;;:::i;:::-;;:::i;21789:239::-;;;;;;;;;;-1:-1:-1;21789:239:0;;;;;:::i;:::-;;:::i;21519:208::-;;;;;;;;;;-1:-1:-1;21519:208:0;;;;;:::i;:::-;;:::i;:::-;;;5059:25:1;;;5047:2;5032:18;21519:208:0;4913:177:1;35307:103:0;;;;;;;;;;;;;:::i;36285:42::-;;;;;;;;;;;;36317:10;36285:42;;34656:87;;;;;;;;;;-1:-1:-1;34729:6:0;;-1:-1:-1;;;;;34729:6:0;34656:87;;22264:104;;;;;;;;;;;;;:::i;23947:155::-;;;;;;;;;;-1:-1:-1;23947:155:0;;;;;:::i;:::-;;:::i;25070:328::-;;;;;;;;;;-1:-1:-1;25070:328:0;;;;;:::i;:::-;;:::i;22439:334::-;;;;;;;;;;-1:-1:-1;22439:334:0;;;;;:::i;:::-;;:::i;38806:84::-;;;;;;;;;;-1:-1:-1;38806:84:0;;;;;:::i;:::-;;:::i;36503:26::-;;;;;;;;;;;;;:::i;24173:164::-;;;;;;;;;;-1:-1:-1;24173:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24294:25:0;;;24270:4;24294:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24173:164;35565:201;;;;;;;;;;-1:-1:-1;35565:201:0;;;;;:::i;:::-;;:::i;37987:83::-;;;;;;;;;;-1:-1:-1;38053:9:0;;-1:-1:-1;;;38053:9:0;;;;37987:83;;37826:153;37911:4;37935:36;37959:11;37935:23;:36::i;:::-;37928:43;37826:153;-1:-1:-1;;37826:153:0:o;22095:100::-;22149:13;22182:5;22175:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22095:100;:::o;23654:221::-;23730:7;26997:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26997:16:0;23750:73;;;;-1:-1:-1;;;23750:73:0;;6971:2:1;23750:73:0;;;6953:21:1;7010:2;6990:18;;;6983:30;7049:34;7029:18;;;7022:62;-1:-1:-1;;;7100:18:1;;;7093:42;7152:19;;23750:73:0;;;;;;;;;-1:-1:-1;23843:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23843:24:0;;23654:221::o;23177:411::-;23258:13;23274:23;23289:7;23274:14;:23::i;:::-;23258:39;;23322:5;-1:-1:-1;;;;;23316:11:0;:2;-1:-1:-1;;;;;23316:11:0;;;23308:57;;;;-1:-1:-1;;;23308:57:0;;7384:2:1;23308:57:0;;;7366:21:1;7423:2;7403:18;;;7396:30;7462:34;7442:18;;;7435:62;-1:-1:-1;;;7513:18:1;;;7506:31;7554:19;;23308:57:0;7182:397:1;23308:57:0;16522:10;-1:-1:-1;;;;;23400:21:0;;;;:62;;-1:-1:-1;23425:37:0;23442:5;16522:10;24173:164;:::i;23425:37::-;23378:168;;;;-1:-1:-1;;;23378:168:0;;7786:2:1;23378:168:0;;;7768:21:1;7825:2;7805:18;;;7798:30;7864:34;7844:18;;;7837:62;7935:26;7915:18;;;7908:54;7979:19;;23378:168:0;7584:420:1;23378:168:0;23559:21;23568:2;23572:7;23559:8;:21::i;:::-;23247:341;23177:411;;:::o;24404:339::-;24599:41;16522:10;24632:7;24599:18;:41::i;:::-;24591:103;;;;-1:-1:-1;;;24591:103:0;;;;;;;:::i;:::-;24707:28;24717:4;24723:2;24727:7;24707:9;:28::i;37179:639::-;37245:9;;-1:-1:-1;;;37245:9:0;;;;37237:52;;;;-1:-1:-1;;;37237:52:0;;8629:2:1;37237:52:0;;;8611:21:1;8668:2;8648:18;;;8641:30;8707:28;8687:18;;;8680:56;8753:18;;37237:52:0;8427:350:1;37237:52:0;37308:9;;37320:1;-1:-1:-1;;;37308:9:0;;;;;:13;37300:46;;;;-1:-1:-1;;;37300:46:0;;8984:2:1;37300:46:0;;;8966:21:1;9023:2;9003:18;;;8996:30;-1:-1:-1;;;9042:18:1;;;9035:50;9102:18;;37300:46:0;8782:344:1;37300:46:0;37398:19;36419:1;37416;37398:19;:::i;:::-;37365:52;;37389:6;37365:30;;:21;37375:10;37365:9;:21::i;:::-;:30;;;;:::i;:::-;:52;37357:98;;;;-1:-1:-1;;;37357:98:0;;9807:2:1;37357:98:0;;;9789:21:1;9846:2;9826:18;;;9819:30;9885:34;9865:18;;;9858:62;-1:-1:-1;;;9936:18:1;;;9929:31;9977:19;;37357:98:0;9605:397:1;37357:98:0;37498:14;36275:3;37511:1;37498:14;:::i;:::-;37474:12;;:38;;;;;:21;;;;;;-1:-1:-1;;;37474:12:0;;;;:21;:::i;:::-;:38;;;37466:67;;;;-1:-1:-1;;;37466:67:0;;10438:2:1;37466:67:0;;;10420:21:1;10477:2;10457:18;;;10450:30;-1:-1:-1;;;10496:18:1;;;10489:46;10552:18;;37466:67:0;10236:340:1;37466:67:0;37561:1;37552:6;:10;;;:39;;;;-1:-1:-1;37575:16:0;36371:1;37590;37575:16;:::i;:::-;37566:25;;:6;:25;;;37552:39;37544:89;;;;-1:-1:-1;;;37544:89:0;;10783:2:1;37544:89:0;;;10765:21:1;10822:2;10802:18;;;10795:30;10861:34;10841:18;;;10834:62;-1:-1:-1;;;10912:18:1;;;10905:35;10957:19;;37544:89:0;10581:401:1;37544:89:0;37666:14;;;;36317:10;37666:14;:::i;:::-;37652:9;:29;;37644:76;;;;-1:-1:-1;;;37644:76:0;;11362:2:1;37644:76:0;;;11344:21:1;11401:2;11381:18;;;11374:30;11440:34;11420:18;;;11413:62;-1:-1:-1;;;11491:18:1;;;11484:32;11533:19;;37644:76:0;11160:398:1;37644:76:0;37738:7;37733:78;37755:6;37751:10;;:1;:10;;;37733:78;;;37783:16;:14;:16::i;:::-;37763:3;;;;:::i;:::-;;;;37733:78;;;;37179:639;:::o;38219:295::-;34729:6;;-1:-1:-1;;;;;34729:6:0;16522:10;34876:23;34868:68;;;;-1:-1:-1;;;34868:68:0;;;;;;;:::i;:::-;38332:14:::1;36275:3;38345:1;38332:14;:::i;:::-;38309:12;::::0;:37:::1;::::0;;::::1;::::0;:20:::1;::::0;::::1;::::0;::::1;::::0;-1:-1:-1;;;38309:12:0;;::::1;;:20;:::i;:::-;:37;;;38301:65;;;::::0;-1:-1:-1;;;38301:65:0;;12306:2:1;38301:65:0::1;::::0;::::1;12288:21:1::0;12345:2;12325:18;;;12318:30;-1:-1:-1;;;12364:18:1;;;12357:45;12419:18;;38301:65:0::1;12104:339:1::0;38301:65:0::1;38384:7;38379:128;38401:5;38397:9;;:1;:9;;;38379:128;;;38450:12;::::0;38428:35:::1;::::0;38438:10;;-1:-1:-1;;;38450:12:0;::::1;;;38428:9;:35::i;:::-;38494:1;38478:12;;:17;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;38408:3;;;;;:::i;:::-;;;;38379:128;;38522:276:::0;34729:6;;-1:-1:-1;;;;;34729:6:0;16522:10;34876:23;34868:68;;;;-1:-1:-1;;;34868:68:0;;;;;;;:::i;:::-;38593:21:::1;38633:11:::0;38625:49:::1;;;::::0;-1:-1:-1;;;38625:49:0;;12650:2:1;38625:49:0::1;::::0;::::1;12632:21:1::0;12689:2;12669:18;;;12662:30;12728:27;12708:18;;;12701:55;12773:18;;38625:49:0::1;12448:349:1::0;38625:49:0::1;38706:37;::::0;38688:12:::1;::::0;38707:10:::1;::::0;38731:7;;38688:12;38706:37;38688:12;38706:37;38731:7;38707:10;38706:37:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38687:56;;;38762:7;38754:36;;;::::0;-1:-1:-1;;;38754:36:0;;13214:2:1;38754:36:0::1;::::0;::::1;13196:21:1::0;13253:2;13233:18;;;13226:30;-1:-1:-1;;;13272:18:1;;;13265:46;13328:18;;38754:36:0::1;13012:340:1::0;24814:185:0;24952:39;24969:4;24975:2;24979:7;24952:39;;;;;;;;;;;;:16;:39::i;38098:113::-;34729:6;;-1:-1:-1;;;;;34729:6:0;16522:10;34876:23;34868:68;;;;-1:-1:-1;;;34868:68:0;;;;;;;:::i;:::-;38175:28;;::::1;::::0;:12:::1;::::0;:28:::1;::::0;::::1;::::0;::::1;:::i;21789:239::-:0;21861:7;21897:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21897:16:0;21932:19;21924:73;;;;-1:-1:-1;;;21924:73:0;;13559:2:1;21924:73:0;;;13541:21:1;13598:2;13578:18;;;13571:30;13637:34;13617:18;;;13610:62;-1:-1:-1;;;13688:18:1;;;13681:39;13737:19;;21924:73:0;13357:405:1;21519:208:0;21591:7;-1:-1:-1;;;;;21619:19:0;;21611:74;;;;-1:-1:-1;;;21611:74:0;;13969:2:1;21611:74:0;;;13951:21:1;14008:2;13988:18;;;13981:30;14047:34;14027:18;;;14020:62;-1:-1:-1;;;14098:18:1;;;14091:40;14148:19;;21611:74:0;13767:406:1;21611:74:0;-1:-1:-1;;;;;;21703:16:0;;;;;:9;:16;;;;;;;21519:208::o;35307:103::-;34729:6;;-1:-1:-1;;;;;34729:6:0;16522:10;34876:23;34868:68;;;;-1:-1:-1;;;34868:68:0;;;;;;;:::i;:::-;35372:30:::1;35399:1;35372:18;:30::i;:::-;35307:103::o:0;22264:104::-;22320:13;22353:7;22346:14;;;;;:::i;23947:155::-;24042:52;16522:10;24075:8;24085;24042:18;:52::i;25070:328::-;25245:41;16522:10;25278:7;25245:18;:41::i;:::-;25237:103;;;;-1:-1:-1;;;25237:103:0;;;;;;;:::i;:::-;25351:39;25365:4;25371:2;25375:7;25384:5;25351:13;:39::i;:::-;25070:328;;;;:::o;22439:334::-;26973:4;26997:16;;;:7;:16;;;;;;22512:13;;-1:-1:-1;;;;;26997:16:0;22538:76;;;;-1:-1:-1;;;22538:76:0;;14380:2:1;22538:76:0;;;14362:21:1;14419:2;14399:18;;;14392:30;14458:34;14438:18;;;14431:62;-1:-1:-1;;;14509:18:1;;;14502:45;14564:19;;22538:76:0;14178:411:1;22538:76:0;22627:21;22651:10;:8;:10::i;:::-;22627:34;;22703:1;22685:7;22679:21;:25;:86;;;;;;;;;;;;;;;;;22731:7;22740:18;:7;:16;:18::i;:::-;22714:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22679:86;22672:93;22439:334;-1:-1:-1;;;22439:334:0:o;38806:84::-;34729:6;;-1:-1:-1;;;;;34729:6:0;16522:10;34876:23;34868:68;;;;-1:-1:-1;;;34868:68:0;;;;;;;:::i;:::-;38865:9:::1;:17:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;;38865:17:0::1;-1:-1:-1::0;;;;38865:17:0;;::::1;::::0;;;::::1;::::0;;38806:84::o;36503:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35565:201::-;34729:6;;-1:-1:-1;;;;;34729:6:0;16522:10;34876:23;34868:68;;;;-1:-1:-1;;;34868:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35654:22:0;::::1;35646:73;;;::::0;-1:-1:-1;;;35646:73:0;;15271:2:1;35646:73:0::1;::::0;::::1;15253:21:1::0;15310:2;15290:18;;;15283:30;15349:34;15329:18;;;15322:62;-1:-1:-1;;;15400:18:1;;;15393:36;15446:19;;35646:73:0::1;15069:402:1::0;35646:73:0::1;35730:28;35749:8;35730:18;:28::i;:::-;35565:201:::0;:::o;21150:305::-;21252:4;-1:-1:-1;;;;;;21289:40:0;;-1:-1:-1;;;21289:40:0;;:105;;-1:-1:-1;;;;;;;21346:48:0;;-1:-1:-1;;;21346:48:0;21289:105;:158;;;-1:-1:-1;;;;;;;;;;19699:40:0;;;21411:36;19590:157;30890:174;30965:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30965:29:0;-1:-1:-1;;;;;30965:29:0;;;;;;;;:24;;31019:23;30965:24;31019:14;:23::i;:::-;-1:-1:-1;;;;;31010:46:0;;;;;;;;;;;30890:174;;:::o;27202:348::-;27295:4;26997:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26997:16:0;27312:73;;;;-1:-1:-1;;;27312:73:0;;15678:2:1;27312:73:0;;;15660:21:1;15717:2;15697:18;;;15690:30;15756:34;15736:18;;;15729:62;-1:-1:-1;;;15807:18:1;;;15800:42;15859:19;;27312:73:0;15476:408:1;27312:73:0;27396:13;27412:23;27427:7;27412:14;:23::i;:::-;27396:39;;27465:5;-1:-1:-1;;;;;27454:16:0;:7;-1:-1:-1;;;;;27454:16:0;;:51;;;;27498:7;-1:-1:-1;;;;;27474:31:0;:20;27486:7;27474:11;:20::i;:::-;-1:-1:-1;;;;;27474:31:0;;27454:51;:87;;;-1:-1:-1;;;;;;24294:25:0;;;24270:4;24294:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27509:32;27446:96;27202:348;-1:-1:-1;;;;27202:348:0:o;30194:578::-;30353:4;-1:-1:-1;;;;;30326:31:0;:23;30341:7;30326:14;:23::i;:::-;-1:-1:-1;;;;;30326:31:0;;30318:85;;;;-1:-1:-1;;;30318:85:0;;16091:2:1;30318:85:0;;;16073:21:1;16130:2;16110:18;;;16103:30;16169:34;16149:18;;;16142:62;-1:-1:-1;;;16220:18:1;;;16213:39;16269:19;;30318:85:0;15889:405:1;30318:85:0;-1:-1:-1;;;;;30422:16:0;;30414:65;;;;-1:-1:-1;;;30414:65:0;;16501:2:1;30414:65:0;;;16483:21:1;16540:2;16520:18;;;16513:30;16579:34;16559:18;;;16552:62;-1:-1:-1;;;16630:18:1;;;16623:34;16674:19;;30414:65:0;16299:400:1;30414:65:0;30596:29;30613:1;30617:7;30596:8;:29::i;:::-;-1:-1:-1;;;;;30638:15:0;;;;;;:9;:15;;;;;:20;;30657:1;;30638:15;:20;;30657:1;;30638:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30669:13:0;;;;;;:9;:13;;;;;:18;;30686:1;;30669:13;:18;;30686:1;;30669:18;:::i;:::-;;;;-1:-1:-1;;30698:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30698:21:0;-1:-1:-1;;;;;30698:21:0;;;;;;;;;30737:27;;30698:16;;30737:27;;;;;;;30194:578;;;:::o;36974:197::-;37027:12;;36275:3;-1:-1:-1;;;37027:12:0;;;:25;:12;:25;37019:68;;;;-1:-1:-1;;;37019:68:0;;17036:2:1;37019:68:0;;;17018:21:1;17075:2;17055:18;;;17048:30;17114:32;17094:18;;;17087:60;17164:18;;37019:68:0;16834:354:1;37019:68:0;37122:12;;37100:35;;37110:10;;-1:-1:-1;;;37122:12:0;;;;37100:9;:35::i;:::-;37162:1;37146:12;;:17;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;36974:197::o;27892:110::-;27968:26;27978:2;27982:7;27968:26;;;;;;;;;;;;:9;:26::i;35926:191::-;36019:6;;;-1:-1:-1;;;;;36036:17:0;;;-1:-1:-1;;;;;;36036:17:0;;;;;;;36069:40;;36019:6;;;36036:17;36019:6;;36069:40;;36000:16;;36069:40;35989:128;35926:191;:::o;31206:315::-;31361:8;-1:-1:-1;;;;;31352:17:0;:5;-1:-1:-1;;;;;31352:17:0;;;31344:55;;;;-1:-1:-1;;;31344:55:0;;17395:2:1;31344:55:0;;;17377:21:1;17434:2;17414:18;;;17407:30;17473:27;17453:18;;;17446:55;17518:18;;31344:55:0;17193:349:1;31344:55:0;-1:-1:-1;;;;;31410:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;31410:46:0;;;;;;;;;;31472:41;;540::1;;;31472::0;;513:18:1;31472:41:0;;;;;;;31206:315;;;:::o;26280:::-;26437:28;26447:4;26453:2;26457:7;26437:9;:28::i;:::-;26484:48;26507:4;26513:2;26517:7;26526:5;26484:22;:48::i;:::-;26476:111;;;;-1:-1:-1;;;26476:111:0;;;;;;;:::i;36655:213::-;36815:13;36848:12;36841:19;;;;;:::i;17027:658::-;17083:13;17239:10;17235:53;;-1:-1:-1;;17266:10:0;;;;;;;;;;;;-1:-1:-1;;;17266:10:0;;;;;17027:658::o;17235:53::-;17313:5;17298:12;17354:78;17361:9;;17354:78;;17387:8;;;;:::i;:::-;;-1:-1:-1;17410:10:0;;-1:-1:-1;17418:2:0;17410:10;;:::i;:::-;;;17354:78;;;17442:19;17474:6;17464:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17464:17:0;;17442:39;;17492:154;17499:10;;17492:154;;17526:11;17536:1;17526:11;;:::i;:::-;;-1:-1:-1;17595:10:0;17603:2;17595:5;:10;:::i;:::-;17582:24;;:2;:24;:::i;:::-;17569:39;;17552:6;17559;17552:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;17552:56:0;;;;;;;;-1:-1:-1;17623:11:0;17632:2;17623:11;;:::i;:::-;;;17492:154;;28229:321;28359:18;28365:2;28369:7;28359:5;:18::i;:::-;28410:54;28441:1;28445:2;28449:7;28458:5;28410:22;:54::i;:::-;28388:154;;;;-1:-1:-1;;;28388:154:0;;;;;;;:::i;32086:799::-;32241:4;-1:-1:-1;;;;;32262:13:0;;8749:20;8797:8;32258:620;;32298:72;;-1:-1:-1;;;32298:72:0;;-1:-1:-1;;;;;32298:36:0;;;;;:72;;16522:10;;32349:4;;32355:7;;32364:5;;32298:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32298:72:0;;;;;;;;-1:-1:-1;;32298:72:0;;;;;;;;;;;;:::i;:::-;;;32294:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32540:13:0;;32536:272;;32583:60;;-1:-1:-1;;;32583:60:0;;;;;;;:::i;32536:272::-;32758:6;32752:13;32743:6;32739:2;32735:15;32728:38;32294:529;-1:-1:-1;;;;;;32421:51:0;-1:-1:-1;;;32421:51:0;;-1:-1:-1;32414:58:0;;32258:620;-1:-1:-1;32862:4:0;32086:799;;;;;;:::o;28886:382::-;-1:-1:-1;;;;;28966:16:0;;28958:61;;;;-1:-1:-1;;;28958:61:0;;19562:2:1;28958:61:0;;;19544:21:1;;;19581:18;;;19574:30;19640:34;19620:18;;;19613:62;19692:18;;28958:61:0;19360:356:1;28958:61:0;26973:4;26997:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26997:16:0;:30;29030:58;;;;-1:-1:-1;;;29030:58:0;;19923:2:1;29030:58:0;;;19905:21:1;19962:2;19942:18;;;19935:30;20001;19981:18;;;19974:58;20049:18;;29030:58:0;19721:352:1;29030:58:0;-1:-1:-1;;;;;29159:13:0;;;;;;:9;:13;;;;;:18;;29176:1;;29159:13;:18;;29176:1;;29159:18;:::i;:::-;;;;-1:-1:-1;;29188:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29188:21:0;-1:-1:-1;;;;;29188:21:0;;;;;;;;29227:33;;29188:16;;;29227:33;;29188:16;;29227:33;28886:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;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;2555:328::-;2632:6;2640;2648;2701:2;2689:9;2680:7;2676:23;2672:32;2669:52;;;2717:1;2714;2707:12;2669:52;2740:29;2759:9;2740:29;:::i;:::-;2730:39;;2788:38;2822:2;2811:9;2807:18;2788:38;:::i;:::-;2778:48;;2873:2;2862:9;2858:18;2845:32;2835:42;;2555:328;;;;;:::o;2888:156::-;2954:20;;3014:4;3003:16;;2993:27;;2983:55;;3034:1;3031;3024:12;3049:182;3106:6;3159:2;3147:9;3138:7;3134:23;3130:32;3127:52;;;3175:1;3172;3165:12;3127:52;3198:27;3215:9;3198:27;:::i;3236:256::-;3302:6;3310;3363:2;3351:9;3342:7;3338:23;3334:32;3331:52;;;3379:1;3376;3369:12;3331:52;3402:27;3419:9;3402:27;:::i;:::-;3392:37;;3448:38;3482:2;3471:9;3467:18;3448:38;:::i;:::-;3438:48;;3236:256;;;;;:::o;3497:127::-;3558:10;3553:3;3549:20;3546:1;3539:31;3589:4;3586:1;3579:15;3613:4;3610:1;3603:15;3629:632;3694:5;3724:18;3765:2;3757:6;3754:14;3751:40;;;3771:18;;:::i;:::-;3846:2;3840:9;3814:2;3900:15;;-1:-1:-1;;3896:24:1;;;3922:2;3892:33;3888:42;3876:55;;;3946:18;;;3966:22;;;3943:46;3940:72;;;3992:18;;:::i;:::-;4032:10;4028:2;4021:22;4061:6;4052:15;;4091:6;4083;4076:22;4131:3;4122:6;4117:3;4113:16;4110:25;4107:45;;;4148:1;4145;4138:12;4107:45;4198:6;4193:3;4186:4;4178:6;4174:17;4161:44;4253:1;4246:4;4237:6;4229;4225:19;4221:30;4214:41;;;;3629:632;;;;;:::o;4266:451::-;4335:6;4388:2;4376:9;4367:7;4363:23;4359:32;4356:52;;;4404:1;4401;4394:12;4356:52;4444:9;4431:23;4477:18;4469:6;4466:30;4463:50;;;4509:1;4506;4499:12;4463:50;4532:22;;4585:4;4577:13;;4573:27;-1:-1:-1;4563:55:1;;4614:1;4611;4604:12;4563:55;4637:74;4703:7;4698:2;4685:16;4680:2;4676;4672:11;4637:74;:::i;4722:186::-;4781:6;4834:2;4822:9;4813:7;4809:23;4805:32;4802:52;;;4850:1;4847;4840:12;4802:52;4873:29;4892:9;4873:29;:::i;5095:347::-;5160:6;5168;5221:2;5209:9;5200:7;5196:23;5192:32;5189:52;;;5237:1;5234;5227:12;5189:52;5260:29;5279:9;5260:29;:::i;:::-;5250:39;;5339:2;5328:9;5324:18;5311:32;5386:5;5379:13;5372:21;5365:5;5362:32;5352:60;;5408:1;5405;5398:12;5352:60;5431:5;5421:15;;;5095:347;;;;;:::o;5447:667::-;5542:6;5550;5558;5566;5619:3;5607:9;5598:7;5594:23;5590:33;5587:53;;;5636:1;5633;5626:12;5587:53;5659:29;5678:9;5659:29;:::i;:::-;5649:39;;5707:38;5741:2;5730:9;5726:18;5707:38;:::i;:::-;5697:48;;5792:2;5781:9;5777:18;5764:32;5754:42;;5847:2;5836:9;5832:18;5819:32;5874:18;5866:6;5863:30;5860:50;;;5906:1;5903;5896:12;5860:50;5929:22;;5982:4;5974:13;;5970:27;-1:-1:-1;5960:55:1;;6011:1;6008;6001:12;5960:55;6034:74;6100:7;6095:2;6082:16;6077:2;6073;6069:11;6034:74;:::i;:::-;6024:84;;;5447:667;;;;;;;:::o;6119:260::-;6187:6;6195;6248:2;6236:9;6227:7;6223:23;6219:32;6216:52;;;6264:1;6261;6254:12;6216:52;6287:29;6306:9;6287:29;:::i;6384:380::-;6463:1;6459:12;;;;6506;;;6527:61;;6581:4;6573:6;6569:17;6559:27;;6527:61;6634:2;6626:6;6623:14;6603:18;6600:38;6597:161;;;6680:10;6675:3;6671:20;6668:1;6661:31;6715:4;6712:1;6705:15;6743:4;6740:1;6733:15;6597:161;;6384:380;;;:::o;8009:413::-;8211:2;8193:21;;;8250:2;8230:18;;;8223:30;8289:34;8284:2;8269:18;;8262:62;-1:-1:-1;;;8355:2:1;8340:18;;8333:47;8412:3;8397:19;;8009:413::o;9131:127::-;9192:10;9187:3;9183:20;9180:1;9173:31;9223:4;9220:1;9213:15;9247:4;9244:1;9237:15;9263:204;9301:3;9337:4;9334:1;9330:12;9369:4;9366:1;9362:12;9404:3;9398:4;9394:14;9389:3;9386:23;9383:49;;;9412:18;;:::i;:::-;9448:13;;9263:204;-1:-1:-1;;;9263:204:1:o;9472:128::-;9512:3;9543:1;9539:6;9536:1;9533:13;9530:39;;;9549:18;;:::i;:::-;-1:-1:-1;9585:9:1;;9472:128::o;10007:224::-;10046:3;10074:6;10107:2;10104:1;10100:10;10137:2;10134:1;10130:10;10168:3;10164:2;10160:12;10155:3;10152:21;10149:47;;;10176:18;;:::i;:::-;10212:13;;10007:224;-1:-1:-1;;;;10007:224:1:o;10987:168::-;11027:7;11093:1;11089;11085:6;11081:14;11078:1;11075:21;11070:1;11063:9;11056:17;11052:45;11049:71;;;11100:18;;:::i;:::-;-1:-1:-1;11140:9:1;;10987:168::o;11563:175::-;11600:3;11644:4;11637:5;11633:16;11673:4;11664:7;11661:17;11658:43;;;11681:18;;:::i;:::-;11730:1;11717:15;;11563:175;-1:-1:-1;;11563:175:1:o;11743:356::-;11945:2;11927:21;;;11964:18;;;11957:30;12023:34;12018:2;12003:18;;11996:62;12090:2;12075:18;;11743:356::o;14594:470::-;14773:3;14811:6;14805:13;14827:53;14873:6;14868:3;14861:4;14853:6;14849:17;14827:53;:::i;:::-;14943:13;;14902:16;;;;14965:57;14943:13;14902:16;14999:4;14987:17;;14965:57;:::i;16704:125::-;16744:4;16772:1;16769;16766:8;16763:34;;;16777:18;;:::i;:::-;-1:-1:-1;16814:9:1;;16704:125::o;17547:414::-;17749:2;17731:21;;;17788:2;17768:18;;;17761:30;17827:34;17822:2;17807:18;;17800:62;-1:-1:-1;;;17893:2:1;17878:18;;17871:48;17951:3;17936:19;;17547:414::o;17966:135::-;18005:3;-1:-1:-1;;18026:17:1;;18023:43;;;18046:18;;:::i;:::-;-1:-1:-1;18093:1:1;18082:13;;17966:135::o;18106:127::-;18167:10;18162:3;18158:20;18155:1;18148:31;18198:4;18195:1;18188:15;18222:4;18219:1;18212:15;18238:120;18278:1;18304;18294:35;;18309:18;;:::i;:::-;-1:-1:-1;18343:9:1;;18238:120::o;18363:112::-;18395:1;18421;18411:35;;18426:18;;:::i;:::-;-1:-1:-1;18460:9:1;;18363:112::o;18480:127::-;18541:10;18536:3;18532:20;18529:1;18522:31;18572:4;18569:1;18562:15;18596:4;18593:1;18586:15;18612:489;-1:-1:-1;;;;;18881:15:1;;;18863:34;;18933:15;;18928:2;18913:18;;18906:43;18980:2;18965:18;;18958:34;;;19028:3;19023:2;19008:18;;19001:31;;;18806:4;;19049:46;;19075:19;;19067:6;19049:46;:::i;:::-;19041:54;18612:489;-1:-1:-1;;;;;;18612:489:1:o;19106:249::-;19175:6;19228:2;19216:9;19207:7;19203:23;19199:32;19196:52;;;19244:1;19241;19234:12;19196:52;19276:9;19270:16;19295:30;19319:5;19295:30;:::i

Swarm Source

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