ETH Price: $2,420.22 (+0.04%)

SQUADTS Golden Crossbow (SGC)
 

Overview

TokenID

19

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
SquadtsCrossbow

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-13
*/

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

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

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

    uint256 constant TOKEN_IDS_STARTS_AT = 1;
    uint256 constant TOKEN_MIN = 1501;
    uint256 constant TOKEN_MAX = 2000;
    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(tokenId >= TOKEN_MIN, "Token is out of range");
        require(tokenId <= TOKEN_MAX, "Token is out of range");
        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"}]

60a0604052600060809081526007906200001a908262000219565b506008805460ff1916600117905560006009553480156200003a57600080fd5b50604051620020a5380380620020a58339810160408190526200005d9162000394565b828260006200006d838262000219565b5060016200007c828262000219565b5050506200009962000093620000ad60201b60201c565b620000b1565b620000a48162000103565b50505062000425565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620001625760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b600762000170828262000219565b5050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200019f57607f821691505b602082108103620001c057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200021457600081815260208120601f850160051c81016020861015620001ef5750805b601f850160051c820191505b818110156200021057828155600101620001fb565b5050505b505050565b81516001600160401b0381111562000235576200023562000174565b6200024d816200024684546200018a565b84620001c6565b602080601f8311600181146200028557600084156200026c5750858301515b600019600386901b1c1916600185901b17855562000210565b600085815260208120601f198616915b82811015620002b65788860151825594840194600190910190840162000295565b5085821015620002d55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082601f830112620002f757600080fd5b81516001600160401b038082111562000314576200031462000174565b604051601f8301601f19908116603f011681019082821181831017156200033f576200033f62000174565b816040528381526020925086838588010111156200035c57600080fd5b600091505b8382101562000380578582018301518183018401529082019062000361565b600093810190920192909252949350505050565b600080600060608486031215620003aa57600080fd5b83516001600160401b0380821115620003c257600080fd5b620003d087838801620002e5565b94506020860151915080821115620003e757600080fd5b620003f587838801620002e5565b935060408601519150808211156200040c57600080fd5b506200041b86828701620002e5565b9150509250925092565b611c7080620004356000396000f3fe6080604052600436106101665760003560e01c8063715018a6116100d1578063b88d4fde1161008a578063cbfc4bce11610064578063cbfc4bce14610425578063e985e9c514610445578063ee1cc94414610465578063f2fde38b1461048557600080fd5b8063b88d4fde146103b5578063c25d8f4d146103d5578063c87b56dd1461040557600080fd5b8063715018a61461030d5780638da5cb5b1461032257806395d89b41146103405780639d7b9a6c14610355578063a0712d6814610375578063a22cb4651461039557600080fd5b806336ee1d8d1161012357806336ee1d8d1461025b5780633ccfd60b1461028b57806342842e0e146102935780635b92ac0d146102b35780636352211e146102cd57806370a08231146102ed57600080fd5b806301ffc9a71461016b57806306fdde03146101a0578063081812fc146101c2578063095ea7b3146101fa57806318160ddd1461021c57806323b872dd1461023b575b600080fd5b34801561017757600080fd5b5061018b61018636600461163f565b6104a5565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506101b56104f7565b60405161019791906116a9565b3480156101ce57600080fd5b506101e26101dd3660046116bc565b610589565b6040516001600160a01b039091168152602001610197565b34801561020657600080fd5b5061021a6102153660046116ea565b610623565b005b34801561022857600080fd5b506009545b604051908152602001610197565b34801561024757600080fd5b5061021a610256366004611716565b610738565b34801561026757600080fd5b5061018b6102763660046116bc565b600a6020526000908152604090205460ff1681565b61021a610769565b34801561029f57600080fd5b5061021a6102ae366004611716565b610823565b3480156102bf57600080fd5b5060085461018b9060ff1681565b3480156102d957600080fd5b506101e26102e83660046116bc565b61083e565b3480156102f957600080fd5b5061022d610308366004611757565b6108b5565b34801561031957600080fd5b5061021a61093c565b34801561032e57600080fd5b506006546001600160a01b03166101e2565b34801561034c57600080fd5b506101b5610972565b34801561036157600080fd5b5061021a610370366004611800565b610981565b34801561038157600080fd5b5061021a6103903660046116bc565b6109b7565b3480156103a157600080fd5b5061021a6103b036600461185e565b610c80565b3480156103c157600080fd5b5061021a6103d0366004611893565b610c8b565b3480156103e157600080fd5b5061018b6103f0366004611757565b600b6020526000908152604090205460ff1681565b34801561041157600080fd5b506101b56104203660046116bc565b610cc3565b34801561043157600080fd5b5061021a610440366004611757565b610dd4565b34801561045157600080fd5b5061018b610460366004611913565b610e5b565b34801561047157600080fd5b5061021a61048036600461194c565b610e89565b34801561049157600080fd5b5061021a6104a0366004611757565b610ec6565b60006001600160e01b031982166380ac58cd60e01b14806104d657506001600160e01b03198216635b5e139f60e01b145b806104f157506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461050690611967565b80601f016020809104026020016040519081016040528092919081815260200182805461053290611967565b801561057f5780601f106105545761010080835404028352916020019161057f565b820191906000526020600020905b81548152906001019060200180831161056257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106075760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061062e8261083e565b9050806001600160a01b0316836001600160a01b03160361069b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105fe565b336001600160a01b03821614806106b757506106b78133610e5b565b6107295760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105fe565b6107338383610f61565b505050565b6107423382610fcf565b61075e5760405162461bcd60e51b81526004016105fe906119a1565b6107338383836110a6565b6006546001600160a01b031633146107935760405162461bcd60e51b81526004016105fe906119f2565b6040514790600090339083908381818185875af1925050503d80600081146107d7576040519150601f19603f3d011682016040523d82523d6000602084013e6107dc565b606091505b505090508061081f5760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b60448201526064016105fe565b5050565b61073383838360405180602001604052806000815250610c8b565b6000818152600260205260408120546001600160a01b0316806104f15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105fe565b60006001600160a01b0382166109205760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105fe565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146109665760405162461bcd60e51b81526004016105fe906119f2565b6109706000611246565b565b60606001805461050690611967565b6006546001600160a01b031633146109ab5760405162461bcd60e51b81526004016105fe906119f2565b600761081f8282611a75565b60085460ff166109ff5760405162461bcd60e51b81526020600482015260136024820152724d696e74696e6720697320696e61637469766560681b60448201526064016105fe565b6105dd811015610a495760405162461bcd60e51b8152602060048201526015602482015274546f6b656e206973206f7574206f662072616e676560581b60448201526064016105fe565b6107d0811115610a935760405162461bcd60e51b8152602060048201526015602482015274546f6b656e206973206f7574206f662072616e676560581b60448201526064016105fe565b6000818152600a602052604090205460ff1615610aea5760405162461bcd60e51b8152602060048201526015602482015274151bdad95b88185b1c9958591e4818db185a5b5959605a1b60448201526064016105fe565b336000908152600b602052604090205460ff1615610b435760405162461bcd60e51b815260206004820152601660248201527515d85b1b195d08185b1c9958591e4818db185a5b595960521b60448201526064016105fe565b6040516331a9108f60e11b815260048101829052339073eeaf63f35b7c365aff27015a9aa5d6e4b734962c90636352211e90602401602060405180830381865afa158015610b95573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bb99190611b35565b6001600160a01b031614610c0f5760405162461bcd60e51b815260206004820152601960248201527f57616c6c657420646f6573206e6f74206f776e20746f6b656e0000000000000060448201526064016105fe565b6000610c1a60095490565b6000838152600a602090815260408083208054600160ff199182168117909255338552600b90935290832080549092168117909155600980549394509092909190610c66908490611b68565b9091555061081f905033610c7b836001611b68565b611298565b61081f3383836112b2565b610c953383610fcf565b610cb15760405162461bcd60e51b81526004016105fe906119a1565b610cbd84848484611380565b50505050565b6000818152600260205260409020546060906001600160a01b0316610d425760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105fe565b60078054610d4f90611967565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7b90611967565b8015610dc85780601f10610d9d57610100808354040283529160200191610dc8565b820191906000526020600020905b815481529060010190602001808311610dab57829003601f168201915b50505050509050919050565b6006546001600160a01b03163314610dfe5760405162461bcd60e51b81526004016105fe906119f2565b6000610e0960095490565b6001600160a01b0383166000908152600b60205260408120805460ff19166001908117909155600980549394509092909190610e46908490611b68565b9091555061081f905082610c7b836001611b68565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6006546001600160a01b03163314610eb35760405162461bcd60e51b81526004016105fe906119f2565b6008805460ff1916911515919091179055565b6006546001600160a01b03163314610ef05760405162461bcd60e51b81526004016105fe906119f2565b6001600160a01b038116610f555760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105fe565b610f5e81611246565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610f968261083e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166110485760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105fe565b60006110538361083e565b9050806001600160a01b0316846001600160a01b0316148061108e5750836001600160a01b031661108384610589565b6001600160a01b0316145b8061109e575061109e8185610e5b565b949350505050565b826001600160a01b03166110b98261083e565b6001600160a01b0316146111215760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105fe565b6001600160a01b0382166111835760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105fe565b61118e600082610f61565b6001600160a01b03831660009081526003602052604081208054600192906111b7908490611b7b565b90915550506001600160a01b03821660009081526003602052604081208054600192906111e5908490611b68565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61081f8282604051806020016040528060008152506113b3565b816001600160a01b0316836001600160a01b0316036113135760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105fe565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61138b8484846110a6565b611397848484846113e6565b610cbd5760405162461bcd60e51b81526004016105fe90611b8e565b6113bd83836114e7565b6113ca60008484846113e6565b6107335760405162461bcd60e51b81526004016105fe90611b8e565b60006001600160a01b0384163b156114dc57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061142a903390899088908890600401611be0565b6020604051808303816000875af1925050508015611465575060408051601f3d908101601f1916820190925261146291810190611c1d565b60015b6114c2573d808015611493576040519150601f19603f3d011682016040523d82523d6000602084013e611498565b606091505b5080516000036114ba5760405162461bcd60e51b81526004016105fe90611b8e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061109e565b506001949350505050565b6001600160a01b03821661153d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105fe565b6000818152600260205260409020546001600160a01b0316156115a25760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105fe565b6001600160a01b03821660009081526003602052604081208054600192906115cb908490611b68565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b031981168114610f5e57600080fd5b60006020828403121561165157600080fd5b813561165c81611629565b9392505050565b6000815180845260005b818110156116895760208185018101518683018201520161166d565b506000602082860101526020601f19601f83011685010191505092915050565b60208152600061165c6020830184611663565b6000602082840312156116ce57600080fd5b5035919050565b6001600160a01b0381168114610f5e57600080fd5b600080604083850312156116fd57600080fd5b8235611708816116d5565b946020939093013593505050565b60008060006060848603121561172b57600080fd5b8335611736816116d5565b92506020840135611746816116d5565b929592945050506040919091013590565b60006020828403121561176957600080fd5b813561165c816116d5565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156117a5576117a5611774565b604051601f8501601f19908116603f011681019082821181831017156117cd576117cd611774565b816040528093508581528686860111156117e657600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561181257600080fd5b813567ffffffffffffffff81111561182957600080fd5b8201601f8101841361183a57600080fd5b61109e8482356020840161178a565b8035801515811461185957600080fd5b919050565b6000806040838503121561187157600080fd5b823561187c816116d5565b915061188a60208401611849565b90509250929050565b600080600080608085870312156118a957600080fd5b84356118b4816116d5565b935060208501356118c4816116d5565b925060408501359150606085013567ffffffffffffffff8111156118e757600080fd5b8501601f810187136118f857600080fd5b6119078782356020840161178a565b91505092959194509250565b6000806040838503121561192657600080fd5b8235611931816116d5565b91506020830135611941816116d5565b809150509250929050565b60006020828403121561195e57600080fd5b61165c82611849565b600181811c9082168061197b57607f821691505b60208210810361199b57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f82111561073357600081815260208120601f850160051c81016020861015611a4e5750805b601f850160051c820191505b81811015611a6d57828155600101611a5a565b505050505050565b815167ffffffffffffffff811115611a8f57611a8f611774565b611aa381611a9d8454611967565b84611a27565b602080601f831160018114611ad85760008415611ac05750858301515b600019600386901b1c1916600185901b178555611a6d565b600085815260208120601f198616915b82811015611b0757888601518255948401946001909101908401611ae8565b5085821015611b255787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215611b4757600080fd5b815161165c816116d5565b634e487b7160e01b600052601160045260246000fd5b808201808211156104f1576104f1611b52565b818103818111156104f1576104f1611b52565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c1390830184611663565b9695505050505050565b600060208284031215611c2f57600080fd5b815161165c8161162956fea2646970667358221220273242264e84a23cf55f8ee1d4c5aa1db78bd9b466f6ae0d465fed2d691a9f6f64736f6c63430008110033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000175351554144545320476f6c64656e2043726f7373626f7700000000000000000000000000000000000000000000000000000000000000000000000000000000035347430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f697066732e696f2f697066732f516d5a50613753735376766d424d4c364d787135374276364e4836626559784b7547654333434b4c7375486d78370000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101665760003560e01c8063715018a6116100d1578063b88d4fde1161008a578063cbfc4bce11610064578063cbfc4bce14610425578063e985e9c514610445578063ee1cc94414610465578063f2fde38b1461048557600080fd5b8063b88d4fde146103b5578063c25d8f4d146103d5578063c87b56dd1461040557600080fd5b8063715018a61461030d5780638da5cb5b1461032257806395d89b41146103405780639d7b9a6c14610355578063a0712d6814610375578063a22cb4651461039557600080fd5b806336ee1d8d1161012357806336ee1d8d1461025b5780633ccfd60b1461028b57806342842e0e146102935780635b92ac0d146102b35780636352211e146102cd57806370a08231146102ed57600080fd5b806301ffc9a71461016b57806306fdde03146101a0578063081812fc146101c2578063095ea7b3146101fa57806318160ddd1461021c57806323b872dd1461023b575b600080fd5b34801561017757600080fd5b5061018b61018636600461163f565b6104a5565b60405190151581526020015b60405180910390f35b3480156101ac57600080fd5b506101b56104f7565b60405161019791906116a9565b3480156101ce57600080fd5b506101e26101dd3660046116bc565b610589565b6040516001600160a01b039091168152602001610197565b34801561020657600080fd5b5061021a6102153660046116ea565b610623565b005b34801561022857600080fd5b506009545b604051908152602001610197565b34801561024757600080fd5b5061021a610256366004611716565b610738565b34801561026757600080fd5b5061018b6102763660046116bc565b600a6020526000908152604090205460ff1681565b61021a610769565b34801561029f57600080fd5b5061021a6102ae366004611716565b610823565b3480156102bf57600080fd5b5060085461018b9060ff1681565b3480156102d957600080fd5b506101e26102e83660046116bc565b61083e565b3480156102f957600080fd5b5061022d610308366004611757565b6108b5565b34801561031957600080fd5b5061021a61093c565b34801561032e57600080fd5b506006546001600160a01b03166101e2565b34801561034c57600080fd5b506101b5610972565b34801561036157600080fd5b5061021a610370366004611800565b610981565b34801561038157600080fd5b5061021a6103903660046116bc565b6109b7565b3480156103a157600080fd5b5061021a6103b036600461185e565b610c80565b3480156103c157600080fd5b5061021a6103d0366004611893565b610c8b565b3480156103e157600080fd5b5061018b6103f0366004611757565b600b6020526000908152604090205460ff1681565b34801561041157600080fd5b506101b56104203660046116bc565b610cc3565b34801561043157600080fd5b5061021a610440366004611757565b610dd4565b34801561045157600080fd5b5061018b610460366004611913565b610e5b565b34801561047157600080fd5b5061021a61048036600461194c565b610e89565b34801561049157600080fd5b5061021a6104a0366004611757565b610ec6565b60006001600160e01b031982166380ac58cd60e01b14806104d657506001600160e01b03198216635b5e139f60e01b145b806104f157506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461050690611967565b80601f016020809104026020016040519081016040528092919081815260200182805461053290611967565b801561057f5780601f106105545761010080835404028352916020019161057f565b820191906000526020600020905b81548152906001019060200180831161056257829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106075760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061062e8261083e565b9050806001600160a01b0316836001600160a01b03160361069b5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016105fe565b336001600160a01b03821614806106b757506106b78133610e5b565b6107295760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016105fe565b6107338383610f61565b505050565b6107423382610fcf565b61075e5760405162461bcd60e51b81526004016105fe906119a1565b6107338383836110a6565b6006546001600160a01b031633146107935760405162461bcd60e51b81526004016105fe906119f2565b6040514790600090339083908381818185875af1925050503d80600081146107d7576040519150601f19603f3d011682016040523d82523d6000602084013e6107dc565b606091505b505090508061081f5760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b60448201526064016105fe565b5050565b61073383838360405180602001604052806000815250610c8b565b6000818152600260205260408120546001600160a01b0316806104f15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016105fe565b60006001600160a01b0382166109205760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016105fe565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146109665760405162461bcd60e51b81526004016105fe906119f2565b6109706000611246565b565b60606001805461050690611967565b6006546001600160a01b031633146109ab5760405162461bcd60e51b81526004016105fe906119f2565b600761081f8282611a75565b60085460ff166109ff5760405162461bcd60e51b81526020600482015260136024820152724d696e74696e6720697320696e61637469766560681b60448201526064016105fe565b6105dd811015610a495760405162461bcd60e51b8152602060048201526015602482015274546f6b656e206973206f7574206f662072616e676560581b60448201526064016105fe565b6107d0811115610a935760405162461bcd60e51b8152602060048201526015602482015274546f6b656e206973206f7574206f662072616e676560581b60448201526064016105fe565b6000818152600a602052604090205460ff1615610aea5760405162461bcd60e51b8152602060048201526015602482015274151bdad95b88185b1c9958591e4818db185a5b5959605a1b60448201526064016105fe565b336000908152600b602052604090205460ff1615610b435760405162461bcd60e51b815260206004820152601660248201527515d85b1b195d08185b1c9958591e4818db185a5b595960521b60448201526064016105fe565b6040516331a9108f60e11b815260048101829052339073eeaf63f35b7c365aff27015a9aa5d6e4b734962c90636352211e90602401602060405180830381865afa158015610b95573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bb99190611b35565b6001600160a01b031614610c0f5760405162461bcd60e51b815260206004820152601960248201527f57616c6c657420646f6573206e6f74206f776e20746f6b656e0000000000000060448201526064016105fe565b6000610c1a60095490565b6000838152600a602090815260408083208054600160ff199182168117909255338552600b90935290832080549092168117909155600980549394509092909190610c66908490611b68565b9091555061081f905033610c7b836001611b68565b611298565b61081f3383836112b2565b610c953383610fcf565b610cb15760405162461bcd60e51b81526004016105fe906119a1565b610cbd84848484611380565b50505050565b6000818152600260205260409020546060906001600160a01b0316610d425760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016105fe565b60078054610d4f90611967565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7b90611967565b8015610dc85780601f10610d9d57610100808354040283529160200191610dc8565b820191906000526020600020905b815481529060010190602001808311610dab57829003601f168201915b50505050509050919050565b6006546001600160a01b03163314610dfe5760405162461bcd60e51b81526004016105fe906119f2565b6000610e0960095490565b6001600160a01b0383166000908152600b60205260408120805460ff19166001908117909155600980549394509092909190610e46908490611b68565b9091555061081f905082610c7b836001611b68565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6006546001600160a01b03163314610eb35760405162461bcd60e51b81526004016105fe906119f2565b6008805460ff1916911515919091179055565b6006546001600160a01b03163314610ef05760405162461bcd60e51b81526004016105fe906119f2565b6001600160a01b038116610f555760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105fe565b610f5e81611246565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610f968261083e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166110485760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016105fe565b60006110538361083e565b9050806001600160a01b0316846001600160a01b0316148061108e5750836001600160a01b031661108384610589565b6001600160a01b0316145b8061109e575061109e8185610e5b565b949350505050565b826001600160a01b03166110b98261083e565b6001600160a01b0316146111215760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016105fe565b6001600160a01b0382166111835760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016105fe565b61118e600082610f61565b6001600160a01b03831660009081526003602052604081208054600192906111b7908490611b7b565b90915550506001600160a01b03821660009081526003602052604081208054600192906111e5908490611b68565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61081f8282604051806020016040528060008152506113b3565b816001600160a01b0316836001600160a01b0316036113135760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016105fe565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61138b8484846110a6565b611397848484846113e6565b610cbd5760405162461bcd60e51b81526004016105fe90611b8e565b6113bd83836114e7565b6113ca60008484846113e6565b6107335760405162461bcd60e51b81526004016105fe90611b8e565b60006001600160a01b0384163b156114dc57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061142a903390899088908890600401611be0565b6020604051808303816000875af1925050508015611465575060408051601f3d908101601f1916820190925261146291810190611c1d565b60015b6114c2573d808015611493576040519150601f19603f3d011682016040523d82523d6000602084013e611498565b606091505b5080516000036114ba5760405162461bcd60e51b81526004016105fe90611b8e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061109e565b506001949350505050565b6001600160a01b03821661153d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016105fe565b6000818152600260205260409020546001600160a01b0316156115a25760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016105fe565b6001600160a01b03821660009081526003602052604081208054600192906115cb908490611b68565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b031981168114610f5e57600080fd5b60006020828403121561165157600080fd5b813561165c81611629565b9392505050565b6000815180845260005b818110156116895760208185018101518683018201520161166d565b506000602082860101526020601f19601f83011685010191505092915050565b60208152600061165c6020830184611663565b6000602082840312156116ce57600080fd5b5035919050565b6001600160a01b0381168114610f5e57600080fd5b600080604083850312156116fd57600080fd5b8235611708816116d5565b946020939093013593505050565b60008060006060848603121561172b57600080fd5b8335611736816116d5565b92506020840135611746816116d5565b929592945050506040919091013590565b60006020828403121561176957600080fd5b813561165c816116d5565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156117a5576117a5611774565b604051601f8501601f19908116603f011681019082821181831017156117cd576117cd611774565b816040528093508581528686860111156117e657600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561181257600080fd5b813567ffffffffffffffff81111561182957600080fd5b8201601f8101841361183a57600080fd5b61109e8482356020840161178a565b8035801515811461185957600080fd5b919050565b6000806040838503121561187157600080fd5b823561187c816116d5565b915061188a60208401611849565b90509250929050565b600080600080608085870312156118a957600080fd5b84356118b4816116d5565b935060208501356118c4816116d5565b925060408501359150606085013567ffffffffffffffff8111156118e757600080fd5b8501601f810187136118f857600080fd5b6119078782356020840161178a565b91505092959194509250565b6000806040838503121561192657600080fd5b8235611931816116d5565b91506020830135611941816116d5565b809150509250929050565b60006020828403121561195e57600080fd5b61165c82611849565b600181811c9082168061197b57607f821691505b60208210810361199b57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b601f82111561073357600081815260208120601f850160051c81016020861015611a4e5750805b601f850160051c820191505b81811015611a6d57828155600101611a5a565b505050505050565b815167ffffffffffffffff811115611a8f57611a8f611774565b611aa381611a9d8454611967565b84611a27565b602080601f831160018114611ad85760008415611ac05750858301515b600019600386901b1c1916600185901b178555611a6d565b600085815260208120601f198616915b82811015611b0757888601518255948401946001909101908401611ae8565b5085821015611b255787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215611b4757600080fd5b815161165c816116d5565b634e487b7160e01b600052601160045260246000fd5b808201808211156104f1576104f1611b52565b818103818111156104f1576104f1611b52565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c1390830184611663565b9695505050505050565b600060208284031215611c2f57600080fd5b815161165c8161162956fea2646970667358221220273242264e84a23cf55f8ee1d4c5aa1db78bd9b466f6ae0d465fed2d691a9f6f64736f6c63430008110033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000175351554144545320476f6c64656e2043726f7373626f7700000000000000000000000000000000000000000000000000000000000000000000000000000000035347430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f697066732e696f2f697066732f516d5a50613753735376766d424d4c364d787135374276364e4836626559784b7547654333434b4c7375486d78370000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): SQUADTS Golden Crossbow
Arg [1] : symbol (string): SGC
Arg [2] : metaDataURL (string): https://ipfs.io/ipfs/QmZPa7SsSvvmBML6Mxq57Bv6NH6beYxKuGeC3CKLsuHmx7

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000017
Arg [4] : 5351554144545320476f6c64656e2043726f7373626f77000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 5347430000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [8] : 68747470733a2f2f697066732e696f2f697066732f516d5a5061375373537676
Arg [9] : 6d424d4c364d787135374276364e4836626559784b7547654333434b4c737548
Arg [10] : 6d78370000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

36224:2468: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;:::-;;37423:89;;;;;;;;;;-1:-1:-1;37494:10:0;;37423:89;;;2240:25:1;;;2228:2;2213:18;37423:89:0;2094:177:1;24445:339:0;;;;;;;;;;-1:-1:-1;24445:339:0;;;;;:::i;:::-;;:::i;36632:44::-;;;;;;;;;;-1:-1:-1;36632:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;38462:225;;;:::i;24855:185::-;;;;;;;;;;-1:-1:-1;24855:185:0;;;;;:::i;:::-;;:::i;36348:31::-;;;;;;;;;;-1:-1:-1;36348: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;37217:101::-;;;;;;;;;;-1:-1:-1;37217:101:0;;;;;:::i;:::-;;:::i;37536:686::-;;;;;;;;;;-1:-1:-1;37536:686:0;;;;;:::i;:::-;;:::i;23988:155::-;;;;;;;;;;-1:-1:-1;23988:155:0;;;;;:::i;:::-;;:::i;25111:328::-;;;;;;;;;;-1:-1:-1;25111:328:0;;;;;:::i;:::-;;:::i;36683:45::-;;;;;;;;;;-1:-1:-1;36683:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;36998:213;;;;;;;;;;-1:-1:-1;36998:213:0;;;;;:::i;:::-;;:::i;38228:209::-;;;;;;;;;;-1:-1:-1;38228:209:0;;;;;:::i;:::-;;:::i;24214:164::-;;;;;;;;;;-1:-1:-1;24214:164:0;;;;;:::i;:::-;;:::i;37324:93::-;;;;;;;;;;-1:-1:-1;37324: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;38462:225::-;34760:6;;-1:-1:-1;;;;;34760:6:0;19683:10;34907:23;34899:68;;;;-1:-1:-1;;;34899:68:0;;;;;;;:::i;:::-;38589:44:::1;::::0;38538:21:::1;::::0;38520:15:::1;::::0;38597:10:::1;::::0;38538:21;;38520:15;38589:44;38520:15;38589:44;38538:21;38597:10;38589:44:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38570:63;;;38652:7;38644:35;;;::::0;-1:-1:-1;;;38644:35:0;;8893:2:1;38644: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;;38644:35:0::1;8691:339:1::0;38644:35:0::1;38509:178;;38462: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;37217:101::-;34760:6;;-1:-1:-1;;;;;34760:6:0;19683:10;34907:23;34899:68;;;;-1:-1:-1;;;34899:68:0;;;;;;;:::i;:::-;37290:12:::1;:20;37305:5:::0;37290:12;:20:::1;:::i;37536:686::-:0;37595:12;;;;37587:44;;;;-1:-1:-1;;;37587:44:0;;12262:2:1;37587:44:0;;;12244:21:1;12301:2;12281:18;;;12274:30;-1:-1:-1;;;12320:18:1;;;12313:49;12379:18;;37587:44:0;12060:343:1;37587:44:0;36464:4;37650:7;:20;;37642:54;;;;-1:-1:-1;;;37642:54:0;;12610:2:1;37642:54:0;;;12592:21:1;12649:2;12629:18;;;12622:30;-1:-1:-1;;;12668:18:1;;;12661:51;12729:18;;37642:54:0;12408:345:1;37642:54:0;36504:4;37715:7;:20;;37707:54;;;;-1:-1:-1;;;37707:54:0;;12610:2:1;37707:54:0;;;12592:21:1;12649:2;12629:18;;;12622:30;-1:-1:-1;;;12668:18:1;;;12661:51;12729:18;;37707:54:0;12408:345:1;37707:54:0;37781:21;;;;:12;:21;;;;;;;;37780:22;37772:56;;;;-1:-1:-1;;;37772:56:0;;12960:2:1;37772:56:0;;;12942:21:1;12999:2;12979:18;;;12972:30;-1:-1:-1;;;13018:18:1;;;13011:51;13079:18;;37772:56:0;12758:345:1;37772:56:0;37862:10;37848:25;;;;:13;:25;;;;;;;;37847:26;37839:61;;;;-1:-1:-1;;;37839:61:0;;13310:2:1;37839:61:0;;;13292:21:1;13349:2;13329:18;;;13322:30;-1:-1:-1;;;13368:18:1;;;13361:52;13430:18;;37839:61:0;13108:346:1;37839:61:0;37919:40;;-1:-1:-1;;;37919:40:0;;;;;2240:25:1;;;37963:10:0;;36581:42;;37919:31;;2213:18:1;;37919:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;37919:54:0;;37911:92;;;;-1:-1:-1;;;37911:92:0;;13917:2:1;37911:92:0;;;13899:21:1;13956:2;13936:18;;;13929:30;13995:27;13975:18;;;13968:55;14040:18;;37911:92:0;13715:349:1;37911:92:0;38014:14;38031:13;37494:10;;;37423:89;38031:13;38055:21;;;;:12;:21;;;;;;;;:28;;38079:4;-1:-1:-1;;38055:28:0;;;;;;;;38108:10;38094:25;;:13;:25;;;;;;:32;;;;;;;;;;38137:10;:15;;38014:30;;-1:-1:-1;38079:4:0;;38137:10;;38055:21;38137:15;;38079:4;;38137:15;:::i;:::-;;;;-1:-1:-1;38163:51:0;;-1:-1:-1;38173:10:0;38185:28;38207:6;36427:1;38185:28;:::i;:::-;38163: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;36998:213::-;27014:4;27038:16;;;:7;:16;;;;;;37071:13;;-1:-1:-1;;;;;27038:16:0;37097:76;;;;-1:-1:-1;;;37097:76:0;;14533:2:1;37097:76:0;;;14515:21:1;14572:2;14552:18;;;14545:30;14611:34;14591:18;;;14584:62;-1:-1:-1;;;14662:18:1;;;14655:45;14717:19;;37097:76:0;14331:411:1;37097:76:0;37191:12;37184:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36998:213;;;:::o;38228:209::-;34760:6;;-1:-1:-1;;;;;34760:6:0;19683:10;34907:23;34899:68;;;;-1:-1:-1;;;34899:68:0;;;;;;;:::i;:::-;38284:14:::1;38301:13;37494:10:::0;;;37423:89;38301:13:::1;-1:-1:-1::0;;;;;38325:17:0;::::1;;::::0;;;:13:::1;:17;::::0;;;;:24;;-1:-1:-1;;38325:24:0::1;38345:4;38325:24:::0;;::::1;::::0;;;38360:10:::1;:15:::0;;38284:30;;-1:-1:-1;38345:4:0;;38360:10;;38325:17;38360:15:::1;::::0;38345:4;;38360:15:::1;:::i;:::-;::::0;;;-1:-1:-1;38386:43:0::1;::::0;-1:-1:-1;38396:2:0;38400:28:::1;38422:6:::0;36427:1:::1;38400:28;:::i;24214:164::-:0;-1:-1:-1;;;;;24335:25:0;;;24311:4;24335:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24214:164::o;37324:93::-;34760:6;;-1:-1:-1;;;;;34760:6:0;19683:10;34907:23;34899:68;;;;-1:-1:-1;;;34899:68:0;;;;;;;:::i;:::-;37389:12:::1;:20:::0;;-1:-1:-1;;37389:20:0::1;::::0;::::1;;::::0;;;::::1;::::0;;37324: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;;14949:2:1;35677:73:0::1;::::0;::::1;14931:21:1::0;14988:2;14968:18;;;14961:30;15027:34;15007:18;;;15000:62;-1:-1:-1;;;15078:18:1;;;15071:36;15124:19;;35677:73:0::1;14747: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;;15356:2:1;27353:73:0;;;15338:21:1;15395:2;15375:18;;;15368:30;15434:34;15414:18;;;15407:62;-1:-1:-1;;;15485:18:1;;;15478:42;15537:19;;27353:73:0;15154: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;;15769:2:1;30359:85:0;;;15751:21:1;15808:2;15788:18;;;15781:30;15847:34;15827:18;;;15820:62;-1:-1:-1;;;15898:18:1;;;15891:39;15947:19;;30359:85:0;15567:405:1;30359:85:0;-1:-1:-1;;;;;30463:16:0;;30455:65;;;;-1:-1:-1;;;30455:65:0;;16179:2:1;30455:65:0;;;16161:21:1;16218:2;16198:18;;;16191:30;16257:34;16237:18;;;16230:62;-1:-1:-1;;;16308:18:1;;;16301:34;16352:19;;30455:65:0;15977: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;;16717:2:1;31385:55:0;;;16699:21:1;16756:2;16736:18;;;16729:30;16795:27;16775:18;;;16768:55;16840:18;;31385:55:0;16515: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;;18238:2:1;28999:61:0;;;18220:21:1;;;18257:18;;;18250:30;18316:34;18296:18;;;18289:62;18368:18;;28999:61:0;18036: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;;18599:2:1;29071:58:0;;;18581:21:1;18638:2;18618:18;;;18611:30;18677;18657:18;;;18650:58;18725:18;;29071:58:0;18397: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;13459:251::-;13529:6;13582:2;13570:9;13561:7;13557:23;13553:32;13550:52;;;13598:1;13595;13588:12;13550:52;13630:9;13624:16;13649:31;13674:5;13649:31;:::i;14069:127::-;14130:10;14125:3;14121:20;14118:1;14111:31;14161:4;14158:1;14151:15;14185:4;14182:1;14175:15;14201:125;14266:9;;;14287:10;;;14284:36;;;14300:18;;:::i;16382:128::-;16449:9;;;16470:11;;;16467:37;;;16484:18;;:::i;16869:414::-;17071:2;17053:21;;;17110:2;17090:18;;;17083:30;17149:34;17144:2;17129:18;;17122:62;-1:-1:-1;;;17215:2:1;17200:18;;17193:48;17273:3;17258:19;;16869:414::o;17288:489::-;-1:-1:-1;;;;;17557:15:1;;;17539:34;;17609:15;;17604:2;17589:18;;17582:43;17656:2;17641:18;;17634:34;;;17704:3;17699:2;17684:18;;17677:31;;;17482:4;;17725:46;;17751:19;;17743:6;17725:46;:::i;:::-;17717:54;17288:489;-1:-1:-1;;;;;;17288:489:1:o;17782:249::-;17851:6;17904:2;17892:9;17883:7;17879:23;17875:32;17872:52;;;17920:1;17917;17910:12;17872:52;17952:9;17946:16;17971:30;17995:5;17971:30;:::i

Swarm Source

ipfs://273242264e84a23cf55f8ee1d4c5aa1db78bd9b466f6ae0d465fed2d691a9f6f
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]

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