ETH Price: $3,388.54 (-2.66%)
Gas: 1 Gwei

Token

Moon Apepes YC (MAPYC)
 

Overview

Max Total Supply

5,555 MAPYC

Holders

1,165

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 MAPYC
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:
MoonApepes

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// 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.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
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();

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

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

    /**
     * @dev 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 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.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard,
 * including the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at `_startTokenId()`
 * (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // 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 tokenId of the next token 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 => address) private _tokenApprovals;

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

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

    /**
     * @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 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 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 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 returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    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: 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.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view 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 {
        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;
    }

    /**
     * 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 ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

    /**
     * @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 See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

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

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

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

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _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 '';
    }

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _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 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 {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // `balance` 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 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

            _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 {
        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 Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function 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) = _getApprovedAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isOwnerOrApproved(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 `_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) = _getApprovedAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isOwnerOrApproved(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++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try 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))
                }
            }
        }
    }

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        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 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;
    }

    /**
     * @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 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 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 returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 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: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

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

// File: MoonApepes.sol


pragma solidity ^0.8.7;




contract MoonApepes is ERC721A, Ownable {
    uint256 MAX_SUPPLY = 5555;
    uint256 MAX_MINTS = 5;
    uint256 public mintRate = 0 ether;

    string public baseURI;

    constructor(string memory _baseUri) ERC721A("Moon Apepes YC", "MAPYC") {baseURI = _baseUri;}

    function mint(uint256 quantity) external payable {
        // _safeMint's second argument now takes in a quantity, not a tokenId.
        require(quantity + _numberMinted(msg.sender) <= MAX_MINTS, "Exceeded the limit");
        require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left");
        _safeMint(msg.sender, quantity);
        
        
    }
    function mintForteam(uint256 quantity) external payable onlyOwner {
        require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough tokens left");
        _safeMint(msg.sender, quantity);
    }


    function withdraw() external payable onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }

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

    function setMintRate(uint256 _mintRate) public onlyOwner {
        mintRate = _mintRate;
    }
    function setBaseURI(string calldata _base) public onlyOwner {
        baseURI = _base;
    }
}

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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintForteam","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"_base","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintRate","type":"uint256"}],"name":"setMintRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526115b36009556005600a556000600b553480156200002157600080fd5b5060405162002c2038038062002c2083398181016040528101906200004791906200033e565b6040518060400160405280600e81526020017f4d6f6f6e204170657065732059430000000000000000000000000000000000008152506040518060400160405280600581526020017f4d415059430000000000000000000000000000000000000000000000000000008152508160029080519060200190620000cb92919062000210565b508060039080519060200190620000e492919062000210565b50620000f56200013d60201b60201c565b60008190555050506200011d620001116200014260201b60201c565b6200014a60201b60201c565b80600c90805190602001906200013592919062000210565b505062000513565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200021e9062000424565b90600052602060002090601f0160209004810192826200024257600085556200028e565b82601f106200025d57805160ff19168380011785556200028e565b828001600101855582156200028e579182015b828111156200028d57825182559160200191906001019062000270565b5b5090506200029d9190620002a1565b5090565b5b80821115620002bc576000816000905550600101620002a2565b5090565b6000620002d7620002d184620003b8565b6200038f565b905082815260208101848484011115620002f657620002f5620004f3565b5b62000303848285620003ee565b509392505050565b600082601f830112620003235762000322620004ee565b5b815162000335848260208601620002c0565b91505092915050565b600060208284031215620003575762000356620004fd565b5b600082015167ffffffffffffffff811115620003785762000377620004f8565b5b62000386848285016200030b565b91505092915050565b60006200039b620003ae565b9050620003a982826200045a565b919050565b6000604051905090565b600067ffffffffffffffff821115620003d657620003d5620004bf565b5b620003e18262000502565b9050602081019050919050565b60005b838110156200040e578082015181840152602081019050620003f1565b838111156200041e576000848401525b50505050565b600060028204905060018216806200043d57607f821691505b6020821081141562000454576200045362000490565b5b50919050565b620004658262000502565b810181811067ffffffffffffffff82111715620004875762000486620004bf565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6126fd80620005236000396000f3fe60806040526004361061014b5760003560e01c806370a08231116100b6578063b88d4fde1161006f578063b88d4fde14610441578063c87b56dd1461046a578063ca0dcf16146104a7578063dbe2193f146104d2578063e985e9c5146104fb578063f2fde38b146105385761014b565b806370a0823114610352578063715018a61461038f5780638da5cb5b146103a657806395d89b41146103d1578063a0712d68146103fc578063a22cb465146104185761014b565b806323b872dd1161010857806323b872dd146102655780633ccfd60b1461028e57806342842e0e1461029857806355f804b3146102c15780636352211e146102ea5780636c0360eb146103275761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f557806318160ddd1461021e5780631d9b9efc14610249575b600080fd5b34801561015c57600080fd5b5061017760048036038101906101729190611f4a565b610561565b6040516101849190612205565b60405180910390f35b34801561019957600080fd5b506101a26105f3565b6040516101af9190612220565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da9190611ff1565b610685565b6040516101ec919061219e565b60405180910390f35b34801561020157600080fd5b5061021c60048036038101906102179190611f0a565b610701565b005b34801561022a57600080fd5b50610233610842565b60405161024091906122c2565b60405180910390f35b610263600480360381019061025e9190611ff1565b610859565b005b34801561027157600080fd5b5061028c60048036038101906102879190611df4565b6108c5565b005b610296610bea565b005b3480156102a457600080fd5b506102bf60048036038101906102ba9190611df4565b610c42565b005b3480156102cd57600080fd5b506102e860048036038101906102e39190611fa4565b610c62565b005b3480156102f657600080fd5b50610311600480360381019061030c9190611ff1565b610c80565b60405161031e919061219e565b60405180910390f35b34801561033357600080fd5b5061033c610c92565b6040516103499190612220565b60405180910390f35b34801561035e57600080fd5b5061037960048036038101906103749190611d87565b610d20565b60405161038691906122c2565b60405180910390f35b34801561039b57600080fd5b506103a4610dd9565b005b3480156103b257600080fd5b506103bb610ded565b6040516103c8919061219e565b60405180910390f35b3480156103dd57600080fd5b506103e6610e17565b6040516103f39190612220565b60405180910390f35b61041660048036038101906104119190611ff1565b610ea9565b005b34801561042457600080fd5b5061043f600480360381019061043a9190611eca565b610f65565b005b34801561044d57600080fd5b5061046860048036038101906104639190611e47565b6110dd565b005b34801561047657600080fd5b50610491600480360381019061048c9190611ff1565b611150565b60405161049e9190612220565b60405180910390f35b3480156104b357600080fd5b506104bc6111ef565b6040516104c991906122c2565b60405180910390f35b3480156104de57600080fd5b506104f960048036038101906104f49190611ff1565b6111f5565b005b34801561050757600080fd5b50610522600480360381019061051d9190611db4565b611207565b60405161052f9190612205565b60405180910390f35b34801561054457600080fd5b5061055f600480360381019061055a9190611d87565b61129b565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105bc57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105ec5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461060290612482565b80601f016020809104026020016040519081016040528092919081815260200182805461062e90612482565b801561067b5780601f106106505761010080835404028352916020019161067b565b820191906000526020600020905b81548152906001019060200180831161065e57829003601f168201915b5050505050905090565b60006106908261131f565b6106c6576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061070c82610c80565b90508073ffffffffffffffffffffffffffffffffffffffff1661072d61137e565b73ffffffffffffffffffffffffffffffffffffffff1614610790576107598161075461137e565b611207565b61078f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061084c611386565b6001546000540303905090565b61086161138b565b6009548161086d610842565b6108779190612376565b11156108b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108af90612282565b60405180910390fd5b6108c23382611409565b50565b60006108d082611427565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610937576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610943846114f5565b91509150610959818761095461137e565b611517565b6109a55761096e8661096961137e565b611207565b6109a4576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610a0c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a19868686600161155b565b8015610a2457600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610af285610ace888887611561565b7c020000000000000000000000000000000000000000000000000000000017611589565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610b7a576000600185019050600060046000838152602001908152602001600020541415610b78576000548114610b77578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610be286868660016115b4565b505050505050565b610bf261138b565b610bfa610ded565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c3f573d6000803e3d6000fd5b50565b610c5d838383604051806020016040528060008152506110dd565b505050565b610c6a61138b565b8181600c9190610c7b929190611bb5565b505050565b6000610c8b82611427565b9050919050565b600c8054610c9f90612482565b80601f0160208091040260200160405190810160405280929190818152602001828054610ccb90612482565b8015610d185780601f10610ced57610100808354040283529160200191610d18565b820191906000526020600020905b815481529060010190602001808311610cfb57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d88576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610de161138b565b610deb60006115ba565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610e2690612482565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5290612482565b8015610e9f5780601f10610e7457610100808354040283529160200191610e9f565b820191906000526020600020905b815481529060010190602001808311610e8257829003601f168201915b5050505050905090565b600a54610eb533611680565b82610ec09190612376565b1115610f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef890612262565b60405180910390fd5b60095481610f0d610842565b610f179190612376565b1115610f58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4f90612282565b60405180910390fd5b610f623382611409565b50565b610f6d61137e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fd2576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610fdf61137e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661108c61137e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110d19190612205565b60405180910390a35050565b6110e88484846108c5565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461114a57611113848484846116d7565b611149576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061115b8261131f565b611191576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061119b611837565b90506000815114156111bc57604051806020016040528060008152506111e7565b806111c6846118c9565b6040516020016111d792919061217a565b6040516020818303038152906040525b915050919050565b600b5481565b6111fd61138b565b80600b8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6112a361138b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611313576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130a90612242565b60405180910390fd5b61131c816115ba565b50565b60008161132a611386565b11158015611339575060005482105b8015611377575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b611393611923565b73ffffffffffffffffffffffffffffffffffffffff166113b1610ded565b73ffffffffffffffffffffffffffffffffffffffff1614611407576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fe906122a2565b60405180910390fd5b565b61142382826040518060200160405280600081525061192b565b5050565b60008082905080611436611386565b116114be576000548110156114bd5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156114bb575b60008114156114b1576004600083600190039350838152602001908152602001600020549050611486565b80925050506114f0565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86115788686846119c8565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026116fd61137e565b8786866040518563ffffffff1660e01b815260040161171f94939291906121b9565b602060405180830381600087803b15801561173957600080fd5b505af192505050801561176a57506040513d601f19601f820116820180604052508101906117679190611f77565b60015b6117e4573d806000811461179a576040519150601f19603f3d011682016040523d82523d6000602084013e61179f565b606091505b506000815114156117dc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c805461184690612482565b80601f016020809104026020016040519081016040528092919081815260200182805461187290612482565b80156118bf5780601f10611894576101008083540402835291602001916118bf565b820191906000526020600020905b8154815290600101906020018083116118a257829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561190f57600183039250600a81066030018353600a810490506118ef565b508181036020830392508083525050919050565b600033905090565b61193583836119d1565b60008373ffffffffffffffffffffffffffffffffffffffff163b146119c357600080549050600083820390505b61197560008683806001019450866116d7565b6119ab576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106119625781600054146119c057600080fd5b50505b505050565b60009392505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a3e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415611a79576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a86600084838561155b565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611afd83611aee6000866000611561565b611af785611ba5565b17611589565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611b2157806000819055505050611ba060008483856115b4565b505050565b60006001821460e11b9050919050565b828054611bc190612482565b90600052602060002090601f016020900481019282611be35760008555611c2a565b82601f10611bfc57803560ff1916838001178555611c2a565b82800160010185558215611c2a579182015b82811115611c29578235825591602001919060010190611c0e565b5b509050611c379190611c3b565b5090565b5b80821115611c54576000816000905550600101611c3c565b5090565b6000611c6b611c6684612302565b6122dd565b905082815260208101848484011115611c8757611c86612581565b5b611c92848285612440565b509392505050565b600081359050611ca98161266b565b92915050565b600081359050611cbe81612682565b92915050565b600081359050611cd381612699565b92915050565b600081519050611ce881612699565b92915050565b600082601f830112611d0357611d02612577565b5b8135611d13848260208601611c58565b91505092915050565b60008083601f840112611d3257611d31612577565b5b8235905067ffffffffffffffff811115611d4f57611d4e612572565b5b602083019150836001820283011115611d6b57611d6a61257c565b5b9250929050565b600081359050611d81816126b0565b92915050565b600060208284031215611d9d57611d9c61258b565b5b6000611dab84828501611c9a565b91505092915050565b60008060408385031215611dcb57611dca61258b565b5b6000611dd985828601611c9a565b9250506020611dea85828601611c9a565b9150509250929050565b600080600060608486031215611e0d57611e0c61258b565b5b6000611e1b86828701611c9a565b9350506020611e2c86828701611c9a565b9250506040611e3d86828701611d72565b9150509250925092565b60008060008060808587031215611e6157611e6061258b565b5b6000611e6f87828801611c9a565b9450506020611e8087828801611c9a565b9350506040611e9187828801611d72565b925050606085013567ffffffffffffffff811115611eb257611eb1612586565b5b611ebe87828801611cee565b91505092959194509250565b60008060408385031215611ee157611ee061258b565b5b6000611eef85828601611c9a565b9250506020611f0085828601611caf565b9150509250929050565b60008060408385031215611f2157611f2061258b565b5b6000611f2f85828601611c9a565b9250506020611f4085828601611d72565b9150509250929050565b600060208284031215611f6057611f5f61258b565b5b6000611f6e84828501611cc4565b91505092915050565b600060208284031215611f8d57611f8c61258b565b5b6000611f9b84828501611cd9565b91505092915050565b60008060208385031215611fbb57611fba61258b565b5b600083013567ffffffffffffffff811115611fd957611fd8612586565b5b611fe585828601611d1c565b92509250509250929050565b6000602082840312156120075761200661258b565b5b600061201584828501611d72565b91505092915050565b612027816123cc565b82525050565b612036816123de565b82525050565b600061204782612333565b6120518185612349565b935061206181856020860161244f565b61206a81612590565b840191505092915050565b60006120808261233e565b61208a818561235a565b935061209a81856020860161244f565b6120a381612590565b840191505092915050565b60006120b98261233e565b6120c3818561236b565b93506120d381856020860161244f565b80840191505092915050565b60006120ec60268361235a565b91506120f7826125a1565b604082019050919050565b600061210f60128361235a565b915061211a826125f0565b602082019050919050565b600061213260168361235a565b915061213d82612619565b602082019050919050565b600061215560208361235a565b915061216082612642565b602082019050919050565b61217481612436565b82525050565b600061218682856120ae565b915061219282846120ae565b91508190509392505050565b60006020820190506121b3600083018461201e565b92915050565b60006080820190506121ce600083018761201e565b6121db602083018661201e565b6121e8604083018561216b565b81810360608301526121fa818461203c565b905095945050505050565b600060208201905061221a600083018461202d565b92915050565b6000602082019050818103600083015261223a8184612075565b905092915050565b6000602082019050818103600083015261225b816120df565b9050919050565b6000602082019050818103600083015261227b81612102565b9050919050565b6000602082019050818103600083015261229b81612125565b9050919050565b600060208201905081810360008301526122bb81612148565b9050919050565b60006020820190506122d7600083018461216b565b92915050565b60006122e76122f8565b90506122f382826124b4565b919050565b6000604051905090565b600067ffffffffffffffff82111561231d5761231c612543565b5b61232682612590565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061238182612436565b915061238c83612436565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156123c1576123c06124e5565b5b828201905092915050565b60006123d782612416565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561246d578082015181840152602081019050612452565b8381111561247c576000848401525b50505050565b6000600282049050600182168061249a57607f821691505b602082108114156124ae576124ad612514565b5b50919050565b6124bd82612590565b810181811067ffffffffffffffff821117156124dc576124db612543565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f457863656564656420746865206c696d69740000000000000000000000000000600082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b612674816123cc565b811461267f57600080fd5b50565b61268b816123de565b811461269657600080fd5b50565b6126a2816123ea565b81146126ad57600080fd5b50565b6126b981612436565b81146126c457600080fd5b5056fea2646970667358221220d7d02567099184d2c5f40bb9b16919ed550129822be2be51a6ea6c0d82bccf2f64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d593569624257474839326f4a7076727441754e5748644448744c424264465567417a5a56615459684b356b6b2f00000000000000000000

Deployed Bytecode

0x60806040526004361061014b5760003560e01c806370a08231116100b6578063b88d4fde1161006f578063b88d4fde14610441578063c87b56dd1461046a578063ca0dcf16146104a7578063dbe2193f146104d2578063e985e9c5146104fb578063f2fde38b146105385761014b565b806370a0823114610352578063715018a61461038f5780638da5cb5b146103a657806395d89b41146103d1578063a0712d68146103fc578063a22cb465146104185761014b565b806323b872dd1161010857806323b872dd146102655780633ccfd60b1461028e57806342842e0e1461029857806355f804b3146102c15780636352211e146102ea5780636c0360eb146103275761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f557806318160ddd1461021e5780631d9b9efc14610249575b600080fd5b34801561015c57600080fd5b5061017760048036038101906101729190611f4a565b610561565b6040516101849190612205565b60405180910390f35b34801561019957600080fd5b506101a26105f3565b6040516101af9190612220565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da9190611ff1565b610685565b6040516101ec919061219e565b60405180910390f35b34801561020157600080fd5b5061021c60048036038101906102179190611f0a565b610701565b005b34801561022a57600080fd5b50610233610842565b60405161024091906122c2565b60405180910390f35b610263600480360381019061025e9190611ff1565b610859565b005b34801561027157600080fd5b5061028c60048036038101906102879190611df4565b6108c5565b005b610296610bea565b005b3480156102a457600080fd5b506102bf60048036038101906102ba9190611df4565b610c42565b005b3480156102cd57600080fd5b506102e860048036038101906102e39190611fa4565b610c62565b005b3480156102f657600080fd5b50610311600480360381019061030c9190611ff1565b610c80565b60405161031e919061219e565b60405180910390f35b34801561033357600080fd5b5061033c610c92565b6040516103499190612220565b60405180910390f35b34801561035e57600080fd5b5061037960048036038101906103749190611d87565b610d20565b60405161038691906122c2565b60405180910390f35b34801561039b57600080fd5b506103a4610dd9565b005b3480156103b257600080fd5b506103bb610ded565b6040516103c8919061219e565b60405180910390f35b3480156103dd57600080fd5b506103e6610e17565b6040516103f39190612220565b60405180910390f35b61041660048036038101906104119190611ff1565b610ea9565b005b34801561042457600080fd5b5061043f600480360381019061043a9190611eca565b610f65565b005b34801561044d57600080fd5b5061046860048036038101906104639190611e47565b6110dd565b005b34801561047657600080fd5b50610491600480360381019061048c9190611ff1565b611150565b60405161049e9190612220565b60405180910390f35b3480156104b357600080fd5b506104bc6111ef565b6040516104c991906122c2565b60405180910390f35b3480156104de57600080fd5b506104f960048036038101906104f49190611ff1565b6111f5565b005b34801561050757600080fd5b50610522600480360381019061051d9190611db4565b611207565b60405161052f9190612205565b60405180910390f35b34801561054457600080fd5b5061055f600480360381019061055a9190611d87565b61129b565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105bc57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105ec5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461060290612482565b80601f016020809104026020016040519081016040528092919081815260200182805461062e90612482565b801561067b5780601f106106505761010080835404028352916020019161067b565b820191906000526020600020905b81548152906001019060200180831161065e57829003601f168201915b5050505050905090565b60006106908261131f565b6106c6576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061070c82610c80565b90508073ffffffffffffffffffffffffffffffffffffffff1661072d61137e565b73ffffffffffffffffffffffffffffffffffffffff1614610790576107598161075461137e565b611207565b61078f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061084c611386565b6001546000540303905090565b61086161138b565b6009548161086d610842565b6108779190612376565b11156108b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108af90612282565b60405180910390fd5b6108c23382611409565b50565b60006108d082611427565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610937576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610943846114f5565b91509150610959818761095461137e565b611517565b6109a55761096e8661096961137e565b611207565b6109a4576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610a0c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a19868686600161155b565b8015610a2457600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610af285610ace888887611561565b7c020000000000000000000000000000000000000000000000000000000017611589565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610b7a576000600185019050600060046000838152602001908152602001600020541415610b78576000548114610b77578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610be286868660016115b4565b505050505050565b610bf261138b565b610bfa610ded565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c3f573d6000803e3d6000fd5b50565b610c5d838383604051806020016040528060008152506110dd565b505050565b610c6a61138b565b8181600c9190610c7b929190611bb5565b505050565b6000610c8b82611427565b9050919050565b600c8054610c9f90612482565b80601f0160208091040260200160405190810160405280929190818152602001828054610ccb90612482565b8015610d185780601f10610ced57610100808354040283529160200191610d18565b820191906000526020600020905b815481529060010190602001808311610cfb57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d88576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610de161138b565b610deb60006115ba565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610e2690612482565b80601f0160208091040260200160405190810160405280929190818152602001828054610e5290612482565b8015610e9f5780601f10610e7457610100808354040283529160200191610e9f565b820191906000526020600020905b815481529060010190602001808311610e8257829003601f168201915b5050505050905090565b600a54610eb533611680565b82610ec09190612376565b1115610f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef890612262565b60405180910390fd5b60095481610f0d610842565b610f179190612376565b1115610f58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4f90612282565b60405180910390fd5b610f623382611409565b50565b610f6d61137e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fd2576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000610fdf61137e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661108c61137e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110d19190612205565b60405180910390a35050565b6110e88484846108c5565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461114a57611113848484846116d7565b611149576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061115b8261131f565b611191576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061119b611837565b90506000815114156111bc57604051806020016040528060008152506111e7565b806111c6846118c9565b6040516020016111d792919061217a565b6040516020818303038152906040525b915050919050565b600b5481565b6111fd61138b565b80600b8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6112a361138b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611313576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130a90612242565b60405180910390fd5b61131c816115ba565b50565b60008161132a611386565b11158015611339575060005482105b8015611377575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b611393611923565b73ffffffffffffffffffffffffffffffffffffffff166113b1610ded565b73ffffffffffffffffffffffffffffffffffffffff1614611407576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fe906122a2565b60405180910390fd5b565b61142382826040518060200160405280600081525061192b565b5050565b60008082905080611436611386565b116114be576000548110156114bd5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156114bb575b60008114156114b1576004600083600190039350838152602001908152602001600020549050611486565b80925050506114f0565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86115788686846119c8565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026116fd61137e565b8786866040518563ffffffff1660e01b815260040161171f94939291906121b9565b602060405180830381600087803b15801561173957600080fd5b505af192505050801561176a57506040513d601f19601f820116820180604052508101906117679190611f77565b60015b6117e4573d806000811461179a576040519150601f19603f3d011682016040523d82523d6000602084013e61179f565b606091505b506000815114156117dc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c805461184690612482565b80601f016020809104026020016040519081016040528092919081815260200182805461187290612482565b80156118bf5780601f10611894576101008083540402835291602001916118bf565b820191906000526020600020905b8154815290600101906020018083116118a257829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561190f57600183039250600a81066030018353600a810490506118ef565b508181036020830392508083525050919050565b600033905090565b61193583836119d1565b60008373ffffffffffffffffffffffffffffffffffffffff163b146119c357600080549050600083820390505b61197560008683806001019450866116d7565b6119ab576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106119625781600054146119c057600080fd5b50505b505050565b60009392505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a3e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415611a79576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611a86600084838561155b565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611afd83611aee6000866000611561565b611af785611ba5565b17611589565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611b2157806000819055505050611ba060008483856115b4565b505050565b60006001821460e11b9050919050565b828054611bc190612482565b90600052602060002090601f016020900481019282611be35760008555611c2a565b82601f10611bfc57803560ff1916838001178555611c2a565b82800160010185558215611c2a579182015b82811115611c29578235825591602001919060010190611c0e565b5b509050611c379190611c3b565b5090565b5b80821115611c54576000816000905550600101611c3c565b5090565b6000611c6b611c6684612302565b6122dd565b905082815260208101848484011115611c8757611c86612581565b5b611c92848285612440565b509392505050565b600081359050611ca98161266b565b92915050565b600081359050611cbe81612682565b92915050565b600081359050611cd381612699565b92915050565b600081519050611ce881612699565b92915050565b600082601f830112611d0357611d02612577565b5b8135611d13848260208601611c58565b91505092915050565b60008083601f840112611d3257611d31612577565b5b8235905067ffffffffffffffff811115611d4f57611d4e612572565b5b602083019150836001820283011115611d6b57611d6a61257c565b5b9250929050565b600081359050611d81816126b0565b92915050565b600060208284031215611d9d57611d9c61258b565b5b6000611dab84828501611c9a565b91505092915050565b60008060408385031215611dcb57611dca61258b565b5b6000611dd985828601611c9a565b9250506020611dea85828601611c9a565b9150509250929050565b600080600060608486031215611e0d57611e0c61258b565b5b6000611e1b86828701611c9a565b9350506020611e2c86828701611c9a565b9250506040611e3d86828701611d72565b9150509250925092565b60008060008060808587031215611e6157611e6061258b565b5b6000611e6f87828801611c9a565b9450506020611e8087828801611c9a565b9350506040611e9187828801611d72565b925050606085013567ffffffffffffffff811115611eb257611eb1612586565b5b611ebe87828801611cee565b91505092959194509250565b60008060408385031215611ee157611ee061258b565b5b6000611eef85828601611c9a565b9250506020611f0085828601611caf565b9150509250929050565b60008060408385031215611f2157611f2061258b565b5b6000611f2f85828601611c9a565b9250506020611f4085828601611d72565b9150509250929050565b600060208284031215611f6057611f5f61258b565b5b6000611f6e84828501611cc4565b91505092915050565b600060208284031215611f8d57611f8c61258b565b5b6000611f9b84828501611cd9565b91505092915050565b60008060208385031215611fbb57611fba61258b565b5b600083013567ffffffffffffffff811115611fd957611fd8612586565b5b611fe585828601611d1c565b92509250509250929050565b6000602082840312156120075761200661258b565b5b600061201584828501611d72565b91505092915050565b612027816123cc565b82525050565b612036816123de565b82525050565b600061204782612333565b6120518185612349565b935061206181856020860161244f565b61206a81612590565b840191505092915050565b60006120808261233e565b61208a818561235a565b935061209a81856020860161244f565b6120a381612590565b840191505092915050565b60006120b98261233e565b6120c3818561236b565b93506120d381856020860161244f565b80840191505092915050565b60006120ec60268361235a565b91506120f7826125a1565b604082019050919050565b600061210f60128361235a565b915061211a826125f0565b602082019050919050565b600061213260168361235a565b915061213d82612619565b602082019050919050565b600061215560208361235a565b915061216082612642565b602082019050919050565b61217481612436565b82525050565b600061218682856120ae565b915061219282846120ae565b91508190509392505050565b60006020820190506121b3600083018461201e565b92915050565b60006080820190506121ce600083018761201e565b6121db602083018661201e565b6121e8604083018561216b565b81810360608301526121fa818461203c565b905095945050505050565b600060208201905061221a600083018461202d565b92915050565b6000602082019050818103600083015261223a8184612075565b905092915050565b6000602082019050818103600083015261225b816120df565b9050919050565b6000602082019050818103600083015261227b81612102565b9050919050565b6000602082019050818103600083015261229b81612125565b9050919050565b600060208201905081810360008301526122bb81612148565b9050919050565b60006020820190506122d7600083018461216b565b92915050565b60006122e76122f8565b90506122f382826124b4565b919050565b6000604051905090565b600067ffffffffffffffff82111561231d5761231c612543565b5b61232682612590565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061238182612436565b915061238c83612436565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156123c1576123c06124e5565b5b828201905092915050565b60006123d782612416565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561246d578082015181840152602081019050612452565b8381111561247c576000848401525b50505050565b6000600282049050600182168061249a57607f821691505b602082108114156124ae576124ad612514565b5b50919050565b6124bd82612590565b810181811067ffffffffffffffff821117156124dc576124db612543565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f457863656564656420746865206c696d69740000000000000000000000000000600082015250565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b612674816123cc565b811461267f57600080fd5b50565b61268b816123de565b811461269657600080fd5b50565b6126a2816123ea565b81146126ad57600080fd5b50565b6126b981612436565b81146126c457600080fd5b5056fea2646970667358221220d7d02567099184d2c5f40bb9b16919ed550129822be2be51a6ea6c0d82bccf2f64736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d593569624257474839326f4a7076727441754e5748644448744c424264465567417a5a56615459684b356b6b2f00000000000000000000

-----Decoded View---------------
Arg [0] : _baseUri (string): ipfs://QmY5ibBWGH92oJpvrtAuNWHdDHtLBBdFUgAzZVaTYhK5kk/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d593569624257474839326f4a7076727441754e57486444
Arg [3] : 48744c424264465567417a5a56615459684b356b6b2f00000000000000000000


Deployed Bytecode Sourcemap

48412:1298:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18218:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23865:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25811:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25359:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17272:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49071:200;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35076:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49281:114;;;:::i;:::-;;26701:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49613:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23654:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48561:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18897:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2809:103;;;;;;;;;;;;;:::i;:::-;;2161:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24034:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48691:374;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26087:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26957:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24209:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48519:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49511:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26466:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3067:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18218:615;18303:4;18618:10;18603:25;;:11;:25;;;;:102;;;;18695:10;18680:25;;:11;:25;;;;18603:102;:179;;;;18772:10;18757:25;;:11;:25;;;;18603:179;18583:199;;18218:615;;;:::o;23865:100::-;23919:13;23952:5;23945:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23865:100;:::o;25811:204::-;25879:7;25904:16;25912:7;25904;:16::i;:::-;25899:64;;25929:34;;;;;;;;;;;;;;25899:64;25983:15;:24;25999:7;25983:24;;;;;;;;;;;;;;;;;;;;;25976:31;;25811:204;;;:::o;25359:386::-;25432:13;25448:16;25456:7;25448;:16::i;:::-;25432:32;;25504:5;25481:28;;:19;:17;:19::i;:::-;:28;;;25477:175;;25529:44;25546:5;25553:19;:17;:19::i;:::-;25529:16;:44::i;:::-;25524:128;;25601:35;;;;;;;;;;;;;;25524:128;25477:175;25691:2;25664:15;:24;25680:7;25664:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;25729:7;25725:2;25709:28;;25718:5;25709:28;;;;;;;;;;;;25421:324;25359:386;;:::o;17272:315::-;17325:7;17553:15;:13;:15::i;:::-;17538:12;;17522:13;;:28;:46;17515:53;;17272:315;:::o;49071:200::-;2047:13;:11;:13::i;:::-;49184:10:::1;;49172:8;49156:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;49148:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;49232:31;49242:10;49254:8;49232:9;:31::i;:::-;49071:200:::0;:::o;35076:2800::-;35210:27;35240;35259:7;35240:18;:27::i;:::-;35210:57;;35325:4;35284:45;;35300:19;35284:45;;;35280:86;;35338:28;;;;;;;;;;;;;;35280:86;35380:27;35409:23;35436:28;35456:7;35436:19;:28::i;:::-;35379:85;;;;35564:62;35583:15;35600:4;35606:19;:17;:19::i;:::-;35564:18;:62::i;:::-;35559:174;;35646:43;35663:4;35669:19;:17;:19::i;:::-;35646:16;:43::i;:::-;35641:92;;35698:35;;;;;;;;;;;;;;35641:92;35559:174;35764:1;35750:16;;:2;:16;;;35746:52;;;35775:23;;;;;;;;;;;;;;35746:52;35811:43;35833:4;35839:2;35843:7;35852:1;35811:21;:43::i;:::-;35947:15;35944:160;;;36087:1;36066:19;36059:30;35944:160;36482:18;:24;36501:4;36482:24;;;;;;;;;;;;;;;;36480:26;;;;;;;;;;;;36551:18;:22;36570:2;36551:22;;;;;;;;;;;;;;;;36549:24;;;;;;;;;;;36873:145;36910:2;36958:45;36973:4;36979:2;36983:19;36958:14;:45::i;:::-;14500:8;36931:72;36873:18;:145::i;:::-;36844:17;:26;36862:7;36844:26;;;;;;;;;;;:174;;;;37188:1;14500:8;37138:19;:46;:51;37134:626;;;37210:19;37242:1;37232:7;:11;37210:33;;37399:1;37365:17;:30;37383:11;37365:30;;;;;;;;;;;;:35;37361:384;;;37503:13;;37488:11;:28;37484:242;;37683:19;37650:17;:30;37668:11;37650:30;;;;;;;;;;;:52;;;;37484:242;37361:384;37191:569;37134:626;37807:7;37803:2;37788:27;;37797:4;37788:27;;;;;;;;;;;;37826:42;37847:4;37853:2;37857:7;37866:1;37826:20;:42::i;:::-;35199:2677;;;35076:2800;;;:::o;49281:114::-;2047:13;:11;:13::i;:::-;49347:7:::1;:5;:7::i;:::-;49339:25;;:48;49365:21;49339:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;49281:114::o:0;26701:185::-;26839:39;26856:4;26862:2;26866:7;26839:39;;;;;;;;;;;;:16;:39::i;:::-;26701:185;;;:::o;49613:94::-;2047:13;:11;:13::i;:::-;49694:5:::1;;49684:7;:15;;;;;;;:::i;:::-;;49613:94:::0;;:::o;23654:144::-;23718:7;23761:27;23780:7;23761:18;:27::i;:::-;23738:52;;23654:144;;;:::o;48561:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;18897:224::-;18961:7;19002:1;18985:19;;:5;:19;;;18981:60;;;19013:28;;;;;;;;;;;;;;18981:60;13452:13;19059:18;:25;19078:5;19059:25;;;;;;;;;;;;;;;;:54;19052:61;;18897:224;;;:::o;2809:103::-;2047:13;:11;:13::i;:::-;2874:30:::1;2901:1;2874:18;:30::i;:::-;2809:103::o:0;2161:87::-;2207:7;2234:6;;;;;;;;;;;2227:13;;2161:87;:::o;24034:104::-;24090:13;24123:7;24116:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24034:104;:::o;48691:374::-;48879:9;;48850:25;48864:10;48850:13;:25::i;:::-;48839:8;:36;;;;:::i;:::-;:49;;48831:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;48958:10;;48946:8;48930:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;48922:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;49006:31;49016:10;49028:8;49006:9;:31::i;:::-;48691:374;:::o;26087:308::-;26198:19;:17;:19::i;:::-;26186:31;;:8;:31;;;26182:61;;;26226:17;;;;;;;;;;;;;;26182:61;26308:8;26256:18;:39;26275:19;:17;:19::i;:::-;26256:39;;;;;;;;;;;;;;;:49;26296:8;26256:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26368:8;26332:55;;26347:19;:17;:19::i;:::-;26332:55;;;26378:8;26332:55;;;;;;:::i;:::-;;;;;;;;26087:308;;:::o;26957:399::-;27124:31;27137:4;27143:2;27147:7;27124:12;:31::i;:::-;27188:1;27170:2;:14;;;:19;27166:183;;27209:56;27240:4;27246:2;27250:7;27259:5;27209:30;:56::i;:::-;27204:145;;27293:40;;;;;;;;;;;;;;27204:145;27166:183;26957:399;;;;:::o;24209:318::-;24282:13;24313:16;24321:7;24313;:16::i;:::-;24308:59;;24338:29;;;;;;;;;;;;;;24308:59;24380:21;24404:10;:8;:10::i;:::-;24380:34;;24457:1;24438:7;24432:21;:26;;:87;;;;;;;;;;;;;;;;;24485:7;24494:18;24504:7;24494:9;:18::i;:::-;24468:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24432:87;24425:94;;;24209:318;;;:::o;48519:33::-;;;;:::o;49511:96::-;2047:13;:11;:13::i;:::-;49590:9:::1;49579:8;:20;;;;49511:96:::0;:::o;26466:164::-;26563:4;26587:18;:25;26606:5;26587:25;;;;;;;;;;;;;;;:35;26613:8;26587:35;;;;;;;;;;;;;;;;;;;;;;;;;26580:42;;26466:164;;;;:::o;3067:201::-;2047:13;:11;:13::i;:::-;3176:1:::1;3156:22;;:8;:22;;;;3148:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3232:28;3251:8;3232:18;:28::i;:::-;3067:201:::0;:::o;27611:273::-;27668:4;27724:7;27705:15;:13;:15::i;:::-;:26;;:66;;;;;27758:13;;27748:7;:23;27705:66;:152;;;;;27856:1;14222:8;27809:17;:26;27827:7;27809:26;;;;;;;;;;;;:43;:48;27705:152;27685:172;;27611:273;;;:::o;46172:105::-;46232:7;46259:10;46252:17;;46172:105;:::o;16796:92::-;16852:7;16796:92;:::o;2326:132::-;2401:12;:10;:12::i;:::-;2390:23;;:7;:5;:7::i;:::-;:23;;;2382:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2326:132::o;27968:104::-;28037:27;28047:2;28051:8;28037:27;;;;;;;;;;;;:9;:27::i;:::-;27968:104;;:::o;20571:1129::-;20638:7;20658:12;20673:7;20658:22;;20741:4;20722:15;:13;:15::i;:::-;:23;20718:915;;20775:13;;20768:4;:20;20764:869;;;20813:14;20830:17;:23;20848:4;20830:23;;;;;;;;;;;;20813:40;;20946:1;14222:8;20919:6;:23;:28;20915:699;;;21438:113;21455:1;21445:6;:11;21438:113;;;21498:17;:25;21516:6;;;;;;;21498:25;;;;;;;;;;;;21489:34;;21438:113;;;21584:6;21577:13;;;;;;20915:699;20790:843;20764:869;20718:915;21661:31;;;;;;;;;;;;;;20571:1129;;;;:::o;33412:652::-;33507:27;33536:23;33577:53;33633:15;33577:71;;33819:7;33813:4;33806:21;33854:22;33848:4;33841:36;33930:4;33924;33914:21;33891:44;;34026:19;34020:26;34001:45;;33757:300;33412:652;;;:::o;34177:645::-;34319:11;34481:15;34475:4;34471:26;34463:34;;34640:15;34629:9;34625:31;34612:44;;34787:15;34776:9;34773:30;34766:4;34755:9;34752:19;34749:55;34739:65;;34177:645;;;;;:::o;45005:159::-;;;;;:::o;43317:309::-;43452:7;43472:16;14623:3;43498:19;:40;;43472:67;;14623:3;43565:31;43576:4;43582:2;43586:9;43565:10;:31::i;:::-;43557:40;;:61;;43550:68;;;43317:309;;;;;:::o;23145:447::-;23225:14;23393:15;23386:5;23382:27;23373:36;;23567:5;23553:11;23529:22;23525:40;23522:51;23515:5;23512:62;23502:72;;23145:447;;;;:::o;45823:158::-;;;;;:::o;3428:191::-;3502:16;3521:6;;;;;;;;;;;3502:25;;3547:8;3538:6;;:17;;;;;;;;;;;;;;;;;;3602:8;3571:40;;3592:8;3571:40;;;;;;;;;;;;3491:128;3428:191;:::o;19203:176::-;19264:7;13452:13;13589:2;19292:18;:25;19311:5;19292:25;;;;;;;;;;;;;;;;:49;;19291:80;19284:87;;19203:176;;;:::o;41827:716::-;41990:4;42036:2;42011:45;;;42057:19;:17;:19::i;:::-;42078:4;42084:7;42093:5;42011:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;42007:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42311:1;42294:6;:13;:18;42290:235;;;42340:40;;;;;;;;;;;;;;42290:235;42483:6;42477:13;42468:6;42464:2;42460:15;42453:38;42007:529;42180:54;;;42170:64;;;:6;:64;;;;42163:71;;;41827:716;;;;;;:::o;49403:100::-;49455:13;49488:7;49481:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49403:100;:::o;46383:1960::-;46440:17;46859:3;46852:4;46846:11;46842:21;46835:28;;46950:3;46944:4;46937:17;47056:3;47512:5;47642:1;47637:3;47633:11;47626:18;;47779:2;47773:4;47769:13;47765:2;47761:22;47756:3;47748:36;47820:2;47814:4;47810:13;47802:21;;47404:697;47839:4;47404:697;;;48030:1;48025:3;48021:11;48014:18;;48081:2;48075:4;48071:13;48067:2;48063:22;48058:3;48050:36;47934:2;47928:4;47924:13;47916:21;;47404:697;;;47408:430;48140:3;48135;48131:13;48255:2;48250:3;48246:12;48239:19;;48318:6;48313:3;48306:19;46479:1857;;46383:1960;;;:::o;712:98::-;765:7;792:10;785:17;;712:98;:::o;28488:681::-;28611:19;28617:2;28621:8;28611:5;:19::i;:::-;28690:1;28672:2;:14;;;:19;28668:483;;28712:11;28726:13;;28712:27;;28758:13;28780:8;28774:3;:14;28758:30;;28807:233;28838:62;28877:1;28881:2;28885:7;;;;;;28894:5;28838:30;:62::i;:::-;28833:167;;28936:40;;;;;;;;;;;;;;28833:167;29035:3;29027:5;:11;28807:233;;29122:3;29105:13;;:20;29101:34;;29127:8;;;29101:34;28693:458;;28668:483;28488:681;;;:::o;44202:147::-;44339:6;44202:147;;;;;:::o;29442:1529::-;29507:20;29530:13;;29507:36;;29572:1;29558:16;;:2;:16;;;29554:48;;;29583:19;;;;;;;;;;;;;;29554:48;29629:1;29617:8;:13;29613:44;;;29639:18;;;;;;;;;;;;;;29613:44;29670:61;29700:1;29704:2;29708:12;29722:8;29670:21;:61::i;:::-;30213:1;13589:2;30184:1;:25;;30183:31;30171:8;:44;30145:18;:22;30164:2;30145:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;30492:139;30529:2;30583:33;30606:1;30610:2;30614:1;30583:14;:33::i;:::-;30550:30;30571:8;30550:20;:30::i;:::-;:66;30492:18;:139::i;:::-;30458:17;:31;30476:12;30458:31;;;;;;;;;;;:173;;;;30648:15;30666:12;30648:30;;30693:11;30722:8;30707:12;:23;30693:37;;30745:101;30797:9;;;;;;30793:2;30772:35;;30789:1;30772:35;;;;;;;;;;;;30841:3;30831:7;:13;30745:101;;30878:3;30862:13;:19;;;;29919:974;;30903:60;30932:1;30936:2;30940:12;30954:8;30903:20;:60::i;:::-;29496:1475;29442:1529;;:::o;24975:322::-;25045:14;25276:1;25266:8;25263:15;25238:23;25234:45;25224:55;;24975:322;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:329::-;2131:6;2180:2;2168:9;2159:7;2155:23;2151:32;2148:119;;;2186:79;;:::i;:::-;2148:119;2306:1;2331:53;2376:7;2367:6;2356:9;2352:22;2331:53;:::i;:::-;2321:63;;2277:117;2072:329;;;;:::o;2407:474::-;2475:6;2483;2532:2;2520:9;2511:7;2507:23;2503:32;2500:119;;;2538:79;;:::i;:::-;2500:119;2658:1;2683:53;2728:7;2719:6;2708:9;2704:22;2683:53;:::i;:::-;2673:63;;2629:117;2785:2;2811:53;2856:7;2847:6;2836:9;2832:22;2811:53;:::i;:::-;2801:63;;2756:118;2407:474;;;;;:::o;2887:619::-;2964:6;2972;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;3410:2;3436:53;3481:7;3472:6;3461:9;3457:22;3436:53;:::i;:::-;3426:63;;3381:118;2887:619;;;;;:::o;3512:943::-;3607:6;3615;3623;3631;3680:3;3668:9;3659:7;3655:23;3651:33;3648:120;;;3687:79;;:::i;:::-;3648:120;3807:1;3832:53;3877:7;3868:6;3857:9;3853:22;3832:53;:::i;:::-;3822:63;;3778:117;3934:2;3960:53;4005:7;3996:6;3985:9;3981:22;3960:53;:::i;:::-;3950:63;;3905:118;4062:2;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4033:118;4218:2;4207:9;4203:18;4190:32;4249:18;4241:6;4238:30;4235:117;;;4271:79;;:::i;:::-;4235:117;4376:62;4430:7;4421:6;4410:9;4406:22;4376:62;:::i;:::-;4366:72;;4161:287;3512:943;;;;;;;:::o;4461:468::-;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:50;4904:7;4895:6;4884:9;4880:22;4862:50;:::i;:::-;4852:60;;4807:115;4461:468;;;;;:::o;4935:474::-;5003:6;5011;5060:2;5048:9;5039:7;5035:23;5031:32;5028:119;;;5066:79;;:::i;:::-;5028:119;5186:1;5211:53;5256:7;5247:6;5236:9;5232:22;5211:53;:::i;:::-;5201:63;;5157:117;5313:2;5339:53;5384:7;5375:6;5364:9;5360:22;5339:53;:::i;:::-;5329:63;;5284:118;4935:474;;;;;:::o;5415:327::-;5473:6;5522:2;5510:9;5501:7;5497:23;5493:32;5490:119;;;5528:79;;:::i;:::-;5490:119;5648:1;5673:52;5717:7;5708:6;5697:9;5693:22;5673:52;:::i;:::-;5663:62;;5619:116;5415:327;;;;:::o;5748:349::-;5817:6;5866:2;5854:9;5845:7;5841:23;5837:32;5834:119;;;5872:79;;:::i;:::-;5834:119;5992:1;6017:63;6072:7;6063:6;6052:9;6048:22;6017:63;:::i;:::-;6007:73;;5963:127;5748:349;;;;:::o;6103:529::-;6174:6;6182;6231:2;6219:9;6210:7;6206:23;6202:32;6199:119;;;6237:79;;:::i;:::-;6199:119;6385:1;6374:9;6370:17;6357:31;6415:18;6407:6;6404:30;6401:117;;;6437:79;;:::i;:::-;6401:117;6550:65;6607:7;6598:6;6587:9;6583:22;6550:65;:::i;:::-;6532:83;;;;6328:297;6103:529;;;;;:::o;6638:329::-;6697:6;6746:2;6734:9;6725:7;6721:23;6717:32;6714:119;;;6752:79;;:::i;:::-;6714:119;6872:1;6897:53;6942:7;6933:6;6922:9;6918:22;6897:53;:::i;:::-;6887:63;;6843:117;6638:329;;;;:::o;6973:118::-;7060:24;7078:5;7060:24;:::i;:::-;7055:3;7048:37;6973:118;;:::o;7097:109::-;7178:21;7193:5;7178:21;:::i;:::-;7173:3;7166:34;7097:109;;:::o;7212:360::-;7298:3;7326:38;7358:5;7326:38;:::i;:::-;7380:70;7443:6;7438:3;7380:70;:::i;:::-;7373:77;;7459:52;7504:6;7499:3;7492:4;7485:5;7481:16;7459:52;:::i;:::-;7536:29;7558:6;7536:29;:::i;:::-;7531:3;7527:39;7520:46;;7302:270;7212:360;;;;:::o;7578:364::-;7666:3;7694:39;7727:5;7694:39;:::i;:::-;7749:71;7813:6;7808:3;7749:71;:::i;:::-;7742:78;;7829:52;7874:6;7869:3;7862:4;7855:5;7851:16;7829:52;:::i;:::-;7906:29;7928:6;7906:29;:::i;:::-;7901:3;7897:39;7890:46;;7670:272;7578:364;;;;:::o;7948:377::-;8054:3;8082:39;8115:5;8082:39;:::i;:::-;8137:89;8219:6;8214:3;8137:89;:::i;:::-;8130:96;;8235:52;8280:6;8275:3;8268:4;8261:5;8257:16;8235:52;:::i;:::-;8312:6;8307:3;8303:16;8296:23;;8058:267;7948:377;;;;:::o;8331:366::-;8473:3;8494:67;8558:2;8553:3;8494:67;:::i;:::-;8487:74;;8570:93;8659:3;8570:93;:::i;:::-;8688:2;8683:3;8679:12;8672:19;;8331:366;;;:::o;8703:::-;8845:3;8866:67;8930:2;8925:3;8866:67;:::i;:::-;8859:74;;8942:93;9031:3;8942:93;:::i;:::-;9060:2;9055:3;9051:12;9044:19;;8703:366;;;:::o;9075:::-;9217:3;9238:67;9302:2;9297:3;9238:67;:::i;:::-;9231:74;;9314:93;9403:3;9314:93;:::i;:::-;9432:2;9427:3;9423:12;9416:19;;9075:366;;;:::o;9447:::-;9589:3;9610:67;9674:2;9669:3;9610:67;:::i;:::-;9603:74;;9686:93;9775:3;9686:93;:::i;:::-;9804:2;9799:3;9795:12;9788:19;;9447:366;;;:::o;9819:118::-;9906:24;9924:5;9906:24;:::i;:::-;9901:3;9894:37;9819:118;;:::o;9943:435::-;10123:3;10145:95;10236:3;10227:6;10145:95;:::i;:::-;10138:102;;10257:95;10348:3;10339:6;10257:95;:::i;:::-;10250:102;;10369:3;10362:10;;9943:435;;;;;:::o;10384:222::-;10477:4;10515:2;10504:9;10500:18;10492:26;;10528:71;10596:1;10585:9;10581:17;10572:6;10528:71;:::i;:::-;10384:222;;;;:::o;10612:640::-;10807:4;10845:3;10834:9;10830:19;10822:27;;10859:71;10927:1;10916:9;10912:17;10903:6;10859:71;:::i;:::-;10940:72;11008:2;10997:9;10993:18;10984:6;10940:72;:::i;:::-;11022;11090:2;11079:9;11075:18;11066:6;11022:72;:::i;:::-;11141:9;11135:4;11131:20;11126:2;11115:9;11111:18;11104:48;11169:76;11240:4;11231:6;11169:76;:::i;:::-;11161:84;;10612:640;;;;;;;:::o;11258:210::-;11345:4;11383:2;11372:9;11368:18;11360:26;;11396:65;11458:1;11447:9;11443:17;11434:6;11396:65;:::i;:::-;11258:210;;;;:::o;11474:313::-;11587:4;11625:2;11614:9;11610:18;11602:26;;11674:9;11668:4;11664:20;11660:1;11649:9;11645:17;11638:47;11702:78;11775:4;11766:6;11702:78;:::i;:::-;11694:86;;11474:313;;;;:::o;11793:419::-;11959:4;11997:2;11986:9;11982:18;11974:26;;12046:9;12040:4;12036:20;12032:1;12021:9;12017:17;12010:47;12074:131;12200:4;12074:131;:::i;:::-;12066:139;;11793:419;;;:::o;12218:::-;12384:4;12422:2;12411:9;12407:18;12399:26;;12471:9;12465:4;12461:20;12457:1;12446:9;12442:17;12435:47;12499:131;12625:4;12499:131;:::i;:::-;12491:139;;12218:419;;;:::o;12643:::-;12809:4;12847:2;12836:9;12832:18;12824:26;;12896:9;12890:4;12886:20;12882:1;12871:9;12867:17;12860:47;12924:131;13050:4;12924:131;:::i;:::-;12916:139;;12643:419;;;:::o;13068:::-;13234:4;13272:2;13261:9;13257:18;13249:26;;13321:9;13315:4;13311:20;13307:1;13296:9;13292:17;13285:47;13349:131;13475:4;13349:131;:::i;:::-;13341:139;;13068:419;;;:::o;13493:222::-;13586:4;13624:2;13613:9;13609:18;13601:26;;13637:71;13705:1;13694:9;13690:17;13681:6;13637:71;:::i;:::-;13493:222;;;;:::o;13721:129::-;13755:6;13782:20;;:::i;:::-;13772:30;;13811:33;13839:4;13831:6;13811:33;:::i;:::-;13721:129;;;:::o;13856:75::-;13889:6;13922:2;13916:9;13906:19;;13856:75;:::o;13937:307::-;13998:4;14088:18;14080:6;14077:30;14074:56;;;14110:18;;:::i;:::-;14074:56;14148:29;14170:6;14148:29;:::i;:::-;14140:37;;14232:4;14226;14222:15;14214:23;;13937:307;;;:::o;14250:98::-;14301:6;14335:5;14329:12;14319:22;;14250:98;;;:::o;14354:99::-;14406:6;14440:5;14434:12;14424:22;;14354:99;;;:::o;14459:168::-;14542:11;14576:6;14571:3;14564:19;14616:4;14611:3;14607:14;14592:29;;14459:168;;;;:::o;14633:169::-;14717:11;14751:6;14746:3;14739:19;14791:4;14786:3;14782:14;14767:29;;14633:169;;;;:::o;14808:148::-;14910:11;14947:3;14932:18;;14808:148;;;;:::o;14962:305::-;15002:3;15021:20;15039:1;15021:20;:::i;:::-;15016:25;;15055:20;15073:1;15055:20;:::i;:::-;15050:25;;15209:1;15141:66;15137:74;15134:1;15131:81;15128:107;;;15215:18;;:::i;:::-;15128:107;15259:1;15256;15252:9;15245:16;;14962:305;;;;:::o;15273:96::-;15310:7;15339:24;15357:5;15339:24;:::i;:::-;15328:35;;15273:96;;;:::o;15375:90::-;15409:7;15452:5;15445:13;15438:21;15427:32;;15375:90;;;:::o;15471:149::-;15507:7;15547:66;15540:5;15536:78;15525:89;;15471:149;;;:::o;15626:126::-;15663:7;15703:42;15696:5;15692:54;15681:65;;15626:126;;;:::o;15758:77::-;15795:7;15824:5;15813:16;;15758:77;;;:::o;15841:154::-;15925:6;15920:3;15915;15902:30;15987:1;15978:6;15973:3;15969:16;15962:27;15841:154;;;:::o;16001:307::-;16069:1;16079:113;16093:6;16090:1;16087:13;16079:113;;;16178:1;16173:3;16169:11;16163:18;16159:1;16154:3;16150:11;16143:39;16115:2;16112:1;16108:10;16103:15;;16079:113;;;16210:6;16207:1;16204:13;16201:101;;;16290:1;16281:6;16276:3;16272:16;16265:27;16201:101;16050:258;16001:307;;;:::o;16314:320::-;16358:6;16395:1;16389:4;16385:12;16375:22;;16442:1;16436:4;16432:12;16463:18;16453:81;;16519:4;16511:6;16507:17;16497:27;;16453:81;16581:2;16573:6;16570:14;16550:18;16547:38;16544:84;;;16600:18;;:::i;:::-;16544:84;16365:269;16314:320;;;:::o;16640:281::-;16723:27;16745:4;16723:27;:::i;:::-;16715:6;16711:40;16853:6;16841:10;16838:22;16817:18;16805:10;16802:34;16799:62;16796:88;;;16864:18;;:::i;:::-;16796:88;16904:10;16900:2;16893:22;16683:238;16640:281;;:::o;16927:180::-;16975:77;16972:1;16965:88;17072:4;17069:1;17062:15;17096:4;17093:1;17086:15;17113:180;17161:77;17158:1;17151:88;17258:4;17255:1;17248:15;17282:4;17279:1;17272:15;17299:180;17347:77;17344:1;17337:88;17444:4;17441:1;17434:15;17468:4;17465:1;17458:15;17485:117;17594:1;17591;17584:12;17608:117;17717:1;17714;17707:12;17731:117;17840:1;17837;17830:12;17854:117;17963:1;17960;17953:12;17977:117;18086:1;18083;18076:12;18100:117;18209:1;18206;18199:12;18223:102;18264:6;18315:2;18311:7;18306:2;18299:5;18295:14;18291:28;18281:38;;18223:102;;;:::o;18331:225::-;18471:34;18467:1;18459:6;18455:14;18448:58;18540:8;18535:2;18527:6;18523:15;18516:33;18331:225;:::o;18562:168::-;18702:20;18698:1;18690:6;18686:14;18679:44;18562:168;:::o;18736:172::-;18876:24;18872:1;18864:6;18860:14;18853:48;18736:172;:::o;18914:182::-;19054:34;19050:1;19042:6;19038:14;19031:58;18914:182;:::o;19102:122::-;19175:24;19193:5;19175:24;:::i;:::-;19168:5;19165:35;19155:63;;19214:1;19211;19204:12;19155:63;19102:122;:::o;19230:116::-;19300:21;19315:5;19300:21;:::i;:::-;19293:5;19290:32;19280:60;;19336:1;19333;19326:12;19280:60;19230:116;:::o;19352:120::-;19424:23;19441:5;19424:23;:::i;:::-;19417:5;19414:34;19404:62;;19462:1;19459;19452:12;19404:62;19352:120;:::o;19478:122::-;19551:24;19569:5;19551:24;:::i;:::-;19544:5;19541:35;19531:63;;19590:1;19587;19580:12;19531:63;19478:122;:::o

Swarm Source

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