ETH Price: $3,313.16 (-3.52%)
Gas: 20 Gwei

Token

POPO (POPO)
 

Overview

Max Total Supply

3,007 POPO

Holders

1,326

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 POPO
0x777da0a323a98959309ffbc5e60a2d204d3ede62
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:
Popo721

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts-upgradeable/utils/StringsUpgradeable.sol


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

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library StringsUpgradeable {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // 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);
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: https://github.com/chiru-labs/ERC721A/blob/main/contracts/IERC721A.sol


// ERC721A Contracts v3.3.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: https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;
    
    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

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

    // The 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: contracts/popo/popo721.sol


pragma solidity ^0.8.7;




// /       \  /      \ /       \  /      \       
// $$$$$$$  |/$$$$$$  |$$$$$$$  |/$$$$$$  |      
// $$ |__$$ |$$ |  $$ |$$ |__$$ |$$ |  $$ |      
// $$    $$/ $$ |  $$ |$$    $$/ $$ |  $$ |      
// $$$$$$$/  $$ |  $$ |$$$$$$$/  $$ |  $$ |      
// $$ |      $$ \__$$ |$$ |      $$ \__$$ |      
// $$ |      $$    $$/ $$ |      $$    $$/       
// $$/        $$$$$$/  $$/        $$$$$$/       

contract Popo721 is ERC721A, Ownable {
    using StringsUpgradeable for uint256;
    address breedingContract;

    string public baseApiURI;
    
  

    //General Settings
    uint16 public maxMintAmountPerTransaction = 20;
    

    //Inventory
    uint256 public maxSupply = 3000;

    //Prices
    uint256 public cost = 0.03 ether;

    //Utility
    bool public paused = false;
    

    constructor(string memory _baseUrl) ERC721A("POPO", "POPO") {
        baseApiURI = _baseUrl;
    }

   


    //This function will be used to extend the project with more capabilities 
    function setBreedingContractAddress(address _bAddress) public onlyOwner {
        breedingContract = _bAddress;
    }


    //this function can be called only from the extending contract
    function mintExternal(address _address, uint256 _mintAmount) external {
        require(
            msg.sender == breedingContract,
            "Sorry you dont have permission to mint"
        );
        _safeMint(_address, _mintAmount);
    }

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    // public
   function mint(uint256 _mintAmount) external payable {
        if (msg.sender != owner()) {
            require(!paused);
            require(_mintAmount > 0, "Mint amount should be greater than 0");
            require(
                _mintAmount <= maxMintAmountPerTransaction,
                "Sorry you cant mint this amount at once"
            );
            require(
                totalSupply() + _mintAmount <= maxSupply,
                "Exceeds Max Supply"
            );
            require(msg.value >= cost * _mintAmount, "Insuffient funds");
        }

        _mintLoop(msg.sender, _mintAmount);
    }

    function gift(address _to, uint256 _mintAmount) public onlyOwner {
        _mintLoop(_to, _mintAmount);
    }

    function airdrop(address[] memory _airdropAddresses) public onlyOwner {
        for (uint256 i = 0; i < _airdropAddresses.length; i++) {
            address to = _airdropAddresses[i];
            _mintLoop(to, 1);
        }
    }

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

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(abi.encodePacked(currentBaseURI, tokenId.toString()))
                : "";
    }

    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    function setmaxMintAmountPerTransaction(uint16 _amount) public onlyOwner {
        maxMintAmountPerTransaction = _amount;
    }

    
    function setMaxSupply(uint256 _supply) public onlyOwner {
        maxSupply = _supply;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseApiURI = _newBaseURI;
    }

    function togglePause() public onlyOwner {
        paused = !paused;
    }



    function _mintLoop(address _receiver, uint256 _mintAmount) internal {
        _safeMint(_receiver, _mintAmount);
    }

  

    function withdraw() public payable onlyOwner {
        (bool os, ) = payable(0x4223F5E2827D72072b13C0Ceb348132C2386d698).call{value: address(this).balance}("");
        require(os);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseUrl","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"},{"inputs":[{"internalType":"address[]","name":"_airdropAddresses","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseApiURI","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":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","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":"maxMintAmountPerTransaction","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintExternal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_bAddress","type":"address"}],"name":"setBreedingContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_amount","type":"uint16"}],"name":"setmaxMintAmountPerTransaction","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":[],"name":"togglePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052600b805461ffff19166014179055610bb8600c55666a94d74f430000600d55600e805460ff191690553480156200003a57600080fd5b506040516200207a3803806200207a8339810160408190526200005d91620001d9565b604080518082018252600480825263504f504f60e01b6020808401828152855180870190965292855284015281519192916200009c9160029162000133565b508051620000b290600390602084019062000133565b50506000805550620000c433620000e1565b8051620000d990600a90602084019062000133565b505062000308565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014190620002b5565b90600052602060002090601f016020900481019282620001655760008555620001b0565b82601f106200018057805160ff1916838001178555620001b0565b82800160010185558215620001b0579182015b82811115620001b057825182559160200191906001019062000193565b50620001be929150620001c2565b5090565b5b80821115620001be5760008155600101620001c3565b60006020808385031215620001ed57600080fd5b82516001600160401b03808211156200020557600080fd5b818501915085601f8301126200021a57600080fd5b8151818111156200022f576200022f620002f2565b604051601f8201601f19908116603f011681019083821181831017156200025a576200025a620002f2565b8160405282815288868487010111156200027357600080fd5b600093505b8284101562000297578484018601518185018701529285019262000278565b82841115620002a95760008684830101525b98975050505050505050565b600181811c90821680620002ca57607f821691505b60208210811415620002ec57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611d6280620003186000396000f3fe6080604052600436106101f95760003560e01c8063715018a61161010d578063c4ae3168116100a0578063dc33e6811161006f578063dc33e68114610577578063e97800cb14610597578063e985e9c5146105b7578063f2fde38b14610600578063f4da18461461062057600080fd5b8063c4ae31681461050c578063c87b56dd14610521578063cbce4c9714610541578063d5abeb011461056157600080fd5b8063a0712d68116100dc578063a0712d681461048b578063a22cb4651461049e578063b88d4fde146104be578063bbb89744146104de57600080fd5b8063715018a614610423578063729ad39e146104385780638da5cb5b1461045857806395d89b411461047657600080fd5b806341827f13116101905780635c975abb1161015f5780635c975abb146103895780636352211e146103a357806368570bd6146103c35780636f8b44b0146103e357806370a082311461040357600080fd5b806341827f131461031457806342842e0e1461032957806344a0d68a1461034957806355f804b31461036957600080fd5b806313faede6116101cc57806313faede6146102af57806318160ddd146102d357806323b872dd146102ec5780633ccfd60b1461030c57600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e6102193660046119f5565b610640565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610248610692565b60405161022a9190611b4d565b34801561026157600080fd5b50610275610270366004611a9c565b610724565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a8366004611917565b610768565b005b3480156102bb57600080fd5b506102c5600d5481565b60405190815260200161022a565b3480156102df57600080fd5b50600154600054036102c5565b3480156102f857600080fd5b506102ad610307366004611823565b61083b565b6102ad61084b565b34801561032057600080fd5b506102486108ea565b34801561033557600080fd5b506102ad610344366004611823565b610978565b34801561035557600080fd5b506102ad610364366004611a9c565b610993565b34801561037557600080fd5b506102ad610384366004611a2f565b6109c2565b34801561039557600080fd5b50600e5461021e9060ff1681565b3480156103af57600080fd5b506102756103be366004611a9c565b610a03565b3480156103cf57600080fd5b506102ad6103de3660046117d5565b610a0e565b3480156103ef57600080fd5b506102ad6103fe366004611a9c565b610a5a565b34801561040f57600080fd5b506102c561041e3660046117d5565b610a89565b34801561042f57600080fd5b506102ad610ad8565b34801561044457600080fd5b506102ad610453366004611941565b610b0e565b34801561046457600080fd5b506008546001600160a01b0316610275565b34801561048257600080fd5b50610248610b80565b6102ad610499366004611a9c565b610b8f565b3480156104aa57600080fd5b506102ad6104b93660046118db565b610d2b565b3480156104ca57600080fd5b506102ad6104d936600461185f565b610dc1565b3480156104ea57600080fd5b50600b546104f99061ffff1681565b60405161ffff909116815260200161022a565b34801561051857600080fd5b506102ad610e0b565b34801561052d57600080fd5b5061024861053c366004611a9c565b610e49565b34801561054d57600080fd5b506102ad61055c366004611917565b610f14565b34801561056d57600080fd5b506102c5600c5481565b34801561058357600080fd5b506102c56105923660046117d5565b610f48565b3480156105a357600080fd5b506102ad6105b2366004611a78565b610f73565b3480156105c357600080fd5b5061021e6105d23660046117f0565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561060c57600080fd5b506102ad61061b3660046117d5565b610fb5565b34801561062c57600080fd5b506102ad61063b366004611917565b61104d565b60006301ffc9a760e01b6001600160e01b03198316148061067157506380ac58cd60e01b6001600160e01b03198316145b8061068c5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546106a190611c54565b80601f01602080910402602001604051908101604052809291908181526020018280546106cd90611c54565b801561071a5780601f106106ef5761010080835404028352916020019161071a565b820191906000526020600020905b8154815290600101906020018083116106fd57829003601f168201915b5050505050905090565b600061072f826110c0565b61074c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610773826110e7565b9050806001600160a01b0316836001600160a01b031614156107a85760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146107df576107c281336105d2565b6107df576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610846838383611148565b505050565b6008546001600160a01b0316331461087e5760405162461bcd60e51b815260040161087590611b60565b60405180910390fd5b604051600090734223f5e2827d72072b13c0ceb348132c2386d6989047908381818185875af1925050503d80600081146108d4576040519150601f19603f3d011682016040523d82523d6000602084013e6108d9565b606091505b50509050806108e757600080fd5b50565b600a80546108f790611c54565b80601f016020809104026020016040519081016040528092919081815260200182805461092390611c54565b80156109705780601f1061094557610100808354040283529160200191610970565b820191906000526020600020905b81548152906001019060200180831161095357829003601f168201915b505050505081565b61084683838360405180602001604052806000815250610dc1565b6008546001600160a01b031633146109bd5760405162461bcd60e51b815260040161087590611b60565b600d55565b6008546001600160a01b031633146109ec5760405162461bcd60e51b815260040161087590611b60565b80516109ff90600a9060208401906116c8565b5050565b600061068c826110e7565b6008546001600160a01b03163314610a385760405162461bcd60e51b815260040161087590611b60565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6008546001600160a01b03163314610a845760405162461bcd60e51b815260040161087590611b60565b600c55565b60006001600160a01b038216610ab2576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610b025760405162461bcd60e51b815260040161087590611b60565b610b0c60006112eb565b565b6008546001600160a01b03163314610b385760405162461bcd60e51b815260040161087590611b60565b60005b81518110156109ff576000828281518110610b5857610b58611cea565b60200260200101519050610b6d8160016110b6565b5080610b7881611c8f565b915050610b3b565b6060600380546106a190611c54565b6008546001600160a01b03163314610d2157600e5460ff1615610bb157600080fd5b60008111610c0d5760405162461bcd60e51b8152602060048201526024808201527f4d696e7420616d6f756e742073686f756c6420626520677265617465722074686044820152630616e20360e41b6064820152608401610875565b600b5461ffff16811115610c735760405162461bcd60e51b815260206004820152602760248201527f536f72727920796f752063616e74206d696e74207468697320616d6f756e74206044820152666174206f6e636560c81b6064820152608401610875565b600c5481610c846001546000540390565b610c8e9190611bc6565b1115610cd15760405162461bcd60e51b815260206004820152601260248201527145786365656473204d617820537570706c7960701b6044820152606401610875565b80600d54610cdf9190611bf2565b341015610d215760405162461bcd60e51b815260206004820152601060248201526f496e7375666669656e742066756e647360801b6044820152606401610875565b6108e733826110b6565b6001600160a01b038216331415610d555760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610dcc848484611148565b6001600160a01b0383163b15610e0557610de88484848461133d565b610e05576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610e355760405162461bcd60e51b815260040161087590611b60565b600e805460ff19811660ff90911615179055565b6060610e54826110c0565b610eb85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610875565b6000610ec2611435565b90506000815111610ee25760405180602001604052806000815250610f0d565b80610eec84611444565b604051602001610efd929190611ae1565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610f3e5760405162461bcd60e51b815260040161087590611b60565b6109ff82826110b6565b6001600160a01b0381166000908152600560205260408082205467ffffffffffffffff911c1661068c565b6008546001600160a01b03163314610f9d5760405162461bcd60e51b815260040161087590611b60565b600b805461ffff191661ffff92909216919091179055565b6008546001600160a01b03163314610fdf5760405162461bcd60e51b815260040161087590611b60565b6001600160a01b0381166110445760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610875565b6108e7816112eb565b6009546001600160a01b031633146110b65760405162461bcd60e51b815260206004820152602660248201527f536f72727920796f7520646f6e742068617665207065726d697373696f6e20746044820152651bc81b5a5b9d60d21b6064820152608401610875565b6109ff8282611542565b600080548210801561068c575050600090815260046020526040902054600160e01b161590565b60008160005481101561112f57600081815260046020526040902054600160e01b811661112d575b80610f0d57506000190160008181526004602052604090205461110f565b505b604051636f96cda160e11b815260040160405180910390fd5b6000611153826110e7565b9050836001600160a01b0316816001600160a01b0316146111865760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806111a457506111a485336105d2565b806111bf5750336111b484610724565b6001600160a01b0316145b9050806111df57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661120657604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b8617811790915582166112a357600183016000818152600460205260409020546112a15760005481146112a15760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611372903390899088908890600401611b10565b602060405180830381600087803b15801561138c57600080fd5b505af19250505080156113bc575060408051601f3d908101601f191682019092526113b991810190611a12565b60015b611417573d8080156113ea576040519150601f19603f3d011682016040523d82523d6000602084013e6113ef565b606091505b50805161140f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a80546106a190611c54565b6060816114685750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611492578061147c81611c8f565b915061148b9050600a83611bde565b915061146c565b60008167ffffffffffffffff8111156114ad576114ad611d00565b6040519080825280601f01601f1916602001820160405280156114d7576020820181803683370190505b5090505b841561142d576114ec600183611c11565b91506114f9600a86611caa565b611504906030611bc6565b60f81b81838151811061151957611519611cea565b60200101906001600160f81b031916908160001a90535061153b600a86611bde565b94506114db565b6109ff8282604051806020016040528060008152506000546001600160a01b03841661158057604051622e076360e81b815260040160405180910390fd5b8261159e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611673575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461163c600087848060010195508761133d565b611659576040516368d2bf6b60e11b815260040160405180910390fd5b8082106115f157826000541461166e57600080fd5b6116b8565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611674575b506000908155610e059085838684565b8280546116d490611c54565b90600052602060002090601f0160209004810192826116f6576000855561173c565b82601f1061170f57805160ff191683800117855561173c565b8280016001018555821561173c579182015b8281111561173c578251825591602001919060010190611721565b5061174892915061174c565b5090565b5b80821115611748576000815560010161174d565b600067ffffffffffffffff83111561177b5761177b611d00565b61178e601f8401601f1916602001611b95565b90508281528383830111156117a257600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146117d057600080fd5b919050565b6000602082840312156117e757600080fd5b610f0d826117b9565b6000806040838503121561180357600080fd5b61180c836117b9565b915061181a602084016117b9565b90509250929050565b60008060006060848603121561183857600080fd5b611841846117b9565b925061184f602085016117b9565b9150604084013590509250925092565b6000806000806080858703121561187557600080fd5b61187e856117b9565b935061188c602086016117b9565b925060408501359150606085013567ffffffffffffffff8111156118af57600080fd5b8501601f810187136118c057600080fd5b6118cf87823560208401611761565b91505092959194509250565b600080604083850312156118ee57600080fd5b6118f7836117b9565b91506020830135801515811461190c57600080fd5b809150509250929050565b6000806040838503121561192a57600080fd5b611933836117b9565b946020939093013593505050565b6000602080838503121561195457600080fd5b823567ffffffffffffffff8082111561196c57600080fd5b818501915085601f83011261198057600080fd5b81358181111561199257611992611d00565b8060051b91506119a3848301611b95565b8181528481019084860184860187018a10156119be57600080fd5b600095505b838610156119e8576119d4816117b9565b8352600195909501949186019186016119c3565b5098975050505050505050565b600060208284031215611a0757600080fd5b8135610f0d81611d16565b600060208284031215611a2457600080fd5b8151610f0d81611d16565b600060208284031215611a4157600080fd5b813567ffffffffffffffff811115611a5857600080fd5b8201601f81018413611a6957600080fd5b61142d84823560208401611761565b600060208284031215611a8a57600080fd5b813561ffff81168114610f0d57600080fd5b600060208284031215611aae57600080fd5b5035919050565b60008151808452611acd816020860160208601611c28565b601f01601f19169290920160200192915050565b60008351611af3818460208801611c28565b835190830190611b07818360208801611c28565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b4390830184611ab5565b9695505050505050565b602081526000610f0d6020830184611ab5565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f1916810167ffffffffffffffff81118282101715611bbe57611bbe611d00565b604052919050565b60008219821115611bd957611bd9611cbe565b500190565b600082611bed57611bed611cd4565b500490565b6000816000190483118215151615611c0c57611c0c611cbe565b500290565b600082821015611c2357611c23611cbe565b500390565b60005b83811015611c43578181015183820152602001611c2b565b83811115610e055750506000910152565b600181811c90821680611c6857607f821691505b60208210811415611c8957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611ca357611ca3611cbe565b5060010190565b600082611cb957611cb9611cd4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108e757600080fdfea264697066735822122044cbeaf2af06f67f014534668d8495d846307e510ef655cd7cb037b112f226b664736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004268747470733a2f2f75732d63656e7472616c312d6d6f666f732d36396136322e636c6f756466756e6374696f6e732e6e65742f6170702f706f706f2f746f6b656e2f000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101f95760003560e01c8063715018a61161010d578063c4ae3168116100a0578063dc33e6811161006f578063dc33e68114610577578063e97800cb14610597578063e985e9c5146105b7578063f2fde38b14610600578063f4da18461461062057600080fd5b8063c4ae31681461050c578063c87b56dd14610521578063cbce4c9714610541578063d5abeb011461056157600080fd5b8063a0712d68116100dc578063a0712d681461048b578063a22cb4651461049e578063b88d4fde146104be578063bbb89744146104de57600080fd5b8063715018a614610423578063729ad39e146104385780638da5cb5b1461045857806395d89b411461047657600080fd5b806341827f13116101905780635c975abb1161015f5780635c975abb146103895780636352211e146103a357806368570bd6146103c35780636f8b44b0146103e357806370a082311461040357600080fd5b806341827f131461031457806342842e0e1461032957806344a0d68a1461034957806355f804b31461036957600080fd5b806313faede6116101cc57806313faede6146102af57806318160ddd146102d357806323b872dd146102ec5780633ccfd60b1461030c57600080fd5b806301ffc9a7146101fe57806306fdde0314610233578063081812fc14610255578063095ea7b31461028d575b600080fd5b34801561020a57600080fd5b5061021e6102193660046119f5565b610640565b60405190151581526020015b60405180910390f35b34801561023f57600080fd5b50610248610692565b60405161022a9190611b4d565b34801561026157600080fd5b50610275610270366004611a9c565b610724565b6040516001600160a01b03909116815260200161022a565b34801561029957600080fd5b506102ad6102a8366004611917565b610768565b005b3480156102bb57600080fd5b506102c5600d5481565b60405190815260200161022a565b3480156102df57600080fd5b50600154600054036102c5565b3480156102f857600080fd5b506102ad610307366004611823565b61083b565b6102ad61084b565b34801561032057600080fd5b506102486108ea565b34801561033557600080fd5b506102ad610344366004611823565b610978565b34801561035557600080fd5b506102ad610364366004611a9c565b610993565b34801561037557600080fd5b506102ad610384366004611a2f565b6109c2565b34801561039557600080fd5b50600e5461021e9060ff1681565b3480156103af57600080fd5b506102756103be366004611a9c565b610a03565b3480156103cf57600080fd5b506102ad6103de3660046117d5565b610a0e565b3480156103ef57600080fd5b506102ad6103fe366004611a9c565b610a5a565b34801561040f57600080fd5b506102c561041e3660046117d5565b610a89565b34801561042f57600080fd5b506102ad610ad8565b34801561044457600080fd5b506102ad610453366004611941565b610b0e565b34801561046457600080fd5b506008546001600160a01b0316610275565b34801561048257600080fd5b50610248610b80565b6102ad610499366004611a9c565b610b8f565b3480156104aa57600080fd5b506102ad6104b93660046118db565b610d2b565b3480156104ca57600080fd5b506102ad6104d936600461185f565b610dc1565b3480156104ea57600080fd5b50600b546104f99061ffff1681565b60405161ffff909116815260200161022a565b34801561051857600080fd5b506102ad610e0b565b34801561052d57600080fd5b5061024861053c366004611a9c565b610e49565b34801561054d57600080fd5b506102ad61055c366004611917565b610f14565b34801561056d57600080fd5b506102c5600c5481565b34801561058357600080fd5b506102c56105923660046117d5565b610f48565b3480156105a357600080fd5b506102ad6105b2366004611a78565b610f73565b3480156105c357600080fd5b5061021e6105d23660046117f0565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561060c57600080fd5b506102ad61061b3660046117d5565b610fb5565b34801561062c57600080fd5b506102ad61063b366004611917565b61104d565b60006301ffc9a760e01b6001600160e01b03198316148061067157506380ac58cd60e01b6001600160e01b03198316145b8061068c5750635b5e139f60e01b6001600160e01b03198316145b92915050565b6060600280546106a190611c54565b80601f01602080910402602001604051908101604052809291908181526020018280546106cd90611c54565b801561071a5780601f106106ef5761010080835404028352916020019161071a565b820191906000526020600020905b8154815290600101906020018083116106fd57829003601f168201915b5050505050905090565b600061072f826110c0565b61074c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610773826110e7565b9050806001600160a01b0316836001600160a01b031614156107a85760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146107df576107c281336105d2565b6107df576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b610846838383611148565b505050565b6008546001600160a01b0316331461087e5760405162461bcd60e51b815260040161087590611b60565b60405180910390fd5b604051600090734223f5e2827d72072b13c0ceb348132c2386d6989047908381818185875af1925050503d80600081146108d4576040519150601f19603f3d011682016040523d82523d6000602084013e6108d9565b606091505b50509050806108e757600080fd5b50565b600a80546108f790611c54565b80601f016020809104026020016040519081016040528092919081815260200182805461092390611c54565b80156109705780601f1061094557610100808354040283529160200191610970565b820191906000526020600020905b81548152906001019060200180831161095357829003601f168201915b505050505081565b61084683838360405180602001604052806000815250610dc1565b6008546001600160a01b031633146109bd5760405162461bcd60e51b815260040161087590611b60565b600d55565b6008546001600160a01b031633146109ec5760405162461bcd60e51b815260040161087590611b60565b80516109ff90600a9060208401906116c8565b5050565b600061068c826110e7565b6008546001600160a01b03163314610a385760405162461bcd60e51b815260040161087590611b60565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b6008546001600160a01b03163314610a845760405162461bcd60e51b815260040161087590611b60565b600c55565b60006001600160a01b038216610ab2576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610b025760405162461bcd60e51b815260040161087590611b60565b610b0c60006112eb565b565b6008546001600160a01b03163314610b385760405162461bcd60e51b815260040161087590611b60565b60005b81518110156109ff576000828281518110610b5857610b58611cea565b60200260200101519050610b6d8160016110b6565b5080610b7881611c8f565b915050610b3b565b6060600380546106a190611c54565b6008546001600160a01b03163314610d2157600e5460ff1615610bb157600080fd5b60008111610c0d5760405162461bcd60e51b8152602060048201526024808201527f4d696e7420616d6f756e742073686f756c6420626520677265617465722074686044820152630616e20360e41b6064820152608401610875565b600b5461ffff16811115610c735760405162461bcd60e51b815260206004820152602760248201527f536f72727920796f752063616e74206d696e74207468697320616d6f756e74206044820152666174206f6e636560c81b6064820152608401610875565b600c5481610c846001546000540390565b610c8e9190611bc6565b1115610cd15760405162461bcd60e51b815260206004820152601260248201527145786365656473204d617820537570706c7960701b6044820152606401610875565b80600d54610cdf9190611bf2565b341015610d215760405162461bcd60e51b815260206004820152601060248201526f496e7375666669656e742066756e647360801b6044820152606401610875565b6108e733826110b6565b6001600160a01b038216331415610d555760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610dcc848484611148565b6001600160a01b0383163b15610e0557610de88484848461133d565b610e05576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610e355760405162461bcd60e51b815260040161087590611b60565b600e805460ff19811660ff90911615179055565b6060610e54826110c0565b610eb85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610875565b6000610ec2611435565b90506000815111610ee25760405180602001604052806000815250610f0d565b80610eec84611444565b604051602001610efd929190611ae1565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610f3e5760405162461bcd60e51b815260040161087590611b60565b6109ff82826110b6565b6001600160a01b0381166000908152600560205260408082205467ffffffffffffffff911c1661068c565b6008546001600160a01b03163314610f9d5760405162461bcd60e51b815260040161087590611b60565b600b805461ffff191661ffff92909216919091179055565b6008546001600160a01b03163314610fdf5760405162461bcd60e51b815260040161087590611b60565b6001600160a01b0381166110445760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610875565b6108e7816112eb565b6009546001600160a01b031633146110b65760405162461bcd60e51b815260206004820152602660248201527f536f72727920796f7520646f6e742068617665207065726d697373696f6e20746044820152651bc81b5a5b9d60d21b6064820152608401610875565b6109ff8282611542565b600080548210801561068c575050600090815260046020526040902054600160e01b161590565b60008160005481101561112f57600081815260046020526040902054600160e01b811661112d575b80610f0d57506000190160008181526004602052604090205461110f565b505b604051636f96cda160e11b815260040160405180910390fd5b6000611153826110e7565b9050836001600160a01b0316816001600160a01b0316146111865760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806111a457506111a485336105d2565b806111bf5750336111b484610724565b6001600160a01b0316145b9050806111df57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661120657604051633a954ecd60e21b815260040160405180910390fd5b600083815260066020908152604080832080546001600160a01b03191690556001600160a01b038881168452600583528184208054600019019055871683528083208054600101905585835260049091529020600160e11b4260a01b8617811790915582166112a357600183016000818152600460205260409020546112a15760005481146112a15760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611372903390899088908890600401611b10565b602060405180830381600087803b15801561138c57600080fd5b505af19250505080156113bc575060408051601f3d908101601f191682019092526113b991810190611a12565b60015b611417573d8080156113ea576040519150601f19603f3d011682016040523d82523d6000602084013e6113ef565b606091505b50805161140f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a80546106a190611c54565b6060816114685750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611492578061147c81611c8f565b915061148b9050600a83611bde565b915061146c565b60008167ffffffffffffffff8111156114ad576114ad611d00565b6040519080825280601f01601f1916602001820160405280156114d7576020820181803683370190505b5090505b841561142d576114ec600183611c11565b91506114f9600a86611caa565b611504906030611bc6565b60f81b81838151811061151957611519611cea565b60200101906001600160f81b031916908160001a90535061153b600a86611bde565b94506114db565b6109ff8282604051806020016040528060008152506000546001600160a01b03841661158057604051622e076360e81b815260040160405180910390fd5b8261159e5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611673575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461163c600087848060010195508761133d565b611659576040516368d2bf6b60e11b815260040160405180910390fd5b8082106115f157826000541461166e57600080fd5b6116b8565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611674575b506000908155610e059085838684565b8280546116d490611c54565b90600052602060002090601f0160209004810192826116f6576000855561173c565b82601f1061170f57805160ff191683800117855561173c565b8280016001018555821561173c579182015b8281111561173c578251825591602001919060010190611721565b5061174892915061174c565b5090565b5b80821115611748576000815560010161174d565b600067ffffffffffffffff83111561177b5761177b611d00565b61178e601f8401601f1916602001611b95565b90508281528383830111156117a257600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146117d057600080fd5b919050565b6000602082840312156117e757600080fd5b610f0d826117b9565b6000806040838503121561180357600080fd5b61180c836117b9565b915061181a602084016117b9565b90509250929050565b60008060006060848603121561183857600080fd5b611841846117b9565b925061184f602085016117b9565b9150604084013590509250925092565b6000806000806080858703121561187557600080fd5b61187e856117b9565b935061188c602086016117b9565b925060408501359150606085013567ffffffffffffffff8111156118af57600080fd5b8501601f810187136118c057600080fd5b6118cf87823560208401611761565b91505092959194509250565b600080604083850312156118ee57600080fd5b6118f7836117b9565b91506020830135801515811461190c57600080fd5b809150509250929050565b6000806040838503121561192a57600080fd5b611933836117b9565b946020939093013593505050565b6000602080838503121561195457600080fd5b823567ffffffffffffffff8082111561196c57600080fd5b818501915085601f83011261198057600080fd5b81358181111561199257611992611d00565b8060051b91506119a3848301611b95565b8181528481019084860184860187018a10156119be57600080fd5b600095505b838610156119e8576119d4816117b9565b8352600195909501949186019186016119c3565b5098975050505050505050565b600060208284031215611a0757600080fd5b8135610f0d81611d16565b600060208284031215611a2457600080fd5b8151610f0d81611d16565b600060208284031215611a4157600080fd5b813567ffffffffffffffff811115611a5857600080fd5b8201601f81018413611a6957600080fd5b61142d84823560208401611761565b600060208284031215611a8a57600080fd5b813561ffff81168114610f0d57600080fd5b600060208284031215611aae57600080fd5b5035919050565b60008151808452611acd816020860160208601611c28565b601f01601f19169290920160200192915050565b60008351611af3818460208801611c28565b835190830190611b07818360208801611c28565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b4390830184611ab5565b9695505050505050565b602081526000610f0d6020830184611ab5565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f1916810167ffffffffffffffff81118282101715611bbe57611bbe611d00565b604052919050565b60008219821115611bd957611bd9611cbe565b500190565b600082611bed57611bed611cd4565b500490565b6000816000190483118215151615611c0c57611c0c611cbe565b500290565b600082821015611c2357611c23611cbe565b500390565b60005b83811015611c43578181015183820152602001611c2b565b83811115610e055750506000910152565b600181811c90821680611c6857607f821691505b60208210811415611c8957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611ca357611ca3611cbe565b5060010190565b600082611cb957611cb9611cd4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108e757600080fdfea264697066735822122044cbeaf2af06f67f014534668d8495d846307e510ef655cd7cb037b112f226b664736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004268747470733a2f2f75732d63656e7472616c312d6d6f666f732d36396136322e636c6f756466756e6374696f6e732e6e65742f6170702f706f706f2f746f6b656e2f000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _baseUrl (string): https://us-central1-mofos-69a62.cloudfunctions.net/app/popo/token/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000042
Arg [2] : 68747470733a2f2f75732d63656e7472616c312d6d6f666f732d36396136322e
Arg [3] : 636c6f756466756e6374696f6e732e6e65742f6170702f706f706f2f746f6b65
Arg [4] : 6e2f000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

44491:3688:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18734:615;;;;;;;;;;-1:-1:-1;18734:615:0;;;;;:::i;:::-;;:::i;:::-;;;6876:14:1;;6869:22;6851:41;;6839:2;6824:18;18734:615:0;;;;;;;;23747:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25815:204::-;;;;;;;;;;-1:-1:-1;25815:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6174:32:1;;;6156:51;;6144:2;6129:18;25815:204:0;6010:203:1;25275:474:0;;;;;;;;;;-1:-1:-1;25275:474:0;;;;;:::i;:::-;;:::i;:::-;;44810:32;;;;;;;;;;;;;;;;;;;10562:25:1;;;10550:2;10535:18;44810:32:0;10416:177:1;17788:315:0;;;;;;;;;;-1:-1:-1;18054:12:0;;17841:7;18038:13;:28;17788:315;;26701:170;;;;;;;;;;-1:-1:-1;26701:170:0;;;;;:::i;:::-;;:::i;47986:190::-;;;:::i;44611:24::-;;;;;;;;;;;;;:::i;26942:185::-;;;;;;;;;;-1:-1:-1;26942:185:0;;;;;:::i;:::-;;:::i;47311:86::-;;;;;;;;;;-1:-1:-1;47311:86:0;;;;;:::i;:::-;;:::i;47650:107::-;;;;;;;;;;-1:-1:-1;47650:107:0;;;;;:::i;:::-;;:::i;44866:26::-;;;;;;;;;;-1:-1:-1;44866:26:0;;;;;;;;23536:144;;;;;;;;;;-1:-1:-1;23536:144:0;;;;;:::i;:::-;;:::i;45104:119::-;;;;;;;;;;-1:-1:-1;45104:119:0;;;;;:::i;:::-;;:::i;47548:94::-;;;;;;;;;;-1:-1:-1;47548:94:0;;;;;:::i;:::-;;:::i;19413:224::-;;;;;;;;;;-1:-1:-1;19413:224:0;;;;;:::i;:::-;;:::i;4764:103::-;;;;;;;;;;;;;:::i;46455:234::-;;;;;;;;;;-1:-1:-1;46455:234:0;;;;;:::i;:::-;;:::i;4113:87::-;;;;;;;;;;-1:-1:-1;4186:6:0;;-1:-1:-1;;;;;4186:6:0;4113:87;;23916:104;;;;;;;;;;;;;:::i;45694:634::-;;;;;;:::i;:::-;;:::i;26091:308::-;;;;;;;;;;-1:-1:-1;26091:308:0;;;;;:::i;:::-;;:::i;27198:396::-;;;;;;;;;;-1:-1:-1;27198:396:0;;;;;:::i;:::-;;:::i;44678:46::-;;;;;;;;;;-1:-1:-1;44678:46:0;;;;;;;;;;;10397:6:1;10385:19;;;10367:38;;10355:2;10340:18;44678:46:0;10223:188:1;47765:75:0;;;;;;;;;;;;;:::i;46816:487::-;;;;;;;;;;-1:-1:-1;46816:487:0;;;;;:::i;:::-;;:::i;46336:111::-;;;;;;;;;;-1:-1:-1;46336:111:0;;;;;:::i;:::-;;:::i;44756:31::-;;;;;;;;;;;;;;;;45559:113;;;;;;;;;;-1:-1:-1;45559:113:0;;;;;:::i;:::-;;:::i;47405:129::-;;;;;;;;;;-1:-1:-1;47405:129:0;;;;;:::i;:::-;;:::i;26470:164::-;;;;;;;;;;-1:-1:-1;26470:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;26591:25:0;;;26567:4;26591:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26470:164;5022:201;;;;;;;;;;-1:-1:-1;5022:201:0;;;;;:::i;:::-;;:::i;45301:250::-;;;;;;;;;;-1:-1:-1;45301:250:0;;;;;:::i;:::-;;:::i;18734:615::-;18819:4;-1:-1:-1;;;;;;;;;19119:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;19196:25:0;;;19119:102;:179;;;-1:-1:-1;;;;;;;;;;19273:25:0;;;19119:179;19099:199;18734:615;-1:-1:-1;;18734:615:0:o;23747:100::-;23801:13;23834:5;23827:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23747:100;:::o;25815:204::-;25883:7;25908:16;25916:7;25908;:16::i;:::-;25903:64;;25933:34;;-1:-1:-1;;;25933:34:0;;;;;;;;;;;25903:64;-1:-1:-1;25987:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25987:24:0;;25815:204::o;25275:474::-;25348:13;25380:27;25399:7;25380:18;:27::i;:::-;25348:61;;25430:5;-1:-1:-1;;;;;25424:11:0;:2;-1:-1:-1;;;;;25424:11:0;;25420:48;;;25444:24;;-1:-1:-1;;;25444:24:0;;;;;;;;;;;25420:48;41918:10;-1:-1:-1;;;;;25485:28:0;;;25481:175;;25533:44;25550:5;41918:10;26470:164;:::i;25533:44::-;25528:128;;25605:35;;-1:-1:-1;;;25605:35:0;;;;;;;;;;;25528:128;25668:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;25668:29:0;-1:-1:-1;;;;;25668:29:0;;;;;;;;;25713:28;;25668:24;;25713:28;;;;;;;25337:412;25275:474;;:::o;26701:170::-;26835:28;26845:4;26851:2;26855:7;26835:9;:28::i;:::-;26701:170;;;:::o;47986:190::-;4186:6;;-1:-1:-1;;;;;4186:6:0;41918:10;4333:23;4325:68;;;;-1:-1:-1;;;4325:68:0;;;;;;;:::i;:::-;;;;;;;;;48056:90:::1;::::0;48043:7:::1;::::0;48064:42:::1;::::0;48120:21:::1;::::0;48043:7;48056:90;48043:7;48056:90;48120:21;48064:42;48056:90:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48042:104;;;48165:2;48157:11;;;::::0;::::1;;48031:145;47986:190::o:0;44611:24::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26942:185::-;27080:39;27097:4;27103:2;27107:7;27080:39;;;;;;;;;;;;:16;:39::i;47311:86::-;4186:6;;-1:-1:-1;;;;;4186:6:0;41918:10;4333:23;4325:68;;;;-1:-1:-1;;;4325:68:0;;;;;;;:::i;:::-;47374:4:::1;:15:::0;47311:86::o;47650:107::-;4186:6;;-1:-1:-1;;;;;4186:6:0;41918:10;4333:23;4325:68;;;;-1:-1:-1;;;4325:68:0;;;;;;;:::i;:::-;47725:24;;::::1;::::0;:10:::1;::::0;:24:::1;::::0;::::1;::::0;::::1;:::i;:::-;;47650:107:::0;:::o;23536:144::-;23600:7;23643:27;23662:7;23643:18;:27::i;45104:119::-;4186:6;;-1:-1:-1;;;;;4186:6:0;41918:10;4333:23;4325:68;;;;-1:-1:-1;;;4325:68:0;;;;;;;:::i;:::-;45187:16:::1;:28:::0;;-1:-1:-1;;;;;;45187:28:0::1;-1:-1:-1::0;;;;;45187:28:0;;;::::1;::::0;;;::::1;::::0;;45104:119::o;47548:94::-;4186:6;;-1:-1:-1;;;;;4186:6:0;41918:10;4333:23;4325:68;;;;-1:-1:-1;;;4325:68:0;;;;;;;:::i;:::-;47615:9:::1;:19:::0;47548:94::o;19413:224::-;19477:7;-1:-1:-1;;;;;19501:19:0;;19497:60;;19529:28;;-1:-1:-1;;;19529:28:0;;;;;;;;;;;19497:60;-1:-1:-1;;;;;;19575:25:0;;;;;:18;:25;;;;;;14752:13;19575:54;;19413:224::o;4764:103::-;4186:6;;-1:-1:-1;;;;;4186:6:0;41918:10;4333:23;4325:68;;;;-1:-1:-1;;;4325:68:0;;;;;;;:::i;:::-;4829:30:::1;4856:1;4829:18;:30::i;:::-;4764:103::o:0;46455:234::-;4186:6;;-1:-1:-1;;;;;4186:6:0;41918:10;4333:23;4325:68;;;;-1:-1:-1;;;4325:68:0;;;;;;;:::i;:::-;46541:9:::1;46536:146;46560:17;:24;46556:1;:28;46536:146;;;46606:10;46619:17;46637:1;46619:20;;;;;;;;:::i;:::-;;;;;;;46606:33;;46654:16;46664:2;46668:1;46654:9;:16::i;:::-;-1:-1:-1::0;46586:3:0;::::1;::::0;::::1;:::i;:::-;;;;46536:146;;23916:104:::0;23972:13;24005:7;23998:14;;;;;:::i;45694:634::-;4186:6;;-1:-1:-1;;;;;4186:6:0;45761:10;:21;45757:517;;45808:6;;;;45807:7;45799:16;;;;;;45852:1;45838:11;:15;45830:64;;;;-1:-1:-1;;;45830:64:0;;10020:2:1;45830:64:0;;;10002:21:1;10059:2;10039:18;;;10032:30;10098:34;10078:18;;;10071:62;-1:-1:-1;;;10149:18:1;;;10142:34;10193:19;;45830:64:0;9818:400:1;45830:64:0;45950:27;;;;45935:42;;;45909:143;;;;-1:-1:-1;;;45909:143:0;;8835:2:1;45909:143:0;;;8817:21:1;8874:2;8854:18;;;8847:30;8913:34;8893:18;;;8886:62;-1:-1:-1;;;8964:18:1;;;8957:37;9011:19;;45909:143:0;8633:403:1;45909:143:0;46124:9;;46109:11;46093:13;18054:12;;17841:7;18038:13;:28;;17788:315;46093:13;:27;;;;:::i;:::-;:40;;46067:120;;;;-1:-1:-1;;;46067:120:0;;7329:2:1;46067:120:0;;;7311:21:1;7368:2;7348:18;;;7341:30;-1:-1:-1;;;7387:18:1;;;7380:48;7445:18;;46067:120:0;7127:342:1;46067:120:0;46230:11;46223:4;;:18;;;;:::i;:::-;46210:9;:31;;46202:60;;;;-1:-1:-1;;;46202:60:0;;8490:2:1;46202:60:0;;;8472:21:1;8529:2;8509:18;;;8502:30;-1:-1:-1;;;8548:18:1;;;8541:46;8604:18;;46202:60:0;8288:340:1;46202:60:0;46286:34;46296:10;46308:11;46286:9;:34::i;26091:308::-;-1:-1:-1;;;;;26190:31:0;;41918:10;26190:31;26186:61;;;26230:17;;-1:-1:-1;;;26230:17:0;;;;;;;;;;;26186:61;41918:10;26260:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;26260:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;26260:60:0;;;;;;;;;;26336:55;;6851:41:1;;;26260:49:0;;41918:10;26336:55;;6824:18:1;26336:55:0;;;;;;;26091:308;;:::o;27198:396::-;27365:28;27375:4;27381:2;27385:7;27365:9;:28::i;:::-;-1:-1:-1;;;;;27408:14:0;;;:19;27404:183;;27447:56;27478:4;27484:2;27488:7;27497:5;27447:30;:56::i;:::-;27442:145;;27531:40;;-1:-1:-1;;;27531:40:0;;;;;;;;;;;27442:145;27198:396;;;;:::o;47765:75::-;4186:6;;-1:-1:-1;;;;;4186:6:0;41918:10;4333:23;4325:68;;;;-1:-1:-1;;;4325:68:0;;;;;;;:::i;:::-;47826:6:::1;::::0;;-1:-1:-1;;47816:16:0;::::1;47826:6;::::0;;::::1;47825:7;47816:16;::::0;;47765:75::o;46816:487::-;46934:13;46987:16;46995:7;46987;:16::i;:::-;46965:113;;;;-1:-1:-1;;;46965:113:0;;9604:2:1;46965:113:0;;;9586:21:1;9643:2;9623:18;;;9616:30;9682:34;9662:18;;;9655:62;-1:-1:-1;;;9733:18:1;;;9726:45;9788:19;;46965:113:0;9402:411:1;46965:113:0;47089:28;47120:10;:8;:10::i;:::-;47089:41;;47192:1;47167:14;47161:28;:32;:134;;;;;;;;;;;;;;;;;47237:14;47253:18;:7;:16;:18::i;:::-;47220:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47161:134;47141:154;46816:487;-1:-1:-1;;;46816:487:0:o;46336:111::-;4186:6;;-1:-1:-1;;;;;4186:6:0;41918:10;4333:23;4325:68;;;;-1:-1:-1;;;4325:68:0;;;;;;;:::i;:::-;46412:27:::1;46422:3;46427:11;46412:9;:27::i;45559:113::-:0;-1:-1:-1;;;;;19808:25:0;;45617:7;19808:25;;;:18;:25;;14889:2;19808:25;;;;14752:13;19808:49;;19807:80;45644:20;19719:176;47405:129;4186:6;;-1:-1:-1;;;;;4186:6:0;41918:10;4333:23;4325:68;;;;-1:-1:-1;;;4325:68:0;;;;;;;:::i;:::-;47489:27:::1;:37:::0;;-1:-1:-1;;47489:37:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;47405:129::o;5022:201::-;4186:6;;-1:-1:-1;;;;;4186:6:0;41918:10;4333:23;4325:68;;;;-1:-1:-1;;;4325:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5111:22:0;::::1;5103:73;;;::::0;-1:-1:-1;;;5103:73:0;;7676:2:1;5103:73:0::1;::::0;::::1;7658:21:1::0;7715:2;7695:18;;;7688:30;7754:34;7734:18;;;7727:62;-1:-1:-1;;;7805:18:1;;;7798:36;7851:19;;5103:73:0::1;7474:402:1::0;5103:73:0::1;5187:28;5206:8;5187:18;:28::i;45301:250::-:0;45418:16;;-1:-1:-1;;;;;45418:16:0;45404:10;:30;45382:118;;;;-1:-1:-1;;;45382:118:0;;8083:2:1;45382:118:0;;;8065:21:1;8122:2;8102:18;;;8095:30;8161:34;8141:18;;;8134:62;-1:-1:-1;;;8212:18:1;;;8205:36;8258:19;;45382:118:0;7881:402:1;45382:118:0;45511:32;45521:8;45531:11;45511:9;:32::i;27849:273::-;27906:4;27996:13;;27986:7;:23;27943:152;;;;-1:-1:-1;;28047:26:0;;;;:17;:26;;;;;;-1:-1:-1;;;28047:43:0;:48;;27849:273::o;21051:1129::-;21118:7;21153;21255:13;;21248:4;:20;21244:869;;;21293:14;21310:23;;;:17;:23;;;;;;-1:-1:-1;;;21399:23:0;;21395:699;;21918:113;21925:11;21918:113;;-1:-1:-1;;;21996:6:0;21978:25;;;;:17;:25;;;;;;21918:113;;21395:699;21270:843;21244:869;22141:31;;-1:-1:-1;;;22141:31:0;;;;;;;;;;;33088:2515;33203:27;33233;33252:7;33233:18;:27::i;:::-;33203:57;;33318:4;-1:-1:-1;;;;;33277:45:0;33293:19;-1:-1:-1;;;;;33277:45:0;;33273:86;;33331:28;;-1:-1:-1;;;33331:28:0;;;;;;;;;;;33273:86;33372:22;41918:10;-1:-1:-1;;;;;33398:27:0;;;;:87;;-1:-1:-1;33442:43:0;33459:4;41918:10;26470:164;:::i;33442:43::-;33398:147;;;-1:-1:-1;41918:10:0;33502:20;33514:7;33502:11;:20::i;:::-;-1:-1:-1;;;;;33502:43:0;;33398:147;33372:174;;33564:17;33559:66;;33590:35;;-1:-1:-1;;;33590:35:0;;;;;;;;;;;33559:66;-1:-1:-1;;;;;33640:16:0;;33636:52;;33665:23;;-1:-1:-1;;;33665:23:0;;;;;;;;;;;33636:52;33817:24;;;;:15;:24;;;;;;;;33810:31;;-1:-1:-1;;;;;;33810:31:0;;;-1:-1:-1;;;;;34209:24:0;;;;;:18;:24;;;;;34207:26;;-1:-1:-1;;34207:26:0;;;34278:22;;;;;;;34276:24;;-1:-1:-1;34276:24:0;;;34571:26;;;:17;:26;;;;;-1:-1:-1;;;34659:15:0;15406:3;34659:41;34617:84;;:128;;34571:174;;;34865:46;;34861:626;;34969:1;34959:11;;34937:19;35092:30;;;:17;:30;;;;;;35088:384;;35230:13;;35215:11;:28;35211:242;;35377:30;;;;:17;:30;;;;;:52;;;35211:242;34918:569;34861:626;35534:7;35530:2;-1:-1:-1;;;;;35515:27:0;35524:4;-1:-1:-1;;;;;35515:27:0;;;;;;;;;;;33192:2411;;33088:2515;;;:::o;5383:191::-;5476:6;;;-1:-1:-1;;;;;5493:17:0;;;-1:-1:-1;;;;;;5493:17:0;;;;;;;5526:40;;5476:6;;;5493:17;5476:6;;5526:40;;5457:16;;5526:40;5446:128;5383:191;:::o;39300:716::-;39484:88;;-1:-1:-1;;;39484:88:0;;39463:4;;-1:-1:-1;;;;;39484:45:0;;;;;:88;;41918:10;;39551:4;;39557:7;;39566:5;;39484:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39484:88:0;;;;;;;;-1:-1:-1;;39484:88:0;;;;;;;;;;;;:::i;:::-;;;39480:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39767:13:0;;39763:235;;39813:40;;-1:-1:-1;;;39813:40:0;;;;;;;;;;;39763:235;39956:6;39950:13;39941:6;39937:2;39933:15;39926:38;39480:529;-1:-1:-1;;;;;;39643:64:0;-1:-1:-1;;;39643:64:0;;-1:-1:-1;39480:529:0;39300:716;;;;;;:::o;46697:111::-;46757:13;46790:10;46783:17;;;;;:::i;399:723::-;455:13;676:10;672:53;;-1:-1:-1;;703:10:0;;;;;;;;;;;;-1:-1:-1;;;703:10:0;;;;;399:723::o;672:53::-;750:5;735:12;791:78;798:9;;791:78;;824:8;;;;:::i;:::-;;-1:-1:-1;847:10:0;;-1:-1:-1;855:2:0;847:10;;:::i;:::-;;;791:78;;;879:19;911:6;901:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;901:17:0;;879:39;;929:154;936:10;;929:154;;963:11;973:1;963:11;;:::i;:::-;;-1:-1:-1;1032:10:0;1040:2;1032:5;:10;:::i;:::-;1019:24;;:2;:24;:::i;:::-;1006:39;;989:6;996;989:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;989:56:0;;;;;;;;-1:-1:-1;1060:11:0;1069:2;1060:11;;:::i;:::-;;;929:154;;28206:104;28275:27;28285:2;28289:8;28275:27;;;;;;;;;;;;28806:20;28829:13;-1:-1:-1;;;;;28857:16:0;;28853:48;;28882:19;;-1:-1:-1;;;28882:19:0;;;;;;;;;;;28853:48;28916:13;28912:44;;28938:18;;-1:-1:-1;;;28938:18:0;;;;;;;;;;;28912:44;-1:-1:-1;;;;;29505:22:0;;;;;;:18;:22;;;;14889:2;29505:22;;;:70;;29543:31;29531:44;;29505:70;;;29818:31;;;:17;:31;;;;;29911:15;15406:3;29911:41;29869:84;;-1:-1:-1;29989:13:0;;15669:3;29974:56;29869:162;29818:213;;:31;;30112:23;;;;30156:14;:19;30152:635;;30196:313;30227:38;;30252:12;;-1:-1:-1;;;;;30227:38:0;;;30244:1;;30227:38;;30244:1;;30227:38;30293:69;30332:1;30336:2;30340:14;;;;;;30356:5;30293:30;:69::i;:::-;30288:174;;30398:40;;-1:-1:-1;;;30398:40:0;;;;;;;;;;;30288:174;30504:3;30489:12;:18;30196:313;;30590:12;30573:13;;:29;30569:43;;30604:8;;;30569:43;30152:635;;;30653:119;30684:40;;30709:14;;;;;-1:-1:-1;;;;;30684:40:0;;;30701:1;;30684:40;;30701:1;;30684:40;30767:3;30752:12;:18;30653:119;;30152:635;-1:-1:-1;30801:13:0;:28;;;30851:60;;30884:2;30888:12;30902:8;30851:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:186::-;662:6;715:2;703:9;694:7;690:23;686:32;683:52;;;731:1;728;721:12;683:52;754:29;773:9;754:29;:::i;794:260::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;;1010:38;1044:2;1033:9;1029:18;1010:38;:::i;:::-;1000:48;;794:260;;;;;:::o;1059:328::-;1136:6;1144;1152;1205:2;1193:9;1184:7;1180:23;1176:32;1173:52;;;1221:1;1218;1211:12;1173:52;1244:29;1263:9;1244:29;:::i;:::-;1234:39;;1292:38;1326:2;1315:9;1311:18;1292:38;:::i;:::-;1282:48;;1377:2;1366:9;1362:18;1349:32;1339:42;;1059:328;;;;;:::o;1392:666::-;1487:6;1495;1503;1511;1564:3;1552:9;1543:7;1539:23;1535:33;1532:53;;;1581:1;1578;1571:12;1532:53;1604:29;1623:9;1604:29;:::i;:::-;1594:39;;1652:38;1686:2;1675:9;1671:18;1652:38;:::i;:::-;1642:48;;1737:2;1726:9;1722:18;1709:32;1699:42;;1792:2;1781:9;1777:18;1764:32;1819:18;1811:6;1808:30;1805:50;;;1851:1;1848;1841:12;1805:50;1874:22;;1927:4;1919:13;;1915:27;-1:-1:-1;1905:55:1;;1956:1;1953;1946:12;1905:55;1979:73;2044:7;2039:2;2026:16;2021:2;2017;2013:11;1979:73;:::i;:::-;1969:83;;;1392:666;;;;;;;:::o;2063:347::-;2128:6;2136;2189:2;2177:9;2168:7;2164:23;2160:32;2157:52;;;2205:1;2202;2195:12;2157:52;2228:29;2247:9;2228:29;:::i;:::-;2218:39;;2307:2;2296:9;2292:18;2279:32;2354:5;2347:13;2340:21;2333:5;2330:32;2320:60;;2376:1;2373;2366:12;2320:60;2399:5;2389:15;;;2063:347;;;;;:::o;2415:254::-;2483:6;2491;2544:2;2532:9;2523:7;2519:23;2515:32;2512:52;;;2560:1;2557;2550:12;2512:52;2583:29;2602:9;2583:29;:::i;:::-;2573:39;2659:2;2644:18;;;;2631:32;;-1:-1:-1;;;2415:254:1:o;2674:963::-;2758:6;2789:2;2832;2820:9;2811:7;2807:23;2803:32;2800:52;;;2848:1;2845;2838:12;2800:52;2888:9;2875:23;2917:18;2958:2;2950:6;2947:14;2944:34;;;2974:1;2971;2964:12;2944:34;3012:6;3001:9;2997:22;2987:32;;3057:7;3050:4;3046:2;3042:13;3038:27;3028:55;;3079:1;3076;3069:12;3028:55;3115:2;3102:16;3137:2;3133;3130:10;3127:36;;;3143:18;;:::i;:::-;3189:2;3186:1;3182:10;3172:20;;3212:28;3236:2;3232;3228:11;3212:28;:::i;:::-;3274:15;;;3305:12;;;;3337:11;;;3367;;;3363:20;;3360:33;-1:-1:-1;3357:53:1;;;3406:1;3403;3396:12;3357:53;3428:1;3419:10;;3438:169;3452:2;3449:1;3446:9;3438:169;;;3509:23;3528:3;3509:23;:::i;:::-;3497:36;;3470:1;3463:9;;;;;3553:12;;;;3585;;3438:169;;;-1:-1:-1;3626:5:1;2674:963;-1:-1:-1;;;;;;;;2674:963:1:o;3642:245::-;3700:6;3753:2;3741:9;3732:7;3728:23;3724:32;3721:52;;;3769:1;3766;3759:12;3721:52;3808:9;3795:23;3827:30;3851:5;3827:30;:::i;3892:249::-;3961:6;4014:2;4002:9;3993:7;3989:23;3985:32;3982:52;;;4030:1;4027;4020:12;3982:52;4062:9;4056:16;4081:30;4105:5;4081:30;:::i;4146:450::-;4215:6;4268:2;4256:9;4247:7;4243:23;4239:32;4236:52;;;4284:1;4281;4274:12;4236:52;4324:9;4311:23;4357:18;4349:6;4346:30;4343:50;;;4389:1;4386;4379:12;4343:50;4412:22;;4465:4;4457:13;;4453:27;-1:-1:-1;4443:55:1;;4494:1;4491;4484:12;4443:55;4517:73;4582:7;4577:2;4564:16;4559:2;4555;4551:11;4517:73;:::i;4601:272::-;4659:6;4712:2;4700:9;4691:7;4687:23;4683:32;4680:52;;;4728:1;4725;4718:12;4680:52;4767:9;4754:23;4817:6;4810:5;4806:18;4799:5;4796:29;4786:57;;4839:1;4836;4829:12;4878:180;4937:6;4990:2;4978:9;4969:7;4965:23;4961:32;4958:52;;;5006:1;5003;4996:12;4958:52;-1:-1:-1;5029:23:1;;4878:180;-1:-1:-1;4878:180:1:o;5063:257::-;5104:3;5142:5;5136:12;5169:6;5164:3;5157:19;5185:63;5241:6;5234:4;5229:3;5225:14;5218:4;5211:5;5207:16;5185:63;:::i;:::-;5302:2;5281:15;-1:-1:-1;;5277:29:1;5268:39;;;;5309:4;5264:50;;5063:257;-1:-1:-1;;5063:257:1:o;5325:470::-;5504:3;5542:6;5536:13;5558:53;5604:6;5599:3;5592:4;5584:6;5580:17;5558:53;:::i;:::-;5674:13;;5633:16;;;;5696:57;5674:13;5633:16;5730:4;5718:17;;5696:57;:::i;:::-;5769:20;;5325:470;-1:-1:-1;;;;5325:470:1:o;6218:488::-;-1:-1:-1;;;;;6487:15:1;;;6469:34;;6539:15;;6534:2;6519:18;;6512:43;6586:2;6571:18;;6564:34;;;6634:3;6629:2;6614:18;;6607:31;;;6412:4;;6655:45;;6680:19;;6672:6;6655:45;:::i;:::-;6647:53;6218:488;-1:-1:-1;;;;;;6218:488:1:o;6903:219::-;7052:2;7041:9;7034:21;7015:4;7072:44;7112:2;7101:9;7097:18;7089:6;7072:44;:::i;9041:356::-;9243:2;9225:21;;;9262:18;;;9255:30;9321:34;9316:2;9301:18;;9294:62;9388:2;9373:18;;9041:356::o;10598:275::-;10669:2;10663:9;10734:2;10715:13;;-1:-1:-1;;10711:27:1;10699:40;;10769:18;10754:34;;10790:22;;;10751:62;10748:88;;;10816:18;;:::i;:::-;10852:2;10845:22;10598:275;;-1:-1:-1;10598:275:1:o;10878:128::-;10918:3;10949:1;10945:6;10942:1;10939:13;10936:39;;;10955:18;;:::i;:::-;-1:-1:-1;10991:9:1;;10878:128::o;11011:120::-;11051:1;11077;11067:35;;11082:18;;:::i;:::-;-1:-1:-1;11116:9:1;;11011:120::o;11136:168::-;11176:7;11242:1;11238;11234:6;11230:14;11227:1;11224:21;11219:1;11212:9;11205:17;11201:45;11198:71;;;11249:18;;:::i;:::-;-1:-1:-1;11289:9:1;;11136:168::o;11309:125::-;11349:4;11377:1;11374;11371:8;11368:34;;;11382:18;;:::i;:::-;-1:-1:-1;11419:9:1;;11309:125::o;11439:258::-;11511:1;11521:113;11535:6;11532:1;11529:13;11521:113;;;11611:11;;;11605:18;11592:11;;;11585:39;11557:2;11550:10;11521:113;;;11652:6;11649:1;11646:13;11643:48;;;-1:-1:-1;;11687:1:1;11669:16;;11662:27;11439:258::o;11702:380::-;11781:1;11777:12;;;;11824;;;11845:61;;11899:4;11891:6;11887:17;11877:27;;11845:61;11952:2;11944:6;11941:14;11921:18;11918:38;11915:161;;;11998:10;11993:3;11989:20;11986:1;11979:31;12033:4;12030:1;12023:15;12061:4;12058:1;12051:15;11915:161;;11702:380;;;:::o;12087:135::-;12126:3;-1:-1:-1;;12147:17:1;;12144:43;;;12167:18;;:::i;:::-;-1:-1:-1;12214:1:1;12203:13;;12087:135::o;12227:112::-;12259:1;12285;12275:35;;12290:18;;:::i;:::-;-1:-1:-1;12324:9:1;;12227:112::o;12344:127::-;12405:10;12400:3;12396:20;12393:1;12386:31;12436:4;12433:1;12426:15;12460:4;12457:1;12450:15;12476:127;12537:10;12532:3;12528:20;12525:1;12518:31;12568:4;12565:1;12558:15;12592:4;12589:1;12582:15;12608:127;12669:10;12664:3;12660:20;12657:1;12650:31;12700:4;12697:1;12690:15;12724:4;12721:1;12714:15;12740:127;12801:10;12796:3;12792:20;12789:1;12782:31;12832:4;12829:1;12822:15;12856:4;12853:1;12846:15;12872:131;-1:-1:-1;;;;;;12946:32:1;;12936:43;;12926:71;;12993:1;12990;12983:12

Swarm Source

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