ETH Price: $3,107.52 (+1.30%)
Gas: 21 Gwei

Token

KillChallenge (KILLCHALLENGE)
 

Overview

Max Total Supply

2,726 KILLCHALLENGE

Holders

1,952

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 KILLCHALLENGE
0x4688a4158c33dc7dc26d57f916726472be64ccd3
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

KillChallenge is a NFT token

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
KillChallenge

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-16
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Strings.sol


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

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.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);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (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);

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


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

// File: contracts/ERC721A.sol



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()))
        : "";
  }

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

// File: @openzeppelin/contracts/access/Ownable.sol


// 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(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

// File: contracts/KillChallenge.sol


pragma solidity ^0.8.0;





contract KillChallenge is Ownable, ERC721A, ReentrancyGuard {
    using Strings for uint256;

    uint64 public price;
    uint32 public startTime;
    uint256 public immutable maxPerAddressDuringMint;
    uint public limitedFreeMintCounter;
    mapping(address => uint) public freeMintRecord;

    constructor(
        uint256 maxBatchSize_,
        uint256 collectionSize_,
        uint64 price_
    )
        ERC721A(
            "KillChallenge",
            "KILLCHALLENGE",
            maxBatchSize_,
            collectionSize_
        )
    {
        maxPerAddressDuringMint = maxBatchSize_;
        price = price_;
    }

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    function devMint(address to, uint256 quantity) external onlyOwner {
        require(
            numberMinted(to) + quantity <= maxPerAddressDuringMint,
            "can not mint this many"
        );
        freeMintRecord[to] += quantity;
        limitedFreeMintCounter += quantity;
        _safeMint(to, quantity);
    }

    function publicSaleMint(uint256 quantity) external payable callerIsUser {
        uint256 price_ = uint256(price);
        uint256 startTime_ = uint256(startTime);

        require(
            isPublicSaleOn(price_, startTime_),
            "public sale has not begun yet"
        );
        require(
            totalSupply() + quantity <= collectionSize,
            "reached max supply"
        );
        require(
            numberMinted(msg.sender) + quantity <= maxPerAddressDuringMint,
            "can not mint this many"
        );

        uint freeCount = 0;
        if (freeMintRecord[msg.sender] == 0 && limitedFreeMintCounter < 3000) {
            freeCount = 1;
            freeMintRecord[msg.sender] += freeCount;
            limitedFreeMintCounter++;
        }

        _safeMint(msg.sender, quantity);
        refundIfOver(price_ * (quantity - freeCount));
    }

    function refundIfOver(uint256 price_) private {
        require(msg.value >= price_, "Need to send more ETH.");
        if (msg.value > price_) {
            payable(msg.sender).transfer(msg.value - price_);
        }
    }

    function updateStartTime(uint32 startTime_) external onlyOwner {
        startTime = startTime_;
    }

    function isPublicSaleOn(uint256 publicPriceWei, uint256 publicSaleStartTime)
        public
        view
        returns (bool)
    {
        return publicPriceWei != 0 && publicSaleStartTime > 0 && block.timestamp >= publicSaleStartTime;
    }

    // metadata URI
    string private _baseTokenURI;

    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }

    function setBaseURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

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

        return
            string(abi.encodePacked(_baseURI(), tokenId.toString(), ".json"));
    }

    function withdrawMoney() external onlyOwner nonReentrant {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    function getOwnershipData(uint256 tokenId)
        external
        view
        returns (TokenOwnership memory)
    {
        return ownershipOf(tokenId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"},{"internalType":"uint64","name":"price_","type":"uint64"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintRecord","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":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"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":[{"internalType":"uint256","name":"publicPriceWei","type":"uint256"},{"internalType":"uint256","name":"publicSaleStartTime","type":"uint256"}],"name":"isPublicSaleOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitedFreeMintCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","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":[],"name":"price","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTime","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"startTime_","type":"uint32"}],"name":"updateStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e0604052600060015560006008553480156200001b57600080fd5b5060405162002a3538038062002a358339810160408190526200003e91620002d7565b6040518060400160405280600d81526020016c4b696c6c4368616c6c656e676560981b8152506040518060400160405280600d81526020016c4b494c4c4348414c4c454e474560981b8152508484620000a6620000a0620001dd60201b60201c565b620001e1565b60008111620001135760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001755760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b60648201526084016200010a565b83516200018a90600290602087019062000231565b508251620001a090600390602086019062000231565b5060a0919091526080525050600160095560c09290925250600a80546001600160401b0319166001600160401b039092169190911790556200035c565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200023f906200031f565b90600052602060002090601f016020900481019282620002635760008555620002ae565b82601f106200027e57805160ff1916838001178555620002ae565b82800160010185558215620002ae579182015b82811115620002ae57825182559160200191906001019062000291565b50620002bc929150620002c0565b5090565b5b80821115620002bc5760008155600101620002c1565b600080600060608486031215620002ed57600080fd5b83516020850151604086015191945092506001600160401b03811681146200031457600080fd5b809150509250925092565b600181811c908216806200033457607f821691505b602082108114156200035657634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05161268d620003a86000396000818161048a01528181610bbf01526110fd01526000818161182c015281816118560152611da101526000611085015261268d6000f3fe6080604052600436106101ee5760003560e01c806378e979251161010d578063ac446002116100a0578063d7224ba01161006f578063d7224ba0146105ef578063dbcad76f14610605578063dc33e68114610625578063e985e9c514610645578063f2fde38b1461068e57600080fd5b8063ac44600214610587578063b3ab66b01461059c578063b88d4fde146105af578063c87b56dd146105cf57600080fd5b80639231ab2a116100dc5780639231ab2a146104ca57806395d89b4114610518578063a035b1fe1461052d578063a22cb4651461056757600080fd5b806378e979251461041f57806380915df2146104585780638bc35c2f146104785780638da5cb5b146104ac57600080fd5b80632f745c5911610185578063627804af11610154578063627804af146103aa5780636352211e146103ca57806370a08231146103ea578063715018a61461040a57600080fd5b80632f745c591461032a57806342842e0e1461034a5780634f6ccce71461036a57806355f804b31461038a57600080fd5b8063095ea7b3116101c1578063095ea7b3146102bd578063109e81ce146102df57806318160ddd146102f557806323b872dd1461030a57600080fd5b806301ffc9a7146101f357806305e9eb1a1461022857806306fdde0314610263578063081812fc14610285575b600080fd5b3480156101ff57600080fd5b5061021361020e366004612237565b6106ae565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061025561024336600461206b565b600c6020526000908152604090205481565b60405190815260200161021f565b34801561026f57600080fd5b5061027861071b565b60405161021f91906123ec565b34801561029157600080fd5b506102a56102a03660046122e3565b6107ad565b6040516001600160a01b03909116815260200161021f565b3480156102c957600080fd5b506102dd6102d836600461220d565b61083d565b005b3480156102eb57600080fd5b50610255600b5481565b34801561030157600080fd5b50600154610255565b34801561031657600080fd5b506102dd6103253660046120b9565b610955565b34801561033657600080fd5b5061025561034536600461220d565b610960565b34801561035657600080fd5b506102dd6103653660046120b9565b610ad9565b34801561037657600080fd5b506102556103853660046122e3565b610af4565b34801561039657600080fd5b506102dd6103a5366004612271565b610b5d565b3480156103b657600080fd5b506102dd6103c536600461220d565b610b93565b3480156103d657600080fd5b506102a56103e53660046122e3565b610c8e565b3480156103f657600080fd5b5061025561040536600461206b565b610ca0565b34801561041657600080fd5b506102dd610d31565b34801561042b57600080fd5b50600a5461044390600160401b900463ffffffff1681565b60405163ffffffff909116815260200161021f565b34801561046457600080fd5b506102dd61047336600461231e565b610d67565b34801561048457600080fd5b506102557f000000000000000000000000000000000000000000000000000000000000000081565b3480156104b857600080fd5b506000546001600160a01b03166102a5565b3480156104d657600080fd5b506104ea6104e53660046122e3565b610dbc565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff16928101929092520161021f565b34801561052457600080fd5b50610278610dd9565b34801561053957600080fd5b50600a5461054e9067ffffffffffffffff1681565b60405167ffffffffffffffff909116815260200161021f565b34801561057357600080fd5b506102dd6105823660046121d1565b610de8565b34801561059357600080fd5b506102dd610ead565b6102dd6105aa3660046122e3565b610fc2565b3480156105bb57600080fd5b506102dd6105ca3660046120f5565b611206565b3480156105db57600080fd5b506102786105ea3660046122e3565b611239565b3480156105fb57600080fd5b5061025560085481565b34801561061157600080fd5b506102136106203660046122fc565b6112e2565b34801561063157600080fd5b5061025561064036600461206b565b611306565b34801561065157600080fd5b50610213610660366004612086565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561069a57600080fd5b506102dd6106a936600461206b565b611311565b60006001600160e01b031982166380ac58cd60e01b14806106df57506001600160e01b03198216635b5e139f60e01b145b806106fa57506001600160e01b0319821663780e9d6360e01b145b8061071557506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461072a9061257f565b80601f01602080910402602001604051908101604052809291908181526020018280546107569061257f565b80156107a35780601f10610778576101008083540402835291602001916107a3565b820191906000526020600020905b81548152906001019060200180831161078657829003601f168201915b5050505050905090565b60006107ba826001541190565b6108215760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061084882610c8e565b9050806001600160a01b0316836001600160a01b031614156108b75760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610818565b336001600160a01b03821614806108d357506108d38133610660565b6109455760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610818565b6109508383836113ac565b505050565b610950838383611408565b600061096b83610ca0565b82106109c45760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610818565b60006109cf60015490565b905060008060005b83811015610a79576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610a2a57805192505b876001600160a01b0316836001600160a01b03161415610a665786841415610a585750935061071592505050565b83610a62816125ba565b9450505b5080610a71816125ba565b9150506109d7565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610818565b61095083838360405180602001604052806000815250611206565b6000610aff60015490565b8210610b595760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610818565b5090565b6000546001600160a01b03163314610b875760405162461bcd60e51b8152600401610818906123ff565b610950600d8383611fbf565b6000546001600160a01b03163314610bbd5760405162461bcd60e51b8152600401610818906123ff565b7f000000000000000000000000000000000000000000000000000000000000000081610be884611306565b610bf291906124b2565b1115610c395760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b6044820152606401610818565b6001600160a01b0382166000908152600c602052604081208054839290610c619084906124b2565b9250508190555080600b6000828254610c7a91906124b2565b90915550610c8a90508282611790565b5050565b6000610c99826117aa565b5192915050565b60006001600160a01b038216610d0c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610818565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610d5b5760405162461bcd60e51b8152600401610818906123ff565b610d656000611954565b565b6000546001600160a01b03163314610d915760405162461bcd60e51b8152600401610818906123ff565b600a805463ffffffff909216600160401b026bffffffff000000000000000019909216919091179055565b6040805180820190915260008082526020820152610715826117aa565b60606003805461072a9061257f565b6001600160a01b038216331415610e415760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610818565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b03163314610ed75760405162461bcd60e51b8152600401610818906123ff565b60026009541415610f2a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610818565b6002600955604051600090339047908381818185875af1925050503d8060008114610f71576040519150601f19603f3d011682016040523d82523d6000602084013e610f76565b606091505b5050905080610fba5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610818565b506001600955565b3233146110115760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610818565b600a5467ffffffffffffffff811690600160401b900463ffffffff1661103782826112e2565b6110835760405162461bcd60e51b815260206004820152601d60248201527f7075626c69632073616c6520686173206e6f7420626567756e207965740000006044820152606401610818565b7f0000000000000000000000000000000000000000000000000000000000000000836110ae60015490565b6110b891906124b2565b11156110fb5760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610818565b7f00000000000000000000000000000000000000000000000000000000000000008361112633611306565b61113091906124b2565b11156111775760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b6044820152606401610818565b336000908152600c60205260408120541580156111975750610bb8600b54105b156111da5750336000908152600c6020526040812080546001928392916111bf9084906124b2565b9091555050600b80549060006111d4836125ba565b91905055505b6111e43385611790565b6112006111f18286612525565b6111fb90856124de565b6119a4565b50505050565b611211848484611408565b61121d84848484611a2b565b6112005760405162461bcd60e51b815260040161081890612434565b6060611246826001541190565b6112aa5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610818565b6112b2611b39565b6112bb83611b48565b6040516020016112cc929190612370565b6040516020818303038152906040529050919050565b600082158015906112f35750600082115b80156112ff5750814210155b9392505050565b600061071582611c46565b6000546001600160a01b0316331461133b5760405162461bcd60e51b8152600401610818906123ff565b6001600160a01b0381166113a05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610818565b6113a981611954565b50565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611413826117aa565b80519091506000906001600160a01b0316336001600160a01b0316148061144a57503361143f846107ad565b6001600160a01b0316145b8061145c5750815161145c9033610660565b9050806114c65760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610818565b846001600160a01b031682600001516001600160a01b03161461153a5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610818565b6001600160a01b03841661159e5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610818565b6115ae60008484600001516113ac565b6001600160a01b03851660009081526005602052604081208054600192906115e09084906001600160801b03166124fd565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261162c91859116612487565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556116b48460016124b2565b6000818152600460205260409020549091506001600160a01b0316611746576116de816001541190565b156117465760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610c8a828260405180602001604052806000815250611ce4565b60408051808201909152600080825260208201526117c9826001541190565b6118285760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610818565b60007f000000000000000000000000000000000000000000000000000000000000000083106118895761187b7f000000000000000000000000000000000000000000000000000000000000000084612525565b6118869060016124b2565b90505b825b8181106118f3576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156118e057949350505050565b50806118eb81612568565b91505061188b565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610818565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b803410156119ed5760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b6044820152606401610818565b803411156113a957336108fc611a038334612525565b6040518115909202916000818181858888f19350505050158015610c8a573d6000803e3d6000fd5b60006001600160a01b0384163b15611b2d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a6f9033908990889088906004016123af565b602060405180830381600087803b158015611a8957600080fd5b505af1925050508015611ab9575060408051601f3d908101601f19168201909252611ab691810190612254565b60015b611b13573d808015611ae7576040519150601f19603f3d011682016040523d82523d6000602084013e611aec565b606091505b508051611b0b5760405162461bcd60e51b815260040161081890612434565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b31565b5060015b949350505050565b6060600d805461072a9061257f565b606081611b6c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b965780611b80816125ba565b9150611b8f9050600a836124ca565b9150611b70565b60008167ffffffffffffffff811115611bb157611bb161262b565b6040519080825280601f01601f191660200182016040528015611bdb576020820181803683370190505b5090505b8415611b3157611bf0600183612525565b9150611bfd600a866125d5565b611c089060306124b2565b60f81b818381518110611c1d57611c1d612615565b60200101906001600160f81b031916908160001a905350611c3f600a866124ca565b9450611bdf565b60006001600160a01b038216611cb85760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610818565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b038416611d475760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610818565b611d52816001541190565b15611d9f5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610818565b7f0000000000000000000000000000000000000000000000000000000000000000831115611e1a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610818565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611e76908790612487565b6001600160801b03168152602001858360200151611e949190612487565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611fb45760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611f786000888488611a2b565b611f945760405162461bcd60e51b815260040161081890612434565b81611f9e816125ba565b9250508080611fac906125ba565b915050611f2b565b506001819055611788565b828054611fcb9061257f565b90600052602060002090601f016020900481019282611fed5760008555612033565b82601f106120065782800160ff19823516178555612033565b82800160010185558215612033579182015b82811115612033578235825591602001919060010190612018565b50610b599291505b80821115610b59576000815560010161203b565b80356001600160a01b038116811461206657600080fd5b919050565b60006020828403121561207d57600080fd5b6112ff8261204f565b6000806040838503121561209957600080fd5b6120a28361204f565b91506120b06020840161204f565b90509250929050565b6000806000606084860312156120ce57600080fd5b6120d78461204f565b92506120e56020850161204f565b9150604084013590509250925092565b6000806000806080858703121561210b57600080fd5b6121148561204f565b93506121226020860161204f565b925060408501359150606085013567ffffffffffffffff8082111561214657600080fd5b818701915087601f83011261215a57600080fd5b81358181111561216c5761216c61262b565b604051601f8201601f19908116603f011681019083821181831017156121945761219461262b565b816040528281528a60208487010111156121ad57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156121e457600080fd5b6121ed8361204f565b91506020830135801515811461220257600080fd5b809150509250929050565b6000806040838503121561222057600080fd5b6122298361204f565b946020939093013593505050565b60006020828403121561224957600080fd5b81356112ff81612641565b60006020828403121561226657600080fd5b81516112ff81612641565b6000806020838503121561228457600080fd5b823567ffffffffffffffff8082111561229c57600080fd5b818501915085601f8301126122b057600080fd5b8135818111156122bf57600080fd5b8660208285010111156122d157600080fd5b60209290920196919550909350505050565b6000602082840312156122f557600080fd5b5035919050565b6000806040838503121561230f57600080fd5b50508035926020909101359150565b60006020828403121561233057600080fd5b813563ffffffff811681146112ff57600080fd5b6000815180845261235c81602086016020860161253c565b601f01601f19169290920160200192915050565b6000835161238281846020880161253c565b83519083019061239681836020880161253c565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123e290830184612344565b9695505050505050565b6020815260006112ff6020830184612344565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156124a9576124a96125e9565b01949350505050565b600082198211156124c5576124c56125e9565b500190565b6000826124d9576124d96125ff565b500490565b60008160001904831182151516156124f8576124f86125e9565b500290565b60006001600160801b038381169083168181101561251d5761251d6125e9565b039392505050565b600082821015612537576125376125e9565b500390565b60005b8381101561255757818101518382015260200161253f565b838111156112005750506000910152565b600081612577576125776125e9565b506000190190565b600181811c9082168061259357607f821691505b602082108114156125b457634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125ce576125ce6125e9565b5060010190565b6000826125e4576125e46125ff565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146113a957600080fdfea2646970667358221220de3232c43311f72436fec752b5c32b1820d3d22da0b3487764db8aa821c0e2d964736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000001e61000000000000000000000000000000000000000000000000001b5b1bf4c54000

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c806378e979251161010d578063ac446002116100a0578063d7224ba01161006f578063d7224ba0146105ef578063dbcad76f14610605578063dc33e68114610625578063e985e9c514610645578063f2fde38b1461068e57600080fd5b8063ac44600214610587578063b3ab66b01461059c578063b88d4fde146105af578063c87b56dd146105cf57600080fd5b80639231ab2a116100dc5780639231ab2a146104ca57806395d89b4114610518578063a035b1fe1461052d578063a22cb4651461056757600080fd5b806378e979251461041f57806380915df2146104585780638bc35c2f146104785780638da5cb5b146104ac57600080fd5b80632f745c5911610185578063627804af11610154578063627804af146103aa5780636352211e146103ca57806370a08231146103ea578063715018a61461040a57600080fd5b80632f745c591461032a57806342842e0e1461034a5780634f6ccce71461036a57806355f804b31461038a57600080fd5b8063095ea7b3116101c1578063095ea7b3146102bd578063109e81ce146102df57806318160ddd146102f557806323b872dd1461030a57600080fd5b806301ffc9a7146101f357806305e9eb1a1461022857806306fdde0314610263578063081812fc14610285575b600080fd5b3480156101ff57600080fd5b5061021361020e366004612237565b6106ae565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061025561024336600461206b565b600c6020526000908152604090205481565b60405190815260200161021f565b34801561026f57600080fd5b5061027861071b565b60405161021f91906123ec565b34801561029157600080fd5b506102a56102a03660046122e3565b6107ad565b6040516001600160a01b03909116815260200161021f565b3480156102c957600080fd5b506102dd6102d836600461220d565b61083d565b005b3480156102eb57600080fd5b50610255600b5481565b34801561030157600080fd5b50600154610255565b34801561031657600080fd5b506102dd6103253660046120b9565b610955565b34801561033657600080fd5b5061025561034536600461220d565b610960565b34801561035657600080fd5b506102dd6103653660046120b9565b610ad9565b34801561037657600080fd5b506102556103853660046122e3565b610af4565b34801561039657600080fd5b506102dd6103a5366004612271565b610b5d565b3480156103b657600080fd5b506102dd6103c536600461220d565b610b93565b3480156103d657600080fd5b506102a56103e53660046122e3565b610c8e565b3480156103f657600080fd5b5061025561040536600461206b565b610ca0565b34801561041657600080fd5b506102dd610d31565b34801561042b57600080fd5b50600a5461044390600160401b900463ffffffff1681565b60405163ffffffff909116815260200161021f565b34801561046457600080fd5b506102dd61047336600461231e565b610d67565b34801561048457600080fd5b506102557f000000000000000000000000000000000000000000000000000000000000000581565b3480156104b857600080fd5b506000546001600160a01b03166102a5565b3480156104d657600080fd5b506104ea6104e53660046122e3565b610dbc565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff16928101929092520161021f565b34801561052457600080fd5b50610278610dd9565b34801561053957600080fd5b50600a5461054e9067ffffffffffffffff1681565b60405167ffffffffffffffff909116815260200161021f565b34801561057357600080fd5b506102dd6105823660046121d1565b610de8565b34801561059357600080fd5b506102dd610ead565b6102dd6105aa3660046122e3565b610fc2565b3480156105bb57600080fd5b506102dd6105ca3660046120f5565b611206565b3480156105db57600080fd5b506102786105ea3660046122e3565b611239565b3480156105fb57600080fd5b5061025560085481565b34801561061157600080fd5b506102136106203660046122fc565b6112e2565b34801561063157600080fd5b5061025561064036600461206b565b611306565b34801561065157600080fd5b50610213610660366004612086565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561069a57600080fd5b506102dd6106a936600461206b565b611311565b60006001600160e01b031982166380ac58cd60e01b14806106df57506001600160e01b03198216635b5e139f60e01b145b806106fa57506001600160e01b0319821663780e9d6360e01b145b8061071557506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461072a9061257f565b80601f01602080910402602001604051908101604052809291908181526020018280546107569061257f565b80156107a35780601f10610778576101008083540402835291602001916107a3565b820191906000526020600020905b81548152906001019060200180831161078657829003601f168201915b5050505050905090565b60006107ba826001541190565b6108215760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061084882610c8e565b9050806001600160a01b0316836001600160a01b031614156108b75760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610818565b336001600160a01b03821614806108d357506108d38133610660565b6109455760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610818565b6109508383836113ac565b505050565b610950838383611408565b600061096b83610ca0565b82106109c45760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610818565b60006109cf60015490565b905060008060005b83811015610a79576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610a2a57805192505b876001600160a01b0316836001600160a01b03161415610a665786841415610a585750935061071592505050565b83610a62816125ba565b9450505b5080610a71816125ba565b9150506109d7565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610818565b61095083838360405180602001604052806000815250611206565b6000610aff60015490565b8210610b595760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610818565b5090565b6000546001600160a01b03163314610b875760405162461bcd60e51b8152600401610818906123ff565b610950600d8383611fbf565b6000546001600160a01b03163314610bbd5760405162461bcd60e51b8152600401610818906123ff565b7f000000000000000000000000000000000000000000000000000000000000000581610be884611306565b610bf291906124b2565b1115610c395760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b6044820152606401610818565b6001600160a01b0382166000908152600c602052604081208054839290610c619084906124b2565b9250508190555080600b6000828254610c7a91906124b2565b90915550610c8a90508282611790565b5050565b6000610c99826117aa565b5192915050565b60006001600160a01b038216610d0c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610818565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610d5b5760405162461bcd60e51b8152600401610818906123ff565b610d656000611954565b565b6000546001600160a01b03163314610d915760405162461bcd60e51b8152600401610818906123ff565b600a805463ffffffff909216600160401b026bffffffff000000000000000019909216919091179055565b6040805180820190915260008082526020820152610715826117aa565b60606003805461072a9061257f565b6001600160a01b038216331415610e415760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610818565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b03163314610ed75760405162461bcd60e51b8152600401610818906123ff565b60026009541415610f2a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610818565b6002600955604051600090339047908381818185875af1925050503d8060008114610f71576040519150601f19603f3d011682016040523d82523d6000602084013e610f76565b606091505b5050905080610fba5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610818565b506001600955565b3233146110115760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610818565b600a5467ffffffffffffffff811690600160401b900463ffffffff1661103782826112e2565b6110835760405162461bcd60e51b815260206004820152601d60248201527f7075626c69632073616c6520686173206e6f7420626567756e207965740000006044820152606401610818565b7f0000000000000000000000000000000000000000000000000000000000001e61836110ae60015490565b6110b891906124b2565b11156110fb5760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610818565b7f00000000000000000000000000000000000000000000000000000000000000058361112633611306565b61113091906124b2565b11156111775760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b6044820152606401610818565b336000908152600c60205260408120541580156111975750610bb8600b54105b156111da5750336000908152600c6020526040812080546001928392916111bf9084906124b2565b9091555050600b80549060006111d4836125ba565b91905055505b6111e43385611790565b6112006111f18286612525565b6111fb90856124de565b6119a4565b50505050565b611211848484611408565b61121d84848484611a2b565b6112005760405162461bcd60e51b815260040161081890612434565b6060611246826001541190565b6112aa5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610818565b6112b2611b39565b6112bb83611b48565b6040516020016112cc929190612370565b6040516020818303038152906040529050919050565b600082158015906112f35750600082115b80156112ff5750814210155b9392505050565b600061071582611c46565b6000546001600160a01b0316331461133b5760405162461bcd60e51b8152600401610818906123ff565b6001600160a01b0381166113a05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610818565b6113a981611954565b50565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611413826117aa565b80519091506000906001600160a01b0316336001600160a01b0316148061144a57503361143f846107ad565b6001600160a01b0316145b8061145c5750815161145c9033610660565b9050806114c65760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610818565b846001600160a01b031682600001516001600160a01b03161461153a5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610818565b6001600160a01b03841661159e5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610818565b6115ae60008484600001516113ac565b6001600160a01b03851660009081526005602052604081208054600192906115e09084906001600160801b03166124fd565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261162c91859116612487565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556116b48460016124b2565b6000818152600460205260409020549091506001600160a01b0316611746576116de816001541190565b156117465760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610c8a828260405180602001604052806000815250611ce4565b60408051808201909152600080825260208201526117c9826001541190565b6118285760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610818565b60007f000000000000000000000000000000000000000000000000000000000000000583106118895761187b7f000000000000000000000000000000000000000000000000000000000000000584612525565b6118869060016124b2565b90505b825b8181106118f3576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156118e057949350505050565b50806118eb81612568565b91505061188b565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610818565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b803410156119ed5760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b6044820152606401610818565b803411156113a957336108fc611a038334612525565b6040518115909202916000818181858888f19350505050158015610c8a573d6000803e3d6000fd5b60006001600160a01b0384163b15611b2d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a6f9033908990889088906004016123af565b602060405180830381600087803b158015611a8957600080fd5b505af1925050508015611ab9575060408051601f3d908101601f19168201909252611ab691810190612254565b60015b611b13573d808015611ae7576040519150601f19603f3d011682016040523d82523d6000602084013e611aec565b606091505b508051611b0b5760405162461bcd60e51b815260040161081890612434565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b31565b5060015b949350505050565b6060600d805461072a9061257f565b606081611b6c5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b965780611b80816125ba565b9150611b8f9050600a836124ca565b9150611b70565b60008167ffffffffffffffff811115611bb157611bb161262b565b6040519080825280601f01601f191660200182016040528015611bdb576020820181803683370190505b5090505b8415611b3157611bf0600183612525565b9150611bfd600a866125d5565b611c089060306124b2565b60f81b818381518110611c1d57611c1d612615565b60200101906001600160f81b031916908160001a905350611c3f600a866124ca565b9450611bdf565b60006001600160a01b038216611cb85760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610818565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b038416611d475760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610818565b611d52816001541190565b15611d9f5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610818565b7f0000000000000000000000000000000000000000000000000000000000000005831115611e1a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610818565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611e76908790612487565b6001600160801b03168152602001858360200151611e949190612487565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611fb45760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611f786000888488611a2b565b611f945760405162461bcd60e51b815260040161081890612434565b81611f9e816125ba565b9250508080611fac906125ba565b915050611f2b565b506001819055611788565b828054611fcb9061257f565b90600052602060002090601f016020900481019282611fed5760008555612033565b82601f106120065782800160ff19823516178555612033565b82800160010185558215612033579182015b82811115612033578235825591602001919060010190612018565b50610b599291505b80821115610b59576000815560010161203b565b80356001600160a01b038116811461206657600080fd5b919050565b60006020828403121561207d57600080fd5b6112ff8261204f565b6000806040838503121561209957600080fd5b6120a28361204f565b91506120b06020840161204f565b90509250929050565b6000806000606084860312156120ce57600080fd5b6120d78461204f565b92506120e56020850161204f565b9150604084013590509250925092565b6000806000806080858703121561210b57600080fd5b6121148561204f565b93506121226020860161204f565b925060408501359150606085013567ffffffffffffffff8082111561214657600080fd5b818701915087601f83011261215a57600080fd5b81358181111561216c5761216c61262b565b604051601f8201601f19908116603f011681019083821181831017156121945761219461262b565b816040528281528a60208487010111156121ad57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156121e457600080fd5b6121ed8361204f565b91506020830135801515811461220257600080fd5b809150509250929050565b6000806040838503121561222057600080fd5b6122298361204f565b946020939093013593505050565b60006020828403121561224957600080fd5b81356112ff81612641565b60006020828403121561226657600080fd5b81516112ff81612641565b6000806020838503121561228457600080fd5b823567ffffffffffffffff8082111561229c57600080fd5b818501915085601f8301126122b057600080fd5b8135818111156122bf57600080fd5b8660208285010111156122d157600080fd5b60209290920196919550909350505050565b6000602082840312156122f557600080fd5b5035919050565b6000806040838503121561230f57600080fd5b50508035926020909101359150565b60006020828403121561233057600080fd5b813563ffffffff811681146112ff57600080fd5b6000815180845261235c81602086016020860161253c565b601f01601f19169290920160200192915050565b6000835161238281846020880161253c565b83519083019061239681836020880161253c565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123e290830184612344565b9695505050505050565b6020815260006112ff6020830184612344565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156124a9576124a96125e9565b01949350505050565b600082198211156124c5576124c56125e9565b500190565b6000826124d9576124d96125ff565b500490565b60008160001904831182151516156124f8576124f86125e9565b500290565b60006001600160801b038381169083168181101561251d5761251d6125e9565b039392505050565b600082821015612537576125376125e9565b500390565b60005b8381101561255757818101518382015260200161253f565b838111156112005750506000910152565b600081612577576125776125e9565b506000190190565b600181811c9082168061259357607f821691505b602082108114156125b457634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125ce576125ce6125e9565b5060010190565b6000826125e4576125e46125ff565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146113a957600080fdfea2646970667358221220de3232c43311f72436fec752b5c32b1820d3d22da0b3487764db8aa821c0e2d964736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000001e61000000000000000000000000000000000000000000000000001b5b1bf4c54000

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 5
Arg [1] : collectionSize_ (uint256): 7777
Arg [2] : price_ (uint64): 7700000000000000

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [1] : 0000000000000000000000000000000000000000000000000000000000001e61
Arg [2] : 000000000000000000000000000000000000000000000000001b5b1bf4c54000


Deployed Bytecode Sourcemap

42748:3809:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27837:370;;;;;;;;;;-1:-1:-1;27837:370:0;;;;;:::i;:::-;;:::i;:::-;;;6535:14:1;;6528:22;6510:41;;6498:2;6483:18;27837:370:0;;;;;;;;43001:46;;;;;;;;;;-1:-1:-1;43001:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;18244:25:1;;;18232:2;18217:18;43001:46:0;18098:177:1;29563:94:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31088:204::-;;;;;;;;;;-1:-1:-1;31088:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5833:32:1;;;5815:51;;5803:2;5788:18;31088:204:0;5669:203:1;30651:379:0;;;;;;;;;;-1:-1:-1;30651:379:0;;;;;:::i;:::-;;:::i;:::-;;42960:34;;;;;;;;;;;;;;;;26398:94;;;;;;;;;;-1:-1:-1;26474:12:0;;26398:94;;31938:142;;;;;;;;;;-1:-1:-1;31938:142:0;;;;;:::i;:::-;;:::i;27029:744::-;;;;;;;;;;-1:-1:-1;27029:744:0;;;;;:::i;:::-;;:::i;32143:157::-;;;;;;;;;;-1:-1:-1;32143:157:0;;;;;:::i;:::-;;:::i;26561:177::-;;;;;;;;;;-1:-1:-1;26561:177:0;;;;;:::i;:::-;;:::i;45577:106::-;;;;;;;;;;-1:-1:-1;45577:106:0;;;;;:::i;:::-;;:::i;43536:331::-;;;;;;;;;;-1:-1:-1;43536:331:0;;;;;:::i;:::-;;:::i;29386:118::-;;;;;;;;;;-1:-1:-1;29386:118:0;;;;;:::i;:::-;;:::i;28263:211::-;;;;;;;;;;-1:-1:-1;28263:211:0;;;;;:::i;:::-;;:::i;41854:103::-;;;;;;;;;;;;;:::i;42875:23::-;;;;;;;;;;-1:-1:-1;42875:23:0;;;;-1:-1:-1;;;42875:23:0;;;;;;;;;18454:10:1;18442:23;;;18424:42;;18412:2;18397:18;42875:23:0;18280:192:1;45027:104:0;;;;;;;;;;-1:-1:-1;45027:104:0;;;;;:::i;:::-;;:::i;42905:48::-;;;;;;;;;;;;;;;41203:87;;;;;;;;;;-1:-1:-1;41249:7:0;41276:6;-1:-1:-1;;;;;41276:6:0;41203:87;;46387:167;;;;;;;;;;-1:-1:-1;46387:167:0;;;;;:::i;:::-;;:::i;:::-;;;;17963:13:1;;-1:-1:-1;;;;;17959:39:1;17941:58;;18059:4;18047:17;;;18041:24;18067:18;18037:49;18015:20;;;18008:79;;;;17914:18;46387:167:0;17733:360:1;29718:98:0;;;;;;;;;;;;;:::i;42849:19::-;;;;;;;;;;-1:-1:-1;42849:19:0;;;;;;;;;;;18651:18:1;18639:31;;;18621:50;;18609:2;18594:18;42849:19:0;18477:200:1;31356:274:0;;;;;;;;;;-1:-1:-1;31356:274:0;;;;;:::i;:::-;;:::i;46067:191::-;;;;;;;;;;;;;:::i;43875:908::-;;;;;;:::i;:::-;;:::i;32363:311::-;;;;;;;;;;-1:-1:-1;32363:311:0;;;;;:::i;:::-;;:::i;45691:368::-;;;;;;;;;;-1:-1:-1;45691:368:0;;;;;:::i;:::-;;:::i;36778:43::-;;;;;;;;;;;;;;;;45139:250;;;;;;;;;;-1:-1:-1;45139:250:0;;;;;:::i;:::-;;:::i;46266:113::-;;;;;;;;;;-1:-1:-1;46266:113:0;;;;;:::i;:::-;;:::i;31693:186::-;;;;;;;;;;-1:-1:-1;31693:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;31838:25:0;;;31815:4;31838:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31693:186;42112:201;;;;;;;;;;-1:-1:-1;42112:201:0;;;;;:::i;:::-;;:::i;27837:370::-;27964:4;-1:-1:-1;;;;;;27994:40:0;;-1:-1:-1;;;27994:40:0;;:99;;-1:-1:-1;;;;;;;28045:48:0;;-1:-1:-1;;;28045:48:0;27994:99;:160;;;-1:-1:-1;;;;;;;28104:50:0;;-1:-1:-1;;;28104:50:0;27994:160;:207;;;-1:-1:-1;;;;;;;;;;13605:40:0;;;28165:36;27980:221;27837:370;-1:-1:-1;;27837:370:0:o;29563:94::-;29617:13;29646:5;29639:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29563:94;:::o;31088:204::-;31156:7;31180:16;31188:7;33000:12;;-1:-1:-1;32990:22:0;32913:105;31180:16;31172:74;;;;-1:-1:-1;;;31172:74:0;;17118:2:1;31172:74:0;;;17100:21:1;17157:2;17137:18;;;17130:30;17196:34;17176:18;;;17169:62;-1:-1:-1;;;17247:18:1;;;17240:43;17300:19;;31172:74:0;;;;;;;;;-1:-1:-1;31262:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31262:24:0;;31088:204::o;30651:379::-;30720:13;30736:24;30752:7;30736:15;:24::i;:::-;30720:40;;30781:5;-1:-1:-1;;;;;30775:11:0;:2;-1:-1:-1;;;;;30775:11:0;;;30767:58;;;;-1:-1:-1;;;30767:58:0;;13297:2:1;30767:58:0;;;13279:21:1;13336:2;13316:18;;;13309:30;13375:34;13355:18;;;13348:62;-1:-1:-1;;;13426:18:1;;;13419:32;13468:19;;30767:58:0;13095:398:1;30767:58:0;23948:10;-1:-1:-1;;;;;30850:21:0;;;;:62;;-1:-1:-1;30875:37:0;30892:5;23948:10;31693:186;:::i;30875:37::-;30834:153;;;;-1:-1:-1;;;30834:153:0;;9796:2:1;30834:153:0;;;9778:21:1;9835:2;9815:18;;;9808:30;9874:34;9854:18;;;9847:62;9945:27;9925:18;;;9918:55;9990:19;;30834:153:0;9594:421:1;30834:153:0;30996:28;31005:2;31009:7;31018:5;30996:8;:28::i;:::-;30713:317;30651:379;;:::o;31938:142::-;32046:28;32056:4;32062:2;32066:7;32046:9;:28::i;27029:744::-;27138:7;27173:16;27183:5;27173:9;:16::i;:::-;27165:5;:24;27157:71;;;;-1:-1:-1;;;27157:71:0;;6988:2:1;27157:71:0;;;6970:21:1;7027:2;7007:18;;;7000:30;7066:34;7046:18;;;7039:62;-1:-1:-1;;;7117:18:1;;;7110:32;7159:19;;27157:71:0;6786:398:1;27157:71:0;27235:22;27260:13;26474:12;;;26398:94;27260:13;27235:38;;27280:19;27310:25;27360:9;27355:350;27379:14;27375:1;:18;27355:350;;;27409:31;27443:14;;;:11;:14;;;;;;;;;27409:48;;;;;;;;;-1:-1:-1;;;;;27409:48:0;;;;;-1:-1:-1;;;27409:48:0;;;;;;;;;;;;27470:28;27466:89;;27531:14;;;-1:-1:-1;27466:89:0;27588:5;-1:-1:-1;;;;;27567:26:0;:17;-1:-1:-1;;;;;27567:26:0;;27563:135;;;27625:5;27610:11;:20;27606:59;;;-1:-1:-1;27652:1:0;-1:-1:-1;27645:8:0;;-1:-1:-1;;;27645:8:0;27606:59;27675:13;;;;:::i;:::-;;;;27563:135;-1:-1:-1;27395:3:0;;;;:::i;:::-;;;;27355:350;;;-1:-1:-1;27711:56:0;;-1:-1:-1;;;27711:56:0;;15927:2:1;27711:56:0;;;15909:21:1;15966:2;15946:18;;;15939:30;16005:34;15985:18;;;15978:62;-1:-1:-1;;;16056:18:1;;;16049:44;16110:19;;27711:56:0;15725:410:1;32143:157:0;32255:39;32272:4;32278:2;32282:7;32255:39;;;;;;;;;;;;:16;:39::i;26561:177::-;26628:7;26660:13;26474:12;;;26398:94;26660:13;26652:5;:21;26644:69;;;;-1:-1:-1;;;26644:69:0;;8209:2:1;26644:69:0;;;8191:21:1;8248:2;8228:18;;;8221:30;8287:34;8267:18;;;8260:62;-1:-1:-1;;;8338:18:1;;;8331:33;8381:19;;26644:69:0;8007:399:1;26644:69:0;-1:-1:-1;26727:5:0;26561:177::o;45577:106::-;41249:7;41276:6;-1:-1:-1;;;;;41276:6:0;23948:10;41423:23;41415:68;;;;-1:-1:-1;;;41415:68:0;;;;;;;:::i;:::-;45652:23:::1;:13;45668:7:::0;;45652:23:::1;:::i;43536:331::-:0;41249:7;41276:6;-1:-1:-1;;;;;41276:6:0;23948:10;41423:23;41415:68;;;;-1:-1:-1;;;41415:68:0;;;;;;;:::i;:::-;43666:23:::1;43654:8;43635:16;43648:2;43635:12;:16::i;:::-;:27;;;;:::i;:::-;:54;;43613:126;;;::::0;-1:-1:-1;;;43613:126:0;;15576:2:1;43613:126:0::1;::::0;::::1;15558:21:1::0;15615:2;15595:18;;;15588:30;-1:-1:-1;;;15634:18:1;;;15627:52;15696:18;;43613:126:0::1;15374:346:1::0;43613:126:0::1;-1:-1:-1::0;;;;;43750:18:0;::::1;;::::0;;;:14:::1;:18;::::0;;;;:30;;43772:8;;43750:18;:30:::1;::::0;43772:8;;43750:30:::1;:::i;:::-;;;;;;;;43817:8;43791:22;;:34;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;43836:23:0::1;::::0;-1:-1:-1;43846:2:0;43850:8;43836:9:::1;:23::i;:::-;43536:331:::0;;:::o;29386:118::-;29450:7;29473:20;29485:7;29473:11;:20::i;:::-;:25;;29386:118;-1:-1:-1;;29386:118:0:o;28263:211::-;28327:7;-1:-1:-1;;;;;28351:19:0;;28343:75;;;;-1:-1:-1;;;28343:75:0;;10222:2:1;28343:75:0;;;10204:21:1;10261:2;10241:18;;;10234:30;10300:34;10280:18;;;10273:62;-1:-1:-1;;;10351:18:1;;;10344:41;10402:19;;28343:75:0;10020:407:1;28343:75:0;-1:-1:-1;;;;;;28440:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;28440:27:0;;28263:211::o;41854:103::-;41249:7;41276:6;-1:-1:-1;;;;;41276:6:0;23948:10;41423:23;41415:68;;;;-1:-1:-1;;;41415:68:0;;;;;;;:::i;:::-;41919:30:::1;41946:1;41919:18;:30::i;:::-;41854:103::o:0;45027:104::-;41249:7;41276:6;-1:-1:-1;;;;;41276:6:0;23948:10;41423:23;41415:68;;;;-1:-1:-1;;;41415:68:0;;;;;;;:::i;:::-;45101:9:::1;:22:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;;45101:22:0::1;-1:-1:-1::0;;45101:22:0;;::::1;::::0;;;::::1;::::0;;45027:104::o;46387:167::-;-1:-1:-1;;;;;;;;;;;;;;;;;46526:20:0;46538:7;46526:11;:20::i;29718:98::-;29774:13;29803:7;29796:14;;;;;:::i;31356:274::-;-1:-1:-1;;;;;31447:24:0;;23948:10;31447:24;;31439:63;;;;-1:-1:-1;;;31439:63:0;;12165:2:1;31439:63:0;;;12147:21:1;12204:2;12184:18;;;12177:30;12243:28;12223:18;;;12216:56;12289:18;;31439:63:0;11963:350:1;31439:63:0;23948:10;31511:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31511:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31511:53:0;;;;;;;;;;31576:48;;6510:41:1;;;31511:42:0;;23948:10;31576:48;;6483:18:1;31576:48:0;;;;;;;31356:274;;:::o;46067:191::-;41249:7;41276:6;-1:-1:-1;;;;;41276:6:0;23948:10;41423:23;41415:68;;;;-1:-1:-1;;;41415:68:0;;;;;;;:::i;:::-;22242:1:::1;22840:7;;:19;;22832:63;;;::::0;-1:-1:-1;;;22832:63:0;;16342:2:1;22832:63:0::1;::::0;::::1;16324:21:1::0;16381:2;16361:18;;;16354:30;16420:33;16400:18;;;16393:61;16471:18;;22832:63:0::1;16140:355:1::0;22832:63:0::1;22242:1;22973:7;:18:::0;46154:49:::2;::::0;46136:12:::2;::::0;46154:10:::2;::::0;46177:21:::2;::::0;46136:12;46154:49;46136:12;46154:49;46177:21;46154:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46135:68;;;46222:7;46214:36;;;::::0;-1:-1:-1;;;46214:36:0;;13700:2:1;46214:36:0::2;::::0;::::2;13682:21:1::0;13739:2;13719:18;;;13712:30;-1:-1:-1;;;13758:18:1;;;13751:46;13814:18;;46214:36:0::2;13498:340:1::0;46214:36:0::2;-1:-1:-1::0;22198:1:0::1;23152:7;:22:::0;46067:191::o;43875:908::-;43450:9;43463:10;43450:23;43442:66;;;;-1:-1:-1;;;43442:66:0;;9437:2:1;43442:66:0;;;9419:21:1;9476:2;9456:18;;;9449:30;9515:32;9495:18;;;9488:60;9565:18;;43442:66:0;9235:354:1;43442:66:0;43983:5:::1;::::0;::::1;::::0;::::1;::::0;-1:-1:-1;;;44029:9:0;::::1;;;44074:34;43983:5:::0;44029:9;44074:14:::1;:34::i;:::-;44052:113;;;::::0;-1:-1:-1;;;44052:113:0;;12939:2:1;44052:113:0::1;::::0;::::1;12921:21:1::0;12978:2;12958:18;;;12951:30;13017:31;12997:18;;;12990:59;13066:18;;44052:113:0::1;12737:353:1::0;44052:113:0::1;44226:14;44214:8;44198:13;26474:12:::0;;;26398:94;44198:13:::1;:24;;;;:::i;:::-;:42;;44176:110;;;::::0;-1:-1:-1;;;44176:110:0;;10634:2:1;44176:110:0::1;::::0;::::1;10616:21:1::0;10673:2;10653:18;;;10646:30;-1:-1:-1;;;10692:18:1;;;10685:48;10750:18;;44176:110:0::1;10432:342:1::0;44176:110:0::1;44358:23;44346:8;44319:24;44332:10;44319:12;:24::i;:::-;:35;;;;:::i;:::-;:62;;44297:134;;;::::0;-1:-1:-1;;;44297:134:0;;15576:2:1;44297:134:0::1;::::0;::::1;15558:21:1::0;15615:2;15595:18;;;15588:30;-1:-1:-1;;;15634:18:1;;;15627:52;15696:18;;44297:134:0::1;15374:346:1::0;44297:134:0::1;44492:10;44444:14;44477:26:::0;;;:14:::1;:26;::::0;;;;;:31;:64;::::1;;;;44537:4;44512:22;;:29;44477:64;44473:203;;;-1:-1:-1::0;44601:10:0::1;44586:26;::::0;;;:14:::1;:26;::::0;;;;:39;;44570:1:::1;::::0;;;44586:26;:39:::1;::::0;44570:1;;44586:39:::1;:::i;:::-;::::0;;;-1:-1:-1;;44640:22:0::1;:24:::0;;;:22:::1;:24;::::0;::::1;:::i;:::-;;;;;;44473:203;44688:31;44698:10;44710:8;44688:9;:31::i;:::-;44730:45;44753:20;44764:9:::0;44753:8;:20:::1;:::i;:::-;44743:31;::::0;:6;:31:::1;:::i;:::-;44730:12;:45::i;:::-;43947:836;;;43875:908:::0;:::o;32363:311::-;32500:28;32510:4;32516:2;32520:7;32500:9;:28::i;:::-;32551:48;32574:4;32580:2;32584:7;32593:5;32551:22;:48::i;:::-;32535:133;;;;-1:-1:-1;;;32535:133:0;;;;;;;:::i;45691:368::-;45809:13;45862:16;45870:7;33000:12;;-1:-1:-1;32990:22:0;32913:105;45862:16;45840:113;;;;-1:-1:-1;;;45840:113:0;;11749:2:1;45840:113:0;;;11731:21:1;11788:2;11768:18;;;11761:30;11827:34;11807:18;;;11800:62;-1:-1:-1;;;11878:18:1;;;11871:45;11933:19;;45840:113:0;11547:411:1;45840:113:0;46010:10;:8;:10::i;:::-;46022:18;:7;:16;:18::i;:::-;45993:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45966:85;;45691:368;;;:::o;45139:250::-;45264:4;45293:19;;;;;:46;;;45338:1;45316:19;:23;45293:46;:88;;;;;45362:19;45343:15;:38;;45293:88;45286:95;45139:250;-1:-1:-1;;;45139:250:0:o;46266:113::-;46324:7;46351:20;46365:5;46351:13;:20::i;42112:201::-;41249:7;41276:6;-1:-1:-1;;;;;41276:6:0;23948:10;41423:23;41415:68;;;;-1:-1:-1;;;41415:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42201:22:0;::::1;42193:73;;;::::0;-1:-1:-1;;;42193:73:0;;7391:2:1;42193:73:0::1;::::0;::::1;7373:21:1::0;7430:2;7410:18;;;7403:30;7469:34;7449:18;;;7442:62;-1:-1:-1;;;7520:18:1;;;7513:36;7566:19;;42193:73:0::1;7189:402:1::0;42193:73:0::1;42277:28;42296:8;42277:18;:28::i;:::-;42112:201:::0;:::o;36600:172::-;36697:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;36697:29:0;-1:-1:-1;;;;;36697:29:0;;;;;;;;;36738:28;;36697:24;;36738:28;;;;;;;36600:172;;;:::o;34965:1529::-;35062:35;35100:20;35112:7;35100:11;:20::i;:::-;35171:18;;35062:58;;-1:-1:-1;35129:22:0;;-1:-1:-1;;;;;35155:34:0;23948:10;-1:-1:-1;;;;;35155:34:0;;:81;;;-1:-1:-1;23948:10:0;35200:20;35212:7;35200:11;:20::i;:::-;-1:-1:-1;;;;;35200:36:0;;35155:81;:142;;;-1:-1:-1;35264:18:0;;35247:50;;23948:10;31693:186;:::i;35247:50::-;35129:169;;35323:17;35307:101;;;;-1:-1:-1;;;35307:101:0;;12520:2:1;35307:101:0;;;12502:21:1;12559:2;12539:18;;;12532:30;12598:34;12578:18;;;12571:62;-1:-1:-1;;;12649:18:1;;;12642:48;12707:19;;35307:101:0;12318:414:1;35307:101:0;35455:4;-1:-1:-1;;;;;35433:26:0;:13;:18;;;-1:-1:-1;;;;;35433:26:0;;35417:98;;;;-1:-1:-1;;;35417:98:0;;10981:2:1;35417:98:0;;;10963:21:1;11020:2;11000:18;;;10993:30;11059:34;11039:18;;;11032:62;-1:-1:-1;;;11110:18:1;;;11103:36;11156:19;;35417:98:0;10779:402:1;35417:98:0;-1:-1:-1;;;;;35530:16:0;;35522:66;;;;-1:-1:-1;;;35522:66:0;;8613:2:1;35522:66:0;;;8595:21:1;8652:2;8632:18;;;8625:30;8691:34;8671:18;;;8664:62;-1:-1:-1;;;8742:18:1;;;8735:35;8787:19;;35522:66:0;8411:401:1;35522:66:0;35697:49;35714:1;35718:7;35727:13;:18;;;35697:8;:49::i;:::-;-1:-1:-1;;;;;35755:18:0;;;;;;:12;:18;;;;;:31;;35785:1;;35755:18;:31;;35785:1;;-1:-1:-1;;;;;35755:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;35755:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;35793:16:0;;-1:-1:-1;35793:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;35793:16:0;;:29;;-1:-1:-1;;35793:29:0;;:::i;:::-;;;-1:-1:-1;;;;;35793:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35852:43:0;;;;;;;;-1:-1:-1;;;;;35852:43:0;;;;;;35878:15;35852:43;;;;;;;;;-1:-1:-1;35829:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;35829:66:0;-1:-1:-1;;;;;;35829:66:0;;;;;;;;;;;36145:11;35841:7;-1:-1:-1;36145:11:0;:::i;:::-;36208:1;36167:24;;;:11;:24;;;;;:29;36123:33;;-1:-1:-1;;;;;;36167:29:0;36163:236;;36225:20;36233:11;33000:12;;-1:-1:-1;32990:22:0;32913:105;36225:20;36221:171;;;36285:97;;;;;;;;36312:18;;-1:-1:-1;;;;;36285:97:0;;;;;;36343:28;;;;36285:97;;;;;;;;;;-1:-1:-1;36258:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;36258:124:0;-1:-1:-1;;;;;;36258:124:0;;;;;;;;;;;;36221:171;36431:7;36427:2;-1:-1:-1;;;;;36412:27:0;36421:4;-1:-1:-1;;;;;36412:27:0;;;;;;;;;;;36446:42;35055:1439;;;34965:1529;;;:::o;33024:98::-;33089:27;33099:2;33103:8;33089:27;;;;;;;;;;;;:9;:27::i;28726:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;28843:16:0;28851:7;33000:12;;-1:-1:-1;32990:22:0;32913:105;28843:16;28835:71;;;;-1:-1:-1;;;28835:71:0;;7798:2:1;28835:71:0;;;7780:21:1;7837:2;7817:18;;;7810:30;7876:34;7856:18;;;7849:62;-1:-1:-1;;;7927:18:1;;;7920:40;7977:19;;28835:71:0;7596:406:1;28835:71:0;28915:26;28963:12;28952:7;:23;28948:93;;29007:22;29017:12;29007:7;:22;:::i;:::-;:26;;29032:1;29007:26;:::i;:::-;28986:47;;28948:93;29069:7;29049:212;29086:18;29078:4;:26;29049:212;;29123:31;29157:17;;;:11;:17;;;;;;;;;29123:51;;;;;;;;;-1:-1:-1;;;;;29123:51:0;;;;;-1:-1:-1;;;29123:51:0;;;;;;;;;;;;29187:28;29183:71;;29235:9;28726:606;-1:-1:-1;;;;28726:606:0:o;29183:71::-;-1:-1:-1;29106:6:0;;;;:::i;:::-;;;;29049:212;;;-1:-1:-1;29269:57:0;;-1:-1:-1;;;29269:57:0;;16702:2:1;29269:57:0;;;16684:21:1;16741:2;16721:18;;;16714:30;16780:34;16760:18;;;16753:62;-1:-1:-1;;;16831:18:1;;;16824:45;16886:19;;29269:57:0;16500:411:1;42473:191:0;42547:16;42566:6;;-1:-1:-1;;;;;42583:17:0;;;-1:-1:-1;;;;;;42583:17:0;;;;;;42616:40;;42566:6;;;;;;;42616:40;;42547:16;42616:40;42536:128;42473:191;:::o;44791:228::-;44869:6;44856:9;:19;;44848:54;;;;-1:-1:-1;;;44848:54:0;;14465:2:1;44848:54:0;;;14447:21:1;14504:2;14484:18;;;14477:30;-1:-1:-1;;;14523:18:1;;;14516:52;14585:18;;44848:54:0;14263:346:1;44848:54:0;44929:6;44917:9;:18;44913:99;;;44960:10;44952:48;44981:18;44993:6;44981:9;:18;:::i;:::-;44952:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38315:690;38452:4;-1:-1:-1;;;;;38469:13:0;;3685:19;:23;38465:535;;38508:72;;-1:-1:-1;;;38508:72:0;;-1:-1:-1;;;;;38508:36:0;;;;;:72;;23948:10;;38559:4;;38565:7;;38574:5;;38508:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38508:72:0;;;;;;;;-1:-1:-1;;38508:72:0;;;;;;;;;;;;:::i;:::-;;;38495:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38739:13:0;;38735:215;;38772:61;;-1:-1:-1;;;38772:61:0;;;;;;;:::i;38735:215::-;38918:6;38912:13;38903:6;38899:2;38895:15;38888:38;38495:464;-1:-1:-1;;;;;;38630:55:0;-1:-1:-1;;;38630:55:0;;-1:-1:-1;38623:62:0;;38465:535;-1:-1:-1;38988:4:0;38465:535;38315:690;;;;;;:::o;45455:114::-;45515:13;45548;45541:20;;;;;:::i;398:723::-;454:13;675:10;671:53;;-1:-1:-1;;702:10:0;;;;;;;;;;;;-1:-1:-1;;;702:10:0;;;;;398:723::o;671:53::-;749:5;734:12;790:78;797:9;;790:78;;823:8;;;;:::i;:::-;;-1:-1:-1;846:10:0;;-1:-1:-1;854:2:0;846:10;;:::i;:::-;;;790:78;;;878:19;910:6;900:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;900:17:0;;878:39;;928:154;935:10;;928:154;;962:11;972:1;962:11;;:::i;:::-;;-1:-1:-1;1031:10:0;1039:2;1031:5;:10;:::i;:::-;1018:24;;:2;:24;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;988:56:0;;;;;;;;-1:-1:-1;1059:11:0;1068:2;1059:11;;:::i;:::-;;;928:154;;28480:240;28541:7;-1:-1:-1;;;;;28573:19:0;;28557:102;;;;-1:-1:-1;;;28557:102:0;;9019:2:1;28557:102:0;;;9001:21:1;9058:2;9038:18;;;9031:30;9097:34;9077:18;;;9070:62;-1:-1:-1;;;9148:18:1;;;9141:47;9205:19;;28557:102:0;8817:413:1;28557:102:0;-1:-1:-1;;;;;;28681:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;28681:32:0;;-1:-1:-1;;;;;28681:32:0;;28480:240::o;33461:1272::-;33589:12;;-1:-1:-1;;;;;33616:16:0;;33608:62;;;;-1:-1:-1;;;33608:62:0;;15174:2:1;33608:62:0;;;15156:21:1;15213:2;15193:18;;;15186:30;15252:34;15232:18;;;15225:62;-1:-1:-1;;;15303:18:1;;;15296:31;15344:19;;33608:62:0;14972:397:1;33608:62:0;33807:21;33815:12;33000;;-1:-1:-1;32990:22:0;32913:105;33807:21;33806:22;33798:64;;;;-1:-1:-1;;;33798:64:0;;14816:2:1;33798:64:0;;;14798:21:1;14855:2;14835:18;;;14828:30;14894:31;14874:18;;;14867:59;14943:18;;33798:64:0;14614:353:1;33798:64:0;33889:12;33877:8;:24;;33869:71;;;;-1:-1:-1;;;33869:71:0;;17532:2:1;33869:71:0;;;17514:21:1;17571:2;17551:18;;;17544:30;17610:34;17590:18;;;17583:62;-1:-1:-1;;;17661:18:1;;;17654:32;17703:19;;33869:71:0;17330:398:1;33869:71:0;-1:-1:-1;;;;;34052:16:0;;34019:30;34052:16;;;:12;:16;;;;;;;;;34019:49;;;;;;;;;-1:-1:-1;;;;;34019:49:0;;;;;-1:-1:-1;;;34019:49:0;;;;;;;;;;;34094:119;;;;;;;;34114:19;;34019:49;;34094:119;;;34114:39;;34144:8;;34114:39;:::i;:::-;-1:-1:-1;;;;;34094:119:0;;;;;34197:8;34162:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;34094:119:0;;;;;;-1:-1:-1;;;;;34075:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;34075:138:0;;;;;;;;;;;;34248:43;;;;;;;;;;;34274:15;34248:43;;;;;;;;34220:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;34220:71:0;-1:-1:-1;;;;;;34220:71:0;;;;;;;;;;;;;;;;;;34232:12;;34344:281;34368:8;34364:1;:12;34344:281;;;34397:38;;34422:12;;-1:-1:-1;;;;;34397:38:0;;;34414:1;;34397:38;;34414:1;;34397:38;34462:59;34493:1;34497:2;34501:12;34515:5;34462:22;:59::i;:::-;34444:150;;;;-1:-1:-1;;;34444:150:0;;;;;;;:::i;:::-;34603:14;;;;:::i;:::-;;;;34378:3;;;;;:::i;:::-;;;;34344:281;;;-1:-1:-1;34633:12:0;:27;;;34667:60;43875:908;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:1138::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:53;;;1170:1;1167;1160:12;1121:53;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:38;1275:2;1264:9;1260:18;1241:38;:::i;:::-;1231:48;;1326:2;1315:9;1311:18;1298:32;1288:42;;1381:2;1370:9;1366:18;1353:32;1404:18;1445:2;1437:6;1434:14;1431:34;;;1461:1;1458;1451:12;1431:34;1499:6;1488:9;1484:22;1474:32;;1544:7;1537:4;1533:2;1529:13;1525:27;1515:55;;1566:1;1563;1556:12;1515:55;1602:2;1589:16;1624:2;1620;1617:10;1614:36;;;1630:18;;:::i;:::-;1705:2;1699:9;1673:2;1759:13;;-1:-1:-1;;1755:22:1;;;1779:2;1751:31;1747:40;1735:53;;;1803:18;;;1823:22;;;1800:46;1797:72;;;1849:18;;:::i;:::-;1889:10;1885:2;1878:22;1924:2;1916:6;1909:18;1964:7;1959:2;1954;1950;1946:11;1942:20;1939:33;1936:53;;;1985:1;1982;1975:12;1936:53;2041:2;2036;2032;2028:11;2023:2;2015:6;2011:15;1998:46;2086:1;2081:2;2076;2068:6;2064:15;2060:24;2053:35;2107:6;2097:16;;;;;;;981:1138;;;;;;;:::o;2124:347::-;2189:6;2197;2250:2;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2289:29;2308:9;2289:29;:::i;:::-;2279:39;;2368:2;2357:9;2353:18;2340:32;2415:5;2408:13;2401:21;2394:5;2391:32;2381:60;;2437:1;2434;2427:12;2381:60;2460:5;2450:15;;;2124:347;;;;;:::o;2476:254::-;2544:6;2552;2605:2;2593:9;2584:7;2580:23;2576:32;2573:52;;;2621:1;2618;2611:12;2573:52;2644:29;2663:9;2644:29;:::i;:::-;2634:39;2720:2;2705:18;;;;2692:32;;-1:-1:-1;;;2476:254:1:o;2735:245::-;2793:6;2846:2;2834:9;2825:7;2821:23;2817:32;2814:52;;;2862:1;2859;2852:12;2814:52;2901:9;2888:23;2920:30;2944:5;2920:30;:::i;2985:249::-;3054:6;3107:2;3095:9;3086:7;3082:23;3078:32;3075:52;;;3123:1;3120;3113:12;3075:52;3155:9;3149:16;3174:30;3198:5;3174:30;:::i;3239:592::-;3310:6;3318;3371:2;3359:9;3350:7;3346:23;3342:32;3339:52;;;3387:1;3384;3377:12;3339:52;3427:9;3414:23;3456:18;3497:2;3489:6;3486:14;3483:34;;;3513:1;3510;3503:12;3483:34;3551:6;3540:9;3536:22;3526:32;;3596:7;3589:4;3585:2;3581:13;3577:27;3567:55;;3618:1;3615;3608:12;3567:55;3658:2;3645:16;3684:2;3676:6;3673:14;3670:34;;;3700:1;3697;3690:12;3670:34;3745:7;3740:2;3731:6;3727:2;3723:15;3719:24;3716:37;3713:57;;;3766:1;3763;3756:12;3713:57;3797:2;3789:11;;;;;3819:6;;-1:-1:-1;3239:592:1;;-1:-1:-1;;;;3239:592:1:o;3836:180::-;3895:6;3948:2;3936:9;3927:7;3923:23;3919:32;3916:52;;;3964:1;3961;3954:12;3916:52;-1:-1:-1;3987:23:1;;3836:180;-1:-1:-1;3836:180:1:o;4021:248::-;4089:6;4097;4150:2;4138:9;4129:7;4125:23;4121:32;4118:52;;;4166:1;4163;4156:12;4118:52;-1:-1:-1;;4189:23:1;;;4259:2;4244:18;;;4231:32;;-1:-1:-1;4021:248:1:o;4274:276::-;4332:6;4385:2;4373:9;4364:7;4360:23;4356:32;4353:52;;;4401:1;4398;4391:12;4353:52;4440:9;4427:23;4490:10;4483:5;4479:22;4472:5;4469:33;4459:61;;4516:1;4513;4506:12;4555:257;4596:3;4634:5;4628:12;4661:6;4656:3;4649:19;4677:63;4733:6;4726:4;4721:3;4717:14;4710:4;4703:5;4699:16;4677:63;:::i;:::-;4794:2;4773:15;-1:-1:-1;;4769:29:1;4760:39;;;;4801:4;4756:50;;4555:257;-1:-1:-1;;4555:257:1:o;4817:637::-;5097:3;5135:6;5129:13;5151:53;5197:6;5192:3;5185:4;5177:6;5173:17;5151:53;:::i;:::-;5267:13;;5226:16;;;;5289:57;5267:13;5226:16;5323:4;5311:17;;5289:57;:::i;:::-;-1:-1:-1;;;5368:20:1;;5397:22;;;5446:1;5435:13;;4817:637;-1:-1:-1;;;;4817:637:1:o;5877:488::-;-1:-1:-1;;;;;6146:15:1;;;6128:34;;6198:15;;6193:2;6178:18;;6171:43;6245:2;6230:18;;6223:34;;;6293:3;6288:2;6273:18;;6266:31;;;6071:4;;6314:45;;6339:19;;6331:6;6314:45;:::i;:::-;6306:53;5877:488;-1:-1:-1;;;;;;5877:488:1:o;6562:219::-;6711:2;6700:9;6693:21;6674:4;6731:44;6771:2;6760:9;6756:18;6748:6;6731:44;:::i;11186:356::-;11388:2;11370:21;;;11407:18;;;11400:30;11466:34;11461:2;11446:18;;11439:62;11533:2;11518:18;;11186:356::o;13843:415::-;14045:2;14027:21;;;14084:2;14064:18;;;14057:30;14123:34;14118:2;14103:18;;14096:62;-1:-1:-1;;;14189:2:1;14174:18;;14167:49;14248:3;14233:19;;13843:415::o;18682:253::-;18722:3;-1:-1:-1;;;;;18811:2:1;18808:1;18804:10;18841:2;18838:1;18834:10;18872:3;18868:2;18864:12;18859:3;18856:21;18853:47;;;18880:18;;:::i;:::-;18916:13;;18682:253;-1:-1:-1;;;;18682:253:1:o;18940:128::-;18980:3;19011:1;19007:6;19004:1;19001:13;18998:39;;;19017:18;;:::i;:::-;-1:-1:-1;19053:9:1;;18940:128::o;19073:120::-;19113:1;19139;19129:35;;19144:18;;:::i;:::-;-1:-1:-1;19178:9:1;;19073:120::o;19198:168::-;19238:7;19304:1;19300;19296:6;19292:14;19289:1;19286:21;19281:1;19274:9;19267:17;19263:45;19260:71;;;19311:18;;:::i;:::-;-1:-1:-1;19351:9:1;;19198:168::o;19371:246::-;19411:4;-1:-1:-1;;;;;19524:10:1;;;;19494;;19546:12;;;19543:38;;;19561:18;;:::i;:::-;19598:13;;19371:246;-1:-1:-1;;;19371:246:1:o;19622:125::-;19662:4;19690:1;19687;19684:8;19681:34;;;19695:18;;:::i;:::-;-1:-1:-1;19732:9:1;;19622:125::o;19752:258::-;19824:1;19834:113;19848:6;19845:1;19842:13;19834:113;;;19924:11;;;19918:18;19905:11;;;19898:39;19870:2;19863:10;19834:113;;;19965:6;19962:1;19959:13;19956:48;;;-1:-1:-1;;20000:1:1;19982:16;;19975:27;19752:258::o;20015:136::-;20054:3;20082:5;20072:39;;20091:18;;:::i;:::-;-1:-1:-1;;;20127:18:1;;20015:136::o;20156:380::-;20235:1;20231:12;;;;20278;;;20299:61;;20353:4;20345:6;20341:17;20331:27;;20299:61;20406:2;20398:6;20395:14;20375:18;20372:38;20369:161;;;20452:10;20447:3;20443:20;20440:1;20433:31;20487:4;20484:1;20477:15;20515:4;20512:1;20505:15;20369:161;;20156:380;;;:::o;20541:135::-;20580:3;-1:-1:-1;;20601:17:1;;20598:43;;;20621:18;;:::i;:::-;-1:-1:-1;20668:1:1;20657:13;;20541:135::o;20681:112::-;20713:1;20739;20729:35;;20744:18;;:::i;:::-;-1:-1:-1;20778:9:1;;20681:112::o;20798:127::-;20859:10;20854:3;20850:20;20847:1;20840:31;20890:4;20887:1;20880:15;20914:4;20911:1;20904:15;20930:127;20991:10;20986:3;20982:20;20979:1;20972:31;21022:4;21019:1;21012:15;21046:4;21043:1;21036:15;21062:127;21123:10;21118:3;21114:20;21111:1;21104:31;21154:4;21151:1;21144:15;21178:4;21175:1;21168:15;21194:127;21255:10;21250:3;21246:20;21243:1;21236:31;21286:4;21283:1;21276:15;21310:4;21307:1;21300:15;21326:131;-1:-1:-1;;;;;;21400:32:1;;21390:43;;21380:71;;21447:1;21444;21437:12

Swarm Source

ipfs://de3232c43311f72436fec752b5c32b1820d3d22da0b3487764db8aa821c0e2d9
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.