ETH Price: $3,692.67 (+3.46%)

Token

ERC-20: KoolKongz (Kong)
 

Overview

Max Total Supply

488 Kong

Holders

40

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
leftlost.eth
Balance
4 Kong
0xb4BB62cf25a97d75a11D1848EF23Ce66Ee38d70d
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
KoolKongz

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// 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 v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

// 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 v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// 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: 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: KoolKongz.sol



pragma solidity ^0.8.0;





contract KoolKongz is Ownable, ERC721A, ReentrancyGuard {
    uint256 public immutable maxPerAddressDuringMint;

    struct SaleConfig {
        uint64 publicPrice;
        bool paused;
    }

    SaleConfig public saleConfig;

    constructor(uint256 maxBatchSize_, uint256 collectionSize_)
        ERC721A("KoolKongz", "Kong", maxBatchSize_, collectionSize_)
    {
        maxPerAddressDuringMint = maxBatchSize_;
        saleConfig.publicPrice = 0.035 ether;
        saleConfig.paused = true;
    }

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

    function publicSaleMint(uint256 quantity) external payable callerIsUser {
        SaleConfig memory config = saleConfig;
        bool state = config.paused;
        uint256 publicPrice = uint256(config.publicPrice);

        require(
            isPublicSaleOn(publicPrice, state),
            "public sale has not begun yet"
        );
        require(
            totalSupply() + quantity <= collectionSize,
            "reached max supply"
        );
        require(
            numberMinted(msg.sender) + quantity <= maxPerAddressDuringMint,
            "can not mint this many"
        );
        _safeMint(msg.sender, quantity);
        refundIfOver(publicPrice * quantity);
    }

    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 isPublicSaleOn(uint256 publicPriceWei, bool state)
        internal
        view
        returns (bool)
    {
        return publicPriceWei != 0 && !state;
    }

    // For marketing etc.
    function devMint(uint256 quantity) external onlyOwner {
        require(
            totalSupply() + quantity <= collectionSize,
            "reached max supply"
        );
        require(
            quantity % maxBatchSize == 0,
            "can only mint a multiple of the maxBatchSize"
        );
        uint256 numChunks = quantity / maxBatchSize;
        for (uint256 i = 0; i < numChunks; i++) {
            _safeMint(msg.sender, maxBatchSize);
        }
    }

    function SetupSaleInfo(uint64 publicPriceWei, bool state)
        external
        onlyOwner
    {
        saleConfig = SaleConfig(publicPriceWei, state);
    }

    // // 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 withdrawMoney() external onlyOwner nonReentrant {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }

    function setOwnersExplicit(uint256 quantity)
        external
        onlyOwner
        nonReentrant
    {
        _setOwnersExplicit(quantity);
    }

    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"}],"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":"uint64","name":"publicPriceWei","type":"uint64"},{"internalType":"bool","name":"state","type":"bool"}],"name":"SetupSaleInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","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":[],"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":[{"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":[],"name":"saleConfig","outputs":[{"internalType":"uint64","name":"publicPrice","type":"uint64"},{"internalType":"bool","name":"paused","type":"bool"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e0604052600060015560006008553480156200001b57600080fd5b5060405162002c3338038062002c338339810160408190526200003e91620002c3565b6040518060400160405280600981526020016825b7b7b625b7b733bd60b91b815250604051806040016040528060048152602001634b6f6e6760e01b81525083836200009962000093620001c960201b60201c565b620001cd565b60008111620001065760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001685760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b6064820152608401620000fd565b83516200017d9060029060208701906200021d565b508251620001939060039060208601906200021d565b5060a091909152608052505060016009555060c052600a80546001600160481b0319166801007c58508723800017905562000324565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200022b90620002e7565b90600052602060002090601f0160209004810192826200024f57600085556200029a565b82601f106200026a57805160ff19168380011785556200029a565b828001600101855582156200029a579182015b828111156200029a5782518255916020019190600101906200027d565b50620002a8929150620002ac565b5090565b5b80821115620002a85760008155600101620002ad565b60008060408385031215620002d6578182fd5b505080516020909101519092909150565b600181811c90821680620002fc57607f821691505b602082108114156200031e57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c0516128a062000393600039600081816103e9015261115c015260008181610b8101528181610c0f01528181610c4701528181611a7a01528181611aa4015261201c015260008181610b06015281816110e401528181611862015261189401526128a06000f3fe6080604052600436106101cd5760003560e01c80638bc35c2f116100f7578063b3ab66b011610095578063dc33e68111610064578063dc33e68114610574578063e985e9c514610594578063eddc080d146105dd578063f2fde38b146105fd57600080fd5b8063b3ab66b01461050b578063b88d4fde1461051e578063c87b56dd1461053e578063d7224ba01461055e57600080fd5b80639231ab2a116100d15780639231ab2a1461047457806395d89b41146104c1578063a22cb465146104d6578063ac446002146104f657600080fd5b80638bc35c2f146103d75780638da5cb5b1461040b57806390aa0b0f1461042957600080fd5b80632f745c591161016f57806355f804b31161013e57806355f804b3146103625780636352211e1461038257806370a08231146103a2578063715018a6146103c257600080fd5b80632f745c59146102e2578063375a069a1461030257806342842e0e146103225780634f6ccce71461034257600080fd5b8063095ea7b3116101ab578063095ea7b31461026157806318160ddd1461028357806323b872dd146102a25780632d20fb60146102c257600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed3660046124a2565b61061d565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c61068a565b6040516101fe919061261e565b34801561023557600080fd5b50610249610244366004612546565b61071c565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004612479565b6107ac565b005b34801561028f57600080fd5b506001545b6040519081526020016101fe565b3480156102ae57600080fd5b506102816102bd366004612341565b6108c4565b3480156102ce57600080fd5b506102816102dd366004612546565b6108cf565b3480156102ee57600080fd5b506102946102fd366004612479565b610962565b34801561030e57600080fd5b5061028161031d366004612546565b610ada565b34801561032e57600080fd5b5061028161033d366004612341565b610c7d565b34801561034e57600080fd5b5061029461035d366004612546565b610c98565b34801561036e57600080fd5b5061028161037d3660046124da565b610d01565b34801561038e57600080fd5b5061024961039d366004612546565b610d37565b3480156103ae57600080fd5b506102946103bd3660046122f5565b610d49565b3480156103ce57600080fd5b50610281610dda565b3480156103e357600080fd5b506102947f000000000000000000000000000000000000000000000000000000000000000081565b34801561041757600080fd5b506000546001600160a01b0316610249565b34801561043557600080fd5b50600a54610455906001600160401b03811690600160401b900460ff1682565b604080516001600160401b0390931683529015156020830152016101fe565b34801561048057600080fd5b5061049461048f366004612546565b610e10565b6040805182516001600160a01b031681526020928301516001600160401b031692810192909252016101fe565b3480156104cd57600080fd5b5061021c610e2d565b3480156104e257600080fd5b506102816104f1366004612450565b610e3c565b34801561050257600080fd5b50610281610f01565b610281610519366004612546565b61100e565b34801561052a57600080fd5b5061028161053936600461237c565b6111f8565b34801561054a57600080fd5b5061021c610559366004612546565b61122b565b34801561056a57600080fd5b5061029460085481565b34801561058057600080fd5b5061029461058f3660046122f5565b6112f8565b3480156105a057600080fd5b506101f26105af36600461230f565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105e957600080fd5b506102816105f836600461255e565b611303565b34801561060957600080fd5b506102816106183660046122f5565b611374565b60006001600160e01b031982166380ac58cd60e01b148061064e57506001600160e01b03198216635b5e139f60e01b145b8061066957506001600160e01b0319821663780e9d6360e01b145b8061068457506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610699906127a8565b80601f01602080910402602001604051908101604052809291908181526020018280546106c5906127a8565b80156107125780601f106106e757610100808354040283529160200191610712565b820191906000526020600020905b8154815290600101906020018083116106f557829003601f168201915b5050505050905090565b6000610729826001541190565b6107905760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107b782610d37565b9050806001600160a01b0316836001600160a01b031614156108265760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610787565b336001600160a01b0382161480610842575061084281336105af565b6108b45760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610787565b6108bf83838361140f565b505050565b6108bf83838361146b565b6000546001600160a01b031633146108f95760405162461bcd60e51b815260040161078790612631565b6002600954141561094c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610787565b600260095561095a816117f1565b506001600955565b600061096d83610d49565b82106109c65760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610787565b60006109d160015490565b905060008060005b83811015610a7a576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610a2b57805192505b876001600160a01b0316836001600160a01b03161415610a675786841415610a595750935061068492505050565b83610a63816127e3565b9450505b5080610a72816127e3565b9150506109d9565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610787565b6000546001600160a01b03163314610b045760405162461bcd60e51b815260040161078790612631565b7f000000000000000000000000000000000000000000000000000000000000000081610b2f60015490565b610b3991906126db565b1115610b7c5760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610787565b610ba67f0000000000000000000000000000000000000000000000000000000000000000826127fe565b15610c085760405162461bcd60e51b815260206004820152602c60248201527f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060448201526b6d6178426174636853697a6560a01b6064820152608401610787565b6000610c347f0000000000000000000000000000000000000000000000000000000000000000836126f3565b905060005b818110156108bf57610c6b337f00000000000000000000000000000000000000000000000000000000000000006119da565b80610c75816127e3565b915050610c39565b6108bf838383604051806020016040528060008152506111f8565b6000610ca360015490565b8210610cfd5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610787565b5090565b6000546001600160a01b03163314610d2b5760405162461bcd60e51b815260040161078790612631565b6108bf600b8383612239565b6000610d42826119f8565b5192915050565b60006001600160a01b038216610db55760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610787565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610e045760405162461bcd60e51b815260040161078790612631565b610e0e6000611ba1565b565b6040805180820190915260008082526020820152610684826119f8565b606060038054610699906127a8565b6001600160a01b038216331415610e955760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610787565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b03163314610f2b5760405162461bcd60e51b815260040161078790612631565b60026009541415610f7e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610787565b6002600955604051600090339047908381818185875af1925050503d8060008114610fc5576040519150601f19603f3d011682016040523d82523d6000602084013e610fca565b606091505b505090508061095a5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610787565b32331461105d5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610787565b60408051808201909152600a546001600160401b038116808352600160401b90910460ff16151560208301819052906110968183611bf1565b6110e25760405162461bcd60e51b815260206004820152601d60248201527f7075626c69632073616c6520686173206e6f7420626567756e207965740000006044820152606401610787565b7f00000000000000000000000000000000000000000000000000000000000000008461110d60015490565b61111791906126db565b111561115a5760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610787565b7f000000000000000000000000000000000000000000000000000000000000000084611185336112f8565b61118f91906126db565b11156111d65760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b6044820152606401610787565b6111e033856119da565b6111f26111ed8583612707565b611c04565b50505050565b61120384848461146b565b61120f84848484611c8b565b6111f25760405162461bcd60e51b815260040161078790612666565b6060611238826001541190565b61129c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610787565b60006112a6611d99565b905060008151116112c657604051806020016040528060008152506112f1565b806112d084611da8565b6040516020016112e19291906125b2565b6040516020818303038152906040525b9392505050565b600061068482611ec1565b6000546001600160a01b0316331461132d5760405162461bcd60e51b815260040161078790612631565b604080518082019091526001600160401b03929092168083529015156020909201829052600a805468ffffffffffffffffff1916909117600160401b909202919091179055565b6000546001600160a01b0316331461139e5760405162461bcd60e51b815260040161078790612631565b6001600160a01b0381166114035760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610787565b61140c81611ba1565b50565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611476826119f8565b80519091506000906001600160a01b0316336001600160a01b031614806114ad5750336114a28461071c565b6001600160a01b0316145b806114bf575081516114bf90336105af565b9050806115295760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610787565b846001600160a01b031682600001516001600160a01b03161461159d5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610787565b6001600160a01b0384166116015760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610787565b611611600084846000015161140f565b6001600160a01b03851660009081526005602052604081208054600192906116439084906001600160801b0316612726565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261168f918591166126b9565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556117168460016126db565b6000818152600460205260409020549091506001600160a01b03166117a757611740816001541190565b156117a75760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600854816118415760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610787565b6000600161184f84846126db565b611859919061274e565b905061188660017f000000000000000000000000000000000000000000000000000000000000000061274e565b8111156118bb576118b860017f000000000000000000000000000000000000000000000000000000000000000061274e565b90505b6118c6816001541190565b6119215760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610787565b815b8181116119c6576000818152600460205260409020546001600160a01b03166119b4576000611951826119f8565b60408051808201825282516001600160a01b0390811682526020938401516001600160401b039081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b806119be816127e3565b915050611923565b506119d28160016126db565b600855505050565b6119f4828260405180602001604052806000815250611f5f565b5050565b6040805180820190915260008082526020820152611a17826001541190565b611a765760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610787565b60007f00000000000000000000000000000000000000000000000000000000000000008310611ad757611ac97f00000000000000000000000000000000000000000000000000000000000000008461274e565b611ad49060016126db565b90505b825b818110611b40576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611b2d57949350505050565b5080611b3881612791565b915050611ad9565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610787565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600082158015906112f157505015919050565b80341015611c4d5760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b6044820152606401610787565b8034111561140c57336108fc611c63833461274e565b6040518115909202916000818181858888f193505050501580156119f4573d6000803e3d6000fd5b60006001600160a01b0384163b15611d8d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ccf9033908990889088906004016125e1565b602060405180830381600087803b158015611ce957600080fd5b505af1925050508015611d19575060408051601f3d908101601f19168201909252611d16918101906124be565b60015b611d73573d808015611d47576040519150601f19603f3d011682016040523d82523d6000602084013e611d4c565b606091505b508051611d6b5760405162461bcd60e51b815260040161078790612666565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d91565b5060015b949350505050565b6060600b8054610699906127a8565b606081611dcc5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611df65780611de0816127e3565b9150611def9050600a836126f3565b9150611dd0565b6000816001600160401b03811115611e1e57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e48576020820181803683370190505b5090505b8415611d9157611e5d60018361274e565b9150611e6a600a866127fe565b611e759060306126db565b60f81b818381518110611e9857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611eba600a866126f3565b9450611e4c565b60006001600160a01b038216611f335760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610787565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b038416611fc25760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610787565b611fcd816001541190565b1561201a5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610787565b7f00000000000000000000000000000000000000000000000000000000000000008311156120955760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610787565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906120f19087906126b9565b6001600160801b0316815260200185836020015161210f91906126b9565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b8581101561222e5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46121f26000888488611c8b565b61220e5760405162461bcd60e51b815260040161078790612666565b81612218816127e3565b9250508080612226906127e3565b9150506121a5565b5060018190556117e9565b828054612245906127a8565b90600052602060002090601f01602090048101928261226757600085556122ad565b82601f106122805782800160ff198235161785556122ad565b828001600101855582156122ad579182015b828111156122ad578235825591602001919060010190612292565b50610cfd9291505b80821115610cfd57600081556001016122b5565b80356001600160a01b03811681146122e057600080fd5b919050565b803580151581146122e057600080fd5b600060208284031215612306578081fd5b6112f1826122c9565b60008060408385031215612321578081fd5b61232a836122c9565b9150612338602084016122c9565b90509250929050565b600080600060608486031215612355578081fd5b61235e846122c9565b925061236c602085016122c9565b9150604084013590509250925092565b60008060008060808587031215612391578081fd5b61239a856122c9565b93506123a8602086016122c9565b92506040850135915060608501356001600160401b03808211156123ca578283fd5b818701915087601f8301126123dd578283fd5b8135818111156123ef576123ef61283e565b604051601f8201601f19908116603f011681019083821181831017156124175761241761283e565b816040528281528a602084870101111561242f578586fd5b82602086016020830137918201602001949094529598949750929550505050565b60008060408385031215612462578182fd5b61246b836122c9565b9150612338602084016122e5565b6000806040838503121561248b578182fd5b612494836122c9565b946020939093013593505050565b6000602082840312156124b3578081fd5b81356112f181612854565b6000602082840312156124cf578081fd5b81516112f181612854565b600080602083850312156124ec578182fd5b82356001600160401b0380821115612502578384fd5b818501915085601f830112612515578384fd5b813581811115612523578485fd5b866020828501011115612534578485fd5b60209290920196919550909350505050565b600060208284031215612557578081fd5b5035919050565b60008060408385031215612570578182fd5b82356001600160401b038116811461246b578283fd5b6000815180845261259e816020860160208601612765565b601f01601f19169290920160200192915050565b600083516125c4818460208801612765565b8351908301906125d8818360208801612765565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061261490830184612586565b9695505050505050565b6020815260006112f16020830184612586565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156125d8576125d8612812565b600082198211156126ee576126ee612812565b500190565b60008261270257612702612828565b500490565b600081600019048311821515161561272157612721612812565b500290565b60006001600160801b038381169083168181101561274657612746612812565b039392505050565b60008282101561276057612760612812565b500390565b60005b83811015612780578181015183820152602001612768565b838111156111f25750506000910152565b6000816127a0576127a0612812565b506000190190565b600181811c908216806127bc57607f821691505b602082108114156127dd57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127f7576127f7612812565b5060010190565b60008261280d5761280d612828565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461140c57600080fdfea2646970667358221220eb9bcf34ea27d09d39362bd88fedb0223b50a928527186cc2a88d880d7a18e6564736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000001b39

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c80638bc35c2f116100f7578063b3ab66b011610095578063dc33e68111610064578063dc33e68114610574578063e985e9c514610594578063eddc080d146105dd578063f2fde38b146105fd57600080fd5b8063b3ab66b01461050b578063b88d4fde1461051e578063c87b56dd1461053e578063d7224ba01461055e57600080fd5b80639231ab2a116100d15780639231ab2a1461047457806395d89b41146104c1578063a22cb465146104d6578063ac446002146104f657600080fd5b80638bc35c2f146103d75780638da5cb5b1461040b57806390aa0b0f1461042957600080fd5b80632f745c591161016f57806355f804b31161013e57806355f804b3146103625780636352211e1461038257806370a08231146103a2578063715018a6146103c257600080fd5b80632f745c59146102e2578063375a069a1461030257806342842e0e146103225780634f6ccce71461034257600080fd5b8063095ea7b3116101ab578063095ea7b31461026157806318160ddd1461028357806323b872dd146102a25780632d20fb60146102c257600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed3660046124a2565b61061d565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c61068a565b6040516101fe919061261e565b34801561023557600080fd5b50610249610244366004612546565b61071c565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004612479565b6107ac565b005b34801561028f57600080fd5b506001545b6040519081526020016101fe565b3480156102ae57600080fd5b506102816102bd366004612341565b6108c4565b3480156102ce57600080fd5b506102816102dd366004612546565b6108cf565b3480156102ee57600080fd5b506102946102fd366004612479565b610962565b34801561030e57600080fd5b5061028161031d366004612546565b610ada565b34801561032e57600080fd5b5061028161033d366004612341565b610c7d565b34801561034e57600080fd5b5061029461035d366004612546565b610c98565b34801561036e57600080fd5b5061028161037d3660046124da565b610d01565b34801561038e57600080fd5b5061024961039d366004612546565b610d37565b3480156103ae57600080fd5b506102946103bd3660046122f5565b610d49565b3480156103ce57600080fd5b50610281610dda565b3480156103e357600080fd5b506102947f000000000000000000000000000000000000000000000000000000000000006481565b34801561041757600080fd5b506000546001600160a01b0316610249565b34801561043557600080fd5b50600a54610455906001600160401b03811690600160401b900460ff1682565b604080516001600160401b0390931683529015156020830152016101fe565b34801561048057600080fd5b5061049461048f366004612546565b610e10565b6040805182516001600160a01b031681526020928301516001600160401b031692810192909252016101fe565b3480156104cd57600080fd5b5061021c610e2d565b3480156104e257600080fd5b506102816104f1366004612450565b610e3c565b34801561050257600080fd5b50610281610f01565b610281610519366004612546565b61100e565b34801561052a57600080fd5b5061028161053936600461237c565b6111f8565b34801561054a57600080fd5b5061021c610559366004612546565b61122b565b34801561056a57600080fd5b5061029460085481565b34801561058057600080fd5b5061029461058f3660046122f5565b6112f8565b3480156105a057600080fd5b506101f26105af36600461230f565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105e957600080fd5b506102816105f836600461255e565b611303565b34801561060957600080fd5b506102816106183660046122f5565b611374565b60006001600160e01b031982166380ac58cd60e01b148061064e57506001600160e01b03198216635b5e139f60e01b145b8061066957506001600160e01b0319821663780e9d6360e01b145b8061068457506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610699906127a8565b80601f01602080910402602001604051908101604052809291908181526020018280546106c5906127a8565b80156107125780601f106106e757610100808354040283529160200191610712565b820191906000526020600020905b8154815290600101906020018083116106f557829003601f168201915b5050505050905090565b6000610729826001541190565b6107905760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107b782610d37565b9050806001600160a01b0316836001600160a01b031614156108265760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610787565b336001600160a01b0382161480610842575061084281336105af565b6108b45760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610787565b6108bf83838361140f565b505050565b6108bf83838361146b565b6000546001600160a01b031633146108f95760405162461bcd60e51b815260040161078790612631565b6002600954141561094c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610787565b600260095561095a816117f1565b506001600955565b600061096d83610d49565b82106109c65760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610787565b60006109d160015490565b905060008060005b83811015610a7a576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610a2b57805192505b876001600160a01b0316836001600160a01b03161415610a675786841415610a595750935061068492505050565b83610a63816127e3565b9450505b5080610a72816127e3565b9150506109d9565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610787565b6000546001600160a01b03163314610b045760405162461bcd60e51b815260040161078790612631565b7f0000000000000000000000000000000000000000000000000000000000001b3981610b2f60015490565b610b3991906126db565b1115610b7c5760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610787565b610ba67f0000000000000000000000000000000000000000000000000000000000000064826127fe565b15610c085760405162461bcd60e51b815260206004820152602c60248201527f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060448201526b6d6178426174636853697a6560a01b6064820152608401610787565b6000610c347f0000000000000000000000000000000000000000000000000000000000000064836126f3565b905060005b818110156108bf57610c6b337f00000000000000000000000000000000000000000000000000000000000000646119da565b80610c75816127e3565b915050610c39565b6108bf838383604051806020016040528060008152506111f8565b6000610ca360015490565b8210610cfd5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610787565b5090565b6000546001600160a01b03163314610d2b5760405162461bcd60e51b815260040161078790612631565b6108bf600b8383612239565b6000610d42826119f8565b5192915050565b60006001600160a01b038216610db55760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610787565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610e045760405162461bcd60e51b815260040161078790612631565b610e0e6000611ba1565b565b6040805180820190915260008082526020820152610684826119f8565b606060038054610699906127a8565b6001600160a01b038216331415610e955760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610787565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b03163314610f2b5760405162461bcd60e51b815260040161078790612631565b60026009541415610f7e5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610787565b6002600955604051600090339047908381818185875af1925050503d8060008114610fc5576040519150601f19603f3d011682016040523d82523d6000602084013e610fca565b606091505b505090508061095a5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610787565b32331461105d5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610787565b60408051808201909152600a546001600160401b038116808352600160401b90910460ff16151560208301819052906110968183611bf1565b6110e25760405162461bcd60e51b815260206004820152601d60248201527f7075626c69632073616c6520686173206e6f7420626567756e207965740000006044820152606401610787565b7f0000000000000000000000000000000000000000000000000000000000001b398461110d60015490565b61111791906126db565b111561115a5760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610787565b7f000000000000000000000000000000000000000000000000000000000000006484611185336112f8565b61118f91906126db565b11156111d65760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b6044820152606401610787565b6111e033856119da565b6111f26111ed8583612707565b611c04565b50505050565b61120384848461146b565b61120f84848484611c8b565b6111f25760405162461bcd60e51b815260040161078790612666565b6060611238826001541190565b61129c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610787565b60006112a6611d99565b905060008151116112c657604051806020016040528060008152506112f1565b806112d084611da8565b6040516020016112e19291906125b2565b6040516020818303038152906040525b9392505050565b600061068482611ec1565b6000546001600160a01b0316331461132d5760405162461bcd60e51b815260040161078790612631565b604080518082019091526001600160401b03929092168083529015156020909201829052600a805468ffffffffffffffffff1916909117600160401b909202919091179055565b6000546001600160a01b0316331461139e5760405162461bcd60e51b815260040161078790612631565b6001600160a01b0381166114035760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610787565b61140c81611ba1565b50565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611476826119f8565b80519091506000906001600160a01b0316336001600160a01b031614806114ad5750336114a28461071c565b6001600160a01b0316145b806114bf575081516114bf90336105af565b9050806115295760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610787565b846001600160a01b031682600001516001600160a01b03161461159d5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610787565b6001600160a01b0384166116015760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610787565b611611600084846000015161140f565b6001600160a01b03851660009081526005602052604081208054600192906116439084906001600160801b0316612726565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261168f918591166126b9565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556117168460016126db565b6000818152600460205260409020549091506001600160a01b03166117a757611740816001541190565b156117a75760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600854816118415760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610787565b6000600161184f84846126db565b611859919061274e565b905061188660017f0000000000000000000000000000000000000000000000000000000000001b3961274e565b8111156118bb576118b860017f0000000000000000000000000000000000000000000000000000000000001b3961274e565b90505b6118c6816001541190565b6119215760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610787565b815b8181116119c6576000818152600460205260409020546001600160a01b03166119b4576000611951826119f8565b60408051808201825282516001600160a01b0390811682526020938401516001600160401b039081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b806119be816127e3565b915050611923565b506119d28160016126db565b600855505050565b6119f4828260405180602001604052806000815250611f5f565b5050565b6040805180820190915260008082526020820152611a17826001541190565b611a765760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610787565b60007f00000000000000000000000000000000000000000000000000000000000000648310611ad757611ac97f00000000000000000000000000000000000000000000000000000000000000648461274e565b611ad49060016126db565b90505b825b818110611b40576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215611b2d57949350505050565b5080611b3881612791565b915050611ad9565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610787565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600082158015906112f157505015919050565b80341015611c4d5760405162461bcd60e51b81526020600482015260166024820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b6044820152606401610787565b8034111561140c57336108fc611c63833461274e565b6040518115909202916000818181858888f193505050501580156119f4573d6000803e3d6000fd5b60006001600160a01b0384163b15611d8d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ccf9033908990889088906004016125e1565b602060405180830381600087803b158015611ce957600080fd5b505af1925050508015611d19575060408051601f3d908101601f19168201909252611d16918101906124be565b60015b611d73573d808015611d47576040519150601f19603f3d011682016040523d82523d6000602084013e611d4c565b606091505b508051611d6b5760405162461bcd60e51b815260040161078790612666565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d91565b5060015b949350505050565b6060600b8054610699906127a8565b606081611dcc5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611df65780611de0816127e3565b9150611def9050600a836126f3565b9150611dd0565b6000816001600160401b03811115611e1e57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e48576020820181803683370190505b5090505b8415611d9157611e5d60018361274e565b9150611e6a600a866127fe565b611e759060306126db565b60f81b818381518110611e9857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611eba600a866126f3565b9450611e4c565b60006001600160a01b038216611f335760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610787565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b038416611fc25760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610787565b611fcd816001541190565b1561201a5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610787565b7f00000000000000000000000000000000000000000000000000000000000000648311156120955760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610787565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906120f19087906126b9565b6001600160801b0316815260200185836020015161210f91906126b9565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b8581101561222e5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46121f26000888488611c8b565b61220e5760405162461bcd60e51b815260040161078790612666565b81612218816127e3565b9250508080612226906127e3565b9150506121a5565b5060018190556117e9565b828054612245906127a8565b90600052602060002090601f01602090048101928261226757600085556122ad565b82601f106122805782800160ff198235161785556122ad565b828001600101855582156122ad579182015b828111156122ad578235825591602001919060010190612292565b50610cfd9291505b80821115610cfd57600081556001016122b5565b80356001600160a01b03811681146122e057600080fd5b919050565b803580151581146122e057600080fd5b600060208284031215612306578081fd5b6112f1826122c9565b60008060408385031215612321578081fd5b61232a836122c9565b9150612338602084016122c9565b90509250929050565b600080600060608486031215612355578081fd5b61235e846122c9565b925061236c602085016122c9565b9150604084013590509250925092565b60008060008060808587031215612391578081fd5b61239a856122c9565b93506123a8602086016122c9565b92506040850135915060608501356001600160401b03808211156123ca578283fd5b818701915087601f8301126123dd578283fd5b8135818111156123ef576123ef61283e565b604051601f8201601f19908116603f011681019083821181831017156124175761241761283e565b816040528281528a602084870101111561242f578586fd5b82602086016020830137918201602001949094529598949750929550505050565b60008060408385031215612462578182fd5b61246b836122c9565b9150612338602084016122e5565b6000806040838503121561248b578182fd5b612494836122c9565b946020939093013593505050565b6000602082840312156124b3578081fd5b81356112f181612854565b6000602082840312156124cf578081fd5b81516112f181612854565b600080602083850312156124ec578182fd5b82356001600160401b0380821115612502578384fd5b818501915085601f830112612515578384fd5b813581811115612523578485fd5b866020828501011115612534578485fd5b60209290920196919550909350505050565b600060208284031215612557578081fd5b5035919050565b60008060408385031215612570578182fd5b82356001600160401b038116811461246b578283fd5b6000815180845261259e816020860160208601612765565b601f01601f19169290920160200192915050565b600083516125c4818460208801612765565b8351908301906125d8818360208801612765565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061261490830184612586565b9695505050505050565b6020815260006112f16020830184612586565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156125d8576125d8612812565b600082198211156126ee576126ee612812565b500190565b60008261270257612702612828565b500490565b600081600019048311821515161561272157612721612812565b500290565b60006001600160801b038381169083168181101561274657612746612812565b039392505050565b60008282101561276057612760612812565b500390565b60005b83811015612780578181015183820152602001612768565b838111156111f25750506000910152565b6000816127a0576127a0612812565b506000190190565b600181811c908216806127bc57607f821691505b602082108114156127dd57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127f7576127f7612812565b5060010190565b60008261280d5761280d612828565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461140c57600080fdfea2646970667358221220eb9bcf34ea27d09d39362bd88fedb0223b50a928527186cc2a88d880d7a18e6564736f6c63430008040033

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

00000000000000000000000000000000000000000000000000000000000000640000000000000000000000000000000000000000000000000000000000001b39

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 100
Arg [1] : collectionSize_ (uint256): 6969

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [1] : 0000000000000000000000000000000000000000000000000000000000001b39


Deployed Bytecode Sourcemap

42296:3425:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27397:370;;;;;;;;;;-1:-1:-1;27397:370:0;;;;;:::i;:::-;;:::i;:::-;;;6458:14:1;;6451:22;6433:41;;6421:2;6406:18;27397:370:0;;;;;;;;29123:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30648:204::-;;;;;;;;;;-1:-1:-1;30648:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5756:32:1;;;5738:51;;5726:2;5711:18;30648:204:0;5693:102:1;30211:379:0;;;;;;;;;;-1:-1:-1;30211:379:0;;;;;:::i;:::-;;:::i;:::-;;25958:94;;;;;;;;;;-1:-1:-1;26034:12:0;;25958:94;;;19340:25:1;;;19328:2;19313:18;25958:94:0;19295:76:1;31498:142:0;;;;;;;;;;-1:-1:-1;31498:142:0;;;;;:::i;:::-;;:::i;45266:156::-;;;;;;;;;;-1:-1:-1;45266:156:0;;;;;:::i;:::-;;:::i;26589:744::-;;;;;;;;;;-1:-1:-1;26589:744:0;;;;;:::i;:::-;;:::i;44107:482::-;;;;;;;;;;-1:-1:-1;44107:482:0;;;;;:::i;:::-;;:::i;31703:157::-;;;;;;;;;;-1:-1:-1;31703:157:0;;;;;:::i;:::-;;:::i;26121:177::-;;;;;;;;;;-1:-1:-1;26121:177:0;;;;;:::i;:::-;;:::i;44953:106::-;;;;;;;;;;-1:-1:-1;44953:106:0;;;;;:::i;:::-;;:::i;28946:118::-;;;;;;;;;;-1:-1:-1;28946:118:0;;;;;:::i;:::-;;:::i;27823:211::-;;;;;;;;;;-1:-1:-1;27823:211:0;;;;;:::i;:::-;;:::i;41414:103::-;;;;;;;;;;;;;:::i;42359:48::-;;;;;;;;;;;;;;;40763:87;;;;;;;;;;-1:-1:-1;40809:7:0;40836:6;-1:-1:-1;;;;;40836:6:0;40763:87;;42501:28;;;;;;;;;;-1:-1:-1;42501:28:0;;;;-1:-1:-1;;;;;42501:28:0;;;-1:-1:-1;;;42501:28:0;;;;;;;;;;-1:-1:-1;;;;;19560:31:1;;;19542:50;;19635:14;;19628:22;19623:2;19608:18;;19601:50;19515:18;42501:28:0;19497:160:1;45551:167:0;;;;;;;;;;-1:-1:-1;45551:167:0;;;;;:::i;:::-;;:::i;:::-;;;;19059:13:1;;-1:-1:-1;;;;;19055:39:1;19037:58;;19155:4;19143:17;;;19137:24;-1:-1:-1;;;;;19133:49:1;19111:20;;;19104:79;;;;19010:18;45551:167:0;18992:197:1;29278:98:0;;;;;;;;;;;;;:::i;30916:274::-;;;;;;;;;;-1:-1:-1;30916:274:0;;;;;:::i;:::-;;:::i;45067:191::-;;;;;;;;;;;;;:::i;42950:706::-;;;;;;:::i;:::-;;:::i;31923:311::-;;;;;;;;;;-1:-1:-1;31923:311:0;;;;;:::i;:::-;;:::i;29439:394::-;;;;;;;;;;-1:-1:-1;29439:394:0;;;;;:::i;:::-;;:::i;36338:43::-;;;;;;;;;;;;;;;;45430:113;;;;;;;;;;-1:-1:-1;45430:113:0;;;;;:::i;:::-;;:::i;31253:186::-;;;;;;;;;;-1:-1:-1;31253:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;31398:25:0;;;31375:4;31398:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31253:186;44597:165;;;;;;;;;;-1:-1:-1;44597:165:0;;;;;:::i;:::-;;:::i;41672:201::-;;;;;;;;;;-1:-1:-1;41672:201:0;;;;;:::i;:::-;;:::i;27397:370::-;27524:4;-1:-1:-1;;;;;;27554:40:0;;-1:-1:-1;;;27554:40:0;;:99;;-1:-1:-1;;;;;;;27605:48:0;;-1:-1:-1;;;27605:48:0;27554:99;:160;;;-1:-1:-1;;;;;;;27664:50:0;;-1:-1:-1;;;27664:50:0;27554:160;:207;;;-1:-1:-1;;;;;;;;;;13197:40:0;;;27725:36;27540:221;27397:370;-1:-1:-1;;27397:370:0:o;29123:94::-;29177:13;29206:5;29199:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29123:94;:::o;30648:204::-;30716:7;30740:16;30748:7;32560:12;;-1:-1:-1;32550:22:0;32473:105;30740:16;30732:74;;;;-1:-1:-1;;;30732:74:0;;18214:2:1;30732:74:0;;;18196:21:1;18253:2;18233:18;;;18226:30;18292:34;18272:18;;;18265:62;-1:-1:-1;;;18343:18:1;;;18336:43;18396:19;;30732:74:0;;;;;;;;;-1:-1:-1;30822:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30822:24:0;;30648:204::o;30211:379::-;30280:13;30296:24;30312:7;30296:15;:24::i;:::-;30280:40;;30341:5;-1:-1:-1;;;;;30335:11:0;:2;-1:-1:-1;;;;;30335:11:0;;;30327:58;;;;-1:-1:-1;;;30327:58:0;;13986:2:1;30327:58:0;;;13968:21:1;14025:2;14005:18;;;13998:30;14064:34;14044:18;;;14037:62;-1:-1:-1;;;14115:18:1;;;14108:32;14157:19;;30327:58:0;13958:224:1;30327:58:0;23518:10;-1:-1:-1;;;;;30410:21:0;;;;:62;;-1:-1:-1;30435:37:0;30452:5;23518:10;31253:186;:::i;30435:37::-;30394:153;;;;-1:-1:-1;;;30394:153:0;;10132:2:1;30394:153:0;;;10114:21:1;10171:2;10151:18;;;10144:30;10210:34;10190:18;;;10183:62;10281:27;10261:18;;;10254:55;10326:19;;30394:153:0;10104:247:1;30394:153:0;30556:28;30565:2;30569:7;30578:5;30556:8;:28::i;:::-;30211:379;;;:::o;31498:142::-;31606:28;31616:4;31622:2;31626:7;31606:9;:28::i;45266:156::-;40809:7;40836:6;-1:-1:-1;;;;;40836:6:0;23518:10;40983:23;40975:68;;;;-1:-1:-1;;;40975:68:0;;;;;;;:::i;:::-;21812:1:::1;22410:7;;:19;;22402:63;;;::::0;-1:-1:-1;;;22402:63:0;;17438:2:1;22402:63:0::1;::::0;::::1;17420:21:1::0;17477:2;17457:18;;;17450:30;17516:33;17496:18;;;17489:61;17567:18;;22402:63:0::1;17410:181:1::0;22402:63:0::1;21812:1;22543:7;:18:::0;45386:28:::2;45405:8:::0;45386:18:::2;:28::i;:::-;-1:-1:-1::0;21768:1:0::1;22722:7;:22:::0;45266:156::o;26589:744::-;26698:7;26733:16;26743:5;26733:9;:16::i;:::-;26725:5;:24;26717:71;;;;-1:-1:-1;;;26717:71:0;;6911:2:1;26717:71:0;;;6893:21:1;6950:2;6930:18;;;6923:30;6989:34;6969:18;;;6962:62;-1:-1:-1;;;7040:18:1;;;7033:32;7082:19;;26717:71:0;6883:224:1;26717:71:0;26795:22;26820:13;26034:12;;;25958:94;26820:13;26795:38;;26840:19;26870:25;26920:9;26915:350;26939:14;26935:1;:18;26915:350;;;26969:31;27003:14;;;:11;:14;;;;;;;;;26969:48;;;;;;;;;-1:-1:-1;;;;;26969:48:0;;;;;-1:-1:-1;;;26969:48:0;;;-1:-1:-1;;;;;26969:48:0;;;;;;;;27030:28;27026:89;;27091:14;;;-1:-1:-1;27026:89:0;27148:5;-1:-1:-1;;;;;27127:26:0;:17;-1:-1:-1;;;;;27127:26:0;;27123:135;;;27185:5;27170:11;:20;27166:59;;;-1:-1:-1;27212:1:0;-1:-1:-1;27205:8:0;;-1:-1:-1;;;27205:8:0;27166:59;27235:13;;;;:::i;:::-;;;;27123:135;-1:-1:-1;26955:3:0;;;;:::i;:::-;;;;26915:350;;;-1:-1:-1;27271:56:0;;-1:-1:-1;;;27271:56:0;;16616:2:1;27271:56:0;;;16598:21:1;16655:2;16635:18;;;16628:30;16694:34;16674:18;;;16667:62;-1:-1:-1;;;16745:18:1;;;16738:44;16799:19;;27271:56:0;16588:236:1;44107:482:0;40809:7;40836:6;-1:-1:-1;;;;;40836:6:0;23518:10;40983:23;40975:68;;;;-1:-1:-1;;;40975:68:0;;;;;;;:::i;:::-;44222:14:::1;44210:8;44194:13;26034:12:::0;;;25958:94;44194:13:::1;:24;;;;:::i;:::-;:42;;44172:110;;;::::0;-1:-1:-1;;;44172:110:0;;11323:2:1;44172:110:0::1;::::0;::::1;11305:21:1::0;11362:2;11342:18;;;11335:30;-1:-1:-1;;;11381:18:1;;;11374:48;11439:18;;44172:110:0::1;11295:168:1::0;44172:110:0::1;44315:23;44326:12;44315:8:::0;:23:::1;:::i;:::-;:28:::0;44293:122:::1;;;::::0;-1:-1:-1;;;44293:122:0;;8132:2:1;44293:122:0::1;::::0;::::1;8114:21:1::0;8171:2;8151:18;;;8144:30;8210:34;8190:18;;;8183:62;-1:-1:-1;;;8261:18:1;;;8254:42;8313:19;;44293:122:0::1;8104:234:1::0;44293:122:0::1;44426:17;44446:23;44457:12;44446:8:::0;:23:::1;:::i;:::-;44426:43;;44485:9;44480:102;44504:9;44500:1;:13;44480:102;;;44535:35;44545:10;44557:12;44535:9;:35::i;:::-;44515:3:::0;::::1;::::0;::::1;:::i;:::-;;;;44480:102;;31703:157:::0;31815:39;31832:4;31838:2;31842:7;31815:39;;;;;;;;;;;;:16;:39::i;26121:177::-;26188:7;26220:13;26034:12;;;25958:94;26220:13;26212:5;:21;26204:69;;;;-1:-1:-1;;;26204:69:0;;8545:2:1;26204:69:0;;;8527:21:1;8584:2;8564:18;;;8557:30;8623:34;8603:18;;;8596:62;-1:-1:-1;;;8674:18:1;;;8667:33;8717:19;;26204:69:0;8517:225:1;26204:69:0;-1:-1:-1;26287:5:0;26121:177::o;44953:106::-;40809:7;40836:6;-1:-1:-1;;;;;40836:6:0;23518:10;40983:23;40975:68;;;;-1:-1:-1;;;40975:68:0;;;;;;;:::i;:::-;45028:23:::1;:13;45044:7:::0;;45028:23:::1;:::i;28946:118::-:0;29010:7;29033:20;29045:7;29033:11;:20::i;:::-;:25;;28946:118;-1:-1:-1;;28946:118:0:o;27823:211::-;27887:7;-1:-1:-1;;;;;27911:19:0;;27903:75;;;;-1:-1:-1;;;27903:75:0;;10911:2:1;27903:75:0;;;10893:21:1;10950:2;10930:18;;;10923:30;10989:34;10969:18;;;10962:62;-1:-1:-1;;;11040:18:1;;;11033:41;11091:19;;27903:75:0;10883:233:1;27903:75:0;-1:-1:-1;;;;;;28000:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;28000:27:0;;27823:211::o;41414:103::-;40809:7;40836:6;-1:-1:-1;;;;;40836:6:0;23518:10;40983:23;40975:68;;;;-1:-1:-1;;;40975:68:0;;;;;;;:::i;:::-;41479:30:::1;41506:1;41479:18;:30::i;:::-;41414:103::o:0;45551:167::-;-1:-1:-1;;;;;;;;;;;;;;;;;45690:20:0;45702:7;45690:11;:20::i;29278:98::-;29334:13;29363:7;29356:14;;;;;:::i;30916:274::-;-1:-1:-1;;;;;31007:24:0;;23518:10;31007:24;;30999:63;;;;-1:-1:-1;;;30999:63:0;;12854:2:1;30999:63:0;;;12836:21:1;12893:2;12873:18;;;12866:30;12932:28;12912:18;;;12905:56;12978:18;;30999:63:0;12826:176:1;30999:63:0;23518:10;31071:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31071:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31071:53:0;;;;;;;;;;31136:48;;6433:41:1;;;31071:42:0;;23518:10;31136:48;;6406:18:1;31136:48:0;;;;;;;30916:274;;:::o;45067:191::-;40809:7;40836:6;-1:-1:-1;;;;;40836:6:0;23518:10;40983:23;40975:68;;;;-1:-1:-1;;;40975:68:0;;;;;;;:::i;:::-;21812:1:::1;22410:7;;:19;;22402:63;;;::::0;-1:-1:-1;;;22402:63:0;;17438:2:1;22402:63:0::1;::::0;::::1;17420:21:1::0;17477:2;17457:18;;;17450:30;17516:33;17496:18;;;17489:61;17567:18;;22402:63:0::1;17410:181:1::0;22402:63:0::1;21812:1;22543:7;:18:::0;45154:49:::2;::::0;45136:12:::2;::::0;45154:10:::2;::::0;45177:21:::2;::::0;45136:12;45154:49;45136:12;45154:49;45177:21;45154:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45135:68;;;45222:7;45214:36;;;::::0;-1:-1:-1;;;45214:36:0;;14389:2:1;45214:36:0::2;::::0;::::2;14371:21:1::0;14428:2;14408:18;;;14401:30;-1:-1:-1;;;14447:18:1;;;14440:46;14503:18;;45214:36:0::2;14361:166:1::0;42950:706:0;42864:9;42877:10;42864:23;42856:66;;;;-1:-1:-1;;;42856:66:0;;9773:2:1;42856:66:0;;;9755:21:1;9812:2;9792:18;;;9785:30;9851:32;9831:18;;;9824:60;9901:18;;42856:66:0;9745:180:1;42856:66:0;43033:37:::1;::::0;;;;::::1;::::0;;;43060:10:::1;43033:37:::0;-1:-1:-1;;;;;43033:37:0;::::1;::::0;;;-1:-1:-1;;;43033:37:0;;::::1;;;;;;::::0;::::1;::::0;;;;43202:34:::1;43033:37:::0;;43202:14:::1;:34::i;:::-;43180:113;;;::::0;-1:-1:-1;;;43180:113:0;;13628:2:1;43180:113:0::1;::::0;::::1;13610:21:1::0;13667:2;13647:18;;;13640:30;13706:31;13686:18;;;13679:59;13755:18;;43180:113:0::1;13600:179:1::0;43180:113:0::1;43354:14;43342:8;43326:13;26034:12:::0;;;25958:94;43326:13:::1;:24;;;;:::i;:::-;:42;;43304:110;;;::::0;-1:-1:-1;;;43304:110:0;;11323:2:1;43304:110:0::1;::::0;::::1;11305:21:1::0;11362:2;11342:18;;;11335:30;-1:-1:-1;;;11381:18:1;;;11374:48;11439:18;;43304:110:0::1;11295:168:1::0;43304:110:0::1;43486:23;43474:8;43447:24;43460:10;43447:12;:24::i;:::-;:35;;;;:::i;:::-;:62;;43425:134;;;::::0;-1:-1:-1;;;43425:134:0;;16265:2:1;43425:134:0::1;::::0;::::1;16247:21:1::0;16304:2;16284:18;;;16277:30;-1:-1:-1;;;16323:18:1;;;16316:52;16385:18;;43425:134:0::1;16237:172:1::0;43425:134:0::1;43570:31;43580:10;43592:8;43570:9;:31::i;:::-;43612:36;43625:22;43639:8:::0;43625:11;:22:::1;:::i;:::-;43612:12;:36::i;:::-;42933:1;;;42950:706:::0;:::o;31923:311::-;32060:28;32070:4;32076:2;32080:7;32060:9;:28::i;:::-;32111:48;32134:4;32140:2;32144:7;32153:5;32111:22;:48::i;:::-;32095:133;;;;-1:-1:-1;;;32095:133:0;;;;;;;:::i;29439:394::-;29537:13;29578:16;29586:7;32560:12;;-1:-1:-1;32550:22:0;32473:105;29578:16;29562:97;;;;-1:-1:-1;;;29562:97:0;;12438:2:1;29562:97:0;;;12420:21:1;12477:2;12457:18;;;12450:30;12516:34;12496:18;;;12489:62;-1:-1:-1;;;12567:18:1;;;12560:45;12622:19;;29562:97:0;12410:237:1;29562:97:0;29668:21;29692:10;:8;:10::i;:::-;29668:34;;29747:1;29729:7;29723:21;:25;:104;;;;;;;;;;;;;;;;;29784:7;29793:18;:7;:16;:18::i;:::-;29767:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;29723:104;29709:118;29439:394;-1:-1:-1;;;29439:394:0:o;45430:113::-;45488:7;45515:20;45529:5;45515:13;:20::i;44597:165::-;40809:7;40836:6;-1:-1:-1;;;;;40836:6:0;23518:10;40983:23;40975:68;;;;-1:-1:-1;;;40975:68:0;;;;;;;:::i;:::-;44721:33:::1;::::0;;;;::::1;::::0;;;-1:-1:-1;;;;;44721:33:0;;;::::1;::::0;;;;::::1;;;::::0;;::::1;::::0;;;44708:10:::1;:46:::0;;-1:-1:-1;;44708:46:0;;;;-1:-1:-1;;;44708:46:0;;::::1;::::0;;;::::1;::::0;;44597:165::o;41672:201::-;40809:7;40836:6;-1:-1:-1;;;;;40836:6:0;23518:10;40983:23;40975:68;;;;-1:-1:-1;;;40975:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41761:22:0;::::1;41753:73;;;::::0;-1:-1:-1;;;41753:73:0;;7314:2:1;41753:73:0::1;::::0;::::1;7296:21:1::0;7353:2;7333:18;;;7326:30;7392:34;7372:18;;;7365:62;-1:-1:-1;;;7443:18:1;;;7436:36;7489:19;;41753:73:0::1;7286:228:1::0;41753:73:0::1;41837:28;41856:8;41837:18;:28::i;:::-;41672:201:::0;:::o;36160:172::-;36257:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;36257:29:0;-1:-1:-1;;;;;36257:29:0;;;;;;;;;36298:28;;36257:24;;36298:28;;;;;;;36160:172;;;:::o;34525:1529::-;34622:35;34660:20;34672:7;34660:11;:20::i;:::-;34731:18;;34622:58;;-1:-1:-1;34689:22:0;;-1:-1:-1;;;;;34715:34:0;23518:10;-1:-1:-1;;;;;34715:34:0;;:81;;;-1:-1:-1;23518:10:0;34760:20;34772:7;34760:11;:20::i;:::-;-1:-1:-1;;;;;34760:36:0;;34715:81;:142;;;-1:-1:-1;34824:18:0;;34807:50;;23518:10;31253:186;:::i;34807:50::-;34689:169;;34883:17;34867:101;;;;-1:-1:-1;;;34867:101:0;;13209:2:1;34867:101:0;;;13191:21:1;13248:2;13228:18;;;13221:30;13287:34;13267:18;;;13260:62;-1:-1:-1;;;13338:18:1;;;13331:48;13396:19;;34867:101:0;13181:240:1;34867:101:0;35015:4;-1:-1:-1;;;;;34993:26:0;:13;:18;;;-1:-1:-1;;;;;34993:26:0;;34977:98;;;;-1:-1:-1;;;34977:98:0;;11670:2:1;34977:98:0;;;11652:21:1;11709:2;11689:18;;;11682:30;11748:34;11728:18;;;11721:62;-1:-1:-1;;;11799:18:1;;;11792:36;11845:19;;34977:98:0;11642:228:1;34977:98:0;-1:-1:-1;;;;;35090:16:0;;35082:66;;;;-1:-1:-1;;;35082:66:0;;8949:2:1;35082:66:0;;;8931:21:1;8988:2;8968:18;;;8961:30;9027:34;9007:18;;;9000:62;-1:-1:-1;;;9078:18:1;;;9071:35;9123:19;;35082:66:0;8921:227:1;35082:66:0;35257:49;35274:1;35278:7;35287:13;:18;;;35257:8;:49::i;:::-;-1:-1:-1;;;;;35315:18:0;;;;;;:12;:18;;;;;:31;;35345:1;;35315:18;:31;;35345:1;;-1:-1:-1;;;;;35315:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;35315:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;35353:16:0;;-1:-1:-1;35353:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;35353:16:0;;:29;;-1:-1:-1;;35353:29:0;;:::i;:::-;;;-1:-1:-1;;;;;35353:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35412:43:0;;;;;;;;-1:-1:-1;;;;;35412:43:0;;;;;-1:-1:-1;;;;;35438:15:0;35412:43;;;;;;;;;-1:-1:-1;35389:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;35389:66:0;-1:-1:-1;;;;;;35389:66:0;;;;;;;;;;;35705:11;35401:7;-1:-1:-1;35705:11:0;:::i;:::-;35768:1;35727:24;;;:11;:24;;;;;:29;35683:33;;-1:-1:-1;;;;;;35727:29:0;35723:236;;35785:20;35793:11;32560:12;;-1:-1:-1;32550:22:0;32473:105;35785:20;35781:171;;;35845:97;;;;;;;;35872:18;;-1:-1:-1;;;;;35845:97:0;;;;;;35903:28;;;;-1:-1:-1;;;;;35845:97:0;;;;;;;;;-1:-1:-1;35818:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;35818:124:0;-1:-1:-1;;;;;;35818:124:0;;;;;;;;;;;;35781:171;35991:7;35987:2;-1:-1:-1;;;;;35972:27:0;35981:4;-1:-1:-1;;;;;35972:27:0;;;;;;;;;;;36006:42;34525:1529;;;;;;:::o;36486:846::-;36576:24;;36615:12;36607:49;;;;-1:-1:-1;;;36607:49:0;;10558:2:1;36607:49:0;;;10540:21:1;10597:2;10577:18;;;10570:30;10636:26;10616:18;;;10609:54;10680:18;;36607:49:0;10530:174:1;36607:49:0;36663:16;36713:1;36682:28;36702:8;36682:17;:28;:::i;:::-;:32;;;;:::i;:::-;36663:51;-1:-1:-1;36736:18:0;36753:1;36736:14;:18;:::i;:::-;36725:8;:29;36721:81;;;36776:18;36793:1;36776:14;:18;:::i;:::-;36765:29;;36721:81;36917:17;36925:8;32560:12;;-1:-1:-1;32550:22:0;32473:105;36917:17;36909:68;;;;-1:-1:-1;;;36909:68:0;;17031:2:1;36909:68:0;;;17013:21:1;17070:2;17050:18;;;17043:30;17109:34;17089:18;;;17082:62;-1:-1:-1;;;17160:18:1;;;17153:36;17206:19;;36909:68:0;17003:228:1;36909:68:0;37001:17;36984:297;37025:8;37020:1;:13;36984:297;;37084:1;37053:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;37053:19:0;37049:225;;37099:31;37133:14;37145:1;37133:11;:14::i;:::-;37175:89;;;;;;;;37202:14;;-1:-1:-1;;;;;37175:89:0;;;;;;37229:24;;;;-1:-1:-1;;;;;37175:89:0;;;;;;;;;-1:-1:-1;37158:14:0;;;:11;:14;;;;;;;:106;;;;;;;;;-1:-1:-1;;;37158:106:0;-1:-1:-1;;;;;;37158:106:0;;;;;;;;;;;;-1:-1:-1;37049:225:0;37035:3;;;;:::i;:::-;;;;36984:297;;;-1:-1:-1;37314:12:0;:8;37325:1;37314:12;:::i;:::-;37287:24;:39;-1:-1:-1;;;36486:846:0:o;32584:98::-;32649:27;32659:2;32663:8;32649:27;;;;;;;;;;;;:9;:27::i;:::-;32584:98;;:::o;28286:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;28403:16:0;28411:7;32560:12;;-1:-1:-1;32550:22:0;32473:105;28403:16;28395:71;;;;-1:-1:-1;;;28395:71:0;;7721:2:1;28395:71:0;;;7703:21:1;7760:2;7740:18;;;7733:30;7799:34;7779:18;;;7772:62;-1:-1:-1;;;7850:18:1;;;7843:40;7900:19;;28395:71:0;7693:232:1;28395:71:0;28475:26;28523:12;28512:7;:23;28508:93;;28567:22;28577:12;28567:7;:22;:::i;:::-;:26;;28592:1;28567:26;:::i;:::-;28546:47;;28508:93;28629:7;28609:212;28646:18;28638:4;:26;28609:212;;28683:31;28717:17;;;:11;:17;;;;;;;;;28683:51;;;;;;;;;-1:-1:-1;;;;;28683:51:0;;;;;-1:-1:-1;;;28683:51:0;;;-1:-1:-1;;;;;28683:51:0;;;;;;;;28747:28;28743:71;;28795:9;28286:606;-1:-1:-1;;;;28286:606:0:o;28743:71::-;-1:-1:-1;28666:6:0;;;;:::i;:::-;;;;28609:212;;;-1:-1:-1;28829:57:0;;-1:-1:-1;;;28829:57:0;;17798:2:1;28829:57:0;;;17780:21:1;17837:2;17817:18;;;17810:30;17876:34;17856:18;;;17849:62;-1:-1:-1;;;17927:18:1;;;17920:45;17982:19;;28829:57:0;17770:237:1;42033:191:0;42107:16;42126:6;;-1:-1:-1;;;;;42143:17:0;;;-1:-1:-1;;;;;;42143:17:0;;;;;;42176:40;;42126:6;;;;;;;42176:40;;42107:16;42176:40;42033:191;;:::o;43896:176::-;44006:4;44035:19;;;;;:29;;-1:-1:-1;;44058:6:0;;44028:36;-1:-1:-1;43896:176:0:o;43664:224::-;43741:5;43728:9;:18;;43720:53;;;;-1:-1:-1;;;43720:53:0;;15154:2:1;43720:53:0;;;15136:21:1;15193:2;15173:18;;;15166:30;-1:-1:-1;;;15212:18:1;;;15205:52;15274:18;;43720:53:0;15126:172:1;43720:53:0;43800:5;43788:9;:17;43784:97;;;43830:10;43822:47;43851:17;43863:5;43851:9;:17;:::i;:::-;43822:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37875:690;38012:4;-1:-1:-1;;;;;38029:13:0;;3267:20;3315:8;38025:535;;38068:72;;-1:-1:-1;;;38068:72:0;;-1:-1:-1;;;;;38068:36:0;;;;;:72;;23518:10;;38119:4;;38125:7;;38134:5;;38068:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38068:72:0;;;;;;;;-1:-1:-1;;38068:72:0;;;;;;;;;;;;:::i;:::-;;;38055:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38299:13:0;;38295:215;;38332:61;;-1:-1:-1;;;38332:61:0;;;;;;;:::i;38295:215::-;38478:6;38472:13;38463:6;38459:2;38455:15;38448:38;38055:464;-1:-1:-1;;;;;;38190:55:0;-1:-1:-1;;;38190:55:0;;-1:-1:-1;38183:62:0;;38025:535;-1:-1:-1;38548:4:0;38025:535;37875:690;;;;;;:::o;44831:114::-;44891:13;44924;44917:20;;;;;:::i;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;-1:-1:-1;;;;;867:17:0;;;;;-1:-1:-1;;;867:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;-1:-1:-1;;;955:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;28040:240;28101:7;-1:-1:-1;;;;;28133:19:0;;28117:102;;;;-1:-1:-1;;;28117:102:0;;9355:2:1;28117:102:0;;;9337:21:1;9394:2;9374:18;;;9367:30;9433:34;9413:18;;;9406:62;-1:-1:-1;;;9484:18:1;;;9477:47;9541:19;;28117:102:0;9327:239:1;28117:102:0;-1:-1:-1;;;;;;28241:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;28241:32:0;;-1:-1:-1;;;;;28241:32:0;;28040:240::o;33021:1272::-;33149:12;;-1:-1:-1;;;;;33176:16:0;;33168:62;;;;-1:-1:-1;;;33168:62:0;;15863:2:1;33168:62:0;;;15845:21:1;15902:2;15882:18;;;15875:30;15941:34;15921:18;;;15914:62;-1:-1:-1;;;15992:18:1;;;15985:31;16033:19;;33168:62:0;15835:223:1;33168:62:0;33367:21;33375:12;32560;;-1:-1:-1;32550:22:0;32473:105;33367:21;33366:22;33358:64;;;;-1:-1:-1;;;33358:64:0;;15505:2:1;33358:64:0;;;15487:21:1;15544:2;15524:18;;;15517:30;15583:31;15563:18;;;15556:59;15632:18;;33358:64:0;15477:179:1;33358:64:0;33449:12;33437:8;:24;;33429:71;;;;-1:-1:-1;;;33429:71:0;;18628:2:1;33429:71:0;;;18610:21:1;18667:2;18647:18;;;18640:30;18706:34;18686:18;;;18679:62;-1:-1:-1;;;18757:18:1;;;18750:32;18799:19;;33429:71:0;18600:224:1;33429:71:0;-1:-1:-1;;;;;33612:16:0;;33579:30;33612:16;;;:12;:16;;;;;;;;;33579:49;;;;;;;;;-1:-1:-1;;;;;33579:49:0;;;;;-1:-1:-1;;;33579:49:0;;;;;;;;;;;33654:119;;;;;;;;33674:19;;33579:49;;33654:119;;;33674:39;;33704:8;;33674:39;:::i;:::-;-1:-1:-1;;;;;33654:119:0;;;;;33757:8;33722:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;33654:119:0;;;;;;-1:-1:-1;;;;;33635:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;33635:138:0;;;;;;;;;;;;33808:43;;;;;;;;;;-1:-1:-1;;;;;33834:15:0;33808:43;;;;;;;;33780:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;33780:71:0;-1:-1:-1;;;;;;33780:71:0;;;;;;;;;;;;;;;;;;33792:12;;33904:281;33928:8;33924:1;:12;33904:281;;;33957:38;;33982:12;;-1:-1:-1;;;;;33957:38:0;;;33974:1;;33957:38;;33974:1;;33957:38;34022:59;34053:1;34057:2;34061:12;34075:5;34022:22;:59::i;:::-;34004:150;;;;-1:-1:-1;;;34004:150:0;;;;;;;:::i;:::-;34163:14;;;;:::i;:::-;;;;33938:3;;;;;:::i;:::-;;;;33904:281;;;-1:-1:-1;34193:12:0;:27;;;34227:60;42950:706;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:160::-;257:20;;313:13;;306:21;296:32;;286:2;;342:1;339;332:12;357:196;416:6;469:2;457:9;448:7;444:23;440:32;437:2;;;490:6;482;475:22;437:2;518:29;537:9;518:29;:::i;558:270::-;626:6;634;687:2;675:9;666:7;662:23;658:32;655:2;;;708:6;700;693:22;655:2;736:29;755:9;736:29;:::i;:::-;726:39;;784:38;818:2;807:9;803:18;784:38;:::i;:::-;774:48;;645:183;;;;;:::o;833:338::-;910:6;918;926;979:2;967:9;958:7;954:23;950:32;947:2;;;1000:6;992;985:22;947:2;1028:29;1047:9;1028:29;:::i;:::-;1018:39;;1076:38;1110:2;1099:9;1095:18;1076:38;:::i;:::-;1066:48;;1161:2;1150:9;1146:18;1133:32;1123:42;;937:234;;;;;:::o;1176:1183::-;1271:6;1279;1287;1295;1348:3;1336:9;1327:7;1323:23;1319:33;1316:2;;;1370:6;1362;1355:22;1316:2;1398:29;1417:9;1398:29;:::i;:::-;1388:39;;1446:38;1480:2;1469:9;1465:18;1446:38;:::i;:::-;1436:48;;1531:2;1520:9;1516:18;1503:32;1493:42;;1586:2;1575:9;1571:18;1558:32;-1:-1:-1;;;;;1650:2:1;1642:6;1639:14;1636:2;;;1671:6;1663;1656:22;1636:2;1714:6;1703:9;1699:22;1689:32;;1759:7;1752:4;1748:2;1744:13;1740:27;1730:2;;1786:6;1778;1771:22;1730:2;1827;1814:16;1849:2;1845;1842:10;1839:2;;;1855:18;;:::i;:::-;1930:2;1924:9;1898:2;1984:13;;-1:-1:-1;;1980:22:1;;;2004:2;1976:31;1972:40;1960:53;;;2028:18;;;2048:22;;;2025:46;2022:2;;;2074:18;;:::i;:::-;2114:10;2110:2;2103:22;2149:2;2141:6;2134:18;2189:7;2184:2;2179;2175;2171:11;2167:20;2164:33;2161:2;;;2215:6;2207;2200:22;2161:2;2276;2271;2267;2263:11;2258:2;2250:6;2246:15;2233:46;2299:15;;;2316:2;2295:24;2288:40;;;;1306:1053;;;;-1:-1:-1;1306:1053:1;;-1:-1:-1;;;;1306:1053:1:o;2364:264::-;2429:6;2437;2490:2;2478:9;2469:7;2465:23;2461:32;2458:2;;;2511:6;2503;2496:22;2458:2;2539:29;2558:9;2539:29;:::i;:::-;2529:39;;2587:35;2618:2;2607:9;2603:18;2587:35;:::i;2633:264::-;2701:6;2709;2762:2;2750:9;2741:7;2737:23;2733:32;2730:2;;;2783:6;2775;2768:22;2730:2;2811:29;2830:9;2811:29;:::i;:::-;2801:39;2887:2;2872:18;;;;2859:32;;-1:-1:-1;;;2720:177:1:o;2902:255::-;2960:6;3013:2;3001:9;2992:7;2988:23;2984:32;2981:2;;;3034:6;3026;3019:22;2981:2;3078:9;3065:23;3097:30;3121:5;3097:30;:::i;3162:259::-;3231:6;3284:2;3272:9;3263:7;3259:23;3255:32;3252:2;;;3305:6;3297;3290:22;3252:2;3342:9;3336:16;3361:30;3385:5;3361:30;:::i;3426:642::-;3497:6;3505;3558:2;3546:9;3537:7;3533:23;3529:32;3526:2;;;3579:6;3571;3564:22;3526:2;3624:9;3611:23;-1:-1:-1;;;;;3694:2:1;3686:6;3683:14;3680:2;;;3715:6;3707;3700:22;3680:2;3758:6;3747:9;3743:22;3733:32;;3803:7;3796:4;3792:2;3788:13;3784:27;3774:2;;3830:6;3822;3815:22;3774:2;3875;3862:16;3901:2;3893:6;3890:14;3887:2;;;3922:6;3914;3907:22;3887:2;3972:7;3967:2;3958:6;3954:2;3950:15;3946:24;3943:37;3940:2;;;3998:6;3990;3983:22;3940:2;4034;4026:11;;;;;4056:6;;-1:-1:-1;3516:552:1;;-1:-1:-1;;;;3516:552:1:o;4073:190::-;4132:6;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4206:6;4198;4191:22;4153:2;-1:-1:-1;4234:23:1;;4143:120;-1:-1:-1;4143:120:1:o;4268:372::-;4332:6;4340;4393:2;4381:9;4372:7;4368:23;4364:32;4361:2;;;4414:6;4406;4399:22;4361:2;4458:9;4445:23;-1:-1:-1;;;;;4501:5:1;4497:30;4490:5;4487:41;4477:2;;4547:6;4539;4532:22;4645:257;4686:3;4724:5;4718:12;4751:6;4746:3;4739:19;4767:63;4823:6;4816:4;4811:3;4807:14;4800:4;4793:5;4789:16;4767:63;:::i;:::-;4884:2;4863:15;-1:-1:-1;;4859:29:1;4850:39;;;;4891:4;4846:50;;4694:208;-1:-1:-1;;4694:208:1:o;4907:470::-;5086:3;5124:6;5118:13;5140:53;5186:6;5181:3;5174:4;5166:6;5162:17;5140:53;:::i;:::-;5256:13;;5215:16;;;;5278:57;5256:13;5215:16;5312:4;5300:17;;5278:57;:::i;:::-;5351:20;;5094:283;-1:-1:-1;;;;5094:283:1:o;5800:488::-;-1:-1:-1;;;;;6069:15:1;;;6051:34;;6121:15;;6116:2;6101:18;;6094:43;6168:2;6153:18;;6146:34;;;6216:3;6211:2;6196:18;;6189:31;;;5994:4;;6237:45;;6262:19;;6254:6;6237:45;:::i;:::-;6229:53;6003:285;-1:-1:-1;;;;;;6003:285:1:o;6485:219::-;6634:2;6623:9;6616:21;6597:4;6654:44;6694:2;6683:9;6679:18;6671:6;6654:44;:::i;11875:356::-;12077:2;12059:21;;;12096:18;;;12089:30;12155:34;12150:2;12135:18;;12128:62;12222:2;12207:18;;12049:182::o;14532:415::-;14734:2;14716:21;;;14773:2;14753:18;;;14746:30;14812:34;14807:2;14792:18;;14785:62;-1:-1:-1;;;14878:2:1;14863:18;;14856:49;14937:3;14922:19;;14706:241::o;19662:253::-;19702:3;-1:-1:-1;;;;;19791:2:1;19788:1;19784:10;19821:2;19818:1;19814:10;19852:3;19848:2;19844:12;19839:3;19836:21;19833:2;;;19860:18;;:::i;19920:128::-;19960:3;19991:1;19987:6;19984:1;19981:13;19978:2;;;19997:18;;:::i;:::-;-1:-1:-1;20033:9:1;;19968:80::o;20053:120::-;20093:1;20119;20109:2;;20124:18;;:::i;:::-;-1:-1:-1;20158:9:1;;20099:74::o;20178:168::-;20218:7;20284:1;20280;20276:6;20272:14;20269:1;20266:21;20261:1;20254:9;20247:17;20243:45;20240:2;;;20291:18;;:::i;:::-;-1:-1:-1;20331:9:1;;20230:116::o;20351:246::-;20391:4;-1:-1:-1;;;;;20504:10:1;;;;20474;;20526:12;;;20523:2;;;20541:18;;:::i;:::-;20578:13;;20400:197;-1:-1:-1;;;20400:197:1:o;20602:125::-;20642:4;20670:1;20667;20664:8;20661:2;;;20675:18;;:::i;:::-;-1:-1:-1;20712:9:1;;20651:76::o;20732:258::-;20804:1;20814:113;20828:6;20825:1;20822:13;20814:113;;;20904:11;;;20898:18;20885:11;;;20878:39;20850:2;20843:10;20814:113;;;20945:6;20942:1;20939:13;20936:2;;;-1:-1:-1;;20980:1:1;20962:16;;20955:27;20785:205::o;20995:136::-;21034:3;21062:5;21052:2;;21071:18;;:::i;:::-;-1:-1:-1;;;21107:18:1;;21042:89::o;21136:380::-;21215:1;21211:12;;;;21258;;;21279:2;;21333:4;21325:6;21321:17;21311:27;;21279:2;21386;21378:6;21375:14;21355:18;21352:38;21349:2;;;21432:10;21427:3;21423:20;21420:1;21413:31;21467:4;21464:1;21457:15;21495:4;21492:1;21485:15;21349:2;;21191:325;;;:::o;21521:135::-;21560:3;-1:-1:-1;;21581:17:1;;21578:2;;;21601:18;;:::i;:::-;-1:-1:-1;21648:1:1;21637:13;;21568:88::o;21661:112::-;21693:1;21719;21709:2;;21724:18;;:::i;:::-;-1:-1:-1;21758:9:1;;21699:74::o;21778:127::-;21839:10;21834:3;21830:20;21827:1;21820:31;21870:4;21867:1;21860:15;21894:4;21891:1;21884:15;21910:127;21971:10;21966:3;21962:20;21959:1;21952:31;22002:4;21999:1;21992:15;22026:4;22023:1;22016:15;22042:127;22103:10;22098:3;22094:20;22091:1;22084:31;22134:4;22131:1;22124:15;22158:4;22155:1;22148:15;22174:131;-1:-1:-1;;;;;;22248:32:1;;22238:43;;22228:2;;22295:1;22292;22285:12

Swarm Source

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