ETH Price: $3,112.60 (+0.63%)
Gas: 3 Gwei

Token

SpaceCats (SpaceCats)
 

Overview

Max Total Supply

9,999 SpaceCats

Holders

2,330

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
reagentzero.eth
Balance
1 SpaceCats
0xaad1195adcec96c05534c80069fa30d19e19b1f1
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Space Cats is a collection of 9,999 cats traveling through outer space. Each Space Cat grants access to the exclusive community .

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SpaceCatsDeployer

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-15
*/

//SpaceCats Enumerable Contract. 
/*
   _____ _____        _____ ______ _____       _______ _____ 
  / ____|  __ \ /\   / ____|  ____/ ____|   /\|__   __/ ____|
 | (___ | |__) /  \ | |    | |__ | |       /  \  | | | (___  
  \___ \|  ___/ /\ \| |    |  __|| |      / /\ \ | |  \___ \ 
  ____) | |  / ____ \ |____| |___| |____ / ____ \| |  ____) |
 |_____/|_| /_/    \_\_____|______\_____/_/    \_\_| |_____/ 
                                                             
                                                             */

// SPDX-License-Identifier: MIT
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;
    }
}


/**
 * @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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


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


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


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


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



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



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



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




/**
 * @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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //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 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 {}
}


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

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

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





/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}





pragma solidity ^0.8.0;

contract SpaceCatsDeployer is ERC721Enumerable, Ownable {
    using Strings for uint256;
    event Mint(address indexed sender, uint256 startWith, uint256 times);

    //supply counters
    uint256 public totalMints;
    uint256 public totalCount = 9999;
   
    //token Index tracker


    uint256 public maxToMint = 10;
    uint256 public price = 0.05 * 10 ** 18;

    //string
    string public baseURI;

    //bool
    bool private started;
    //constructor args
    constructor(string memory name_, string memory symbol_, string memory baseURI_) ERC721(name_, symbol_) {
        baseURI = baseURI_;
    }

    //basic functions.
    function _baseURI() internal view virtual override returns (string memory){
        return baseURI;
    }
    function setBaseURI(string memory _newURI) public onlyOwner {
        baseURI = _newURI;
    }

    //erc721
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token.");

        string memory baseURI2 = _baseURI();
        return bytes(baseURI2).length > 0
            ? string(abi.encodePacked(baseURI2, tokenId.toString(), ".json")) : '.json';
    }
    function setStart(bool _start) public onlyOwner {
        started = _start;
    }

    function tokensOfOwner(address owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 count = balanceOf(owner);
        uint256[] memory ids = new uint256[](count);
        for (uint256 i = 0; i < count; i++) {
            ids[i] = tokenOfOwnerByIndex(owner, i);
        }
        return ids;
    }

    function mint(uint256 _times) payable public {
        require(started, "not started");
        require(_times > 0 && _times <= maxToMint, "You can only mint 10 at a time");
        require(totalMints + _times <= totalCount, "Sold out!");
        require(msg.value == _times * price, "Please send correct amount of ETH");
        
        payable(owner()).transfer(msg.value);
        emit Mint(_msgSender(), totalMints + 1, _times);
        for(uint256 i = 0; i< _times; i++){
            _mint(_msgSender(), 1 + totalMints++);
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"string","name":"baseURI_","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":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"startWith","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"times","type":"uint256"}],"name":"Mint","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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxToMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_times","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_start","type":"bool"}],"name":"setStart","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"}]

608060405261270f600c55600a600d5566b1a2bc2ec50000600e553480156200002757600080fd5b506040516200247f3803806200247f8339810160408190526200004a916200027e565b825183908390620000639060009060208501906200010b565b508051620000799060019060208401906200010b565b5050506200009662000090620000b560201b60201c565b620000b9565b8051620000ab90600f9060208401906200010b565b505050506200034c565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000119906200030f565b90600052602060002090601f0160209004810192826200013d576000855562000188565b82601f106200015857805160ff191683800117855562000188565b8280016001018555821562000188579182015b82811115620001885782518255916020019190600101906200016b565b50620001969291506200019a565b5090565b5b808211156200019657600081556001016200019b565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620001d957600080fd5b81516001600160401b0380821115620001f657620001f6620001b1565b604051601f8301601f19908116603f01168101908282118183101715620002215762000221620001b1565b816040528381526020925086838588010111156200023e57600080fd5b600091505b8382101562000262578582018301518183018401529082019062000243565b83821115620002745760008385830101525b9695505050505050565b6000806000606084860312156200029457600080fd5b83516001600160401b0380821115620002ac57600080fd5b620002ba87838801620001c7565b94506020860151915080821115620002d157600080fd5b620002df87838801620001c7565b93506040860151915080821115620002f657600080fd5b506200030586828701620001c7565b9150509250925092565b600181811c908216806200032457607f821691505b602082108114156200034657634e487b7160e01b600052602260045260246000fd5b50919050565b612123806200035c6000396000f3fe6080604052600436106101b75760003560e01c806368e24327116100ec578063a035b1fe1161008a578063b88d4fde11610064578063b88d4fde146104a5578063c87b56dd146104c5578063e985e9c5146104e5578063f2fde38b1461052e57600080fd5b8063a035b1fe1461045c578063a0712d6814610472578063a22cb4651461048557600080fd5b8063715018a6116100c6578063715018a6146103e75780638462151c146103fc5780638da5cb5b1461042957806395d89b411461044757600080fd5b806368e24327146103925780636c0360eb146103b257806370a08231146103c757600080fd5b806323b872dd1161015957806342842e0e1161013357806342842e0e146103125780634f6ccce71461033257806355f804b3146103525780636352211e1461037257600080fd5b806323b872dd146102bc5780632f745c59146102dc57806334eafb11146102fc57600080fd5b8063095ea7b311610195578063095ea7b31461024b5780630ba133c51461026d57806318160ddd146102915780631f21bfbf146102a657600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611afd565b61054e565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b50610206610579565b6040516101e89190611b72565b34801561021f57600080fd5b5061023361022e366004611b85565b61060b565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b610266366004611bba565b6106a5565b005b34801561027957600080fd5b50610283600d5481565b6040519081526020016101e8565b34801561029d57600080fd5b50600854610283565b3480156102b257600080fd5b50610283600b5481565b3480156102c857600080fd5b5061026b6102d7366004611be4565b6107bb565b3480156102e857600080fd5b506102836102f7366004611bba565b6107ec565b34801561030857600080fd5b50610283600c5481565b34801561031e57600080fd5b5061026b61032d366004611be4565b610882565b34801561033e57600080fd5b5061028361034d366004611b85565b61089d565b34801561035e57600080fd5b5061026b61036d366004611cac565b610930565b34801561037e57600080fd5b5061023361038d366004611b85565b610971565b34801561039e57600080fd5b5061026b6103ad366004611d05565b6109e8565b3480156103be57600080fd5b50610206610a25565b3480156103d357600080fd5b506102836103e2366004611d20565b610ab3565b3480156103f357600080fd5b5061026b610b3a565b34801561040857600080fd5b5061041c610417366004611d20565b610b70565b6040516101e89190611d3b565b34801561043557600080fd5b50600a546001600160a01b0316610233565b34801561045357600080fd5b50610206610c12565b34801561046857600080fd5b50610283600e5481565b61026b610480366004611b85565b610c21565b34801561049157600080fd5b5061026b6104a0366004611d7f565b610e37565b3480156104b157600080fd5b5061026b6104c0366004611db2565b610efc565b3480156104d157600080fd5b506102066104e0366004611b85565b610f34565b3480156104f157600080fd5b506101dc610500366004611e2e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561053a57600080fd5b5061026b610549366004611d20565b61101e565b60006001600160e01b0319821663780e9d6360e01b14806105735750610573826110b9565b92915050565b60606000805461058890611e58565b80601f01602080910402602001604051908101604052809291908181526020018280546105b490611e58565b80156106015780601f106105d657610100808354040283529160200191610601565b820191906000526020600020905b8154815290600101906020018083116105e457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106895760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106b082610971565b9050806001600160a01b0316836001600160a01b0316141561071e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610680565b336001600160a01b038216148061073a575061073a8133610500565b6107ac5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610680565b6107b68383611109565b505050565b6107c53382611177565b6107e15760405162461bcd60e51b815260040161068090611e93565b6107b683838361126e565b60006107f783610ab3565b82106108595760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610680565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6107b683838360405180602001604052806000815250610efc565b60006108a860085490565b821061090b5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610680565b6008828154811061091e5761091e611ee4565b90600052602060002001549050919050565b600a546001600160a01b0316331461095a5760405162461bcd60e51b815260040161068090611efa565b805161096d90600f906020840190611a4e565b5050565b6000818152600260205260408120546001600160a01b0316806105735760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610680565b600a546001600160a01b03163314610a125760405162461bcd60e51b815260040161068090611efa565b6010805460ff1916911515919091179055565b600f8054610a3290611e58565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5e90611e58565b8015610aab5780601f10610a8057610100808354040283529160200191610aab565b820191906000526020600020905b815481529060010190602001808311610a8e57829003601f168201915b505050505081565b60006001600160a01b038216610b1e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610680565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610b645760405162461bcd60e51b815260040161068090611efa565b610b6e6000611419565b565b60606000610b7d83610ab3565b905060008167ffffffffffffffff811115610b9a57610b9a611c20565b604051908082528060200260200182016040528015610bc3578160200160208202803683370190505b50905060005b82811015610c0a57610bdb85826107ec565b828281518110610bed57610bed611ee4565b602090810291909101015280610c0281611f45565b915050610bc9565b509392505050565b60606001805461058890611e58565b60105460ff16610c615760405162461bcd60e51b815260206004820152600b60248201526a1b9bdd081cdd185c9d195960aa1b6044820152606401610680565b600081118015610c735750600d548111155b610cbf5760405162461bcd60e51b815260206004820152601e60248201527f596f752063616e206f6e6c79206d696e7420313020617420612074696d6500006044820152606401610680565b600c5481600b54610cd09190611f60565b1115610d0a5760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b6044820152606401610680565b600e54610d179082611f78565b3414610d6f5760405162461bcd60e51b815260206004820152602160248201527f506c656173652073656e6420636f727265637420616d6f756e74206f662045546044820152600960fb1b6064820152608401610680565b600a546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015610da8573d6000803e3d6000fd5b50600b5433907f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f90610ddb906001611f60565b60408051918252602082018590520160405180910390a260005b8181101561096d57610e2533600b8054906000610e1183611f45565b90915550610e20906001611f60565b61146b565b80610e2f81611f45565b915050610df5565b6001600160a01b038216331415610e905760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610680565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f063383611177565b610f225760405162461bcd60e51b815260040161068090611e93565b610f2e848484846115b9565b50505050565b6000818152600260205260409020546060906001600160a01b0316610fb45760405162461bcd60e51b815260206004820152603060248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526f3732bc34b9ba32b73a103a37b5b2b71760811b6064820152608401610680565b6000610fbe6115ec565b90506000815111610fec5760405180604001604052806005815260200164173539b7b760d91b815250611017565b80610ff6846115fb565b604051602001611007929190611f97565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146110485760405162461bcd60e51b815260040161068090611efa565b6001600160a01b0381166110ad5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610680565b6110b681611419565b50565b60006001600160e01b031982166380ac58cd60e01b14806110ea57506001600160e01b03198216635b5e139f60e01b145b8061057357506301ffc9a760e01b6001600160e01b0319831614610573565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061113e82610971565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166111f05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610680565b60006111fb83610971565b9050806001600160a01b0316846001600160a01b031614806112365750836001600160a01b031661122b8461060b565b6001600160a01b0316145b8061126657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661128182610971565b6001600160a01b0316146112e95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610680565b6001600160a01b03821661134b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610680565b6113568383836116f9565b611361600082611109565b6001600160a01b038316600090815260036020526040812080546001929061138a908490611fd6565b90915550506001600160a01b03821660009081526003602052604081208054600192906113b8908490611f60565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166114c15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610680565b6000818152600260205260409020546001600160a01b0316156115265760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610680565b611532600083836116f9565b6001600160a01b038216600090815260036020526040812080546001929061155b908490611f60565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6115c484848461126e565b6115d0848484846117b1565b610f2e5760405162461bcd60e51b815260040161068090611fed565b6060600f805461058890611e58565b60608161161f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611649578061163381611f45565b91506116429050600a83612055565b9150611623565b60008167ffffffffffffffff81111561166457611664611c20565b6040519080825280601f01601f19166020018201604052801561168e576020820181803683370190505b5090505b8415611266576116a3600183611fd6565b91506116b0600a86612069565b6116bb906030611f60565b60f81b8183815181106116d0576116d0611ee4565b60200101906001600160f81b031916908160001a9053506116f2600a86612055565b9450611692565b6001600160a01b0383166117545761174f81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611777565b816001600160a01b0316836001600160a01b0316146117775761177783826118be565b6001600160a01b03821661178e576107b68161195b565b826001600160a01b0316826001600160a01b0316146107b6576107b68282611a0a565b60006001600160a01b0384163b156118b357604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117f590339089908890889060040161207d565b602060405180830381600087803b15801561180f57600080fd5b505af192505050801561183f575060408051601f3d908101601f1916820190925261183c918101906120ba565b60015b611899573d80801561186d576040519150601f19603f3d011682016040523d82523d6000602084013e611872565b606091505b5080516118915760405162461bcd60e51b815260040161068090611fed565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611266565b506001949350505050565b600060016118cb84610ab3565b6118d59190611fd6565b600083815260076020526040902054909150808214611928576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061196d90600190611fd6565b6000838152600960205260408120546008805493945090928490811061199557611995611ee4565b9060005260206000200154905080600883815481106119b6576119b6611ee4565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806119ee576119ee6120d7565b6001900381819060005260206000200160009055905550505050565b6000611a1583610ab3565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611a5a90611e58565b90600052602060002090601f016020900481019282611a7c5760008555611ac2565b82601f10611a9557805160ff1916838001178555611ac2565b82800160010185558215611ac2579182015b82811115611ac2578251825591602001919060010190611aa7565b50611ace929150611ad2565b5090565b5b80821115611ace5760008155600101611ad3565b6001600160e01b0319811681146110b657600080fd5b600060208284031215611b0f57600080fd5b813561101781611ae7565b60005b83811015611b35578181015183820152602001611b1d565b83811115610f2e5750506000910152565b60008151808452611b5e816020860160208601611b1a565b601f01601f19169290920160200192915050565b6020815260006110176020830184611b46565b600060208284031215611b9757600080fd5b5035919050565b80356001600160a01b0381168114611bb557600080fd5b919050565b60008060408385031215611bcd57600080fd5b611bd683611b9e565b946020939093013593505050565b600080600060608486031215611bf957600080fd5b611c0284611b9e565b9250611c1060208501611b9e565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611c5157611c51611c20565b604051601f8501601f19908116603f01168101908282118183101715611c7957611c79611c20565b81604052809350858152868686011115611c9257600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611cbe57600080fd5b813567ffffffffffffffff811115611cd557600080fd5b8201601f81018413611ce657600080fd5b61126684823560208401611c36565b80358015158114611bb557600080fd5b600060208284031215611d1757600080fd5b61101782611cf5565b600060208284031215611d3257600080fd5b61101782611b9e565b6020808252825182820181905260009190848201906040850190845b81811015611d7357835183529284019291840191600101611d57565b50909695505050505050565b60008060408385031215611d9257600080fd5b611d9b83611b9e565b9150611da960208401611cf5565b90509250929050565b60008060008060808587031215611dc857600080fd5b611dd185611b9e565b9350611ddf60208601611b9e565b925060408501359150606085013567ffffffffffffffff811115611e0257600080fd5b8501601f81018713611e1357600080fd5b611e2287823560208401611c36565b91505092959194509250565b60008060408385031215611e4157600080fd5b611e4a83611b9e565b9150611da960208401611b9e565b600181811c90821680611e6c57607f821691505b60208210811415611e8d57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000600019821415611f5957611f59611f2f565b5060010190565b60008219821115611f7357611f73611f2f565b500190565b6000816000190483118215151615611f9257611f92611f2f565b500290565b60008351611fa9818460208801611b1a565b835190830190611fbd818360208801611b1a565b64173539b7b760d91b9101908152600501949350505050565b600082821015611fe857611fe8611f2f565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826120645761206461203f565b500490565b6000826120785761207861203f565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120b090830184611b46565b9695505050505050565b6000602082840312156120cc57600080fd5b815161101781611ae7565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220976337e72d92b2539042b07caca22a7e1702569791b957f8bc936b5193e6254064736f6c63430008090033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000009537061636543617473000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000095370616365436174730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c68747470733a2f2f6170692e7370616365636174736e66742e696f2f00000000

Deployed Bytecode

0x6080604052600436106101b75760003560e01c806368e24327116100ec578063a035b1fe1161008a578063b88d4fde11610064578063b88d4fde146104a5578063c87b56dd146104c5578063e985e9c5146104e5578063f2fde38b1461052e57600080fd5b8063a035b1fe1461045c578063a0712d6814610472578063a22cb4651461048557600080fd5b8063715018a6116100c6578063715018a6146103e75780638462151c146103fc5780638da5cb5b1461042957806395d89b411461044757600080fd5b806368e24327146103925780636c0360eb146103b257806370a08231146103c757600080fd5b806323b872dd1161015957806342842e0e1161013357806342842e0e146103125780634f6ccce71461033257806355f804b3146103525780636352211e1461037257600080fd5b806323b872dd146102bc5780632f745c59146102dc57806334eafb11146102fc57600080fd5b8063095ea7b311610195578063095ea7b31461024b5780630ba133c51461026d57806318160ddd146102915780631f21bfbf146102a657600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611afd565b61054e565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b50610206610579565b6040516101e89190611b72565b34801561021f57600080fd5b5061023361022e366004611b85565b61060b565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b610266366004611bba565b6106a5565b005b34801561027957600080fd5b50610283600d5481565b6040519081526020016101e8565b34801561029d57600080fd5b50600854610283565b3480156102b257600080fd5b50610283600b5481565b3480156102c857600080fd5b5061026b6102d7366004611be4565b6107bb565b3480156102e857600080fd5b506102836102f7366004611bba565b6107ec565b34801561030857600080fd5b50610283600c5481565b34801561031e57600080fd5b5061026b61032d366004611be4565b610882565b34801561033e57600080fd5b5061028361034d366004611b85565b61089d565b34801561035e57600080fd5b5061026b61036d366004611cac565b610930565b34801561037e57600080fd5b5061023361038d366004611b85565b610971565b34801561039e57600080fd5b5061026b6103ad366004611d05565b6109e8565b3480156103be57600080fd5b50610206610a25565b3480156103d357600080fd5b506102836103e2366004611d20565b610ab3565b3480156103f357600080fd5b5061026b610b3a565b34801561040857600080fd5b5061041c610417366004611d20565b610b70565b6040516101e89190611d3b565b34801561043557600080fd5b50600a546001600160a01b0316610233565b34801561045357600080fd5b50610206610c12565b34801561046857600080fd5b50610283600e5481565b61026b610480366004611b85565b610c21565b34801561049157600080fd5b5061026b6104a0366004611d7f565b610e37565b3480156104b157600080fd5b5061026b6104c0366004611db2565b610efc565b3480156104d157600080fd5b506102066104e0366004611b85565b610f34565b3480156104f157600080fd5b506101dc610500366004611e2e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561053a57600080fd5b5061026b610549366004611d20565b61101e565b60006001600160e01b0319821663780e9d6360e01b14806105735750610573826110b9565b92915050565b60606000805461058890611e58565b80601f01602080910402602001604051908101604052809291908181526020018280546105b490611e58565b80156106015780601f106105d657610100808354040283529160200191610601565b820191906000526020600020905b8154815290600101906020018083116105e457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106895760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106b082610971565b9050806001600160a01b0316836001600160a01b0316141561071e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610680565b336001600160a01b038216148061073a575061073a8133610500565b6107ac5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610680565b6107b68383611109565b505050565b6107c53382611177565b6107e15760405162461bcd60e51b815260040161068090611e93565b6107b683838361126e565b60006107f783610ab3565b82106108595760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610680565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6107b683838360405180602001604052806000815250610efc565b60006108a860085490565b821061090b5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610680565b6008828154811061091e5761091e611ee4565b90600052602060002001549050919050565b600a546001600160a01b0316331461095a5760405162461bcd60e51b815260040161068090611efa565b805161096d90600f906020840190611a4e565b5050565b6000818152600260205260408120546001600160a01b0316806105735760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610680565b600a546001600160a01b03163314610a125760405162461bcd60e51b815260040161068090611efa565b6010805460ff1916911515919091179055565b600f8054610a3290611e58565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5e90611e58565b8015610aab5780601f10610a8057610100808354040283529160200191610aab565b820191906000526020600020905b815481529060010190602001808311610a8e57829003601f168201915b505050505081565b60006001600160a01b038216610b1e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610680565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610b645760405162461bcd60e51b815260040161068090611efa565b610b6e6000611419565b565b60606000610b7d83610ab3565b905060008167ffffffffffffffff811115610b9a57610b9a611c20565b604051908082528060200260200182016040528015610bc3578160200160208202803683370190505b50905060005b82811015610c0a57610bdb85826107ec565b828281518110610bed57610bed611ee4565b602090810291909101015280610c0281611f45565b915050610bc9565b509392505050565b60606001805461058890611e58565b60105460ff16610c615760405162461bcd60e51b815260206004820152600b60248201526a1b9bdd081cdd185c9d195960aa1b6044820152606401610680565b600081118015610c735750600d548111155b610cbf5760405162461bcd60e51b815260206004820152601e60248201527f596f752063616e206f6e6c79206d696e7420313020617420612074696d6500006044820152606401610680565b600c5481600b54610cd09190611f60565b1115610d0a5760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b6044820152606401610680565b600e54610d179082611f78565b3414610d6f5760405162461bcd60e51b815260206004820152602160248201527f506c656173652073656e6420636f727265637420616d6f756e74206f662045546044820152600960fb1b6064820152608401610680565b600a546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015610da8573d6000803e3d6000fd5b50600b5433907f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f90610ddb906001611f60565b60408051918252602082018590520160405180910390a260005b8181101561096d57610e2533600b8054906000610e1183611f45565b90915550610e20906001611f60565b61146b565b80610e2f81611f45565b915050610df5565b6001600160a01b038216331415610e905760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610680565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f063383611177565b610f225760405162461bcd60e51b815260040161068090611e93565b610f2e848484846115b9565b50505050565b6000818152600260205260409020546060906001600160a01b0316610fb45760405162461bcd60e51b815260206004820152603060248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526f3732bc34b9ba32b73a103a37b5b2b71760811b6064820152608401610680565b6000610fbe6115ec565b90506000815111610fec5760405180604001604052806005815260200164173539b7b760d91b815250611017565b80610ff6846115fb565b604051602001611007929190611f97565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146110485760405162461bcd60e51b815260040161068090611efa565b6001600160a01b0381166110ad5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610680565b6110b681611419565b50565b60006001600160e01b031982166380ac58cd60e01b14806110ea57506001600160e01b03198216635b5e139f60e01b145b8061057357506301ffc9a760e01b6001600160e01b0319831614610573565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061113e82610971565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166111f05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610680565b60006111fb83610971565b9050806001600160a01b0316846001600160a01b031614806112365750836001600160a01b031661122b8461060b565b6001600160a01b0316145b8061126657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661128182610971565b6001600160a01b0316146112e95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610680565b6001600160a01b03821661134b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610680565b6113568383836116f9565b611361600082611109565b6001600160a01b038316600090815260036020526040812080546001929061138a908490611fd6565b90915550506001600160a01b03821660009081526003602052604081208054600192906113b8908490611f60565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166114c15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610680565b6000818152600260205260409020546001600160a01b0316156115265760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610680565b611532600083836116f9565b6001600160a01b038216600090815260036020526040812080546001929061155b908490611f60565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6115c484848461126e565b6115d0848484846117b1565b610f2e5760405162461bcd60e51b815260040161068090611fed565b6060600f805461058890611e58565b60608161161f5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611649578061163381611f45565b91506116429050600a83612055565b9150611623565b60008167ffffffffffffffff81111561166457611664611c20565b6040519080825280601f01601f19166020018201604052801561168e576020820181803683370190505b5090505b8415611266576116a3600183611fd6565b91506116b0600a86612069565b6116bb906030611f60565b60f81b8183815181106116d0576116d0611ee4565b60200101906001600160f81b031916908160001a9053506116f2600a86612055565b9450611692565b6001600160a01b0383166117545761174f81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611777565b816001600160a01b0316836001600160a01b0316146117775761177783826118be565b6001600160a01b03821661178e576107b68161195b565b826001600160a01b0316826001600160a01b0316146107b6576107b68282611a0a565b60006001600160a01b0384163b156118b357604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906117f590339089908890889060040161207d565b602060405180830381600087803b15801561180f57600080fd5b505af192505050801561183f575060408051601f3d908101601f1916820190925261183c918101906120ba565b60015b611899573d80801561186d576040519150601f19603f3d011682016040523d82523d6000602084013e611872565b606091505b5080516118915760405162461bcd60e51b815260040161068090611fed565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611266565b506001949350505050565b600060016118cb84610ab3565b6118d59190611fd6565b600083815260076020526040902054909150808214611928576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061196d90600190611fd6565b6000838152600960205260408120546008805493945090928490811061199557611995611ee4565b9060005260206000200154905080600883815481106119b6576119b6611ee4565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806119ee576119ee6120d7565b6001900381819060005260206000200160009055905550505050565b6000611a1583610ab3565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611a5a90611e58565b90600052602060002090601f016020900481019282611a7c5760008555611ac2565b82601f10611a9557805160ff1916838001178555611ac2565b82800160010185558215611ac2579182015b82811115611ac2578251825591602001919060010190611aa7565b50611ace929150611ad2565b5090565b5b80821115611ace5760008155600101611ad3565b6001600160e01b0319811681146110b657600080fd5b600060208284031215611b0f57600080fd5b813561101781611ae7565b60005b83811015611b35578181015183820152602001611b1d565b83811115610f2e5750506000910152565b60008151808452611b5e816020860160208601611b1a565b601f01601f19169290920160200192915050565b6020815260006110176020830184611b46565b600060208284031215611b9757600080fd5b5035919050565b80356001600160a01b0381168114611bb557600080fd5b919050565b60008060408385031215611bcd57600080fd5b611bd683611b9e565b946020939093013593505050565b600080600060608486031215611bf957600080fd5b611c0284611b9e565b9250611c1060208501611b9e565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611c5157611c51611c20565b604051601f8501601f19908116603f01168101908282118183101715611c7957611c79611c20565b81604052809350858152868686011115611c9257600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611cbe57600080fd5b813567ffffffffffffffff811115611cd557600080fd5b8201601f81018413611ce657600080fd5b61126684823560208401611c36565b80358015158114611bb557600080fd5b600060208284031215611d1757600080fd5b61101782611cf5565b600060208284031215611d3257600080fd5b61101782611b9e565b6020808252825182820181905260009190848201906040850190845b81811015611d7357835183529284019291840191600101611d57565b50909695505050505050565b60008060408385031215611d9257600080fd5b611d9b83611b9e565b9150611da960208401611cf5565b90509250929050565b60008060008060808587031215611dc857600080fd5b611dd185611b9e565b9350611ddf60208601611b9e565b925060408501359150606085013567ffffffffffffffff811115611e0257600080fd5b8501601f81018713611e1357600080fd5b611e2287823560208401611c36565b91505092959194509250565b60008060408385031215611e4157600080fd5b611e4a83611b9e565b9150611da960208401611b9e565b600181811c90821680611e6c57607f821691505b60208210811415611e8d57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000600019821415611f5957611f59611f2f565b5060010190565b60008219821115611f7357611f73611f2f565b500190565b6000816000190483118215151615611f9257611f92611f2f565b500290565b60008351611fa9818460208801611b1a565b835190830190611fbd818360208801611b1a565b64173539b7b760d91b9101908152600501949350505050565b600082821015611fe857611fe8611f2f565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826120645761206461203f565b500490565b6000826120785761207861203f565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120b090830184611b46565b9695505050505050565b6000602082840312156120cc57600080fd5b815161101781611ae7565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220976337e72d92b2539042b07caca22a7e1702569791b957f8bc936b5193e6254064736f6c63430008090033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000009537061636543617473000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000095370616365436174730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c68747470733a2f2f6170692e7370616365636174736e66742e696f2f00000000

-----Decoded View---------------
Arg [0] : name_ (string): SpaceCats
Arg [1] : symbol_ (string): SpaceCats
Arg [2] : baseURI_ (string): https://api.spacecatsnft.io/

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [4] : 5370616365436174730000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [6] : 5370616365436174730000000000000000000000000000000000000000000000
Arg [7] : 000000000000000000000000000000000000000000000000000000000000001c
Arg [8] : 68747470733a2f2f6170692e7370616365636174736e66742e696f2f00000000


Deployed Bytecode Sourcemap

42610:2269:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36427:224;;;;;;;;;;-1:-1:-1;36427:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;36427:224:0;;;;;;;;23549:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25108:221::-;;;;;;;;;;-1:-1:-1;25108:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;25108:221:0;1528:203:1;24631:411:0;;;;;;;;;;-1:-1:-1;24631:411:0;;;;;:::i;:::-;;:::i;:::-;;42912:29;;;;;;;;;;;;;;;;;;;2319:25:1;;;2307:2;2292:18;42912:29:0;2173:177:1;37067:113:0;;;;;;;;;;-1:-1:-1;37155:10:0;:17;37067:113;;42805:25;;;;;;;;;;;;;;;;25998:339;;;;;;;;;;-1:-1:-1;25998:339:0;;;;;:::i;:::-;;:::i;36735:256::-;;;;;;;;;;-1:-1:-1;36735:256:0;;;;;:::i;:::-;;:::i;42837:32::-;;;;;;;;;;;;;;;;26408:185;;;;;;;;;;-1:-1:-1;26408:185:0;;;;;:::i;:::-;;:::i;37257:233::-;;;;;;;;;;-1:-1:-1;37257:233:0;;;;;:::i;:::-;;:::i;43387:96::-;;;;;;;;;;-1:-1:-1;43387:96:0;;;;;:::i;:::-;;:::i;23243:239::-;;;;;;;;;;-1:-1:-1;23243:239:0;;;;;:::i;:::-;;:::i;43876:83::-;;;;;;;;;;-1:-1:-1;43876:83:0;;;;;:::i;:::-;;:::i;43009:21::-;;;;;;;;;;;;;:::i;22973:208::-;;;;;;;;;;-1:-1:-1;22973:208:0;;;;;:::i;:::-;;:::i;2924:94::-;;;;;;;;;;;;;:::i;43967:346::-;;;;;;;;;;-1:-1:-1;43967:346:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;2273:87::-;;;;;;;;;;-1:-1:-1;2346:6:0;;-1:-1:-1;;;;;2346:6:0;2273:87;;23718:104;;;;;;;;;;;;;:::i;42948:38::-;;;;;;;;;;;;;;;;44321:555;;;;;;:::i;:::-;;:::i;25401:295::-;;;;;;;;;;-1:-1:-1;25401:295:0;;;;;:::i;:::-;;:::i;26664:328::-;;;;;;;;;;-1:-1:-1;26664:328:0;;;;;:::i;:::-;;:::i;43505:365::-;;;;;;;;;;-1:-1:-1;43505:365:0;;;;;:::i;:::-;;:::i;25767:164::-;;;;;;;;;;-1:-1:-1;25767:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;25888:25:0;;;25864:4;25888:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25767:164;3173:192;;;;;;;;;;-1:-1:-1;3173:192:0;;;;;:::i;:::-;;:::i;36427:224::-;36529:4;-1:-1:-1;;;;;;36553:50:0;;-1:-1:-1;;;36553:50:0;;:90;;;36607:36;36631:11;36607:23;:36::i;:::-;36546:97;36427:224;-1:-1:-1;;36427:224:0:o;23549:100::-;23603:13;23636:5;23629:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23549:100;:::o;25108:221::-;25184:7;28591:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28591:16:0;25204:73;;;;-1:-1:-1;;;25204:73:0;;6874:2:1;25204:73:0;;;6856:21:1;6913:2;6893:18;;;6886:30;6952:34;6932:18;;;6925:62;-1:-1:-1;;;7003:18:1;;;6996:42;7055:19;;25204:73:0;;;;;;;;;-1:-1:-1;25297:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25297:24:0;;25108:221::o;24631:411::-;24712:13;24728:23;24743:7;24728:14;:23::i;:::-;24712:39;;24776:5;-1:-1:-1;;;;;24770:11:0;:2;-1:-1:-1;;;;;24770:11:0;;;24762:57;;;;-1:-1:-1;;;24762:57:0;;7287:2:1;24762:57:0;;;7269:21:1;7326:2;7306:18;;;7299:30;7365:34;7345:18;;;7338:62;-1:-1:-1;;;7416:18:1;;;7409:31;7457:19;;24762:57:0;7085:397:1;24762:57:0;1227:10;-1:-1:-1;;;;;24854:21:0;;;;:62;;-1:-1:-1;24879:37:0;24896:5;1227:10;25767:164;:::i;24879:37::-;24832:168;;;;-1:-1:-1;;;24832:168:0;;7689:2:1;24832:168:0;;;7671:21:1;7728:2;7708:18;;;7701:30;7767:34;7747:18;;;7740:62;7838:26;7818:18;;;7811:54;7882:19;;24832:168:0;7487:420:1;24832:168:0;25013:21;25022:2;25026:7;25013:8;:21::i;:::-;24701:341;24631:411;;:::o;25998:339::-;26193:41;1227:10;26226:7;26193:18;:41::i;:::-;26185:103;;;;-1:-1:-1;;;26185:103:0;;;;;;;:::i;:::-;26301:28;26311:4;26317:2;26321:7;26301:9;:28::i;36735:256::-;36832:7;36868:23;36885:5;36868:16;:23::i;:::-;36860:5;:31;36852:87;;;;-1:-1:-1;;;36852:87:0;;8532:2:1;36852:87:0;;;8514:21:1;8571:2;8551:18;;;8544:30;8610:34;8590:18;;;8583:62;-1:-1:-1;;;8661:18:1;;;8654:41;8712:19;;36852:87:0;8330:407:1;36852:87:0;-1:-1:-1;;;;;;36957:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;36735:256::o;26408:185::-;26546:39;26563:4;26569:2;26573:7;26546:39;;;;;;;;;;;;:16;:39::i;37257:233::-;37332:7;37368:30;37155:10;:17;;37067:113;37368:30;37360:5;:38;37352:95;;;;-1:-1:-1;;;37352:95:0;;8944:2:1;37352:95:0;;;8926:21:1;8983:2;8963:18;;;8956:30;9022:34;9002:18;;;8995:62;-1:-1:-1;;;9073:18:1;;;9066:42;9125:19;;37352:95:0;8742:408:1;37352:95:0;37465:10;37476:5;37465:17;;;;;;;;:::i;:::-;;;;;;;;;37458:24;;37257:233;;;:::o;43387:96::-;2346:6;;-1:-1:-1;;;;;2346:6:0;1227:10;2493:23;2485:68;;;;-1:-1:-1;;;2485:68:0;;;;;;;:::i;:::-;43458:17;;::::1;::::0;:7:::1;::::0;:17:::1;::::0;::::1;::::0;::::1;:::i;:::-;;43387:96:::0;:::o;23243:239::-;23315:7;23351:16;;;:7;:16;;;;;;-1:-1:-1;;;;;23351:16:0;23386:19;23378:73;;;;-1:-1:-1;;;23378:73:0;;9850:2:1;23378:73:0;;;9832:21:1;9889:2;9869:18;;;9862:30;9928:34;9908:18;;;9901:62;-1:-1:-1;;;9979:18:1;;;9972:39;10028:19;;23378:73:0;9648:405:1;43876:83:0;2346:6;;-1:-1:-1;;;;;2346:6:0;1227:10;2493:23;2485:68;;;;-1:-1:-1;;;2485:68:0;;;;;;;:::i;:::-;43935:7:::1;:16:::0;;-1:-1:-1;;43935:16:0::1;::::0;::::1;;::::0;;;::::1;::::0;;43876:83::o;43009:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22973:208::-;23045:7;-1:-1:-1;;;;;23073:19:0;;23065:74;;;;-1:-1:-1;;;23065:74:0;;10260:2:1;23065:74:0;;;10242:21:1;10299:2;10279:18;;;10272:30;10338:34;10318:18;;;10311:62;-1:-1:-1;;;10389:18:1;;;10382:40;10439:19;;23065:74:0;10058:406:1;23065:74:0;-1:-1:-1;;;;;;23157:16:0;;;;;:9;:16;;;;;;;22973:208::o;2924:94::-;2346:6;;-1:-1:-1;;;;;2346:6:0;1227:10;2493:23;2485:68;;;;-1:-1:-1;;;2485:68:0;;;;;;;:::i;:::-;2989:21:::1;3007:1;2989:9;:21::i;:::-;2924:94::o:0;43967:346::-;44053:16;44087:13;44103:16;44113:5;44103:9;:16::i;:::-;44087:32;;44130:20;44167:5;44153:20;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44153:20:0;;44130:43;;44189:9;44184:101;44208:5;44204:1;:9;44184:101;;;44244:29;44264:5;44271:1;44244:19;:29::i;:::-;44235:3;44239:1;44235:6;;;;;;;;:::i;:::-;;;;;;;;;;:38;44215:3;;;;:::i;:::-;;;;44184:101;;;-1:-1:-1;44302:3:0;43967:346;-1:-1:-1;;;43967:346:0:o;23718:104::-;23774:13;23807:7;23800:14;;;;;:::i;44321:555::-;44385:7;;;;44377:31;;;;-1:-1:-1;;;44377:31:0;;10943:2:1;44377:31:0;;;10925:21:1;10982:2;10962:18;;;10955:30;-1:-1:-1;;;11001:18:1;;;10994:41;11052:18;;44377:31:0;10741:335:1;44377:31:0;44436:1;44427:6;:10;:33;;;;;44451:9;;44441:6;:19;;44427:33;44419:76;;;;-1:-1:-1;;;44419:76:0;;11283:2:1;44419:76:0;;;11265:21:1;11322:2;11302:18;;;11295:30;11361:32;11341:18;;;11334:60;11411:18;;44419:76:0;11081:354:1;44419:76:0;44537:10;;44527:6;44514:10;;:19;;;;:::i;:::-;:33;;44506:55;;;;-1:-1:-1;;;44506:55:0;;11775:2:1;44506:55:0;;;11757:21:1;11814:1;11794:18;;;11787:29;-1:-1:-1;;;11832:18:1;;;11825:39;11881:18;;44506:55:0;11573:332:1;44506:55:0;44602:5;;44593:14;;:6;:14;:::i;:::-;44580:9;:27;44572:73;;;;-1:-1:-1;;;44572:73:0;;12285:2:1;44572:73:0;;;12267:21:1;12324:2;12304:18;;;12297:30;12363:34;12343:18;;;12336:62;-1:-1:-1;;;12414:18:1;;;12407:31;12455:19;;44572:73:0;12083:397:1;44572:73:0;2346:6;;44666:36;;-1:-1:-1;;;;;2346:6:0;;;;44692:9;44666:36;;;;;;;;;44692:9;2346:6;44666:36;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44737:10:0;;1227;;44718:42;;44737:14;;44750:1;44737:14;:::i;:::-;44718:42;;;12659:25:1;;;12715:2;12700:18;;12693:34;;;12632:18;44718:42:0;;;;;;;44775:9;44771:98;44793:6;44790:1;:9;44771:98;;;44820:37;1227:10;44844;:12;;;:10;:12;;;:::i;:::-;;;;-1:-1:-1;44840:16:0;;:1;:16;:::i;:::-;44820:5;:37::i;:::-;44801:3;;;;:::i;:::-;;;;44771:98;;25401:295;-1:-1:-1;;;;;25504:24:0;;1227:10;25504:24;;25496:62;;;;-1:-1:-1;;;25496:62:0;;12940:2:1;25496:62:0;;;12922:21:1;12979:2;12959:18;;;12952:30;13018:27;12998:18;;;12991:55;13063:18;;25496:62:0;12738:349:1;25496:62:0;1227:10;25571:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;25571:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;25571:53:0;;;;;;;;;;25640:48;;540:41:1;;;25571:42:0;;1227:10;25640:48;;513:18:1;25640:48:0;;;;;;;25401:295;;:::o;26664:328::-;26839:41;1227:10;26872:7;26839:18;:41::i;:::-;26831:103;;;;-1:-1:-1;;;26831:103:0;;;;;;;:::i;:::-;26945:39;26959:4;26965:2;26969:7;26978:5;26945:13;:39::i;:::-;26664:328;;;;:::o;43505:365::-;28567:4;28591:16;;;:7;:16;;;;;;43578:13;;-1:-1:-1;;;;;28591:16:0;43604:77;;;;-1:-1:-1;;;43604:77:0;;13294:2:1;43604:77:0;;;13276:21:1;13333:2;13313:18;;;13306:30;13372:34;13352:18;;;13345:62;-1:-1:-1;;;13423:18:1;;;13416:46;13479:19;;43604:77:0;13092:412:1;43604:77:0;43694:22;43719:10;:8;:10::i;:::-;43694:35;;43772:1;43753:8;43747:22;:26;:115;;;;;;;;;;;;;;;-1:-1:-1;;;43747:115:0;;;;;;43813:8;43823:18;:7;:16;:18::i;:::-;43796:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43747:115;43740:122;43505:365;-1:-1:-1;;;43505:365:0:o;3173:192::-;2346:6;;-1:-1:-1;;;;;2346:6:0;1227:10;2493:23;2485:68;;;;-1:-1:-1;;;2485:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3262:22:0;::::1;3254:73;;;::::0;-1:-1:-1;;;3254:73:0;;14353:2:1;3254:73:0::1;::::0;::::1;14335:21:1::0;14392:2;14372:18;;;14365:30;14431:34;14411:18;;;14404:62;-1:-1:-1;;;14482:18:1;;;14475:36;14528:19;;3254:73:0::1;14151:402:1::0;3254:73:0::1;3338:19;3348:8;3338:9;:19::i;:::-;3173:192:::0;:::o;22604:305::-;22706:4;-1:-1:-1;;;;;;22743:40:0;;-1:-1:-1;;;22743:40:0;;:105;;-1:-1:-1;;;;;;;22800:48:0;;-1:-1:-1;;;22800:48:0;22743:105;:158;;;-1:-1:-1;;;;;;;;;;21316:40:0;;;22865:36;21207:157;32484:174;32559:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32559:29:0;-1:-1:-1;;;;;32559:29:0;;;;;;;;:24;;32613:23;32559:24;32613:14;:23::i;:::-;-1:-1:-1;;;;;32604:46:0;;;;;;;;;;;32484:174;;:::o;28796:348::-;28889:4;28591:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28591:16:0;28906:73;;;;-1:-1:-1;;;28906:73:0;;14760:2:1;28906:73:0;;;14742:21:1;14799:2;14779:18;;;14772:30;14838:34;14818:18;;;14811:62;-1:-1:-1;;;14889:18:1;;;14882:42;14941:19;;28906:73:0;14558:408:1;28906:73:0;28990:13;29006:23;29021:7;29006:14;:23::i;:::-;28990:39;;29059:5;-1:-1:-1;;;;;29048:16:0;:7;-1:-1:-1;;;;;29048:16:0;;:51;;;;29092:7;-1:-1:-1;;;;;29068:31:0;:20;29080:7;29068:11;:20::i;:::-;-1:-1:-1;;;;;29068:31:0;;29048:51;:87;;;-1:-1:-1;;;;;;25888:25:0;;;25864:4;25888:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;29103:32;29040:96;28796:348;-1:-1:-1;;;;28796:348:0:o;31788:578::-;31947:4;-1:-1:-1;;;;;31920:31:0;:23;31935:7;31920:14;:23::i;:::-;-1:-1:-1;;;;;31920:31:0;;31912:85;;;;-1:-1:-1;;;31912:85:0;;15173:2:1;31912:85:0;;;15155:21:1;15212:2;15192:18;;;15185:30;15251:34;15231:18;;;15224:62;-1:-1:-1;;;15302:18:1;;;15295:39;15351:19;;31912:85:0;14971:405:1;31912:85:0;-1:-1:-1;;;;;32016:16:0;;32008:65;;;;-1:-1:-1;;;32008:65:0;;15583:2:1;32008:65:0;;;15565:21:1;15622:2;15602:18;;;15595:30;15661:34;15641:18;;;15634:62;-1:-1:-1;;;15712:18:1;;;15705:34;15756:19;;32008:65:0;15381:400:1;32008:65:0;32086:39;32107:4;32113:2;32117:7;32086:20;:39::i;:::-;32190:29;32207:1;32211:7;32190:8;:29::i;:::-;-1:-1:-1;;;;;32232:15:0;;;;;;:9;:15;;;;;:20;;32251:1;;32232:15;:20;;32251:1;;32232:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32263:13:0;;;;;;:9;:13;;;;;:18;;32280:1;;32263:13;:18;;32280:1;;32263:18;:::i;:::-;;;;-1:-1:-1;;32292:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32292:21:0;-1:-1:-1;;;;;32292:21:0;;;;;;;;;32331:27;;32292:16;;32331:27;;;;;;;31788:578;;;:::o;3373:173::-;3448:6;;;-1:-1:-1;;;;;3465:17:0;;;-1:-1:-1;;;;;;3465:17:0;;;;;;;3498:40;;3448:6;;;3465:17;3448:6;;3498:40;;3429:16;;3498:40;3418:128;3373:173;:::o;30480:382::-;-1:-1:-1;;;;;30560:16:0;;30552:61;;;;-1:-1:-1;;;30552:61:0;;16118:2:1;30552:61:0;;;16100:21:1;;;16137:18;;;16130:30;16196:34;16176:18;;;16169:62;16248:18;;30552:61:0;15916:356:1;30552:61:0;28567:4;28591:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28591:16:0;:30;30624:58;;;;-1:-1:-1;;;30624:58:0;;16479:2:1;30624:58:0;;;16461:21:1;16518:2;16498:18;;;16491:30;16557;16537:18;;;16530:58;16605:18;;30624:58:0;16277:352:1;30624:58:0;30695:45;30724:1;30728:2;30732:7;30695:20;:45::i;:::-;-1:-1:-1;;;;;30753:13:0;;;;;;:9;:13;;;;;:18;;30770:1;;30753:13;:18;;30770:1;;30753:18;:::i;:::-;;;;-1:-1:-1;;30782:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30782:21:0;-1:-1:-1;;;;;30782:21:0;;;;;;;;30821:33;;30782:16;;;30821:33;;30782:16;;30821:33;30480:382;;:::o;27874:315::-;28031:28;28041:4;28047:2;28051:7;28031:9;:28::i;:::-;28078:48;28101:4;28107:2;28111:7;28120:5;28078:22;:48::i;:::-;28070:111;;;;-1:-1:-1;;;28070:111:0;;;;;;;:::i;43274:107::-;43334:13;43366:7;43359:14;;;;;:::i;18746:723::-;18802:13;19023:10;19019:53;;-1:-1:-1;;19050:10:0;;;;;;;;;;;;-1:-1:-1;;;19050:10:0;;;;;18746:723::o;19019:53::-;19097:5;19082:12;19138:78;19145:9;;19138:78;;19171:8;;;;:::i;:::-;;-1:-1:-1;19194:10:0;;-1:-1:-1;19202:2:0;19194:10;;:::i;:::-;;;19138:78;;;19226:19;19258:6;19248:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19248:17:0;;19226:39;;19276:154;19283:10;;19276:154;;19310:11;19320:1;19310:11;;:::i;:::-;;-1:-1:-1;19379:10:0;19387:2;19379:5;:10;:::i;:::-;19366:24;;:2;:24;:::i;:::-;19353:39;;19336:6;19343;19336:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;19336:56:0;;;;;;;;-1:-1:-1;19407:11:0;19416:2;19407:11;;:::i;:::-;;;19276:154;;38103:589;-1:-1:-1;;;;;38309:18:0;;38305:187;;38344:40;38376:7;39519:10;:17;;39492:24;;;;:15;:24;;;;;:44;;;39547:24;;;;;;;;;;;;39415:164;38344:40;38305:187;;;38414:2;-1:-1:-1;;;;;38406:10:0;:4;-1:-1:-1;;;;;38406:10:0;;38402:90;;38433:47;38466:4;38472:7;38433:32;:47::i;:::-;-1:-1:-1;;;;;38506:16:0;;38502:183;;38539:45;38576:7;38539:36;:45::i;38502:183::-;38612:4;-1:-1:-1;;;;;38606:10:0;:2;-1:-1:-1;;;;;38606:10:0;;38602:83;;38633:40;38661:2;38665:7;38633:27;:40::i;33223:799::-;33378:4;-1:-1:-1;;;;;33399:13:0;;11508:20;11556:8;33395:620;;33435:72;;-1:-1:-1;;;33435:72:0;;-1:-1:-1;;;;;33435:36:0;;;;;:72;;1227:10;;33486:4;;33492:7;;33501:5;;33435:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33435:72:0;;;;;;;;-1:-1:-1;;33435:72:0;;;;;;;;;;;;:::i;:::-;;;33431:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33677:13:0;;33673:272;;33720:60;;-1:-1:-1;;;33720:60:0;;;;;;;:::i;33673:272::-;33895:6;33889:13;33880:6;33876:2;33872:15;33865:38;33431:529;-1:-1:-1;;;;;;33558:51:0;-1:-1:-1;;;33558:51:0;;-1:-1:-1;33551:58:0;;33395:620;-1:-1:-1;33999:4:0;33223:799;;;;;;:::o;40206:988::-;40472:22;40522:1;40497:22;40514:4;40497:16;:22::i;:::-;:26;;;;:::i;:::-;40534:18;40555:26;;;:17;:26;;;;;;40472:51;;-1:-1:-1;40688:28:0;;;40684:328;;-1:-1:-1;;;;;40755:18:0;;40733:19;40755:18;;;:12;:18;;;;;;;;:34;;;;;;;;;40806:30;;;;;;:44;;;40923:30;;:17;:30;;;;;:43;;;40684:328;-1:-1:-1;41108:26:0;;;;:17;:26;;;;;;;;41101:33;;;-1:-1:-1;;;;;41152:18:0;;;;;:12;:18;;;;;:34;;;;;;;41145:41;40206:988::o;41489:1079::-;41767:10;:17;41742:22;;41767:21;;41787:1;;41767:21;:::i;:::-;41799:18;41820:24;;;:15;:24;;;;;;42193:10;:26;;41742:46;;-1:-1:-1;41820:24:0;;41742:46;;42193:26;;;;;;:::i;:::-;;;;;;;;;42171:48;;42257:11;42232:10;42243;42232:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;42337:28;;;:15;:28;;;;;;;:41;;;42509:24;;;;;42502:31;42544:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;41560:1008;;;41489:1079;:::o;38993:221::-;39078:14;39095:20;39112:2;39095:16;:20::i;:::-;-1:-1:-1;;;;;39126:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;39171:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;38993:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::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;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:127::-;2749:10;2744:3;2740:20;2737:1;2730:31;2780:4;2777:1;2770:15;2804:4;2801:1;2794:15;2820:632;2885:5;2915:18;2956:2;2948:6;2945:14;2942:40;;;2962:18;;:::i;:::-;3037:2;3031:9;3005:2;3091:15;;-1:-1:-1;;3087:24:1;;;3113:2;3083:33;3079:42;3067:55;;;3137:18;;;3157:22;;;3134:46;3131:72;;;3183:18;;:::i;:::-;3223:10;3219:2;3212:22;3252:6;3243:15;;3282:6;3274;3267:22;3322:3;3313:6;3308:3;3304:16;3301:25;3298:45;;;3339:1;3336;3329:12;3298:45;3389:6;3384:3;3377:4;3369:6;3365:17;3352:44;3444:1;3437:4;3428:6;3420;3416:19;3412:30;3405:41;;;;2820:632;;;;;:::o;3457:451::-;3526:6;3579:2;3567:9;3558:7;3554:23;3550:32;3547:52;;;3595:1;3592;3585:12;3547:52;3635:9;3622:23;3668:18;3660:6;3657:30;3654:50;;;3700:1;3697;3690:12;3654:50;3723:22;;3776:4;3768:13;;3764:27;-1:-1:-1;3754:55:1;;3805:1;3802;3795:12;3754:55;3828:74;3894:7;3889:2;3876:16;3871:2;3867;3863:11;3828:74;:::i;3913:160::-;3978:20;;4034:13;;4027:21;4017:32;;4007:60;;4063:1;4060;4053:12;4078:180;4134:6;4187:2;4175:9;4166:7;4162:23;4158:32;4155:52;;;4203:1;4200;4193:12;4155:52;4226:26;4242:9;4226:26;:::i;4263:186::-;4322:6;4375:2;4363:9;4354:7;4350:23;4346:32;4343:52;;;4391:1;4388;4381:12;4343:52;4414:29;4433:9;4414:29;:::i;4454:632::-;4625:2;4677:21;;;4747:13;;4650:18;;;4769:22;;;4596:4;;4625:2;4848:15;;;;4822:2;4807:18;;;4596:4;4891:169;4905:6;4902:1;4899:13;4891:169;;;4966:13;;4954:26;;5035:15;;;;5000:12;;;;4927:1;4920:9;4891:169;;;-1:-1:-1;5077:3:1;;4454:632;-1:-1:-1;;;;;;4454:632:1:o;5091:254::-;5156:6;5164;5217:2;5205:9;5196:7;5192:23;5188:32;5185:52;;;5233:1;5230;5223:12;5185:52;5256:29;5275:9;5256:29;:::i;:::-;5246:39;;5304:35;5335:2;5324:9;5320:18;5304:35;:::i;:::-;5294:45;;5091:254;;;;;:::o;5350:667::-;5445:6;5453;5461;5469;5522:3;5510:9;5501:7;5497:23;5493:33;5490:53;;;5539:1;5536;5529:12;5490:53;5562:29;5581:9;5562:29;:::i;:::-;5552:39;;5610:38;5644:2;5633:9;5629:18;5610:38;:::i;:::-;5600:48;;5695:2;5684:9;5680:18;5667:32;5657:42;;5750:2;5739:9;5735:18;5722:32;5777:18;5769:6;5766:30;5763:50;;;5809:1;5806;5799:12;5763:50;5832:22;;5885:4;5877:13;;5873:27;-1:-1:-1;5863:55:1;;5914:1;5911;5904:12;5863:55;5937:74;6003:7;5998:2;5985:16;5980:2;5976;5972:11;5937:74;:::i;:::-;5927:84;;;5350:667;;;;;;;:::o;6022:260::-;6090:6;6098;6151:2;6139:9;6130:7;6126:23;6122:32;6119:52;;;6167:1;6164;6157:12;6119:52;6190:29;6209:9;6190:29;:::i;:::-;6180:39;;6238:38;6272:2;6261:9;6257:18;6238:38;:::i;6287:380::-;6366:1;6362:12;;;;6409;;;6430:61;;6484:4;6476:6;6472:17;6462:27;;6430:61;6537:2;6529:6;6526:14;6506:18;6503:38;6500:161;;;6583:10;6578:3;6574:20;6571:1;6564:31;6618:4;6615:1;6608:15;6646:4;6643:1;6636:15;6500:161;;6287:380;;;:::o;7912:413::-;8114:2;8096:21;;;8153:2;8133:18;;;8126:30;8192:34;8187:2;8172:18;;8165:62;-1:-1:-1;;;8258:2:1;8243:18;;8236:47;8315:3;8300:19;;7912:413::o;9155:127::-;9216:10;9211:3;9207:20;9204:1;9197:31;9247:4;9244:1;9237:15;9271:4;9268:1;9261:15;9287:356;9489:2;9471:21;;;9508:18;;;9501:30;9567:34;9562:2;9547:18;;9540:62;9634:2;9619:18;;9287:356::o;10469:127::-;10530:10;10525:3;10521:20;10518:1;10511:31;10561:4;10558:1;10551:15;10585:4;10582:1;10575:15;10601:135;10640:3;-1:-1:-1;;10661:17:1;;10658:43;;;10681:18;;:::i;:::-;-1:-1:-1;10728:1:1;10717:13;;10601:135::o;11440:128::-;11480:3;11511:1;11507:6;11504:1;11501:13;11498:39;;;11517:18;;:::i;:::-;-1:-1:-1;11553:9:1;;11440:128::o;11910:168::-;11950:7;12016:1;12012;12008:6;12004:14;12001:1;11998:21;11993:1;11986:9;11979:17;11975:45;11972:71;;;12023:18;;:::i;:::-;-1:-1:-1;12063:9:1;;11910:168::o;13509:637::-;13789:3;13827:6;13821:13;13843:53;13889:6;13884:3;13877:4;13869:6;13865:17;13843:53;:::i;:::-;13959:13;;13918:16;;;;13981:57;13959:13;13918:16;14015:4;14003:17;;13981:57;:::i;:::-;-1:-1:-1;;;14060:20:1;;14089:22;;;14138:1;14127:13;;13509:637;-1:-1:-1;;;;13509:637:1:o;15786:125::-;15826:4;15854:1;15851;15848:8;15845:34;;;15859:18;;:::i;:::-;-1:-1:-1;15896:9:1;;15786:125::o;16634:414::-;16836:2;16818:21;;;16875:2;16855:18;;;16848:30;16914:34;16909:2;16894:18;;16887:62;-1:-1:-1;;;16980:2:1;16965:18;;16958:48;17038:3;17023:19;;16634:414::o;17053:127::-;17114:10;17109:3;17105:20;17102:1;17095:31;17145:4;17142:1;17135:15;17169:4;17166:1;17159:15;17185:120;17225:1;17251;17241:35;;17256:18;;:::i;:::-;-1:-1:-1;17290:9:1;;17185:120::o;17310:112::-;17342:1;17368;17358:35;;17373:18;;:::i;:::-;-1:-1:-1;17407:9:1;;17310:112::o;17427:489::-;-1:-1:-1;;;;;17696:15:1;;;17678:34;;17748:15;;17743:2;17728:18;;17721:43;17795:2;17780:18;;17773:34;;;17843:3;17838:2;17823:18;;17816:31;;;17621:4;;17864:46;;17890:19;;17882:6;17864:46;:::i;:::-;17856:54;17427:489;-1:-1:-1;;;;;;17427:489:1:o;17921:249::-;17990:6;18043:2;18031:9;18022:7;18018:23;18014:32;18011:52;;;18059:1;18056;18049:12;18011:52;18091:9;18085:16;18110:30;18134:5;18110:30;:::i;18175:127::-;18236:10;18231:3;18227:20;18224:1;18217:31;18267:4;18264:1;18257:15;18291:4;18288:1;18281:15

Swarm Source

ipfs://976337e72d92b2539042b07caca22a7e1702569791b957f8bc936b5193e62540
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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