ETH Price: $3,091.07 (+0.96%)
Gas: 5 Gwei

Token

SkellyTony (SKELLY)
 

Overview

Max Total Supply

4,265 SKELLY

Holders

1,297

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 SKELLY
0x2Acd446278Bcc5907EE46205b19D7f21ceb60e1b
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:
SkellyTony

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    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/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface 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);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @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: @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: contracts/ERC721A.sol



// William Giani <https://www.linkedin.com/in/william-giani>



pragma solidity ^0.8.4;











error ApprovalCallerNotOwnerNorApproved();

error ApprovalQueryForNonexistentToken();

error ApproveToCaller();

error ApprovalToCurrentOwner();

error BalanceQueryForZeroAddress();

error MintedQueryForZeroAddress();

error BurnedQueryForZeroAddress();

error AuxQueryForZeroAddress();

error MintToZeroAddress();

error MintZeroQuantity();

error OwnerIndexOutOfBounds();

error OwnerQueryForNonexistentToken();

error TokenIndexOutOfBounds();

error TransferCallerNotOwnerNorApproved();

error TransferFromIncorrectOwner();

error TransferToNonERC721ReceiverImplementer();

error TransferToZeroAddress();

error URIQueryForNonexistentToken();



/**

 * @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 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 Context, ERC165, IERC721, IERC721Metadata {

    using Address for address;

    using Strings for uint256;



    // Compiler will pack this into a single 256bit word.

    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;

    }



    // Compiler will pack this into a single 256bit word.

    struct AddressData {

        // Realistically, 2**64-1 is more than enough.

        uint64 balance;

        // Keeps track of mint count with minimal overhead for tokenomics.

        uint64 numberMinted;

        // Keeps track of burn count with minimal overhead for tokenomics.

        uint64 numberBurned;

        // For miscellaneous variable(s) pertaining to the address

        // (e.g. number of whitelist mint slots used).

        // If there are multiple variables, please pack them into a uint64.

        uint64 aux;

    }



    // The tokenId of the next token to be minted.

    uint256 internal _currentIndex;



    // The number of tokens burned.

    uint256 internal _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 ownershipOf implementation for details.

    mapping(uint256 => TokenOwnership) internal _ownerships;



    // Mapping owner address to address data

    mapping(address => AddressData) private _addressData;



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

    }



    /**

     * @dev See {IERC721Enumerable-totalSupply}.

     */

    function totalSupply() public view returns (uint256) {

        // Counter underflow is impossible as _burnCounter cannot be incremented

        // more than _currentIndex times

        unchecked {

            return _currentIndex - _burnCounter;

        }

    }



    /**

     * @dev See {IERC165-supportsInterface}.

     */

    function supportsInterface(bytes4 interfaceId)

        public

        view

        virtual

        override(ERC165, IERC165)

        returns (bool)

    {

        return

            interfaceId == type(IERC721).interfaceId ||

            interfaceId == type(IERC721Metadata).interfaceId ||

            super.supportsInterface(interfaceId);

    }



    /**

     * @dev See {IERC721-balanceOf}.

     */

    function balanceOf(address owner) public view override returns (uint256) {

        if (owner == address(0)) revert BalanceQueryForZeroAddress();

        return uint256(_addressData[owner].balance);

    }



    /**

     * Returns the number of tokens minted by `owner`.

     */

    function _numberMinted(address owner) internal view returns (uint256) {

        if (owner == address(0)) revert MintedQueryForZeroAddress();

        return uint256(_addressData[owner].numberMinted);

    }



    /**

     * Returns the number of tokens burned by or on behalf of `owner`.

     */

    function _numberBurned(address owner) internal view returns (uint256) {

        if (owner == address(0)) revert BurnedQueryForZeroAddress();

        return uint256(_addressData[owner].numberBurned);

    }



    /**

     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).

     */

    function _getAux(address owner) internal view returns (uint64) {

        if (owner == address(0)) revert AuxQueryForZeroAddress();

        return _addressData[owner].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 {

        if (owner == address(0)) revert AuxQueryForZeroAddress();

        _addressData[owner].aux = aux;

    }



    /**

     * 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)

    {

        uint256 curr = tokenId;



        unchecked {

            if (curr < _currentIndex) {

                TokenOwnership memory ownership = _ownerships[curr];

                if (!ownership.burned) {

                    if (ownership.addr != address(0)) {

                        return ownership;

                    }

                    // 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.

                    while (true) {

                        curr--;

                        ownership = _ownerships[curr];

                        if (ownership.addr != address(0)) {

                            return ownership;

                        }

                    }

                }

            }

        }

        revert OwnerQueryForNonexistentToken();

    }



    /**

     * @dev See {IERC721-ownerOf}.

     */

    function ownerOf(uint256 tokenId) public view override returns (address) {

        return ownershipOf(tokenId).addr;

    }



    /**

     * @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, tokenId.toString()))

                : "";

    }



    /**

     * @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 See {IERC721-approve}.

     */

    function approve(address to, uint256 tokenId) public override {

        address owner = ERC721A.ownerOf(tokenId);

        if (to == owner) revert ApprovalToCurrentOwner();



        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {

            revert ApprovalCallerNotOwnerNorApproved();

        }



        _approve(to, tokenId, owner);

    }



    /**

     * @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

        override

    {

        if (operator == _msgSender()) revert ApproveToCaller();



        _operatorApprovals[_msgSender()][operator] = approved;

        emit ApprovalForAll(_msgSender(), 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 (!_checkOnERC721Received(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 tokenId < _currentIndex && !_ownerships[tokenId].burned;

    }



    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 {

        _mint(to, quantity, _data, true);

    }



    /**

     * @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,

        bytes memory _data,

        bool safe

    ) 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 {

            _addressData[to].balance += uint64(quantity);

            _addressData[to].numberMinted += uint64(quantity);



            _ownerships[startTokenId].addr = to;

            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);



            uint256 updatedIndex = startTokenId;



            for (uint256 i; i < quantity; i++) {

                emit Transfer(address(0), to, updatedIndex);

                if (

                    safe &&

                    !_checkOnERC721Received(address(0), to, updatedIndex, _data)

                ) {

                    revert TransferToNonERC721ReceiverImplementer();

                }

                updatedIndex++;

            }



            _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 {

        TokenOwnership memory prevOwnership = ownershipOf(tokenId);



        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||

            isApprovedForAll(prevOwnership.addr, _msgSender()) ||

            getApproved(tokenId) == _msgSender());



        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

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



        _beforeTokenTransfers(from, to, tokenId, 1);



        // Clear approvals from the previous owner

        _approve(address(0), tokenId, prevOwnership.addr);



        // 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 {

            _addressData[from].balance -= 1;

            _addressData[to].balance += 1;



            _ownerships[tokenId].addr = to;

            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);



            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.

            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.

            uint256 nextTokenId = tokenId + 1;

            if (_ownerships[nextTokenId].addr == address(0)) {

                // This will suffice for checking _exists(nextTokenId),

                // as a burned slot cannot contain the zero address.

                if (nextTokenId < _currentIndex) {

                    _ownerships[nextTokenId].addr = prevOwnership.addr;

                    _ownerships[nextTokenId].startTimestamp = prevOwnership

                        .startTimestamp;

                }

            }

        }



        emit Transfer(from, to, tokenId);

        _afterTokenTransfers(from, to, tokenId, 1);

    }



    /**

     * @dev Destroys `tokenId`.

     * The approval is cleared when the token is burned.

     *

     * Requirements:

     *

     * - `tokenId` must exist.

     *

     * Emits a {Transfer} event.

     */

    function _burn(uint256 tokenId) internal virtual {

        TokenOwnership memory prevOwnership = ownershipOf(tokenId);



        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);



        // Clear approvals from the previous owner

        _approve(address(0), tokenId, prevOwnership.addr);



        // 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 {

            _addressData[prevOwnership.addr].balance -= 1;

            _addressData[prevOwnership.addr].numberBurned += 1;



            // Keep track of who burned the token, and the timestamp of burning.

            _ownerships[tokenId].addr = prevOwnership.addr;

            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            _ownerships[tokenId].burned = true;



            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.

            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.

            uint256 nextTokenId = tokenId + 1;

            if (_ownerships[nextTokenId].addr == address(0)) {

                // This will suffice for checking _exists(nextTokenId),

                // as a burned slot cannot contain the zero address.

                if (nextTokenId < _currentIndex) {

                    _ownerships[nextTokenId].addr = prevOwnership.addr;

                    _ownerships[nextTokenId].startTimestamp = prevOwnership

                        .startTimestamp;

                }

            }

        }



        emit Transfer(prevOwnership.addr, address(0), tokenId);

        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);



        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.

        unchecked {

            _burnCounter++;

        }

    }



    /**

     * @dev Approve `to` to operate on `tokenId`

     *

     * Emits a {Approval} event.

     */

    function _approve(

        address to,

        uint256 tokenId,

        address owner

    ) private {

        _tokenApprovals[tokenId] = to;

        emit Approval(owner, to, tokenId);

    }



    /**

     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.

     * The call is not executed if the target address is not a 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 _checkOnERC721Received(

        address from,

        address to,

        uint256 tokenId,

        bytes memory _data

    ) private returns (bool) {

        if (to.isContract()) {

            try

                IERC721Receiver(to).onERC721Received(

                    _msgSender(),

                    from,

                    tokenId,

                    _data

                )

            returns (bytes4 retval) {

                return retval == IERC721Receiver(to).onERC721Received.selector;

            } catch (bytes memory reason) {

                if (reason.length == 0) {

                    revert TransferToNonERC721ReceiverImplementer();

                } else {

                    assembly {

                        revert(add(32, reason), mload(reason))

                    }

                }

            }

        } else {

            return true;

        }

    }



    /**

     * @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 {}

}


// 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: contracts/SkellyTony.sol



//

// ╔═╗┬┌─┌─┐┬  ┬ ┬ ┬  ╔╦╗┌─┐┌┐┌┬ ┬

// ╚═╗├┴┐├┤ │  │ └┬┘   ║ │ ││││└┬┘

// ╚═╝┴ ┴└─┘┴─┘┴─┘┴    ╩ └─┘┘└┘ ┴

//

// Author: William Giani <https://www.linkedin.com/in/william-giani>

pragma solidity ^0.8.4;





contract SkellyTony is ERC721A, Ownable {

    constructor(

        string memory name_,

        string memory symbol_,

        string memory hiddenMetaDataURI_

    ) ERC721A(name_, symbol_) {

        hiddenMetadataUri = hiddenMetaDataURI_;

    }



    uint256 public maxSupply = 4444;

    uint256 public maxMintPerTx = 3;



    uint256 public protectedNumberOfMints = 222;

    uint256 public numberOfMintsByTheTeam = 0;



    bool public isRevealed = false;

    string public hiddenMetadataUri;

    string public uriPrefix;



    function setMaxSupply(uint256 _maxSupply) public onlyOwner {

        require(_maxSupply > 0, "Max supply must be greater than 0!");

        maxSupply = _maxSupply;

    }



    function setRevealed(bool _state) public onlyOwner {

        isRevealed = _state;

    }



    function setUriPrefix(string memory _uriPrefix) public onlyOwner {

        uriPrefix = _uriPrefix;

    }



    function setHiddenMetadataUri(string memory _hiddenMetadataUri)

        public

        onlyOwner

    {

        hiddenMetadataUri = _hiddenMetadataUri;

    }



    function _baseURI() internal view virtual override returns (string memory) {

        return uriPrefix;

    }



    function tokenURI(uint256 _tokenId)

        public

        view

        virtual

        override

        returns (string memory)

    {

        if (!_exists(_tokenId)) revert URIQueryForNonexistentToken();



        if (!isRevealed) {

            return hiddenMetadataUri;

        }



        string memory baseURI = _baseURI();

        return

            bytes(baseURI).length != 0

                ? string(

                    abi.encodePacked(

                        baseURI,

                        Strings.toString(_tokenId),

                        ".json"

                    )

                )

                : "";

    }



    function teamMint(uint256 quantity, address wallet) external onlyOwner {

        require(

            numberOfMintsByTheTeam + quantity <= protectedNumberOfMints,

            "Cannot mint more than 222 nfts for the team"

        );

        numberOfMintsByTheTeam += quantity;

        _safeMint(wallet, quantity);

    }



    function mint(uint256 quantity) external {

        require(

            quantity <= maxMintPerTx,

            "Cannot mint more than 3 nfts per tx"

        );



        require(

            (totalSupply() - numberOfMintsByTheTeam + quantity) <=

                (maxSupply - protectedNumberOfMints),

            "Max supply reached!"

        );



        _safeMint(msg.sender, quantity);

    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"string","name":"hiddenMetaDataURI_","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":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numberOfMintsByTheTeam","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":"protectedNumberOfMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"wallet","type":"address"}],"name":"teamMint","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":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

608060405261115c6009556003600a5560de600b556000600c55600d805460ff191690553480156200003057600080fd5b5060405162001da638038062001da6833981016040819052620000539162000271565b8251839083906200006c90600290602085019062000114565b5080516200008290600390602084019062000114565b5050506200009f62000099620000be60201b60201c565b620000c2565b8051620000b490600e90602084019062000114565b5050505062000355565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001229062000302565b90600052602060002090601f01602090048101928262000146576000855562000191565b82601f106200016157805160ff191683800117855562000191565b8280016001018555821562000191579182015b828111156200019157825182559160200191906001019062000174565b506200019f929150620001a3565b5090565b5b808211156200019f5760008155600101620001a4565b600082601f830112620001cc57600080fd5b81516001600160401b0380821115620001e957620001e96200033f565b604051601f8301601f19908116603f011681019082821181831017156200021457620002146200033f565b816040528381526020925086838588010111156200023157600080fd5b600091505b8382101562000255578582018301518183018401529082019062000236565b83821115620002675760008385830101525b9695505050505050565b6000806000606084860312156200028757600080fd5b83516001600160401b03808211156200029f57600080fd5b620002ad87838801620001ba565b94506020860151915080821115620002c457600080fd5b620002d287838801620001ba565b93506040860151915080821115620002e957600080fd5b50620002f886828701620001ba565b9150509250925092565b600181811c908216806200031757607f821691505b602082108114156200033957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611a4180620003656000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c80638da5cb5b11610104578063bfa457bc116100a2578063de7fcb1d11610071578063de7fcb1d146103af578063e0a80853146103b8578063e985e9c5146103cb578063f2fde38b1461040757600080fd5b8063bfa457bc14610377578063c87b56dd1461038a578063d5abeb011461039d578063dc17b0dc146103a657600080fd5b8063a0712d68116100de578063a0712d6814610336578063a22cb46514610349578063a45ba8e71461035c578063b88d4fde1461036457600080fd5b80638da5cb5b1461031457806395d89b41146103255780639f733f301461032d57600080fd5b80634fdd43cb1161017c5780636f8b44b01161014b5780636f8b44b0146102d357806370a08231146102e6578063715018a6146102f95780637ec4a6591461030157600080fd5b80634fdd43cb1461029857806354214f69146102ab57806362b99ad4146102b85780636352211e146102c057600080fd5b8063095ea7b3116101b8578063095ea7b31461024757806318160ddd1461025c57806323b872dd1461027257806342842e0e1461028557600080fd5b806301ffc9a7146101df57806306fdde0314610207578063081812fc1461021c575b600080fd5b6101f26101ed366004611715565b61041a565b60405190151581526020015b60405180910390f35b61020f61046c565b6040516101fe919061187c565b61022f61022a366004611798565b6104fe565b6040516001600160a01b0390911681526020016101fe565b61025a6102553660046116d0565b610542565b005b600154600054035b6040519081526020016101fe565b61025a6102803660046115ee565b6105d0565b61025a6102933660046115ee565b6105db565b61025a6102a636600461174f565b6105f6565b600d546101f29060ff1681565b61020f610640565b61022f6102ce366004611798565b6106ce565b61025a6102e1366004611798565b6106e0565b6102646102f43660046115a0565b61076a565b61025a6107b9565b61025a61030f36600461174f565b6107ef565b6008546001600160a01b031661022f565b61020f61082c565b610264600c5481565b61025a610344366004611798565b61083b565b61025a6103573660046116a6565b61091f565b61020f6109b5565b61025a61037236600461162a565b6109c2565b61025a6103853660046117b1565b6109fc565b61020f610398366004611798565b610abb565b61026460095481565b610264600b5481565b610264600a5481565b61025a6103c63660046116fa565b610bdc565b6101f26103d93660046115bb565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61025a6104153660046115a0565b610c19565b60006001600160e01b031982166380ac58cd60e01b148061044b57506001600160e01b03198216635b5e139f60e01b145b8061046657506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461047b90611933565b80601f01602080910402602001604051908101604052809291908181526020018280546104a790611933565b80156104f45780601f106104c9576101008083540402835291602001916104f4565b820191906000526020600020905b8154815290600101906020018083116104d757829003601f168201915b5050505050905090565b600061050982610cb1565b610526576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061054d826106ce565b9050806001600160a01b0316836001600160a01b031614156105825760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906105a257506105a081336103d9565b155b156105c0576040516367d9dca160e11b815260040160405180910390fd5b6105cb838383610cdc565b505050565b6105cb838383610d38565b6105cb838383604051806020016040528060008152506109c2565b6008546001600160a01b031633146106295760405162461bcd60e51b81526004016106209061188f565b60405180910390fd5b805161063c90600e906020840190611465565b5050565b600f805461064d90611933565b80601f016020809104026020016040519081016040528092919081815260200182805461067990611933565b80156106c65780601f1061069b576101008083540402835291602001916106c6565b820191906000526020600020905b8154815290600101906020018083116106a957829003601f168201915b505050505081565b60006106d982610f4e565b5192915050565b6008546001600160a01b0316331461070a5760405162461bcd60e51b81526004016106209061188f565b600081116107655760405162461bcd60e51b815260206004820152602260248201527f4d617820737570706c79206d7573742062652067726561746572207468616e20604482015261302160f01b6064820152608401610620565b600955565b60006001600160a01b038216610793576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146107e35760405162461bcd60e51b81526004016106209061188f565b6107ed6000611069565b565b6008546001600160a01b031633146108195760405162461bcd60e51b81526004016106209061188f565b805161063c90600f906020840190611465565b60606003805461047b90611933565b600a548111156108995760405162461bcd60e51b815260206004820152602360248201527f43616e6e6f74206d696e74206d6f7265207468616e2033206e66747320706572604482015262040e8f60eb1b6064820152608401610620565b600b546009546108a991906118f0565b81600c546108ba6001546000540390565b6108c491906118f0565b6108ce91906118c4565b11156109125760405162461bcd60e51b81526020600482015260136024820152724d617820737570706c7920726561636865642160681b6044820152606401610620565b61091c33826110bb565b50565b6001600160a01b0382163314156109495760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600e805461064d90611933565b6109cd848484610d38565b6109d9848484846110d5565b6109f6576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610a265760405162461bcd60e51b81526004016106209061188f565b600b5482600c54610a3791906118c4565b1115610a995760405162461bcd60e51b815260206004820152602b60248201527f43616e6e6f74206d696e74206d6f7265207468616e20323232206e667473206660448201526a6f7220746865207465616d60a81b6064820152608401610620565b81600c6000828254610aab91906118c4565b9091555061063c905081836110bb565b6060610ac682610cb1565b610ae357604051630a14c4b560e41b815260040160405180910390fd5b600d5460ff16610b7f57600e8054610afa90611933565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2690611933565b8015610b735780601f10610b4857610100808354040283529160200191610b73565b820191906000526020600020905b815481529060010190602001808311610b5657829003601f168201915b50505050509050919050565b6000610b896111e4565b9050805160001415610baa5760405180602001604052806000815250610bd5565b80610bb4846111f3565b604051602001610bc5929190611800565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610c065760405162461bcd60e51b81526004016106209061188f565b600d805460ff1916911515919091179055565b6008546001600160a01b03163314610c435760405162461bcd60e51b81526004016106209061188f565b6001600160a01b038116610ca85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610620565b61091c81611069565b6000805482108015610466575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610d4382610f4e565b80519091506000906001600160a01b0316336001600160a01b03161480610d7157508151610d7190336103d9565b80610d8c575033610d81846104fe565b6001600160a01b0316145b905080610dac57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610de15760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610e0857604051633a954ecd60e21b815260040160405180910390fd5b610e186000848460000151610cdc565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116610f0457600054811015610f04578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181018290529054829081101561105057600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061104e5780516001600160a01b031615610fe4579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611049579392505050565b610fe4565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61063c8282604051806020016040528060008152506112f1565b60006001600160a01b0384163b156111d857604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061111990339089908890889060040161183f565b602060405180830381600087803b15801561113357600080fd5b505af1925050508015611163575060408051601f3d908101601f1916820190925261116091810190611732565b60015b6111be573d808015611191576040519150601f19603f3d011682016040523d82523d6000602084013e611196565b606091505b5080516111b6576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506111dc565b5060015b949350505050565b6060600f805461047b90611933565b6060816112175750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611241578061122b8161196e565b915061123a9050600a836118dc565b915061121b565b60008167ffffffffffffffff81111561125c5761125c6119df565b6040519080825280601f01601f191660200182016040528015611286576020820181803683370190505b5090505b84156111dc5761129b6001836118f0565b91506112a8600a86611989565b6112b39060306118c4565b60f81b8183815181106112c8576112c86119c9565b60200101906001600160f81b031916908160001a9053506112ea600a866118dc565b945061128a565b6105cb83838360016000546001600160a01b03851661132257604051622e076360e81b815260040160405180910390fd5b836113405760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526004909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b8581101561145c5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611432575061143060008884886110d5565b155b15611450576040516368d2bf6b60e11b815260040160405180910390fd5b600191820191016113db565b50600055610f47565b82805461147190611933565b90600052602060002090601f01602090048101928261149357600085556114d9565b82601f106114ac57805160ff19168380011785556114d9565b828001600101855582156114d9579182015b828111156114d95782518255916020019190600101906114be565b506114e59291506114e9565b5090565b5b808211156114e557600081556001016114ea565b600067ffffffffffffffff80841115611519576115196119df565b604051601f8501601f19908116603f01168101908282118183101715611541576115416119df565b8160405280935085815286868601111561155a57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461158b57600080fd5b919050565b8035801515811461158b57600080fd5b6000602082840312156115b257600080fd5b610bd582611574565b600080604083850312156115ce57600080fd5b6115d783611574565b91506115e560208401611574565b90509250929050565b60008060006060848603121561160357600080fd5b61160c84611574565b925061161a60208501611574565b9150604084013590509250925092565b6000806000806080858703121561164057600080fd5b61164985611574565b935061165760208601611574565b925060408501359150606085013567ffffffffffffffff81111561167a57600080fd5b8501601f8101871361168b57600080fd5b61169a878235602084016114fe565b91505092959194509250565b600080604083850312156116b957600080fd5b6116c283611574565b91506115e560208401611590565b600080604083850312156116e357600080fd5b6116ec83611574565b946020939093013593505050565b60006020828403121561170c57600080fd5b610bd582611590565b60006020828403121561172757600080fd5b8135610bd5816119f5565b60006020828403121561174457600080fd5b8151610bd5816119f5565b60006020828403121561176157600080fd5b813567ffffffffffffffff81111561177857600080fd5b8201601f8101841361178957600080fd5b6111dc848235602084016114fe565b6000602082840312156117aa57600080fd5b5035919050565b600080604083850312156117c457600080fd5b823591506115e560208401611574565b600081518084526117ec816020860160208601611907565b601f01601f19169290920160200192915050565b60008351611812818460208801611907565b835190830190611826818360208801611907565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611872908301846117d4565b9695505050505050565b602081526000610bd560208301846117d4565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156118d7576118d761199d565b500190565b6000826118eb576118eb6119b3565b500490565b6000828210156119025761190261199d565b500390565b60005b8381101561192257818101518382015260200161190a565b838111156109f65750506000910152565b600181811c9082168061194757607f821691505b6020821081141561196857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156119825761198261199d565b5060010190565b600082611998576119986119b3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461091c57600080fdfea2646970667358221220d1e8721d4003409a26fff0f16153154101e25d5406734ae3f42b06367925e0ca64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a536b656c6c79546f6e79000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006534b454c4c5900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5a52536e445664637453337934786a534e64757631685652733544464d4d6f48746774466a766366353354330000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101da5760003560e01c80638da5cb5b11610104578063bfa457bc116100a2578063de7fcb1d11610071578063de7fcb1d146103af578063e0a80853146103b8578063e985e9c5146103cb578063f2fde38b1461040757600080fd5b8063bfa457bc14610377578063c87b56dd1461038a578063d5abeb011461039d578063dc17b0dc146103a657600080fd5b8063a0712d68116100de578063a0712d6814610336578063a22cb46514610349578063a45ba8e71461035c578063b88d4fde1461036457600080fd5b80638da5cb5b1461031457806395d89b41146103255780639f733f301461032d57600080fd5b80634fdd43cb1161017c5780636f8b44b01161014b5780636f8b44b0146102d357806370a08231146102e6578063715018a6146102f95780637ec4a6591461030157600080fd5b80634fdd43cb1461029857806354214f69146102ab57806362b99ad4146102b85780636352211e146102c057600080fd5b8063095ea7b3116101b8578063095ea7b31461024757806318160ddd1461025c57806323b872dd1461027257806342842e0e1461028557600080fd5b806301ffc9a7146101df57806306fdde0314610207578063081812fc1461021c575b600080fd5b6101f26101ed366004611715565b61041a565b60405190151581526020015b60405180910390f35b61020f61046c565b6040516101fe919061187c565b61022f61022a366004611798565b6104fe565b6040516001600160a01b0390911681526020016101fe565b61025a6102553660046116d0565b610542565b005b600154600054035b6040519081526020016101fe565b61025a6102803660046115ee565b6105d0565b61025a6102933660046115ee565b6105db565b61025a6102a636600461174f565b6105f6565b600d546101f29060ff1681565b61020f610640565b61022f6102ce366004611798565b6106ce565b61025a6102e1366004611798565b6106e0565b6102646102f43660046115a0565b61076a565b61025a6107b9565b61025a61030f36600461174f565b6107ef565b6008546001600160a01b031661022f565b61020f61082c565b610264600c5481565b61025a610344366004611798565b61083b565b61025a6103573660046116a6565b61091f565b61020f6109b5565b61025a61037236600461162a565b6109c2565b61025a6103853660046117b1565b6109fc565b61020f610398366004611798565b610abb565b61026460095481565b610264600b5481565b610264600a5481565b61025a6103c63660046116fa565b610bdc565b6101f26103d93660046115bb565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61025a6104153660046115a0565b610c19565b60006001600160e01b031982166380ac58cd60e01b148061044b57506001600160e01b03198216635b5e139f60e01b145b8061046657506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461047b90611933565b80601f01602080910402602001604051908101604052809291908181526020018280546104a790611933565b80156104f45780601f106104c9576101008083540402835291602001916104f4565b820191906000526020600020905b8154815290600101906020018083116104d757829003601f168201915b5050505050905090565b600061050982610cb1565b610526576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061054d826106ce565b9050806001600160a01b0316836001600160a01b031614156105825760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906105a257506105a081336103d9565b155b156105c0576040516367d9dca160e11b815260040160405180910390fd5b6105cb838383610cdc565b505050565b6105cb838383610d38565b6105cb838383604051806020016040528060008152506109c2565b6008546001600160a01b031633146106295760405162461bcd60e51b81526004016106209061188f565b60405180910390fd5b805161063c90600e906020840190611465565b5050565b600f805461064d90611933565b80601f016020809104026020016040519081016040528092919081815260200182805461067990611933565b80156106c65780601f1061069b576101008083540402835291602001916106c6565b820191906000526020600020905b8154815290600101906020018083116106a957829003601f168201915b505050505081565b60006106d982610f4e565b5192915050565b6008546001600160a01b0316331461070a5760405162461bcd60e51b81526004016106209061188f565b600081116107655760405162461bcd60e51b815260206004820152602260248201527f4d617820737570706c79206d7573742062652067726561746572207468616e20604482015261302160f01b6064820152608401610620565b600955565b60006001600160a01b038216610793576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146107e35760405162461bcd60e51b81526004016106209061188f565b6107ed6000611069565b565b6008546001600160a01b031633146108195760405162461bcd60e51b81526004016106209061188f565b805161063c90600f906020840190611465565b60606003805461047b90611933565b600a548111156108995760405162461bcd60e51b815260206004820152602360248201527f43616e6e6f74206d696e74206d6f7265207468616e2033206e66747320706572604482015262040e8f60eb1b6064820152608401610620565b600b546009546108a991906118f0565b81600c546108ba6001546000540390565b6108c491906118f0565b6108ce91906118c4565b11156109125760405162461bcd60e51b81526020600482015260136024820152724d617820737570706c7920726561636865642160681b6044820152606401610620565b61091c33826110bb565b50565b6001600160a01b0382163314156109495760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600e805461064d90611933565b6109cd848484610d38565b6109d9848484846110d5565b6109f6576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b03163314610a265760405162461bcd60e51b81526004016106209061188f565b600b5482600c54610a3791906118c4565b1115610a995760405162461bcd60e51b815260206004820152602b60248201527f43616e6e6f74206d696e74206d6f7265207468616e20323232206e667473206660448201526a6f7220746865207465616d60a81b6064820152608401610620565b81600c6000828254610aab91906118c4565b9091555061063c905081836110bb565b6060610ac682610cb1565b610ae357604051630a14c4b560e41b815260040160405180910390fd5b600d5460ff16610b7f57600e8054610afa90611933565b80601f0160208091040260200160405190810160405280929190818152602001828054610b2690611933565b8015610b735780601f10610b4857610100808354040283529160200191610b73565b820191906000526020600020905b815481529060010190602001808311610b5657829003601f168201915b50505050509050919050565b6000610b896111e4565b9050805160001415610baa5760405180602001604052806000815250610bd5565b80610bb4846111f3565b604051602001610bc5929190611800565b6040516020818303038152906040525b9392505050565b6008546001600160a01b03163314610c065760405162461bcd60e51b81526004016106209061188f565b600d805460ff1916911515919091179055565b6008546001600160a01b03163314610c435760405162461bcd60e51b81526004016106209061188f565b6001600160a01b038116610ca85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610620565b61091c81611069565b6000805482108015610466575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610d4382610f4e565b80519091506000906001600160a01b0316336001600160a01b03161480610d7157508151610d7190336103d9565b80610d8c575033610d81846104fe565b6001600160a01b0316145b905080610dac57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614610de15760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416610e0857604051633a954ecd60e21b815260040160405180910390fd5b610e186000848460000151610cdc565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116610f0457600054811015610f04578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080516060810182526000808252602082018190529181018290529054829081101561105057600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061104e5780516001600160a01b031615610fe4579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611049579392505050565b610fe4565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61063c8282604051806020016040528060008152506112f1565b60006001600160a01b0384163b156111d857604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061111990339089908890889060040161183f565b602060405180830381600087803b15801561113357600080fd5b505af1925050508015611163575060408051601f3d908101601f1916820190925261116091810190611732565b60015b6111be573d808015611191576040519150601f19603f3d011682016040523d82523d6000602084013e611196565b606091505b5080516111b6576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506111dc565b5060015b949350505050565b6060600f805461047b90611933565b6060816112175750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611241578061122b8161196e565b915061123a9050600a836118dc565b915061121b565b60008167ffffffffffffffff81111561125c5761125c6119df565b6040519080825280601f01601f191660200182016040528015611286576020820181803683370190505b5090505b84156111dc5761129b6001836118f0565b91506112a8600a86611989565b6112b39060306118c4565b60f81b8183815181106112c8576112c86119c9565b60200101906001600160f81b031916908160001a9053506112ea600a866118dc565b945061128a565b6105cb83838360016000546001600160a01b03851661132257604051622e076360e81b815260040160405180910390fd5b836113405760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526004909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b8581101561145c5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611432575061143060008884886110d5565b155b15611450576040516368d2bf6b60e11b815260040160405180910390fd5b600191820191016113db565b50600055610f47565b82805461147190611933565b90600052602060002090601f01602090048101928261149357600085556114d9565b82601f106114ac57805160ff19168380011785556114d9565b828001600101855582156114d9579182015b828111156114d95782518255916020019190600101906114be565b506114e59291506114e9565b5090565b5b808211156114e557600081556001016114ea565b600067ffffffffffffffff80841115611519576115196119df565b604051601f8501601f19908116603f01168101908282118183101715611541576115416119df565b8160405280935085815286868601111561155a57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461158b57600080fd5b919050565b8035801515811461158b57600080fd5b6000602082840312156115b257600080fd5b610bd582611574565b600080604083850312156115ce57600080fd5b6115d783611574565b91506115e560208401611574565b90509250929050565b60008060006060848603121561160357600080fd5b61160c84611574565b925061161a60208501611574565b9150604084013590509250925092565b6000806000806080858703121561164057600080fd5b61164985611574565b935061165760208601611574565b925060408501359150606085013567ffffffffffffffff81111561167a57600080fd5b8501601f8101871361168b57600080fd5b61169a878235602084016114fe565b91505092959194509250565b600080604083850312156116b957600080fd5b6116c283611574565b91506115e560208401611590565b600080604083850312156116e357600080fd5b6116ec83611574565b946020939093013593505050565b60006020828403121561170c57600080fd5b610bd582611590565b60006020828403121561172757600080fd5b8135610bd5816119f5565b60006020828403121561174457600080fd5b8151610bd5816119f5565b60006020828403121561176157600080fd5b813567ffffffffffffffff81111561177857600080fd5b8201601f8101841361178957600080fd5b6111dc848235602084016114fe565b6000602082840312156117aa57600080fd5b5035919050565b600080604083850312156117c457600080fd5b823591506115e560208401611574565b600081518084526117ec816020860160208601611907565b601f01601f19169290920160200192915050565b60008351611812818460208801611907565b835190830190611826818360208801611907565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611872908301846117d4565b9695505050505050565b602081526000610bd560208301846117d4565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082198211156118d7576118d761199d565b500190565b6000826118eb576118eb6119b3565b500490565b6000828210156119025761190261199d565b500390565b60005b8381101561192257818101518382015260200161190a565b838111156109f65750506000910152565b600181811c9082168061194757607f821691505b6020821081141561196857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156119825761198261199d565b5060010190565b600082611998576119986119b3565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461091c57600080fdfea2646970667358221220d1e8721d4003409a26fff0f16153154101e25d5406734ae3f42b06367925e0ca64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a536b656c6c79546f6e79000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006534b454c4c5900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d5a52536e445664637453337934786a534e64757631685652733544464d4d6f48746774466a766366353354330000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): SkellyTony
Arg [1] : symbol_ (string): SKELLY
Arg [2] : hiddenMetaDataURI_ (string): ipfs://QmZRSnDVdctS3y4xjSNduv1hVRs5DFMMoHtgtFjvcf53T3

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 536b656c6c79546f6e7900000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 534b454c4c590000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [8] : 697066733a2f2f516d5a52536e445664637453337934786a534e647576316856
Arg [9] : 52733544464d4d6f48746774466a766366353354330000000000000000000000


Deployed Bytecode Sourcemap

46927:2806:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25204:377;;;;;;:::i;:::-;;:::i;:::-;;;6329:14:1;;6322:22;6304:41;;6292:2;6277:18;25204:377:0;;;;;;;;28842:104;;;:::i;:::-;;;;;;;:::i;30554:263::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5627:32:1;;;5609:51;;5597:2;5582:18;30554:263:0;5463:203:1;30089:389:0;;;;;;:::i;:::-;;:::i;:::-;;24843:279;25087:12;;24887:7;25071:13;:28;24843:279;;;9061:25:1;;;9049:2;9034:18;24843:279:0;8915:177:1;31605:182:0;;;;;;:::i;:::-;;:::i;31868:197::-;;;;;;:::i;:::-;;:::i;47927:171::-;;;;;;:::i;:::-;;:::i;47395:30::-;;;;;;;;;47474:23;;;:::i;28637:128::-;;;;;;:::i;:::-;;:::i;47510:178::-;;;;;;:::i;:::-;;:::i;25655:212::-;;;;;;:::i;:::-;;:::i;45699:103::-;;;:::i;47805:110::-;;;;;;:::i;:::-;;:::i;45048:87::-;45121:6;;-1:-1:-1;;;;;45121:6:0;45048:87;;29025:108;;;:::i;47341:41::-;;;;;;49299:429;;;;;;:::i;:::-;;:::i;30899:318::-;;;;;;:::i;:::-;;:::i;47434:31::-;;;:::i;32146:362::-;;;;;;:::i;:::-;;:::i;48948:339::-;;;;;;:::i;:::-;;:::i;48236:700::-;;;;;;:::i;:::-;;:::i;47205:31::-;;;;;;47289:43;;;;;;47245:31;;;;;;47700:93;;;;;;:::i;:::-;;:::i;31298:230::-;;;;;;:::i;:::-;-1:-1:-1;;;;;31483:25:0;;;31450:4;31483:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31298:230;45957:201;;;;;;:::i;:::-;;:::i;25204:377::-;25361:4;-1:-1:-1;;;;;;25409:40:0;;-1:-1:-1;;;25409:40:0;;:107;;-1:-1:-1;;;;;;;25468:48:0;;-1:-1:-1;;;25468:48:0;25409:107;:162;;;-1:-1:-1;;;;;;;;;;13549:40:0;;;25535:36;25387:184;25204:377;-1:-1:-1;;25204:377:0:o;28842:104::-;28896:13;28931:5;28924:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28842:104;:::o;30554:263::-;30666:7;30700:16;30708:7;30700;:16::i;:::-;30695:64;;30725:34;;-1:-1:-1;;;30725:34:0;;;;;;;;;;;30695:64;-1:-1:-1;30783:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30783:24:0;;30554:263::o;30089:389::-;30164:13;30180:24;30196:7;30180:15;:24::i;:::-;30164:40;;30227:5;-1:-1:-1;;;;;30221:11:0;:2;-1:-1:-1;;;;;30221:11:0;;30217:48;;;30241:24;;-1:-1:-1;;;30241:24:0;;;;;;;;;;;30217:48;21118:10;-1:-1:-1;;;;;30286:21:0;;;;;;:63;;-1:-1:-1;30312:37:0;30329:5;21118:10;31298:230;:::i;30312:37::-;30311:38;30286:63;30282:142;;;30375:35;;-1:-1:-1;;;30375:35:0;;;;;;;;;;;30282:142;30440:28;30449:2;30453:7;30462:5;30440:8;:28::i;:::-;30151:327;30089:389;;:::o;31605:182::-;31749:28;31759:4;31765:2;31769:7;31749:9;:28::i;31868:197::-;32016:39;32033:4;32039:2;32043:7;32016:39;;;;;;;;;;;;:16;:39::i;47927:171::-;45121:6;;-1:-1:-1;;;;;45121:6:0;21118:10;45268:23;45260:68;;;;-1:-1:-1;;;45260:68:0;;;;;;;:::i;:::-;;;;;;;;;48050:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;:::-;;47927:171:::0;:::o;47474:23::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28637:128::-;28701:7;28730:20;28742:7;28730:11;:20::i;:::-;:25;;28637:128;-1:-1:-1;;28637:128:0:o;47510:178::-;45121:6;;-1:-1:-1;;;;;45121:6:0;21118:10;45268:23;45260:68;;;;-1:-1:-1;;;45260:68:0;;;;;;;:::i;:::-;47603:1:::1;47590:10;:14;47582:61;;;::::0;-1:-1:-1;;;47582:61:0;;8005:2:1;47582:61:0::1;::::0;::::1;7987:21:1::0;8044:2;8024:18;;;8017:30;8083:34;8063:18;;;8056:62;-1:-1:-1;;;8134:18:1;;;8127:32;8176:19;;47582:61:0::1;7803:398:1::0;47582:61:0::1;47656:9;:22:::0;47510:178::o;25655:212::-;25719:7;-1:-1:-1;;;;;25745:19:0;;25741:60;;25773:28;;-1:-1:-1;;;25773:28:0;;;;;;;;;;;25741:60;-1:-1:-1;;;;;;25829:19:0;;;;;:12;:19;;;;;:27;;;;25655:212::o;45699:103::-;45121:6;;-1:-1:-1;;;;;45121:6:0;21118:10;45268:23;45260:68;;;;-1:-1:-1;;;45260:68:0;;;;;;;:::i;:::-;45764:30:::1;45791:1;45764:18;:30::i;:::-;45699:103::o:0;47805:110::-;45121:6;;-1:-1:-1;;;;;45121:6:0;21118:10;45268:23;45260:68;;;;-1:-1:-1;;;45260:68:0;;;;;;;:::i;:::-;47883:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;29025:108::-:0;29081:13;29116:7;29109:14;;;;;:::i;49299:429::-;49389:12;;49377:8;:24;;49353:115;;;;-1:-1:-1;;;49353:115:0;;7601:2:1;49353:115:0;;;7583:21:1;7640:2;7620:18;;;7613:30;7679:34;7659:18;;;7652:62;-1:-1:-1;;;7730:18:1;;;7723:33;7773:19;;49353:115:0;7399:399:1;49353:115:0;49596:22;;49584:9;;:34;;;;:::i;:::-;49551:8;49526:22;;49510:13;25087:12;;24887:7;25071:13;:28;;24843:279;49510:13;:38;;;;:::i;:::-;:49;;;;:::i;:::-;49509:110;;49485:185;;;;-1:-1:-1;;;49485:185:0;;8769:2:1;49485:185:0;;;8751:21:1;8808:2;8788:18;;;8781:30;-1:-1:-1;;;8827:18:1;;;8820:49;8886:18;;49485:185:0;8567:343:1;49485:185:0;49687:31;49697:10;49709:8;49687:9;:31::i;:::-;49299:429;:::o;30899:318::-;-1:-1:-1;;;;;31021:24:0;;21118:10;31021:24;31017:54;;;31054:17;;-1:-1:-1;;;31054:17:0;;;;;;;;;;;31017:54;21118:10;31088:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31088:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31088:53:0;;;;;;;;;;31159:48;;6304:41:1;;;31088:42:0;;21118:10;31159:48;;6277:18:1;31159:48:0;;;;;;;30899:318;;:::o;47434:31::-;;;;;;;:::i;32146:362::-;32325:28;32335:4;32341:2;32345:7;32325:9;:28::i;:::-;32371:48;32394:4;32400:2;32404:7;32413:5;32371:22;:48::i;:::-;32366:133;;32445:40;;-1:-1:-1;;;32445:40:0;;;;;;;;;;;32366:133;32146:362;;;;:::o;48948:339::-;45121:6;;-1:-1:-1;;;;;45121:6:0;21118:10;45268:23;45260:68;;;;-1:-1:-1;;;45260:68:0;;;;;;;:::i;:::-;49093:22:::1;;49081:8;49056:22;;:33;;;;:::i;:::-;:59;;49032:158;;;::::0;-1:-1:-1;;;49032:158:0;;6782:2:1;49032:158:0::1;::::0;::::1;6764:21:1::0;6821:2;6801:18;;;6794:30;6860:34;6840:18;;;6833:62;-1:-1:-1;;;6911:18:1;;;6904:41;6962:19;;49032:158:0::1;6580:407:1::0;49032:158:0::1;49229:8;49203:22;;:34;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;49250:27:0::1;::::0;-1:-1:-1;49260:6:0;49268:8;49250:9:::1;:27::i;48236:700::-:0;48365:13;48405:17;48413:8;48405:7;:17::i;:::-;48400:60;;48431:29;;-1:-1:-1;;;48431:29:0;;;;;;;;;;;48400:60;48482:10;;;;48477:72;;48518:17;48511:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48236:700;;;:::o;48477:72::-;48565:21;48589:10;:8;:10::i;:::-;48565:34;;48640:7;48634:21;48659:1;48634:26;;:292;;;;;;;;;;;;;;;;;48758:7;48794:26;48811:8;48794:16;:26::i;:::-;48713:168;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48634:292;48612:314;48236:700;-1:-1:-1;;;48236:700:0:o;47700:93::-;45121:6;;-1:-1:-1;;;;;45121:6:0;21118:10;45268:23;45260:68;;;;-1:-1:-1;;;45260:68:0;;;;;;;:::i;:::-;47764:10:::1;:19:::0;;-1:-1:-1;;47764:19:0::1;::::0;::::1;;::::0;;;::::1;::::0;;47700:93::o;45957:201::-;45121:6;;-1:-1:-1;;;;;45121:6:0;21118:10;45268:23;45260:68;;;;-1:-1:-1;;;45260:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;46046:22:0;::::1;46038:73;;;::::0;-1:-1:-1;;;46038:73:0;;7194:2:1;46038:73:0::1;::::0;::::1;7176:21:1::0;7233:2;7213:18;;;7206:30;7272:34;7252:18;;;7245:62;-1:-1:-1;;;7323:18:1;;;7316:36;7369:19;;46038:73:0::1;6992:402:1::0;46038:73:0::1;46122:28;46141:8;46122:18;:28::i;32781:148::-:0;32838:4;32874:13;;32864:7;:23;:55;;;;-1:-1:-1;;32892:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;32892:27:0;;;;32891:28;;32781:148::o;40483:210::-;40608:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;40608:29:0;-1:-1:-1;;;;;40608:29:0;;;;;;;;;40655:28;;40608:24;;40655:28;;;;;;;40483:210;;;:::o;35721:2230::-;35846:35;35884:20;35896:7;35884:11;:20::i;:::-;35963:18;;35846:58;;-1:-1:-1;35921:22:0;;-1:-1:-1;;;;;35947:34:0;21118:10;-1:-1:-1;;;;;35947:34:0;;:103;;;-1:-1:-1;36017:18:0;;36000:50;;21118:10;31298:230;:::i;36000:50::-;35947:158;;;-1:-1:-1;21118:10:0;36069:20;36081:7;36069:11;:20::i;:::-;-1:-1:-1;;;;;36069:36:0;;35947:158;35921:185;;36128:17;36123:66;;36154:35;;-1:-1:-1;;;36154:35:0;;;;;;;;;;;36123:66;36228:4;-1:-1:-1;;;;;36206:26:0;:13;:18;;;-1:-1:-1;;;;;36206:26:0;;36202:67;;36241:28;;-1:-1:-1;;;36241:28:0;;;;;;;;;;;36202:67;-1:-1:-1;;;;;36286:16:0;;36282:52;;36311:23;;-1:-1:-1;;;36311:23:0;;;;;;;;;;;36282:52;36465:49;36482:1;36486:7;36495:13;:18;;;36465:8;:49::i;:::-;-1:-1:-1;;;;;36822:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;36822:31:0;;;;;;;-1:-1:-1;;36822:31:0;;;;;;;36870:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;36870:29:0;;;;;;;;;;;36920:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;36967:61:0;;;;-1:-1:-1;;;37012:15:0;36967:61;;;;;;;;;;;37310:11;;;37342:24;;;;;:29;37310:11;;37342:29;37338:487;;37573:13;;37559:11;:27;37555:253;;;37645:18;;;37613:24;;;:11;:24;;;;;;;;:50;;37730:56;;;;37688:98;;-1:-1:-1;;;37688:98:0;-1:-1:-1;;;;;;37688:98:0;;;-1:-1:-1;;;;;37613:50:0;;;37688:98;;;;;;;37555:253;36795:1043;37878:7;37874:2;-1:-1:-1;;;;;37859:27:0;37868:4;-1:-1:-1;;;;;37859:27:0;;;;;;;;;;;37899:42;35833:2118;;35721:2230;;;:::o;27394:1171::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;27608:13:0;;27546:7;;27601:20;;27597:895;;;27644:31;27678:17;;;:11;:17;;;;;;;;;27644:51;;;;;;;;;-1:-1:-1;;;;;27644:51:0;;;;-1:-1:-1;;;27644:51:0;;;;;;;;;;;-1:-1:-1;;;27644:51:0;;;;;;;;;;;;;;27716:759;;27768:14;;-1:-1:-1;;;;;27768:28:0;;27764:105;;27834:9;27394:1171;-1:-1:-1;;;27394:1171:0:o;27764:105::-;-1:-1:-1;;;28223:6:0;28270:17;;;;:11;:17;;;;;;;;;28258:29;;;;;;;;;-1:-1:-1;;;;;28258:29:0;;;;;-1:-1:-1;;;28258:29:0;;;;;;;;;;;-1:-1:-1;;;28258:29:0;;;;;;;;;;;;;28320:28;28316:113;;28390:9;27394:1171;-1:-1:-1;;;27394:1171:0:o;28316:113::-;28181:273;;;27623:869;27597:895;28524:31;;-1:-1:-1;;;28524:31:0;;;;;;;;;;;46318:191;46411:6;;;-1:-1:-1;;;;;46428:17:0;;;-1:-1:-1;;;;;;46428:17:0;;;;;;;46461:40;;46411:6;;;46428:17;46411:6;;46461:40;;46392:16;;46461:40;46381:128;46318:191;:::o;32941:108::-;33012:27;33022:2;33026:8;33012:27;;;;;;;;;;;;:9;:27::i;41282:979::-;41447:4;-1:-1:-1;;;;;41470:13:0;;3652:19;:23;41466:786;;41527:185;;-1:-1:-1;;;41527:185:0;;-1:-1:-1;;;;;41527:36:0;;;;;:185;;21118:10;;41625:4;;41654:7;;41686:5;;41527:185;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41527:185:0;;;;;;;;-1:-1:-1;;41527:185:0;;;;;;;;;;;;:::i;:::-;;;41504:687;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41907:13:0;;41903:271;;41959:40;;-1:-1:-1;;;41959:40:0;;;;;;;;;;;41903:271;42120:6;42114:13;42105:6;42101:2;42097:15;42090:38;41504:687;-1:-1:-1;;;;;;41780:55:0;-1:-1:-1;;;41780:55:0;;-1:-1:-1;41773:62:0;;41466:786;-1:-1:-1;42234:4:0;41466:786;41282:979;;;;;;:::o;48110:114::-;48170:13;48205:9;48198:16;;;;;:::i;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;33436:175;33569:32;33575:2;33579:8;33589:5;33596:4;34045:20;34068:13;-1:-1:-1;;;;;34098:16:0;;34094:48;;34123:19;;-1:-1:-1;;;34123:19:0;;;;;;;;;;;34094:48;34159:13;34155:44;;34181:18;;-1:-1:-1;;;34181:18:0;;;;;;;;;;;34155:44;-1:-1:-1;;;;;34566:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;34627:49:0;;34566:44;;;;;;;;34627:49;;;;-1:-1:-1;;34566:44:0;;;;;;34627:49;;;;;;;;;;;;;;;;34697:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;34749:66:0;;;;-1:-1:-1;;;34799:15:0;34749:66;;;;;;;;;;;34697:25;;34892:407;34912:8;34908:1;:12;34892:407;;;34953:38;;34978:12;;-1:-1:-1;;;;;34953:38:0;;;34970:1;;34953:38;;34970:1;;34953:38;35040:4;:91;;;;;35072:59;35103:1;35107:2;35111:12;35125:5;35072:22;:59::i;:::-;35071:60;35040:91;35012:235;;;35185:40;;-1:-1:-1;;;35185:40:0;;;;;;;;;;;35012:235;35267:14;;;;;34922:3;34892:407;;;-1:-1:-1;35319:13:0;:28;35373:60;32146:362;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:52;;;3096:1;3093;3086:12;3048:52;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:52;;;3544:1;3541;3534:12;3496:52;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:52;;;3798:1;3795;3788:12;3750:52;3838:9;3825:23;3871:18;3863:6;3860:30;3857:50;;;3903:1;3900;3893:12;3857:50;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:55:1;;4008:1;4005;3998:12;3957:55;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;-1:-1:-1;4266:23:1;;4115:180;-1:-1:-1;4115:180:1:o;4300:254::-;4368:6;4376;4429:2;4417:9;4408:7;4404:23;4400:32;4397:52;;;4445:1;4442;4435:12;4397:52;4481:9;4468:23;4458:33;;4510:38;4544:2;4533:9;4529:18;4510:38;:::i;4559:257::-;4600:3;4638:5;4632:12;4665:6;4660:3;4653:19;4681:63;4737:6;4730:4;4725:3;4721:14;4714:4;4707:5;4703:16;4681:63;:::i;:::-;4798:2;4777:15;-1:-1:-1;;4773:29:1;4764:39;;;;4805:4;4760:50;;4559:257;-1:-1:-1;;4559:257:1:o;4821:637::-;5101:3;5139:6;5133:13;5155:53;5201:6;5196:3;5189:4;5181:6;5177:17;5155:53;:::i;:::-;5271:13;;5230:16;;;;5293:57;5271:13;5230:16;5327:4;5315:17;;5293:57;:::i;:::-;-1:-1:-1;;;5372:20:1;;5401:22;;;5450:1;5439:13;;4821:637;-1:-1:-1;;;;4821:637:1:o;5671:488::-;-1:-1:-1;;;;;5940:15:1;;;5922:34;;5992:15;;5987:2;5972:18;;5965:43;6039:2;6024:18;;6017:34;;;6087:3;6082:2;6067:18;;6060:31;;;5865:4;;6108:45;;6133:19;;6125:6;6108:45;:::i;:::-;6100:53;5671:488;-1:-1:-1;;;;;;5671:488:1:o;6356:219::-;6505:2;6494:9;6487:21;6468:4;6525:44;6565:2;6554:9;6550:18;6542:6;6525:44;:::i;8206:356::-;8408:2;8390:21;;;8427:18;;;8420:30;8486:34;8481:2;8466:18;;8459:62;8553:2;8538:18;;8206:356::o;9097:128::-;9137:3;9168:1;9164:6;9161:1;9158:13;9155:39;;;9174:18;;:::i;:::-;-1:-1:-1;9210:9:1;;9097:128::o;9230:120::-;9270:1;9296;9286:35;;9301:18;;:::i;:::-;-1:-1:-1;9335:9:1;;9230:120::o;9355:125::-;9395:4;9423:1;9420;9417:8;9414:34;;;9428:18;;:::i;:::-;-1:-1:-1;9465:9:1;;9355:125::o;9485:258::-;9557:1;9567:113;9581:6;9578:1;9575:13;9567:113;;;9657:11;;;9651:18;9638:11;;;9631:39;9603:2;9596:10;9567:113;;;9698:6;9695:1;9692:13;9689:48;;;-1:-1:-1;;9733:1:1;9715:16;;9708:27;9485:258::o;9748:380::-;9827:1;9823:12;;;;9870;;;9891:61;;9945:4;9937:6;9933:17;9923:27;;9891:61;9998:2;9990:6;9987:14;9967:18;9964:38;9961:161;;;10044:10;10039:3;10035:20;10032:1;10025:31;10079:4;10076:1;10069:15;10107:4;10104:1;10097:15;9961:161;;9748:380;;;:::o;10133:135::-;10172:3;-1:-1:-1;;10193:17:1;;10190:43;;;10213:18;;:::i;:::-;-1:-1:-1;10260:1:1;10249:13;;10133:135::o;10273:112::-;10305:1;10331;10321:35;;10336:18;;:::i;:::-;-1:-1:-1;10370:9:1;;10273:112::o;10390:127::-;10451:10;10446:3;10442:20;10439:1;10432:31;10482:4;10479:1;10472:15;10506:4;10503:1;10496:15;10522:127;10583:10;10578:3;10574:20;10571:1;10564:31;10614:4;10611:1;10604:15;10638:4;10635:1;10628:15;10654:127;10715:10;10710:3;10706:20;10703:1;10696:31;10746:4;10743:1;10736:15;10770:4;10767:1;10760:15;10786:127;10847:10;10842:3;10838:20;10835:1;10828:31;10878:4;10875:1;10868:15;10902:4;10899:1;10892:15;10918:131;-1:-1:-1;;;;;;10992:32:1;;10982:43;;10972:71;;11039:1;11036;11029:12

Swarm Source

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