ETH Price: $3,389.07 (-2.64%)
Gas: 1 Gwei

Token

mfer2 (MFER2)
 

Overview

Max Total Supply

10,021 MFER2

Holders

1,130

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 MFER2
0xc8fc4f75009b69ba5769d525da49a3b2bca143a5
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:
mfers2

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-05
*/

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


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

/*
              __                     
 _ __ ___    / _|   ___   _ __   ___   _ ___
| '_ ` _ \  | |_   / _ \ | '__| / __| | __  |
| | | | | | |  _| |  __/ | |    \__ \  __/ /
|_| |_| |_| |_|    \___| |_|    |___/ |_____'
                                     
*/

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.2.2
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of ERC721A.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the
     * ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @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,
        bytes calldata data
    ) external;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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);

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @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);

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.2.2
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev Interface of ERC721 token receiver.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Reference type for token approval.
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant _BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant _BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant _BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant _BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

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

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal virtual {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public virtual override {
        address owner = ownerOf(tokenId);

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

        _tokenApprovals[tokenId].value = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

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

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

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

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns whether the call correctly returned the expected magic value.
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

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

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

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

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 0x80 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

            // Cache the end of the memory to calculate the length later.
            let end := str

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}

// File: mfers2.sol


pragma solidity >=0.8.10 <0.9.0;



contract mfers2 is ERC721A, Ownable {
    constructor(string memory baseURI) ERC721A("mfer2", "MFER2") {
        _baseTokenURI = baseURI;
        _safeMint(0x9B1eE9375B71c816936186b94022918f2D3B16A3, 21);
    }

    string _baseTokenURI;

    // its free , every wallet limits 10 
    function mint(uint256 quantity) public {
        require(totalSupply() + quantity <= 10021, "All mfer2 minted");
        require(_numberMinted(msg.sender) + quantity <= 10, "Cant mint more than 10 mfer2 per wallet");
        _safeMint(msg.sender, quantity);
    }

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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":[{"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","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":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200335838038062003358833981810160405281019062000037919062000856565b6040518060400160405280600581526020017f6d666572320000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4d464552320000000000000000000000000000000000000000000000000000008152508160029081620000b4919062000af2565b508060039081620000c6919062000af2565b50620000d76200013f60201b60201c565b6000819055505050620000ff620000f36200014460201b60201c565b6200014c60201b60201c565b806009908162000110919062000af2565b5062000138739b1ee9375b71c816936186b94022918f2d3b16a360156200021260201b60201c565b5062000d6f565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002348282604051806020016040528060008152506200023860201b60201c565b5050565b6200024a8383620002e960201b60201c565b60008373ffffffffffffffffffffffffffffffffffffffff163b14620002e457600080549050600083820390505b620002936000868380600101945086620004d060201b60201c565b620002ca576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811062000278578160005414620002e157600080fd5b50505b505050565b600080549050600082036200032a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200033f60008483856200063160201b60201c565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550620003ce83620003b060008660006200063760201b60201c565b620003c1856200066760201b60201c565b176200067760201b60201c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146200047157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905062000434565b5060008203620004ad576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050620004cb6000848385620006a260201b60201c565b505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620004fe620006a860201b60201c565b8786866040518563ffffffff1660e01b815260040162000522949392919062000c8c565b6020604051808303816000875af19250505080156200056157506040513d601f19601f820116820180604052508101906200055e919062000d3d565b60015b620005de573d806000811462000594576040519150601f19603f3d011682016040523d82523d6000602084013e62000599565b606091505b506000815103620005d6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b60008060e883901c905060e862000656868684620006b060201b60201c565b62ffffff16901b9150509392505050565b60006001821460e11b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60009392505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200072282620006d7565b810181811067ffffffffffffffff82111715620007445762000743620006e8565b5b80604052505050565b600062000759620006b9565b905062000767828262000717565b919050565b600067ffffffffffffffff8211156200078a5762000789620006e8565b5b6200079582620006d7565b9050602081019050919050565b60005b83811015620007c2578082015181840152602081019050620007a5565b83811115620007d2576000848401525b50505050565b6000620007ef620007e9846200076c565b6200074d565b9050828152602081018484840111156200080e576200080d620006d2565b5b6200081b848285620007a2565b509392505050565b600082601f8301126200083b576200083a620006cd565b5b81516200084d848260208601620007d8565b91505092915050565b6000602082840312156200086f576200086e620006c3565b5b600082015167ffffffffffffffff81111562000890576200088f620006c8565b5b6200089e8482850162000823565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620008fa57607f821691505b60208210810362000910576200090f620008b2565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200097a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200093b565b6200098686836200093b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620009d3620009cd620009c7846200099e565b620009a8565b6200099e565b9050919050565b6000819050919050565b620009ef83620009b2565b62000a07620009fe82620009da565b84845462000948565b825550505050565b600090565b62000a1e62000a0f565b62000a2b818484620009e4565b505050565b5b8181101562000a535762000a4760008262000a14565b60018101905062000a31565b5050565b601f82111562000aa25762000a6c8162000916565b62000a77846200092b565b8101602085101562000a87578190505b62000a9f62000a96856200092b565b83018262000a30565b50505b505050565b600082821c905092915050565b600062000ac76000198460080262000aa7565b1980831691505092915050565b600062000ae2838362000ab4565b9150826002028217905092915050565b62000afd82620008a7565b67ffffffffffffffff81111562000b195762000b18620006e8565b5b62000b258254620008e1565b62000b3282828562000a57565b600060209050601f83116001811462000b6a576000841562000b55578287015190505b62000b61858262000ad4565b86555062000bd1565b601f19841662000b7a8662000916565b60005b8281101562000ba45784890151825560018201915060208501945060208101905062000b7d565b8683101562000bc4578489015162000bc0601f89168262000ab4565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c068262000bd9565b9050919050565b62000c188162000bf9565b82525050565b62000c29816200099e565b82525050565b600081519050919050565b600082825260208201905092915050565b600062000c588262000c2f565b62000c64818562000c3a565b935062000c76818560208601620007a2565b62000c8181620006d7565b840191505092915050565b600060808201905062000ca3600083018762000c0d565b62000cb2602083018662000c0d565b62000cc1604083018562000c1e565b818103606083015262000cd5818462000c4b565b905095945050505050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000d178162000ce0565b811462000d2357600080fd5b50565b60008151905062000d378162000d0c565b92915050565b60006020828403121562000d565762000d55620006c3565b5b600062000d668482850162000d26565b91505092915050565b6125d98062000d7f6000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad578063a22cb46511610071578063a22cb465146102f4578063b88d4fde14610310578063c87b56dd1461032c578063e985e9c51461035c578063f2fde38b1461038c57610121565b806370a0823114610262578063715018a6146102925780638da5cb5b1461029c57806395d89b41146102ba578063a0712d68146102d857610121565b806318160ddd116100f457806318160ddd146101c057806323b872dd146101de57806342842e0e146101fa57806355f804b3146102165780636352211e1461023257610121565b806301ffc9a71461012657806306fdde0314610156578063081812fc14610174578063095ea7b3146101a4575b600080fd5b610140600480360381019061013b91906118c0565b6103a8565b60405161014d9190611908565b60405180910390f35b61015e61043a565b60405161016b91906119bc565b60405180910390f35b61018e60048036038101906101899190611a14565b6104cc565b60405161019b9190611a82565b60405180910390f35b6101be60048036038101906101b99190611ac9565b61054b565b005b6101c861068f565b6040516101d59190611b18565b60405180910390f35b6101f860048036038101906101f39190611b33565b6106a6565b005b610214600480360381019061020f9190611b33565b6109c8565b005b610230600480360381019061022b9190611cbb565b6109e8565b005b61024c60048036038101906102479190611a14565b610a03565b6040516102599190611a82565b60405180910390f35b61027c60048036038101906102779190611d04565b610a15565b6040516102899190611b18565b60405180910390f35b61029a610acd565b005b6102a4610ae1565b6040516102b19190611a82565b60405180910390f35b6102c2610b0b565b6040516102cf91906119bc565b60405180910390f35b6102f260048036038101906102ed9190611a14565b610b9d565b005b61030e60048036038101906103099190611d5d565b610c58565b005b61032a60048036038101906103259190611e3e565b610dcf565b005b61034660048036038101906103419190611a14565b610e42565b60405161035391906119bc565b60405180910390f35b61037660048036038101906103719190611ec1565b610ee0565b6040516103839190611908565b60405180910390f35b6103a660048036038101906103a19190611d04565b610f74565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061040357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104335750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461044990611f30565b80601f016020809104026020016040519081016040528092919081815260200182805461047590611f30565b80156104c25780601f10610497576101008083540402835291602001916104c2565b820191906000526020600020905b8154815290600101906020018083116104a557829003601f168201915b5050505050905090565b60006104d782610ff7565b61050d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061055682610a03565b90508073ffffffffffffffffffffffffffffffffffffffff16610577611056565b73ffffffffffffffffffffffffffffffffffffffff16146105da576105a38161059e611056565b610ee0565b6105d9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061069961105e565b6001546000540303905090565b60006106b182611063565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610718576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806107248461112f565b9150915061073a8187610735611056565b611156565b6107865761074f8661074a611056565b610ee0565b610785576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036107ec576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6107f9868686600161119a565b801561080457600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506108d2856108ae8888876111a0565b7c0200000000000000000000000000000000000000000000000000000000176111c8565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036109585760006001850190506000600460008381526020019081526020016000205403610956576000548114610955578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46109c086868660016111f3565b505050505050565b6109e383838360405180602001604052806000815250610dcf565b505050565b6109f06111f9565b80600990816109ff919061210d565b5050565b6000610a0e82611063565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a7c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ad56111f9565b610adf6000611277565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610b1a90611f30565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4690611f30565b8015610b935780601f10610b6857610100808354040283529160200191610b93565b820191906000526020600020905b815481529060010190602001808311610b7657829003601f168201915b5050505050905090565b61272581610ba961068f565b610bb3919061220e565b1115610bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610beb906122b0565b60405180910390fd5b600a81610c003361133d565b610c0a919061220e565b1115610c4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4290612342565b60405180910390fd5b610c553382611394565b50565b610c60611056565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cc4576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610cd1611056565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610d7e611056565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610dc39190611908565b60405180910390a35050565b610dda8484846106a6565b60008373ffffffffffffffffffffffffffffffffffffffff163b14610e3c57610e05848484846113b2565b610e3b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060610e4d82610ff7565b610e83576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610e8d611502565b90506000815103610ead5760405180602001604052806000815250610ed8565b80610eb784611594565b604051602001610ec892919061239e565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610f7c6111f9565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe290612434565b60405180910390fd5b610ff481611277565b50565b60008161100261105e565b11158015611011575060005482105b801561104f575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b6000808290508061107261105e565b116110f8576000548110156110f75760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036110f5575b600081036110eb5760046000836001900393508381526020019081526020016000205490506110c1565b809250505061112a565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86111b78686846115db565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6112016115e4565b73ffffffffffffffffffffffffffffffffffffffff1661121f610ae1565b73ffffffffffffffffffffffffffffffffffffffff1614611275576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126c906124a0565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6113ae8282604051806020016040528060008152506115ec565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026113d8611056565b8786866040518563ffffffff1660e01b81526004016113fa9493929190612515565b6020604051808303816000875af192505050801561143657506040513d601f19601f820116820180604052508101906114339190612576565b60015b6114af573d8060008114611466576040519150601f19603f3d011682016040523d82523d6000602084013e61146b565b606091505b5060008151036114a7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606009805461151190611f30565b80601f016020809104026020016040519081016040528092919081815260200182805461153d90611f30565b801561158a5780601f1061155f5761010080835404028352916020019161158a565b820191906000526020600020905b81548152906001019060200180831161156d57829003601f168201915b5050505050905090565b606060806040510190508060405280825b6001156115c757600183039250600a81066030018353600a81049050806115a5575b508181036020830392508083525050919050565b60009392505050565b600033905090565b6115f68383611689565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461168457600080549050600083820390505b61163660008683806001019450866113b2565b61166c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061162357816000541461168157600080fd5b50505b505050565b600080549050600082036116c9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6116d6600084838561119a565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061174d8361173e60008660006111a0565b61174785611844565b176111c8565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146117ee57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506117b3565b5060008203611829576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061183f60008483856111f3565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61189d81611868565b81146118a857600080fd5b50565b6000813590506118ba81611894565b92915050565b6000602082840312156118d6576118d561185e565b5b60006118e4848285016118ab565b91505092915050565b60008115159050919050565b611902816118ed565b82525050565b600060208201905061191d60008301846118f9565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561195d578082015181840152602081019050611942565b8381111561196c576000848401525b50505050565b6000601f19601f8301169050919050565b600061198e82611923565b611998818561192e565b93506119a881856020860161193f565b6119b181611972565b840191505092915050565b600060208201905081810360008301526119d68184611983565b905092915050565b6000819050919050565b6119f1816119de565b81146119fc57600080fd5b50565b600081359050611a0e816119e8565b92915050565b600060208284031215611a2a57611a2961185e565b5b6000611a38848285016119ff565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611a6c82611a41565b9050919050565b611a7c81611a61565b82525050565b6000602082019050611a976000830184611a73565b92915050565b611aa681611a61565b8114611ab157600080fd5b50565b600081359050611ac381611a9d565b92915050565b60008060408385031215611ae057611adf61185e565b5b6000611aee85828601611ab4565b9250506020611aff858286016119ff565b9150509250929050565b611b12816119de565b82525050565b6000602082019050611b2d6000830184611b09565b92915050565b600080600060608486031215611b4c57611b4b61185e565b5b6000611b5a86828701611ab4565b9350506020611b6b86828701611ab4565b9250506040611b7c868287016119ff565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611bc882611972565b810181811067ffffffffffffffff82111715611be757611be6611b90565b5b80604052505050565b6000611bfa611854565b9050611c068282611bbf565b919050565b600067ffffffffffffffff821115611c2657611c25611b90565b5b611c2f82611972565b9050602081019050919050565b82818337600083830152505050565b6000611c5e611c5984611c0b565b611bf0565b905082815260208101848484011115611c7a57611c79611b8b565b5b611c85848285611c3c565b509392505050565b600082601f830112611ca257611ca1611b86565b5b8135611cb2848260208601611c4b565b91505092915050565b600060208284031215611cd157611cd061185e565b5b600082013567ffffffffffffffff811115611cef57611cee611863565b5b611cfb84828501611c8d565b91505092915050565b600060208284031215611d1a57611d1961185e565b5b6000611d2884828501611ab4565b91505092915050565b611d3a816118ed565b8114611d4557600080fd5b50565b600081359050611d5781611d31565b92915050565b60008060408385031215611d7457611d7361185e565b5b6000611d8285828601611ab4565b9250506020611d9385828601611d48565b9150509250929050565b600067ffffffffffffffff821115611db857611db7611b90565b5b611dc182611972565b9050602081019050919050565b6000611de1611ddc84611d9d565b611bf0565b905082815260208101848484011115611dfd57611dfc611b8b565b5b611e08848285611c3c565b509392505050565b600082601f830112611e2557611e24611b86565b5b8135611e35848260208601611dce565b91505092915050565b60008060008060808587031215611e5857611e5761185e565b5b6000611e6687828801611ab4565b9450506020611e7787828801611ab4565b9350506040611e88878288016119ff565b925050606085013567ffffffffffffffff811115611ea957611ea8611863565b5b611eb587828801611e10565b91505092959194509250565b60008060408385031215611ed857611ed761185e565b5b6000611ee685828601611ab4565b9250506020611ef785828601611ab4565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611f4857607f821691505b602082108103611f5b57611f5a611f01565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302611fc37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82611f86565b611fcd8683611f86565b95508019841693508086168417925050509392505050565b6000819050919050565b600061200a612005612000846119de565b611fe5565b6119de565b9050919050565b6000819050919050565b61202483611fef565b61203861203082612011565b848454611f93565b825550505050565b600090565b61204d612040565b61205881848461201b565b505050565b5b8181101561207c57612071600082612045565b60018101905061205e565b5050565b601f8211156120c15761209281611f61565b61209b84611f76565b810160208510156120aa578190505b6120be6120b685611f76565b83018261205d565b50505b505050565b600082821c905092915050565b60006120e4600019846008026120c6565b1980831691505092915050565b60006120fd83836120d3565b9150826002028217905092915050565b61211682611923565b67ffffffffffffffff81111561212f5761212e611b90565b5b6121398254611f30565b612144828285612080565b600060209050601f8311600181146121775760008415612165578287015190505b61216f85826120f1565b8655506121d7565b601f19841661218586611f61565b60005b828110156121ad57848901518255600182019150602085019450602081019050612188565b868310156121ca57848901516121c6601f8916826120d3565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612219826119de565b9150612224836119de565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612259576122586121df565b5b828201905092915050565b7f416c6c206d66657232206d696e74656400000000000000000000000000000000600082015250565b600061229a60108361192e565b91506122a582612264565b602082019050919050565b600060208201905081810360008301526122c98161228d565b9050919050565b7f43616e74206d696e74206d6f7265207468616e203130206d666572322070657260008201527f2077616c6c657400000000000000000000000000000000000000000000000000602082015250565b600061232c60278361192e565b9150612337826122d0565b604082019050919050565b6000602082019050818103600083015261235b8161231f565b9050919050565b600081905092915050565b600061237882611923565b6123828185612362565b935061239281856020860161193f565b80840191505092915050565b60006123aa828561236d565b91506123b6828461236d565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061241e60268361192e565b9150612429826123c2565b604082019050919050565b6000602082019050818103600083015261244d81612411565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061248a60208361192e565b915061249582612454565b602082019050919050565b600060208201905081810360008301526124b98161247d565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006124e7826124c0565b6124f181856124cb565b935061250181856020860161193f565b61250a81611972565b840191505092915050565b600060808201905061252a6000830187611a73565b6125376020830186611a73565b6125446040830185611b09565b818103606083015261255681846124dc565b905095945050505050565b60008151905061257081611894565b92915050565b60006020828403121561258c5761258b61185e565b5b600061259a84828501612561565b9150509291505056fea26469706673582212207147c14d150d5405285f9532988c7a760a8bbe2c3df000247e9e36d690927fb464736f6c634300080f00330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005368747470733a2f2f6f70656e7365612e6d7970696e6174612e636c6f75642f697066732f516d576951453635746d70597a636f6b436865516d6e673244434d33334445686a586350423650616e7770415a6f2f00000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad578063a22cb46511610071578063a22cb465146102f4578063b88d4fde14610310578063c87b56dd1461032c578063e985e9c51461035c578063f2fde38b1461038c57610121565b806370a0823114610262578063715018a6146102925780638da5cb5b1461029c57806395d89b41146102ba578063a0712d68146102d857610121565b806318160ddd116100f457806318160ddd146101c057806323b872dd146101de57806342842e0e146101fa57806355f804b3146102165780636352211e1461023257610121565b806301ffc9a71461012657806306fdde0314610156578063081812fc14610174578063095ea7b3146101a4575b600080fd5b610140600480360381019061013b91906118c0565b6103a8565b60405161014d9190611908565b60405180910390f35b61015e61043a565b60405161016b91906119bc565b60405180910390f35b61018e60048036038101906101899190611a14565b6104cc565b60405161019b9190611a82565b60405180910390f35b6101be60048036038101906101b99190611ac9565b61054b565b005b6101c861068f565b6040516101d59190611b18565b60405180910390f35b6101f860048036038101906101f39190611b33565b6106a6565b005b610214600480360381019061020f9190611b33565b6109c8565b005b610230600480360381019061022b9190611cbb565b6109e8565b005b61024c60048036038101906102479190611a14565b610a03565b6040516102599190611a82565b60405180910390f35b61027c60048036038101906102779190611d04565b610a15565b6040516102899190611b18565b60405180910390f35b61029a610acd565b005b6102a4610ae1565b6040516102b19190611a82565b60405180910390f35b6102c2610b0b565b6040516102cf91906119bc565b60405180910390f35b6102f260048036038101906102ed9190611a14565b610b9d565b005b61030e60048036038101906103099190611d5d565b610c58565b005b61032a60048036038101906103259190611e3e565b610dcf565b005b61034660048036038101906103419190611a14565b610e42565b60405161035391906119bc565b60405180910390f35b61037660048036038101906103719190611ec1565b610ee0565b6040516103839190611908565b60405180910390f35b6103a660048036038101906103a19190611d04565b610f74565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061040357506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104335750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461044990611f30565b80601f016020809104026020016040519081016040528092919081815260200182805461047590611f30565b80156104c25780601f10610497576101008083540402835291602001916104c2565b820191906000526020600020905b8154815290600101906020018083116104a557829003601f168201915b5050505050905090565b60006104d782610ff7565b61050d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061055682610a03565b90508073ffffffffffffffffffffffffffffffffffffffff16610577611056565b73ffffffffffffffffffffffffffffffffffffffff16146105da576105a38161059e611056565b610ee0565b6105d9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061069961105e565b6001546000540303905090565b60006106b182611063565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610718576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806107248461112f565b9150915061073a8187610735611056565b611156565b6107865761074f8661074a611056565b610ee0565b610785576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036107ec576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6107f9868686600161119a565b801561080457600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506108d2856108ae8888876111a0565b7c0200000000000000000000000000000000000000000000000000000000176111c8565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036109585760006001850190506000600460008381526020019081526020016000205403610956576000548114610955578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46109c086868660016111f3565b505050505050565b6109e383838360405180602001604052806000815250610dcf565b505050565b6109f06111f9565b80600990816109ff919061210d565b5050565b6000610a0e82611063565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a7c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ad56111f9565b610adf6000611277565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610b1a90611f30565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4690611f30565b8015610b935780601f10610b6857610100808354040283529160200191610b93565b820191906000526020600020905b815481529060010190602001808311610b7657829003601f168201915b5050505050905090565b61272581610ba961068f565b610bb3919061220e565b1115610bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610beb906122b0565b60405180910390fd5b600a81610c003361133d565b610c0a919061220e565b1115610c4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4290612342565b60405180910390fd5b610c553382611394565b50565b610c60611056565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cc4576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610cd1611056565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610d7e611056565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610dc39190611908565b60405180910390a35050565b610dda8484846106a6565b60008373ffffffffffffffffffffffffffffffffffffffff163b14610e3c57610e05848484846113b2565b610e3b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060610e4d82610ff7565b610e83576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610e8d611502565b90506000815103610ead5760405180602001604052806000815250610ed8565b80610eb784611594565b604051602001610ec892919061239e565b6040516020818303038152906040525b915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610f7c6111f9565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe290612434565b60405180910390fd5b610ff481611277565b50565b60008161100261105e565b11158015611011575060005482105b801561104f575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b6000808290508061107261105e565b116110f8576000548110156110f75760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036110f5575b600081036110eb5760046000836001900393508381526020019081526020016000205490506110c1565b809250505061112a565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86111b78686846115db565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6112016115e4565b73ffffffffffffffffffffffffffffffffffffffff1661121f610ae1565b73ffffffffffffffffffffffffffffffffffffffff1614611275576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126c906124a0565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6113ae8282604051806020016040528060008152506115ec565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026113d8611056565b8786866040518563ffffffff1660e01b81526004016113fa9493929190612515565b6020604051808303816000875af192505050801561143657506040513d601f19601f820116820180604052508101906114339190612576565b60015b6114af573d8060008114611466576040519150601f19603f3d011682016040523d82523d6000602084013e61146b565b606091505b5060008151036114a7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606009805461151190611f30565b80601f016020809104026020016040519081016040528092919081815260200182805461153d90611f30565b801561158a5780601f1061155f5761010080835404028352916020019161158a565b820191906000526020600020905b81548152906001019060200180831161156d57829003601f168201915b5050505050905090565b606060806040510190508060405280825b6001156115c757600183039250600a81066030018353600a81049050806115a5575b508181036020830392508083525050919050565b60009392505050565b600033905090565b6115f68383611689565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461168457600080549050600083820390505b61163660008683806001019450866113b2565b61166c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061162357816000541461168157600080fd5b50505b505050565b600080549050600082036116c9576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6116d6600084838561119a565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061174d8361173e60008660006111a0565b61174785611844565b176111c8565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146117ee57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506117b3565b5060008203611829576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061183f60008483856111f3565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61189d81611868565b81146118a857600080fd5b50565b6000813590506118ba81611894565b92915050565b6000602082840312156118d6576118d561185e565b5b60006118e4848285016118ab565b91505092915050565b60008115159050919050565b611902816118ed565b82525050565b600060208201905061191d60008301846118f9565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561195d578082015181840152602081019050611942565b8381111561196c576000848401525b50505050565b6000601f19601f8301169050919050565b600061198e82611923565b611998818561192e565b93506119a881856020860161193f565b6119b181611972565b840191505092915050565b600060208201905081810360008301526119d68184611983565b905092915050565b6000819050919050565b6119f1816119de565b81146119fc57600080fd5b50565b600081359050611a0e816119e8565b92915050565b600060208284031215611a2a57611a2961185e565b5b6000611a38848285016119ff565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611a6c82611a41565b9050919050565b611a7c81611a61565b82525050565b6000602082019050611a976000830184611a73565b92915050565b611aa681611a61565b8114611ab157600080fd5b50565b600081359050611ac381611a9d565b92915050565b60008060408385031215611ae057611adf61185e565b5b6000611aee85828601611ab4565b9250506020611aff858286016119ff565b9150509250929050565b611b12816119de565b82525050565b6000602082019050611b2d6000830184611b09565b92915050565b600080600060608486031215611b4c57611b4b61185e565b5b6000611b5a86828701611ab4565b9350506020611b6b86828701611ab4565b9250506040611b7c868287016119ff565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611bc882611972565b810181811067ffffffffffffffff82111715611be757611be6611b90565b5b80604052505050565b6000611bfa611854565b9050611c068282611bbf565b919050565b600067ffffffffffffffff821115611c2657611c25611b90565b5b611c2f82611972565b9050602081019050919050565b82818337600083830152505050565b6000611c5e611c5984611c0b565b611bf0565b905082815260208101848484011115611c7a57611c79611b8b565b5b611c85848285611c3c565b509392505050565b600082601f830112611ca257611ca1611b86565b5b8135611cb2848260208601611c4b565b91505092915050565b600060208284031215611cd157611cd061185e565b5b600082013567ffffffffffffffff811115611cef57611cee611863565b5b611cfb84828501611c8d565b91505092915050565b600060208284031215611d1a57611d1961185e565b5b6000611d2884828501611ab4565b91505092915050565b611d3a816118ed565b8114611d4557600080fd5b50565b600081359050611d5781611d31565b92915050565b60008060408385031215611d7457611d7361185e565b5b6000611d8285828601611ab4565b9250506020611d9385828601611d48565b9150509250929050565b600067ffffffffffffffff821115611db857611db7611b90565b5b611dc182611972565b9050602081019050919050565b6000611de1611ddc84611d9d565b611bf0565b905082815260208101848484011115611dfd57611dfc611b8b565b5b611e08848285611c3c565b509392505050565b600082601f830112611e2557611e24611b86565b5b8135611e35848260208601611dce565b91505092915050565b60008060008060808587031215611e5857611e5761185e565b5b6000611e6687828801611ab4565b9450506020611e7787828801611ab4565b9350506040611e88878288016119ff565b925050606085013567ffffffffffffffff811115611ea957611ea8611863565b5b611eb587828801611e10565b91505092959194509250565b60008060408385031215611ed857611ed761185e565b5b6000611ee685828601611ab4565b9250506020611ef785828601611ab4565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611f4857607f821691505b602082108103611f5b57611f5a611f01565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302611fc37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82611f86565b611fcd8683611f86565b95508019841693508086168417925050509392505050565b6000819050919050565b600061200a612005612000846119de565b611fe5565b6119de565b9050919050565b6000819050919050565b61202483611fef565b61203861203082612011565b848454611f93565b825550505050565b600090565b61204d612040565b61205881848461201b565b505050565b5b8181101561207c57612071600082612045565b60018101905061205e565b5050565b601f8211156120c15761209281611f61565b61209b84611f76565b810160208510156120aa578190505b6120be6120b685611f76565b83018261205d565b50505b505050565b600082821c905092915050565b60006120e4600019846008026120c6565b1980831691505092915050565b60006120fd83836120d3565b9150826002028217905092915050565b61211682611923565b67ffffffffffffffff81111561212f5761212e611b90565b5b6121398254611f30565b612144828285612080565b600060209050601f8311600181146121775760008415612165578287015190505b61216f85826120f1565b8655506121d7565b601f19841661218586611f61565b60005b828110156121ad57848901518255600182019150602085019450602081019050612188565b868310156121ca57848901516121c6601f8916826120d3565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612219826119de565b9150612224836119de565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612259576122586121df565b5b828201905092915050565b7f416c6c206d66657232206d696e74656400000000000000000000000000000000600082015250565b600061229a60108361192e565b91506122a582612264565b602082019050919050565b600060208201905081810360008301526122c98161228d565b9050919050565b7f43616e74206d696e74206d6f7265207468616e203130206d666572322070657260008201527f2077616c6c657400000000000000000000000000000000000000000000000000602082015250565b600061232c60278361192e565b9150612337826122d0565b604082019050919050565b6000602082019050818103600083015261235b8161231f565b9050919050565b600081905092915050565b600061237882611923565b6123828185612362565b935061239281856020860161193f565b80840191505092915050565b60006123aa828561236d565b91506123b6828461236d565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061241e60268361192e565b9150612429826123c2565b604082019050919050565b6000602082019050818103600083015261244d81612411565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061248a60208361192e565b915061249582612454565b602082019050919050565b600060208201905081810360008301526124b98161247d565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006124e7826124c0565b6124f181856124cb565b935061250181856020860161193f565b61250a81611972565b840191505092915050565b600060808201905061252a6000830187611a73565b6125376020830186611a73565b6125446040830185611b09565b818103606083015261255681846124dc565b905095945050505050565b60008151905061257081611894565b92915050565b60006020828403121561258c5761258b61185e565b5b600061259a84828501612561565b9150509291505056fea26469706673582212207147c14d150d5405285f9532988c7a760a8bbe2c3df000247e9e36d690927fb464736f6c634300080f0033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005368747470733a2f2f6f70656e7365612e6d7970696e6174612e636c6f75642f697066732f516d576951453635746d70597a636f6b436865516d6e673244434d33334445686a586350423650616e7770415a6f2f00000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://opensea.mypinata.cloud/ipfs/QmWiQE65tmpYzcokCheQmng2DCM33DEhjXcPB6PanwpAZo/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000053
Arg [2] : 68747470733a2f2f6f70656e7365612e6d7970696e6174612e636c6f75642f69
Arg [3] : 7066732f516d576951453635746d70597a636f6b436865516d6e673244434d33
Arg [4] : 334445686a586350423650616e7770415a6f2f00000000000000000000000000


Deployed Bytecode Sourcemap

54758:796:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22302:639;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23204:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29687:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29128:400;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18955:323;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33394:2817;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36307:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55449:102;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24597:152;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20139:233;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3050:103;;;:::i;:::-;;2402:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23380:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55052:267;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30245:308;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37090:399;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23590:318;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30710:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3308:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22302:639;22387:4;22726:10;22711:25;;:11;:25;;;;:102;;;;22803:10;22788:25;;:11;:25;;;;22711:102;:179;;;;22880:10;22865:25;;:11;:25;;;;22711:179;22691:199;;22302:639;;;:::o;23204:100::-;23258:13;23291:5;23284:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23204:100;:::o;29687:218::-;29763:7;29788:16;29796:7;29788;:16::i;:::-;29783:64;;29813:34;;;;;;;;;;;;;;29783:64;29867:15;:24;29883:7;29867:24;;;;;;;;;;;:30;;;;;;;;;;;;29860:37;;29687:218;;;:::o;29128:400::-;29209:13;29225:16;29233:7;29225;:16::i;:::-;29209:32;;29281:5;29258:28;;:19;:17;:19::i;:::-;:28;;;29254:175;;29306:44;29323:5;29330:19;:17;:19::i;:::-;29306:16;:44::i;:::-;29301:128;;29378:35;;;;;;;;;;;;;;29301:128;29254:175;29474:2;29441:15;:24;29457:7;29441:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;29512:7;29508:2;29492:28;;29501:5;29492:28;;;;;;;;;;;;29198:330;29128:400;;:::o;18955:323::-;19016:7;19244:15;:13;:15::i;:::-;19229:12;;19213:13;;:28;:46;19206:53;;18955:323;:::o;33394:2817::-;33528:27;33558;33577:7;33558:18;:27::i;:::-;33528:57;;33643:4;33602:45;;33618:19;33602:45;;;33598:86;;33656:28;;;;;;;;;;;;;;33598:86;33698:27;33727:23;33754:35;33781:7;33754:26;:35::i;:::-;33697:92;;;;33889:68;33914:15;33931:4;33937:19;:17;:19::i;:::-;33889:24;:68::i;:::-;33884:180;;33977:43;33994:4;34000:19;:17;:19::i;:::-;33977:16;:43::i;:::-;33972:92;;34029:35;;;;;;;;;;;;;;33972:92;33884:180;34095:1;34081:16;;:2;:16;;;34077:52;;34106:23;;;;;;;;;;;;;;34077:52;34142:43;34164:4;34170:2;34174:7;34183:1;34142:21;:43::i;:::-;34278:15;34275:160;;;34418:1;34397:19;34390:30;34275:160;34815:18;:24;34834:4;34815:24;;;;;;;;;;;;;;;;34813:26;;;;;;;;;;;;34884:18;:22;34903:2;34884:22;;;;;;;;;;;;;;;;34882:24;;;;;;;;;;;35206:146;35243:2;35292:45;35307:4;35313:2;35317:19;35292:14;:45::i;:::-;15354:8;35264:73;35206:18;:146::i;:::-;35177:17;:26;35195:7;35177:26;;;;;;;;;;;:175;;;;35523:1;15354:8;35472:19;:47;:52;35468:627;;35545:19;35577:1;35567:7;:11;35545:33;;35734:1;35700:17;:30;35718:11;35700:30;;;;;;;;;;;;:35;35696:384;;35838:13;;35823:11;:28;35819:242;;36018:19;35985:17;:30;36003:11;35985:30;;;;;;;;;;;:52;;;;35819:242;35696:384;35526:569;35468:627;36142:7;36138:2;36123:27;;36132:4;36123:27;;;;;;;;;;;;36161:42;36182:4;36188:2;36192:7;36201:1;36161:20;:42::i;:::-;33517:2694;;;33394:2817;;;:::o;36307:185::-;36445:39;36462:4;36468:2;36472:7;36445:39;;;;;;;;;;;;:16;:39::i;:::-;36307:185;;;:::o;55449:102::-;2288:13;:11;:13::i;:::-;55536:7:::1;55520:13;:23;;;;;;:::i;:::-;;55449:102:::0;:::o;24597:152::-;24669:7;24712:27;24731:7;24712:18;:27::i;:::-;24689:52;;24597:152;;;:::o;20139:233::-;20211:7;20252:1;20235:19;;:5;:19;;;20231:60;;20263:28;;;;;;;;;;;;;;20231:60;14298:13;20309:18;:25;20328:5;20309:25;;;;;;;;;;;;;;;;:55;20302:62;;20139:233;;;:::o;3050:103::-;2288:13;:11;:13::i;:::-;3115:30:::1;3142:1;3115:18;:30::i;:::-;3050:103::o:0;2402:87::-;2448:7;2475:6;;;;;;;;;;;2468:13;;2402:87;:::o;23380:104::-;23436:13;23469:7;23462:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23380:104;:::o;55052:267::-;55138:5;55126:8;55110:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:33;;55102:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;55223:2;55211:8;55183:25;55197:10;55183:13;:25::i;:::-;:36;;;;:::i;:::-;:42;;55175:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;55280:31;55290:10;55302:8;55280:9;:31::i;:::-;55052:267;:::o;30245:308::-;30356:19;:17;:19::i;:::-;30344:31;;:8;:31;;;30340:61;;30384:17;;;;;;;;;;;;;;30340:61;30466:8;30414:18;:39;30433:19;:17;:19::i;:::-;30414:39;;;;;;;;;;;;;;;:49;30454:8;30414:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;30526:8;30490:55;;30505:19;:17;:19::i;:::-;30490:55;;;30536:8;30490:55;;;;;;:::i;:::-;;;;;;;;30245:308;;:::o;37090:399::-;37257:31;37270:4;37276:2;37280:7;37257:12;:31::i;:::-;37321:1;37303:2;:14;;;:19;37299:183;;37342:56;37373:4;37379:2;37383:7;37392:5;37342:30;:56::i;:::-;37337:145;;37426:40;;;;;;;;;;;;;;37337:145;37299:183;37090:399;;;;:::o;23590:318::-;23663:13;23694:16;23702:7;23694;:16::i;:::-;23689:59;;23719:29;;;;;;;;;;;;;;23689:59;23761:21;23785:10;:8;:10::i;:::-;23761:34;;23838:1;23819:7;23813:21;:26;:87;;;;;;;;;;;;;;;;;23866:7;23875:18;23885:7;23875:9;:18::i;:::-;23849:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23813:87;23806:94;;;23590:318;;;:::o;30710:164::-;30807:4;30831:18;:25;30850:5;30831:25;;;;;;;;;;;;;;;:35;30857:8;30831:35;;;;;;;;;;;;;;;;;;;;;;;;;30824:42;;30710:164;;;;:::o;3308:201::-;2288:13;:11;:13::i;:::-;3417:1:::1;3397:22;;:8;:22;;::::0;3389:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3473:28;3492:8;3473:18;:28::i;:::-;3308:201:::0;:::o;31132:282::-;31197:4;31253:7;31234:15;:13;:15::i;:::-;:26;;:66;;;;;31287:13;;31277:7;:23;31234:66;:153;;;;;31386:1;15074:8;31338:17;:26;31356:7;31338:26;;;;;;;;;;;;:44;:49;31234:153;31214:173;;31132:282;;;:::o;52898:105::-;52958:7;52985:10;52978:17;;52898:105;:::o;18471:92::-;18527:7;18471:92;:::o;25752:1275::-;25819:7;25839:12;25854:7;25839:22;;25922:4;25903:15;:13;:15::i;:::-;:23;25899:1061;;25956:13;;25949:4;:20;25945:1015;;;25994:14;26011:17;:23;26029:4;26011:23;;;;;;;;;;;;25994:40;;26128:1;15074:8;26100:6;:24;:29;26096:845;;26765:113;26782:1;26772:6;:11;26765:113;;26825:17;:25;26843:6;;;;;;;26825:25;;;;;;;;;;;;26816:34;;26765:113;;;26911:6;26904:13;;;;;;26096:845;25971:989;25945:1015;25899:1061;26988:31;;;;;;;;;;;;;;25752:1275;;;;:::o;32295:479::-;32397:27;32426:23;32467:38;32508:15;:24;32524:7;32508:24;;;;;;;;;;;32467:65;;32679:18;32656:41;;32736:19;32730:26;32711:45;;32641:126;32295:479;;;:::o;31523:659::-;31672:11;31837:16;31830:5;31826:28;31817:37;;31997:16;31986:9;31982:32;31969:45;;32147:15;32136:9;32133:30;32125:5;32114:9;32111:20;32108:56;32098:66;;31523:659;;;;;:::o;38151:159::-;;;;;:::o;52207:311::-;52342:7;52362:16;15478:3;52388:19;:41;;52362:68;;15478:3;52456:31;52467:4;52473:2;52477:9;52456:10;:31::i;:::-;52448:40;;:62;;52441:69;;;52207:311;;;;;:::o;27575:450::-;27655:14;27823:16;27816:5;27812:28;27803:37;;28000:5;27986:11;27961:23;27957:41;27954:52;27947:5;27944:63;27934:73;;27575:450;;;;:::o;38975:158::-;;;;;:::o;2567:132::-;2642:12;:10;:12::i;:::-;2631:23;;:7;:5;:7::i;:::-;:23;;;2623:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2567:132::o;3669:191::-;3743:16;3762:6;;;;;;;;;;;3743:25;;3788:8;3779:6;;:17;;;;;;;;;;;;;;;;;;3843:8;3812:40;;3833:8;3812:40;;;;;;;;;;;;3732:128;3669:191;:::o;20454:178::-;20515:7;14298:13;14436:2;20543:18;:25;20562:5;20543:25;;;;;;;;;;;;;;;;:50;;20542:82;20535:89;;20454:178;;;:::o;46730:112::-;46807:27;46817:2;46821:8;46807:27;;;;;;;;;;;;:9;:27::i;:::-;46730:112;;:::o;39573:716::-;39736:4;39782:2;39757:45;;;39803:19;:17;:19::i;:::-;39824:4;39830:7;39839:5;39757:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39753:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40057:1;40040:6;:13;:18;40036:235;;40086:40;;;;;;;;;;;;;;40036:235;40229:6;40223:13;40214:6;40210:2;40206:15;40199:38;39753:529;39926:54;;;39916:64;;;:6;:64;;;;39909:71;;;39573:716;;;;;;:::o;55327:114::-;55387:13;55420;55413:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55327:114;:::o;53105:1581::-;53170:17;53595:4;53588;53582:11;53578:22;53571:29;;53687:3;53681:4;53674:17;53793:3;54032:5;54014:428;54040:1;54014:428;;;54080:1;54075:3;54071:11;54064:18;;54251:2;54245:4;54241:13;54237:2;54233:22;54228:3;54220:36;54345:2;54339:4;54335:13;54327:21;;54412:4;54014:428;54402:25;54014:428;54018:21;54481:3;54476;54472:13;54596:4;54591:3;54587:14;54580:21;;54661:6;54656:3;54649:19;53209:1470;;53105:1581;;;:::o;51908:147::-;52045:6;51908:147;;;;;:::o;953:98::-;1006:7;1033:10;1026:17;;953:98;:::o;45957:689::-;46088:19;46094:2;46098:8;46088:5;:19::i;:::-;46167:1;46149:2;:14;;;:19;46145:483;;46189:11;46203:13;;46189:27;;46235:13;46257:8;46251:3;:14;46235:30;;46284:233;46315:62;46354:1;46358:2;46362:7;;;;;;46371:5;46315:30;:62::i;:::-;46310:167;;46413:40;;;;;;;;;;;;;;46310:167;46512:3;46504:5;:11;46284:233;;46599:3;46582:13;;:20;46578:34;;46604:8;;;46578:34;46170:458;;46145:483;45957:689;;;:::o;40751:2454::-;40824:20;40847:13;;40824:36;;40887:1;40875:8;:13;40871:44;;40897:18;;;;;;;;;;;;;;40871:44;40928:61;40958:1;40962:2;40966:12;40980:8;40928:21;:61::i;:::-;41472:1;14436:2;41442:1;:26;;41441:32;41429:8;:45;41403:18;:22;41422:2;41403:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;41751:139;41788:2;41842:33;41865:1;41869:2;41873:1;41842:14;:33::i;:::-;41809:30;41830:8;41809:20;:30::i;:::-;:66;41751:18;:139::i;:::-;41717:17;:31;41735:12;41717:31;;;;;;;;;;;:173;;;;41907:16;41938:11;41967:8;41952:12;:23;41938:37;;42222:16;42218:2;42214:25;42202:37;;42594:12;42554:8;42513:1;42451:25;42392:1;42331;42304:335;42719:1;42705:12;42701:20;42659:346;42760:3;42751:7;42748:16;42659:346;;42978:7;42968:8;42965:1;42938:25;42935:1;42932;42927:59;42813:1;42804:7;42800:15;42789:26;;42659:346;;;42663:77;43050:1;43038:8;:13;43034:45;;43060:19;;;;;;;;;;;;;;43034:45;43112:3;43096:13;:19;;;;41177:1950;;43137:60;43166:1;43170:2;43174:12;43188:8;43137:20;:60::i;:::-;40813:2392;40751:2454;;:::o;28127:324::-;28197:14;28430:1;28420:8;28417:15;28391:24;28387:46;28377:56;;28127:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:117::-;6024:1;6021;6014:12;6038:117;6147:1;6144;6137:12;6161:180;6209:77;6206:1;6199:88;6306:4;6303:1;6296:15;6330:4;6327:1;6320:15;6347:281;6430:27;6452:4;6430:27;:::i;:::-;6422:6;6418:40;6560:6;6548:10;6545:22;6524:18;6512:10;6509:34;6506:62;6503:88;;;6571:18;;:::i;:::-;6503:88;6611:10;6607:2;6600:22;6390:238;6347:281;;:::o;6634:129::-;6668:6;6695:20;;:::i;:::-;6685:30;;6724:33;6752:4;6744:6;6724:33;:::i;:::-;6634:129;;;:::o;6769:308::-;6831:4;6921:18;6913:6;6910:30;6907:56;;;6943:18;;:::i;:::-;6907:56;6981:29;7003:6;6981:29;:::i;:::-;6973:37;;7065:4;7059;7055:15;7047:23;;6769:308;;;:::o;7083:154::-;7167:6;7162:3;7157;7144:30;7229:1;7220:6;7215:3;7211:16;7204:27;7083:154;;;:::o;7243:412::-;7321:5;7346:66;7362:49;7404:6;7362:49;:::i;:::-;7346:66;:::i;:::-;7337:75;;7435:6;7428:5;7421:21;7473:4;7466:5;7462:16;7511:3;7502:6;7497:3;7493:16;7490:25;7487:112;;;7518:79;;:::i;:::-;7487:112;7608:41;7642:6;7637:3;7632;7608:41;:::i;:::-;7327:328;7243:412;;;;;:::o;7675:340::-;7731:5;7780:3;7773:4;7765:6;7761:17;7757:27;7747:122;;7788:79;;:::i;:::-;7747:122;7905:6;7892:20;7930:79;8005:3;7997:6;7990:4;7982:6;7978:17;7930:79;:::i;:::-;7921:88;;7737:278;7675:340;;;;:::o;8021:509::-;8090:6;8139:2;8127:9;8118:7;8114:23;8110:32;8107:119;;;8145:79;;:::i;:::-;8107:119;8293:1;8282:9;8278:17;8265:31;8323:18;8315:6;8312:30;8309:117;;;8345:79;;:::i;:::-;8309:117;8450:63;8505:7;8496:6;8485:9;8481:22;8450:63;:::i;:::-;8440:73;;8236:287;8021:509;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:474::-;11709:6;11717;11766:2;11754:9;11745:7;11741:23;11737:32;11734:119;;;11772:79;;:::i;:::-;11734:119;11892:1;11917:53;11962:7;11953:6;11942:9;11938:22;11917:53;:::i;:::-;11907:63;;11863:117;12019:2;12045:53;12090:7;12081:6;12070:9;12066:22;12045:53;:::i;:::-;12035:63;;11990:118;11641:474;;;;;:::o;12121:180::-;12169:77;12166:1;12159:88;12266:4;12263:1;12256:15;12290:4;12287:1;12280:15;12307:320;12351:6;12388:1;12382:4;12378:12;12368:22;;12435:1;12429:4;12425:12;12456:18;12446:81;;12512:4;12504:6;12500:17;12490:27;;12446:81;12574:2;12566:6;12563:14;12543:18;12540:38;12537:84;;12593:18;;:::i;:::-;12537:84;12358:269;12307:320;;;:::o;12633:141::-;12682:4;12705:3;12697:11;;12728:3;12725:1;12718:14;12762:4;12759:1;12749:18;12741:26;;12633:141;;;:::o;12780:93::-;12817:6;12864:2;12859;12852:5;12848:14;12844:23;12834:33;;12780:93;;;:::o;12879:107::-;12923:8;12973:5;12967:4;12963:16;12942:37;;12879:107;;;;:::o;12992:393::-;13061:6;13111:1;13099:10;13095:18;13134:97;13164:66;13153:9;13134:97;:::i;:::-;13252:39;13282:8;13271:9;13252:39;:::i;:::-;13240:51;;13324:4;13320:9;13313:5;13309:21;13300:30;;13373:4;13363:8;13359:19;13352:5;13349:30;13339:40;;13068:317;;12992:393;;;;;:::o;13391:60::-;13419:3;13440:5;13433:12;;13391:60;;;:::o;13457:142::-;13507:9;13540:53;13558:34;13567:24;13585:5;13567:24;:::i;:::-;13558:34;:::i;:::-;13540:53;:::i;:::-;13527:66;;13457:142;;;:::o;13605:75::-;13648:3;13669:5;13662:12;;13605:75;;;:::o;13686:269::-;13796:39;13827:7;13796:39;:::i;:::-;13857:91;13906:41;13930:16;13906:41;:::i;:::-;13898:6;13891:4;13885:11;13857:91;:::i;:::-;13851:4;13844:105;13762:193;13686:269;;;:::o;13961:73::-;14006:3;13961:73;:::o;14040:189::-;14117:32;;:::i;:::-;14158:65;14216:6;14208;14202:4;14158:65;:::i;:::-;14093:136;14040:189;;:::o;14235:186::-;14295:120;14312:3;14305:5;14302:14;14295:120;;;14366:39;14403:1;14396:5;14366:39;:::i;:::-;14339:1;14332:5;14328:13;14319:22;;14295:120;;;14235:186;;:::o;14427:543::-;14528:2;14523:3;14520:11;14517:446;;;14562:38;14594:5;14562:38;:::i;:::-;14646:29;14664:10;14646:29;:::i;:::-;14636:8;14632:44;14829:2;14817:10;14814:18;14811:49;;;14850:8;14835:23;;14811:49;14873:80;14929:22;14947:3;14929:22;:::i;:::-;14919:8;14915:37;14902:11;14873:80;:::i;:::-;14532:431;;14517:446;14427:543;;;:::o;14976:117::-;15030:8;15080:5;15074:4;15070:16;15049:37;;14976:117;;;;:::o;15099:169::-;15143:6;15176:51;15224:1;15220:6;15212:5;15209:1;15205:13;15176:51;:::i;:::-;15172:56;15257:4;15251;15247:15;15237:25;;15150:118;15099:169;;;;:::o;15273:295::-;15349:4;15495:29;15520:3;15514:4;15495:29;:::i;:::-;15487:37;;15557:3;15554:1;15550:11;15544:4;15541:21;15533:29;;15273:295;;;;:::o;15573:1395::-;15690:37;15723:3;15690:37;:::i;:::-;15792:18;15784:6;15781:30;15778:56;;;15814:18;;:::i;:::-;15778:56;15858:38;15890:4;15884:11;15858:38;:::i;:::-;15943:67;16003:6;15995;15989:4;15943:67;:::i;:::-;16037:1;16061:4;16048:17;;16093:2;16085:6;16082:14;16110:1;16105:618;;;;16767:1;16784:6;16781:77;;;16833:9;16828:3;16824:19;16818:26;16809:35;;16781:77;16884:67;16944:6;16937:5;16884:67;:::i;:::-;16878:4;16871:81;16740:222;16075:887;;16105:618;16157:4;16153:9;16145:6;16141:22;16191:37;16223:4;16191:37;:::i;:::-;16250:1;16264:208;16278:7;16275:1;16272:14;16264:208;;;16357:9;16352:3;16348:19;16342:26;16334:6;16327:42;16408:1;16400:6;16396:14;16386:24;;16455:2;16444:9;16440:18;16427:31;;16301:4;16298:1;16294:12;16289:17;;16264:208;;;16500:6;16491:7;16488:19;16485:179;;;16558:9;16553:3;16549:19;16543:26;16601:48;16643:4;16635:6;16631:17;16620:9;16601:48;:::i;:::-;16593:6;16586:64;16508:156;16485:179;16710:1;16706;16698:6;16694:14;16690:22;16684:4;16677:36;16112:611;;;16075:887;;15665:1303;;;15573:1395;;:::o;16974:180::-;17022:77;17019:1;17012:88;17119:4;17116:1;17109:15;17143:4;17140:1;17133:15;17160:305;17200:3;17219:20;17237:1;17219:20;:::i;:::-;17214:25;;17253:20;17271:1;17253:20;:::i;:::-;17248:25;;17407:1;17339:66;17335:74;17332:1;17329:81;17326:107;;;17413:18;;:::i;:::-;17326:107;17457:1;17454;17450:9;17443:16;;17160:305;;;;:::o;17471:166::-;17611:18;17607:1;17599:6;17595:14;17588:42;17471:166;:::o;17643:366::-;17785:3;17806:67;17870:2;17865:3;17806:67;:::i;:::-;17799:74;;17882:93;17971:3;17882:93;:::i;:::-;18000:2;17995:3;17991:12;17984:19;;17643:366;;;:::o;18015:419::-;18181:4;18219:2;18208:9;18204:18;18196:26;;18268:9;18262:4;18258:20;18254:1;18243:9;18239:17;18232:47;18296:131;18422:4;18296:131;:::i;:::-;18288:139;;18015:419;;;:::o;18440:226::-;18580:34;18576:1;18568:6;18564:14;18557:58;18649:9;18644:2;18636:6;18632:15;18625:34;18440:226;:::o;18672:366::-;18814:3;18835:67;18899:2;18894:3;18835:67;:::i;:::-;18828:74;;18911:93;19000:3;18911:93;:::i;:::-;19029:2;19024:3;19020:12;19013:19;;18672:366;;;:::o;19044:419::-;19210:4;19248:2;19237:9;19233:18;19225:26;;19297:9;19291:4;19287:20;19283:1;19272:9;19268:17;19261:47;19325:131;19451:4;19325:131;:::i;:::-;19317:139;;19044:419;;;:::o;19469:148::-;19571:11;19608:3;19593:18;;19469:148;;;;:::o;19623:377::-;19729:3;19757:39;19790:5;19757:39;:::i;:::-;19812:89;19894:6;19889:3;19812:89;:::i;:::-;19805:96;;19910:52;19955:6;19950:3;19943:4;19936:5;19932:16;19910:52;:::i;:::-;19987:6;19982:3;19978:16;19971:23;;19733:267;19623:377;;;;:::o;20006:435::-;20186:3;20208:95;20299:3;20290:6;20208:95;:::i;:::-;20201:102;;20320:95;20411:3;20402:6;20320:95;:::i;:::-;20313:102;;20432:3;20425:10;;20006:435;;;;;:::o;20447:225::-;20587:34;20583:1;20575:6;20571:14;20564:58;20656:8;20651:2;20643:6;20639:15;20632:33;20447:225;:::o;20678:366::-;20820:3;20841:67;20905:2;20900:3;20841:67;:::i;:::-;20834:74;;20917:93;21006:3;20917:93;:::i;:::-;21035:2;21030:3;21026:12;21019:19;;20678:366;;;:::o;21050:419::-;21216:4;21254:2;21243:9;21239:18;21231:26;;21303:9;21297:4;21293:20;21289:1;21278:9;21274:17;21267:47;21331:131;21457:4;21331:131;:::i;:::-;21323:139;;21050:419;;;:::o;21475:182::-;21615:34;21611:1;21603:6;21599:14;21592:58;21475:182;:::o;21663:366::-;21805:3;21826:67;21890:2;21885:3;21826:67;:::i;:::-;21819:74;;21902:93;21991:3;21902:93;:::i;:::-;22020:2;22015:3;22011:12;22004:19;;21663:366;;;:::o;22035:419::-;22201:4;22239:2;22228:9;22224:18;22216:26;;22288:9;22282:4;22278:20;22274:1;22263:9;22259:17;22252:47;22316:131;22442:4;22316:131;:::i;:::-;22308:139;;22035:419;;;:::o;22460:98::-;22511:6;22545:5;22539:12;22529:22;;22460:98;;;:::o;22564:168::-;22647:11;22681:6;22676:3;22669:19;22721:4;22716:3;22712:14;22697:29;;22564:168;;;;:::o;22738:360::-;22824:3;22852:38;22884:5;22852:38;:::i;:::-;22906:70;22969:6;22964:3;22906:70;:::i;:::-;22899:77;;22985:52;23030:6;23025:3;23018:4;23011:5;23007:16;22985:52;:::i;:::-;23062:29;23084:6;23062:29;:::i;:::-;23057:3;23053:39;23046:46;;22828:270;22738:360;;;;:::o;23104:640::-;23299:4;23337:3;23326:9;23322:19;23314:27;;23351:71;23419:1;23408:9;23404:17;23395:6;23351:71;:::i;:::-;23432:72;23500:2;23489:9;23485:18;23476:6;23432:72;:::i;:::-;23514;23582:2;23571:9;23567:18;23558:6;23514:72;:::i;:::-;23633:9;23627:4;23623:20;23618:2;23607:9;23603:18;23596:48;23661:76;23732:4;23723:6;23661:76;:::i;:::-;23653:84;;23104:640;;;;;;;:::o;23750:141::-;23806:5;23837:6;23831:13;23822:22;;23853:32;23879:5;23853:32;:::i;:::-;23750:141;;;;:::o;23897:349::-;23966:6;24015:2;24003:9;23994:7;23990:23;23986:32;23983:119;;;24021:79;;:::i;:::-;23983:119;24141:1;24166:63;24221:7;24212:6;24201:9;24197:22;24166:63;:::i;:::-;24156:73;;24112:127;23897:349;;;;:::o

Swarm Source

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