ETH Price: $3,444.69 (-1.24%)
Gas: 9 Gwei

Token

Birthday CHIPP (SB23)
 

Overview

Max Total Supply

49 SB23

Holders

47

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 SB23
0x0481197c534acec5ce163ffbd9b69d91cd0e2f3e
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:
SquadtsBirthday2023

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-26
*/

// SPDX-License-Identifier: MIT


// File: @openzeppelin/contracts/utils/Strings.sol
// OpenZeppelin Contracts v4.4.0 (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 v4.4.0 (utils/Address.sol)
pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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.0 (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.0 (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.0 (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.0 (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/IERC721Metadata.sol
// OpenZeppelin Contracts v4.4.0 (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.0 (utils/Context.sol)
pragma solidity ^0.8.0;

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

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


// File: @openzeppelin/contracts/token/ERC721/ERC721.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol)
pragma solidity ^0.8.0;

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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 {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _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 {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @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 {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}


// File: @openzeppelin/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)
pragma solidity ^0.8.0;

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

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

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

    /**
     * @dev 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/SquadtsBirthday2023.sol
pragma solidity ^0.8.19;

contract SquadtsBirthday2023 is ERC721, Ownable {
    using Strings for uint256;

    string private _metaDataURL = "";
    bool public isMintActive = true;

    uint256 constant REQUIRED_TOKEN_AMOUNT = 5;
    uint256 constant TOKEN_IDS_STARTS_AT = 1;
    uint256 tokenCount = 0;

    address constant contractAddress = 0xEEAF63F35B7c365AFf27015A9AA5d6e4b734962C;

    mapping(address => bool) public walletClaimed;

    // add "metaDataURL" to our constructor
    constructor(
        string memory name,
        string memory symbol,
        string memory metaDataURL
    ) ERC721(name, symbol) {
        setMetaDataURL(metaDataURL);
    }

    // Getters & Setters
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        return _metaDataURL;
    }
    function setMetaDataURL(string memory value) public onlyOwner {
        _metaDataURL = value;
    }
    function setMintActive(bool value) external onlyOwner {
        isMintActive = value;
    }
    function totalSupply() public view returns (uint256) {
        return tokenCount;
    }

    // Minting
    function mint() external {
        require(isMintActive, "Minting is inactive");
        require(!walletClaimed[msg.sender], "Wallet already claimed");
        require(ERC721(contractAddress).balanceOf(msg.sender) >= REQUIRED_TOKEN_AMOUNT, "Wallet does not own the required amount of SQUADT tokens");
        uint256 supply = totalSupply();
        walletClaimed[msg.sender] = true;
        tokenCount += 1;
        _safeMint(msg.sender, TOKEN_IDS_STARTS_AT + supply);
    }
    function gift(address to) external onlyOwner {
        uint256 supply = totalSupply();
        walletClaimed[to] = true;
        tokenCount += 1;
        _safeMint(to, TOKEN_IDS_STARTS_AT + supply);
    }

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

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"metaDataURL","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"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":[{"internalType":"address","name":"to","type":"address"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"value","type":"string"}],"name":"setMetaDataURL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"walletClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60a0604052600060809081526007906200001a908262000219565b506008805460ff1916600117905560006009553480156200003a57600080fd5b5060405162001f4a38038062001f4a8339810160408190526200005d9162000394565b828260006200006d838262000219565b5060016200007c828262000219565b5050506200009962000093620000ad60201b60201c565b620000b1565b620000a48162000103565b50505062000425565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620001625760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b600762000170828262000219565b5050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200019f57607f821691505b602082108103620001c057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200021457600081815260208120601f850160051c81016020861015620001ef5750805b601f850160051c820191505b818110156200021057828155600101620001fb565b5050505b505050565b81516001600160401b0381111562000235576200023562000174565b6200024d816200024684546200018a565b84620001c6565b602080601f8311600181146200028557600084156200026c5750858301515b600019600386901b1c1916600185901b17855562000210565b600085815260208120601f198616915b82811015620002b65788860151825594840194600190910190840162000295565b5085821015620002d55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082601f830112620002f757600080fd5b81516001600160401b038082111562000314576200031462000174565b604051601f8301601f19908116603f011681019082821181831017156200033f576200033f62000174565b816040528381526020925086838588010111156200035c57600080fd5b600091505b8382101562000380578582018301518183018401529082019062000361565b600093810190920192909252949350505050565b600080600060608486031215620003aa57600080fd5b83516001600160401b0380821115620003c257600080fd5b620003d087838801620002e5565b94506020860151915080821115620003e757600080fd5b620003f587838801620002e5565b935060408601519150808211156200040c57600080fd5b506200041b86828701620002e5565b9150509250925092565b611b1580620004356000396000f3fe60806040526004361061014b5760003560e01c8063715018a6116100b6578063c25d8f4d1161006f578063c25d8f4d1461037f578063c87b56dd146103af578063cbfc4bce146103cf578063e985e9c5146103ef578063ee1cc9441461040f578063f2fde38b1461042f57600080fd5b8063715018a6146102d75780638da5cb5b146102ec57806395d89b411461030a5780639d7b9a6c1461031f578063a22cb4651461033f578063b88d4fde1461035f57600080fd5b806323b872dd1161010857806323b872dd146102355780633ccfd60b1461025557806342842e0e1461025d5780635b92ac0d1461027d5780636352211e1461029757806370a08231146102b757600080fd5b806301ffc9a71461015057806306fdde0314610185578063081812fc146101a7578063095ea7b3146101df5780631249c58b1461020157806318160ddd14610216575b600080fd5b34801561015c57600080fd5b5061017061016b366004611504565b61044f565b60405190151581526020015b60405180910390f35b34801561019157600080fd5b5061019a6104a1565b60405161017c919061156e565b3480156101b357600080fd5b506101c76101c2366004611581565b610533565b6040516001600160a01b03909116815260200161017c565b3480156101eb57600080fd5b506101ff6101fa3660046115b6565b6105cd565b005b34801561020d57600080fd5b506101ff6106e2565b34801561022257600080fd5b506009545b60405190815260200161017c565b34801561024157600080fd5b506101ff6102503660046115e0565b6108c9565b6101ff6108fa565b34801561026957600080fd5b506101ff6102783660046115e0565b6109b4565b34801561028957600080fd5b506008546101709060ff1681565b3480156102a357600080fd5b506101c76102b2366004611581565b6109cf565b3480156102c357600080fd5b506102276102d236600461161c565b610a46565b3480156102e357600080fd5b506101ff610acd565b3480156102f857600080fd5b506006546001600160a01b03166101c7565b34801561031657600080fd5b5061019a610b03565b34801561032b57600080fd5b506101ff61033a3660046116c3565b610b12565b34801561034b57600080fd5b506101ff61035a36600461171c565b610b48565b34801561036b57600080fd5b506101ff61037a36600461174f565b610b53565b34801561038b57600080fd5b5061017061039a36600461161c565b600a6020526000908152604090205460ff1681565b3480156103bb57600080fd5b5061019a6103ca366004611581565b610b8b565b3480156103db57600080fd5b506101ff6103ea36600461161c565b610c9c565b3480156103fb57600080fd5b5061017061040a3660046117cb565b610d23565b34801561041b57600080fd5b506101ff61042a3660046117f5565b610d51565b34801561043b57600080fd5b506101ff61044a36600461161c565b610d8e565b60006001600160e01b031982166380ac58cd60e01b148061048057506001600160e01b03198216635b5e139f60e01b145b8061049b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546104b090611810565b80601f01602080910402602001604051908101604052809291908181526020018280546104dc90611810565b80156105295780601f106104fe57610100808354040283529160200191610529565b820191906000526020600020905b81548152906001019060200180831161050c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105b15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105d8826109cf565b9050806001600160a01b0316836001600160a01b0316036106455760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105a8565b336001600160a01b038216148061066157506106618133610d23565b6106d35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105a8565b6106dd8383610e26565b505050565b60085460ff1661072a5760405162461bcd60e51b81526020600482015260136024820152724d696e74696e6720697320696e61637469766560681b60448201526064016105a8565b336000908152600a602052604090205460ff16156107835760405162461bcd60e51b815260206004820152601660248201527515d85b1b195d08185b1c9958591e4818db185a5b595960521b60448201526064016105a8565b6040516370a0823160e01b815233600482015260059073eeaf63f35b7c365aff27015a9aa5d6e4b734962c906370a0823190602401602060405180830381865afa1580156107d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107f9919061184a565b101561086d5760405162461bcd60e51b815260206004820152603860248201527f57616c6c657420646f6573206e6f74206f776e2074686520726571756972656460448201527f20616d6f756e74206f662053515541445420746f6b656e73000000000000000060648201526084016105a8565b600061087860095490565b336000908152600a60205260408120805460ff191660019081179091556009805493945090929091906108ac908490611879565b909155506108c69050336108c1836001611879565b610e94565b50565b6108d33382610eae565b6108ef5760405162461bcd60e51b81526004016105a89061188c565b6106dd838383610f85565b6006546001600160a01b031633146109245760405162461bcd60e51b81526004016105a8906118dd565b6040514790600090339083908381818185875af1925050503d8060008114610968576040519150601f19603f3d011682016040523d82523d6000602084013e61096d565b606091505b50509050806109b05760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b60448201526064016105a8565b5050565b6106dd83838360405180602001604052806000815250610b53565b6000818152600260205260408120546001600160a01b03168061049b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105a8565b60006001600160a01b038216610ab15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105a8565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610af75760405162461bcd60e51b81526004016105a8906118dd565b610b016000611125565b565b6060600180546104b090611810565b6006546001600160a01b03163314610b3c5760405162461bcd60e51b81526004016105a8906118dd565b60076109b08282611960565b6109b0338383611177565b610b5d3383610eae565b610b795760405162461bcd60e51b81526004016105a89061188c565b610b8584848484611245565b50505050565b6000818152600260205260409020546060906001600160a01b0316610c0a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105a8565b60078054610c1790611810565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4390611810565b8015610c905780601f10610c6557610100808354040283529160200191610c90565b820191906000526020600020905b815481529060010190602001808311610c7357829003601f168201915b50505050509050919050565b6006546001600160a01b03163314610cc65760405162461bcd60e51b81526004016105a8906118dd565b6000610cd160095490565b6001600160a01b0383166000908152600a60205260408120805460ff19166001908117909155600980549394509092909190610d0e908490611879565b909155506109b09050826108c1836001611879565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6006546001600160a01b03163314610d7b5760405162461bcd60e51b81526004016105a8906118dd565b6008805460ff1916911515919091179055565b6006546001600160a01b03163314610db85760405162461bcd60e51b81526004016105a8906118dd565b6001600160a01b038116610e1d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105a8565b6108c681611125565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610e5b826109cf565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6109b0828260405180602001604052806000815250611278565b6000818152600260205260408120546001600160a01b0316610f275760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105a8565b6000610f32836109cf565b9050806001600160a01b0316846001600160a01b03161480610f6d5750836001600160a01b0316610f6284610533565b6001600160a01b0316145b80610f7d5750610f7d8185610d23565b949350505050565b826001600160a01b0316610f98826109cf565b6001600160a01b0316146110005760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105a8565b6001600160a01b0382166110625760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105a8565b61106d600082610e26565b6001600160a01b0383166000908152600360205260408120805460019290611096908490611a20565b90915550506001600160a01b03821660009081526003602052604081208054600192906110c4908490611879565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316036111d85760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105a8565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611250848484610f85565b61125c848484846112ab565b610b855760405162461bcd60e51b81526004016105a890611a33565b61128283836113ac565b61128f60008484846112ab565b6106dd5760405162461bcd60e51b81526004016105a890611a33565b60006001600160a01b0384163b156113a157604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906112ef903390899088908890600401611a85565b6020604051808303816000875af192505050801561132a575060408051601f3d908101601f1916820190925261132791810190611ac2565b60015b611387573d808015611358576040519150601f19603f3d011682016040523d82523d6000602084013e61135d565b606091505b50805160000361137f5760405162461bcd60e51b81526004016105a890611a33565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f7d565b506001949350505050565b6001600160a01b0382166114025760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105a8565b6000818152600260205260409020546001600160a01b0316156114675760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105a8565b6001600160a01b0382166000908152600360205260408120805460019290611490908490611879565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b0319811681146108c657600080fd5b60006020828403121561151657600080fd5b8135611521816114ee565b9392505050565b6000815180845260005b8181101561154e57602081850181015186830182015201611532565b506000602082860101526020601f19601f83011685010191505092915050565b6020815260006115216020830184611528565b60006020828403121561159357600080fd5b5035919050565b80356001600160a01b03811681146115b157600080fd5b919050565b600080604083850312156115c957600080fd5b6115d28361159a565b946020939093013593505050565b6000806000606084860312156115f557600080fd5b6115fe8461159a565b925061160c6020850161159a565b9150604084013590509250925092565b60006020828403121561162e57600080fd5b6115218261159a565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561166857611668611637565b604051601f8501601f19908116603f0116810190828211818310171561169057611690611637565b816040528093508581528686860111156116a957600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156116d557600080fd5b813567ffffffffffffffff8111156116ec57600080fd5b8201601f810184136116fd57600080fd5b610f7d8482356020840161164d565b803580151581146115b157600080fd5b6000806040838503121561172f57600080fd5b6117388361159a565b91506117466020840161170c565b90509250929050565b6000806000806080858703121561176557600080fd5b61176e8561159a565b935061177c6020860161159a565b925060408501359150606085013567ffffffffffffffff81111561179f57600080fd5b8501601f810187136117b057600080fd5b6117bf8782356020840161164d565b91505092959194509250565b600080604083850312156117de57600080fd5b6117e78361159a565b91506117466020840161159a565b60006020828403121561180757600080fd5b6115218261170c565b600181811c9082168061182457607f821691505b60208210810361184457634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561185c57600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561049b5761049b611863565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f8211156106dd57600081815260208120601f850160051c810160208610156119395750805b601f850160051c820191505b8181101561195857828155600101611945565b505050505050565b815167ffffffffffffffff81111561197a5761197a611637565b61198e816119888454611810565b84611912565b602080601f8311600181146119c357600084156119ab5750858301515b600019600386901b1c1916600185901b178555611958565b600085815260208120601f198616915b828110156119f2578886015182559484019460019091019084016119d3565b5085821015611a105787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b8181038181111561049b5761049b611863565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ab890830184611528565b9695505050505050565b600060208284031215611ad457600080fd5b8151611521816114ee56fea26469706673582212204088466a42a508ef86dfa75cf92ec67501054c07be92609d2fd043132735d29164736f6c63430008130033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000e426972746864617920434849505000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045342323300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f697066732e696f2f697066732f516d5131754a68586550394b416867513354755031466253555634734d43747264396263656e796852774b6e4c390000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061014b5760003560e01c8063715018a6116100b6578063c25d8f4d1161006f578063c25d8f4d1461037f578063c87b56dd146103af578063cbfc4bce146103cf578063e985e9c5146103ef578063ee1cc9441461040f578063f2fde38b1461042f57600080fd5b8063715018a6146102d75780638da5cb5b146102ec57806395d89b411461030a5780639d7b9a6c1461031f578063a22cb4651461033f578063b88d4fde1461035f57600080fd5b806323b872dd1161010857806323b872dd146102355780633ccfd60b1461025557806342842e0e1461025d5780635b92ac0d1461027d5780636352211e1461029757806370a08231146102b757600080fd5b806301ffc9a71461015057806306fdde0314610185578063081812fc146101a7578063095ea7b3146101df5780631249c58b1461020157806318160ddd14610216575b600080fd5b34801561015c57600080fd5b5061017061016b366004611504565b61044f565b60405190151581526020015b60405180910390f35b34801561019157600080fd5b5061019a6104a1565b60405161017c919061156e565b3480156101b357600080fd5b506101c76101c2366004611581565b610533565b6040516001600160a01b03909116815260200161017c565b3480156101eb57600080fd5b506101ff6101fa3660046115b6565b6105cd565b005b34801561020d57600080fd5b506101ff6106e2565b34801561022257600080fd5b506009545b60405190815260200161017c565b34801561024157600080fd5b506101ff6102503660046115e0565b6108c9565b6101ff6108fa565b34801561026957600080fd5b506101ff6102783660046115e0565b6109b4565b34801561028957600080fd5b506008546101709060ff1681565b3480156102a357600080fd5b506101c76102b2366004611581565b6109cf565b3480156102c357600080fd5b506102276102d236600461161c565b610a46565b3480156102e357600080fd5b506101ff610acd565b3480156102f857600080fd5b506006546001600160a01b03166101c7565b34801561031657600080fd5b5061019a610b03565b34801561032b57600080fd5b506101ff61033a3660046116c3565b610b12565b34801561034b57600080fd5b506101ff61035a36600461171c565b610b48565b34801561036b57600080fd5b506101ff61037a36600461174f565b610b53565b34801561038b57600080fd5b5061017061039a36600461161c565b600a6020526000908152604090205460ff1681565b3480156103bb57600080fd5b5061019a6103ca366004611581565b610b8b565b3480156103db57600080fd5b506101ff6103ea36600461161c565b610c9c565b3480156103fb57600080fd5b5061017061040a3660046117cb565b610d23565b34801561041b57600080fd5b506101ff61042a3660046117f5565b610d51565b34801561043b57600080fd5b506101ff61044a36600461161c565b610d8e565b60006001600160e01b031982166380ac58cd60e01b148061048057506001600160e01b03198216635b5e139f60e01b145b8061049b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546104b090611810565b80601f01602080910402602001604051908101604052809291908181526020018280546104dc90611810565b80156105295780601f106104fe57610100808354040283529160200191610529565b820191906000526020600020905b81548152906001019060200180831161050c57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166105b15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105d8826109cf565b9050806001600160a01b0316836001600160a01b0316036106455760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105a8565b336001600160a01b038216148061066157506106618133610d23565b6106d35760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105a8565b6106dd8383610e26565b505050565b60085460ff1661072a5760405162461bcd60e51b81526020600482015260136024820152724d696e74696e6720697320696e61637469766560681b60448201526064016105a8565b336000908152600a602052604090205460ff16156107835760405162461bcd60e51b815260206004820152601660248201527515d85b1b195d08185b1c9958591e4818db185a5b595960521b60448201526064016105a8565b6040516370a0823160e01b815233600482015260059073eeaf63f35b7c365aff27015a9aa5d6e4b734962c906370a0823190602401602060405180830381865afa1580156107d5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107f9919061184a565b101561086d5760405162461bcd60e51b815260206004820152603860248201527f57616c6c657420646f6573206e6f74206f776e2074686520726571756972656460448201527f20616d6f756e74206f662053515541445420746f6b656e73000000000000000060648201526084016105a8565b600061087860095490565b336000908152600a60205260408120805460ff191660019081179091556009805493945090929091906108ac908490611879565b909155506108c69050336108c1836001611879565b610e94565b50565b6108d33382610eae565b6108ef5760405162461bcd60e51b81526004016105a89061188c565b6106dd838383610f85565b6006546001600160a01b031633146109245760405162461bcd60e51b81526004016105a8906118dd565b6040514790600090339083908381818185875af1925050503d8060008114610968576040519150601f19603f3d011682016040523d82523d6000602084013e61096d565b606091505b50509050806109b05760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b60448201526064016105a8565b5050565b6106dd83838360405180602001604052806000815250610b53565b6000818152600260205260408120546001600160a01b03168061049b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105a8565b60006001600160a01b038216610ab15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105a8565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610af75760405162461bcd60e51b81526004016105a8906118dd565b610b016000611125565b565b6060600180546104b090611810565b6006546001600160a01b03163314610b3c5760405162461bcd60e51b81526004016105a8906118dd565b60076109b08282611960565b6109b0338383611177565b610b5d3383610eae565b610b795760405162461bcd60e51b81526004016105a89061188c565b610b8584848484611245565b50505050565b6000818152600260205260409020546060906001600160a01b0316610c0a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105a8565b60078054610c1790611810565b80601f0160208091040260200160405190810160405280929190818152602001828054610c4390611810565b8015610c905780601f10610c6557610100808354040283529160200191610c90565b820191906000526020600020905b815481529060010190602001808311610c7357829003601f168201915b50505050509050919050565b6006546001600160a01b03163314610cc65760405162461bcd60e51b81526004016105a8906118dd565b6000610cd160095490565b6001600160a01b0383166000908152600a60205260408120805460ff19166001908117909155600980549394509092909190610d0e908490611879565b909155506109b09050826108c1836001611879565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6006546001600160a01b03163314610d7b5760405162461bcd60e51b81526004016105a8906118dd565b6008805460ff1916911515919091179055565b6006546001600160a01b03163314610db85760405162461bcd60e51b81526004016105a8906118dd565b6001600160a01b038116610e1d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105a8565b6108c681611125565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610e5b826109cf565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6109b0828260405180602001604052806000815250611278565b6000818152600260205260408120546001600160a01b0316610f275760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105a8565b6000610f32836109cf565b9050806001600160a01b0316846001600160a01b03161480610f6d5750836001600160a01b0316610f6284610533565b6001600160a01b0316145b80610f7d5750610f7d8185610d23565b949350505050565b826001600160a01b0316610f98826109cf565b6001600160a01b0316146110005760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105a8565b6001600160a01b0382166110625760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105a8565b61106d600082610e26565b6001600160a01b0383166000908152600360205260408120805460019290611096908490611a20565b90915550506001600160a01b03821660009081526003602052604081208054600192906110c4908490611879565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316036111d85760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105a8565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611250848484610f85565b61125c848484846112ab565b610b855760405162461bcd60e51b81526004016105a890611a33565b61128283836113ac565b61128f60008484846112ab565b6106dd5760405162461bcd60e51b81526004016105a890611a33565b60006001600160a01b0384163b156113a157604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906112ef903390899088908890600401611a85565b6020604051808303816000875af192505050801561132a575060408051601f3d908101601f1916820190925261132791810190611ac2565b60015b611387573d808015611358576040519150601f19603f3d011682016040523d82523d6000602084013e61135d565b606091505b50805160000361137f5760405162461bcd60e51b81526004016105a890611a33565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f7d565b506001949350505050565b6001600160a01b0382166114025760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105a8565b6000818152600260205260409020546001600160a01b0316156114675760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105a8565b6001600160a01b0382166000908152600360205260408120805460019290611490908490611879565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b0319811681146108c657600080fd5b60006020828403121561151657600080fd5b8135611521816114ee565b9392505050565b6000815180845260005b8181101561154e57602081850181015186830182015201611532565b506000602082860101526020601f19601f83011685010191505092915050565b6020815260006115216020830184611528565b60006020828403121561159357600080fd5b5035919050565b80356001600160a01b03811681146115b157600080fd5b919050565b600080604083850312156115c957600080fd5b6115d28361159a565b946020939093013593505050565b6000806000606084860312156115f557600080fd5b6115fe8461159a565b925061160c6020850161159a565b9150604084013590509250925092565b60006020828403121561162e57600080fd5b6115218261159a565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561166857611668611637565b604051601f8501601f19908116603f0116810190828211818310171561169057611690611637565b816040528093508581528686860111156116a957600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156116d557600080fd5b813567ffffffffffffffff8111156116ec57600080fd5b8201601f810184136116fd57600080fd5b610f7d8482356020840161164d565b803580151581146115b157600080fd5b6000806040838503121561172f57600080fd5b6117388361159a565b91506117466020840161170c565b90509250929050565b6000806000806080858703121561176557600080fd5b61176e8561159a565b935061177c6020860161159a565b925060408501359150606085013567ffffffffffffffff81111561179f57600080fd5b8501601f810187136117b057600080fd5b6117bf8782356020840161164d565b91505092959194509250565b600080604083850312156117de57600080fd5b6117e78361159a565b91506117466020840161159a565b60006020828403121561180757600080fd5b6115218261170c565b600181811c9082168061182457607f821691505b60208210810361184457634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561185c57600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561049b5761049b611863565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f8211156106dd57600081815260208120601f850160051c810160208610156119395750805b601f850160051c820191505b8181101561195857828155600101611945565b505050505050565b815167ffffffffffffffff81111561197a5761197a611637565b61198e816119888454611810565b84611912565b602080601f8311600181146119c357600084156119ab5750858301515b600019600386901b1c1916600185901b178555611958565b600085815260208120601f198616915b828110156119f2578886015182559484019460019091019084016119d3565b5085821015611a105787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b8181038181111561049b5761049b611863565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ab890830184611528565b9695505050505050565b600060208284031215611ad457600080fd5b8151611521816114ee56fea26469706673582212204088466a42a508ef86dfa75cf92ec67501054c07be92609d2fd043132735d29164736f6c63430008130033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000e426972746864617920434849505000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045342323300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f697066732e696f2f697066732f516d5131754a68586550394b416867513354755031466253555634734d43747264396263656e796852774b6e4c390000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Birthday CHIPP
Arg [1] : symbol (string): SB23
Arg [2] : metaDataURL (string): https://ipfs.io/ipfs/QmQ1uJhXeP9KAhgQ3TuP1FbSUV4sMCtrd9bcenyhRwKnL9

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [4] : 4269727468646179204348495050000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 5342323300000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [8] : 68747470733a2f2f697066732e696f2f697066732f516d5131754a6858655039
Arg [9] : 4b416867513354755031466253555634734d43747264396263656e796852774b
Arg [10] : 6e4c390000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

36229:2186:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21191:305;;;;;;;;;;-1:-1:-1;21191:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;21191:305:0;;;;;;;;22136:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23695:221::-;;;;;;;;;;-1:-1:-1;23695:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1594:32:1;;;1576:51;;1564:2;1549:18;23695:221:0;1430:203:1;23218:411:0;;;;;;;;;;-1:-1:-1;23218:411:0;;;;;:::i;:::-;;:::i;:::-;;37463:482;;;;;;;;;;;;;:::i;37350:89::-;;;;;;;;;;-1:-1:-1;37421:10:0;;37350:89;;;2221:25:1;;;2209:2;2194:18;37350:89:0;2075:177:1;24445:339:0;;;;;;;;;;-1:-1:-1;24445:339:0;;;;;:::i;:::-;;:::i;38185:225::-;;;:::i;24855:185::-;;;;;;;;;;-1:-1:-1;24855:185:0;;;;;:::i;:::-;;:::i;36357:31::-;;;;;;;;;;-1:-1:-1;36357:31:0;;;;;;;;21830:239;;;;;;;;;;-1:-1:-1;21830:239:0;;;;;:::i;:::-;;:::i;21560:208::-;;;;;;;;;;-1:-1:-1;21560:208:0;;;;;:::i;:::-;;:::i;35338:103::-;;;;;;;;;;;;;:::i;34687:87::-;;;;;;;;;;-1:-1:-1;34760:6:0;;-1:-1:-1;;;;;34760:6:0;34687:87;;22305:104;;;;;;;;;;;;;:::i;37144:101::-;;;;;;;;;;-1:-1:-1;37144:101:0;;;;;:::i;:::-;;:::i;23988:155::-;;;;;;;;;;-1:-1:-1;23988:155:0;;;;;:::i;:::-;;:::i;25111:328::-;;;;;;;;;;-1:-1:-1;25111:328:0;;;;;:::i;:::-;;:::i;36610:45::-;;;;;;;;;;-1:-1:-1;36610:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;36925:213;;;;;;;;;;-1:-1:-1;36925:213:0;;;;;:::i;:::-;;:::i;37951:209::-;;;;;;;;;;-1:-1:-1;37951:209:0;;;;;:::i;:::-;;:::i;24214:164::-;;;;;;;;;;-1:-1:-1;24214:164:0;;;;;:::i;:::-;;:::i;37251:93::-;;;;;;;;;;-1:-1:-1;37251:93:0;;;;;:::i;:::-;;:::i;35596:201::-;;;;;;;;;;-1:-1:-1;35596:201:0;;;;;:::i;:::-;;:::i;21191:305::-;21293:4;-1:-1:-1;;;;;;21330:40:0;;-1:-1:-1;;;21330:40:0;;:105;;-1:-1:-1;;;;;;;21387:48:0;;-1:-1:-1;;;21387:48:0;21330:105;:158;;;-1:-1:-1;;;;;;;;;;13210:40:0;;;21452:36;21310:178;21191:305;-1:-1:-1;;21191:305:0:o;22136:100::-;22190:13;22223:5;22216:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22136:100;:::o;23695:221::-;23771:7;27038:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27038:16:0;23791:73;;;;-1:-1:-1;;;23791:73:0;;6139:2:1;23791:73:0;;;6121:21:1;6178:2;6158:18;;;6151:30;6217:34;6197:18;;;6190:62;-1:-1:-1;;;6268:18:1;;;6261:42;6320:19;;23791:73:0;;;;;;;;;-1:-1:-1;23884:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23884:24:0;;23695:221::o;23218:411::-;23299:13;23315:23;23330:7;23315:14;:23::i;:::-;23299:39;;23363:5;-1:-1:-1;;;;;23357:11:0;:2;-1:-1:-1;;;;;23357:11:0;;23349:57;;;;-1:-1:-1;;;23349:57:0;;6552:2:1;23349:57:0;;;6534:21:1;6591:2;6571:18;;;6564:30;6630:34;6610:18;;;6603:62;-1:-1:-1;;;6681:18:1;;;6674:31;6722:19;;23349:57:0;6350:397:1;23349:57:0;19683:10;-1:-1:-1;;;;;23441:21:0;;;;:62;;-1:-1:-1;23466:37:0;23483:5;19683:10;24214:164;:::i;23466:37::-;23419:168;;;;-1:-1:-1;;;23419:168:0;;6954:2:1;23419:168:0;;;6936:21:1;6993:2;6973:18;;;6966:30;7032:34;7012:18;;;7005:62;7103:26;7083:18;;;7076:54;7147:19;;23419:168:0;6752:420:1;23419:168:0;23600:21;23609:2;23613:7;23600:8;:21::i;:::-;23288:341;23218:411;;:::o;37463:482::-;37507:12;;;;37499:44;;;;-1:-1:-1;;;37499:44:0;;7379:2:1;37499:44:0;;;7361:21:1;7418:2;7398:18;;;7391:30;-1:-1:-1;;;7437:18:1;;;7430:49;7496:18;;37499:44:0;7177:343:1;37499:44:0;37577:10;37563:25;;;;:13;:25;;;;;;;;37562:26;37554:61;;;;-1:-1:-1;;;37554:61:0;;7727:2:1;37554:61:0;;;7709:21:1;7766:2;7746:18;;;7739:30;-1:-1:-1;;;7785:18:1;;;7778:52;7847:18;;37554:61:0;7525:346:1;37554:61:0;37634:45;;-1:-1:-1;;;37634:45:0;;37668:10;37634:45;;;1576:51:1;36438:1:0;;36559:42;;37634:33;;1549:18:1;;37634:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:70;;37626:139;;;;-1:-1:-1;;;37626:139:0;;8267:2:1;37626:139:0;;;8249:21:1;8306:2;8286:18;;;8279:30;8345:34;8325:18;;;8318:62;8416:26;8396:18;;;8389:54;8460:19;;37626:139:0;8065:420:1;37626:139:0;37776:14;37793:13;37421:10;;;37350:89;37793:13;37831:10;37817:25;;;;:13;:25;;;;;:32;;-1:-1:-1;;37817:32:0;37845:4;37817:32;;;;;;37860:10;:15;;37776:30;;-1:-1:-1;37845:4:0;;37860:10;;37817:25;37860:15;;37845:4;;37860:15;:::i;:::-;;;;-1:-1:-1;37886:51:0;;-1:-1:-1;37896:10:0;37908:28;37930:6;36485:1;37908:28;:::i;:::-;37886:9;:51::i;:::-;37488:457;37463:482::o;24445:339::-;24640:41;19683:10;24673:7;24640:18;:41::i;:::-;24632:103;;;;-1:-1:-1;;;24632:103:0;;;;;;;:::i;:::-;24748:28;24758:4;24764:2;24768:7;24748:9;:28::i;38185:225::-;34760:6;;-1:-1:-1;;;;;34760:6:0;19683:10;34907:23;34899:68;;;;-1:-1:-1;;;34899:68:0;;;;;;;:::i;:::-;38312:44:::1;::::0;38261:21:::1;::::0;38243:15:::1;::::0;38320:10:::1;::::0;38261:21;;38243:15;38312:44;38243:15;38312:44;38261:21;38320:10;38312:44:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38293:63;;;38375:7;38367:35;;;::::0;-1:-1:-1;;;38367:35:0;;9943:2:1;38367:35:0::1;::::0;::::1;9925:21:1::0;9982:2;9962:18;;;9955:30;-1:-1:-1;;;10001:18:1;;;9994:45;10056:18;;38367:35:0::1;9741:339:1::0;38367:35:0::1;38232:178;;38185:225::o:0;24855:185::-;24993:39;25010:4;25016:2;25020:7;24993:39;;;;;;;;;;;;:16;:39::i;21830:239::-;21902:7;21938:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21938:16:0;;21965:73;;;;-1:-1:-1;;;21965:73:0;;10287:2:1;21965:73:0;;;10269:21:1;10326:2;10306:18;;;10299:30;10365:34;10345:18;;;10338:62;-1:-1:-1;;;10416:18:1;;;10409:39;10465:19;;21965:73:0;10085:405:1;21560:208:0;21632:7;-1:-1:-1;;;;;21660:19:0;;21652:74;;;;-1:-1:-1;;;21652:74:0;;10697:2:1;21652:74:0;;;10679:21:1;10736:2;10716:18;;;10709:30;10775:34;10755:18;;;10748:62;-1:-1:-1;;;10826:18:1;;;10819:40;10876:19;;21652:74:0;10495:406:1;21652:74:0;-1:-1:-1;;;;;;21744:16:0;;;;;:9;:16;;;;;;;21560:208::o;35338:103::-;34760:6;;-1:-1:-1;;;;;34760:6:0;19683:10;34907:23;34899:68;;;;-1:-1:-1;;;34899:68:0;;;;;;;:::i;:::-;35403:30:::1;35430:1;35403:18;:30::i;:::-;35338:103::o:0;22305:104::-;22361:13;22394:7;22387:14;;;;;:::i;37144:101::-;34760:6;;-1:-1:-1;;;;;34760:6:0;19683:10;34907:23;34899:68;;;;-1:-1:-1;;;34899:68:0;;;;;;;:::i;:::-;37217:12:::1;:20;37232:5:::0;37217:12;:20:::1;:::i;23988:155::-:0;24083:52;19683:10;24116:8;24126;24083:18;:52::i;25111:328::-;25286:41;19683:10;25319:7;25286:18;:41::i;:::-;25278:103;;;;-1:-1:-1;;;25278:103:0;;;;;;;:::i;:::-;25392:39;25406:4;25412:2;25416:7;25425:5;25392:13;:39::i;:::-;25111:328;;;;:::o;36925:213::-;27014:4;27038:16;;;:7;:16;;;;;;36998:13;;-1:-1:-1;;;;;27038:16:0;37024:76;;;;-1:-1:-1;;;37024:76:0;;13312:2:1;37024:76:0;;;13294:21:1;13351:2;13331:18;;;13324:30;13390:34;13370:18;;;13363:62;-1:-1:-1;;;13441:18:1;;;13434:45;13496:19;;37024:76:0;13110:411:1;37024:76:0;37118:12;37111:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36925:213;;;:::o;37951:209::-;34760:6;;-1:-1:-1;;;;;34760:6:0;19683:10;34907:23;34899:68;;;;-1:-1:-1;;;34899:68:0;;;;;;;:::i;:::-;38007:14:::1;38024:13;37421:10:::0;;;37350:89;38024:13:::1;-1:-1:-1::0;;;;;38048:17:0;::::1;;::::0;;;:13:::1;:17;::::0;;;;:24;;-1:-1:-1;;38048:24:0::1;38068:4;38048:24:::0;;::::1;::::0;;;38083:10:::1;:15:::0;;38007:30;;-1:-1:-1;38068:4:0;;38083:10;;38048:17;38083:15:::1;::::0;38068:4;;38083:15:::1;:::i;:::-;::::0;;;-1:-1:-1;38109:43:0::1;::::0;-1:-1:-1;38119:2:0;38123:28:::1;38145:6:::0;36485:1:::1;38123:28;:::i;24214:164::-:0;-1:-1:-1;;;;;24335:25:0;;;24311:4;24335:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24214:164::o;37251:93::-;34760:6;;-1:-1:-1;;;;;34760:6:0;19683:10;34907:23;34899:68;;;;-1:-1:-1;;;34899:68:0;;;;;;;:::i;:::-;37316:12:::1;:20:::0;;-1:-1:-1;;37316:20:0::1;::::0;::::1;;::::0;;;::::1;::::0;;37251:93::o;35596:201::-;34760:6;;-1:-1:-1;;;;;34760:6:0;19683:10;34907:23;34899:68;;;;-1:-1:-1;;;34899:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35685:22:0;::::1;35677:73;;;::::0;-1:-1:-1;;;35677:73:0;;13728:2:1;35677:73:0::1;::::0;::::1;13710:21:1::0;13767:2;13747:18;;;13740:30;13806:34;13786:18;;;13779:62;-1:-1:-1;;;13857:18:1;;;13850:36;13903:19;;35677:73:0::1;13526:402:1::0;35677:73:0::1;35761:28;35780:8;35761:18;:28::i;30931:174::-:0;31006:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31006:29:0;-1:-1:-1;;;;;31006:29:0;;;;;;;;:24;;31060:23;31006:24;31060:14;:23::i;:::-;-1:-1:-1;;;;;31051:46:0;;;;;;;;;;;30931:174;;:::o;27933:110::-;28009:26;28019:2;28023:7;28009:26;;;;;;;;;;;;:9;:26::i;27243:348::-;27336:4;27038:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27038:16:0;27353:73;;;;-1:-1:-1;;;27353:73:0;;14135:2:1;27353:73:0;;;14117:21:1;14174:2;14154:18;;;14147:30;14213:34;14193:18;;;14186:62;-1:-1:-1;;;14264:18:1;;;14257:42;14316:19;;27353:73:0;13933:408:1;27353:73:0;27437:13;27453:23;27468:7;27453:14;:23::i;:::-;27437:39;;27506:5;-1:-1:-1;;;;;27495:16:0;:7;-1:-1:-1;;;;;27495:16:0;;:51;;;;27539:7;-1:-1:-1;;;;;27515:31:0;:20;27527:7;27515:11;:20::i;:::-;-1:-1:-1;;;;;27515:31:0;;27495:51;:87;;;;27550:32;27567:5;27574:7;27550:16;:32::i;:::-;27487:96;27243:348;-1:-1:-1;;;;27243:348:0:o;30235:578::-;30394:4;-1:-1:-1;;;;;30367:31:0;:23;30382:7;30367:14;:23::i;:::-;-1:-1:-1;;;;;30367:31:0;;30359:85;;;;-1:-1:-1;;;30359:85:0;;14548:2:1;30359:85:0;;;14530:21:1;14587:2;14567:18;;;14560:30;14626:34;14606:18;;;14599:62;-1:-1:-1;;;14677:18:1;;;14670:39;14726:19;;30359:85:0;14346:405:1;30359:85:0;-1:-1:-1;;;;;30463:16:0;;30455:65;;;;-1:-1:-1;;;30455:65:0;;14958:2:1;30455:65:0;;;14940:21:1;14997:2;14977:18;;;14970:30;15036:34;15016:18;;;15009:62;-1:-1:-1;;;15087:18:1;;;15080:34;15131:19;;30455:65:0;14756:400:1;30455:65:0;30637:29;30654:1;30658:7;30637:8;:29::i;:::-;-1:-1:-1;;;;;30679:15:0;;;;;;:9;:15;;;;;:20;;30698:1;;30679:15;:20;;30698:1;;30679:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30710:13:0;;;;;;:9;:13;;;;;:18;;30727:1;;30710:13;:18;;30727:1;;30710:18;:::i;:::-;;;;-1:-1:-1;;30739:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30739:21:0;-1:-1:-1;;;;;30739:21:0;;;;;;;;;30778:27;;30739:16;;30778:27;;;;;;;30235:578;;;:::o;35957:191::-;36050:6;;;-1:-1:-1;;;;;36067:17:0;;;-1:-1:-1;;;;;;36067:17:0;;;;;;;36100:40;;36050:6;;;36067:17;36050:6;;36100:40;;36031:16;;36100:40;36020:128;35957:191;:::o;31247:315::-;31402:8;-1:-1:-1;;;;;31393:17:0;:5;-1:-1:-1;;;;;31393:17:0;;31385:55;;;;-1:-1:-1;;;31385:55:0;;15496:2:1;31385:55:0;;;15478:21:1;15535:2;15515:18;;;15508:30;15574:27;15554:18;;;15547:55;15619:18;;31385:55:0;15294:349:1;31385:55:0;-1:-1:-1;;;;;31451:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;31451:46:0;;;;;;;;;;31513:41;;540::1;;;31513::0;;513:18:1;31513:41:0;;;;;;;31247:315;;;:::o;26321:::-;26478:28;26488:4;26494:2;26498:7;26478:9;:28::i;:::-;26525:48;26548:4;26554:2;26558:7;26567:5;26525:22;:48::i;:::-;26517:111;;;;-1:-1:-1;;;26517:111:0;;;;;;;:::i;28270:321::-;28400:18;28406:2;28410:7;28400:5;:18::i;:::-;28451:54;28482:1;28486:2;28490:7;28499:5;28451:22;:54::i;:::-;28429:154;;;;-1:-1:-1;;;28429:154:0;;;;;;;:::i;32127:799::-;32282:4;-1:-1:-1;;;;;32303:13:0;;3294:20;3342:8;32299:620;;32339:72;;-1:-1:-1;;;32339:72:0;;-1:-1:-1;;;;;32339:36:0;;;;;:72;;19683:10;;32390:4;;32396:7;;32405:5;;32339:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32339:72:0;;;;;;;;-1:-1:-1;;32339:72:0;;;;;;;;;;;;:::i;:::-;;;32335:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32581:6;:13;32598:1;32581:18;32577:272;;32624:60;;-1:-1:-1;;;32624:60:0;;;;;;;:::i;32577:272::-;32799:6;32793:13;32784:6;32780:2;32776:15;32769:38;32335:529;-1:-1:-1;;;;;;32462:51:0;-1:-1:-1;;;32462:51:0;;-1:-1:-1;32455:58:0;;32299:620;-1:-1:-1;32903:4:0;32127:799;;;;;;:::o;28927:382::-;-1:-1:-1;;;;;29007:16:0;;28999:61;;;;-1:-1:-1;;;28999:61:0;;17017:2:1;28999:61:0;;;16999:21:1;;;17036:18;;;17029:30;17095:34;17075:18;;;17068:62;17147:18;;28999:61:0;16815:356:1;28999:61:0;27014:4;27038:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27038:16:0;:30;29071:58;;;;-1:-1:-1;;;29071:58:0;;17378:2:1;29071:58:0;;;17360:21:1;17417:2;17397:18;;;17390:30;17456;17436:18;;;17429:58;17504:18;;29071:58:0;17176:352:1;29071:58:0;-1:-1:-1;;;;;29200:13:0;;;;;;:9;:13;;;;;:18;;29217:1;;29200:13;:18;;29217:1;;29200:18;:::i;:::-;;;;-1:-1:-1;;29229:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29229:21:0;-1:-1:-1;;;;;29229:21:0;;;;;;;;29268:33;;29229:16;;;29268:33;;29229:16;;29268:33;28927:382;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:423::-;634:3;672:5;666:12;699:6;694:3;687:19;724:1;734:162;748:6;745:1;742:13;734:162;;;810:4;866:13;;;862:22;;856:29;838:11;;;834:20;;827:59;763:12;734:162;;;738:3;941:1;934:4;925:6;920:3;916:16;912:27;905:38;1004:4;997:2;993:7;988:2;980:6;976:15;972:29;967:3;963:39;959:50;952:57;;;592:423;;;;:::o;1020:220::-;1169:2;1158:9;1151:21;1132:4;1189:45;1230:2;1219:9;1215:18;1207:6;1189:45;:::i;1245:180::-;1304:6;1357:2;1345:9;1336:7;1332:23;1328:32;1325:52;;;1373:1;1370;1363:12;1325:52;-1:-1:-1;1396:23:1;;1245:180;-1:-1:-1;1245:180:1:o;1638:173::-;1706:20;;-1:-1:-1;;;;;1755:31:1;;1745:42;;1735:70;;1801:1;1798;1791:12;1735:70;1638:173;;;:::o;1816:254::-;1884:6;1892;1945:2;1933:9;1924:7;1920:23;1916:32;1913:52;;;1961:1;1958;1951:12;1913:52;1984:29;2003:9;1984:29;:::i;:::-;1974:39;2060:2;2045:18;;;;2032:32;;-1:-1:-1;;;1816:254:1:o;2257:328::-;2334:6;2342;2350;2403:2;2391:9;2382:7;2378:23;2374:32;2371:52;;;2419:1;2416;2409:12;2371:52;2442:29;2461:9;2442:29;:::i;:::-;2432:39;;2490:38;2524:2;2513:9;2509:18;2490:38;:::i;:::-;2480:48;;2575:2;2564:9;2560:18;2547:32;2537:42;;2257:328;;;;;:::o;2590:186::-;2649:6;2702:2;2690:9;2681:7;2677:23;2673:32;2670:52;;;2718:1;2715;2708:12;2670:52;2741:29;2760:9;2741:29;:::i;2781:127::-;2842:10;2837:3;2833:20;2830:1;2823:31;2873:4;2870:1;2863:15;2897:4;2894:1;2887:15;2913:632;2978:5;3008:18;3049:2;3041:6;3038:14;3035:40;;;3055:18;;:::i;:::-;3130:2;3124:9;3098:2;3184:15;;-1:-1:-1;;3180:24:1;;;3206:2;3176:33;3172:42;3160:55;;;3230:18;;;3250:22;;;3227:46;3224:72;;;3276:18;;:::i;:::-;3316:10;3312:2;3305:22;3345:6;3336:15;;3375:6;3367;3360:22;3415:3;3406:6;3401:3;3397:16;3394:25;3391:45;;;3432:1;3429;3422:12;3391:45;3482:6;3477:3;3470:4;3462:6;3458:17;3445:44;3537:1;3530:4;3521:6;3513;3509:19;3505:30;3498:41;;;;2913:632;;;;;:::o;3550:451::-;3619:6;3672:2;3660:9;3651:7;3647:23;3643:32;3640:52;;;3688:1;3685;3678:12;3640:52;3728:9;3715:23;3761:18;3753:6;3750:30;3747:50;;;3793:1;3790;3783:12;3747:50;3816:22;;3869:4;3861:13;;3857:27;-1:-1:-1;3847:55:1;;3898:1;3895;3888:12;3847:55;3921:74;3987:7;3982:2;3969:16;3964:2;3960;3956:11;3921:74;:::i;4006:160::-;4071:20;;4127:13;;4120:21;4110:32;;4100:60;;4156:1;4153;4146:12;4171:254;4236:6;4244;4297:2;4285:9;4276:7;4272:23;4268:32;4265:52;;;4313:1;4310;4303:12;4265:52;4336:29;4355:9;4336:29;:::i;:::-;4326:39;;4384:35;4415:2;4404:9;4400:18;4384:35;:::i;:::-;4374:45;;4171:254;;;;;:::o;4430:667::-;4525:6;4533;4541;4549;4602:3;4590:9;4581:7;4577:23;4573:33;4570:53;;;4619:1;4616;4609:12;4570:53;4642:29;4661:9;4642:29;:::i;:::-;4632:39;;4690:38;4724:2;4713:9;4709:18;4690:38;:::i;:::-;4680:48;;4775:2;4764:9;4760:18;4747:32;4737:42;;4830:2;4819:9;4815:18;4802:32;4857:18;4849:6;4846:30;4843:50;;;4889:1;4886;4879:12;4843:50;4912:22;;4965:4;4957:13;;4953:27;-1:-1:-1;4943:55:1;;4994:1;4991;4984:12;4943:55;5017:74;5083:7;5078:2;5065:16;5060:2;5056;5052:11;5017:74;:::i;:::-;5007:84;;;4430:667;;;;;;;:::o;5102:260::-;5170:6;5178;5231:2;5219:9;5210:7;5206:23;5202:32;5199:52;;;5247:1;5244;5237:12;5199:52;5270:29;5289:9;5270:29;:::i;:::-;5260:39;;5318:38;5352:2;5341:9;5337:18;5318:38;:::i;5367:180::-;5423:6;5476:2;5464:9;5455:7;5451:23;5447:32;5444:52;;;5492:1;5489;5482:12;5444:52;5515:26;5531:9;5515:26;:::i;5552:380::-;5631:1;5627:12;;;;5674;;;5695:61;;5749:4;5741:6;5737:17;5727:27;;5695:61;5802:2;5794:6;5791:14;5771:18;5768:38;5765:161;;5848:10;5843:3;5839:20;5836:1;5829:31;5883:4;5880:1;5873:15;5911:4;5908:1;5901:15;5765:161;;5552:380;;;:::o;7876:184::-;7946:6;7999:2;7987:9;7978:7;7974:23;7970:32;7967:52;;;8015:1;8012;8005:12;7967:52;-1:-1:-1;8038:16:1;;7876:184;-1:-1:-1;7876:184:1:o;8490:127::-;8551:10;8546:3;8542:20;8539:1;8532:31;8582:4;8579:1;8572:15;8606:4;8603:1;8596:15;8622:125;8687:9;;;8708:10;;;8705:36;;;8721:18;;:::i;8752:413::-;8954:2;8936:21;;;8993:2;8973:18;;;8966:30;9032:34;9027:2;9012:18;;9005:62;-1:-1:-1;;;9098:2:1;9083:18;;9076:47;9155:3;9140:19;;8752:413::o;9170:356::-;9372:2;9354:21;;;9391:18;;;9384:30;9450:34;9445:2;9430:18;;9423:62;9517:2;9502:18;;9170:356::o;11032:545::-;11134:2;11129:3;11126:11;11123:448;;;11170:1;11195:5;11191:2;11184:17;11240:4;11236:2;11226:19;11310:2;11298:10;11294:19;11291:1;11287:27;11281:4;11277:38;11346:4;11334:10;11331:20;11328:47;;;-1:-1:-1;11369:4:1;11328:47;11424:2;11419:3;11415:12;11412:1;11408:20;11402:4;11398:31;11388:41;;11479:82;11497:2;11490:5;11487:13;11479:82;;;11542:17;;;11523:1;11512:13;11479:82;;;11483:3;;;11032:545;;;:::o;11753:1352::-;11879:3;11873:10;11906:18;11898:6;11895:30;11892:56;;;11928:18;;:::i;:::-;11957:97;12047:6;12007:38;12039:4;12033:11;12007:38;:::i;:::-;12001:4;11957:97;:::i;:::-;12109:4;;12173:2;12162:14;;12190:1;12185:663;;;;12892:1;12909:6;12906:89;;;-1:-1:-1;12961:19:1;;;12955:26;12906:89;-1:-1:-1;;11710:1:1;11706:11;;;11702:24;11698:29;11688:40;11734:1;11730:11;;;11685:57;13008:81;;12155:944;;12185:663;10979:1;10972:14;;;11016:4;11003:18;;-1:-1:-1;;12221:20:1;;;12339:236;12353:7;12350:1;12347:14;12339:236;;;12442:19;;;12436:26;12421:42;;12534:27;;;;12502:1;12490:14;;;;12369:19;;12339:236;;;12343:3;12603:6;12594:7;12591:19;12588:201;;;12664:19;;;12658:26;-1:-1:-1;;12747:1:1;12743:14;;;12759:3;12739:24;12735:37;12731:42;12716:58;12701:74;;12588:201;-1:-1:-1;;;;;12835:1:1;12819:14;;;12815:22;12802:36;;-1:-1:-1;11753:1352:1:o;15161:128::-;15228:9;;;15249:11;;;15246:37;;;15263:18;;:::i;15648:414::-;15850:2;15832:21;;;15889:2;15869:18;;;15862:30;15928:34;15923:2;15908:18;;15901:62;-1:-1:-1;;;15994:2:1;15979:18;;15972:48;16052:3;16037:19;;15648:414::o;16067:489::-;-1:-1:-1;;;;;16336:15:1;;;16318:34;;16388:15;;16383:2;16368:18;;16361:43;16435:2;16420:18;;16413:34;;;16483:3;16478:2;16463:18;;16456:31;;;16261:4;;16504:46;;16530:19;;16522:6;16504:46;:::i;:::-;16496:54;16067:489;-1:-1:-1;;;;;;16067:489:1:o;16561:249::-;16630:6;16683:2;16671:9;16662:7;16658:23;16654:32;16651:52;;;16699:1;16696;16689:12;16651:52;16731:9;16725:16;16750:30;16774:5;16750:30;:::i

Swarm Source

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