ETH Price: $2,679.42 (+1.67%)
Gas: 1 Gwei

Cyber Bandit SQUADT (CBS)
 

Overview

TokenID

88

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
CyberBanditSquadt

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-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/CyberBanditSquadt.sol
pragma solidity ^0.8.20;

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

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

    uint256 constant TOKEN_IDS_STARTS_AT = 1;
    uint256 tokenCount = 0;

    mapping(address => bool) public eligibleContracts;
    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);
        setEligibleContract(0xEEAF63F35B7c365AFf27015A9AA5d6e4b734962C, true); // SQUADTS
        setEligibleContract(0x8F17a839B6cd38E9888BE3Cc901a6726e84d6462, true); // Cyber Bandits by Michael Reeder
    }

    // 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 setEligibleContract(address contractAddress, bool value) public onlyOwner {
        eligibleContracts[contractAddress] = value;
    }
    function totalSupply() public view returns (uint256) {
        return tokenCount;
    }

    // Minting
    function mint(address contractAddress) external {
        require(isMintActive, "Minting is inactive");
        require(!walletClaimed[msg.sender], "Wallet already claimed");
        require(eligibleContracts[contractAddress], "Invalid contract address");
        require(ERC721(contractAddress).balanceOf(msg.sender) > 0, "Wallet is missing token");
        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":"address","name":"","type":"address"}],"name":"eligibleContracts","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"contractAddress","type":"address"}],"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":"address","name":"contractAddress","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setEligibleContract","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"}]

60a06040525f6080908152600790620000199082620002b4565b506008805460ff191660011790555f60095534801562000037575f80fd5b506040516200208b3803806200208b8339810160408190526200005a9162000426565b82825f620000698382620002b4565b506001620000788282620002b4565b505050620000956200008f620000eb60201b60201c565b620000ef565b620000a08162000140565b620000c173eeaf63f35b7c365aff27015a9aa5d6e4b734962c6001620001a0565b620000e2738f17a839b6cd38e9888be3cc901a6726e84d64626001620001a0565b505050620004b1565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6006546001600160a01b031633146200018e5760405162461bcd60e51b815260206004820181905260248201525f805160206200206b83398151915260448201526064015b60405180910390fd5b60076200019c8282620002b4565b5050565b6006546001600160a01b03163314620001ea5760405162461bcd60e51b815260206004820181905260248201525f805160206200206b833981519152604482015260640162000185565b6001600160a01b03919091165f908152600a60205260409020805460ff1916911515919091179055565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200023d57607f821691505b6020821081036200025c57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620002af575f81815260208120601f850160051c810160208610156200028a5750805b601f850160051c820191505b81811015620002ab5782815560010162000296565b5050505b505050565b81516001600160401b03811115620002d057620002d062000214565b620002e881620002e1845462000228565b8462000262565b602080601f8311600181146200031e575f8415620003065750858301515b5f19600386901b1c1916600185901b178555620002ab565b5f85815260208120601f198616915b828110156200034e578886015182559484019460019091019084016200032d565b50858210156200036c57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f82601f8301126200038c575f80fd5b81516001600160401b0380821115620003a957620003a962000214565b604051601f8301601f19908116603f01168101908282118183101715620003d457620003d462000214565b81604052838152602092508683858801011115620003f0575f80fd5b5f91505b83821015620004135785820183015181830184015290820190620003f4565b5f93810190920192909252949350505050565b5f805f6060848603121562000439575f80fd5b83516001600160401b038082111562000450575f80fd5b6200045e878388016200037c565b9450602086015191508082111562000474575f80fd5b62000482878388016200037c565b9350604086015191508082111562000498575f80fd5b50620004a7868287016200037c565b9150509250925092565b611bac80620004bf5f395ff3fe60806040526004361061017b575f3560e01c8063715018a6116100cd578063b88d4fde11610087578063cbfc4bce11610062578063cbfc4bce14610442578063e985e9c514610461578063ee1cc94414610480578063f2fde38b1461049f575f80fd5b8063b88d4fde146103d6578063c25d8f4d146103f5578063c87b56dd14610423575f80fd5b8063715018a6146103345780638da5cb5b1461034857806395d89b41146103655780639beb172d146103795780639d7b9a6c14610398578063a22cb465146103b7575f80fd5b80633ccfd60b116101385780635b92ac0d116101135780635b92ac0d146102be5780636352211e146102d75780636a627842146102f657806370a0823114610315575f80fd5b80633ccfd60b1461026957806342842e0e1461027157806343277d1114610290575f80fd5b806301ffc9a71461017f57806306fdde03146101b3578063081812fc146101d4578063095ea7b31461020b57806318160ddd1461022c57806323b872dd1461024a575b5f80fd5b34801561018a575f80fd5b5061019e6101993660046115ce565b6104be565b60405190151581526020015b60405180910390f35b3480156101be575f80fd5b506101c761050f565b6040516101aa9190611633565b3480156101df575f80fd5b506101f36101ee366004611645565b61059e565b6040516001600160a01b0390911681526020016101aa565b348015610216575f80fd5b5061022a610225366004611677565b610636565b005b348015610237575f80fd5b506009545b6040519081526020016101aa565b348015610255575f80fd5b5061022a61026436600461169f565b61074a565b61022a61077b565b34801561027c575f80fd5b5061022a61028b36600461169f565b610832565b34801561029b575f80fd5b5061019e6102aa3660046116d8565b600a6020525f908152604090205460ff1681565b3480156102c9575f80fd5b5060085461019e9060ff1681565b3480156102e2575f80fd5b506101f36102f1366004611645565b61084c565b348015610301575f80fd5b5061022a6103103660046116d8565b6108c2565b348015610320575f80fd5b5061023c61032f3660046116d8565b610ad5565b34801561033f575f80fd5b5061022a610b5a565b348015610353575f80fd5b506006546001600160a01b03166101f3565b348015610370575f80fd5b506101c7610b8f565b348015610384575f80fd5b5061022a610393366004611700565b610b9e565b3480156103a3575f80fd5b5061022a6103b23660046117b8565b610bf2565b3480156103c2575f80fd5b5061022a6103d1366004611700565b610c28565b3480156103e1575f80fd5b5061022a6103f03660046117fd565b610c33565b348015610400575f80fd5b5061019e61040f3660046116d8565b600b6020525f908152604090205460ff1681565b34801561042e575f80fd5b506101c761043d366004611645565b610c6b565b34801561044d575f80fd5b5061022a61045c3660046116d8565b610d79565b34801561046c575f80fd5b5061019e61047b366004611874565b610dfe565b34801561048b575f80fd5b5061022a61049a36600461189c565b610e2b565b3480156104aa575f80fd5b5061022a6104b93660046116d8565b610e68565b5f6001600160e01b031982166380ac58cd60e01b14806104ee57506001600160e01b03198216635b5e139f60e01b145b8061050957506301ffc9a760e01b6001600160e01b03198316145b92915050565b60605f805461051d906118b5565b80601f0160208091040260200160405190810160405280929190818152602001828054610549906118b5565b80156105945780601f1061056b57610100808354040283529160200191610594565b820191905f5260205f20905b81548152906001019060200180831161057757829003601f168201915b5050505050905090565b5f818152600260205260408120546001600160a01b031661061b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b505f908152600460205260409020546001600160a01b031690565b5f6106408261084c565b9050806001600160a01b0316836001600160a01b0316036106ad5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610612565b336001600160a01b03821614806106c957506106c98133610dfe565b61073b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610612565b6107458383610f03565b505050565b6107543382610f70565b6107705760405162461bcd60e51b8152600401610612906118ed565b610745838383611045565b6006546001600160a01b031633146107a55760405162461bcd60e51b81526004016106129061193e565b60405147905f90339083908381818185875af1925050503d805f81146107e6576040519150601f19603f3d011682016040523d82523d5f602084013e6107eb565b606091505b505090508061082e5760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b6044820152606401610612565b5050565b61074583838360405180602001604052805f815250610c33565b5f818152600260205260408120546001600160a01b0316806105095760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610612565b60085460ff1661090a5760405162461bcd60e51b81526020600482015260136024820152724d696e74696e6720697320696e61637469766560681b6044820152606401610612565b335f908152600b602052604090205460ff16156109625760405162461bcd60e51b815260206004820152601660248201527515d85b1b195d08185b1c9958591e4818db185a5b595960521b6044820152606401610612565b6001600160a01b0381165f908152600a602052604090205460ff166109c95760405162461bcd60e51b815260206004820152601860248201527f496e76616c696420636f6e7472616374206164647265737300000000000000006044820152606401610612565b6040516370a0823160e01b81523360048201525f906001600160a01b038316906370a0823190602401602060405180830381865afa158015610a0d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a319190611973565b11610a7e5760405162461bcd60e51b815260206004820152601760248201527f57616c6c6574206973206d697373696e6720746f6b656e0000000000000000006044820152606401610612565b5f610a8860095490565b335f908152600b60205260408120805460ff19166001908117909155600980549394509092909190610abb90849061199e565b9091555061082e905033610ad083600161199e565b6111e1565b5f6001600160a01b038216610b3f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610612565b506001600160a01b03165f9081526003602052604090205490565b6006546001600160a01b03163314610b845760405162461bcd60e51b81526004016106129061193e565b610b8d5f6111fa565b565b60606001805461051d906118b5565b6006546001600160a01b03163314610bc85760405162461bcd60e51b81526004016106129061193e565b6001600160a01b03919091165f908152600a60205260409020805460ff1916911515919091179055565b6006546001600160a01b03163314610c1c5760405162461bcd60e51b81526004016106129061193e565b600761082e82826119fe565b61082e33838361124b565b610c3d3383610f70565b610c595760405162461bcd60e51b8152600401610612906118ed565b610c6584848484611318565b50505050565b5f818152600260205260409020546060906001600160a01b0316610ce95760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610612565b60078054610cf6906118b5565b80601f0160208091040260200160405190810160405280929190818152602001828054610d22906118b5565b8015610d6d5780601f10610d4457610100808354040283529160200191610d6d565b820191905f5260205f20905b815481529060010190602001808311610d5057829003601f168201915b50505050509050919050565b6006546001600160a01b03163314610da35760405162461bcd60e51b81526004016106129061193e565b5f610dad60095490565b6001600160a01b0383165f908152600b60205260408120805460ff19166001908117909155600980549394509092909190610de990849061199e565b9091555061082e905082610ad083600161199e565b6001600160a01b039182165f90815260056020908152604080832093909416825291909152205460ff1690565b6006546001600160a01b03163314610e555760405162461bcd60e51b81526004016106129061193e565b6008805460ff1916911515919091179055565b6006546001600160a01b03163314610e925760405162461bcd60e51b81526004016106129061193e565b6001600160a01b038116610ef75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610612565b610f00816111fa565b50565b5f81815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610f378261084c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5f818152600260205260408120546001600160a01b0316610fe85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610612565b5f610ff28361084c565b9050806001600160a01b0316846001600160a01b0316148061102d5750836001600160a01b03166110228461059e565b6001600160a01b0316145b8061103d575061103d8185610dfe565b949350505050565b826001600160a01b03166110588261084c565b6001600160a01b0316146110c05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610612565b6001600160a01b0382166111225760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610612565b61112c5f82610f03565b6001600160a01b0383165f908152600360205260408120805460019290611154908490611aba565b90915550506001600160a01b0382165f90815260036020526040812080546001929061118190849061199e565b90915550505f8181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61082e828260405180602001604052805f81525061134b565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b816001600160a01b0316836001600160a01b0316036112ac5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610612565b6001600160a01b038381165f81815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611323848484611045565b61132f8484848461137d565b610c655760405162461bcd60e51b815260040161061290611acd565b611355838361147a565b6113615f84848461137d565b6107455760405162461bcd60e51b815260040161061290611acd565b5f6001600160a01b0384163b1561146f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906113c0903390899088908890600401611b1f565b6020604051808303815f875af19250505080156113fa575060408051601f3d908101601f191682019092526113f791810190611b5b565b60015b611455573d808015611427576040519150601f19603f3d011682016040523d82523d5f602084013e61142c565b606091505b5080515f0361144d5760405162461bcd60e51b815260040161061290611acd565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061103d565b506001949350505050565b6001600160a01b0382166114d05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610612565b5f818152600260205260409020546001600160a01b0316156115345760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610612565b6001600160a01b0382165f90815260036020526040812080546001929061155c90849061199e565b90915550505f8181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b031981168114610f00575f80fd5b5f602082840312156115de575f80fd5b81356115e9816115b9565b9392505050565b5f81518084525f5b81811015611614576020818501810151868301820152016115f8565b505f602082860101526020601f19601f83011685010191505092915050565b602081525f6115e960208301846115f0565b5f60208284031215611655575f80fd5b5035919050565b80356001600160a01b0381168114611672575f80fd5b919050565b5f8060408385031215611688575f80fd5b6116918361165c565b946020939093013593505050565b5f805f606084860312156116b1575f80fd5b6116ba8461165c565b92506116c86020850161165c565b9150604084013590509250925092565b5f602082840312156116e8575f80fd5b6115e98261165c565b80358015158114611672575f80fd5b5f8060408385031215611711575f80fd5b61171a8361165c565b9150611728602084016116f1565b90509250929050565b634e487b7160e01b5f52604160045260245ffd5b5f67ffffffffffffffff8084111561175f5761175f611731565b604051601f8501601f19908116603f0116810190828211818310171561178757611787611731565b8160405280935085815286868601111561179f575f80fd5b858560208301375f602087830101525050509392505050565b5f602082840312156117c8575f80fd5b813567ffffffffffffffff8111156117de575f80fd5b8201601f810184136117ee575f80fd5b61103d84823560208401611745565b5f805f8060808587031215611810575f80fd5b6118198561165c565b93506118276020860161165c565b925060408501359150606085013567ffffffffffffffff811115611849575f80fd5b8501601f81018713611859575f80fd5b61186887823560208401611745565b91505092959194509250565b5f8060408385031215611885575f80fd5b61188e8361165c565b91506117286020840161165c565b5f602082840312156118ac575f80fd5b6115e9826116f1565b600181811c908216806118c957607f821691505b6020821081036118e757634e487b7160e01b5f52602260045260245ffd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b5f60208284031215611983575f80fd5b5051919050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156105095761050961198a565b601f821115610745575f81815260208120601f850160051c810160208610156119d75750805b601f850160051c820191505b818110156119f6578281556001016119e3565b505050505050565b815167ffffffffffffffff811115611a1857611a18611731565b611a2c81611a2684546118b5565b846119b1565b602080601f831160018114611a5f575f8415611a485750858301515b5f19600386901b1c1916600185901b1785556119f6565b5f85815260208120601f198616915b82811015611a8d57888601518255948401946001909101908401611a6e565b5085821015611aaa57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b818103818111156105095761050961198a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f90611b51908301846115f0565b9695505050505050565b5f60208284031215611b6b575f80fd5b81516115e9816115b956fea264697066735822122015e6db3dc8dc10630d27e58fc04c14619c20c8a650ac165ef5d2eef0673a593b64736f6c634300081400334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001343796265722042616e646974205351554144540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034342530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f697066732e696f2f697066732f516d644847555045637763556448645850335138684553775846743431794c636b455053793438566168466636750000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061017b575f3560e01c8063715018a6116100cd578063b88d4fde11610087578063cbfc4bce11610062578063cbfc4bce14610442578063e985e9c514610461578063ee1cc94414610480578063f2fde38b1461049f575f80fd5b8063b88d4fde146103d6578063c25d8f4d146103f5578063c87b56dd14610423575f80fd5b8063715018a6146103345780638da5cb5b1461034857806395d89b41146103655780639beb172d146103795780639d7b9a6c14610398578063a22cb465146103b7575f80fd5b80633ccfd60b116101385780635b92ac0d116101135780635b92ac0d146102be5780636352211e146102d75780636a627842146102f657806370a0823114610315575f80fd5b80633ccfd60b1461026957806342842e0e1461027157806343277d1114610290575f80fd5b806301ffc9a71461017f57806306fdde03146101b3578063081812fc146101d4578063095ea7b31461020b57806318160ddd1461022c57806323b872dd1461024a575b5f80fd5b34801561018a575f80fd5b5061019e6101993660046115ce565b6104be565b60405190151581526020015b60405180910390f35b3480156101be575f80fd5b506101c761050f565b6040516101aa9190611633565b3480156101df575f80fd5b506101f36101ee366004611645565b61059e565b6040516001600160a01b0390911681526020016101aa565b348015610216575f80fd5b5061022a610225366004611677565b610636565b005b348015610237575f80fd5b506009545b6040519081526020016101aa565b348015610255575f80fd5b5061022a61026436600461169f565b61074a565b61022a61077b565b34801561027c575f80fd5b5061022a61028b36600461169f565b610832565b34801561029b575f80fd5b5061019e6102aa3660046116d8565b600a6020525f908152604090205460ff1681565b3480156102c9575f80fd5b5060085461019e9060ff1681565b3480156102e2575f80fd5b506101f36102f1366004611645565b61084c565b348015610301575f80fd5b5061022a6103103660046116d8565b6108c2565b348015610320575f80fd5b5061023c61032f3660046116d8565b610ad5565b34801561033f575f80fd5b5061022a610b5a565b348015610353575f80fd5b506006546001600160a01b03166101f3565b348015610370575f80fd5b506101c7610b8f565b348015610384575f80fd5b5061022a610393366004611700565b610b9e565b3480156103a3575f80fd5b5061022a6103b23660046117b8565b610bf2565b3480156103c2575f80fd5b5061022a6103d1366004611700565b610c28565b3480156103e1575f80fd5b5061022a6103f03660046117fd565b610c33565b348015610400575f80fd5b5061019e61040f3660046116d8565b600b6020525f908152604090205460ff1681565b34801561042e575f80fd5b506101c761043d366004611645565b610c6b565b34801561044d575f80fd5b5061022a61045c3660046116d8565b610d79565b34801561046c575f80fd5b5061019e61047b366004611874565b610dfe565b34801561048b575f80fd5b5061022a61049a36600461189c565b610e2b565b3480156104aa575f80fd5b5061022a6104b93660046116d8565b610e68565b5f6001600160e01b031982166380ac58cd60e01b14806104ee57506001600160e01b03198216635b5e139f60e01b145b8061050957506301ffc9a760e01b6001600160e01b03198316145b92915050565b60605f805461051d906118b5565b80601f0160208091040260200160405190810160405280929190818152602001828054610549906118b5565b80156105945780601f1061056b57610100808354040283529160200191610594565b820191905f5260205f20905b81548152906001019060200180831161057757829003601f168201915b5050505050905090565b5f818152600260205260408120546001600160a01b031661061b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b505f908152600460205260409020546001600160a01b031690565b5f6106408261084c565b9050806001600160a01b0316836001600160a01b0316036106ad5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610612565b336001600160a01b03821614806106c957506106c98133610dfe565b61073b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610612565b6107458383610f03565b505050565b6107543382610f70565b6107705760405162461bcd60e51b8152600401610612906118ed565b610745838383611045565b6006546001600160a01b031633146107a55760405162461bcd60e51b81526004016106129061193e565b60405147905f90339083908381818185875af1925050503d805f81146107e6576040519150601f19603f3d011682016040523d82523d5f602084013e6107eb565b606091505b505090508061082e5760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b6044820152606401610612565b5050565b61074583838360405180602001604052805f815250610c33565b5f818152600260205260408120546001600160a01b0316806105095760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610612565b60085460ff1661090a5760405162461bcd60e51b81526020600482015260136024820152724d696e74696e6720697320696e61637469766560681b6044820152606401610612565b335f908152600b602052604090205460ff16156109625760405162461bcd60e51b815260206004820152601660248201527515d85b1b195d08185b1c9958591e4818db185a5b595960521b6044820152606401610612565b6001600160a01b0381165f908152600a602052604090205460ff166109c95760405162461bcd60e51b815260206004820152601860248201527f496e76616c696420636f6e7472616374206164647265737300000000000000006044820152606401610612565b6040516370a0823160e01b81523360048201525f906001600160a01b038316906370a0823190602401602060405180830381865afa158015610a0d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a319190611973565b11610a7e5760405162461bcd60e51b815260206004820152601760248201527f57616c6c6574206973206d697373696e6720746f6b656e0000000000000000006044820152606401610612565b5f610a8860095490565b335f908152600b60205260408120805460ff19166001908117909155600980549394509092909190610abb90849061199e565b9091555061082e905033610ad083600161199e565b6111e1565b5f6001600160a01b038216610b3f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610612565b506001600160a01b03165f9081526003602052604090205490565b6006546001600160a01b03163314610b845760405162461bcd60e51b81526004016106129061193e565b610b8d5f6111fa565b565b60606001805461051d906118b5565b6006546001600160a01b03163314610bc85760405162461bcd60e51b81526004016106129061193e565b6001600160a01b03919091165f908152600a60205260409020805460ff1916911515919091179055565b6006546001600160a01b03163314610c1c5760405162461bcd60e51b81526004016106129061193e565b600761082e82826119fe565b61082e33838361124b565b610c3d3383610f70565b610c595760405162461bcd60e51b8152600401610612906118ed565b610c6584848484611318565b50505050565b5f818152600260205260409020546060906001600160a01b0316610ce95760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610612565b60078054610cf6906118b5565b80601f0160208091040260200160405190810160405280929190818152602001828054610d22906118b5565b8015610d6d5780601f10610d4457610100808354040283529160200191610d6d565b820191905f5260205f20905b815481529060010190602001808311610d5057829003601f168201915b50505050509050919050565b6006546001600160a01b03163314610da35760405162461bcd60e51b81526004016106129061193e565b5f610dad60095490565b6001600160a01b0383165f908152600b60205260408120805460ff19166001908117909155600980549394509092909190610de990849061199e565b9091555061082e905082610ad083600161199e565b6001600160a01b039182165f90815260056020908152604080832093909416825291909152205460ff1690565b6006546001600160a01b03163314610e555760405162461bcd60e51b81526004016106129061193e565b6008805460ff1916911515919091179055565b6006546001600160a01b03163314610e925760405162461bcd60e51b81526004016106129061193e565b6001600160a01b038116610ef75760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610612565b610f00816111fa565b50565b5f81815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610f378261084c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b5f818152600260205260408120546001600160a01b0316610fe85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610612565b5f610ff28361084c565b9050806001600160a01b0316846001600160a01b0316148061102d5750836001600160a01b03166110228461059e565b6001600160a01b0316145b8061103d575061103d8185610dfe565b949350505050565b826001600160a01b03166110588261084c565b6001600160a01b0316146110c05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610612565b6001600160a01b0382166111225760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610612565b61112c5f82610f03565b6001600160a01b0383165f908152600360205260408120805460019290611154908490611aba565b90915550506001600160a01b0382165f90815260036020526040812080546001929061118190849061199e565b90915550505f8181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61082e828260405180602001604052805f81525061134b565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b816001600160a01b0316836001600160a01b0316036112ac5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610612565b6001600160a01b038381165f81815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611323848484611045565b61132f8484848461137d565b610c655760405162461bcd60e51b815260040161061290611acd565b611355838361147a565b6113615f84848461137d565b6107455760405162461bcd60e51b815260040161061290611acd565b5f6001600160a01b0384163b1561146f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906113c0903390899088908890600401611b1f565b6020604051808303815f875af19250505080156113fa575060408051601f3d908101601f191682019092526113f791810190611b5b565b60015b611455573d808015611427576040519150601f19603f3d011682016040523d82523d5f602084013e61142c565b606091505b5080515f0361144d5760405162461bcd60e51b815260040161061290611acd565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061103d565b506001949350505050565b6001600160a01b0382166114d05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610612565b5f818152600260205260409020546001600160a01b0316156115345760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610612565b6001600160a01b0382165f90815260036020526040812080546001929061155c90849061199e565b90915550505f8181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b031981168114610f00575f80fd5b5f602082840312156115de575f80fd5b81356115e9816115b9565b9392505050565b5f81518084525f5b81811015611614576020818501810151868301820152016115f8565b505f602082860101526020601f19601f83011685010191505092915050565b602081525f6115e960208301846115f0565b5f60208284031215611655575f80fd5b5035919050565b80356001600160a01b0381168114611672575f80fd5b919050565b5f8060408385031215611688575f80fd5b6116918361165c565b946020939093013593505050565b5f805f606084860312156116b1575f80fd5b6116ba8461165c565b92506116c86020850161165c565b9150604084013590509250925092565b5f602082840312156116e8575f80fd5b6115e98261165c565b80358015158114611672575f80fd5b5f8060408385031215611711575f80fd5b61171a8361165c565b9150611728602084016116f1565b90509250929050565b634e487b7160e01b5f52604160045260245ffd5b5f67ffffffffffffffff8084111561175f5761175f611731565b604051601f8501601f19908116603f0116810190828211818310171561178757611787611731565b8160405280935085815286868601111561179f575f80fd5b858560208301375f602087830101525050509392505050565b5f602082840312156117c8575f80fd5b813567ffffffffffffffff8111156117de575f80fd5b8201601f810184136117ee575f80fd5b61103d84823560208401611745565b5f805f8060808587031215611810575f80fd5b6118198561165c565b93506118276020860161165c565b925060408501359150606085013567ffffffffffffffff811115611849575f80fd5b8501601f81018713611859575f80fd5b61186887823560208401611745565b91505092959194509250565b5f8060408385031215611885575f80fd5b61188e8361165c565b91506117286020840161165c565b5f602082840312156118ac575f80fd5b6115e9826116f1565b600181811c908216806118c957607f821691505b6020821081036118e757634e487b7160e01b5f52602260045260245ffd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b5f60208284031215611983575f80fd5b5051919050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156105095761050961198a565b601f821115610745575f81815260208120601f850160051c810160208610156119d75750805b601f850160051c820191505b818110156119f6578281556001016119e3565b505050505050565b815167ffffffffffffffff811115611a1857611a18611731565b611a2c81611a2684546118b5565b846119b1565b602080601f831160018114611a5f575f8415611a485750858301515b5f19600386901b1c1916600185901b1785556119f6565b5f85815260208120601f198616915b82811015611a8d57888601518255948401946001909101908401611a6e565b5085821015611aaa57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b818103818111156105095761050961198a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f90611b51908301846115f0565b9695505050505050565b5f60208284031215611b6b575f80fd5b81516115e9816115b956fea264697066735822122015e6db3dc8dc10630d27e58fc04c14619c20c8a650ac165ef5d2eef0673a593b64736f6c63430008140033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001343796265722042616e646974205351554144540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034342530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f697066732e696f2f697066732f516d644847555045637763556448645850335138684553775846743431794c636b455053793438566168466636750000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Cyber Bandit SQUADT
Arg [1] : symbol (string): CBS
Arg [2] : metaDataURL (string): https://ipfs.io/ipfs/QmdHGUPEcwcUdHdXP3Q8hESwXFt41yLckEPSy48VahFf6u

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000013
Arg [4] : 43796265722042616e6469742053515541445400000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4342530000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [8] : 68747470733a2f2f697066732e696f2f697066732f516d644847555045637763
Arg [9] : 556448645850335138684553775846743431794c636b45505379343856616846
Arg [10] : 6636750000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

36245:2512:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21207:305;;;;;;;;;;-1:-1:-1;21207:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;21207:305:0;;;;;;;;22152:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23711:221::-;;;;;;;;;;-1:-1:-1;23711:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1594:32:1;;;1576:51;;1564:2;1549:18;23711:221:0;1430:203:1;23234:411:0;;;;;;;;;;-1:-1:-1;23234:411:0;;;;;:::i;:::-;;:::i;:::-;;37641:89;;;;;;;;;;-1:-1:-1;37712:10:0;;37641:89;;;2221:25:1;;;2209:2;2194:18;37641:89:0;2075:177:1;24461:339:0;;;;;;;;;;-1:-1:-1;24461:339:0;;;;;:::i;:::-;;:::i;38527:225::-;;;:::i;24871:185::-;;;;;;;;;;-1:-1:-1;24871:185:0;;;;;:::i;:::-;;:::i;36489:49::-;;;;;;;;;;-1:-1:-1;36489:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;36371:31;;;;;;;;;;-1:-1:-1;36371:31:0;;;;;;;;21846:239;;;;;;;;;;-1:-1:-1;21846:239:0;;;;;:::i;:::-;;:::i;37754:533::-;;;;;;;;;;-1:-1:-1;37754:533:0;;;;;:::i;:::-;;:::i;21576:208::-;;;;;;;;;;-1:-1:-1;21576:208:0;;;;;:::i;:::-;;:::i;35356:103::-;;;;;;;;;;;;;:::i;34705:87::-;;;;;;;;;;-1:-1:-1;34778:6:0;;-1:-1:-1;;;;;34778:6:0;34705:87;;22321:104;;;;;;;;;;;;;:::i;37491:144::-;;;;;;;;;;-1:-1:-1;37491:144:0;;;;;:::i;:::-;;:::i;37285:101::-;;;;;;;;;;-1:-1:-1;37285:101:0;;;;;:::i;:::-;;:::i;24004:155::-;;;;;;;;;;-1:-1:-1;24004:155:0;;;;;:::i;:::-;;:::i;25127:328::-;;;;;;;;;;-1:-1:-1;25127:328:0;;;;;:::i;:::-;;:::i;36545:45::-;;;;;;;;;;-1:-1:-1;36545:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;37066:213;;;;;;;;;;-1:-1:-1;37066:213:0;;;;;:::i;:::-;;:::i;38293:209::-;;;;;;;;;;-1:-1:-1;38293:209:0;;;;;:::i;:::-;;:::i;24230:164::-;;;;;;;;;;-1:-1:-1;24230:164:0;;;;;:::i;:::-;;:::i;37392:93::-;;;;;;;;;;-1:-1:-1;37392:93:0;;;;;:::i;:::-;;:::i;35614:201::-;;;;;;;;;;-1:-1:-1;35614:201:0;;;;;:::i;:::-;;:::i;21207:305::-;21309:4;-1:-1:-1;;;;;;21346:40:0;;-1:-1:-1;;;21346:40:0;;:105;;-1:-1:-1;;;;;;;21403:48:0;;-1:-1:-1;;;21403:48:0;21346:105;:158;;;-1:-1:-1;;;;;;;;;;13218:40:0;;;21468:36;21326:178;21207:305;-1:-1:-1;;21207:305:0:o;22152:100::-;22206:13;22239:5;22232:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22152:100;:::o;23711:221::-;23787:7;27054:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27054:16:0;23807:73;;;;-1:-1:-1;;;23807:73:0;;6139:2:1;23807: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;;23807:73:0;;;;;;;;;-1:-1:-1;23900:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23900:24:0;;23711:221::o;23234:411::-;23315:13;23331:23;23346:7;23331:14;:23::i;:::-;23315:39;;23379:5;-1:-1:-1;;;;;23373:11:0;:2;-1:-1:-1;;;;;23373:11:0;;23365:57;;;;-1:-1:-1;;;23365:57:0;;6552:2:1;23365: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;;23365:57:0;6350:397:1;23365:57:0;19697:10;-1:-1:-1;;;;;23457:21:0;;;;:62;;-1:-1:-1;23482:37:0;23499:5;19697:10;24230:164;:::i;23482:37::-;23435:168;;;;-1:-1:-1;;;23435:168:0;;6954:2:1;23435: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;;23435:168:0;6752:420:1;23435:168:0;23616:21;23625:2;23629:7;23616:8;:21::i;:::-;23304:341;23234:411;;:::o;24461:339::-;24656:41;19697:10;24689:7;24656:18;:41::i;:::-;24648:103;;;;-1:-1:-1;;;24648:103:0;;;;;;;:::i;:::-;24764:28;24774:4;24780:2;24784:7;24764:9;:28::i;38527:225::-;34778:6;;-1:-1:-1;;;;;34778:6:0;19697:10;34925:23;34917:68;;;;-1:-1:-1;;;34917:68:0;;;;;;;:::i;:::-;38654:44:::1;::::0;38603:21:::1;::::0;38585:15:::1;::::0;38662:10:::1;::::0;38603:21;;38585:15;38654:44;38585:15;38654:44;38603:21;38662:10;38654:44:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38635:63;;;38717:7;38709:35;;;::::0;-1:-1:-1;;;38709:35:0;;8368:2:1;38709:35:0::1;::::0;::::1;8350:21:1::0;8407:2;8387:18;;;8380:30;-1:-1:-1;;;8426:18:1;;;8419:45;8481:18;;38709:35:0::1;8166:339:1::0;38709:35:0::1;38574:178;;38527:225::o:0;24871:185::-;25009:39;25026:4;25032:2;25036:7;25009:39;;;;;;;;;;;;:16;:39::i;21846:239::-;21918:7;21954:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21954:16:0;;21981:73;;;;-1:-1:-1;;;21981:73:0;;8712:2:1;21981:73:0;;;8694:21:1;8751:2;8731:18;;;8724:30;8790:34;8770:18;;;8763:62;-1:-1:-1;;;8841:18:1;;;8834:39;8890:19;;21981:73:0;8510:405:1;37754:533:0;37821:12;;;;37813:44;;;;-1:-1:-1;;;37813:44:0;;9122:2:1;37813:44:0;;;9104:21:1;9161:2;9141:18;;;9134:30;-1:-1:-1;;;9180:18:1;;;9173:49;9239:18;;37813:44:0;8920:343:1;37813:44:0;37891:10;37877:25;;;;:13;:25;;;;;;;;37876:26;37868:61;;;;-1:-1:-1;;;37868:61:0;;9470:2:1;37868:61:0;;;9452:21:1;9509:2;9489:18;;;9482:30;-1:-1:-1;;;9528:18:1;;;9521:52;9590:18;;37868:61:0;9268:346:1;37868:61:0;-1:-1:-1;;;;;37948:34:0;;;;;;:17;:34;;;;;;;;37940:71;;;;-1:-1:-1;;;37940:71:0;;9821:2:1;37940:71:0;;;9803:21:1;9860:2;9840:18;;;9833:30;9899:26;9879:18;;;9872:54;9943:18;;37940:71:0;9619:348:1;37940:71:0;38030:45;;-1:-1:-1;;;38030:45:0;;38064:10;38030:45;;;1576:51:1;38078:1:0;;-1:-1:-1;;;;;38030:33:0;;;;;1549:18:1;;38030:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:49;38022:85;;;;-1:-1:-1;;;38022:85:0;;10363:2:1;38022:85:0;;;10345:21:1;10402:2;10382:18;;;10375:30;10441:25;10421:18;;;10414:53;10484:18;;38022:85:0;10161:347:1;38022:85:0;38118:14;38135:13;37712:10;;;37641:89;38135:13;38173:10;38159:25;;;;:13;:25;;;;;:32;;-1:-1:-1;;38159:32:0;38187:4;38159:32;;;;;;38202:10;:15;;38118:30;;-1:-1:-1;38187:4:0;;38202:10;;38159:25;38202:15;;38187:4;;38202:15;:::i;:::-;;;;-1:-1:-1;38228:51:0;;-1:-1:-1;38238:10:0;38250:28;38272:6;36450:1;38250:28;:::i;:::-;38228:9;:51::i;21576:208::-;21648:7;-1:-1:-1;;;;;21676:19:0;;21668:74;;;;-1:-1:-1;;;21668:74:0;;10977:2:1;21668:74:0;;;10959:21:1;11016:2;10996:18;;;10989:30;11055:34;11035:18;;;11028:62;-1:-1:-1;;;11106:18:1;;;11099:40;11156:19;;21668:74:0;10775:406:1;21668:74:0;-1:-1:-1;;;;;;21760:16:0;;;;;:9;:16;;;;;;;21576:208::o;35356:103::-;34778:6;;-1:-1:-1;;;;;34778:6:0;19697:10;34925:23;34917:68;;;;-1:-1:-1;;;34917:68:0;;;;;;;:::i;:::-;35421:30:::1;35448:1;35421:18;:30::i;:::-;35356:103::o:0;22321:104::-;22377:13;22410:7;22403:14;;;;;:::i;37491:144::-;34778:6;;-1:-1:-1;;;;;34778:6:0;19697:10;34925:23;34917:68;;;;-1:-1:-1;;;34917:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37585:34:0;;;::::1;;::::0;;;:17:::1;:34;::::0;;;;:42;;-1:-1:-1;;37585:42:0::1;::::0;::::1;;::::0;;;::::1;::::0;;37491:144::o;37285:101::-;34778:6;;-1:-1:-1;;;;;34778:6:0;19697:10;34925:23;34917:68;;;;-1:-1:-1;;;34917:68:0;;;;;;;:::i;:::-;37358:12:::1;:20;37373:5:::0;37358:12;:20:::1;:::i;24004:155::-:0;24099:52;19697:10;24132:8;24142;24099:18;:52::i;25127:328::-;25302:41;19697:10;25335:7;25302:18;:41::i;:::-;25294:103;;;;-1:-1:-1;;;25294:103:0;;;;;;;:::i;:::-;25408:39;25422:4;25428:2;25432:7;25441:5;25408:13;:39::i;:::-;25127:328;;;;:::o;37066:213::-;27030:4;27054:16;;;:7;:16;;;;;;37139:13;;-1:-1:-1;;;;;27054:16:0;37165:76;;;;-1:-1:-1;;;37165:76:0;;13592:2:1;37165:76:0;;;13574:21:1;13631:2;13611:18;;;13604:30;13670:34;13650:18;;;13643:62;-1:-1:-1;;;13721:18:1;;;13714:45;13776:19;;37165:76:0;13390:411:1;37165:76:0;37259:12;37252:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37066:213;;;:::o;38293:209::-;34778:6;;-1:-1:-1;;;;;34778:6:0;19697:10;34925:23;34917:68;;;;-1:-1:-1;;;34917:68:0;;;;;;;:::i;:::-;38349:14:::1;38366:13;37712:10:::0;;;37641:89;38366:13:::1;-1:-1:-1::0;;;;;38390:17:0;::::1;;::::0;;;:13:::1;:17;::::0;;;;:24;;-1:-1:-1;;38390:24:0::1;38410:4;38390:24:::0;;::::1;::::0;;;38425:10:::1;:15:::0;;38349:30;;-1:-1:-1;38410:4:0;;38425:10;;38390:17;38425:15:::1;::::0;38410:4;;38425:15:::1;:::i;:::-;::::0;;;-1:-1:-1;38451:43:0::1;::::0;-1:-1:-1;38461:2:0;38465:28:::1;38487:6:::0;36450:1:::1;38465:28;:::i;24230:164::-:0;-1:-1:-1;;;;;24351:25:0;;;24327:4;24351:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24230:164::o;37392:93::-;34778:6;;-1:-1:-1;;;;;34778:6:0;19697:10;34925:23;34917:68;;;;-1:-1:-1;;;34917:68:0;;;;;;;:::i;:::-;37457:12:::1;:20:::0;;-1:-1:-1;;37457:20:0::1;::::0;::::1;;::::0;;;::::1;::::0;;37392:93::o;35614:201::-;34778:6;;-1:-1:-1;;;;;34778:6:0;19697:10;34925:23;34917:68;;;;-1:-1:-1;;;34917:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35703:22:0;::::1;35695:73;;;::::0;-1:-1:-1;;;35695:73:0;;14008:2:1;35695:73:0::1;::::0;::::1;13990:21:1::0;14047:2;14027:18;;;14020:30;14086:34;14066:18;;;14059:62;-1:-1:-1;;;14137:18:1;;;14130:36;14183:19;;35695:73:0::1;13806:402:1::0;35695:73:0::1;35779:28;35798:8;35779:18;:28::i;:::-;35614:201:::0;:::o;30947:174::-;31022:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31022:29:0;-1:-1:-1;;;;;31022:29:0;;;;;;;;:24;;31076:23;31022:24;31076:14;:23::i;:::-;-1:-1:-1;;;;;31067:46:0;;;;;;;;;;;30947:174;;:::o;27259:348::-;27352:4;27054:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27054:16:0;27369:73;;;;-1:-1:-1;;;27369:73:0;;14415:2:1;27369:73:0;;;14397:21:1;14454:2;14434:18;;;14427:30;14493:34;14473:18;;;14466:62;-1:-1:-1;;;14544:18:1;;;14537:42;14596:19;;27369:73:0;14213:408:1;27369:73:0;27453:13;27469:23;27484:7;27469:14;:23::i;:::-;27453:39;;27522:5;-1:-1:-1;;;;;27511:16:0;:7;-1:-1:-1;;;;;27511:16:0;;:51;;;;27555:7;-1:-1:-1;;;;;27531:31:0;:20;27543:7;27531:11;:20::i;:::-;-1:-1:-1;;;;;27531:31:0;;27511:51;:87;;;;27566:32;27583:5;27590:7;27566:16;:32::i;:::-;27503:96;27259:348;-1:-1:-1;;;;27259:348:0:o;30251:578::-;30410:4;-1:-1:-1;;;;;30383:31:0;:23;30398:7;30383:14;:23::i;:::-;-1:-1:-1;;;;;30383:31:0;;30375:85;;;;-1:-1:-1;;;30375:85:0;;14828:2:1;30375:85:0;;;14810:21:1;14867:2;14847:18;;;14840:30;14906:34;14886:18;;;14879:62;-1:-1:-1;;;14957:18:1;;;14950:39;15006:19;;30375:85:0;14626:405:1;30375:85:0;-1:-1:-1;;;;;30479:16:0;;30471:65;;;;-1:-1:-1;;;30471:65:0;;15238:2:1;30471:65:0;;;15220:21:1;15277:2;15257:18;;;15250:30;15316:34;15296:18;;;15289:62;-1:-1:-1;;;15367:18:1;;;15360:34;15411:19;;30471:65:0;15036:400:1;30471:65:0;30653:29;30670:1;30674:7;30653:8;:29::i;:::-;-1:-1:-1;;;;;30695:15:0;;;;;;:9;:15;;;;;:20;;30714:1;;30695:15;:20;;30714:1;;30695:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30726:13:0;;;;;;:9;:13;;;;;:18;;30743:1;;30726:13;:18;;30743:1;;30726:18;:::i;:::-;;;;-1:-1:-1;;30755:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30755:21:0;-1:-1:-1;;;;;30755:21:0;;;;;;;;;30794:27;;30755:16;;30794:27;;;;;;;30251:578;;;:::o;27949:110::-;28025:26;28035:2;28039:7;28025:26;;;;;;;;;;;;:9;:26::i;35975:191::-;36068:6;;;-1:-1:-1;;;;;36085:17:0;;;-1:-1:-1;;;;;;36085:17:0;;;;;;;36118:40;;36068:6;;;36085:17;36068:6;;36118:40;;36049:16;;36118:40;36038:128;35975:191;:::o;31263:315::-;31418:8;-1:-1:-1;;;;;31409:17:0;:5;-1:-1:-1;;;;;31409:17:0;;31401:55;;;;-1:-1:-1;;;31401:55:0;;15776:2:1;31401:55:0;;;15758:21:1;15815:2;15795:18;;;15788:30;15854:27;15834:18;;;15827:55;15899:18;;31401:55:0;15574:349:1;31401:55:0;-1:-1:-1;;;;;31467:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;31467:46:0;;;;;;;;;;31529:41;;540::1;;;31529::0;;513:18:1;31529:41:0;;;;;;;31263:315;;;:::o;26337:::-;26494:28;26504:4;26510:2;26514:7;26494:9;:28::i;:::-;26541:48;26564:4;26570:2;26574:7;26583:5;26541:22;:48::i;:::-;26533:111;;;;-1:-1:-1;;;26533:111:0;;;;;;;:::i;28286:321::-;28416:18;28422:2;28426:7;28416:5;:18::i;:::-;28467:54;28498:1;28502:2;28506:7;28515:5;28467:22;:54::i;:::-;28445:154;;;;-1:-1:-1;;;28445:154:0;;;;;;;:::i;32143:799::-;32298:4;-1:-1:-1;;;;;32319:13:0;;3298:20;3346:8;32315:620;;32355:72;;-1:-1:-1;;;32355:72:0;;-1:-1:-1;;;;;32355:36:0;;;;;:72;;19697:10;;32406:4;;32412:7;;32421:5;;32355:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32355:72:0;;;;;;;;-1:-1:-1;;32355:72:0;;;;;;;;;;;;:::i;:::-;;;32351:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32597:6;:13;32614:1;32597:18;32593:272;;32640:60;;-1:-1:-1;;;32640:60:0;;;;;;;:::i;32593:272::-;32815:6;32809:13;32800:6;32796:2;32792:15;32785:38;32351:529;-1:-1:-1;;;;;;32478:51:0;-1:-1:-1;;;32478:51:0;;-1:-1:-1;32471:58:0;;32315:620;-1:-1:-1;32919:4:0;32143:799;;;;;;:::o;28943:382::-;-1:-1:-1;;;;;29023:16:0;;29015:61;;;;-1:-1:-1;;;29015:61:0;;17297:2:1;29015:61:0;;;17279:21:1;;;17316:18;;;17309:30;17375:34;17355:18;;;17348:62;17427:18;;29015:61:0;17095:356:1;29015:61:0;27030:4;27054:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27054:16:0;:30;29087:58;;;;-1:-1:-1;;;29087:58:0;;17658:2:1;29087:58:0;;;17640:21:1;17697:2;17677:18;;;17670:30;17736;17716:18;;;17709:58;17784:18;;29087:58:0;17456:352:1;29087:58:0;-1:-1:-1;;;;;29216:13:0;;;;;;:9;:13;;;;;:18;;29233:1;;29216:13;:18;;29233:1;;29216:18;:::i;:::-;;;;-1:-1:-1;;29245:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29245:21:0;-1:-1:-1;;;;;29245:21:0;;;;;;;;29284:33;;29245:16;;;29284:33;;29245:16;;29284:33;28943: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:160::-;2846:20;;2902:13;;2895:21;2885:32;;2875:60;;2931:1;2928;2921:12;2946:254;3011:6;3019;3072:2;3060:9;3051:7;3047:23;3043:32;3040:52;;;3088:1;3085;3078:12;3040:52;3111:29;3130:9;3111:29;:::i;:::-;3101:39;;3159:35;3190:2;3179:9;3175:18;3159:35;:::i;:::-;3149:45;;2946:254;;;;;:::o;3205:127::-;3266:10;3261:3;3257:20;3254:1;3247:31;3297:4;3294:1;3287:15;3321:4;3318:1;3311:15;3337:632;3402:5;3432:18;3473:2;3465:6;3462:14;3459:40;;;3479:18;;:::i;:::-;3554:2;3548:9;3522:2;3608:15;;-1:-1:-1;;3604:24:1;;;3630:2;3600:33;3596:42;3584:55;;;3654:18;;;3674:22;;;3651:46;3648:72;;;3700:18;;:::i;:::-;3740:10;3736:2;3729:22;3769:6;3760:15;;3799:6;3791;3784:22;3839:3;3830:6;3825:3;3821:16;3818:25;3815:45;;;3856:1;3853;3846:12;3815:45;3906:6;3901:3;3894:4;3886:6;3882:17;3869:44;3961:1;3954:4;3945:6;3937;3933:19;3929:30;3922:41;;;;3337:632;;;;;:::o;3974:451::-;4043:6;4096:2;4084:9;4075:7;4071:23;4067:32;4064:52;;;4112:1;4109;4102:12;4064:52;4152:9;4139:23;4185:18;4177:6;4174:30;4171:50;;;4217:1;4214;4207:12;4171:50;4240:22;;4293:4;4285:13;;4281:27;-1:-1:-1;4271:55:1;;4322:1;4319;4312:12;4271:55;4345:74;4411:7;4406:2;4393:16;4388:2;4384;4380:11;4345:74;:::i;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;7177:413::-;7379:2;7361:21;;;7418:2;7398:18;;;7391:30;7457:34;7452:2;7437:18;;7430:62;-1:-1:-1;;;7523:2:1;7508:18;;7501:47;7580:3;7565:19;;7177:413::o;7595:356::-;7797:2;7779:21;;;7816:18;;;7809:30;7875:34;7870:2;7855:18;;7848:62;7942:2;7927:18;;7595:356::o;9972:184::-;10042:6;10095:2;10083:9;10074:7;10070:23;10066:32;10063:52;;;10111:1;10108;10101:12;10063:52;-1:-1:-1;10134:16:1;;9972:184;-1:-1:-1;9972:184:1:o;10513:127::-;10574:10;10569:3;10565:20;10562:1;10555:31;10605:4;10602:1;10595:15;10629:4;10626:1;10619:15;10645:125;10710:9;;;10731:10;;;10728:36;;;10744:18;;:::i;11312:545::-;11414:2;11409:3;11406:11;11403:448;;;11450:1;11475:5;11471:2;11464:17;11520:4;11516:2;11506:19;11590:2;11578:10;11574:19;11571:1;11567:27;11561:4;11557:38;11626:4;11614:10;11611:20;11608:47;;;-1:-1:-1;11649:4:1;11608:47;11704:2;11699:3;11695:12;11692:1;11688:20;11682:4;11678:31;11668:41;;11759:82;11777:2;11770:5;11767:13;11759:82;;;11822:17;;;11803:1;11792:13;11759:82;;;11763:3;;;11312:545;;;:::o;12033:1352::-;12159:3;12153:10;12186:18;12178:6;12175:30;12172:56;;;12208:18;;:::i;:::-;12237:97;12327:6;12287:38;12319:4;12313:11;12287:38;:::i;:::-;12281:4;12237:97;:::i;:::-;12389:4;;12453:2;12442:14;;12470:1;12465:663;;;;13172:1;13189:6;13186:89;;;-1:-1:-1;13241:19:1;;;13235:26;13186:89;-1:-1:-1;;11990:1:1;11986:11;;;11982:24;11978:29;11968:40;12014:1;12010:11;;;11965:57;13288:81;;12435:944;;12465:663;11259:1;11252:14;;;11296:4;11283:18;;-1:-1:-1;;12501:20:1;;;12619:236;12633:7;12630:1;12627:14;12619:236;;;12722:19;;;12716:26;12701:42;;12814:27;;;;12782:1;12770:14;;;;12649:19;;12619:236;;;12623:3;12883:6;12874:7;12871:19;12868:201;;;12944:19;;;12938:26;-1:-1:-1;;13027:1:1;13023:14;;;13039:3;13019:24;13015:37;13011:42;12996:58;12981:74;;12868:201;-1:-1:-1;;;;;13115:1:1;13099:14;;;13095:22;13082:36;;-1:-1:-1;12033:1352:1:o;15441:128::-;15508:9;;;15529:11;;;15526:37;;;15543:18;;:::i;15928:414::-;16130:2;16112:21;;;16169:2;16149:18;;;16142:30;16208:34;16203:2;16188:18;;16181:62;-1:-1:-1;;;16274:2:1;16259:18;;16252:48;16332:3;16317:19;;15928:414::o;16347:489::-;-1:-1:-1;;;;;16616:15:1;;;16598:34;;16668:15;;16663:2;16648:18;;16641:43;16715:2;16700:18;;16693:34;;;16763:3;16758:2;16743:18;;16736:31;;;16541:4;;16784:46;;16810:19;;16802:6;16784:46;:::i;:::-;16776:54;16347:489;-1:-1:-1;;;;;;16347:489:1:o;16841:249::-;16910:6;16963:2;16951:9;16942:7;16938:23;16934:32;16931:52;;;16979:1;16976;16969:12;16931:52;17011:9;17005:16;17030:30;17054:5;17030:30;:::i

Swarm Source

ipfs://15e6db3dc8dc10630d27e58fc04c14619c20c8a650ac165ef5d2eef0673a593b
Loading...
Loading
Loading...
Loading
[ 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.