ETH Price: $3,440.20 (-1.37%)
Gas: 9 Gwei

Token

CHIPP [WRALPHIE] (SH22)
 

Overview

Max Total Supply

87 SH22

Holders

80

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 SH22
0x0481197c534acec5ce163ffbd9b69d91cd0e2f3e
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SquadtsHoliday2022

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// 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/SquadtsHoliday2022.sol
pragma solidity ^0.8.17;

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

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

    uint256 constant TOKEN_IDS_STARTS_AT = 1;
    uint256 tokenCount = 0;

    address constant contractAddress = 0xEEAF63F35B7c365AFf27015A9AA5d6e4b734962C;

    mapping(uint256 => bool) public tokenClaimed;
    mapping(address => bool) public walletClaimed;

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

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

    // Minting
    function mint(uint256 tokenId) external {
        require(isMintActive, "Minting is inactive");
        require(!tokenClaimed[tokenId], "Token already claimed");
        require(!walletClaimed[msg.sender], "Wallet already claimed");
        require(ERC721(contractAddress).ownerOf(tokenId) == msg.sender, "Wallet does not own token");
        uint256 supply = totalSupply();
        tokenClaimed[tokenId] = true;
        walletClaimed[msg.sender] = true;
        tokenCount += 1;
        _safeMint(msg.sender, TOKEN_IDS_STARTS_AT + supply);
    }
    function gift(address to) external onlyOwner {
        uint256 supply = totalSupply();
        walletClaimed[to] = true;
        tokenCount += 1;
        _safeMint(to, TOKEN_IDS_STARTS_AT + supply);
    }

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

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"metaDataURL","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"value","type":"string"}],"name":"setMetaDataURL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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"}]

60a0604052600060809081526007906200001a908262000219565b506008805460ff1916600117905560006009553480156200003a57600080fd5b5060405162002011380380620020118339810160408190526200005d9162000394565b828260006200006d838262000219565b5060016200007c828262000219565b5050506200009962000093620000ad60201b60201c565b620000b1565b620000a48162000103565b50505062000425565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620001625760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b600762000170828262000219565b5050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200019f57607f821691505b602082108103620001c057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200021457600081815260208120601f850160051c81016020861015620001ef5750805b601f850160051c820191505b818110156200021057828155600101620001fb565b5050505b505050565b81516001600160401b0381111562000235576200023562000174565b6200024d816200024684546200018a565b84620001c6565b602080601f8311600181146200028557600084156200026c5750858301515b600019600386901b1c1916600185901b17855562000210565b600085815260208120601f198616915b82811015620002b65788860151825594840194600190910190840162000295565b5085821015620002d55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082601f830112620002f757600080fd5b81516001600160401b038082111562000314576200031462000174565b604051601f8301601f19908116603f011681019082821181831017156200033f576200033f62000174565b816040528381526020925086838588010111156200035c57600080fd5b600091505b8382101562000380578582018301518183018401529082019062000361565b600093810190920192909252949350505050565b600080600060608486031215620003aa57600080fd5b83516001600160401b0380821115620003c257600080fd5b620003d087838801620002e5565b94506020860151915080821115620003e757600080fd5b620003f587838801620002e5565b935060408601519150808211156200040c57600080fd5b506200041b86828701620002e5565b9150509250925092565b611bdc80620004356000396000f3fe6080604052600436106101665760003560e01c8063715018a6116100d1578063b88d4fde1161008a578063cbfc4bce11610064578063cbfc4bce14610425578063e985e9c514610445578063ee1cc94414610465578063f2fde38b1461048557600080fd5b8063b88d4fde146103b5578063c25d8f4d146103d5578063c87b56dd1461040557600080fd5b8063715018a61461030d5780638da5cb5b1461032257806395d89b41146103405780639d7b9a6c14610355578063a0712d6814610375578063a22cb4651461039557600080fd5b806336ee1d8d1161012357806336ee1d8d1461025b5780633ccfd60b1461028b57806342842e0e146102935780635b92ac0d146102b35780636352211e146102cd57806370a08231146102ed57600080fd5b806301ffc9a71461016b57806306fdde03146101a0578063081812fc146101c2578063095ea7b3146101fa57806318160ddd1461021c57806323b872dd1461023b575b600080fd5b34801561017757600080fd5b5061018b6101863660046115ab565b6104a5565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506101b56104f7565b6040516101979190611615565b3480156101ce57600080fd5b506101e26101dd366004611628565b610589565b6040516001600160a01b039091168152602001610197565b34801561020657600080fd5b5061021a610215366004611656565b610623565b005b34801561022857600080fd5b506009545b604051908152602001610197565b34801561024757600080fd5b5061021a610256366004611682565b610738565b34801561026757600080fd5b5061018b610276366004611628565b600a6020526000908152604090205460ff1681565b61021a610769565b34801561029f57600080fd5b5061021a6102ae366004611682565b610823565b3480156102bf57600080fd5b5060085461018b9060ff1681565b3480156102d957600080fd5b506101e26102e8366004611628565b61083e565b3480156102f957600080fd5b5061022d6103083660046116c3565b6108b5565b34801561031957600080fd5b5061021a61093c565b34801561032e57600080fd5b506006546001600160a01b03166101e2565b34801561034c57600080fd5b506101b5610972565b34801561036157600080fd5b5061021a61037036600461176c565b610981565b34801561038157600080fd5b5061021a610390366004611628565b6109b7565b3480156103a157600080fd5b5061021a6103b03660046117ca565b610bec565b3480156103c157600080fd5b5061021a6103d03660046117ff565b610bf7565b3480156103e157600080fd5b5061018b6103f03660046116c3565b600b6020526000908152604090205460ff1681565b34801561041157600080fd5b506101b5610420366004611628565b610c2f565b34801561043157600080fd5b5061021a6104403660046116c3565b610d40565b34801561045157600080fd5b5061018b61046036600461187f565b610dc7565b34801561047157600080fd5b5061021a6104803660046118b8565b610df5565b34801561049157600080fd5b5061021a6104a03660046116c3565b610e32565b60006001600160e01b031982166380ac58cd60e01b14806104d657506001600160e01b03198216635b5e139f60e01b145b806104f157506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610506906118d3565b80601f0160208091040260200160405190810160405280929190818152602001828054610532906118d3565b801561057f5780601f106105545761010080835404028352916020019161057f565b820191906000526020600020905b81548152906001019060200180831161056257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106075760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061062e8261083e565b9050806001600160a01b0316836001600160a01b03160361069b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105fe565b336001600160a01b03821614806106b757506106b78133610dc7565b6107295760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105fe565b6107338383610ecd565b505050565b6107423382610f3b565b61075e5760405162461bcd60e51b81526004016105fe9061190d565b610733838383611012565b6006546001600160a01b031633146107935760405162461bcd60e51b81526004016105fe9061195e565b6040514790600090339083908381818185875af1925050503d80600081146107d7576040519150601f19603f3d011682016040523d82523d6000602084013e6107dc565b606091505b505090508061081f5760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b60448201526064016105fe565b5050565b61073383838360405180602001604052806000815250610bf7565b6000818152600260205260408120546001600160a01b0316806104f15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105fe565b60006001600160a01b0382166109205760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105fe565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146109665760405162461bcd60e51b81526004016105fe9061195e565b61097060006111b2565b565b606060018054610506906118d3565b6006546001600160a01b031633146109ab5760405162461bcd60e51b81526004016105fe9061195e565b600761081f82826119e1565b60085460ff166109ff5760405162461bcd60e51b81526020600482015260136024820152724d696e74696e6720697320696e61637469766560681b60448201526064016105fe565b6000818152600a602052604090205460ff1615610a565760405162461bcd60e51b8152602060048201526015602482015274151bdad95b88185b1c9958591e4818db185a5b5959605a1b60448201526064016105fe565b336000908152600b602052604090205460ff1615610aaf5760405162461bcd60e51b815260206004820152601660248201527515d85b1b195d08185b1c9958591e4818db185a5b595960521b60448201526064016105fe565b6040516331a9108f60e11b815260048101829052339073eeaf63f35b7c365aff27015a9aa5d6e4b734962c90636352211e90602401602060405180830381865afa158015610b01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b259190611aa1565b6001600160a01b031614610b7b5760405162461bcd60e51b815260206004820152601960248201527f57616c6c657420646f6573206e6f74206f776e20746f6b656e0000000000000060448201526064016105fe565b6000610b8660095490565b6000838152600a602090815260408083208054600160ff199182168117909255338552600b90935290832080549092168117909155600980549394509092909190610bd2908490611ad4565b9091555061081f905033610be7836001611ad4565b611204565b61081f33838361121e565b610c013383610f3b565b610c1d5760405162461bcd60e51b81526004016105fe9061190d565b610c29848484846112ec565b50505050565b6000818152600260205260409020546060906001600160a01b0316610cae5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105fe565b60078054610cbb906118d3565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce7906118d3565b8015610d345780601f10610d0957610100808354040283529160200191610d34565b820191906000526020600020905b815481529060010190602001808311610d1757829003601f168201915b50505050509050919050565b6006546001600160a01b03163314610d6a5760405162461bcd60e51b81526004016105fe9061195e565b6000610d7560095490565b6001600160a01b0383166000908152600b60205260408120805460ff19166001908117909155600980549394509092909190610db2908490611ad4565b9091555061081f905082610be7836001611ad4565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6006546001600160a01b03163314610e1f5760405162461bcd60e51b81526004016105fe9061195e565b6008805460ff1916911515919091179055565b6006546001600160a01b03163314610e5c5760405162461bcd60e51b81526004016105fe9061195e565b6001600160a01b038116610ec15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105fe565b610eca816111b2565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610f028261083e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610fb45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105fe565b6000610fbf8361083e565b9050806001600160a01b0316846001600160a01b03161480610ffa5750836001600160a01b0316610fef84610589565b6001600160a01b0316145b8061100a575061100a8185610dc7565b949350505050565b826001600160a01b03166110258261083e565b6001600160a01b03161461108d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105fe565b6001600160a01b0382166110ef5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105fe565b6110fa600082610ecd565b6001600160a01b0383166000908152600360205260408120805460019290611123908490611ae7565b90915550506001600160a01b0382166000908152600360205260408120805460019290611151908490611ad4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61081f82826040518060200160405280600081525061131f565b816001600160a01b0316836001600160a01b03160361127f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105fe565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6112f7848484611012565b61130384848484611352565b610c295760405162461bcd60e51b81526004016105fe90611afa565b6113298383611453565b6113366000848484611352565b6107335760405162461bcd60e51b81526004016105fe90611afa565b60006001600160a01b0384163b1561144857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611396903390899088908890600401611b4c565b6020604051808303816000875af19250505080156113d1575060408051601f3d908101601f191682019092526113ce91810190611b89565b60015b61142e573d8080156113ff576040519150601f19603f3d011682016040523d82523d6000602084013e611404565b606091505b5080516000036114265760405162461bcd60e51b81526004016105fe90611afa565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061100a565b506001949350505050565b6001600160a01b0382166114a95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105fe565b6000818152600260205260409020546001600160a01b03161561150e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105fe565b6001600160a01b0382166000908152600360205260408120805460019290611537908490611ad4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b031981168114610eca57600080fd5b6000602082840312156115bd57600080fd5b81356115c881611595565b9392505050565b6000815180845260005b818110156115f5576020818501810151868301820152016115d9565b506000602082860101526020601f19601f83011685010191505092915050565b6020815260006115c860208301846115cf565b60006020828403121561163a57600080fd5b5035919050565b6001600160a01b0381168114610eca57600080fd5b6000806040838503121561166957600080fd5b823561167481611641565b946020939093013593505050565b60008060006060848603121561169757600080fd5b83356116a281611641565b925060208401356116b281611641565b929592945050506040919091013590565b6000602082840312156116d557600080fd5b81356115c881611641565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611711576117116116e0565b604051601f8501601f19908116603f01168101908282118183101715611739576117396116e0565b8160405280935085815286868601111561175257600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561177e57600080fd5b813567ffffffffffffffff81111561179557600080fd5b8201601f810184136117a657600080fd5b61100a848235602084016116f6565b803580151581146117c557600080fd5b919050565b600080604083850312156117dd57600080fd5b82356117e881611641565b91506117f6602084016117b5565b90509250929050565b6000806000806080858703121561181557600080fd5b843561182081611641565b9350602085013561183081611641565b925060408501359150606085013567ffffffffffffffff81111561185357600080fd5b8501601f8101871361186457600080fd5b611873878235602084016116f6565b91505092959194509250565b6000806040838503121561189257600080fd5b823561189d81611641565b915060208301356118ad81611641565b809150509250929050565b6000602082840312156118ca57600080fd5b6115c8826117b5565b600181811c908216806118e757607f821691505b60208210810361190757634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f82111561073357600081815260208120601f850160051c810160208610156119ba5750805b601f850160051c820191505b818110156119d9578281556001016119c6565b505050505050565b815167ffffffffffffffff8111156119fb576119fb6116e0565b611a0f81611a0984546118d3565b84611993565b602080601f831160018114611a445760008415611a2c5750858301515b600019600386901b1c1916600185901b1785556119d9565b600085815260208120601f198616915b82811015611a7357888601518255948401946001909101908401611a54565b5085821015611a915787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215611ab357600080fd5b81516115c881611641565b634e487b7160e01b600052601160045260246000fd5b808201808211156104f1576104f1611abe565b818103818111156104f1576104f1611abe565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b7f908301846115cf565b9695505050505050565b600060208284031215611b9b57600080fd5b81516115c88161159556fea26469706673582212201532c56eb10724bd48670f2e6d5fe3847f40d4bfd786745739ccd8033be650c764736f6c63430008110033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000104348495050205b5752414c504849455d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045348323200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f697066732e696f2f697066732f516d50786f69754a5176486d5139744170764a64576236336676706a34346d784e54466f6d787276534d444457410000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101665760003560e01c8063715018a6116100d1578063b88d4fde1161008a578063cbfc4bce11610064578063cbfc4bce14610425578063e985e9c514610445578063ee1cc94414610465578063f2fde38b1461048557600080fd5b8063b88d4fde146103b5578063c25d8f4d146103d5578063c87b56dd1461040557600080fd5b8063715018a61461030d5780638da5cb5b1461032257806395d89b41146103405780639d7b9a6c14610355578063a0712d6814610375578063a22cb4651461039557600080fd5b806336ee1d8d1161012357806336ee1d8d1461025b5780633ccfd60b1461028b57806342842e0e146102935780635b92ac0d146102b35780636352211e146102cd57806370a08231146102ed57600080fd5b806301ffc9a71461016b57806306fdde03146101a0578063081812fc146101c2578063095ea7b3146101fa57806318160ddd1461021c57806323b872dd1461023b575b600080fd5b34801561017757600080fd5b5061018b6101863660046115ab565b6104a5565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506101b56104f7565b6040516101979190611615565b3480156101ce57600080fd5b506101e26101dd366004611628565b610589565b6040516001600160a01b039091168152602001610197565b34801561020657600080fd5b5061021a610215366004611656565b610623565b005b34801561022857600080fd5b506009545b604051908152602001610197565b34801561024757600080fd5b5061021a610256366004611682565b610738565b34801561026757600080fd5b5061018b610276366004611628565b600a6020526000908152604090205460ff1681565b61021a610769565b34801561029f57600080fd5b5061021a6102ae366004611682565b610823565b3480156102bf57600080fd5b5060085461018b9060ff1681565b3480156102d957600080fd5b506101e26102e8366004611628565b61083e565b3480156102f957600080fd5b5061022d6103083660046116c3565b6108b5565b34801561031957600080fd5b5061021a61093c565b34801561032e57600080fd5b506006546001600160a01b03166101e2565b34801561034c57600080fd5b506101b5610972565b34801561036157600080fd5b5061021a61037036600461176c565b610981565b34801561038157600080fd5b5061021a610390366004611628565b6109b7565b3480156103a157600080fd5b5061021a6103b03660046117ca565b610bec565b3480156103c157600080fd5b5061021a6103d03660046117ff565b610bf7565b3480156103e157600080fd5b5061018b6103f03660046116c3565b600b6020526000908152604090205460ff1681565b34801561041157600080fd5b506101b5610420366004611628565b610c2f565b34801561043157600080fd5b5061021a6104403660046116c3565b610d40565b34801561045157600080fd5b5061018b61046036600461187f565b610dc7565b34801561047157600080fd5b5061021a6104803660046118b8565b610df5565b34801561049157600080fd5b5061021a6104a03660046116c3565b610e32565b60006001600160e01b031982166380ac58cd60e01b14806104d657506001600160e01b03198216635b5e139f60e01b145b806104f157506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610506906118d3565b80601f0160208091040260200160405190810160405280929190818152602001828054610532906118d3565b801561057f5780601f106105545761010080835404028352916020019161057f565b820191906000526020600020905b81548152906001019060200180831161056257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106075760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061062e8261083e565b9050806001600160a01b0316836001600160a01b03160361069b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105fe565b336001600160a01b03821614806106b757506106b78133610dc7565b6107295760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105fe565b6107338383610ecd565b505050565b6107423382610f3b565b61075e5760405162461bcd60e51b81526004016105fe9061190d565b610733838383611012565b6006546001600160a01b031633146107935760405162461bcd60e51b81526004016105fe9061195e565b6040514790600090339083908381818185875af1925050503d80600081146107d7576040519150601f19603f3d011682016040523d82523d6000602084013e6107dc565b606091505b505090508061081f5760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b60448201526064016105fe565b5050565b61073383838360405180602001604052806000815250610bf7565b6000818152600260205260408120546001600160a01b0316806104f15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105fe565b60006001600160a01b0382166109205760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105fe565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146109665760405162461bcd60e51b81526004016105fe9061195e565b61097060006111b2565b565b606060018054610506906118d3565b6006546001600160a01b031633146109ab5760405162461bcd60e51b81526004016105fe9061195e565b600761081f82826119e1565b60085460ff166109ff5760405162461bcd60e51b81526020600482015260136024820152724d696e74696e6720697320696e61637469766560681b60448201526064016105fe565b6000818152600a602052604090205460ff1615610a565760405162461bcd60e51b8152602060048201526015602482015274151bdad95b88185b1c9958591e4818db185a5b5959605a1b60448201526064016105fe565b336000908152600b602052604090205460ff1615610aaf5760405162461bcd60e51b815260206004820152601660248201527515d85b1b195d08185b1c9958591e4818db185a5b595960521b60448201526064016105fe565b6040516331a9108f60e11b815260048101829052339073eeaf63f35b7c365aff27015a9aa5d6e4b734962c90636352211e90602401602060405180830381865afa158015610b01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b259190611aa1565b6001600160a01b031614610b7b5760405162461bcd60e51b815260206004820152601960248201527f57616c6c657420646f6573206e6f74206f776e20746f6b656e0000000000000060448201526064016105fe565b6000610b8660095490565b6000838152600a602090815260408083208054600160ff199182168117909255338552600b90935290832080549092168117909155600980549394509092909190610bd2908490611ad4565b9091555061081f905033610be7836001611ad4565b611204565b61081f33838361121e565b610c013383610f3b565b610c1d5760405162461bcd60e51b81526004016105fe9061190d565b610c29848484846112ec565b50505050565b6000818152600260205260409020546060906001600160a01b0316610cae5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105fe565b60078054610cbb906118d3565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce7906118d3565b8015610d345780601f10610d0957610100808354040283529160200191610d34565b820191906000526020600020905b815481529060010190602001808311610d1757829003601f168201915b50505050509050919050565b6006546001600160a01b03163314610d6a5760405162461bcd60e51b81526004016105fe9061195e565b6000610d7560095490565b6001600160a01b0383166000908152600b60205260408120805460ff19166001908117909155600980549394509092909190610db2908490611ad4565b9091555061081f905082610be7836001611ad4565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6006546001600160a01b03163314610e1f5760405162461bcd60e51b81526004016105fe9061195e565b6008805460ff1916911515919091179055565b6006546001600160a01b03163314610e5c5760405162461bcd60e51b81526004016105fe9061195e565b6001600160a01b038116610ec15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105fe565b610eca816111b2565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610f028261083e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610fb45760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105fe565b6000610fbf8361083e565b9050806001600160a01b0316846001600160a01b03161480610ffa5750836001600160a01b0316610fef84610589565b6001600160a01b0316145b8061100a575061100a8185610dc7565b949350505050565b826001600160a01b03166110258261083e565b6001600160a01b03161461108d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105fe565b6001600160a01b0382166110ef5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105fe565b6110fa600082610ecd565b6001600160a01b0383166000908152600360205260408120805460019290611123908490611ae7565b90915550506001600160a01b0382166000908152600360205260408120805460019290611151908490611ad4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61081f82826040518060200160405280600081525061131f565b816001600160a01b0316836001600160a01b03160361127f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105fe565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6112f7848484611012565b61130384848484611352565b610c295760405162461bcd60e51b81526004016105fe90611afa565b6113298383611453565b6113366000848484611352565b6107335760405162461bcd60e51b81526004016105fe90611afa565b60006001600160a01b0384163b1561144857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611396903390899088908890600401611b4c565b6020604051808303816000875af19250505080156113d1575060408051601f3d908101601f191682019092526113ce91810190611b89565b60015b61142e573d8080156113ff576040519150601f19603f3d011682016040523d82523d6000602084013e611404565b606091505b5080516000036114265760405162461bcd60e51b81526004016105fe90611afa565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061100a565b506001949350505050565b6001600160a01b0382166114a95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105fe565b6000818152600260205260409020546001600160a01b03161561150e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105fe565b6001600160a01b0382166000908152600360205260408120805460019290611537908490611ad4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b031981168114610eca57600080fd5b6000602082840312156115bd57600080fd5b81356115c881611595565b9392505050565b6000815180845260005b818110156115f5576020818501810151868301820152016115d9565b506000602082860101526020601f19601f83011685010191505092915050565b6020815260006115c860208301846115cf565b60006020828403121561163a57600080fd5b5035919050565b6001600160a01b0381168114610eca57600080fd5b6000806040838503121561166957600080fd5b823561167481611641565b946020939093013593505050565b60008060006060848603121561169757600080fd5b83356116a281611641565b925060208401356116b281611641565b929592945050506040919091013590565b6000602082840312156116d557600080fd5b81356115c881611641565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611711576117116116e0565b604051601f8501601f19908116603f01168101908282118183101715611739576117396116e0565b8160405280935085815286868601111561175257600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561177e57600080fd5b813567ffffffffffffffff81111561179557600080fd5b8201601f810184136117a657600080fd5b61100a848235602084016116f6565b803580151581146117c557600080fd5b919050565b600080604083850312156117dd57600080fd5b82356117e881611641565b91506117f6602084016117b5565b90509250929050565b6000806000806080858703121561181557600080fd5b843561182081611641565b9350602085013561183081611641565b925060408501359150606085013567ffffffffffffffff81111561185357600080fd5b8501601f8101871361186457600080fd5b611873878235602084016116f6565b91505092959194509250565b6000806040838503121561189257600080fd5b823561189d81611641565b915060208301356118ad81611641565b809150509250929050565b6000602082840312156118ca57600080fd5b6115c8826117b5565b600181811c908216806118e757607f821691505b60208210810361190757634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f82111561073357600081815260208120601f850160051c810160208610156119ba5750805b601f850160051c820191505b818110156119d9578281556001016119c6565b505050505050565b815167ffffffffffffffff8111156119fb576119fb6116e0565b611a0f81611a0984546118d3565b84611993565b602080601f831160018114611a445760008415611a2c5750858301515b600019600386901b1c1916600185901b1785556119d9565b600085815260208120601f198616915b82811015611a7357888601518255948401946001909101908401611a54565b5085821015611a915787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215611ab357600080fd5b81516115c881611641565b634e487b7160e01b600052601160045260246000fd5b808201808211156104f1576104f1611abe565b818103818111156104f1576104f1611abe565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b7f908301846115cf565b9695505050505050565b600060208284031215611b9b57600080fd5b81516115c88161159556fea26469706673582212201532c56eb10724bd48670f2e6d5fe3847f40d4bfd786745739ccd8033be650c764736f6c63430008110033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000104348495050205b5752414c504849455d0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000045348323200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f697066732e696f2f697066732f516d50786f69754a5176486d5139744170764a64576236336676706a34346d784e54466f6d787276534d444457410000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): CHIPP [WRALPHIE]
Arg [1] : symbol (string): SH22
Arg [2] : metaDataURL (string): https://ipfs.io/ipfs/QmPxoiuJQvHmQ9tApvJdWb63fvpj44mxNTFomxrvSMDDWA

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000010
Arg [4] : 4348495050205b5752414c504849455d00000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 5348323200000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [8] : 68747470733a2f2f697066732e696f2f697066732f516d50786f69754a517648
Arg [9] : 6d5139744170764a64576236336676706a34346d784e54466f6d787276534d44
Arg [10] : 4457410000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

36228:2261:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21191:305;;;;;;;;;;-1:-1:-1;21191:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;21191:305:0;;;;;;;;22136:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23695:221::-;;;;;;;;;;-1:-1:-1;23695:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1594:32:1;;;1576:51;;1564:2;1549:18;23695:221:0;1430:203:1;23218:411:0;;;;;;;;;;-1:-1:-1;23218:411:0;;;;;:::i;:::-;;:::i;:::-;;37350:89;;;;;;;;;;-1:-1:-1;37421:10:0;;37350:89;;;2240:25:1;;;2228:2;2213:18;37350:89:0;2094:177:1;24445:339:0;;;;;;;;;;-1:-1:-1;24445:339:0;;;;;:::i;:::-;;:::i;36559:44::-;;;;;;;;;;-1:-1:-1;36559:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;38259:225;;;:::i;24855:185::-;;;;;;;;;;-1:-1:-1;24855:185:0;;;;;:::i;:::-;;:::i;36355:31::-;;;;;;;;;;-1:-1:-1;36355:31:0;;;;;;;;21830:239;;;;;;;;;;-1:-1:-1;21830:239:0;;;;;:::i;:::-;;:::i;21560:208::-;;;;;;;;;;-1:-1:-1;21560:208:0;;;;;:::i;:::-;;:::i;35338:103::-;;;;;;;;;;;;;:::i;34687:87::-;;;;;;;;;;-1:-1:-1;34760:6:0;;-1:-1:-1;;;;;34760:6:0;34687:87;;22305:104;;;;;;;;;;;;;:::i;37144:101::-;;;;;;;;;;-1:-1:-1;37144:101:0;;;;;:::i;:::-;;:::i;37463:556::-;;;;;;;;;;-1:-1:-1;37463:556:0;;;;;:::i;:::-;;:::i;23988:155::-;;;;;;;;;;-1:-1:-1;23988:155:0;;;;;:::i;:::-;;:::i;25111:328::-;;;;;;;;;;-1:-1:-1;25111:328:0;;;;;:::i;:::-;;:::i;36610:45::-;;;;;;;;;;-1:-1:-1;36610:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;36925:213;;;;;;;;;;-1:-1:-1;36925:213:0;;;;;:::i;:::-;;:::i;38025:209::-;;;;;;;;;;-1:-1:-1;38025:209:0;;;;;:::i;:::-;;:::i;24214:164::-;;;;;;;;;;-1:-1:-1;24214:164:0;;;;;:::i;:::-;;:::i;37251:93::-;;;;;;;;;;-1:-1:-1;37251:93:0;;;;;:::i;:::-;;:::i;35596:201::-;;;;;;;;;;-1:-1:-1;35596:201:0;;;;;:::i;:::-;;:::i;21191:305::-;21293:4;-1:-1:-1;;;;;;21330:40:0;;-1:-1:-1;;;21330:40:0;;:105;;-1:-1:-1;;;;;;;21387:48:0;;-1:-1:-1;;;21387:48:0;21330:105;:158;;;-1:-1:-1;;;;;;;;;;13210:40:0;;;21452:36;21310:178;21191:305;-1:-1:-1;;21191:305:0:o;22136:100::-;22190:13;22223:5;22216:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22136:100;:::o;23695:221::-;23771:7;27038:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27038:16:0;23791:73;;;;-1:-1:-1;;;23791:73:0;;6664:2:1;23791:73:0;;;6646:21:1;6703:2;6683:18;;;6676:30;6742:34;6722:18;;;6715:62;-1:-1:-1;;;6793:18:1;;;6786:42;6845:19;;23791:73:0;;;;;;;;;-1:-1:-1;23884:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23884:24:0;;23695:221::o;23218:411::-;23299:13;23315:23;23330:7;23315:14;:23::i;:::-;23299:39;;23363:5;-1:-1:-1;;;;;23357:11:0;:2;-1:-1:-1;;;;;23357:11:0;;23349:57;;;;-1:-1:-1;;;23349:57:0;;7077:2:1;23349:57:0;;;7059:21:1;7116:2;7096:18;;;7089:30;7155:34;7135:18;;;7128:62;-1:-1:-1;;;7206:18:1;;;7199:31;7247:19;;23349:57:0;6875:397:1;23349:57:0;19683:10;-1:-1:-1;;;;;23441:21:0;;;;:62;;-1:-1:-1;23466:37:0;23483:5;19683:10;24214:164;:::i;23466:37::-;23419:168;;;;-1:-1:-1;;;23419:168:0;;7479:2:1;23419:168:0;;;7461:21:1;7518:2;7498:18;;;7491:30;7557:34;7537:18;;;7530:62;7628:26;7608:18;;;7601:54;7672:19;;23419:168:0;7277:420:1;23419:168:0;23600:21;23609:2;23613:7;23600:8;:21::i;:::-;23288:341;23218:411;;:::o;24445:339::-;24640:41;19683:10;24673:7;24640:18;:41::i;:::-;24632:103;;;;-1:-1:-1;;;24632:103:0;;;;;;;:::i;:::-;24748:28;24758:4;24764:2;24768:7;24748:9;:28::i;38259:225::-;34760:6;;-1:-1:-1;;;;;34760:6:0;19683:10;34907:23;34899:68;;;;-1:-1:-1;;;34899:68:0;;;;;;;:::i;:::-;38386:44:::1;::::0;38335:21:::1;::::0;38317:15:::1;::::0;38394:10:::1;::::0;38335:21;;38317:15;38386:44;38317:15;38386:44;38335:21;38394:10;38386:44:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38367:63;;;38449:7;38441:35;;;::::0;-1:-1:-1;;;38441:35:0;;8893:2:1;38441:35:0::1;::::0;::::1;8875:21:1::0;8932:2;8912:18;;;8905:30;-1:-1:-1;;;8951:18:1;;;8944:45;9006:18;;38441:35:0::1;8691:339:1::0;38441:35:0::1;38306:178;;38259:225::o:0;24855:185::-;24993:39;25010:4;25016:2;25020:7;24993:39;;;;;;;;;;;;:16;:39::i;21830:239::-;21902:7;21938:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21938:16:0;;21965:73;;;;-1:-1:-1;;;21965:73:0;;9237:2:1;21965:73:0;;;9219:21:1;9276:2;9256:18;;;9249:30;9315:34;9295:18;;;9288:62;-1:-1:-1;;;9366:18:1;;;9359:39;9415:19;;21965:73:0;9035:405:1;21560:208:0;21632:7;-1:-1:-1;;;;;21660:19:0;;21652:74;;;;-1:-1:-1;;;21652:74:0;;9647:2:1;21652:74:0;;;9629:21:1;9686:2;9666:18;;;9659:30;9725:34;9705:18;;;9698:62;-1:-1:-1;;;9776:18:1;;;9769:40;9826:19;;21652:74:0;9445:406:1;21652:74:0;-1:-1:-1;;;;;;21744:16:0;;;;;:9;:16;;;;;;;21560:208::o;35338:103::-;34760:6;;-1:-1:-1;;;;;34760:6:0;19683:10;34907:23;34899:68;;;;-1:-1:-1;;;34899:68:0;;;;;;;:::i;:::-;35403:30:::1;35430:1;35403:18;:30::i;:::-;35338:103::o:0;22305:104::-;22361:13;22394:7;22387:14;;;;;:::i;37144:101::-;34760:6;;-1:-1:-1;;;;;34760:6:0;19683:10;34907:23;34899:68;;;;-1:-1:-1;;;34899:68:0;;;;;;;:::i;:::-;37217:12:::1;:20;37232:5:::0;37217:12;:20:::1;:::i;37463:556::-:0;37522:12;;;;37514:44;;;;-1:-1:-1;;;37514:44:0;;12262:2:1;37514:44:0;;;12244:21:1;12301:2;12281:18;;;12274:30;-1:-1:-1;;;12320:18:1;;;12313:49;12379:18;;37514:44:0;12060:343:1;37514:44:0;37578:21;;;;:12;:21;;;;;;;;37577:22;37569:56;;;;-1:-1:-1;;;37569:56:0;;12610:2:1;37569:56:0;;;12592:21:1;12649:2;12629:18;;;12622:30;-1:-1:-1;;;12668:18:1;;;12661:51;12729:18;;37569:56:0;12408:345:1;37569:56:0;37659:10;37645:25;;;;:13;:25;;;;;;;;37644:26;37636:61;;;;-1:-1:-1;;;37636:61:0;;12960:2:1;37636:61:0;;;12942:21:1;12999:2;12979:18;;;12972:30;-1:-1:-1;;;13018:18:1;;;13011:52;13080:18;;37636:61:0;12758:346:1;37636:61:0;37716:40;;-1:-1:-1;;;37716:40:0;;;;;2240:25:1;;;37760:10:0;;36508:42;;37716:31;;2213:18:1;;37716:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;37716:54:0;;37708:92;;;;-1:-1:-1;;;37708:92:0;;13567:2:1;37708:92:0;;;13549:21:1;13606:2;13586:18;;;13579:30;13645:27;13625:18;;;13618:55;13690:18;;37708:92:0;13365:349:1;37708:92:0;37811:14;37828:13;37421:10;;;37350:89;37828:13;37852:21;;;;:12;:21;;;;;;;;:28;;37876:4;-1:-1:-1;;37852:28:0;;;;;;;;37905:10;37891:25;;:13;:25;;;;;;:32;;;;;;;;;;37934:10;:15;;37811:30;;-1:-1:-1;37876:4:0;;37934:10;;37852:21;37934:15;;37876:4;;37934:15;:::i;:::-;;;;-1:-1:-1;37960:51:0;;-1:-1:-1;37970:10:0;37982:28;38004:6;36434:1;37982:28;:::i;:::-;37960:9;:51::i;23988:155::-;24083:52;19683:10;24116:8;24126;24083:18;:52::i;25111:328::-;25286:41;19683:10;25319:7;25286:18;:41::i;:::-;25278:103;;;;-1:-1:-1;;;25278:103:0;;;;;;;:::i;:::-;25392:39;25406:4;25412:2;25416:7;25425:5;25392:13;:39::i;:::-;25111:328;;;;:::o;36925:213::-;27014:4;27038:16;;;:7;:16;;;;;;36998:13;;-1:-1:-1;;;;;27038:16:0;37024:76;;;;-1:-1:-1;;;37024:76:0;;14183:2:1;37024:76:0;;;14165:21:1;14222:2;14202:18;;;14195:30;14261:34;14241:18;;;14234:62;-1:-1:-1;;;14312:18:1;;;14305:45;14367:19;;37024:76:0;13981:411:1;37024:76:0;37118:12;37111:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36925:213;;;:::o;38025:209::-;34760:6;;-1:-1:-1;;;;;34760:6:0;19683:10;34907:23;34899:68;;;;-1:-1:-1;;;34899:68:0;;;;;;;:::i;:::-;38081:14:::1;38098:13;37421:10:::0;;;37350:89;38098:13:::1;-1:-1:-1::0;;;;;38122:17:0;::::1;;::::0;;;:13:::1;:17;::::0;;;;:24;;-1:-1:-1;;38122:24:0::1;38142:4;38122:24:::0;;::::1;::::0;;;38157:10:::1;:15:::0;;38081:30;;-1:-1:-1;38142:4:0;;38157:10;;38122:17;38157:15:::1;::::0;38142:4;;38157:15:::1;:::i;:::-;::::0;;;-1:-1:-1;38183:43:0::1;::::0;-1:-1:-1;38193:2:0;38197:28:::1;38219:6:::0;36434:1:::1;38197:28;:::i;24214:164::-:0;-1:-1:-1;;;;;24335:25:0;;;24311:4;24335:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24214:164::o;37251:93::-;34760:6;;-1:-1:-1;;;;;34760:6:0;19683:10;34907:23;34899:68;;;;-1:-1:-1;;;34899:68:0;;;;;;;:::i;:::-;37316:12:::1;:20:::0;;-1:-1:-1;;37316:20:0::1;::::0;::::1;;::::0;;;::::1;::::0;;37251:93::o;35596:201::-;34760:6;;-1:-1:-1;;;;;34760:6:0;19683:10;34907:23;34899:68;;;;-1:-1:-1;;;34899:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35685:22:0;::::1;35677:73;;;::::0;-1:-1:-1;;;35677:73:0;;14599:2:1;35677:73:0::1;::::0;::::1;14581:21:1::0;14638:2;14618:18;;;14611:30;14677:34;14657:18;;;14650:62;-1:-1:-1;;;14728:18:1;;;14721:36;14774:19;;35677:73:0::1;14397:402:1::0;35677:73:0::1;35761:28;35780:8;35761:18;:28::i;:::-;35596:201:::0;:::o;30931:174::-;31006:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31006:29:0;-1:-1:-1;;;;;31006:29:0;;;;;;;;:24;;31060:23;31006:24;31060:14;:23::i;:::-;-1:-1:-1;;;;;31051:46:0;;;;;;;;;;;30931:174;;:::o;27243:348::-;27336:4;27038:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27038:16:0;27353:73;;;;-1:-1:-1;;;27353:73:0;;15006:2:1;27353:73:0;;;14988:21:1;15045:2;15025:18;;;15018:30;15084:34;15064:18;;;15057:62;-1:-1:-1;;;15135:18:1;;;15128:42;15187:19;;27353:73:0;14804:408:1;27353:73:0;27437:13;27453:23;27468:7;27453:14;:23::i;:::-;27437:39;;27506:5;-1:-1:-1;;;;;27495:16:0;:7;-1:-1:-1;;;;;27495:16:0;;:51;;;;27539:7;-1:-1:-1;;;;;27515:31:0;:20;27527:7;27515:11;:20::i;:::-;-1:-1:-1;;;;;27515:31:0;;27495:51;:87;;;;27550:32;27567:5;27574:7;27550:16;:32::i;:::-;27487:96;27243:348;-1:-1:-1;;;;27243:348:0:o;30235:578::-;30394:4;-1:-1:-1;;;;;30367:31:0;:23;30382:7;30367:14;:23::i;:::-;-1:-1:-1;;;;;30367:31:0;;30359:85;;;;-1:-1:-1;;;30359:85:0;;15419:2:1;30359:85:0;;;15401:21:1;15458:2;15438:18;;;15431:30;15497:34;15477:18;;;15470:62;-1:-1:-1;;;15548:18:1;;;15541:39;15597:19;;30359:85:0;15217:405:1;30359:85:0;-1:-1:-1;;;;;30463:16:0;;30455:65;;;;-1:-1:-1;;;30455:65:0;;15829:2:1;30455:65:0;;;15811:21:1;15868:2;15848:18;;;15841:30;15907:34;15887:18;;;15880:62;-1:-1:-1;;;15958:18:1;;;15951:34;16002:19;;30455:65:0;15627:400:1;30455:65:0;30637:29;30654:1;30658:7;30637:8;:29::i;:::-;-1:-1:-1;;;;;30679:15:0;;;;;;:9;:15;;;;;:20;;30698:1;;30679:15;:20;;30698:1;;30679:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30710:13:0;;;;;;:9;:13;;;;;:18;;30727:1;;30710:13;:18;;30727:1;;30710:18;:::i;:::-;;;;-1:-1:-1;;30739:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30739:21:0;-1:-1:-1;;;;;30739:21:0;;;;;;;;;30778:27;;30739:16;;30778:27;;;;;;;30235:578;;;:::o;35957:191::-;36050:6;;;-1:-1:-1;;;;;36067:17:0;;;-1:-1:-1;;;;;;36067:17:0;;;;;;;36100:40;;36050:6;;;36067:17;36050:6;;36100:40;;36031:16;;36100:40;36020:128;35957:191;:::o;27933:110::-;28009:26;28019:2;28023:7;28009:26;;;;;;;;;;;;:9;:26::i;31247:315::-;31402:8;-1:-1:-1;;;;;31393:17:0;:5;-1:-1:-1;;;;;31393:17:0;;31385:55;;;;-1:-1:-1;;;31385:55:0;;16367:2:1;31385:55:0;;;16349:21:1;16406:2;16386:18;;;16379:30;16445:27;16425:18;;;16418:55;16490:18;;31385:55:0;16165:349:1;31385:55:0;-1:-1:-1;;;;;31451:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;31451:46:0;;;;;;;;;;31513:41;;540::1;;;31513::0;;513:18:1;31513:41:0;;;;;;;31247:315;;;:::o;26321:::-;26478:28;26488:4;26494:2;26498:7;26478:9;:28::i;:::-;26525:48;26548:4;26554:2;26558:7;26567:5;26525:22;:48::i;:::-;26517:111;;;;-1:-1:-1;;;26517:111:0;;;;;;;:::i;28270:321::-;28400:18;28406:2;28410:7;28400:5;:18::i;:::-;28451:54;28482:1;28486:2;28490:7;28499:5;28451:22;:54::i;:::-;28429:154;;;;-1:-1:-1;;;28429:154:0;;;;;;;:::i;32127:799::-;32282:4;-1:-1:-1;;;;;32303:13:0;;3294:20;3342:8;32299:620;;32339:72;;-1:-1:-1;;;32339:72:0;;-1:-1:-1;;;;;32339:36:0;;;;;:72;;19683:10;;32390:4;;32396:7;;32405:5;;32339:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32339:72:0;;;;;;;;-1:-1:-1;;32339:72:0;;;;;;;;;;;;:::i;:::-;;;32335:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32581:6;:13;32598:1;32581:18;32577:272;;32624:60;;-1:-1:-1;;;32624:60:0;;;;;;;:::i;32577:272::-;32799:6;32793:13;32784:6;32780:2;32776:15;32769:38;32335:529;-1:-1:-1;;;;;;32462:51:0;-1:-1:-1;;;32462:51:0;;-1:-1:-1;32455:58:0;;32299:620;-1:-1:-1;32903:4:0;32127:799;;;;;;:::o;28927:382::-;-1:-1:-1;;;;;29007:16:0;;28999:61;;;;-1:-1:-1;;;28999:61:0;;17888:2:1;28999:61:0;;;17870:21:1;;;17907:18;;;17900:30;17966:34;17946:18;;;17939:62;18018:18;;28999:61:0;17686:356:1;28999:61:0;27014:4;27038:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27038:16:0;:30;29071:58;;;;-1:-1:-1;;;29071:58:0;;18249:2:1;29071:58:0;;;18231:21:1;18288:2;18268:18;;;18261:30;18327;18307:18;;;18300:58;18375:18;;29071:58:0;18047:352:1;29071:58:0;-1:-1:-1;;;;;29200:13:0;;;;;;:9;:13;;;;;:18;;29217:1;;29200:13;:18;;29217:1;;29200:18;:::i;:::-;;;;-1:-1:-1;;29229:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29229:21:0;-1:-1:-1;;;;;29229:21:0;;;;;;;;29268:33;;29229:16;;;29268:33;;29229:16;;29268:33;28927:382;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:423::-;634:3;672:5;666:12;699:6;694:3;687:19;724:1;734:162;748:6;745:1;742:13;734:162;;;810:4;866:13;;;862:22;;856:29;838:11;;;834:20;;827:59;763:12;734:162;;;738:3;941:1;934:4;925:6;920:3;916:16;912:27;905:38;1004:4;997:2;993:7;988:2;980:6;976:15;972:29;967:3;963:39;959:50;952:57;;;592:423;;;;:::o;1020:220::-;1169:2;1158:9;1151:21;1132:4;1189:45;1230:2;1219:9;1215:18;1207:6;1189:45;:::i;1245:180::-;1304:6;1357:2;1345:9;1336:7;1332:23;1328:32;1325:52;;;1373:1;1370;1363:12;1325:52;-1:-1:-1;1396:23:1;;1245:180;-1:-1:-1;1245:180:1:o;1638:131::-;-1:-1:-1;;;;;1713:31:1;;1703:42;;1693:70;;1759:1;1756;1749:12;1774:315;1842:6;1850;1903:2;1891:9;1882:7;1878:23;1874:32;1871:52;;;1919:1;1916;1909:12;1871:52;1958:9;1945:23;1977:31;2002:5;1977:31;:::i;:::-;2027:5;2079:2;2064:18;;;;2051:32;;-1:-1:-1;;;1774:315:1:o;2276:456::-;2353:6;2361;2369;2422:2;2410:9;2401:7;2397:23;2393:32;2390:52;;;2438:1;2435;2428:12;2390:52;2477:9;2464:23;2496:31;2521:5;2496:31;:::i;:::-;2546:5;-1:-1:-1;2603:2:1;2588:18;;2575:32;2616:33;2575:32;2616:33;:::i;:::-;2276:456;;2668:7;;-1:-1:-1;;;2722:2:1;2707:18;;;;2694:32;;2276:456::o;2737:247::-;2796:6;2849:2;2837:9;2828:7;2824:23;2820:32;2817:52;;;2865:1;2862;2855:12;2817:52;2904:9;2891:23;2923:31;2948:5;2923:31;:::i;2989:127::-;3050:10;3045:3;3041:20;3038:1;3031:31;3081:4;3078:1;3071:15;3105:4;3102:1;3095:15;3121:632;3186:5;3216:18;3257:2;3249:6;3246:14;3243:40;;;3263:18;;:::i;:::-;3338:2;3332:9;3306:2;3392:15;;-1:-1:-1;;3388:24:1;;;3414:2;3384:33;3380:42;3368:55;;;3438:18;;;3458:22;;;3435:46;3432:72;;;3484:18;;:::i;:::-;3524:10;3520:2;3513:22;3553:6;3544:15;;3583:6;3575;3568:22;3623:3;3614:6;3609:3;3605:16;3602:25;3599:45;;;3640:1;3637;3630:12;3599:45;3690:6;3685:3;3678:4;3670:6;3666:17;3653:44;3745:1;3738:4;3729:6;3721;3717:19;3713:30;3706:41;;;;3121:632;;;;;:::o;3758:451::-;3827:6;3880:2;3868:9;3859:7;3855:23;3851:32;3848:52;;;3896:1;3893;3886:12;3848:52;3936:9;3923:23;3969:18;3961:6;3958:30;3955:50;;;4001:1;3998;3991:12;3955:50;4024:22;;4077:4;4069:13;;4065:27;-1:-1:-1;4055:55:1;;4106:1;4103;4096:12;4055:55;4129:74;4195:7;4190:2;4177:16;4172:2;4168;4164:11;4129:74;:::i;4214:160::-;4279:20;;4335:13;;4328:21;4318:32;;4308:60;;4364:1;4361;4354:12;4308:60;4214:160;;;:::o;4379:315::-;4444:6;4452;4505:2;4493:9;4484:7;4480:23;4476:32;4473:52;;;4521:1;4518;4511:12;4473:52;4560:9;4547:23;4579:31;4604:5;4579:31;:::i;:::-;4629:5;-1:-1:-1;4653:35:1;4684:2;4669:18;;4653:35;:::i;:::-;4643:45;;4379:315;;;;;:::o;4699:795::-;4794:6;4802;4810;4818;4871:3;4859:9;4850:7;4846:23;4842:33;4839:53;;;4888:1;4885;4878:12;4839:53;4927:9;4914:23;4946:31;4971:5;4946:31;:::i;:::-;4996:5;-1:-1:-1;5053:2:1;5038:18;;5025:32;5066:33;5025:32;5066:33;:::i;:::-;5118:7;-1:-1:-1;5172:2:1;5157:18;;5144:32;;-1:-1:-1;5227:2:1;5212:18;;5199:32;5254:18;5243:30;;5240:50;;;5286:1;5283;5276:12;5240:50;5309:22;;5362:4;5354:13;;5350:27;-1:-1:-1;5340:55:1;;5391:1;5388;5381:12;5340:55;5414:74;5480:7;5475:2;5462:16;5457:2;5453;5449:11;5414:74;:::i;:::-;5404:84;;;4699:795;;;;;;;:::o;5499:388::-;5567:6;5575;5628:2;5616:9;5607:7;5603:23;5599:32;5596:52;;;5644:1;5641;5634:12;5596:52;5683:9;5670:23;5702:31;5727:5;5702:31;:::i;:::-;5752:5;-1:-1:-1;5809:2:1;5794:18;;5781:32;5822:33;5781:32;5822:33;:::i;:::-;5874:7;5864:17;;;5499:388;;;;;:::o;5892:180::-;5948:6;6001:2;5989:9;5980:7;5976:23;5972:32;5969:52;;;6017:1;6014;6007:12;5969:52;6040:26;6056:9;6040:26;:::i;6077:380::-;6156:1;6152:12;;;;6199;;;6220:61;;6274:4;6266:6;6262:17;6252:27;;6220:61;6327:2;6319:6;6316:14;6296:18;6293:38;6290:161;;6373:10;6368:3;6364:20;6361:1;6354:31;6408:4;6405:1;6398:15;6436:4;6433:1;6426:15;6290:161;;6077:380;;;:::o;7702:413::-;7904:2;7886:21;;;7943:2;7923:18;;;7916:30;7982:34;7977:2;7962:18;;7955:62;-1:-1:-1;;;8048:2:1;8033:18;;8026:47;8105:3;8090:19;;7702:413::o;8120:356::-;8322:2;8304:21;;;8341:18;;;8334:30;8400:34;8395:2;8380:18;;8373:62;8467:2;8452:18;;8120:356::o;9982:545::-;10084:2;10079:3;10076:11;10073:448;;;10120:1;10145:5;10141:2;10134:17;10190:4;10186:2;10176:19;10260:2;10248:10;10244:19;10241:1;10237:27;10231:4;10227:38;10296:4;10284:10;10281:20;10278:47;;;-1:-1:-1;10319:4:1;10278:47;10374:2;10369:3;10365:12;10362:1;10358:20;10352:4;10348:31;10338:41;;10429:82;10447:2;10440:5;10437:13;10429:82;;;10492:17;;;10473:1;10462:13;10429:82;;;10433:3;;;9982:545;;;:::o;10703:1352::-;10829:3;10823:10;10856:18;10848:6;10845:30;10842:56;;;10878:18;;:::i;:::-;10907:97;10997:6;10957:38;10989:4;10983:11;10957:38;:::i;:::-;10951:4;10907:97;:::i;:::-;11059:4;;11123:2;11112:14;;11140:1;11135:663;;;;11842:1;11859:6;11856:89;;;-1:-1:-1;11911:19:1;;;11905:26;11856:89;-1:-1:-1;;10660:1:1;10656:11;;;10652:24;10648:29;10638:40;10684:1;10680:11;;;10635:57;11958:81;;11105:944;;11135:663;9929:1;9922:14;;;9966:4;9953:18;;-1:-1:-1;;11171:20:1;;;11289:236;11303:7;11300:1;11297:14;11289:236;;;11392:19;;;11386:26;11371:42;;11484:27;;;;11452:1;11440:14;;;;11319:19;;11289:236;;;11293:3;11553:6;11544:7;11541:19;11538:201;;;11614:19;;;11608:26;-1:-1:-1;;11697:1:1;11693:14;;;11709:3;11689:24;11685:37;11681:42;11666:58;11651:74;;11538:201;-1:-1:-1;;;;;11785:1:1;11769:14;;;11765:22;11752:36;;-1:-1:-1;10703:1352:1:o;13109:251::-;13179:6;13232:2;13220:9;13211:7;13207:23;13203:32;13200:52;;;13248:1;13245;13238:12;13200:52;13280:9;13274:16;13299:31;13324:5;13299:31;:::i;13719:127::-;13780:10;13775:3;13771:20;13768:1;13761:31;13811:4;13808:1;13801:15;13835:4;13832:1;13825:15;13851:125;13916:9;;;13937:10;;;13934:36;;;13950:18;;:::i;16032:128::-;16099:9;;;16120:11;;;16117:37;;;16134:18;;:::i;16519:414::-;16721:2;16703:21;;;16760:2;16740:18;;;16733:30;16799:34;16794:2;16779:18;;16772:62;-1:-1:-1;;;16865:2:1;16850:18;;16843:48;16923:3;16908:19;;16519:414::o;16938:489::-;-1:-1:-1;;;;;17207:15:1;;;17189:34;;17259:15;;17254:2;17239:18;;17232:43;17306:2;17291:18;;17284:34;;;17354:3;17349:2;17334:18;;17327:31;;;17132:4;;17375:46;;17401:19;;17393:6;17375:46;:::i;:::-;17367:54;16938:489;-1:-1:-1;;;;;;16938:489:1:o;17432:249::-;17501:6;17554:2;17542:9;17533:7;17529:23;17525:32;17522:52;;;17570:1;17567;17560:12;17522:52;17602:9;17596:16;17621:30;17645:5;17621:30;:::i

Swarm Source

ipfs://1532c56eb10724bd48670f2e6d5fe3847f40d4bfd786745739ccd8033be650c7
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.