ETH Price: $2,338.23 (-0.43%)
Gas: 5.29 Gwei

Token

I Owe You (IOU)
 

Overview

Max Total Supply

124 IOU

Holders

15

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
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:
IOU

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 4 of 7: IOU.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "ERC721A.sol";
import "Ownable.sol";
import "ReentrancyGuard.sol";
import "Strings.sol";

contract IOU is ERC721A, Ownable, ReentrancyGuard {
	using Strings for uint256;

	string public baseURI;
	bool public mintActive = false;
	string public baseExtension = ".json";
	uint256 public constant maxSupply = 500;
	uint256 public mintCount = 0;
	uint256 public cost = 0.1 ether;

    address public ownerAddress = 0x52892f8574336EaAe60F87eC191776597b1fFDe2;
    
    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI
    ) ERC721A(_name, _symbol) {
        setBaseURI(_initBaseURI);
    }

	// override _startTokenId() function ~ line 100 of ERC721A
	function _startTokenId() internal view virtual override returns (uint256) {
		return 1;
	}

	// override _baseURI() function  ~ line 240 of ERC721A
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

	// override tokenURI() function ~ line 228 of ERC721A
	function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
		return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), baseExtension)) : "";
	}

	// ---Helper Functions / Modifiers---
    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

	modifier mintCompliance(uint256 _mintAmount) {
		// validate amount is more than 0 and maxSupply has/will not be exceeded
		require(totalSupply() + _mintAmount <= maxSupply, "Mint will exceed max collection supply.");
        // Check if owner before checking mint status
        if(msg.sender != owner()) {
            // check mintActive
            require(mintActive, "Public mint has not started.");
		}
		_;
	}

	modifier mintPriceCompliance(uint256 _mintAmount) {
        // Check if owner before calculating price
        if(msg.sender != owner()) {
			require(msg.value >= cost * _mintAmount, "Insufficient funds!");
			uint256 totalMintCost = _mintAmount * cost;
            // sender has passed >= funds
            require(msg.value >= totalMintCost, "Insufficient funds to mint.");
            // sendFunds
            sendFunds(msg.value);
		}
		_;
	}

	function publicMint(uint256 _quantity) external payable callerIsUser mintCompliance(_quantity) mintPriceCompliance(_quantity) {
		// _safeMint function
		_safeMint(msg.sender, _quantity);

        // track mints
        mintCount += _quantity;
	}

	// sendFunds function
	function sendFunds(uint256 _totalMsgValue) public payable {
		(bool s1, ) = payable(ownerAddress).call{value:  _totalMsgValue}("");
		require(s1 , "Transfer failed.");
	}

	// ---onlyOwner 

	// setBaseURI (must be public)
    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

	// setPublicActive
	function setMintActive() external onlyOwner {
		mintActive = true;
	}

	// setcost
	function setcost(uint256 _newcost) external onlyOwner {
		cost = _newcost;
	}

	// withdraw
	function withdraw() external onlyOwner nonReentrant {
		sendFunds(address(this).balance);
	}

	// recieve
	receive() external payable {
		sendFunds(address(this).balance);
	}

	// fallback
	fallback() external payable {
		sendFunds(address(this).balance);
	}

}

File 1 of 7: Context.sol
// SPDX-License-Identifier: MIT
// 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 2 of 7: ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

/**
 * @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 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`
    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 auxillary 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 auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            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;
    }

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

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

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

        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-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.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.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            getApproved(tokenId) == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

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

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                getApproved(tokenId) == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

            // 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 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 3 of 7: IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.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();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

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

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

File 5 of 7: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "Context.sol";

/**
 * @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 6 of 7: ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

File 7 of 7: Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ownerAddress","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":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","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":"uint256","name":"_totalMsgValue","type":"uint256"}],"name":"sendFunds","outputs":[],"stateMutability":"payable","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":[],"name":"setMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newcost","type":"uint256"}],"name":"setcost","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"},{"stateMutability":"payable","type":"receive"}]

600b805460ff1916905560c06040526005608081905264173539b7b760d91b60a09081526200003291600c9190620001bf565b506000600d5567016345785d8a0000600e55600f80546001600160a01b0319167352892f8574336eaae60f87ec191776597b1ffde21790553480156200007757600080fd5b5060405162001f5538038062001f558339810160408190526200009a9162000332565b825183908390620000b3906002906020850190620001bf565b508051620000c9906003906020840190620001bf565b5050600160005550620000dc33620000f5565b6001600955620000ec8162000147565b505050620003ff565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620001a65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001bb90600a906020840190620001bf565b5050565b828054620001cd90620003c3565b90600052602060002090601f016020900481019282620001f157600085556200023c565b82601f106200020c57805160ff19168380011785556200023c565b828001600101855582156200023c579182015b828111156200023c5782518255916020019190600101906200021f565b506200024a9291506200024e565b5090565b5b808211156200024a57600081556001016200024f565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200028d57600080fd5b81516001600160401b0380821115620002aa57620002aa62000265565b604051601f8301601f19908116603f01168101908282118183101715620002d557620002d562000265565b81604052838152602092508683858801011115620002f257600080fd5b600091505b83821015620003165785820183015181830184015290820190620002f7565b83821115620003285760008385830101525b9695505050505050565b6000806000606084860312156200034857600080fd5b83516001600160401b03808211156200036057600080fd5b6200036e878388016200027b565b945060208601519150808211156200038557600080fd5b62000393878388016200027b565b93506040860151915080821115620003aa57600080fd5b50620003b9868287016200027b565b9150509250925092565b600181811c90821680620003d857607f821691505b602082108103620003f957634e487b7160e01b600052602260045260246000fd5b50919050565b611b46806200040f6000396000f3fe6080604052600436106101d15760003560e01c80636c0360eb116100f75780639659867e11610095578063c87b56dd11610064578063c87b56dd146104ec578063d5abeb011461050c578063e985e9c514610522578063f2fde38b1461056b576101e1565b80639659867e14610481578063a22cb46514610497578063b88d4fde146104b7578063c6682862146104d7576101e1565b80638b281018116100d15780638b2810181461041b5780638da5cb5b1461042e5780638f84aa091461044c57806395d89b411461046c576101e1565b80636c0360eb146103d157806370a08231146103e6578063715018a614610406576101e1565b806325fd90f31161016f57806342842e0e1161013e57806342842e0e1461035c57806355f804b31461037c57806358cd080c1461039c5780636352211e146103b1576101e1565b806325fd90f3146102fa578063299c6937146103145780632db11544146103345780633ccfd60b14610347576101e1565b8063095ea7b3116101ab578063095ea7b31461027957806313faede61461029957806318160ddd146102bd57806323b872dd146102da576101e1565b806301ffc9a7146101ea57806306fdde031461021f578063081812fc14610241576101e1565b366101e1576101df4761058b565b005b6101df4761058b565b3480156101f657600080fd5b5061020a6102053660046115ac565b61062a565b60405190151581526020015b60405180910390f35b34801561022b57600080fd5b5061023461067c565b6040516102169190611621565b34801561024d57600080fd5b5061026161025c366004611634565b61070e565b6040516001600160a01b039091168152602001610216565b34801561028557600080fd5b506101df610294366004611669565b610752565b3480156102a557600080fd5b506102af600e5481565b604051908152602001610216565b3480156102c957600080fd5b5060015460005403600019016102af565b3480156102e657600080fd5b506101df6102f5366004611693565b610824565b34801561030657600080fd5b50600b5461020a9060ff1681565b34801561032057600080fd5b506101df61032f366004611634565b610834565b6101df610342366004611634565b610863565b34801561035357600080fd5b506101df610aa7565b34801561036857600080fd5b506101df610377366004611693565b610b38565b34801561038857600080fd5b506101df61039736600461175b565b610b53565b3480156103a857600080fd5b506101df610b90565b3480156103bd57600080fd5b506102616103cc366004611634565b610bc9565b3480156103dd57600080fd5b50610234610bd4565b3480156103f257600080fd5b506102af6104013660046117a4565b610c62565b34801561041257600080fd5b506101df610cb1565b6101df610429366004611634565b61058b565b34801561043a57600080fd5b506008546001600160a01b0316610261565b34801561045857600080fd5b50600f54610261906001600160a01b031681565b34801561047857600080fd5b50610234610ce7565b34801561048d57600080fd5b506102af600d5481565b3480156104a357600080fd5b506101df6104b23660046117bf565b610cf6565b3480156104c357600080fd5b506101df6104d23660046117fb565b610d8b565b3480156104e357600080fd5b50610234610dd5565b3480156104f857600080fd5b50610234610507366004611634565b610de2565b34801561051857600080fd5b506102af6101f481565b34801561052e57600080fd5b5061020a61053d366004611877565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561057757600080fd5b506101df6105863660046117a4565b610e43565b600f546040516000916001600160a01b03169083908381818185875af1925050503d80600081146105d8576040519150601f19603f3d011682016040523d82523d6000602084013e6105dd565b606091505b50509050806106265760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064015b60405180910390fd5b5050565b60006301ffc9a760e01b6001600160e01b03198316148061065b57506380ac58cd60e01b6001600160e01b03198316145b806106765750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461068b906118aa565b80601f01602080910402602001604051908101604052809291908181526020018280546106b7906118aa565b80156107045780601f106106d957610100808354040283529160200191610704565b820191906000526020600020905b8154815290600101906020018083116106e757829003601f168201915b5050505050905090565b600061071982610ede565b610736576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061075d82610f13565b9050806001600160a01b0316836001600160a01b0316036107915760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146107c8576107ab813361053d565b6107c8576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61082f838383610f89565b505050565b6008546001600160a01b0316331461085e5760405162461bcd60e51b815260040161061d906118e4565b600e55565b3233146108b25760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604482015260640161061d565b806101f4816108ca6001546000546000199190030190565b6108d4919061192f565b11156109325760405162461bcd60e51b815260206004820152602760248201527f4d696e742077696c6c20657863656564206d617820636f6c6c656374696f6e2060448201526639bab838363c9760c91b606482015260840161061d565b6008546001600160a01b0316331461099657600b5460ff166109965760405162461bcd60e51b815260206004820152601c60248201527f5075626c6963206d696e7420686173206e6f7420737461727465642e00000000604482015260640161061d565b816109a96008546001600160a01b031690565b6001600160a01b0316336001600160a01b031614610a815780600e546109cf9190611947565b341015610a145760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161061d565b6000600e5482610a249190611947565b905080341015610a765760405162461bcd60e51b815260206004820152601b60248201527f496e73756666696369656e742066756e647320746f206d696e742e0000000000604482015260640161061d565b610a7f3461058b565b505b610a8b3384611130565b82600d6000828254610a9d919061192f565b9091555050505050565b6008546001600160a01b03163314610ad15760405162461bcd60e51b815260040161061d906118e4565b600260095403610b235760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161061d565b6002600955610b314761058b565b6001600955565b61082f83838360405180602001604052806000815250610d8b565b6008546001600160a01b03163314610b7d5760405162461bcd60e51b815260040161061d906118e4565b805161062690600a9060208401906114fd565b6008546001600160a01b03163314610bba5760405162461bcd60e51b815260040161061d906118e4565b600b805460ff19166001179055565b600061067682610f13565b600a8054610be1906118aa565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0d906118aa565b8015610c5a5780601f10610c2f57610100808354040283529160200191610c5a565b820191906000526020600020905b815481529060010190602001808311610c3d57829003601f168201915b505050505081565b60006001600160a01b038216610c8b576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610cdb5760405162461bcd60e51b815260040161061d906118e4565b610ce5600061114a565b565b60606003805461068b906118aa565b336001600160a01b03831603610d1f5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d96848484610f89565b6001600160a01b0383163b15610dcf57610db28484848461119c565b610dcf576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600c8054610be1906118aa565b60606000600a8054610df3906118aa565b905011610e0f5760405180602001604052806000815250610676565b600a610e1a83611288565b600c604051602001610e2e939291906119ff565b60405160208183030381529060405292915050565b6008546001600160a01b03163314610e6d5760405162461bcd60e51b815260040161061d906118e4565b6001600160a01b038116610ed25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161061d565b610edb8161114a565b50565b600081600111158015610ef2575060005482105b8015610676575050600090815260046020526040902054600160e01b161590565b60008180600111610f7057600054811015610f705760008181526004602052604081205490600160e01b82169003610f6e575b80600003610f67575060001901600081815260046020526040902054610f46565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610f9482610f13565b9050836001600160a01b0316816001600160a01b031614610fc75760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610fe55750610fe5853361053d565b80611000575033610ff58461070e565b6001600160a01b0316145b90508061102057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661104757604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b87178117909155831690036110e8576001830160008181526004602052604081205490036110e65760005481146110e65760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b610626828260405180602001604052806000815250611389565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906111d1903390899088908890600401611a32565b6020604051808303816000875af192505050801561120c575060408051601f3d908101601f1916820190925261120991810190611a6f565b60015b61126a573d80801561123a576040519150601f19603f3d011682016040523d82523d6000602084013e61123f565b606091505b508051600003611262576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816000036112af5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156112d957806112c381611a8c565b91506112d29050600a83611abb565b91506112b3565b60008167ffffffffffffffff8111156112f4576112f46116cf565b6040519080825280601f01601f19166020018201604052801561131e576020820181803683370190505b5090505b841561128057611333600183611acf565b9150611340600a86611ae6565b61134b90603061192f565b60f81b81838151811061136057611360611afa565b60200101906001600160f81b031916908160001a905350611382600a86611abb565b9450611322565b6000546001600160a01b0384166113b257604051622e076360e81b815260040160405180910390fd5b826000036113d35760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b156114a8575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611471600087848060010195508761119c565b61148e576040516368d2bf6b60e11b815260040160405180910390fd5b8082106114265782600054146114a357600080fd5b6114ed565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106114a9575b506000908155610dcf9085838684565b828054611509906118aa565b90600052602060002090601f01602090048101928261152b5760008555611571565b82601f1061154457805160ff1916838001178555611571565b82800160010185558215611571579182015b82811115611571578251825591602001919060010190611556565b5061157d929150611581565b5090565b5b8082111561157d5760008155600101611582565b6001600160e01b031981168114610edb57600080fd5b6000602082840312156115be57600080fd5b8135610f6781611596565b60005b838110156115e45781810151838201526020016115cc565b83811115610dcf5750506000910152565b6000815180845261160d8160208601602086016115c9565b601f01601f19169290920160200192915050565b602081526000610f6760208301846115f5565b60006020828403121561164657600080fd5b5035919050565b80356001600160a01b038116811461166457600080fd5b919050565b6000806040838503121561167c57600080fd5b6116858361164d565b946020939093013593505050565b6000806000606084860312156116a857600080fd5b6116b18461164d565b92506116bf6020850161164d565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611700576117006116cf565b604051601f8501601f19908116603f01168101908282118183101715611728576117286116cf565b8160405280935085815286868601111561174157600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561176d57600080fd5b813567ffffffffffffffff81111561178457600080fd5b8201601f8101841361179557600080fd5b611280848235602084016116e5565b6000602082840312156117b657600080fd5b610f678261164d565b600080604083850312156117d257600080fd5b6117db8361164d565b9150602083013580151581146117f057600080fd5b809150509250929050565b6000806000806080858703121561181157600080fd5b61181a8561164d565b93506118286020860161164d565b925060408501359150606085013567ffffffffffffffff81111561184b57600080fd5b8501601f8101871361185c57600080fd5b61186b878235602084016116e5565b91505092959194509250565b6000806040838503121561188a57600080fd5b6118938361164d565b91506118a16020840161164d565b90509250929050565b600181811c908216806118be57607f821691505b6020821081036118de57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561194257611942611919565b500190565b600081600019048311821515161561196157611961611919565b500290565b8054600090600181811c908083168061198057607f831692505b602080841082036119a157634e487b7160e01b600052602260045260246000fd5b8180156119b557600181146119c6576119f3565b60ff198616895284890196506119f3565b60008881526020902060005b868110156119eb5781548b8201529085019083016119d2565b505084890196505b50505050505092915050565b6000611a0b8286611966565b8451611a1b8183602089016115c9565b611a2781830186611966565b979650505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a65908301846115f5565b9695505050505050565b600060208284031215611a8157600080fd5b8151610f6781611596565b600060018201611a9e57611a9e611919565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611aca57611aca611aa5565b500490565b600082821015611ae157611ae1611919565b500390565b600082611af557611af5611aa5565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212209e8f57b7d0c0a398df29a19423143515ad38c9d5b41c3b0c54c5dff1a01325bc64736f6c634300080d0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000949204f776520596f7500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003494f550000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005368747470733a2f2f6261667962656961327a7a6b73657733377a726a6d796c636b6b6e36736a6a736177716277683576736b6d796974716f666d6b3369676d6c6673712e697066732e647765622e6c696e6b2f00000000000000000000000000

Deployed Bytecode

0x6080604052600436106101d15760003560e01c80636c0360eb116100f75780639659867e11610095578063c87b56dd11610064578063c87b56dd146104ec578063d5abeb011461050c578063e985e9c514610522578063f2fde38b1461056b576101e1565b80639659867e14610481578063a22cb46514610497578063b88d4fde146104b7578063c6682862146104d7576101e1565b80638b281018116100d15780638b2810181461041b5780638da5cb5b1461042e5780638f84aa091461044c57806395d89b411461046c576101e1565b80636c0360eb146103d157806370a08231146103e6578063715018a614610406576101e1565b806325fd90f31161016f57806342842e0e1161013e57806342842e0e1461035c57806355f804b31461037c57806358cd080c1461039c5780636352211e146103b1576101e1565b806325fd90f3146102fa578063299c6937146103145780632db11544146103345780633ccfd60b14610347576101e1565b8063095ea7b3116101ab578063095ea7b31461027957806313faede61461029957806318160ddd146102bd57806323b872dd146102da576101e1565b806301ffc9a7146101ea57806306fdde031461021f578063081812fc14610241576101e1565b366101e1576101df4761058b565b005b6101df4761058b565b3480156101f657600080fd5b5061020a6102053660046115ac565b61062a565b60405190151581526020015b60405180910390f35b34801561022b57600080fd5b5061023461067c565b6040516102169190611621565b34801561024d57600080fd5b5061026161025c366004611634565b61070e565b6040516001600160a01b039091168152602001610216565b34801561028557600080fd5b506101df610294366004611669565b610752565b3480156102a557600080fd5b506102af600e5481565b604051908152602001610216565b3480156102c957600080fd5b5060015460005403600019016102af565b3480156102e657600080fd5b506101df6102f5366004611693565b610824565b34801561030657600080fd5b50600b5461020a9060ff1681565b34801561032057600080fd5b506101df61032f366004611634565b610834565b6101df610342366004611634565b610863565b34801561035357600080fd5b506101df610aa7565b34801561036857600080fd5b506101df610377366004611693565b610b38565b34801561038857600080fd5b506101df61039736600461175b565b610b53565b3480156103a857600080fd5b506101df610b90565b3480156103bd57600080fd5b506102616103cc366004611634565b610bc9565b3480156103dd57600080fd5b50610234610bd4565b3480156103f257600080fd5b506102af6104013660046117a4565b610c62565b34801561041257600080fd5b506101df610cb1565b6101df610429366004611634565b61058b565b34801561043a57600080fd5b506008546001600160a01b0316610261565b34801561045857600080fd5b50600f54610261906001600160a01b031681565b34801561047857600080fd5b50610234610ce7565b34801561048d57600080fd5b506102af600d5481565b3480156104a357600080fd5b506101df6104b23660046117bf565b610cf6565b3480156104c357600080fd5b506101df6104d23660046117fb565b610d8b565b3480156104e357600080fd5b50610234610dd5565b3480156104f857600080fd5b50610234610507366004611634565b610de2565b34801561051857600080fd5b506102af6101f481565b34801561052e57600080fd5b5061020a61053d366004611877565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561057757600080fd5b506101df6105863660046117a4565b610e43565b600f546040516000916001600160a01b03169083908381818185875af1925050503d80600081146105d8576040519150601f19603f3d011682016040523d82523d6000602084013e6105dd565b606091505b50509050806106265760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064015b60405180910390fd5b5050565b60006301ffc9a760e01b6001600160e01b03198316148061065b57506380ac58cd60e01b6001600160e01b03198316145b806106765750635b5e139f60e01b6001600160e01b03198316145b92915050565b60606002805461068b906118aa565b80601f01602080910402602001604051908101604052809291908181526020018280546106b7906118aa565b80156107045780601f106106d957610100808354040283529160200191610704565b820191906000526020600020905b8154815290600101906020018083116106e757829003601f168201915b5050505050905090565b600061071982610ede565b610736576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061075d82610f13565b9050806001600160a01b0316836001600160a01b0316036107915760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146107c8576107ab813361053d565b6107c8576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b61082f838383610f89565b505050565b6008546001600160a01b0316331461085e5760405162461bcd60e51b815260040161061d906118e4565b600e55565b3233146108b25760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604482015260640161061d565b806101f4816108ca6001546000546000199190030190565b6108d4919061192f565b11156109325760405162461bcd60e51b815260206004820152602760248201527f4d696e742077696c6c20657863656564206d617820636f6c6c656374696f6e2060448201526639bab838363c9760c91b606482015260840161061d565b6008546001600160a01b0316331461099657600b5460ff166109965760405162461bcd60e51b815260206004820152601c60248201527f5075626c6963206d696e7420686173206e6f7420737461727465642e00000000604482015260640161061d565b816109a96008546001600160a01b031690565b6001600160a01b0316336001600160a01b031614610a815780600e546109cf9190611947565b341015610a145760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161061d565b6000600e5482610a249190611947565b905080341015610a765760405162461bcd60e51b815260206004820152601b60248201527f496e73756666696369656e742066756e647320746f206d696e742e0000000000604482015260640161061d565b610a7f3461058b565b505b610a8b3384611130565b82600d6000828254610a9d919061192f565b9091555050505050565b6008546001600160a01b03163314610ad15760405162461bcd60e51b815260040161061d906118e4565b600260095403610b235760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161061d565b6002600955610b314761058b565b6001600955565b61082f83838360405180602001604052806000815250610d8b565b6008546001600160a01b03163314610b7d5760405162461bcd60e51b815260040161061d906118e4565b805161062690600a9060208401906114fd565b6008546001600160a01b03163314610bba5760405162461bcd60e51b815260040161061d906118e4565b600b805460ff19166001179055565b600061067682610f13565b600a8054610be1906118aa565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0d906118aa565b8015610c5a5780601f10610c2f57610100808354040283529160200191610c5a565b820191906000526020600020905b815481529060010190602001808311610c3d57829003601f168201915b505050505081565b60006001600160a01b038216610c8b576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610cdb5760405162461bcd60e51b815260040161061d906118e4565b610ce5600061114a565b565b60606003805461068b906118aa565b336001600160a01b03831603610d1f5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d96848484610f89565b6001600160a01b0383163b15610dcf57610db28484848461119c565b610dcf576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b600c8054610be1906118aa565b60606000600a8054610df3906118aa565b905011610e0f5760405180602001604052806000815250610676565b600a610e1a83611288565b600c604051602001610e2e939291906119ff565b60405160208183030381529060405292915050565b6008546001600160a01b03163314610e6d5760405162461bcd60e51b815260040161061d906118e4565b6001600160a01b038116610ed25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161061d565b610edb8161114a565b50565b600081600111158015610ef2575060005482105b8015610676575050600090815260046020526040902054600160e01b161590565b60008180600111610f7057600054811015610f705760008181526004602052604081205490600160e01b82169003610f6e575b80600003610f67575060001901600081815260046020526040902054610f46565b9392505050565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610f9482610f13565b9050836001600160a01b0316816001600160a01b031614610fc75760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610fe55750610fe5853361053d565b80611000575033610ff58461070e565b6001600160a01b0316145b90508061102057604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661104757604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091528120600160e11b4260a01b87178117909155831690036110e8576001830160008181526004602052604081205490036110e65760005481146110e65760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b610626828260405180602001604052806000815250611389565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906111d1903390899088908890600401611a32565b6020604051808303816000875af192505050801561120c575060408051601f3d908101601f1916820190925261120991810190611a6f565b60015b61126a573d80801561123a576040519150601f19603f3d011682016040523d82523d6000602084013e61123f565b606091505b508051600003611262576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816000036112af5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156112d957806112c381611a8c565b91506112d29050600a83611abb565b91506112b3565b60008167ffffffffffffffff8111156112f4576112f46116cf565b6040519080825280601f01601f19166020018201604052801561131e576020820181803683370190505b5090505b841561128057611333600183611acf565b9150611340600a86611ae6565b61134b90603061192f565b60f81b81838151811061136057611360611afa565b60200101906001600160f81b031916908160001a905350611382600a86611abb565b9450611322565b6000546001600160a01b0384166113b257604051622e076360e81b815260040160405180910390fd5b826000036113d35760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b156114a8575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611471600087848060010195508761119c565b61148e576040516368d2bf6b60e11b815260040160405180910390fd5b8082106114265782600054146114a357600080fd5b6114ed565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48082106114a9575b506000908155610dcf9085838684565b828054611509906118aa565b90600052602060002090601f01602090048101928261152b5760008555611571565b82601f1061154457805160ff1916838001178555611571565b82800160010185558215611571579182015b82811115611571578251825591602001919060010190611556565b5061157d929150611581565b5090565b5b8082111561157d5760008155600101611582565b6001600160e01b031981168114610edb57600080fd5b6000602082840312156115be57600080fd5b8135610f6781611596565b60005b838110156115e45781810151838201526020016115cc565b83811115610dcf5750506000910152565b6000815180845261160d8160208601602086016115c9565b601f01601f19169290920160200192915050565b602081526000610f6760208301846115f5565b60006020828403121561164657600080fd5b5035919050565b80356001600160a01b038116811461166457600080fd5b919050565b6000806040838503121561167c57600080fd5b6116858361164d565b946020939093013593505050565b6000806000606084860312156116a857600080fd5b6116b18461164d565b92506116bf6020850161164d565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611700576117006116cf565b604051601f8501601f19908116603f01168101908282118183101715611728576117286116cf565b8160405280935085815286868601111561174157600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561176d57600080fd5b813567ffffffffffffffff81111561178457600080fd5b8201601f8101841361179557600080fd5b611280848235602084016116e5565b6000602082840312156117b657600080fd5b610f678261164d565b600080604083850312156117d257600080fd5b6117db8361164d565b9150602083013580151581146117f057600080fd5b809150509250929050565b6000806000806080858703121561181157600080fd5b61181a8561164d565b93506118286020860161164d565b925060408501359150606085013567ffffffffffffffff81111561184b57600080fd5b8501601f8101871361185c57600080fd5b61186b878235602084016116e5565b91505092959194509250565b6000806040838503121561188a57600080fd5b6118938361164d565b91506118a16020840161164d565b90509250929050565b600181811c908216806118be57607f821691505b6020821081036118de57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561194257611942611919565b500190565b600081600019048311821515161561196157611961611919565b500290565b8054600090600181811c908083168061198057607f831692505b602080841082036119a157634e487b7160e01b600052602260045260246000fd5b8180156119b557600181146119c6576119f3565b60ff198616895284890196506119f3565b60008881526020902060005b868110156119eb5781548b8201529085019083016119d2565b505084890196505b50505050505092915050565b6000611a0b8286611966565b8451611a1b8183602089016115c9565b611a2781830186611966565b979650505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611a65908301846115f5565b9695505050505050565b600060208284031215611a8157600080fd5b8151610f6781611596565b600060018201611a9e57611a9e611919565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082611aca57611aca611aa5565b500490565b600082821015611ae157611ae1611919565b500390565b600082611af557611af5611aa5565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212209e8f57b7d0c0a398df29a19423143515ad38c9d5b41c3b0c54c5dff1a01325bc64736f6c634300080d0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000949204f776520596f7500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003494f550000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005368747470733a2f2f6261667962656961327a7a6b73657733377a726a6d796c636b6b6e36736a6a736177716277683576736b6d796974716f666d6b3369676d6c6673712e697066732e647765622e6c696e6b2f00000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): I Owe You
Arg [1] : _symbol (string): IOU
Arg [2] : _initBaseURI (string): https://bafybeia2zzksew37zrjmylckkn6sjjsawqbwh5vskmyitqofmk3igmlfsq.ipfs.dweb.link/

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [4] : 49204f776520596f750000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 494f550000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000053
Arg [8] : 68747470733a2f2f6261667962656961327a7a6b73657733377a726a6d796c63
Arg [9] : 6b6b6e36736a6a736177716277683576736b6d796974716f666d6b3369676d6c
Arg [10] : 6673712e697066732e647765622e6c696e6b2f00000000000000000000000000


Deployed Bytecode Sourcemap

162:3342:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3373:32;3383:21;3373:9;:32::i;:::-;162:3342;;3462:32;3472:21;3462:9;:32::i;4880:607:1:-;;;;;;;;;;-1:-1:-1;4880:607:1;;;;;:::i;:::-;;:::i;:::-;;;565:14:7;;558:22;540:41;;528:2;513:18;4880:607:1;;;;;;;;9768:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;11769:200::-;;;;;;;;;;-1:-1:-1;11769:200:1;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:7;;;1674:51;;1662:2;1647:18;11769:200:1;1528:203:7;11245:463:1;;;;;;;;;;-1:-1:-1;11245:463:1;;;;;:::i;:::-;;:::i;422:31:3:-;;;;;;;;;;;;;;;;;;;2319:25:7;;;2307:2;2292:18;422:31:3;2173:177:7;3963:309:1;;;;;;;;;;-1:-1:-1;884:1:3;4225:12:1;4016:7;4209:13;:28;-1:-1:-1;;4209:46:1;3963:309;;12629:164;;;;;;;;;;-1:-1:-1;12629:164:1;;;;;:::i;:::-;;:::i;272:30:3:-;;;;;;;;;;-1:-1:-1;272:30:3;;;;;;;;3131:79;;;;;;;;;;-1:-1:-1;3131:79:3;;;;;:::i;:::-;;:::i;2396:252::-;;;;;;:::i;:::-;;:::i;3229:94::-;;;;;;;;;;;;;:::i;12859:179:1:-;;;;;;;;;;-1:-1:-1;12859:179:1;;;;;:::i;:::-;;:::i;2912:104:3:-;;;;;;;;;;-1:-1:-1;2912:104:3;;;;;:::i;:::-;;:::i;3042:71::-;;;;;;;;;;;;;:::i;9564:142:1:-;;;;;;;;;;-1:-1:-1;9564:142:1;;;;;:::i;:::-;;:::i;247:21:3:-;;;;;;;;;;;;;:::i;5546:221:1:-;;;;;;;;;;-1:-1:-1;5546:221:1;;;;;:::i;:::-;;:::i;1712:103:4:-;;;;;;;;;;;;;:::i;2677:173:3:-;;;;;;:::i;:::-;;:::i;1061:87:4:-;;;;;;;;;;-1:-1:-1;1134:6:4;;-1:-1:-1;;;;;1134:6:4;1061:87;;462:72:3;;;;;;;;;;-1:-1:-1;462:72:3;;;;-1:-1:-1;;;;;462:72:3;;;9930:102:1;;;;;;;;;;;;;:::i;390:28:3:-;;;;;;;;;;;;;;;;12036:303:1;;;;;;;;;;-1:-1:-1;12036:303:1;;;;;:::i;:::-;;:::i;13104:385::-;;;;;;;;;;-1:-1:-1;13104:385:1;;;;;:::i;:::-;;:::i;306:37:3:-;;;;;;;;;;;;;:::i;1124:206::-;;;;;;;;;;-1:-1:-1;1124:206:3;;;;;:::i;:::-;;:::i;347:39::-;;;;;;;;;;;;383:3;347:39;;12405:162:1;;;;;;;;;;-1:-1:-1;12405:162:1;;;;;:::i;:::-;-1:-1:-1;;;;;12525:25:1;;;12502:4;12525:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;12405:162;1970:201:4;;;;;;;;;;-1:-1:-1;1970:201:4;;;;;:::i;:::-;;:::i;2677:173:3:-;2762:12;;2754:54;;2741:7;;-1:-1:-1;;;;;2762:12:3;;2789:14;;2741:7;2754:54;2741:7;2754:54;2789:14;2762:12;2754:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2740:68;;;2821:2;2813:32;;;;-1:-1:-1;;;2813:32:3;;5805:2:7;2813:32:3;;;5787:21:7;5844:2;5824:18;;;5817:30;-1:-1:-1;;;5863:18:7;;;5856:46;5919:18;;2813:32:3;;;;;;;;;2735:115;2677:173;:::o;4880:607:1:-;4965:4;-1:-1:-1;;;;;;;;;5260:25:1;;;;:101;;-1:-1:-1;;;;;;;;;;5336:25:1;;;5260:101;:177;;;-1:-1:-1;;;;;;;;;;5412:25:1;;;5260:177;5241:196;4880:607;-1:-1:-1;;4880:607:1:o;9768:98::-;9822:13;9854:5;9847:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9768:98;:::o;11769:200::-;11837:7;11861:16;11869:7;11861;:16::i;:::-;11856:64;;11886:34;;-1:-1:-1;;;11886:34:1;;;;;;;;;;;11856:64;-1:-1:-1;11938:24:1;;;;:15;:24;;;;;;-1:-1:-1;;;;;11938:24:1;;11769:200::o;11245:463::-;11317:13;11349:27;11368:7;11349:18;:27::i;:::-;11317:61;;11398:5;-1:-1:-1;;;;;11392:11:1;:2;-1:-1:-1;;;;;11392:11:1;;11388:48;;11412:24;;-1:-1:-1;;;11412:24:1;;;;;;;;;;;11388:48;27446:10;-1:-1:-1;;;;;11451:28:1;;;11447:172;;11498:44;11515:5;27446:10;12405:162;:::i;11498:44::-;11493:126;;11569:35;;-1:-1:-1;;;11569:35:1;;;;;;;;;;;11493:126;11629:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;11629:29:1;-1:-1:-1;;;;;11629:29:1;;;;;;;;;11673:28;;11629:24;;11673:28;;;;;;;11307:401;11245:463;;:::o;12629:164::-;12758:28;12768:4;12774:2;12778:7;12758:9;:28::i;:::-;12629:164;;;:::o;3131:79:3:-;1134:6:4;;-1:-1:-1;;;;;1134:6:4;27446:10:1;1281:23:4;1273:68;;;;-1:-1:-1;;;1273:68:4;;;;;;;:::i;:::-;3190:4:3::1;:15:::0;3131:79::o;2396:252::-;1421:9;1434:10;1421:23;1413:66;;;;-1:-1:-1;;;1413:66:3;;6896:2:7;1413:66:3;;;6878:21:7;6935:2;6915:18;;;6908:30;6974:32;6954:18;;;6947:60;7024:18;;1413:66:3;6694:354:7;1413:66:3;2480:9:::1;383:3;1654:11;1638:13;884:1:::0;4225:12:1;4016:7;4209:13;-1:-1:-1;;4209:28:1;;;:46;;3963:309;1638:13:3::1;:27;;;;:::i;:::-;:40;;1630:92;;;::::0;-1:-1:-1;;;1630:92:3;;7520:2:7;1630:92:3::1;::::0;::::1;7502:21:7::0;7559:2;7539:18;;;7532:30;7598:34;7578:18;;;7571:62;-1:-1:-1;;;7649:18:7;;;7642:37;7696:19;;1630:92:3::1;7318:403:7::0;1630:92:3::1;1134:6:4::0;;-1:-1:-1;;;;;1134:6:4;1791:10:3::1;:21;1788:131;;1870:10;::::0;::::1;;1862:51;;;::::0;-1:-1:-1;;;1862:51:3;;7928:2:7;1862:51:3::1;::::0;::::1;7910:21:7::0;7967:2;7947:18;;;7940:30;8006;7986:18;;;7979:58;8054:18;;1862:51:3::1;7726:352:7::0;1862:51:3::1;2511:9:::2;2064:7;1134:6:4::0;;-1:-1:-1;;;;;1134:6:4;;1061:87;2064:7:3::2;-1:-1:-1::0;;;;;2050:21:3::2;:10;-1:-1:-1::0;;;;;2050:21:3::2;;2047:334;;2107:11;2100:4;;:18;;;;:::i;:::-;2087:9;:31;;2079:63;;;::::0;-1:-1:-1;;;2079:63:3;;8458:2:7;2079:63:3::2;::::0;::::2;8440:21:7::0;8497:2;8477:18;;;8470:30;-1:-1:-1;;;8516:18:7;;;8509:49;8575:18;;2079:63:3::2;8256:343:7::0;2079:63:3::2;2148:21;2186:4;;2172:11;:18;;;;:::i;:::-;2148:42;;2269:13;2256:9;:26;;2248:66;;;::::0;-1:-1:-1;;;2248:66:3;;8806:2:7;2248:66:3::2;::::0;::::2;8788:21:7::0;8845:2;8825:18;;;8818:30;8884:29;8864:18;;;8857:57;8931:18;;2248:66:3::2;8604:351:7::0;2248:66:3::2;2355:20;2365:9;2355;:20::i;:::-;2073:308;2047:334;2552:32:::3;2562:10;2574:9;2552;:32::i;:::-;2634:9;2621;;:22;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;;2396:252:3:o;3229:94::-;1134:6:4;;-1:-1:-1;;;;;1134:6:4;27446:10:1;1281:23:4;1273:68;;;;-1:-1:-1;;;1273:68:4;;;;;;;:::i;:::-;1778:1:5::1;2376:7;;:19:::0;2368:63:::1;;;::::0;-1:-1:-1;;;2368:63:5;;9162:2:7;2368:63:5::1;::::0;::::1;9144:21:7::0;9201:2;9181:18;;;9174:30;9240:33;9220:18;;;9213:61;9291:18;;2368:63:5::1;8960:355:7::0;2368:63:5::1;1778:1;2509:7;:18:::0;3286:32:3::2;3296:21;3286:9;:32::i;:::-;1734:1:5::1;2688:7;:22:::0;3229:94:3:o;12859:179:1:-;12992:39;13009:4;13015:2;13019:7;12992:39;;;;;;;;;;;;:16;:39::i;2912:104:3:-;1134:6:4;;-1:-1:-1;;;;;1134:6:4;27446:10:1;1281:23:4;1273:68;;;;-1:-1:-1;;;1273:68:4;;;;;;;:::i;:::-;2987:21:3;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;3042:71::-:0;1134:6:4;;-1:-1:-1;;;;;1134:6:4;27446:10:1;1281:23:4;1273:68;;;;-1:-1:-1;;;1273:68:4;;;;;;;:::i;:::-;3091:10:3::1;:17:::0;;-1:-1:-1;;3091:17:3::1;3104:4;3091:17;::::0;;3042:71::o;9564:142:1:-;9628:7;9670:27;9689:7;9670:18;:27::i;247:21:3:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;5546:221:1:-;5610:7;-1:-1:-1;;;;;5633:19:1;;5629:60;;5661:28;;-1:-1:-1;;;5661:28:1;;;;;;;;;;;5629:60;-1:-1:-1;;;;;;5706:25:1;;;;;:18;:25;;;;;;1017:13;5706:54;;5546:221::o;1712:103:4:-;1134:6;;-1:-1:-1;;;;;1134:6:4;27446:10:1;1281:23:4;1273:68;;;;-1:-1:-1;;;1273:68:4;;;;;;;:::i;:::-;1777:30:::1;1804:1;1777:18;:30::i;:::-;1712:103::o:0;9930:102:1:-;9986:13;10018:7;10011:14;;;;;:::i;12036:303::-;27446:10;-1:-1:-1;;;;;12134:31:1;;;12130:61;;12174:17;;-1:-1:-1;;;12174:17:1;;;;;;;;;;;12130:61;27446:10;12202:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;12202:49:1;;;;;;;;;;;;:60;;-1:-1:-1;;12202:60:1;;;;;;;;;;12277:55;;540:41:7;;;12202:49:1;;27446:10;12277:55;;513:18:7;12277:55:1;;;;;;;12036:303;;:::o;13104:385::-;13265:28;13275:4;13281:2;13285:7;13265:9;:28::i;:::-;-1:-1:-1;;;;;13307:14:1;;;:19;13303:180;;13345:56;13376:4;13382:2;13386:7;13395:5;13345:30;:56::i;:::-;13340:143;;13428:40;;-1:-1:-1;;;13428:40:1;;;;;;;;;;;13340:143;13104:385;;;;:::o;306:37:3:-;;;;;;;:::i;1124:206::-;1197:13;1248:1;1230:7;1224:21;;;;;:::i;:::-;;;:25;:101;;;;;;;;;;;;;;;;;1276:7;1285:18;:7;:16;:18::i;:::-;1305:13;1259:60;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1217:108;1124:206;-1:-1:-1;;1124:206:3:o;1970:201:4:-;1134:6;;-1:-1:-1;;;;;1134:6:4;27446:10:1;1281:23:4;1273:68;;;;-1:-1:-1;;;1273:68:4;;;;;;;:::i;:::-;-1:-1:-1;;;;;2059:22:4;::::1;2051:73;;;::::0;-1:-1:-1;;;2051:73:4;;11087:2:7;2051:73:4::1;::::0;::::1;11069:21:7::0;11126:2;11106:18;;;11099:30;11165:34;11145:18;;;11138:62;-1:-1:-1;;;11216:18:7;;;11209:36;11262:19;;2051:73:4::1;10885:402:7::0;2051:73:4::1;2135:28;2154:8;2135:18;:28::i;:::-;1970:201:::0;:::o;13735:268:1:-;13792:4;13846:7;884:1:3;13827:26:1;;:65;;;;;13879:13;;13869:7;:23;13827:65;:150;;;;-1:-1:-1;;13929:26:1;;;;:17;:26;;;;;;-1:-1:-1;;;13929:43:1;:48;;13735:268::o;7141:1105::-;7208:7;7242;;884:1:3;7288:23:1;7284:898;;7340:13;;7333:4;:20;7329:853;;;7377:14;7394:23;;;:17;:23;;;;;;;-1:-1:-1;;;7481:23:1;;:28;;7477:687;;7992:111;7999:6;8009:1;7999:11;7992:111;;-1:-1:-1;;;8069:6:1;8051:25;;;;:17;:25;;;;;;7992:111;;;8135:6;7141:1105;-1:-1:-1;;;7141:1105:1:o;7477:687::-;7355:827;7329:853;8208:31;;-1:-1:-1;;;8208:31:1;;;;;;;;;;;18835:2460;18945:27;18975;18994:7;18975:18;:27::i;:::-;18945:57;;19058:4;-1:-1:-1;;;;;19017:45:1;19033:19;-1:-1:-1;;;;;19017:45:1;;19013:86;;19071:28;;-1:-1:-1;;;19071:28:1;;;;;;;;;;;19013:86;19110:22;27446:10;-1:-1:-1;;;;;19136:27:1;;;;:86;;-1:-1:-1;19179:43:1;19196:4;27446:10;12405:162;:::i;19179:43::-;19136:145;;;-1:-1:-1;27446:10:1;19238:20;19250:7;19238:11;:20::i;:::-;-1:-1:-1;;;;;19238:43:1;;19136:145;19110:172;;19298:17;19293:66;;19324:35;;-1:-1:-1;;;19324:35:1;;;;;;;;;;;19293:66;-1:-1:-1;;;;;19373:16:1;;19369:52;;19398:23;;-1:-1:-1;;;19398:23:1;;;;;;;;;;;19369:52;19545:24;;;;:15;:24;;;;;;;;19538:31;;-1:-1:-1;;;;;;19538:31:1;;;-1:-1:-1;;;;;19930:24:1;;;;;:18;:24;;;;;19928:26;;-1:-1:-1;;19928:26:1;;;19998:22;;;;;;;19996:24;;-1:-1:-1;19996:24:1;;;20284:26;;;:17;:26;;;;;-1:-1:-1;;;20370:15:1;1656:3;20370:41;20329:83;;:126;;20284:171;;;20572:46;;:51;;20568:616;;20675:1;20665:11;;20643:19;20796:30;;;:17;:30;;;;;;:35;;20792:378;;20932:13;;20917:11;:28;20913:239;;21077:30;;;;:17;:30;;;;;:52;;;20913:239;20625:559;20568:616;21228:7;21224:2;-1:-1:-1;;;;;21209:27:1;21218:4;-1:-1:-1;;;;;21209:27:1;;;;;;;;;;;18935:2360;;18835:2460;;;:::o;14082:102::-;14150:27;14160:2;14164:8;14150:27;;;;;;;;;;;;:9;:27::i;2331:191:4:-;2424:6;;;-1:-1:-1;;;;;2441:17:4;;;-1:-1:-1;;;;;;2441:17:4;;;;;;;2474:40;;2424:6;;;2441:17;2424:6;;2474:40;;2405:16;;2474:40;2394:128;2331:191;:::o;24900:697:1:-;25078:88;;-1:-1:-1;;;25078:88:1;;25058:4;;-1:-1:-1;;;;;25078:45:1;;;;;:88;;27446:10;;25145:4;;25151:7;;25160:5;;25078:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25078:88:1;;;;;;;;-1:-1:-1;;25078:88:1;;;;;;;;;;;;:::i;:::-;;;25074:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25356:6;:13;25373:1;25356:18;25352:229;;25401:40;;-1:-1:-1;;;25401:40:1;;;;;;;;;;;25352:229;25541:6;25535:13;25526:6;25522:2;25518:15;25511:38;25074:517;-1:-1:-1;;;;;;25234:64:1;-1:-1:-1;;;25234:64:1;;-1:-1:-1;25074:517:1;24900:697;;;;;;:::o;392:723:6:-;448:13;669:5;678:1;669:10;665:53;;-1:-1:-1;;696:10:6;;;;;;;;;;;;-1:-1:-1;;;696:10:6;;;;;392:723::o;665:53::-;743:5;728:12;784:78;791:9;;784:78;;817:8;;;;:::i;:::-;;-1:-1:-1;840:10:6;;-1:-1:-1;848:2:6;840:10;;:::i;:::-;;;784:78;;;872:19;904:6;894:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;894:17:6;;872:39;;922:154;929:10;;922:154;;956:11;966:1;956:11;;:::i;:::-;;-1:-1:-1;1025:10:6;1033:2;1025:5;:10;:::i;:::-;1012:24;;:2;:24;:::i;:::-;999:39;;982:6;989;982:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;982:56:6;;;;;;;;-1:-1:-1;1053:11:6;1062:2;1053:11;;:::i;:::-;;;922:154;;14544:2184:1;14662:20;14685:13;-1:-1:-1;;;;;14712:16:1;;14708:48;;14737:19;;-1:-1:-1;;;14737:19:1;;;;;;;;;;;14708:48;14770:8;14782:1;14770:13;14766:44;;14792:18;;-1:-1:-1;;;14792:18:1;;;;;;;;;;;14766:44;-1:-1:-1;;;;;15346:22:1;;;;;;:18;:22;;;;1151:2;15346:22;;;:70;;15384:31;15372:44;;15346:70;;;15652:31;;;:17;:31;;;;;15743:15;1656:3;15743:41;15702:83;;-1:-1:-1;15820:13:1;;1913:3;15805:56;15702:160;15652:210;;:31;;15940:23;;;;15982:14;:19;15978:622;;16021:308;16051:38;;16076:12;;-1:-1:-1;;;;;16051:38:1;;;16068:1;;16051:38;;16068:1;;16051:38;16116:69;16155:1;16159:2;16163:14;;;;;;16179:5;16116:30;:69::i;:::-;16111:172;;16220:40;;-1:-1:-1;;;16220:40:1;;;;;;;;;;;16111:172;16324:3;16309:12;:18;16021:308;;16408:12;16391:13;;:29;16387:43;;16422:8;;;16387:43;15978:622;;;16469:117;16499:40;;16524:14;;;;;-1:-1:-1;;;;;16499:40:1;;;16516:1;;16499:40;;16516:1;;16499:40;16581:3;16566:12;:18;16469:117;;15978:622;-1:-1:-1;16613:13:1;:28;;;16661:60;;16694:2;16698:12;16712:8;16661:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:7;-1:-1:-1;;;;;;88:32:7;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:7;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:7;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:7:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:7;;1343:180;-1:-1:-1;1343:180:7:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:7;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:7:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:127::-;2749:10;2744:3;2740:20;2737:1;2730:31;2780:4;2777:1;2770:15;2804:4;2801:1;2794:15;2820:632;2885:5;2915:18;2956:2;2948:6;2945:14;2942:40;;;2962:18;;:::i;:::-;3037:2;3031:9;3005:2;3091:15;;-1:-1:-1;;3087:24:7;;;3113:2;3083:33;3079:42;3067:55;;;3137:18;;;3157:22;;;3134:46;3131:72;;;3183:18;;:::i;:::-;3223:10;3219:2;3212:22;3252:6;3243:15;;3282:6;3274;3267:22;3322:3;3313:6;3308:3;3304:16;3301:25;3298:45;;;3339:1;3336;3329:12;3298:45;3389:6;3384:3;3377:4;3369:6;3365:17;3352:44;3444:1;3437:4;3428:6;3420;3416:19;3412:30;3405:41;;;;2820:632;;;;;:::o;3457:451::-;3526:6;3579:2;3567:9;3558:7;3554:23;3550:32;3547:52;;;3595:1;3592;3585:12;3547:52;3635:9;3622:23;3668:18;3660:6;3657:30;3654:50;;;3700:1;3697;3690:12;3654:50;3723:22;;3776:4;3768:13;;3764:27;-1:-1:-1;3754:55:7;;3805:1;3802;3795:12;3754:55;3828:74;3894:7;3889:2;3876:16;3871:2;3867;3863:11;3828:74;:::i;3913:186::-;3972:6;4025:2;4013:9;4004:7;4000:23;3996:32;3993:52;;;4041:1;4038;4031:12;3993:52;4064:29;4083:9;4064:29;:::i;4104:347::-;4169:6;4177;4230:2;4218:9;4209:7;4205:23;4201:32;4198:52;;;4246:1;4243;4236:12;4198:52;4269:29;4288:9;4269:29;:::i;:::-;4259:39;;4348:2;4337:9;4333:18;4320:32;4395:5;4388:13;4381:21;4374:5;4371:32;4361:60;;4417:1;4414;4407:12;4361:60;4440:5;4430:15;;;4104:347;;;;;:::o;4456:667::-;4551:6;4559;4567;4575;4628:3;4616:9;4607:7;4603:23;4599:33;4596:53;;;4645:1;4642;4635:12;4596:53;4668:29;4687:9;4668:29;:::i;:::-;4658:39;;4716:38;4750:2;4739:9;4735:18;4716:38;:::i;:::-;4706:48;;4801:2;4790:9;4786:18;4773:32;4763:42;;4856:2;4845:9;4841:18;4828:32;4883:18;4875:6;4872:30;4869:50;;;4915:1;4912;4905:12;4869:50;4938:22;;4991:4;4983:13;;4979:27;-1:-1:-1;4969:55:7;;5020:1;5017;5010:12;4969:55;5043:74;5109:7;5104:2;5091:16;5086:2;5082;5078:11;5043:74;:::i;:::-;5033:84;;;4456:667;;;;;;;:::o;5128:260::-;5196:6;5204;5257:2;5245:9;5236:7;5232:23;5228:32;5225:52;;;5273:1;5270;5263:12;5225:52;5296:29;5315:9;5296:29;:::i;:::-;5286:39;;5344:38;5378:2;5367:9;5363:18;5344:38;:::i;:::-;5334:48;;5128:260;;;;;:::o;5948:380::-;6027:1;6023:12;;;;6070;;;6091:61;;6145:4;6137:6;6133:17;6123:27;;6091:61;6198:2;6190:6;6187:14;6167:18;6164:38;6161:161;;6244:10;6239:3;6235:20;6232:1;6225:31;6279:4;6276:1;6269:15;6307:4;6304:1;6297:15;6161:161;;5948:380;;;:::o;6333:356::-;6535:2;6517:21;;;6554:18;;;6547:30;6613:34;6608:2;6593:18;;6586:62;6680:2;6665:18;;6333:356::o;7053:127::-;7114:10;7109:3;7105:20;7102:1;7095:31;7145:4;7142:1;7135:15;7169:4;7166:1;7159:15;7185:128;7225:3;7256:1;7252:6;7249:1;7246:13;7243:39;;;7262:18;;:::i;:::-;-1:-1:-1;7298:9:7;;7185:128::o;8083:168::-;8123:7;8189:1;8185;8181:6;8177:14;8174:1;8171:21;8166:1;8159:9;8152:17;8148:45;8145:71;;;8196:18;;:::i;:::-;-1:-1:-1;8236:9:7;;8083:168::o;9446:973::-;9531:12;;9496:3;;9586:1;9606:18;;;;9659;;;;9686:61;;9740:4;9732:6;9728:17;9718:27;;9686:61;9766:2;9814;9806:6;9803:14;9783:18;9780:38;9777:161;;9860:10;9855:3;9851:20;9848:1;9841:31;9895:4;9892:1;9885:15;9923:4;9920:1;9913:15;9777:161;9954:18;9981:104;;;;10099:1;10094:319;;;;9947:466;;9981:104;-1:-1:-1;;10014:24:7;;10002:37;;10059:16;;;;-1:-1:-1;9981:104:7;;10094:319;9393:1;9386:14;;;9430:4;9417:18;;10188:1;10202:165;10216:6;10213:1;10210:13;10202:165;;;10294:14;;10281:11;;;10274:35;10337:16;;;;10231:10;;10202:165;;;10206:3;;10396:6;10391:3;10387:16;10380:23;;9947:466;;;;;;;9446:973;;;;:::o;10424:456::-;10645:3;10673:38;10707:3;10699:6;10673:38;:::i;:::-;10740:6;10734:13;10756:52;10801:6;10797:2;10790:4;10782:6;10778:17;10756:52;:::i;:::-;10824:50;10866:6;10862:2;10858:15;10850:6;10824:50;:::i;:::-;10817:57;10424:456;-1:-1:-1;;;;;;;10424:456:7:o;11292:489::-;-1:-1:-1;;;;;11561:15:7;;;11543:34;;11613:15;;11608:2;11593:18;;11586:43;11660:2;11645:18;;11638:34;;;11708:3;11703:2;11688:18;;11681:31;;;11486:4;;11729:46;;11755:19;;11747:6;11729:46;:::i;:::-;11721:54;11292:489;-1:-1:-1;;;;;;11292:489:7:o;11786:249::-;11855:6;11908:2;11896:9;11887:7;11883:23;11879:32;11876:52;;;11924:1;11921;11914:12;11876:52;11956:9;11950:16;11975:30;11999:5;11975:30;:::i;12040:135::-;12079:3;12100:17;;;12097:43;;12120:18;;:::i;:::-;-1:-1:-1;12167:1:7;12156:13;;12040:135::o;12180:127::-;12241:10;12236:3;12232:20;12229:1;12222:31;12272:4;12269:1;12262:15;12296:4;12293:1;12286:15;12312:120;12352:1;12378;12368:35;;12383:18;;:::i;:::-;-1:-1:-1;12417:9:7;;12312:120::o;12437:125::-;12477:4;12505:1;12502;12499:8;12496:34;;;12510:18;;:::i;:::-;-1:-1:-1;12547:9:7;;12437:125::o;12567:112::-;12599:1;12625;12615:35;;12630:18;;:::i;:::-;-1:-1:-1;12664:9:7;;12567:112::o;12684:127::-;12745:10;12740:3;12736:20;12733:1;12726:31;12776:4;12773:1;12766:15;12800:4;12797:1;12790:15

Swarm Source

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