ETH Price: $2,407.75 (+1.50%)

Token

My Crayon Friends (CRYN)
 

Overview

Max Total Supply

1,120 CRYN

Holders

119

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
lesterholy.eth
Balance
1 CRYN
0x02ecf5c17711dbe6d18b0cddb1a4c9882f8431f8
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:
MyCrayonFriends

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-29
*/

// 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 v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: 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: MyCrayonFriends.sol



pragma solidity ^0.8.4;



error ContractNotAllowed();
error SaleEnded();
error ZeroAmount();
error ExceededMaxPerWallet();
error NotEnoughETH();

contract MyCrayonFriends is ERC721A, Ownable {

    uint256 public constant MAX_SUPPLY = 3333;
    uint256 public constant MAX_FREE = 1111;
    uint256 public constant MAX_PER_WALLET = 10;
    uint256 public constant MINT_PRICE = 0.005 ether;

    string public baseURI;

    constructor() ERC721A("My Crayon Friends", "CRYN") {
        baseURI = "ipfs://bafybeihitfdvcynep2zdm7psybqpgmvdi3lrulafekqtd4pofpf3avqvby/";
    }

    /******************** PUBLIC ********************/

    function mint(uint256 amount) external payable {
        if (msg.sender != tx.origin) revert ContractNotAllowed();
        if (_totalMinted() + amount > MAX_SUPPLY) revert SaleEnded();
        if (amount == 0) revert ZeroAmount();
        if (amount + _numberMinted(msg.sender) > MAX_PER_WALLET) revert ExceededMaxPerWallet();
        if (_totalMinted() >= MAX_FREE && msg.value < MINT_PRICE * amount) revert NotEnoughETH();

        _mint(msg.sender, amount);
    }

    /******************** OVERRIDES ********************/

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

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

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

    /******************** OWNER ********************/

    function setBaseURI(string memory newBaseURI) external onlyOwner {
        baseURI = newBaseURI;
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        (bool success, ) = payable(msg.sender).call{value: balance}("");
        require(success, "Failed to withdraw");
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"ContractNotAllowed","type":"error"},{"inputs":[],"name":"ExceededMaxPerWallet","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NotEnoughETH","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"SaleEnded","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"},{"inputs":[],"name":"ZeroAmount","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":[],"name":"MAX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060408051808201825260118152704d7920437261796f6e20467269656e647360781b60208083019182528351808501909452600484526321a92ca760e11b908401528151919291620000679160029162000119565b5080516200007d90600390602084019062000119565b50506001600055506200009033620000c7565b60405180608001604052806043815260200162001846604391398051620000c09160099160209091019062000119565b50620001fc565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012790620001bf565b90600052602060002090601f0160209004810192826200014b576000855562000196565b82601f106200016657805160ff191683800117855562000196565b8280016001018555821562000196579182015b828111156200019657825182559160200191906001019062000179565b50620001a4929150620001a8565b5090565b5b80821115620001a45760008155600101620001a9565b600181811c90821680620001d457607f821691505b60208210811415620001f657634e487b7160e01b600052602260045260246000fd5b50919050565b61163a806200020c6000396000f3fe6080604052600436106101665760003560e01c80636c0360eb116100d1578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd146103f2578063e985e9c514610412578063ed6661c21461045b578063f2fde38b1461047157600080fd5b8063a22cb46514610397578063b88d4fde146103b7578063c002d23d146103d757600080fd5b80636c0360eb1461030757806370a082311461031c578063715018a61461033c5780638da5cb5b1461035157806395d89b411461036f578063a0712d681461038457600080fd5b806323b872dd1161012357806323b872dd1461025c57806332cb6b0c1461027c5780633ccfd60b1461029257806342842e0e146102a757806355f804b3146102c75780636352211e146102e757600080fd5b806301ffc9a71461016b57806306fdde03146101a0578063081812fc146101c2578063095ea7b3146101fa5780630f2cdd6c1461021c57806318160ddd1461023f575b600080fd5b34801561017757600080fd5b5061018b610186366004611300565b610491565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506101b56104e3565b60405161019791906114dc565b3480156101ce57600080fd5b506101e26101dd366004611383565b610575565b6040516001600160a01b039091168152602001610197565b34801561020657600080fd5b5061021a6102153660046112d6565b6105b9565b005b34801561022857600080fd5b50610231600a81565b604051908152602001610197565b34801561024b57600080fd5b506001546000540360001901610231565b34801561026857600080fd5b5061021a6102773660046111e2565b610659565b34801561028857600080fd5b50610231610d0581565b34801561029e57600080fd5b5061021a6107ea565b3480156102b357600080fd5b5061021a6102c23660046111e2565b6108b0565b3480156102d357600080fd5b5061021a6102e236600461133a565b6108d0565b3480156102f357600080fd5b506101e2610302366004611383565b61090d565b34801561031357600080fd5b506101b5610918565b34801561032857600080fd5b50610231610337366004611194565b6109a6565b34801561034857600080fd5b5061021a6109f5565b34801561035d57600080fd5b506008546001600160a01b03166101e2565b34801561037b57600080fd5b506101b5610a2b565b61021a610392366004611383565b610a3a565b3480156103a357600080fd5b5061021a6103b236600461129a565b610b53565b3480156103c357600080fd5b5061021a6103d236600461121e565b610be9565b3480156103e357600080fd5b506102316611c37937e0800081565b3480156103fe57600080fd5b506101b561040d366004611383565b610c33565b34801561041e57600080fd5b5061018b61042d3660046111af565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561046757600080fd5b5061023161045781565b34801561047d57600080fd5b5061021a61048c366004611194565b610cb6565b60006301ffc9a760e01b6001600160e01b0319831614806104c257506380ac58cd60e01b6001600160e01b03198316145b806104dd5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546104f290611587565b80601f016020809104026020016040519081016040528092919081815260200182805461051e90611587565b801561056b5780601f106105405761010080835404028352916020019161056b565b820191906000526020600020905b81548152906001019060200180831161054e57829003601f168201915b5050505050905090565b600061058082610d4e565b61059d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006105c48261090d565b9050336001600160a01b038216146105fd576105e0813361042d565b6105fd576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061066482610d83565b9050836001600160a01b0316816001600160a01b0316146106975760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176106e4576106c7863361042d565b6106e457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661070b57604051633a954ecd60e21b815260040160405180910390fd5b801561071657600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b83166107a1576001840160008181526004602052604090205461079f57600054811461079f5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6008546001600160a01b0316331461081d5760405162461bcd60e51b8152600401610814906114ef565b60405180910390fd5b6040514790600090339083908381818185875af1925050503d8060008114610861576040519150601f19603f3d011682016040523d82523d6000602084013e610866565b606091505b50509050806108ac5760405162461bcd60e51b81526020600482015260126024820152714661696c656420746f20776974686472617760701b6044820152606401610814565b5050565b6108cb83838360405180602001604052806000815250610be9565b505050565b6008546001600160a01b031633146108fa5760405162461bcd60e51b8152600401610814906114ef565b80516108ac906009906020840190611069565b60006104dd82610d83565b6009805461092590611587565b80601f016020809104026020016040519081016040528092919081815260200182805461095190611587565b801561099e5780601f106109735761010080835404028352916020019161099e565b820191906000526020600020905b81548152906001019060200180831161098157829003601f168201915b505050505081565b60006001600160a01b0382166109cf576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610a1f5760405162461bcd60e51b8152600401610814906114ef565b610a296000610df3565b565b6060600380546104f290611587565b333214610a5a576040516311970e2d60e31b815260040160405180910390fd5b610d0581610a6b6000546000190190565b610a759190611524565b1115610a9457604051630bd8a3eb60e01b815260040160405180910390fd5b80610ab257604051631f2a200560e01b815260040160405180910390fd5b336000908152600560205260409081902054600a911c67ffffffffffffffff16610adc9083611524565b1115610afb57604051633368edaf60e21b815260040160405180910390fd5b610457610b0b6000546000190190565b10158015610b285750610b25816611c37937e0800061153c565b34105b15610b4657604051632c1d501360e11b815260040160405180910390fd5b610b503382610e45565b50565b6001600160a01b038216331415610b7d5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610bf4848484610659565b6001600160a01b0383163b15610c2d57610c1084848484610f22565b610c2d576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610c3e82610d4e565b610c5b57604051630a14c4b560e41b815260040160405180910390fd5b60098054610c6890611587565b15159050610c8557604051806020016040528060008152506104dd565b6009610c908361101a565b604051602001610ca19291906113e4565b60405160208183030381529060405292915050565b6008546001600160a01b03163314610ce05760405162461bcd60e51b8152600401610814906114ef565b6001600160a01b038116610d455760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610814565b610b5081610df3565b600081600111158015610d62575060005482105b80156104dd575050600090815260046020526040902054600160e01b161590565b60008180600111610dda57600054811015610dda57600081815260046020526040902054600160e01b8116610dd8575b80610dd1575060001901600081815260046020526040902054610db3565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000546001600160a01b038316610e6e57604051622e076360e81b815260040160405180910390fd5b81610e8c5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210610ed65760005550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610f5790339089908890889060040161149f565b602060405180830381600087803b158015610f7157600080fd5b505af1925050508015610fa1575060408051601f3d908101601f19168201909252610f9e9181019061131d565b60015b610ffc573d808015610fcf576040519150601f19603f3d011682016040523d82523d6000602084013e610fd4565b606091505b508051610ff4576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b604080516080810191829052607f0190826030600a8206018353600a90045b801561105757600183039250600a81066030018353600a9004611039565b50819003601f19909101908152919050565b82805461107590611587565b90600052602060002090601f01602090048101928261109757600085556110dd565b82601f106110b057805160ff19168380011785556110dd565b828001600101855582156110dd579182015b828111156110dd5782518255916020019190600101906110c2565b506110e99291506110ed565b5090565b5b808211156110e957600081556001016110ee565b600067ffffffffffffffff8084111561111d5761111d6115d8565b604051601f8501601f19908116603f01168101908282118183101715611145576111456115d8565b8160405280935085815286868601111561115e57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461118f57600080fd5b919050565b6000602082840312156111a657600080fd5b610dd182611178565b600080604083850312156111c257600080fd5b6111cb83611178565b91506111d960208401611178565b90509250929050565b6000806000606084860312156111f757600080fd5b61120084611178565b925061120e60208501611178565b9150604084013590509250925092565b6000806000806080858703121561123457600080fd5b61123d85611178565b935061124b60208601611178565b925060408501359150606085013567ffffffffffffffff81111561126e57600080fd5b8501601f8101871361127f57600080fd5b61128e87823560208401611102565b91505092959194509250565b600080604083850312156112ad57600080fd5b6112b683611178565b9150602083013580151581146112cb57600080fd5b809150509250929050565b600080604083850312156112e957600080fd5b6112f283611178565b946020939093013593505050565b60006020828403121561131257600080fd5b8135610dd1816115ee565b60006020828403121561132f57600080fd5b8151610dd1816115ee565b60006020828403121561134c57600080fd5b813567ffffffffffffffff81111561136357600080fd5b8201601f8101841361137457600080fd5b61101284823560208401611102565b60006020828403121561139557600080fd5b5035919050565b600081518084526113b481602086016020860161155b565b601f01601f19169290920160200192915050565b600081516113da81856020860161155b565b9290920192915050565b600080845481600182811c91508083168061140057607f831692505b602080841082141561142057634e487b7160e01b86526022600452602486fd5b818015611434576001811461144557611472565b60ff19861689528489019650611472565b60008b81526020902060005b8681101561146a5781548b820152908501908301611451565b505084890196505b50505050505061149661148582866113c8565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906114d29083018461139c565b9695505050505050565b602081526000610dd1602083018461139c565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611537576115376115c2565b500190565b6000816000190483118215151615611556576115566115c2565b500290565b60005b8381101561157657818101518382015260200161155e565b83811115610c2d5750506000910152565b600181811c9082168061159b57607f821691505b602082108114156115bc57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b5057600080fdfea264697066735822122073789ac9ed51cbd4f419609e166c7e97afccbc8f8c693edba648440ae030435664736f6c63430008070033697066733a2f2f6261667962656968697466647663796e6570327a646d37707379627170676d766469336c72756c6166656b71746434706f667066336176717662792f

Deployed Bytecode

0x6080604052600436106101665760003560e01c80636c0360eb116100d1578063a22cb4651161008a578063c87b56dd11610064578063c87b56dd146103f2578063e985e9c514610412578063ed6661c21461045b578063f2fde38b1461047157600080fd5b8063a22cb46514610397578063b88d4fde146103b7578063c002d23d146103d757600080fd5b80636c0360eb1461030757806370a082311461031c578063715018a61461033c5780638da5cb5b1461035157806395d89b411461036f578063a0712d681461038457600080fd5b806323b872dd1161012357806323b872dd1461025c57806332cb6b0c1461027c5780633ccfd60b1461029257806342842e0e146102a757806355f804b3146102c75780636352211e146102e757600080fd5b806301ffc9a71461016b57806306fdde03146101a0578063081812fc146101c2578063095ea7b3146101fa5780630f2cdd6c1461021c57806318160ddd1461023f575b600080fd5b34801561017757600080fd5b5061018b610186366004611300565b610491565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506101b56104e3565b60405161019791906114dc565b3480156101ce57600080fd5b506101e26101dd366004611383565b610575565b6040516001600160a01b039091168152602001610197565b34801561020657600080fd5b5061021a6102153660046112d6565b6105b9565b005b34801561022857600080fd5b50610231600a81565b604051908152602001610197565b34801561024b57600080fd5b506001546000540360001901610231565b34801561026857600080fd5b5061021a6102773660046111e2565b610659565b34801561028857600080fd5b50610231610d0581565b34801561029e57600080fd5b5061021a6107ea565b3480156102b357600080fd5b5061021a6102c23660046111e2565b6108b0565b3480156102d357600080fd5b5061021a6102e236600461133a565b6108d0565b3480156102f357600080fd5b506101e2610302366004611383565b61090d565b34801561031357600080fd5b506101b5610918565b34801561032857600080fd5b50610231610337366004611194565b6109a6565b34801561034857600080fd5b5061021a6109f5565b34801561035d57600080fd5b506008546001600160a01b03166101e2565b34801561037b57600080fd5b506101b5610a2b565b61021a610392366004611383565b610a3a565b3480156103a357600080fd5b5061021a6103b236600461129a565b610b53565b3480156103c357600080fd5b5061021a6103d236600461121e565b610be9565b3480156103e357600080fd5b506102316611c37937e0800081565b3480156103fe57600080fd5b506101b561040d366004611383565b610c33565b34801561041e57600080fd5b5061018b61042d3660046111af565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561046757600080fd5b5061023161045781565b34801561047d57600080fd5b5061021a61048c366004611194565b610cb6565b60006301ffc9a760e01b6001600160e01b0319831614806104c257506380ac58cd60e01b6001600160e01b03198316145b806104dd5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546104f290611587565b80601f016020809104026020016040519081016040528092919081815260200182805461051e90611587565b801561056b5780601f106105405761010080835404028352916020019161056b565b820191906000526020600020905b81548152906001019060200180831161054e57829003601f168201915b5050505050905090565b600061058082610d4e565b61059d576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006105c48261090d565b9050336001600160a01b038216146105fd576105e0813361042d565b6105fd576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061066482610d83565b9050836001600160a01b0316816001600160a01b0316146106975760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176106e4576106c7863361042d565b6106e457604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03851661070b57604051633a954ecd60e21b815260040160405180910390fd5b801561071657600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040902055600160e11b83166107a1576001840160008181526004602052604090205461079f57600054811461079f5760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6008546001600160a01b0316331461081d5760405162461bcd60e51b8152600401610814906114ef565b60405180910390fd5b6040514790600090339083908381818185875af1925050503d8060008114610861576040519150601f19603f3d011682016040523d82523d6000602084013e610866565b606091505b50509050806108ac5760405162461bcd60e51b81526020600482015260126024820152714661696c656420746f20776974686472617760701b6044820152606401610814565b5050565b6108cb83838360405180602001604052806000815250610be9565b505050565b6008546001600160a01b031633146108fa5760405162461bcd60e51b8152600401610814906114ef565b80516108ac906009906020840190611069565b60006104dd82610d83565b6009805461092590611587565b80601f016020809104026020016040519081016040528092919081815260200182805461095190611587565b801561099e5780601f106109735761010080835404028352916020019161099e565b820191906000526020600020905b81548152906001019060200180831161098157829003601f168201915b505050505081565b60006001600160a01b0382166109cf576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610a1f5760405162461bcd60e51b8152600401610814906114ef565b610a296000610df3565b565b6060600380546104f290611587565b333214610a5a576040516311970e2d60e31b815260040160405180910390fd5b610d0581610a6b6000546000190190565b610a759190611524565b1115610a9457604051630bd8a3eb60e01b815260040160405180910390fd5b80610ab257604051631f2a200560e01b815260040160405180910390fd5b336000908152600560205260409081902054600a911c67ffffffffffffffff16610adc9083611524565b1115610afb57604051633368edaf60e21b815260040160405180910390fd5b610457610b0b6000546000190190565b10158015610b285750610b25816611c37937e0800061153c565b34105b15610b4657604051632c1d501360e11b815260040160405180910390fd5b610b503382610e45565b50565b6001600160a01b038216331415610b7d5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610bf4848484610659565b6001600160a01b0383163b15610c2d57610c1084848484610f22565b610c2d576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610c3e82610d4e565b610c5b57604051630a14c4b560e41b815260040160405180910390fd5b60098054610c6890611587565b15159050610c8557604051806020016040528060008152506104dd565b6009610c908361101a565b604051602001610ca19291906113e4565b60405160208183030381529060405292915050565b6008546001600160a01b03163314610ce05760405162461bcd60e51b8152600401610814906114ef565b6001600160a01b038116610d455760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610814565b610b5081610df3565b600081600111158015610d62575060005482105b80156104dd575050600090815260046020526040902054600160e01b161590565b60008180600111610dda57600054811015610dda57600081815260046020526040902054600160e01b8116610dd8575b80610dd1575060001901600081815260046020526040902054610db3565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000546001600160a01b038316610e6e57604051622e076360e81b815260040160405180910390fd5b81610e8c5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038316600081815260056020526040902080546801000000000000000185020190554260a01b6001841460e11b1717600082815260046020526040902055808281015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210610ed65760005550505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290610f5790339089908890889060040161149f565b602060405180830381600087803b158015610f7157600080fd5b505af1925050508015610fa1575060408051601f3d908101601f19168201909252610f9e9181019061131d565b60015b610ffc573d808015610fcf576040519150601f19603f3d011682016040523d82523d6000602084013e610fd4565b606091505b508051610ff4576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b604080516080810191829052607f0190826030600a8206018353600a90045b801561105757600183039250600a81066030018353600a9004611039565b50819003601f19909101908152919050565b82805461107590611587565b90600052602060002090601f01602090048101928261109757600085556110dd565b82601f106110b057805160ff19168380011785556110dd565b828001600101855582156110dd579182015b828111156110dd5782518255916020019190600101906110c2565b506110e99291506110ed565b5090565b5b808211156110e957600081556001016110ee565b600067ffffffffffffffff8084111561111d5761111d6115d8565b604051601f8501601f19908116603f01168101908282118183101715611145576111456115d8565b8160405280935085815286868601111561115e57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461118f57600080fd5b919050565b6000602082840312156111a657600080fd5b610dd182611178565b600080604083850312156111c257600080fd5b6111cb83611178565b91506111d960208401611178565b90509250929050565b6000806000606084860312156111f757600080fd5b61120084611178565b925061120e60208501611178565b9150604084013590509250925092565b6000806000806080858703121561123457600080fd5b61123d85611178565b935061124b60208601611178565b925060408501359150606085013567ffffffffffffffff81111561126e57600080fd5b8501601f8101871361127f57600080fd5b61128e87823560208401611102565b91505092959194509250565b600080604083850312156112ad57600080fd5b6112b683611178565b9150602083013580151581146112cb57600080fd5b809150509250929050565b600080604083850312156112e957600080fd5b6112f283611178565b946020939093013593505050565b60006020828403121561131257600080fd5b8135610dd1816115ee565b60006020828403121561132f57600080fd5b8151610dd1816115ee565b60006020828403121561134c57600080fd5b813567ffffffffffffffff81111561136357600080fd5b8201601f8101841361137457600080fd5b61101284823560208401611102565b60006020828403121561139557600080fd5b5035919050565b600081518084526113b481602086016020860161155b565b601f01601f19169290920160200192915050565b600081516113da81856020860161155b565b9290920192915050565b600080845481600182811c91508083168061140057607f831692505b602080841082141561142057634e487b7160e01b86526022600452602486fd5b818015611434576001811461144557611472565b60ff19861689528489019650611472565b60008b81526020902060005b8681101561146a5781548b820152908501908301611451565b505084890196505b50505050505061149661148582866113c8565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906114d29083018461139c565b9695505050505050565b602081526000610dd1602083018461139c565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611537576115376115c2565b500190565b6000816000190483118215151615611556576115566115c2565b500290565b60005b8381101561157657818101518382015260200161155e565b83811115610c2d5750506000910152565b600181811c9082168061159b57607f821691505b602082108114156115bc57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b5057600080fdfea264697066735822122073789ac9ed51cbd4f419609e166c7e97afccbc8f8c693edba648440ae030435664736f6c63430008070033

Deployed Bytecode Sourcemap

48340:1891:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18015:615;;;;;;;;;;-1:-1:-1;18015:615:0;;;;;:::i;:::-;;:::i;:::-;;;6995:14:1;;6988:22;6970:41;;6958:2;6943:18;18015:615:0;;;;;;;;23662:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25608:204::-;;;;;;;;;;-1:-1:-1;25608:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6293:32:1;;;6275:51;;6263:2;6248:18;25608:204:0;6129:203:1;25156:386:0;;;;;;;;;;-1:-1:-1;25156:386:0;;;;;:::i;:::-;;:::i;:::-;;48488:43;;;;;;;;;;;;48529:2;48488:43;;;;;8507:25:1;;;8495:2;8480:18;48488:43:0;8361:177:1;17069:315:0;;;;;;;;;;-1:-1:-1;49475:1:0;17335:12;17122:7;17319:13;:28;-1:-1:-1;;17319:46:0;17069:315;;34873:2800;;;;;;;;;;-1:-1:-1;34873:2800:0;;;;;:::i;:::-;;:::i;48394:41::-;;;;;;;;;;;;48431:4;48394:41;;50006:220;;;;;;;;;;;;;:::i;26498:185::-;;;;;;;;;;-1:-1:-1;26498:185:0;;;;;:::i;:::-;;:::i;49894:104::-;;;;;;;;;;-1:-1:-1;49894:104:0;;;;;:::i;:::-;;:::i;23451:144::-;;;;;;;;;;-1:-1:-1;23451:144:0;;;;;:::i;:::-;;:::i;48595:21::-;;;;;;;;;;;;;:::i;18694:224::-;;;;;;;;;;-1:-1:-1;18694:224:0;;;;;:::i;:::-;;:::i;2606:103::-;;;;;;;;;;;;;:::i;1955:87::-;;;;;;;;;;-1:-1:-1;2028:6:0;;-1:-1:-1;;;;;2028:6:0;1955:87;;23831:104;;;;;;;;;;;;;:::i;48840:474::-;;;;;;:::i;:::-;;:::i;25884:308::-;;;;;;;;;;-1:-1:-1;25884:308:0;;;;;:::i;:::-;;:::i;26754:399::-;;;;;;;;;;-1:-1:-1;26754:399:0;;;;;:::i;:::-;;:::i;48538:48::-;;;;;;;;;;;;48575:11;48538:48;;49555:274;;;;;;;;;;-1:-1:-1;49555:274:0;;;;;:::i;:::-;;:::i;26263:164::-;;;;;;;;;;-1:-1:-1;26263:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;26384:25:0;;;26360:4;26384:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26263:164;48442:39;;;;;;;;;;;;48477:4;48442:39;;2864:201;;;;;;;;;;-1:-1:-1;2864:201:0;;;;;:::i;:::-;;:::i;18015:615::-;18100:4;-1:-1:-1;;;;;;;;;18400:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;18477:25:0;;;18400:102;:179;;;-1:-1:-1;;;;;;;;;;18554:25:0;;;18400:179;18380:199;18015:615;-1:-1:-1;;18015:615:0:o;23662:100::-;23716:13;23749:5;23742:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23662:100;:::o;25608:204::-;25676:7;25701:16;25709:7;25701;:16::i;:::-;25696:64;;25726:34;;-1:-1:-1;;;25726:34:0;;;;;;;;;;;25696:64;-1:-1:-1;25780:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25780:24:0;;25608:204::o;25156:386::-;25229:13;25245:16;25253:7;25245;:16::i;:::-;25229:32;-1:-1:-1;46056:10:0;-1:-1:-1;;;;;25278:28:0;;;25274:175;;25326:44;25343:5;46056:10;26263:164;:::i;25326:44::-;25321:128;;25398:35;;-1:-1:-1;;;25398:35:0;;;;;;;;;;;25321:128;25461:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;25461:29:0;-1:-1:-1;;;;;25461:29:0;;;;;;;;;25506:28;;25461:24;;25506:28;;;;;;;25218:324;25156:386;;:::o;34873:2800::-;35007:27;35037;35056:7;35037:18;:27::i;:::-;35007:57;;35122:4;-1:-1:-1;;;;;35081:45:0;35097:19;-1:-1:-1;;;;;35081:45:0;;35077:86;;35135:28;;-1:-1:-1;;;35135:28:0;;;;;;;;;;;35077:86;35177:27;33603:21;;;33430:15;33645:4;33638:36;33727:4;33711:21;;33817:26;;46056:10;34570:30;;;-1:-1:-1;;;;;34268:26:0;;34549:19;;;34546:55;35356:174;;35443:43;35460:4;46056:10;26263:164;:::i;35443:43::-;35438:92;;35495:35;;-1:-1:-1;;;35495:35:0;;;;;;;;;;;35438:92;-1:-1:-1;;;;;35547:16:0;;35543:52;;35572:23;;-1:-1:-1;;;35572:23:0;;;;;;;;;;;35543:52;35744:15;35741:160;;;35884:1;35863:19;35856:30;35741:160;-1:-1:-1;;;;;36279:24:0;;;;;;;:18;:24;;;;;;36277:26;;-1:-1:-1;;36277:26:0;;;36348:22;;;;;;;;;36346:24;;-1:-1:-1;36346:24:0;;;23350:11;23326:22;23322:40;23309:62;-1:-1:-1;;;23309:62:0;36641:26;;;;:17;:26;;;;;:174;-1:-1:-1;;;36935:46:0;;36931:626;;37039:1;37029:11;;37007:19;37162:30;;;:17;:30;;;;;;37158:384;;37300:13;;37285:11;:28;37281:242;;37447:30;;;;:17;:30;;;;;:52;;;37281:242;36988:569;36931:626;37604:7;37600:2;-1:-1:-1;;;;;37585:27:0;37594:4;-1:-1:-1;;;;;37585:27:0;;;;;;;;;;;34996:2677;;;34873:2800;;;:::o;50006:220::-;2028:6;;-1:-1:-1;;;;;2028:6:0;46056:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;;;;;;;;;50125:44:::1;::::0;50074:21:::1;::::0;50056:15:::1;::::0;50133:10:::1;::::0;50074:21;;50056:15;50125:44;50056:15;50125:44;50074:21;50133:10;50125:44:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50106:63;;;50188:7;50180:38;;;::::0;-1:-1:-1;;;50180:38:0;;7448:2:1;50180:38:0::1;::::0;::::1;7430:21:1::0;7487:2;7467:18;;;7460:30;-1:-1:-1;;;7506:18:1;;;7499:48;7564:18;;50180:38:0::1;7246:342:1::0;50180:38:0::1;50045:181;;50006:220::o:0;26498:185::-;26636:39;26653:4;26659:2;26663:7;26636:39;;;;;;;;;;;;:16;:39::i;:::-;26498:185;;;:::o;49894:104::-;2028:6;;-1:-1:-1;;;;;2028:6:0;46056:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;49970:20;;::::1;::::0;:7:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;23451:144::-:0;23515:7;23558:27;23577:7;23558:18;:27::i;48595:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;18694:224::-;18758:7;-1:-1:-1;;;;;18782:19:0;;18778:60;;18810:28;;-1:-1:-1;;;18810:28:0;;;;;;;;;;;18778:60;-1:-1:-1;;;;;;18856:25:0;;;;;:18;:25;;;;;;13249:13;18856:54;;18694:224::o;2606:103::-;2028:6;;-1:-1:-1;;;;;2028:6:0;46056:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;2671:30:::1;2698:1;2671:18;:30::i;:::-;2606:103::o:0;23831:104::-;23887:13;23920:7;23913:14;;;;;:::i;48840:474::-;48902:10;48916:9;48902:23;48898:56;;48934:20;;-1:-1:-1;;;48934:20:0;;;;;;;;;;;48898:56;48431:4;48986:6;48969:14;17529:7;17717:13;-1:-1:-1;;17717:31:0;;17482:285;48969:14;:23;;;;:::i;:::-;:36;48965:60;;;49014:11;;-1:-1:-1;;;49014:11:0;;;;;;;;;;;48965:60;49040:11;49036:36;;49060:12;;-1:-1:-1;;;49060:12:0;;;;;;;;;;;49036:36;49110:10;19061:7;19089:25;;;:18;:25;;13386:2;19089:25;;;;;48529:2;;19089:49;13249:13;19088:80;49087:34;;:6;:34;:::i;:::-;:51;49083:86;;;49147:22;;-1:-1:-1;;;49147:22:0;;;;;;;;;;;49083:86;48477:4;49184:14;17529:7;17717:13;-1:-1:-1;;17717:31:0;;17482:285;49184:14;:26;;:61;;;;-1:-1:-1;49226:19:0;49239:6;48575:11;49226:19;:::i;:::-;49214:9;:31;49184:61;49180:88;;;49254:14;;-1:-1:-1;;;49254:14:0;;;;;;;;;;;49180:88;49281:25;49287:10;49299:6;49281:5;:25::i;:::-;48840:474;:::o;25884:308::-;-1:-1:-1;;;;;25983:31:0;;46056:10;25983:31;25979:61;;;26023:17;;-1:-1:-1;;;26023:17:0;;;;;;;;;;;25979:61;46056:10;26053:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;26053:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;26053:60:0;;;;;;;;;;26129:55;;6970:41:1;;;26053:49:0;;46056:10;26129:55;;6943:18:1;26129:55:0;;;;;;;25884:308;;:::o;26754:399::-;26921:31;26934:4;26940:2;26944:7;26921:12;:31::i;:::-;-1:-1:-1;;;;;26967:14:0;;;:19;26963:183;;27006:56;27037:4;27043:2;27047:7;27056:5;27006:30;:56::i;:::-;27001:145;;27090:40;;-1:-1:-1;;;27090:40:0;;;;;;;;;;;27001:145;26754:399;;;;:::o;49555:274::-;49620:13;49651:16;49659:7;49651;:16::i;:::-;49646:59;;49676:29;;-1:-1:-1;;;49676:29:0;;;;;;;;;;;49646:59;49731:7;49725:21;;;;;:::i;:::-;:26;;;-1:-1:-1;49725:96:0;;;;;;;;;;;;;;;;;49778:7;49787:18;49797:7;49787:9;:18::i;:::-;49761:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49718:103;49555:274;-1:-1:-1;;49555:274:0:o;2864:201::-;2028:6;;-1:-1:-1;;;;;2028:6:0;46056:10;2175:23;2167:68;;;;-1:-1:-1;;;2167:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2953:22:0;::::1;2945:73;;;::::0;-1:-1:-1;;;2945:73:0;;7795:2:1;2945:73:0::1;::::0;::::1;7777:21:1::0;7834:2;7814:18;;;7807:30;7873:34;7853:18;;;7846:62;-1:-1:-1;;;7924:18:1;;;7917:36;7970:19;;2945:73:0::1;7593:402:1::0;2945:73:0::1;3029:28;3048:8;3029:18;:28::i;27408:273::-:0;27465:4;27521:7;49475:1;27502:26;;:66;;;;;27555:13;;27545:7;:23;27502:66;:152;;;;-1:-1:-1;;27606:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;27606:43:0;:48;;27408:273::o;20368:1129::-;20435:7;20470;;49475:1;20519:23;20515:915;;20572:13;;20565:4;:20;20561:869;;;20610:14;20627:23;;;:17;:23;;;;;;-1:-1:-1;;;20716:23:0;;20712:699;;21235:113;21242:11;21235:113;;-1:-1:-1;;;21313:6:0;21295:25;;;;:17;:25;;;;;;21235:113;;;21381:6;20368:1129;-1:-1:-1;;;20368:1129:0:o;20712:699::-;20587:843;20561:869;21458:31;;-1:-1:-1;;;21458:31:0;;;;;;;;;;;3225:191;3318:6;;;-1:-1:-1;;;;;3335:17:0;;;-1:-1:-1;;;;;;3335:17:0;;;;;;;3368:40;;3318:6;;;3335:17;3318:6;;3368:40;;3299:16;;3368:40;3288:128;3225:191;:::o;29239:1529::-;29304:20;29327:13;-1:-1:-1;;;;;29355:16:0;;29351:48;;29380:19;;-1:-1:-1;;;29380:19:0;;;;;;;;;;;29351:48;29414:13;29410:44;;29436:18;;-1:-1:-1;;;29436:18:0;;;;;;;;;;;29410:44;-1:-1:-1;;;;;29942:22:0;;;;;;:18;:22;;13386:2;29942:22;;:70;;29980:31;29968:44;;29942:70;;;23350:11;23326:22;23322:40;-1:-1:-1;25060:15:0;;25035:23;25031:45;23319:51;23309:62;30255:31;;;;:17;:31;;;;;:173;30273:12;30504:23;;;30542:101;30569:35;;30594:9;;;;;-1:-1:-1;;;;;30569:35:0;;;30586:1;;30569:35;;30586:1;;30569:35;30638:3;30628:7;:13;30542:101;;30659:13;:19;-1:-1:-1;26498:185:0;;;:::o;41624:716::-;41808:88;;-1:-1:-1;;;41808:88:0;;41787:4;;-1:-1:-1;;;;;41808:45:0;;;;;:88;;46056:10;;41875:4;;41881:7;;41890:5;;41808:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41808:88:0;;;;;;;;-1:-1:-1;;41808:88:0;;;;;;;;;;;;:::i;:::-;;;41804:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42091:13:0;;42087:235;;42137:40;;-1:-1:-1;;;42137:40:0;;;;;;;;;;;42087:235;42280:6;42274:13;42265:6;42261:2;42257:15;42250:38;41804:529;-1:-1:-1;;;;;;41967:64:0;-1:-1:-1;;;41967:64:0;;-1:-1:-1;41804:529:0;41624:716;;;;;;:::o;46180:1960::-;46649:4;46643:11;;46656:3;46639:21;;46734:17;;;;47430:11;;;47309:5;47562:2;47576;47566:13;;47558:22;47430:11;47545:36;47617:2;47607:13;;47201:697;47636:4;47201:697;;;47827:1;47822:3;47818:11;47811:18;;47878:2;47872:4;47868:13;47864:2;47860:22;47855:3;47847:36;47731:2;47721:13;;47201:697;;;-1:-1:-1;47928:13:0;;;-1:-1:-1;;48043:12:0;;;48103:19;;;48043:12;46180:1960;-1:-1:-1;46180:1960:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:1:o;4305:185::-;4347:3;4385:5;4379:12;4400:52;4445:6;4440:3;4433:4;4426:5;4422:16;4400:52;:::i;:::-;4468:16;;;;;4305:185;-1:-1:-1;;4305:185:1:o;4613:1301::-;4890:3;4919:1;4952:6;4946:13;4982:3;5004:1;5032:9;5028:2;5024:18;5014:28;;5092:2;5081:9;5077:18;5114;5104:61;;5158:4;5150:6;5146:17;5136:27;;5104:61;5184:2;5232;5224:6;5221:14;5201:18;5198:38;5195:165;;;-1:-1:-1;;;5259:33:1;;5315:4;5312:1;5305:15;5345:4;5266:3;5333:17;5195:165;5376:18;5403:104;;;;5521:1;5516:320;;;;5369:467;;5403:104;-1:-1:-1;;5436:24:1;;5424:37;;5481:16;;;;-1:-1:-1;5403:104:1;;5516:320;8616:1;8609:14;;;8653:4;8640:18;;5611:1;5625:165;5639:6;5636:1;5633:13;5625:165;;;5717:14;;5704:11;;;5697:35;5760:16;;;;5654:10;;5625:165;;;5629:3;;5819:6;5814:3;5810:16;5803:23;;5369:467;;;;;;;5852:56;5877:30;5903:3;5895:6;5877:30;:::i;:::-;-1:-1:-1;;;4555:20:1;;4600:1;4591:11;;4495:113;5852:56;5845:63;4613:1301;-1:-1:-1;;;;;4613:1301:1:o;6337:488::-;-1:-1:-1;;;;;6606:15:1;;;6588:34;;6658:15;;6653:2;6638:18;;6631:43;6705:2;6690:18;;6683:34;;;6753:3;6748:2;6733:18;;6726:31;;;6531:4;;6774:45;;6799:19;;6791:6;6774:45;:::i;:::-;6766:53;6337:488;-1:-1:-1;;;;;;6337:488:1:o;7022:219::-;7171:2;7160:9;7153:21;7134:4;7191:44;7231:2;7220:9;7216:18;7208:6;7191:44;:::i;8000:356::-;8202:2;8184:21;;;8221:18;;;8214:30;8280:34;8275:2;8260:18;;8253:62;8347:2;8332:18;;8000:356::o;8669:128::-;8709:3;8740:1;8736:6;8733:1;8730:13;8727:39;;;8746:18;;:::i;:::-;-1:-1:-1;8782:9:1;;8669:128::o;8802:168::-;8842:7;8908:1;8904;8900:6;8896:14;8893:1;8890:21;8885:1;8878:9;8871:17;8867:45;8864:71;;;8915:18;;:::i;:::-;-1:-1:-1;8955:9:1;;8802:168::o;8975:258::-;9047:1;9057:113;9071:6;9068:1;9065:13;9057:113;;;9147:11;;;9141:18;9128:11;;;9121:39;9093:2;9086:10;9057:113;;;9188:6;9185:1;9182:13;9179:48;;;-1:-1:-1;;9223:1:1;9205:16;;9198:27;8975:258::o;9238:380::-;9317:1;9313:12;;;;9360;;;9381:61;;9435:4;9427:6;9423:17;9413:27;;9381:61;9488:2;9480:6;9477:14;9457:18;9454:38;9451:161;;;9534:10;9529:3;9525:20;9522:1;9515:31;9569:4;9566:1;9559:15;9597:4;9594:1;9587:15;9451:161;;9238:380;;;:::o;9623:127::-;9684:10;9679:3;9675:20;9672:1;9665:31;9715:4;9712:1;9705:15;9739:4;9736:1;9729:15;9755:127;9816:10;9811:3;9807:20;9804:1;9797:31;9847:4;9844:1;9837:15;9871:4;9868:1;9861:15;9887:131;-1:-1:-1;;;;;;9961:32:1;;9951:43;;9941:71;;10008:1;10005;9998:12

Swarm Source

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