ETH Price: $3,120.51 (+1.62%)
Gas: 5 Gwei

Token

Kevin Rocks (KVRKS)
 

Overview

Max Total Supply

1,069 KVRKS

Holders

59

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 KVRKS
0xbb44530e21b3A5Aaf0c86BA10D605e1396bADD88
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
KevinRocks

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-10
*/

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**

 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(
        address indexed from,
        address indexed to,
        uint256 indexed tokenId
    );

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(
        address indexed owner,
        address indexed approved,
        uint256 indexed tokenId
    );

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(
        address indexed owner,
        address indexed operator,
        bool approved
    );

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId)
        external
        view
        returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator)
        external
        view
        returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(
            address(this).balance >= amount,
            "Address: insufficient balance"
        );

        (bool success, ) = recipient.call{value: amount}("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return
            functionCallWithValue(
                target,
                data,
                value,
                "Address: low-level call with value failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(
            address(this).balance >= value,
            "Address: insufficient balance for call"
        );
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(
            data
        );
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data)
        internal
        view
        returns (bytes memory)
    {
        return
            functionStaticCall(
                target,
                data,
                "Address: low-level static call failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return
            functionDelegateCall(
                target,
                data,
                "Address: low-level delegate call failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length)
        internal
        pure
        returns (string memory)
    {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

  // Mapping from token ID to ownership details
  // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
  mapping(uint256 => TokenOwnership) private _ownerships;

  // Mapping owner address to address data
  mapping(address => AddressData) private _addressData;

  // 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
   * `maxBatchSize` refers to how much a minter can mint at a time.
   * `collectionSize_` refers to how many tokens are in the collection.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) {
    require(
      collectionSize_ > 0,
      "ERC721A: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    collectionSize = collectionSize_;
  }

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

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

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

  /**
   * @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 ||
      interfaceId == type(IERC721Enumerable).interfaceId ||
      super.supportsInterface(interfaceId);
  }

  /**
   * @dev See {IERC721-balanceOf}.
   */
  function balanceOf(address owner) public view override returns (uint256) {
    require(owner != address(0), "ERC721A: balance query for the zero address");
    return uint256(_addressData[owner].balance);
  }

  function _numberMinted(address owner) internal view returns (uint256) {
    require(
      owner != address(0),
      "ERC721A: number minted query for the zero address"
    );
    return uint256(_addressData[owner].numberMinted);
  }

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

    for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
      TokenOwnership memory ownership = _ownerships[curr];
      if (ownership.addr != address(0)) {
        return ownership;
      }
    }

    revert("ERC721A: unable to determine the owner of token");
  }

  /**
   * @dev See {IERC721-ownerOf}.
   */
  function ownerOf(uint256 tokenId) public view override returns (address) {
    return ownershipOf(tokenId).addr;
  }

  /**
   * @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(), ".json"))
        : "";
  }

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

  /**
   * @dev See {IERC721-setApprovalForAll}.
   */
  function setApprovalForAll(address operator, bool approved) public override {
    require(operator != _msgSender(), "ERC721A: 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 override {
    _transfer(from, to, tokenId);
  }

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId
  ) public override {
    safeTransferFrom(from, to, tokenId, "");
  }

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: 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`),
   */
  function _exists(uint256 tokenId) internal view returns (bool) {
    return tokenId < currentIndex;
  }

  function _safeMint(address to, uint256 quantity) internal {
    _safeMint(to, quantity, "");
  }

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - there must be `quantity` tokens remaining unminted in the total collection.
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
    require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

    _beforeTokenTransfers(address(0), to, startTokenId, quantity);

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + uint128(quantity)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

    for (uint256 i = 0; i < quantity; i++) {
      emit Transfer(address(0), to, updatedIndex);
      require(
        _checkOnERC721Received(address(0), to, updatedIndex, _data),
        "ERC721A: transfer to non ERC721Receiver implementer"
      );
      updatedIndex++;
    }

    currentIndex = updatedIndex;
    _afterTokenTransfers(address(0), to, startTokenId, quantity);
  }

  /**
   * @dev Transfers `tokenId` from `from` to `to`.
   *
   * 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
  ) private {
    TokenOwnership memory prevOwnership = ownershipOf(tokenId);

    bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
      getApproved(tokenId) == _msgSender() ||
      isApprovedForAll(prevOwnership.addr, _msgSender()));

    require(
      isApprovedOrOwner,
      "ERC721A: transfer caller is not owner nor approved"
    );

    require(
      prevOwnership.addr == from,
      "ERC721A: transfer from incorrect owner"
    );
    require(to != address(0), "ERC721A: transfer to the zero address");

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

    // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
    // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
    uint256 nextTokenId = tokenId + 1;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

    emit Transfer(from, to, tokenId);
    _afterTokenTransfers(from, to, tokenId, 1);
  }

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

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > collectionSize - 1) {
      endIndex = collectionSize - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

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

  /**
   * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * 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`.
   */
  function _beforeTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}

  /**
   * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
   * minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - when `from` and `to` are both non-zero.
   * - `from` and `to` are never both zero.
   */
  function _afterTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}
}

// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Whoa there buddy you are not the owner... i think");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(
            newOwner != address(0),
            "Ownable: new owner is the zero address"
        );
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

pragma solidity ^0.8.12;
 
/**
* RarityGarden - a gas-saving mint-on-receive experiment.
*
* A first-of-a-kind smart contract for cheap minting.
* No presale, anyone can mint for free (+ gas).
*
* Max. supply 10k, max. 10 mints per tx.
*
* Important Details (How to mint):
*
* With the combined forces of the mint-on-receive principle and Azuki's EIP721A proposal, 
* minting - especially batch minting - on Mainnet has never been cheaper.
*
* This collection demonstrates additional gas savings of 20-35% on top of the known EIP721A savings.
*
* Here is how it works:
*
* Instead of calling a mint function, simply send _zero_ ETH for minting 1 NFT _or_ a tiny amount between 0.000000000000000002 ETH and 0.0000000000000000015 ETH
* to the collection address, representing the desired minting amounts (=15 max. per tx).
*
* Once the tx completed, the senders will find their NFTs in their wallets.
*
* By leaving out the mint function - and with it function parameters - the minting process will save substantial amounts of gas.
*
* Additionally, this collection derives from EIP721A and provides quasi-constant minting costs.
*
* This collection is fully erc721 compliant.
*
* Once this collection is minted out, Rarity Garden will provide unique art for collectors with interesting traits, rarities and potential use-cases.
*
* If this experiment is successful, Rarity Garden will explore further on how to allow actual 1st market/presale-collections and provide further technical insight.
*
* Mint on: https://rarity.garden/
* Discord: https://discord.gg/Ur8XGaurSd
* Twitter: https://t.me/raritygarden
*/
contract KevinRocks is ERC721A
{

    using Strings for uint256;

    uint256 public _total_max = 1069;
    address public owner;
    string public _baseTokenUri;

    constructor(
        string memory name,
        string memory symbol,
        string memory baseTokenURI,
        uint256 max_batch,
        uint256 collection_size
    ) ERC721A(name, symbol, max_batch, collection_size) {

        _baseTokenUri = baseTokenURI;
        owner = _msgSender();
        _total_max = collection_size;
    }

    receive() external payable {

        uint256 amount = msg.value == 0 ? 1 : msg.value;

        require(totalSupply() + amount <= _total_max, "receive(): max. supply reached.");

        _safeMint(_msgSender(), amount, "");
    }

    function _baseURI() internal view virtual override returns (string memory) {

        return _baseTokenUri;
    }
    
    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, ".json")) : "";
    }
    
    function setBaseUri(string calldata baseTokenURI) public virtual {

        require(owner == _msgSender(), "setBaseUri: must be owner to set base uri.");

        _baseTokenUri = baseTokenURI;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseTokenURI","type":"string"},{"internalType":"uint256","name":"max_batch","type":"uint256"},{"internalType":"uint256","name":"collection_size","type":"uint256"}],"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_baseTokenUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_total_max","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"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":"baseTokenURI","type":"string"}],"name":"setBaseUri","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":[],"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"},{"stateMutability":"payable","type":"receive"}]

60c060405260008055600060075561042d6008553480156200002057600080fd5b5060405162001ffd38038062001ffd8339810160408190526200004391620002f6565b8484838360008111620000b45760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001165760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b6064820152608401620000ab565b83516200012b90600190602087019062000183565b5082516200014190600290602086019062000183565b5060a091909152608052505082516200016290600a90602086019062000183565b50600980546001600160a01b0319163317905560085550620003d792505050565b82805462000191906200039a565b90600052602060002090601f016020900481019282620001b5576000855562000200565b82601f10620001d057805160ff191683800117855562000200565b8280016001018555821562000200579182015b8281111562000200578251825591602001919060010190620001e3565b506200020e92915062000212565b5090565b5b808211156200020e576000815560010162000213565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200025157600080fd5b81516001600160401b03808211156200026e576200026e62000229565b604051601f8301601f19908116603f0116810190828211818310171562000299576200029962000229565b81604052838152602092508683858801011115620002b657600080fd5b600091505b83821015620002da5785820183015181830184015290820190620002bb565b83821115620002ec5760008385830101525b9695505050505050565b600080600080600060a086880312156200030f57600080fd5b85516001600160401b03808211156200032757600080fd5b6200033589838a016200023f565b965060208801519150808211156200034c57600080fd5b6200035a89838a016200023f565b955060408801519150808211156200037157600080fd5b5062000380888289016200023f565b606088015160809098015196999598509695949350505050565b600181811c90821680620003af57607f821691505b60208210811415620003d157634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051611bf5620004086000396000818161055e015281816114f3015261151d015260005050611bf56000f3fe60806040526004361061012e5760003560e01c80635ded1055116100ab578063a0bcfc7f1161006f578063a0bcfc7f146103c2578063a22cb465146103e2578063b88d4fde14610402578063c87b56dd14610422578063d7224ba014610442578063e985e9c51461045857600080fd5b80635ded1055146103375780636352211e1461034d57806370a082311461036d5780638da5cb5b1461038d57806395d89b41146103ad57600080fd5b806323b872dd116100f257806323b872dd146102a25780632f745c59146102c257806342842e0e146102e257806348200604146103025780634f6ccce71461031757600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229578063095ea7b31461026157806318160ddd1461028357600080fd5b366101cd57600034156101415734610144565b60015b90506008548161015360005490565b61015d91906116d0565b11156101b05760405162461bcd60e51b815260206004820152601f60248201527f7265636569766528293a206d61782e20737570706c7920726561636865642e0060448201526064015b60405180910390fd5b6101ca3382604051806020016040528060008152506104a1565b50005b600080fd5b3480156101de57600080fd5b506101f26101ed366004611701565b610780565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6107ed565b6040516101fe9190611776565b34801561023557600080fd5b50610249610244366004611789565b61087f565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c3660046117be565b61090a565b005b34801561028f57600080fd5b506000545b6040519081526020016101fe565b3480156102ae57600080fd5b506102816102bd3660046117e8565b610a22565b3480156102ce57600080fd5b506102946102dd3660046117be565b610a2d565b3480156102ee57600080fd5b506102816102fd3660046117e8565b610b9b565b34801561030e57600080fd5b5061021c610bb6565b34801561032357600080fd5b50610294610332366004611789565b610c44565b34801561034357600080fd5b5061029460085481565b34801561035957600080fd5b50610249610368366004611789565b610ca6565b34801561037957600080fd5b50610294610388366004611824565b610cb8565b34801561039957600080fd5b50600954610249906001600160a01b031681565b3480156103b957600080fd5b5061021c610d49565b3480156103ce57600080fd5b506102816103dd36600461183f565b610d58565b3480156103ee57600080fd5b506102816103fd3660046118b1565b610dd1565b34801561040e57600080fd5b5061028161041d366004611903565b610e96565b34801561042e57600080fd5b5061021c61043d366004611789565b610ecf565b34801561044e57600080fd5b5061029460075481565b34801561046457600080fd5b506101f26104733660046119df565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6000546001600160a01b0384166105045760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016101a7565b61050f816000541190565b1561055c5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016101a7565b7f00000000000000000000000000000000000000000000000000000000000000008311156105d75760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016101a7565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190610633908790611a12565b6001600160801b031681526020018583602001516106519190611a12565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156107715760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46107356000888488610f92565b6107515760405162461bcd60e51b81526004016101a790611a3d565b8161075b81611a90565b925050808061076990611a90565b9150506106e8565b5060008190555b505050505050565b60006001600160e01b031982166380ac58cd60e01b14806107b157506001600160e01b03198216635b5e139f60e01b145b806107cc57506001600160e01b0319821663780e9d6360e01b145b806107e757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546107fc90611aab565b80601f016020809104026020016040519081016040528092919081815260200182805461082890611aab565b80156108755780601f1061084a57610100808354040283529160200191610875565b820191906000526020600020905b81548152906001019060200180831161085857829003601f168201915b5050505050905090565b600061088c826000541190565b6108ee5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084016101a7565b506000908152600560205260409020546001600160a01b031690565b600061091582610ca6565b9050806001600160a01b0316836001600160a01b031614156109845760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016101a7565b336001600160a01b03821614806109a057506109a08133610473565b610a125760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016101a7565b610a1d838383611091565b505050565b610a1d8383836110ed565b6000610a3883610cb8565b8210610a915760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016101a7565b600080549080805b83811015610b3b576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610aec57805192505b876001600160a01b0316836001600160a01b03161415610b285786841415610b1a575093506107e792505050565b83610b2481611a90565b9450505b5080610b3381611a90565b915050610a99565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016101a7565b610a1d83838360405180602001604052806000815250610e96565b600a8054610bc390611aab565b80601f0160208091040260200160405190810160405280929190818152602001828054610bef90611aab565b8015610c3c5780601f10610c1157610100808354040283529160200191610c3c565b820191906000526020600020905b815481529060010190602001808311610c1f57829003601f168201915b505050505081565b600080548210610ca25760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016101a7565b5090565b6000610cb182611471565b5192915050565b60006001600160a01b038216610d245760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016101a7565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6060600280546107fc90611aab565b6009546001600160a01b03163314610dc55760405162461bcd60e51b815260206004820152602a60248201527f736574426173655572693a206d757374206265206f776e657220746f20736574604482015269103130b9b2903ab9349760b11b60648201526084016101a7565b610a1d600a838361162a565b6001600160a01b038216331415610e2a5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016101a7565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610ea18484846110ed565b610ead84848484610f92565b610ec95760405162461bcd60e51b81526004016101a790611a3d565b50505050565b6060610edc826000541190565b610f405760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016101a7565b6000610f4a61161b565b90506000815111610f6a5760405180602001604052806000815250610f8b565b80604051602001610f7b9190611ae6565b6040516020818303038152906040525b9392505050565b60006001600160a01b0384163b1561108557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290610fd6903390899088908890600401611b0f565b6020604051808303816000875af1925050508015611011575060408051601f3d908101601f1916820190925261100e91810190611b4c565b60015b61106b573d80801561103f576040519150601f19603f3d011682016040523d82523d6000602084013e611044565b606091505b5080516110635760405162461bcd60e51b81526004016101a790611a3d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611089565b5060015b949350505050565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006110f882611471565b80519091506000906001600160a01b0316336001600160a01b0316148061112f5750336111248461087f565b6001600160a01b0316145b80611141575081516111419033610473565b9050806111ab5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016101a7565b846001600160a01b031682600001516001600160a01b03161461121f5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016101a7565b6001600160a01b0384166112835760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016101a7565b6112936000848460000151611091565b6001600160a01b03851660009081526004602052604081208054600192906112c59084906001600160801b0316611b69565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600460205260408120805460019450909261131191859116611a12565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556113998460016116d0565b6000818152600360205260409020549091506001600160a01b031661142b576113c3816000541190565b1561142b5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610778565b6040805180820190915260008082526020820152611490826000541190565b6114ef5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016101a7565b60007f00000000000000000000000000000000000000000000000000000000000000008310611550576115427f000000000000000000000000000000000000000000000000000000000000000084611b91565b61154d9060016116d0565b90505b825b8181106115ba576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156115a757949350505050565b50806115b281611ba8565b915050611552565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016101a7565b6060600a80546107fc90611aab565b82805461163690611aab565b90600052602060002090601f016020900481019282611658576000855561169e565b82601f106116715782800160ff1982351617855561169e565b8280016001018555821561169e579182015b8281111561169e578235825591602001919060010190611683565b50610ca29291505b80821115610ca257600081556001016116a6565b634e487b7160e01b600052601160045260246000fd5b600082198211156116e3576116e36116ba565b500190565b6001600160e01b0319811681146116fe57600080fd5b50565b60006020828403121561171357600080fd5b8135610f8b816116e8565b60005b83811015611739578181015183820152602001611721565b83811115610ec95750506000910152565b6000815180845261176281602086016020860161171e565b601f01601f19169290920160200192915050565b602081526000610f8b602083018461174a565b60006020828403121561179b57600080fd5b5035919050565b80356001600160a01b03811681146117b957600080fd5b919050565b600080604083850312156117d157600080fd5b6117da836117a2565b946020939093013593505050565b6000806000606084860312156117fd57600080fd5b611806846117a2565b9250611814602085016117a2565b9150604084013590509250925092565b60006020828403121561183657600080fd5b610f8b826117a2565b6000806020838503121561185257600080fd5b823567ffffffffffffffff8082111561186a57600080fd5b818501915085601f83011261187e57600080fd5b81358181111561188d57600080fd5b86602082850101111561189f57600080fd5b60209290920196919550909350505050565b600080604083850312156118c457600080fd5b6118cd836117a2565b9150602083013580151581146118e257600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561191957600080fd5b611922856117a2565b9350611930602086016117a2565b925060408501359150606085013567ffffffffffffffff8082111561195457600080fd5b818701915087601f83011261196857600080fd5b81358181111561197a5761197a6118ed565b604051601f8201601f19908116603f011681019083821181831017156119a2576119a26118ed565b816040528281528a60208487010111156119bb57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156119f257600080fd5b6119fb836117a2565b9150611a09602084016117a2565b90509250929050565b60006001600160801b03808316818516808303821115611a3457611a346116ba565b01949350505050565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6000600019821415611aa457611aa46116ba565b5060010190565b600181811c90821680611abf57607f821691505b60208210811415611ae057634e487b7160e01b600052602260045260246000fd5b50919050565b60008251611af881846020870161171e565b64173539b7b760d91b920191825250600501919050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b429083018461174a565b9695505050505050565b600060208284031215611b5e57600080fd5b8151610f8b816116e8565b60006001600160801b0383811690831681811015611b8957611b896116ba565b039392505050565b600082821015611ba357611ba36116ba565b500390565b600081611bb757611bb76116ba565b50600019019056fea26469706673582212205213e88709668400f33c44369275bce13ff55e1e578dede6fc6864775e80c8c064736f6c634300080c003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000042d000000000000000000000000000000000000000000000000000000000000000b4b6576696e20526f636b7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054b56524b530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040697066733a2f2f516d596a39397735776442417675385336364b6333753474393756636a77394272483448355a696e616e634b51322f4b6576696e526f636b73

Deployed Bytecode

0x60806040526004361061012e5760003560e01c80635ded1055116100ab578063a0bcfc7f1161006f578063a0bcfc7f146103c2578063a22cb465146103e2578063b88d4fde14610402578063c87b56dd14610422578063d7224ba014610442578063e985e9c51461045857600080fd5b80635ded1055146103375780636352211e1461034d57806370a082311461036d5780638da5cb5b1461038d57806395d89b41146103ad57600080fd5b806323b872dd116100f257806323b872dd146102a25780632f745c59146102c257806342842e0e146102e257806348200604146103025780634f6ccce71461031757600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229578063095ea7b31461026157806318160ddd1461028357600080fd5b366101cd57600034156101415734610144565b60015b90506008548161015360005490565b61015d91906116d0565b11156101b05760405162461bcd60e51b815260206004820152601f60248201527f7265636569766528293a206d61782e20737570706c7920726561636865642e0060448201526064015b60405180910390fd5b6101ca3382604051806020016040528060008152506104a1565b50005b600080fd5b3480156101de57600080fd5b506101f26101ed366004611701565b610780565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6107ed565b6040516101fe9190611776565b34801561023557600080fd5b50610249610244366004611789565b61087f565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c3660046117be565b61090a565b005b34801561028f57600080fd5b506000545b6040519081526020016101fe565b3480156102ae57600080fd5b506102816102bd3660046117e8565b610a22565b3480156102ce57600080fd5b506102946102dd3660046117be565b610a2d565b3480156102ee57600080fd5b506102816102fd3660046117e8565b610b9b565b34801561030e57600080fd5b5061021c610bb6565b34801561032357600080fd5b50610294610332366004611789565b610c44565b34801561034357600080fd5b5061029460085481565b34801561035957600080fd5b50610249610368366004611789565b610ca6565b34801561037957600080fd5b50610294610388366004611824565b610cb8565b34801561039957600080fd5b50600954610249906001600160a01b031681565b3480156103b957600080fd5b5061021c610d49565b3480156103ce57600080fd5b506102816103dd36600461183f565b610d58565b3480156103ee57600080fd5b506102816103fd3660046118b1565b610dd1565b34801561040e57600080fd5b5061028161041d366004611903565b610e96565b34801561042e57600080fd5b5061021c61043d366004611789565b610ecf565b34801561044e57600080fd5b5061029460075481565b34801561046457600080fd5b506101f26104733660046119df565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6000546001600160a01b0384166105045760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016101a7565b61050f816000541190565b1561055c5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016101a7565b7f000000000000000000000000000000000000000000000000000000000000000a8311156105d75760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016101a7565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190610633908790611a12565b6001600160801b031681526020018583602001516106519190611a12565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156107715760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46107356000888488610f92565b6107515760405162461bcd60e51b81526004016101a790611a3d565b8161075b81611a90565b925050808061076990611a90565b9150506106e8565b5060008190555b505050505050565b60006001600160e01b031982166380ac58cd60e01b14806107b157506001600160e01b03198216635b5e139f60e01b145b806107cc57506001600160e01b0319821663780e9d6360e01b145b806107e757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546107fc90611aab565b80601f016020809104026020016040519081016040528092919081815260200182805461082890611aab565b80156108755780601f1061084a57610100808354040283529160200191610875565b820191906000526020600020905b81548152906001019060200180831161085857829003601f168201915b5050505050905090565b600061088c826000541190565b6108ee5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084016101a7565b506000908152600560205260409020546001600160a01b031690565b600061091582610ca6565b9050806001600160a01b0316836001600160a01b031614156109845760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016101a7565b336001600160a01b03821614806109a057506109a08133610473565b610a125760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016101a7565b610a1d838383611091565b505050565b610a1d8383836110ed565b6000610a3883610cb8565b8210610a915760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016101a7565b600080549080805b83811015610b3b576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610aec57805192505b876001600160a01b0316836001600160a01b03161415610b285786841415610b1a575093506107e792505050565b83610b2481611a90565b9450505b5080610b3381611a90565b915050610a99565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016101a7565b610a1d83838360405180602001604052806000815250610e96565b600a8054610bc390611aab565b80601f0160208091040260200160405190810160405280929190818152602001828054610bef90611aab565b8015610c3c5780601f10610c1157610100808354040283529160200191610c3c565b820191906000526020600020905b815481529060010190602001808311610c1f57829003601f168201915b505050505081565b600080548210610ca25760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016101a7565b5090565b6000610cb182611471565b5192915050565b60006001600160a01b038216610d245760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016101a7565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6060600280546107fc90611aab565b6009546001600160a01b03163314610dc55760405162461bcd60e51b815260206004820152602a60248201527f736574426173655572693a206d757374206265206f776e657220746f20736574604482015269103130b9b2903ab9349760b11b60648201526084016101a7565b610a1d600a838361162a565b6001600160a01b038216331415610e2a5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016101a7565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610ea18484846110ed565b610ead84848484610f92565b610ec95760405162461bcd60e51b81526004016101a790611a3d565b50505050565b6060610edc826000541190565b610f405760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016101a7565b6000610f4a61161b565b90506000815111610f6a5760405180602001604052806000815250610f8b565b80604051602001610f7b9190611ae6565b6040516020818303038152906040525b9392505050565b60006001600160a01b0384163b1561108557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290610fd6903390899088908890600401611b0f565b6020604051808303816000875af1925050508015611011575060408051601f3d908101601f1916820190925261100e91810190611b4c565b60015b61106b573d80801561103f576040519150601f19603f3d011682016040523d82523d6000602084013e611044565b606091505b5080516110635760405162461bcd60e51b81526004016101a790611a3d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611089565b5060015b949350505050565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006110f882611471565b80519091506000906001600160a01b0316336001600160a01b0316148061112f5750336111248461087f565b6001600160a01b0316145b80611141575081516111419033610473565b9050806111ab5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016101a7565b846001600160a01b031682600001516001600160a01b03161461121f5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016101a7565b6001600160a01b0384166112835760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016101a7565b6112936000848460000151611091565b6001600160a01b03851660009081526004602052604081208054600192906112c59084906001600160801b0316611b69565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600460205260408120805460019450909261131191859116611a12565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556113998460016116d0565b6000818152600360205260409020549091506001600160a01b031661142b576113c3816000541190565b1561142b5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610778565b6040805180820190915260008082526020820152611490826000541190565b6114ef5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016101a7565b60007f000000000000000000000000000000000000000000000000000000000000000a8310611550576115427f000000000000000000000000000000000000000000000000000000000000000a84611b91565b61154d9060016116d0565b90505b825b8181106115ba576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156115a757949350505050565b50806115b281611ba8565b915050611552565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016101a7565b6060600a80546107fc90611aab565b82805461163690611aab565b90600052602060002090601f016020900481019282611658576000855561169e565b82601f106116715782800160ff1982351617855561169e565b8280016001018555821561169e579182015b8281111561169e578235825591602001919060010190611683565b50610ca29291505b80821115610ca257600081556001016116a6565b634e487b7160e01b600052601160045260246000fd5b600082198211156116e3576116e36116ba565b500190565b6001600160e01b0319811681146116fe57600080fd5b50565b60006020828403121561171357600080fd5b8135610f8b816116e8565b60005b83811015611739578181015183820152602001611721565b83811115610ec95750506000910152565b6000815180845261176281602086016020860161171e565b601f01601f19169290920160200192915050565b602081526000610f8b602083018461174a565b60006020828403121561179b57600080fd5b5035919050565b80356001600160a01b03811681146117b957600080fd5b919050565b600080604083850312156117d157600080fd5b6117da836117a2565b946020939093013593505050565b6000806000606084860312156117fd57600080fd5b611806846117a2565b9250611814602085016117a2565b9150604084013590509250925092565b60006020828403121561183657600080fd5b610f8b826117a2565b6000806020838503121561185257600080fd5b823567ffffffffffffffff8082111561186a57600080fd5b818501915085601f83011261187e57600080fd5b81358181111561188d57600080fd5b86602082850101111561189f57600080fd5b60209290920196919550909350505050565b600080604083850312156118c457600080fd5b6118cd836117a2565b9150602083013580151581146118e257600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561191957600080fd5b611922856117a2565b9350611930602086016117a2565b925060408501359150606085013567ffffffffffffffff8082111561195457600080fd5b818701915087601f83011261196857600080fd5b81358181111561197a5761197a6118ed565b604051601f8201601f19908116603f011681019083821181831017156119a2576119a26118ed565b816040528281528a60208487010111156119bb57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156119f257600080fd5b6119fb836117a2565b9150611a09602084016117a2565b90509250929050565b60006001600160801b03808316818516808303821115611a3457611a346116ba565b01949350505050565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6000600019821415611aa457611aa46116ba565b5060010190565b600181811c90821680611abf57607f821691505b60208210811415611ae057634e487b7160e01b600052602260045260246000fd5b50919050565b60008251611af881846020870161171e565b64173539b7b760d91b920191825250600501919050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611b429083018461174a565b9695505050505050565b600060208284031215611b5e57600080fd5b8151610f8b816116e8565b60006001600160801b0383811690831681811015611b8957611b896116ba565b039392505050565b600082821015611ba357611ba36116ba565b500390565b600081611bb757611bb76116ba565b50600019019056fea26469706673582212205213e88709668400f33c44369275bce13ff55e1e578dede6fc6864775e80c8c064736f6c634300080c0033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000042d000000000000000000000000000000000000000000000000000000000000000b4b6576696e20526f636b7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054b56524b530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000040697066733a2f2f516d596a39397735776442417675385336364b6333753474393756636a77394272483448355a696e616e634b51322f4b6576696e526f636b73

-----Decoded View---------------
Arg [0] : name (string): Kevin Rocks
Arg [1] : symbol (string): KVRKS
Arg [2] : baseTokenURI (string): ipfs://QmYj99w5wdBAvu8S66Kc3u4t97Vcjw9BrH4H5ZinancKQ2/KevinRocks
Arg [3] : max_batch (uint256): 10
Arg [4] : collection_size (uint256): 1069

-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 000000000000000000000000000000000000000000000000000000000000042d
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [6] : 4b6576696e20526f636b73000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [8] : 4b56524b53000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [10] : 697066733a2f2f516d596a39397735776442417675385336364b633375347439
Arg [11] : 3756636a77394272483448355a696e616e634b51322f4b6576696e526f636b73


Deployed Bytecode Sourcemap

41257:1465:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41829:14;41846:9;:14;:30;;41867:9;41846:30;;;41863:1;41846:30;41829:47;;41923:10;;41913:6;41897:13;23360:7;23383:12;;23307:94;41897:13;:22;;;;:::i;:::-;:36;;41889:80;;;;-1:-1:-1;;;41889:80:0;;481:2:1;41889:80:0;;;463:21:1;520:2;500:18;;;493:30;559:33;539:18;;;532:61;610:18;;41889:80:0;;;;;;;;;41982:35;17797:10;42006:6;41982:35;;;;;;;;;;;;:9;:35::i;:::-;41816:209;41257:1465;;;;;24746:370;;;;;;;;;;-1:-1:-1;24746:370:0;;;;;:::i;:::-;;:::i;:::-;;;1190:14:1;;1183:22;1165:41;;1153:2;1138:18;24746:370:0;;;;;;;;26472:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28006:204::-;;;;;;;;;;-1:-1:-1;28006:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2317:32:1;;;2299:51;;2287:2;2272:18;28006:204:0;2153:203:1;27569:379:0;;;;;;;;;;-1:-1:-1;27569:379:0;;;;;:::i;:::-;;:::i;:::-;;23307:94;;;;;;;;;;-1:-1:-1;23360:7:0;23383:12;23307:94;;;2944:25:1;;;2932:2;2917:18;23307:94:0;2798:177:1;28856:142:0;;;;;;;;;;-1:-1:-1;28856:142:0;;;;;:::i;:::-;;:::i;23938:744::-;;;;;;;;;;-1:-1:-1;23938:744:0;;;;;:::i;:::-;;:::i;29061:157::-;;;;;;;;;;-1:-1:-1;29061:157:0;;;;;:::i;:::-;;:::i;41398:27::-;;;;;;;;;;;;;:::i;23470:177::-;;;;;;;;;;-1:-1:-1;23470:177:0;;;;;:::i;:::-;;:::i;41332:32::-;;;;;;;;;;;;;;;;26295:118;;;;;;;;;;-1:-1:-1;26295:118:0;;;;;:::i;:::-;;:::i;25172:211::-;;;;;;;;;;-1:-1:-1;25172:211:0;;;;;:::i;:::-;;:::i;41371:20::-;;;;;;;;;;-1:-1:-1;41371:20:0;;;;-1:-1:-1;;;;;41371:20:0;;;26627:98;;;;;;;;;;;;;:::i;42516:203::-;;;;;;;;;;-1:-1:-1;42516:203:0;;;;;:::i;:::-;;:::i;28274:274::-;;;;;;;;;;-1:-1:-1;28274:274:0;;;;;:::i;:::-;;:::i;29281:311::-;;;;;;;;;;-1:-1:-1;29281:311:0;;;;;:::i;:::-;;:::i;42161:343::-;;;;;;;;;;-1:-1:-1;42161:343:0;;;;;:::i;:::-;;:::i;33696:43::-;;;;;;;;;;;;;;;;28611:186;;;;;;;;;;-1:-1:-1;28611:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;28756:25:0;;;28733:4;28756:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28611:186;30379:1272;30484:20;30507:12;-1:-1:-1;;;;;30534:16:0;;30526:62;;;;-1:-1:-1;;;30526:62:0;;6195:2:1;30526:62:0;;;6177:21:1;6234:2;6214:18;;;6207:30;6273:34;6253:18;;;6246:62;-1:-1:-1;;;6324:18:1;;;6317:31;6365:19;;30526:62:0;5993:397:1;30526:62:0;30725:21;30733:12;29888:4;29918:12;-1:-1:-1;29908:22:0;29831:105;30725:21;30724:22;30716:64;;;;-1:-1:-1;;;30716:64:0;;6597:2:1;30716:64:0;;;6579:21:1;6636:2;6616:18;;;6609:30;6675:31;6655:18;;;6648:59;6724:18;;30716:64:0;6395:353:1;30716:64:0;30807:12;30795:8;:24;;30787:71;;;;-1:-1:-1;;;30787:71:0;;6955:2:1;30787:71:0;;;6937:21:1;6994:2;6974:18;;;6967:30;7033:34;7013:18;;;7006:62;-1:-1:-1;;;7084:18:1;;;7077:32;7126:19;;30787:71:0;6753:398:1;30787:71:0;-1:-1:-1;;;;;30970:16:0;;30937:30;30970:16;;;:12;:16;;;;;;;;;30937:49;;;;;;;;;-1:-1:-1;;;;;30937:49:0;;;;;-1:-1:-1;;;30937:49:0;;;;;;;;;;;31012:119;;;;;;;;31032:19;;30937:49;;31012:119;;;31032:39;;31062:8;;31032:39;:::i;:::-;-1:-1:-1;;;;;31012:119:0;;;;;31115:8;31080:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;31012:119:0;;;;;;-1:-1:-1;;;;;30993:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;30993:138:0;;;;;;;;;;;;31166:43;;;;;;;;;;;31192:15;31166:43;;;;;;;;31138:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;31138:71:0;-1:-1:-1;;;;;;31138:71:0;;;;;;;;;;;;;;;;;;31150:12;;31262:281;31286:8;31282:1;:12;31262:281;;;31315:38;;31340:12;;-1:-1:-1;;;;;31315:38:0;;;31332:1;;31315:38;;31332:1;;31315:38;31380:59;31411:1;31415:2;31419:12;31433:5;31380:22;:59::i;:::-;31362:150;;;;-1:-1:-1;;;31362:150:0;;;;;;;:::i;:::-;31521:14;;;;:::i;:::-;;;;31296:3;;;;;:::i;:::-;;;;31262:281;;;-1:-1:-1;31551:12:0;:27;;;31585:60;30477:1174;;;30379:1272;;;:::o;24746:370::-;24873:4;-1:-1:-1;;;;;;24903:40:0;;-1:-1:-1;;;24903:40:0;;:99;;-1:-1:-1;;;;;;;24954:48:0;;-1:-1:-1;;;24954:48:0;24903:99;:160;;;-1:-1:-1;;;;;;;25013:50:0;;-1:-1:-1;;;25013:50:0;24903:160;:207;;;-1:-1:-1;;;;;;;;;;8477:40:0;;;25074:36;24889:221;24746:370;-1:-1:-1;;24746:370:0:o;26472:94::-;26526:13;26555:5;26548:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26472:94;:::o;28006:204::-;28074:7;28098:16;28106:7;29888:4;29918:12;-1:-1:-1;29908:22:0;29831:105;28098:16;28090:74;;;;-1:-1:-1;;;28090:74:0;;8561:2:1;28090:74:0;;;8543:21:1;8600:2;8580:18;;;8573:30;8639:34;8619:18;;;8612:62;-1:-1:-1;;;8690:18:1;;;8683:43;8743:19;;28090:74:0;8359:409:1;28090:74:0;-1:-1:-1;28180:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28180:24:0;;28006:204::o;27569:379::-;27638:13;27654:24;27670:7;27654:15;:24::i;:::-;27638:40;;27699:5;-1:-1:-1;;;;;27693:11:0;:2;-1:-1:-1;;;;;27693:11:0;;;27685:58;;;;-1:-1:-1;;;27685:58:0;;8975:2:1;27685:58:0;;;8957:21:1;9014:2;8994:18;;;8987:30;9053:34;9033:18;;;9026:62;-1:-1:-1;;;9104:18:1;;;9097:32;9146:19;;27685:58:0;8773:398:1;27685:58:0;17797:10;-1:-1:-1;;;;;27768:21:0;;;;:62;;-1:-1:-1;27793:37:0;27810:5;17797:10;28611:186;:::i;27793:37::-;27752:153;;;;-1:-1:-1;;;27752:153:0;;9378:2:1;27752:153:0;;;9360:21:1;9417:2;9397:18;;;9390:30;9456:34;9436:18;;;9429:62;9527:27;9507:18;;;9500:55;9572:19;;27752:153:0;9176:421:1;27752:153:0;27914:28;27923:2;27927:7;27936:5;27914:8;:28::i;:::-;27631:317;27569:379;;:::o;28856:142::-;28964:28;28974:4;28980:2;28984:7;28964:9;:28::i;23938:744::-;24047:7;24082:16;24092:5;24082:9;:16::i;:::-;24074:5;:24;24066:71;;;;-1:-1:-1;;;24066:71:0;;9804:2:1;24066:71:0;;;9786:21:1;9843:2;9823:18;;;9816:30;9882:34;9862:18;;;9855:62;-1:-1:-1;;;9933:18:1;;;9926:32;9975:19;;24066:71:0;9602:398:1;24066:71:0;24144:22;23383:12;;;24144:22;;24264:350;24288:14;24284:1;:18;24264:350;;;24318:31;24352:14;;;:11;:14;;;;;;;;;24318:48;;;;;;;;;-1:-1:-1;;;;;24318:48:0;;;;;-1:-1:-1;;;24318:48:0;;;;;;;;;;;;24379:28;24375:89;;24440:14;;;-1:-1:-1;24375:89:0;24497:5;-1:-1:-1;;;;;24476:26:0;:17;-1:-1:-1;;;;;24476:26:0;;24472:135;;;24534:5;24519:11;:20;24515:59;;;-1:-1:-1;24561:1:0;-1:-1:-1;24554:8:0;;-1:-1:-1;;;24554:8:0;24515:59;24584:13;;;;:::i;:::-;;;;24472:135;-1:-1:-1;24304:3:0;;;;:::i;:::-;;;;24264:350;;;-1:-1:-1;24620:56:0;;-1:-1:-1;;;24620:56:0;;10207:2:1;24620:56:0;;;10189:21:1;10246:2;10226:18;;;10219:30;10285:34;10265:18;;;10258:62;-1:-1:-1;;;10336:18:1;;;10329:44;10390:19;;24620:56:0;10005:410:1;29061:157:0;29173:39;29190:4;29196:2;29200:7;29173:39;;;;;;;;;;;;:16;:39::i;41398:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23470:177::-;23537:7;23383:12;;23561:5;:21;23553:69;;;;-1:-1:-1;;;23553:69:0;;10622:2:1;23553:69:0;;;10604:21:1;10661:2;10641:18;;;10634:30;10700:34;10680:18;;;10673:62;-1:-1:-1;;;10751:18:1;;;10744:33;10794:19;;23553:69:0;10420:399:1;23553:69:0;-1:-1:-1;23636:5:0;23470:177::o;26295:118::-;26359:7;26382:20;26394:7;26382:11;:20::i;:::-;:25;;26295:118;-1:-1:-1;;26295:118:0:o;25172:211::-;25236:7;-1:-1:-1;;;;;25260:19:0;;25252:75;;;;-1:-1:-1;;;25252:75:0;;11026:2:1;25252:75:0;;;11008:21:1;11065:2;11045:18;;;11038:30;11104:34;11084:18;;;11077:62;-1:-1:-1;;;11155:18:1;;;11148:41;11206:19;;25252:75:0;10824:407:1;25252:75:0;-1:-1:-1;;;;;;25349:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;25349:27:0;;25172:211::o;26627:98::-;26683:13;26712:7;26705:14;;;;;:::i;42516:203::-;42602:5;;-1:-1:-1;;;;;42602:5:0;17797:10;42602:21;42594:76;;;;-1:-1:-1;;;42594:76:0;;11438:2:1;42594:76:0;;;11420:21:1;11477:2;11457:18;;;11450:30;11516:34;11496:18;;;11489:62;-1:-1:-1;;;11567:18:1;;;11560:40;11617:19;;42594:76:0;11236:406:1;42594:76:0;42683:28;:13;42699:12;;42683:28;:::i;28274:274::-;-1:-1:-1;;;;;28365:24:0;;17797:10;28365:24;;28357:63;;;;-1:-1:-1;;;28357:63:0;;11849:2:1;28357:63:0;;;11831:21:1;11888:2;11868:18;;;11861:30;11927:28;11907:18;;;11900:56;11973:18;;28357:63:0;11647:350:1;28357:63:0;17797:10;28429:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;28429:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;28429:53:0;;;;;;;;;;28494:48;;1165:41:1;;;28429:42:0;;17797:10;28494:48;;1138:18:1;28494:48:0;;;;;;;28274:274;;:::o;29281:311::-;29418:28;29428:4;29434:2;29438:7;29418:9;:28::i;:::-;29469:48;29492:4;29498:2;29502:7;29511:5;29469:22;:48::i;:::-;29453:133;;;;-1:-1:-1;;;29453:133:0;;;;;;;:::i;:::-;29281:311;;;;:::o;42161:343::-;42234:13;42278:16;42286:7;29888:4;29918:12;-1:-1:-1;29908:22:0;29831:105;42278:16;42270:76;;;;-1:-1:-1;;;42270:76:0;;12204:2:1;42270:76:0;;;12186:21:1;12243:2;12223:18;;;12216:30;12282:34;12262:18;;;12255:62;-1:-1:-1;;;12333:18:1;;;12326:45;12388:19;;42270:76:0;12002:411:1;42270:76:0;42369:21;42393:10;:8;:10::i;:::-;42369:34;;42445:1;42427:7;42421:21;:25;:75;;;;;;;;;;;;;;;;;42473:7;42456:34;;;;;;;;:::i;:::-;;;;;;;;;;;;;42421:75;42414:82;42161:343;-1:-1:-1;;;42161:343:0:o;35233:690::-;35370:4;-1:-1:-1;;;;;35387:13:0;;9619:20;9667:8;35383:535;;35426:72;;-1:-1:-1;;;35426:72:0;;-1:-1:-1;;;;;35426:36:0;;;;;:72;;17797:10;;35477:4;;35483:7;;35492:5;;35426:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35426:72:0;;;;;;;;-1:-1:-1;;35426:72:0;;;;;;;;;;;;:::i;:::-;;;35413:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35657:13:0;;35653:215;;35690:61;;-1:-1:-1;;;35690:61:0;;;;;;;:::i;35653:215::-;35836:6;35830:13;35821:6;35817:2;35813:15;35806:38;35413:464;-1:-1:-1;;;;;;35548:55:0;-1:-1:-1;;;35548:55:0;;-1:-1:-1;35541:62:0;;35383:535;-1:-1:-1;35906:4:0;35383:535;35233:690;;;;;;:::o;33518:172::-;33615:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;33615:29:0;-1:-1:-1;;;;;33615:29:0;;;;;;;;;33656:28;;33615:24;;33656:28;;;;;;;33518:172;;;:::o;31883:1529::-;31980:35;32018:20;32030:7;32018:11;:20::i;:::-;32089:18;;31980:58;;-1:-1:-1;32047:22:0;;-1:-1:-1;;;;;32073:34:0;17797:10;-1:-1:-1;;;;;32073:34:0;;:81;;;-1:-1:-1;17797:10:0;32118:20;32130:7;32118:11;:20::i;:::-;-1:-1:-1;;;;;32118:36:0;;32073:81;:142;;;-1:-1:-1;32182:18:0;;32165:50;;17797:10;28611:186;:::i;32165:50::-;32047:169;;32241:17;32225:101;;;;-1:-1:-1;;;32225:101:0;;13816:2:1;32225:101:0;;;13798:21:1;13855:2;13835:18;;;13828:30;13894:34;13874:18;;;13867:62;-1:-1:-1;;;13945:18:1;;;13938:48;14003:19;;32225:101:0;13614:414:1;32225:101:0;32373:4;-1:-1:-1;;;;;32351:26:0;:13;:18;;;-1:-1:-1;;;;;32351:26:0;;32335:98;;;;-1:-1:-1;;;32335:98:0;;14235:2:1;32335:98:0;;;14217:21:1;14274:2;14254:18;;;14247:30;14313:34;14293:18;;;14286:62;-1:-1:-1;;;14364:18:1;;;14357:36;14410:19;;32335:98:0;14033:402:1;32335:98:0;-1:-1:-1;;;;;32448:16:0;;32440:66;;;;-1:-1:-1;;;32440:66:0;;14642:2:1;32440:66:0;;;14624:21:1;14681:2;14661:18;;;14654:30;14720:34;14700:18;;;14693:62;-1:-1:-1;;;14771:18:1;;;14764:35;14816:19;;32440:66:0;14440:401:1;32440:66:0;32615:49;32632:1;32636:7;32645:13;:18;;;32615:8;:49::i;:::-;-1:-1:-1;;;;;32673:18:0;;;;;;:12;:18;;;;;:31;;32703:1;;32673:18;:31;;32703:1;;-1:-1:-1;;;;;32673:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;32673:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32711:16:0;;-1:-1:-1;32711:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;32711:16:0;;:29;;-1:-1:-1;;32711:29:0;;:::i;:::-;;;-1:-1:-1;;;;;32711:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32770:43:0;;;;;;;;-1:-1:-1;;;;;32770:43:0;;;;;;32796:15;32770:43;;;;;;;;;-1:-1:-1;32747:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;32747:66:0;-1:-1:-1;;;;;;32747:66:0;;;;;;;;;;;33063:11;32759:7;-1:-1:-1;33063:11:0;:::i;:::-;33126:1;33085:24;;;:11;:24;;;;;:29;33041:33;;-1:-1:-1;;;;;;33085:29:0;33081:236;;33143:20;33151:11;29888:4;29918:12;-1:-1:-1;29908:22:0;29831:105;33143:20;33139:171;;;33203:97;;;;;;;;33230:18;;-1:-1:-1;;;;;33203:97:0;;;;;;33261:28;;;;33203:97;;;;;;;;;;-1:-1:-1;33176:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;33176:124:0;-1:-1:-1;;;;;;33176:124:0;;;;;;;;;;;;33139:171;33349:7;33345:2;-1:-1:-1;;;;;33330:27:0;33339:4;-1:-1:-1;;;;;33330:27:0;;;;;;;;;;;33364:42;29281:311;25635:606;-1:-1:-1;;;;;;;;;;;;;;;;;25752:16:0;25760:7;29888:4;29918:12;-1:-1:-1;29908:22:0;29831:105;25752:16;25744:71;;;;-1:-1:-1;;;25744:71:0;;15299:2:1;25744:71:0;;;15281:21:1;15338:2;15318:18;;;15311:30;15377:34;15357:18;;;15350:62;-1:-1:-1;;;15428:18:1;;;15421:40;15478:19;;25744:71:0;15097:406:1;25744:71:0;25824:26;25872:12;25861:7;:23;25857:93;;25916:22;25926:12;25916:7;:22;:::i;:::-;:26;;25941:1;25916:26;:::i;:::-;25895:47;;25857:93;25978:7;25958:212;25995:18;25987:4;:26;25958:212;;26032:31;26066:17;;;:11;:17;;;;;;;;;26032:51;;;;;;;;;-1:-1:-1;;;;;26032:51:0;;;;;-1:-1:-1;;;26032:51:0;;;;;;;;;;;;26096:28;26092:71;;26144:9;25635:606;-1:-1:-1;;;;25635:606:0:o;26092:71::-;-1:-1:-1;26015:6:0;;;;:::i;:::-;;;;25958:212;;;-1:-1:-1;26178:57:0;;-1:-1:-1;;;26178:57:0;;15981:2:1;26178:57:0;;;15963:21:1;16020:2;16000:18;;;15993:30;16059:34;16039:18;;;16032:62;-1:-1:-1;;;16110:18:1;;;16103:45;16165:19;;26178:57:0;15779:411:1;42033:116:0;42093:13;42128;42121:20;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:127:1;75:10;70:3;66:20;63:1;56:31;106:4;103:1;96:15;130:4;127:1;120:15;146:128;186:3;217:1;213:6;210:1;207:13;204:39;;;223:18;;:::i;:::-;-1:-1:-1;259:9:1;;146:128::o;639:131::-;-1:-1:-1;;;;;;713:32:1;;703:43;;693:71;;760:1;757;750:12;693:71;639:131;:::o;775:245::-;833:6;886:2;874:9;865:7;861:23;857:32;854:52;;;902:1;899;892:12;854:52;941:9;928:23;960:30;984:5;960:30;:::i;1217:258::-;1289:1;1299:113;1313:6;1310:1;1307:13;1299:113;;;1389:11;;;1383:18;1370:11;;;1363:39;1335:2;1328:10;1299:113;;;1430:6;1427:1;1424:13;1421:48;;;-1:-1:-1;;1465:1:1;1447:16;;1440:27;1217:258::o;1480:::-;1522:3;1560:5;1554:12;1587:6;1582:3;1575:19;1603:63;1659:6;1652:4;1647:3;1643:14;1636:4;1629:5;1625:16;1603:63;:::i;:::-;1720:2;1699:15;-1:-1:-1;;1695:29:1;1686:39;;;;1727:4;1682:50;;1480:258;-1:-1:-1;;1480:258:1:o;1743:220::-;1892:2;1881:9;1874:21;1855:4;1912:45;1953:2;1942:9;1938:18;1930:6;1912:45;:::i;1968:180::-;2027:6;2080:2;2068:9;2059:7;2055:23;2051:32;2048:52;;;2096:1;2093;2086:12;2048:52;-1:-1:-1;2119:23:1;;1968:180;-1:-1:-1;1968:180:1:o;2361:173::-;2429:20;;-1:-1:-1;;;;;2478:31:1;;2468:42;;2458:70;;2524:1;2521;2514:12;2458:70;2361:173;;;:::o;2539:254::-;2607:6;2615;2668:2;2656:9;2647:7;2643:23;2639:32;2636:52;;;2684:1;2681;2674:12;2636:52;2707:29;2726:9;2707:29;:::i;:::-;2697:39;2783:2;2768:18;;;;2755:32;;-1:-1:-1;;;2539:254:1:o;2980:328::-;3057:6;3065;3073;3126:2;3114:9;3105:7;3101:23;3097:32;3094:52;;;3142:1;3139;3132:12;3094:52;3165:29;3184:9;3165:29;:::i;:::-;3155:39;;3213:38;3247:2;3236:9;3232:18;3213:38;:::i;:::-;3203:48;;3298:2;3287:9;3283:18;3270:32;3260:42;;2980:328;;;;;:::o;3313:186::-;3372:6;3425:2;3413:9;3404:7;3400:23;3396:32;3393:52;;;3441:1;3438;3431:12;3393:52;3464:29;3483:9;3464:29;:::i;3504:592::-;3575:6;3583;3636:2;3624:9;3615:7;3611:23;3607:32;3604:52;;;3652:1;3649;3642:12;3604:52;3692:9;3679:23;3721:18;3762:2;3754:6;3751:14;3748:34;;;3778:1;3775;3768:12;3748:34;3816:6;3805:9;3801:22;3791:32;;3861:7;3854:4;3850:2;3846:13;3842:27;3832:55;;3883:1;3880;3873:12;3832:55;3923:2;3910:16;3949:2;3941:6;3938:14;3935:34;;;3965:1;3962;3955:12;3935:34;4010:7;4005:2;3996:6;3992:2;3988:15;3984:24;3981:37;3978:57;;;4031:1;4028;4021:12;3978:57;4062:2;4054:11;;;;;4084:6;;-1:-1:-1;3504:592:1;;-1:-1:-1;;;;3504:592:1:o;4101:347::-;4166:6;4174;4227:2;4215:9;4206:7;4202:23;4198:32;4195:52;;;4243:1;4240;4233:12;4195:52;4266:29;4285:9;4266:29;:::i;:::-;4256:39;;4345:2;4334:9;4330:18;4317:32;4392:5;4385:13;4378:21;4371:5;4368:32;4358:60;;4414:1;4411;4404:12;4358:60;4437:5;4427:15;;;4101:347;;;;;:::o;4453:127::-;4514:10;4509:3;4505:20;4502:1;4495:31;4545:4;4542:1;4535:15;4569:4;4566:1;4559:15;4585:1138;4680:6;4688;4696;4704;4757:3;4745:9;4736:7;4732:23;4728:33;4725:53;;;4774:1;4771;4764:12;4725:53;4797:29;4816:9;4797:29;:::i;:::-;4787:39;;4845:38;4879:2;4868:9;4864:18;4845:38;:::i;:::-;4835:48;;4930:2;4919:9;4915:18;4902:32;4892:42;;4985:2;4974:9;4970:18;4957:32;5008:18;5049:2;5041:6;5038:14;5035:34;;;5065:1;5062;5055:12;5035:34;5103:6;5092:9;5088:22;5078:32;;5148:7;5141:4;5137:2;5133:13;5129:27;5119:55;;5170:1;5167;5160:12;5119:55;5206:2;5193:16;5228:2;5224;5221:10;5218:36;;;5234:18;;:::i;:::-;5309:2;5303:9;5277:2;5363:13;;-1:-1:-1;;5359:22:1;;;5383:2;5355:31;5351:40;5339:53;;;5407:18;;;5427:22;;;5404:46;5401:72;;;5453:18;;:::i;:::-;5493:10;5489:2;5482:22;5528:2;5520:6;5513:18;5568:7;5563:2;5558;5554;5550:11;5546:20;5543:33;5540:53;;;5589:1;5586;5579:12;5540:53;5645:2;5640;5636;5632:11;5627:2;5619:6;5615:15;5602:46;5690:1;5685:2;5680;5672:6;5668:15;5664:24;5657:35;5711:6;5701:16;;;;;;;4585:1138;;;;;;;:::o;5728:260::-;5796:6;5804;5857:2;5845:9;5836:7;5832:23;5828:32;5825:52;;;5873:1;5870;5863:12;5825:52;5896:29;5915:9;5896:29;:::i;:::-;5886:39;;5944:38;5978:2;5967:9;5963:18;5944:38;:::i;:::-;5934:48;;5728:260;;;;;:::o;7156:253::-;7196:3;-1:-1:-1;;;;;7285:2:1;7282:1;7278:10;7315:2;7312:1;7308:10;7346:3;7342:2;7338:12;7333:3;7330:21;7327:47;;;7354:18;;:::i;:::-;7390:13;;7156:253;-1:-1:-1;;;;7156:253:1:o;7414:415::-;7616:2;7598:21;;;7655:2;7635:18;;;7628:30;7694:34;7689:2;7674:18;;7667:62;-1:-1:-1;;;7760:2:1;7745:18;;7738:49;7819:3;7804:19;;7414:415::o;7834:135::-;7873:3;-1:-1:-1;;7894:17:1;;7891:43;;;7914:18;;:::i;:::-;-1:-1:-1;7961:1:1;7950:13;;7834:135::o;7974:380::-;8053:1;8049:12;;;;8096;;;8117:61;;8171:4;8163:6;8159:17;8149:27;;8117:61;8224:2;8216:6;8213:14;8193:18;8190:38;8187:161;;;8270:10;8265:3;8261:20;8258:1;8251:31;8305:4;8302:1;8295:15;8333:4;8330:1;8323:15;8187:161;;7974:380;;;:::o;12418:443::-;12650:3;12688:6;12682:13;12704:53;12750:6;12745:3;12738:4;12730:6;12726:17;12704:53;:::i;:::-;-1:-1:-1;;;12779:16:1;;12804:22;;;-1:-1:-1;12853:1:1;12842:13;;12418:443;-1:-1:-1;12418:443:1:o;12866:489::-;-1:-1:-1;;;;;13135:15:1;;;13117:34;;13187:15;;13182:2;13167:18;;13160:43;13234:2;13219:18;;13212:34;;;13282:3;13277:2;13262:18;;13255:31;;;13060:4;;13303:46;;13329:19;;13321:6;13303:46;:::i;:::-;13295:54;12866:489;-1:-1:-1;;;;;;12866:489:1:o;13360:249::-;13429:6;13482:2;13470:9;13461:7;13457:23;13453:32;13450:52;;;13498:1;13495;13488:12;13450:52;13530:9;13524:16;13549:30;13573:5;13549:30;:::i;14846:246::-;14886:4;-1:-1:-1;;;;;14999:10:1;;;;14969;;15021:12;;;15018:38;;;15036:18;;:::i;:::-;15073:13;;14846:246;-1:-1:-1;;;14846:246:1:o;15508:125::-;15548:4;15576:1;15573;15570:8;15567:34;;;15581:18;;:::i;:::-;-1:-1:-1;15618:9:1;;15508:125::o;15638:136::-;15677:3;15705:5;15695:39;;15714:18;;:::i;:::-;-1:-1:-1;;;15750:18:1;;15638:136::o

Swarm Source

ipfs://5213e88709668400f33c44369275bce13ff55e1e578dede6fc6864775e80c8c0
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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