ETH Price: $2,634.46 (+2.22%)

Token

Ape Women (ApeWomen)
 

Overview

Max Total Supply

2,910 ApeWomen

Holders

201

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
nouside.eth
Balance
20 ApeWomen
0x97B10F1d005C8edee0FB004af3Bb6E7B47c954fF
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:
ApewomenContract

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

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



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



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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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);
            }
        }
    }
}



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



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



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


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



pragma solidity ^0.8.0;


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

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

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



pragma solidity ^0.8.0;



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



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 virtual 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 virtual 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 {}
}



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



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() {
        _setOwner(_msgSender());
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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


pragma solidity ^0.8.0;

interface IFapes {
function updateReward(address _from, address _to) external;
} 

contract ApewomenContract is Ownable, ERC721A, ReentrancyGuard {
  uint256 public  publicsalePrice =   20000000000000000;    
  uint256 public  MAX_WLTOKEN = 1000; 
  uint public MaxPerTx;    
  uint256 public  MaxTokens;
  bool public SalesIsActive = true;
  IFapes public Fapes;     
  mapping (address => uint256) public balanceApes;

 constructor(
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) ERC721A("Ape Women", "ApeWomen", maxBatchSize_, collectionSize_) {
    MaxPerTx = maxBatchSize_;
    MaxTokens = collectionSize_;   
  }

  function setApeTokenContract(address _FapesAddress) external onlyOwner {
    Fapes = IFapes(_FapesAddress);
 } 

  function setMaxPerTx(uint _MaxPerTx) external onlyOwner {
    MaxPerTx = _MaxPerTx;
  }   

  function setMaxTokens(uint _MaxTokens) external onlyOwner {
    MaxTokens = _MaxTokens;
  }

  function setpublicsalePrice(uint _price) external onlyOwner {
    publicsalePrice = _price;
  }        

  function setMaxFreeMint(uint _MAX_WLTOKEN) external onlyOwner {
    MAX_WLTOKEN = _MAX_WLTOKEN;
  }         
	
  function Paused() public onlyOwner {
    SalesIsActive = !SalesIsActive;
  }

  function WLMint(uint256 quantity) external payable {
    require(SalesIsActive, "Sale is not active to mint");
    require(quantity > 0 && quantity <= MaxPerTx, "Can not mint more than max token per tx");  
    require(totalSupply() + quantity <= MAX_WLTOKEN, "Max token minted");
    _safeMint(msg.sender, quantity);
  }

  function Mint(uint256 quantity) external payable {
    require(SalesIsActive, "ale is not active to mint");
    require(quantity > 0 && quantity <= MaxPerTx, "Can not mint more than max token per tx");
    require(msg.value >= publicsalePrice*quantity, "Need to send more ETH.");
    require(totalSupply() + quantity <= MaxTokens, "Max token minted");

    _safeMint(msg.sender, quantity);
  }

 function transferFrom(address from, address to, uint256 tokenId) public override {
    if (tokenId < MaxTokens) {
        Fapes.updateReward(from, to);
        balanceApes[from]--;
        balanceApes[to]++;
    }
    ERC721A.transferFrom(from, to, tokenId);
 }

 function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public override {
    if (tokenId < MaxTokens) {
        Fapes.updateReward(from, to);
        balanceApes[from]--;
        balanceApes[to]++;
    }
    ERC721A.safeTransferFrom(from, to, tokenId, data);
  }   

  string private _baseAPIURI;

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

  function setBaseURI(string calldata baseURI) external onlyOwner {
    _baseAPIURI = 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);
  }

  function tokensOfOwner(address _owner) external view returns(uint256[] memory ) {
    uint256 tokenCount = balanceOf(_owner);
    if (tokenCount == 0) {
        // Return an empty array
        return new uint256[](0);
    } else {
        uint256[] memory result = new uint256[](tokenCount);
        uint256 index;
        for (index = 0; index < tokenCount; index++) {
            result[index] = tokenOfOwnerByIndex(_owner, index);
        }
        return result;
    }
  } 
 }

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":[],"name":"Fapes","outputs":[{"internalType":"contract IFapes","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WLTOKEN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"Paused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"SalesIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"WLMint","outputs":[],"stateMutability":"payable","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":"","type":"address"}],"name":"balanceApes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicsalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_FapesAddress","type":"address"}],"name":"setApeTokenContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_WLTOKEN","type":"uint256"}],"name":"setMaxFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MaxPerTx","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MaxTokens","type":"uint256"}],"name":"setMaxTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setpublicsalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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"}]

60c06040526000600181815560089190915566470de4df820000600a556103e8600b55600e805460ff191690911790553480156200003c57600080fd5b506040516200321a3803806200321a8339810160408190526200005f9162000252565b6040518060400160405280600981526020016820b832902bb7b6b2b760b91b8152506040518060400160405280600881526020016720b832abb7b6b2b760c11b8152508383620000be620000b86200015860201b60201c565b6200015c565b60008111620000ea5760405162461bcd60e51b8152600401620000e190620002bd565b60405180910390fd5b600082116200010d5760405162461bcd60e51b8152600401620000e19062000276565b835162000122906002906020870190620001ac565b50825162000138906003906020860190620001ac565b5060a09190915260805250506001600955600c91909155600d5562000348565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001ba906200030b565b90600052602060002090601f016020900481019282620001de576000855562000229565b82601f10620001f957805160ff191683800117855562000229565b8280016001018555821562000229579182015b82811115620002295782518255916020019190600101906200020c565b50620002379291506200023b565b5090565b5b808211156200023757600081556001016200023c565b6000806040838503121562000265578182fd5b505080516020909101519092909150565b60208082526027908201527f455243373231413a206d61782062617463682073697a65206d757374206265206040820152666e6f6e7a65726f60c81b606082015260800190565b6020808252602e908201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060408201526d6e6f6e7a65726f20737570706c7960901b606082015260800190565b6002810460018216806200032057607f821691505b602082108114156200034257634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051612e9762000383600039600081816116c2015281816116ec01526119fe01526000818161154701526115790152612e976000f3fe6080604052600436106102465760003560e01c806370a0823111610139578063ac446002116100b6578063d7224ba01161007a578063d7224ba014610673578063dc33e68114610688578063e2441696146106a8578063e985e9c5146106bd578063ec63a1ed146106dd578063f2fde38b146106f057610246565b8063ac446002146105de578063b88d4fde146105f3578063c6f6f21614610613578063c87b56dd14610633578063ca2309e31461065357610246565b80638da5cb5b116100fd5780638da5cb5b146105525780639231ab2a1461056757806395d89b41146105945780639e87fac8146105a9578063a22cb465146105be57610246565b806370a08231146104bb578063715018a6146104db578063742a4c9b146104f05780637eff4b67146105105780638462151c1461052557610246565b80632f745c59116101c75780635d25f4ec1161018b5780635d25f4ec1461043c5780636352211e14610451578063670fc775146104715780636f0c6a2f14610491578063707bdf58146104a657610246565b80632f745c59146103a757806342842e0e146103c75780634e4f7e72146103e75780634f6ccce7146103fc57806355f804b31461041c57610246565b806311e776fe1161020e57806311e776fe1461030557806315581c901461032557806318160ddd1461035257806323b872dd146103675780632d20fb601461038757610246565b806301ffc9a71461024b57806306fdde031461028157806307883703146102a3578063081812fc146102b8578063095ea7b3146102e5575b600080fd5b34801561025757600080fd5b5061026b6102663660046122cf565b610710565b6040516102789190612499565b60405180910390f35b34801561028d57600080fd5b50610296610773565b60405161027891906124a4565b6102b66102b1366004612374565b610805565b005b3480156102c457600080fd5b506102d86102d3366004612374565b6108cc565b60405161027891906123ea565b3480156102f157600080fd5b506102b66103003660046122a6565b61090f565b34801561031157600080fd5b506102b6610320366004612374565b6109a8565b34801561033157600080fd5b50610345610340366004612119565b6109ec565b6040516102789190612cad565b34801561035e57600080fd5b506103456109fe565b34801561037357600080fd5b506102b6610382366004612165565b610a04565b34801561039357600080fd5b506102b66103a2366004612374565b610ad4565b3480156103b357600080fd5b506103456103c23660046122a6565b610b4c565b3480156103d357600080fd5b506102b66103e2366004612165565b610c48565b3480156103f357600080fd5b50610345610c63565b34801561040857600080fd5b50610345610417366004612374565b610c69565b34801561042857600080fd5b506102b6610437366004612307565b610c95565b34801561044857600080fd5b50610345610ce0565b34801561045d57600080fd5b506102d861046c366004612374565b610ce6565b34801561047d57600080fd5b506102b661048c366004612374565b610cf8565b34801561049d57600080fd5b5061026b610d3c565b3480156104b257600080fd5b50610345610d45565b3480156104c757600080fd5b506103456104d6366004612119565b610d4b565b3480156104e757600080fd5b506102b6610d98565b3480156104fc57600080fd5b506102b661050b366004612374565b610de3565b34801561051c57600080fd5b50610345610e27565b34801561053157600080fd5b50610545610540366004612119565b610e2d565b6040516102789190612455565b34801561055e57600080fd5b506102d8610f0e565b34801561057357600080fd5b50610587610582366004612374565b610f1d565b6040516102789190612c83565b3480156105a057600080fd5b50610296610f2e565b3480156105b557600080fd5b506102b6610f3d565b3480156105ca57600080fd5b506102b66105d936600461226c565b610f90565b3480156105ea57600080fd5b506102b661105e565b3480156105ff57600080fd5b506102b661060e3660046121a0565b61113b565b34801561061f57600080fd5b506102b661062e366004612374565b611212565b34801561063f57600080fd5b5061029661064e366004612374565b611256565b34801561065f57600080fd5b506102b661066e366004612119565b6112d9565b34801561067f57600080fd5b50610345611340565b34801561069457600080fd5b506103456106a3366004612119565b611346565b3480156106b457600080fd5b506102d8611351565b3480156106c957600080fd5b5061026b6106d8366004612133565b611365565b6102b66106eb366004612374565b611393565b3480156106fc57600080fd5b506102b661070b366004612119565b6113ef565b60006001600160e01b031982166380ac58cd60e01b148061074157506001600160e01b03198216635b5e139f60e01b145b8061075c57506001600160e01b0319821663780e9d6360e01b145b8061076b575061076b8261145d565b90505b919050565b60606002805461078290612da5565b80601f01602080910402602001604051908101604052809291908181526020018280546107ae90612da5565b80156107fb5780601f106107d0576101008083540402835291602001916107fb565b820191906000526020600020905b8154815290600101906020018083116107de57829003601f168201915b5050505050905090565b600e5460ff166108305760405162461bcd60e51b8152600401610827906124f9565b60405180910390fd5b6000811180156108425750600c548111155b61085e5760405162461bcd60e51b81526004016108279061255a565b80600a5461086c9190612d04565b34101561088b5760405162461bcd60e51b815260040161082790612a32565b600d54816108976109fe565b6108a19190612cd8565b11156108bf5760405162461bcd60e51b815260040161082790612530565b6108c93382611476565b50565b60006108d782611494565b6108f35760405162461bcd60e51b815260040161082790612bf4565b506000908152600660205260409020546001600160a01b031690565b600061091a82610ce6565b9050806001600160a01b0316836001600160a01b0316141561094e5760405162461bcd60e51b815260040161082790612973565b806001600160a01b031661096061149b565b6001600160a01b0316148061097c575061097c816106d861149b565b6109985760405162461bcd60e51b815260040161082790612741565b6109a383838361149f565b505050565b6109b061149b565b6001600160a01b03166109c1610f0e565b6001600160a01b0316146109e75760405162461bcd60e51b815260040161082790612866565b600d55565b600f6020526000908152604090205481565b60015490565b600d54811015610ac957600e54604051636918579d60e11b81526101009091046001600160a01b03169063d230af3a90610a4490869086906004016123fe565b600060405180830381600087803b158015610a5e57600080fd5b505af1158015610a72573d6000803e3d6000fd5b505050506001600160a01b0383166000908152600f60205260408120805491610a9a83612d8e565b90915550506001600160a01b0382166000908152600f60205260408120805491610ac383612dda565b91905055505b6109a38383836114fb565b610adc61149b565b6001600160a01b0316610aed610f0e565b6001600160a01b031614610b135760405162461bcd60e51b815260040161082790612866565b60026009541415610b365760405162461bcd60e51b815260040161082790612b6e565b6002600955610b4481611506565b506001600955565b6000610b5783610d4b565b8210610b755760405162461bcd60e51b8152600401610827906124b7565b6000610b7f6109fe565b905060008060005b83811015610c29576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610bda57805192505b876001600160a01b0316836001600160a01b03161415610c165786841415610c0857509350610c4292505050565b83610c1281612dda565b9450505b5080610c2181612dda565b915050610b87565b5060405162461bcd60e51b815260040161082790612ada565b92915050565b6109a38383836040518060200160405280600081525061113b565b600b5481565b6000610c736109fe565b8210610c915760405162461bcd60e51b815260040161082790612631565b5090565b610c9d61149b565b6001600160a01b0316610cae610f0e565b6001600160a01b031614610cd45760405162461bcd60e51b815260040161082790612866565b6109a360108383612056565b600c5481565b6000610cf182611691565b5192915050565b610d0061149b565b6001600160a01b0316610d11610f0e565b6001600160a01b031614610d375760405162461bcd60e51b815260040161082790612866565b600a55565b600e5460ff1681565b600d5481565b60006001600160a01b038216610d735760405162461bcd60e51b8152600401610827906127d5565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b610da061149b565b6001600160a01b0316610db1610f0e565b6001600160a01b031614610dd75760405162461bcd60e51b815260040161082790612866565b610de160006117a4565b565b610deb61149b565b6001600160a01b0316610dfc610f0e565b6001600160a01b031614610e225760405162461bcd60e51b815260040161082790612866565b600b55565b600a5481565b60606000610e3a83610d4b565b905080610e5757505060408051600081526020810190915261076e565b60008167ffffffffffffffff811115610e8057634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610ea9578160200160208202803683370190505b50905060005b82811015610efe57610ec18582610b4c565b828281518110610ee157634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610ef681612dda565b915050610eaf565b50915061076e9050565b50919050565b6000546001600160a01b031690565b610f256120d6565b61076b82611691565b60606003805461078290612da5565b610f4561149b565b6001600160a01b0316610f56610f0e565b6001600160a01b031614610f7c5760405162461bcd60e51b815260040161082790612866565b600e805460ff19811660ff90911615179055565b610f9861149b565b6001600160a01b0316826001600160a01b03161415610fc95760405162461bcd60e51b8152600401610827906128ea565b8060076000610fd661149b565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561101a61149b565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110529190612499565b60405180910390a35050565b61106661149b565b6001600160a01b0316611077610f0e565b6001600160a01b03161461109d5760405162461bcd60e51b815260040161082790612866565b600260095414156110c05760405162461bcd60e51b815260040161082790612b6e565b6002600955604051600090339047906110d8906123e7565b60006040518083038185875af1925050503d8060008114611115576040519150601f19603f3d011682016040523d82523d6000602084013e61111a565b606091505b5050905080610b445760405162461bcd60e51b8152600401610827906129b5565b600d5482101561120057600e54604051636918579d60e11b81526101009091046001600160a01b03169063d230af3a9061117b90879087906004016123fe565b600060405180830381600087803b15801561119557600080fd5b505af11580156111a9573d6000803e3d6000fd5b505050506001600160a01b0384166000908152600f602052604081208054916111d183612d8e565b90915550506001600160a01b0383166000908152600f602052604081208054916111fa83612dda565b91905055505b61120c848484846117f4565b50505050565b61121a61149b565b6001600160a01b031661122b610f0e565b6001600160a01b0316146112515760405162461bcd60e51b815260040161082790612866565b600c55565b606061126182611494565b61127d5760405162461bcd60e51b81526004016108279061289b565b6000611287611827565b905060008151116112a757604051806020016040528060008152506112d2565b806112b184611836565b6040516020016112c29291906123b8565b6040516020818303038152906040525b9392505050565b6112e161149b565b6001600160a01b03166112f2610f0e565b6001600160a01b0316146113185760405162461bcd60e51b815260040161082790612866565b600e80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b60085481565b600061076b82611959565b600e5461010090046001600160a01b031681565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b600e5460ff166113b55760405162461bcd60e51b81526004016108279061270a565b6000811180156113c75750600c548111155b6113e35760405162461bcd60e51b81526004016108279061255a565b600b54816108976109fe565b6113f761149b565b6001600160a01b0316611408610f0e565b6001600160a01b03161461142e5760405162461bcd60e51b815260040161082790612866565b6001600160a01b0381166114545760405162461bcd60e51b8152600401610827906125a1565b6108c9816117a4565b6001600160e01b031981166301ffc9a760e01b14919050565b6114908282604051806020016040528060008152506119ad565b5050565b6001541190565b3390565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6109a3838383611c29565b600854816115265760405162461bcd60e51b81526004016108279061279e565b600060016115348484612cd8565b61153e9190612d4b565b905061156b60017f0000000000000000000000000000000000000000000000000000000000000000612d4b565b8111156115a05761159d60017f0000000000000000000000000000000000000000000000000000000000000000612d4b565b90505b6115a981611494565b6115c55760405162461bcd60e51b815260040161082790612b28565b815b81811161167d576000818152600460205260409020546001600160a01b031661166b5760006115f582611691565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff90811685840190815260008881526004909652939094209151825493516001600160a01b031990941691161767ffffffffffffffff60a01b1916600160a01b9290931691909102919091179055505b8061167581612dda565b9150506115c7565b50611689816001612cd8565b600855505050565b6116996120d6565b6116a282611494565b6116be5760405162461bcd60e51b8152600401610827906125e7565b60007f0000000000000000000000000000000000000000000000000000000000000000831061171f576117117f000000000000000000000000000000000000000000000000000000000000000084612d4b565b61171c906001612cd8565b90505b825b81811061178b576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561177857925061076e915050565b508061178381612d8e565b915050611721565b5060405162461bcd60e51b815260040161082790612ba5565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6117ff848484611c29565b61180b84848484611f35565b61120c5760405162461bcd60e51b8152600401610827906129df565b60606010805461078290612da5565b60608161185b57506040805180820190915260018152600360fc1b602082015261076e565b8160005b8115611885578061186f81612dda565b915061187e9050600a83612cf0565b915061185f565b60008167ffffffffffffffff8111156118ae57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156118d8576020820181803683370190505b5090505b8415611951576118ed600183612d4b565b91506118fa600a86612df5565b611905906030612cd8565b60f81b81838151811061192857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061194a600a86612cf0565b94506118dc565b949350505050565b60006001600160a01b0382166119815760405162461bcd60e51b8152600401610827906126b9565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b0384166119d65760405162461bcd60e51b815260040161082790612a99565b6119df81611494565b156119fc5760405162461bcd60e51b815260040161082790612a62565b7f0000000000000000000000000000000000000000000000000000000000000000831115611a3c5760405162461bcd60e51b815260040161082790612c41565b611a49600085838661120c565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611aa5908790612cb6565b6001600160801b03168152602001858360200151611ac39190612cb6565b6001600160801b039081169091526001600160a01b03808816600081815260056020908152604080832087518154988401518816600160801b029088166fffffffffffffffffffffffffffffffff1990991698909817909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b85811015611c0e5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611bd26000888488611f35565b611bee5760405162461bcd60e51b8152600401610827906129df565b81611bf881612dda565b9250508080611c0690612dda565b915050611b85565b506001819055611c21600087858861120c565b505050505050565b6000611c3482611691565b9050600081600001516001600160a01b0316611c4e61149b565b6001600160a01b03161480611c835750611c6661149b565b6001600160a01b0316611c78846108cc565b6001600160a01b0316145b80611c9757508151611c97906106d861149b565b905080611cb65760405162461bcd60e51b815260040161082790612921565b846001600160a01b031682600001516001600160a01b031614611ceb5760405162461bcd60e51b815260040161082790612820565b6001600160a01b038416611d115760405162461bcd60e51b815260040161082790612674565b611d1e858585600161120c565b611d2e600084846000015161149f565b6001600160a01b0385166000908152600560205260408120805460019290611d609084906001600160801b0316612d23565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526005602052604081208054600194509092611dac91859116612cb6565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b0267ffffffffffffffff60a01b19929093166001600160a01b03199091161716179055611e42846001612cd8565b6000818152600460205260409020549091506001600160a01b0316611ee757611e6a81611494565b15611ee75760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff90811682850190815260008781526004909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c21868686600161120c565b6000611f49846001600160a01b0316612050565b1561204557836001600160a01b031663150b7a02611f6561149b565b8786866040518563ffffffff1660e01b8152600401611f879493929190612418565b602060405180830381600087803b158015611fa157600080fd5b505af1925050508015611fd1575060408051601f3d908101601f19168201909252611fce918101906122eb565b60015b61202b573d808015611fff576040519150601f19603f3d011682016040523d82523d6000602084013e612004565b606091505b5080516120235760405162461bcd60e51b8152600401610827906129df565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611951565b506001949350505050565b3b151590565b82805461206290612da5565b90600052602060002090601f01602090048101928261208457600085556120ca565b82601f1061209d5782800160ff198235161785556120ca565b828001600101855582156120ca579182015b828111156120ca5782358255916020019190600101906120af565b50610c919291506120ed565b604080518082019091526000808252602082015290565b5b80821115610c9157600081556001016120ee565b80356001600160a01b038116811461076e57600080fd5b60006020828403121561212a578081fd5b6112d282612102565b60008060408385031215612145578081fd5b61214e83612102565b915061215c60208401612102565b90509250929050565b600080600060608486031215612179578081fd5b61218284612102565b925061219060208501612102565b9150604084013590509250925092565b600080600080608085870312156121b5578081fd5b6121be85612102565b935060206121cd818701612102565b935060408601359250606086013567ffffffffffffffff808211156121f0578384fd5b818801915088601f830112612203578384fd5b81358181111561221557612215612e35565b604051601f8201601f191681018501838111828210171561223857612238612e35565b60405281815283820185018b101561224e578586fd5b81858501868301379081019093019390935250939692955090935050565b6000806040838503121561227e578182fd5b61228783612102565b91506020830135801515811461229b578182fd5b809150509250929050565b600080604083850312156122b8578182fd5b6122c183612102565b946020939093013593505050565b6000602082840312156122e0578081fd5b81356112d281612e4b565b6000602082840312156122fc578081fd5b81516112d281612e4b565b60008060208385031215612319578182fd5b823567ffffffffffffffff80821115612330578384fd5b818501915085601f830112612343578384fd5b813581811115612351578485fd5b866020828501011115612362578485fd5b60209290920196919550909350505050565b600060208284031215612385578081fd5b5035919050565b600081518084526123a4816020860160208601612d62565b601f01601f19169290920160200192915050565b600083516123ca818460208801612d62565b8351908301906123de818360208801612d62565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061244b9083018461238c565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561248d57835183529284019291840191600101612471565b50909695505050505050565b901515815260200190565b6000602082526112d2602083018461238c565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526019908201527f616c65206973206e6f742061637469766520746f206d696e7400000000000000604082015260600190565b60208082526010908201526f13585e081d1bdad95b881b5a5b9d195960821b604082015260600190565b60208082526027908201527f43616e206e6f74206d696e74206d6f7265207468616e206d617820746f6b656e604082015266040e0cae440e8f60cb1b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526031908201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260408201527020746865207a65726f206164647265737360781b606082015260800190565b6020808252601a908201527f53616c65206973206e6f742061637469766520746f206d696e74000000000000604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b60208082526018908201527f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000604082015260600190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526010908201526f2a3930b739b332b9103330b4b632b21760811b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601690820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b604082015260600190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b60208082526026908201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360408201526506c65616e75760d41b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201526e1037bbb732b91037b3103a37b5b2b760891b606082015260800190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b60208082526022908201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696040820152610ced60f31b606082015260800190565b81516001600160a01b0316815260209182015167ffffffffffffffff169181019190915260400190565b90815260200190565b60006001600160801b038083168185168083038211156123de576123de612e09565b60008219821115612ceb57612ceb612e09565b500190565b600082612cff57612cff612e1f565b500490565b6000816000190483118215151615612d1e57612d1e612e09565b500290565b60006001600160801b0383811690831681811015612d4357612d43612e09565b039392505050565b600082821015612d5d57612d5d612e09565b500390565b60005b83811015612d7d578181015183820152602001612d65565b8381111561120c5750506000910152565b600081612d9d57612d9d612e09565b506000190190565b600281046001821680612db957607f821691505b60208210811415610f0857634e487b7160e01b600052602260045260246000fd5b6000600019821415612dee57612dee612e09565b5060010190565b600082612e0457612e04612e1f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108c957600080fdfea2646970667358221220e9f8ee129a8ea182e65111731172dcbdbe6bf899b1e755601ee6a5540fcb3a9a64736f6c634300080000330000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000115c

Deployed Bytecode

0x6080604052600436106102465760003560e01c806370a0823111610139578063ac446002116100b6578063d7224ba01161007a578063d7224ba014610673578063dc33e68114610688578063e2441696146106a8578063e985e9c5146106bd578063ec63a1ed146106dd578063f2fde38b146106f057610246565b8063ac446002146105de578063b88d4fde146105f3578063c6f6f21614610613578063c87b56dd14610633578063ca2309e31461065357610246565b80638da5cb5b116100fd5780638da5cb5b146105525780639231ab2a1461056757806395d89b41146105945780639e87fac8146105a9578063a22cb465146105be57610246565b806370a08231146104bb578063715018a6146104db578063742a4c9b146104f05780637eff4b67146105105780638462151c1461052557610246565b80632f745c59116101c75780635d25f4ec1161018b5780635d25f4ec1461043c5780636352211e14610451578063670fc775146104715780636f0c6a2f14610491578063707bdf58146104a657610246565b80632f745c59146103a757806342842e0e146103c75780634e4f7e72146103e75780634f6ccce7146103fc57806355f804b31461041c57610246565b806311e776fe1161020e57806311e776fe1461030557806315581c901461032557806318160ddd1461035257806323b872dd146103675780632d20fb601461038757610246565b806301ffc9a71461024b57806306fdde031461028157806307883703146102a3578063081812fc146102b8578063095ea7b3146102e5575b600080fd5b34801561025757600080fd5b5061026b6102663660046122cf565b610710565b6040516102789190612499565b60405180910390f35b34801561028d57600080fd5b50610296610773565b60405161027891906124a4565b6102b66102b1366004612374565b610805565b005b3480156102c457600080fd5b506102d86102d3366004612374565b6108cc565b60405161027891906123ea565b3480156102f157600080fd5b506102b66103003660046122a6565b61090f565b34801561031157600080fd5b506102b6610320366004612374565b6109a8565b34801561033157600080fd5b50610345610340366004612119565b6109ec565b6040516102789190612cad565b34801561035e57600080fd5b506103456109fe565b34801561037357600080fd5b506102b6610382366004612165565b610a04565b34801561039357600080fd5b506102b66103a2366004612374565b610ad4565b3480156103b357600080fd5b506103456103c23660046122a6565b610b4c565b3480156103d357600080fd5b506102b66103e2366004612165565b610c48565b3480156103f357600080fd5b50610345610c63565b34801561040857600080fd5b50610345610417366004612374565b610c69565b34801561042857600080fd5b506102b6610437366004612307565b610c95565b34801561044857600080fd5b50610345610ce0565b34801561045d57600080fd5b506102d861046c366004612374565b610ce6565b34801561047d57600080fd5b506102b661048c366004612374565b610cf8565b34801561049d57600080fd5b5061026b610d3c565b3480156104b257600080fd5b50610345610d45565b3480156104c757600080fd5b506103456104d6366004612119565b610d4b565b3480156104e757600080fd5b506102b6610d98565b3480156104fc57600080fd5b506102b661050b366004612374565b610de3565b34801561051c57600080fd5b50610345610e27565b34801561053157600080fd5b50610545610540366004612119565b610e2d565b6040516102789190612455565b34801561055e57600080fd5b506102d8610f0e565b34801561057357600080fd5b50610587610582366004612374565b610f1d565b6040516102789190612c83565b3480156105a057600080fd5b50610296610f2e565b3480156105b557600080fd5b506102b6610f3d565b3480156105ca57600080fd5b506102b66105d936600461226c565b610f90565b3480156105ea57600080fd5b506102b661105e565b3480156105ff57600080fd5b506102b661060e3660046121a0565b61113b565b34801561061f57600080fd5b506102b661062e366004612374565b611212565b34801561063f57600080fd5b5061029661064e366004612374565b611256565b34801561065f57600080fd5b506102b661066e366004612119565b6112d9565b34801561067f57600080fd5b50610345611340565b34801561069457600080fd5b506103456106a3366004612119565b611346565b3480156106b457600080fd5b506102d8611351565b3480156106c957600080fd5b5061026b6106d8366004612133565b611365565b6102b66106eb366004612374565b611393565b3480156106fc57600080fd5b506102b661070b366004612119565b6113ef565b60006001600160e01b031982166380ac58cd60e01b148061074157506001600160e01b03198216635b5e139f60e01b145b8061075c57506001600160e01b0319821663780e9d6360e01b145b8061076b575061076b8261145d565b90505b919050565b60606002805461078290612da5565b80601f01602080910402602001604051908101604052809291908181526020018280546107ae90612da5565b80156107fb5780601f106107d0576101008083540402835291602001916107fb565b820191906000526020600020905b8154815290600101906020018083116107de57829003601f168201915b5050505050905090565b600e5460ff166108305760405162461bcd60e51b8152600401610827906124f9565b60405180910390fd5b6000811180156108425750600c548111155b61085e5760405162461bcd60e51b81526004016108279061255a565b80600a5461086c9190612d04565b34101561088b5760405162461bcd60e51b815260040161082790612a32565b600d54816108976109fe565b6108a19190612cd8565b11156108bf5760405162461bcd60e51b815260040161082790612530565b6108c93382611476565b50565b60006108d782611494565b6108f35760405162461bcd60e51b815260040161082790612bf4565b506000908152600660205260409020546001600160a01b031690565b600061091a82610ce6565b9050806001600160a01b0316836001600160a01b0316141561094e5760405162461bcd60e51b815260040161082790612973565b806001600160a01b031661096061149b565b6001600160a01b0316148061097c575061097c816106d861149b565b6109985760405162461bcd60e51b815260040161082790612741565b6109a383838361149f565b505050565b6109b061149b565b6001600160a01b03166109c1610f0e565b6001600160a01b0316146109e75760405162461bcd60e51b815260040161082790612866565b600d55565b600f6020526000908152604090205481565b60015490565b600d54811015610ac957600e54604051636918579d60e11b81526101009091046001600160a01b03169063d230af3a90610a4490869086906004016123fe565b600060405180830381600087803b158015610a5e57600080fd5b505af1158015610a72573d6000803e3d6000fd5b505050506001600160a01b0383166000908152600f60205260408120805491610a9a83612d8e565b90915550506001600160a01b0382166000908152600f60205260408120805491610ac383612dda565b91905055505b6109a38383836114fb565b610adc61149b565b6001600160a01b0316610aed610f0e565b6001600160a01b031614610b135760405162461bcd60e51b815260040161082790612866565b60026009541415610b365760405162461bcd60e51b815260040161082790612b6e565b6002600955610b4481611506565b506001600955565b6000610b5783610d4b565b8210610b755760405162461bcd60e51b8152600401610827906124b7565b6000610b7f6109fe565b905060008060005b83811015610c29576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610bda57805192505b876001600160a01b0316836001600160a01b03161415610c165786841415610c0857509350610c4292505050565b83610c1281612dda565b9450505b5080610c2181612dda565b915050610b87565b5060405162461bcd60e51b815260040161082790612ada565b92915050565b6109a38383836040518060200160405280600081525061113b565b600b5481565b6000610c736109fe565b8210610c915760405162461bcd60e51b815260040161082790612631565b5090565b610c9d61149b565b6001600160a01b0316610cae610f0e565b6001600160a01b031614610cd45760405162461bcd60e51b815260040161082790612866565b6109a360108383612056565b600c5481565b6000610cf182611691565b5192915050565b610d0061149b565b6001600160a01b0316610d11610f0e565b6001600160a01b031614610d375760405162461bcd60e51b815260040161082790612866565b600a55565b600e5460ff1681565b600d5481565b60006001600160a01b038216610d735760405162461bcd60e51b8152600401610827906127d5565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b610da061149b565b6001600160a01b0316610db1610f0e565b6001600160a01b031614610dd75760405162461bcd60e51b815260040161082790612866565b610de160006117a4565b565b610deb61149b565b6001600160a01b0316610dfc610f0e565b6001600160a01b031614610e225760405162461bcd60e51b815260040161082790612866565b600b55565b600a5481565b60606000610e3a83610d4b565b905080610e5757505060408051600081526020810190915261076e565b60008167ffffffffffffffff811115610e8057634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610ea9578160200160208202803683370190505b50905060005b82811015610efe57610ec18582610b4c565b828281518110610ee157634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610ef681612dda565b915050610eaf565b50915061076e9050565b50919050565b6000546001600160a01b031690565b610f256120d6565b61076b82611691565b60606003805461078290612da5565b610f4561149b565b6001600160a01b0316610f56610f0e565b6001600160a01b031614610f7c5760405162461bcd60e51b815260040161082790612866565b600e805460ff19811660ff90911615179055565b610f9861149b565b6001600160a01b0316826001600160a01b03161415610fc95760405162461bcd60e51b8152600401610827906128ea565b8060076000610fd661149b565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561101a61149b565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110529190612499565b60405180910390a35050565b61106661149b565b6001600160a01b0316611077610f0e565b6001600160a01b03161461109d5760405162461bcd60e51b815260040161082790612866565b600260095414156110c05760405162461bcd60e51b815260040161082790612b6e565b6002600955604051600090339047906110d8906123e7565b60006040518083038185875af1925050503d8060008114611115576040519150601f19603f3d011682016040523d82523d6000602084013e61111a565b606091505b5050905080610b445760405162461bcd60e51b8152600401610827906129b5565b600d5482101561120057600e54604051636918579d60e11b81526101009091046001600160a01b03169063d230af3a9061117b90879087906004016123fe565b600060405180830381600087803b15801561119557600080fd5b505af11580156111a9573d6000803e3d6000fd5b505050506001600160a01b0384166000908152600f602052604081208054916111d183612d8e565b90915550506001600160a01b0383166000908152600f602052604081208054916111fa83612dda565b91905055505b61120c848484846117f4565b50505050565b61121a61149b565b6001600160a01b031661122b610f0e565b6001600160a01b0316146112515760405162461bcd60e51b815260040161082790612866565b600c55565b606061126182611494565b61127d5760405162461bcd60e51b81526004016108279061289b565b6000611287611827565b905060008151116112a757604051806020016040528060008152506112d2565b806112b184611836565b6040516020016112c29291906123b8565b6040516020818303038152906040525b9392505050565b6112e161149b565b6001600160a01b03166112f2610f0e565b6001600160a01b0316146113185760405162461bcd60e51b815260040161082790612866565b600e80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b60085481565b600061076b82611959565b600e5461010090046001600160a01b031681565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b600e5460ff166113b55760405162461bcd60e51b81526004016108279061270a565b6000811180156113c75750600c548111155b6113e35760405162461bcd60e51b81526004016108279061255a565b600b54816108976109fe565b6113f761149b565b6001600160a01b0316611408610f0e565b6001600160a01b03161461142e5760405162461bcd60e51b815260040161082790612866565b6001600160a01b0381166114545760405162461bcd60e51b8152600401610827906125a1565b6108c9816117a4565b6001600160e01b031981166301ffc9a760e01b14919050565b6114908282604051806020016040528060008152506119ad565b5050565b6001541190565b3390565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6109a3838383611c29565b600854816115265760405162461bcd60e51b81526004016108279061279e565b600060016115348484612cd8565b61153e9190612d4b565b905061156b60017f000000000000000000000000000000000000000000000000000000000000115c612d4b565b8111156115a05761159d60017f000000000000000000000000000000000000000000000000000000000000115c612d4b565b90505b6115a981611494565b6115c55760405162461bcd60e51b815260040161082790612b28565b815b81811161167d576000818152600460205260409020546001600160a01b031661166b5760006115f582611691565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff90811685840190815260008881526004909652939094209151825493516001600160a01b031990941691161767ffffffffffffffff60a01b1916600160a01b9290931691909102919091179055505b8061167581612dda565b9150506115c7565b50611689816001612cd8565b600855505050565b6116996120d6565b6116a282611494565b6116be5760405162461bcd60e51b8152600401610827906125e7565b60007f0000000000000000000000000000000000000000000000000000000000000014831061171f576117117f000000000000000000000000000000000000000000000000000000000000001484612d4b565b61171c906001612cd8565b90505b825b81811061178b576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561177857925061076e915050565b508061178381612d8e565b915050611721565b5060405162461bcd60e51b815260040161082790612ba5565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6117ff848484611c29565b61180b84848484611f35565b61120c5760405162461bcd60e51b8152600401610827906129df565b60606010805461078290612da5565b60608161185b57506040805180820190915260018152600360fc1b602082015261076e565b8160005b8115611885578061186f81612dda565b915061187e9050600a83612cf0565b915061185f565b60008167ffffffffffffffff8111156118ae57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156118d8576020820181803683370190505b5090505b8415611951576118ed600183612d4b565b91506118fa600a86612df5565b611905906030612cd8565b60f81b81838151811061192857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061194a600a86612cf0565b94506118dc565b949350505050565b60006001600160a01b0382166119815760405162461bcd60e51b8152600401610827906126b9565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b0384166119d65760405162461bcd60e51b815260040161082790612a99565b6119df81611494565b156119fc5760405162461bcd60e51b815260040161082790612a62565b7f0000000000000000000000000000000000000000000000000000000000000014831115611a3c5760405162461bcd60e51b815260040161082790612c41565b611a49600085838661120c565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611aa5908790612cb6565b6001600160801b03168152602001858360200151611ac39190612cb6565b6001600160801b039081169091526001600160a01b03808816600081815260056020908152604080832087518154988401518816600160801b029088166fffffffffffffffffffffffffffffffff1990991698909817909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b85811015611c0e5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611bd26000888488611f35565b611bee5760405162461bcd60e51b8152600401610827906129df565b81611bf881612dda565b9250508080611c0690612dda565b915050611b85565b506001819055611c21600087858861120c565b505050505050565b6000611c3482611691565b9050600081600001516001600160a01b0316611c4e61149b565b6001600160a01b03161480611c835750611c6661149b565b6001600160a01b0316611c78846108cc565b6001600160a01b0316145b80611c9757508151611c97906106d861149b565b905080611cb65760405162461bcd60e51b815260040161082790612921565b846001600160a01b031682600001516001600160a01b031614611ceb5760405162461bcd60e51b815260040161082790612820565b6001600160a01b038416611d115760405162461bcd60e51b815260040161082790612674565b611d1e858585600161120c565b611d2e600084846000015161149f565b6001600160a01b0385166000908152600560205260408120805460019290611d609084906001600160801b0316612d23565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526005602052604081208054600194509092611dac91859116612cb6565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b0267ffffffffffffffff60a01b19929093166001600160a01b03199091161716179055611e42846001612cd8565b6000818152600460205260409020549091506001600160a01b0316611ee757611e6a81611494565b15611ee75760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff90811682850190815260008781526004909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611c21868686600161120c565b6000611f49846001600160a01b0316612050565b1561204557836001600160a01b031663150b7a02611f6561149b565b8786866040518563ffffffff1660e01b8152600401611f879493929190612418565b602060405180830381600087803b158015611fa157600080fd5b505af1925050508015611fd1575060408051601f3d908101601f19168201909252611fce918101906122eb565b60015b61202b573d808015611fff576040519150601f19603f3d011682016040523d82523d6000602084013e612004565b606091505b5080516120235760405162461bcd60e51b8152600401610827906129df565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611951565b506001949350505050565b3b151590565b82805461206290612da5565b90600052602060002090601f01602090048101928261208457600085556120ca565b82601f1061209d5782800160ff198235161785556120ca565b828001600101855582156120ca579182015b828111156120ca5782358255916020019190600101906120af565b50610c919291506120ed565b604080518082019091526000808252602082015290565b5b80821115610c9157600081556001016120ee565b80356001600160a01b038116811461076e57600080fd5b60006020828403121561212a578081fd5b6112d282612102565b60008060408385031215612145578081fd5b61214e83612102565b915061215c60208401612102565b90509250929050565b600080600060608486031215612179578081fd5b61218284612102565b925061219060208501612102565b9150604084013590509250925092565b600080600080608085870312156121b5578081fd5b6121be85612102565b935060206121cd818701612102565b935060408601359250606086013567ffffffffffffffff808211156121f0578384fd5b818801915088601f830112612203578384fd5b81358181111561221557612215612e35565b604051601f8201601f191681018501838111828210171561223857612238612e35565b60405281815283820185018b101561224e578586fd5b81858501868301379081019093019390935250939692955090935050565b6000806040838503121561227e578182fd5b61228783612102565b91506020830135801515811461229b578182fd5b809150509250929050565b600080604083850312156122b8578182fd5b6122c183612102565b946020939093013593505050565b6000602082840312156122e0578081fd5b81356112d281612e4b565b6000602082840312156122fc578081fd5b81516112d281612e4b565b60008060208385031215612319578182fd5b823567ffffffffffffffff80821115612330578384fd5b818501915085601f830112612343578384fd5b813581811115612351578485fd5b866020828501011115612362578485fd5b60209290920196919550909350505050565b600060208284031215612385578081fd5b5035919050565b600081518084526123a4816020860160208601612d62565b601f01601f19169290920160200192915050565b600083516123ca818460208801612d62565b8351908301906123de818360208801612d62565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061244b9083018461238c565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561248d57835183529284019291840191600101612471565b50909695505050505050565b901515815260200190565b6000602082526112d2602083018461238c565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526019908201527f616c65206973206e6f742061637469766520746f206d696e7400000000000000604082015260600190565b60208082526010908201526f13585e081d1bdad95b881b5a5b9d195960821b604082015260600190565b60208082526027908201527f43616e206e6f74206d696e74206d6f7265207468616e206d617820746f6b656e604082015266040e0cae440e8f60cb1b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526031908201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260408201527020746865207a65726f206164647265737360781b606082015260800190565b6020808252601a908201527f53616c65206973206e6f742061637469766520746f206d696e74000000000000604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b60208082526018908201527f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000604082015260600190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526010908201526f2a3930b739b332b9103330b4b632b21760811b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601690820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b604082015260600190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b60208082526026908201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360408201526506c65616e75760d41b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201526e1037bbb732b91037b3103a37b5b2b760891b606082015260800190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b60208082526022908201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696040820152610ced60f31b606082015260800190565b81516001600160a01b0316815260209182015167ffffffffffffffff169181019190915260400190565b90815260200190565b60006001600160801b038083168185168083038211156123de576123de612e09565b60008219821115612ceb57612ceb612e09565b500190565b600082612cff57612cff612e1f565b500490565b6000816000190483118215151615612d1e57612d1e612e09565b500290565b60006001600160801b0383811690831681811015612d4357612d43612e09565b039392505050565b600082821015612d5d57612d5d612e09565b500390565b60005b83811015612d7d578181015183820152602001612d65565b8381111561120c5750506000910152565b600081612d9d57612d9d612e09565b506000190190565b600281046001821680612db957607f821691505b60208210811415610f0857634e487b7160e01b600052602260045260246000fd5b6000600019821415612dee57612dee612e09565b5060010190565b600082612e0457612e04612e1f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146108c957600080fdfea2646970667358221220e9f8ee129a8ea182e65111731172dcbdbe6bf899b1e755601ee6a5540fcb3a9a64736f6c63430008000033

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

0000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000115c

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 20
Arg [1] : collectionSize_ (uint256): 4444

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [1] : 000000000000000000000000000000000000000000000000000000000000115c


Deployed Bytecode Sourcemap

40519:3838:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23233:370;;;;;;;;;;-1:-1:-1;23233:370:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24959:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;42047:400::-;;;;;;:::i;:::-;;:::i;:::-;;26484:204;;;;;;;;;;-1:-1:-1;26484:204:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;26047:379::-;;;;;;;;;;-1:-1:-1;26047:379:0;;;;;:::i;:::-;;:::i;41304:93::-;;;;;;;;;;-1:-1:-1;41304:93:0;;;;;:::i;:::-;;:::i;40814:47::-;;;;;;;;;;-1:-1:-1;40814:47:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;21794:94::-;;;;;;;;;;;;;:::i;42452:268::-;;;;;;;;;;-1:-1:-1;42452:268:0;;;;;:::i;:::-;;:::i;43472:118::-;;;;;;;;;;-1:-1:-1;43472:118:0;;;;;:::i;:::-;;:::i;22425:744::-;;;;;;;;;;-1:-1:-1;22425:744:0;;;;;:::i;:::-;;:::i;27547:157::-;;;;;;;;;;-1:-1:-1;27547:157:0;;;;;:::i;:::-;;:::i;40649:34::-;;;;;;;;;;;;;:::i;21957:177::-;;;;;;;;;;-1:-1:-1;21957:177:0;;;;;:::i;:::-;;:::i;43181:98::-;;;;;;;;;;-1:-1:-1;43181:98:0;;;;;:::i;:::-;;:::i;40689:20::-;;;;;;;;;;;;;:::i;24782:118::-;;;;;;;;;;-1:-1:-1;24782:118:0;;;;;:::i;:::-;;:::i;41403:97::-;;;;;;;;;;-1:-1:-1;41403:97:0;;;;;:::i;:::-;;:::i;40748:32::-;;;;;;;;;;;;;:::i;40718:25::-;;;;;;;;;;;;;:::i;23659:211::-;;;;;;;;;;-1:-1:-1;23659:211:0;;;;;:::i;:::-;;:::i;39774:94::-;;;;;;;;;;;;;:::i;41514:101::-;;;;;;;;;;-1:-1:-1;41514:101:0;;;;;:::i;:::-;;:::i;40587:53::-;;;;;;;;;;;;;:::i;43862:490::-;;;;;;;;;;-1:-1:-1;43862:490:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;39123:87::-;;;;;;;;;;;;;:::i;43709:147::-;;;;;;;;;;-1:-1:-1;43709:147:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;25114:98::-;;;;;;;;;;;;;:::i;41631:78::-;;;;;;;;;;;;;:::i;26752:274::-;;;;;;;;;;-1:-1:-1;26752:274:0;;;;;:::i;:::-;;:::i;43285:181::-;;;;;;;;;;;;;:::i;42725:302::-;;;;;;;;;;-1:-1:-1;42725:302:0;;;;;:::i;:::-;;:::i;41206:89::-;;;;;;;;;;-1:-1:-1;41206:89:0;;;;;:::i;:::-;;:::i;25275:394::-;;;;;;;;;;-1:-1:-1;25275:394:0;;;;;:::i;:::-;;:::i;41087:112::-;;;;;;;;;;-1:-1:-1;41087:112:0;;;;;:::i;:::-;;:::i;32190:43::-;;;;;;;;;;;;;:::i;43596:107::-;;;;;;;;;;-1:-1:-1;43596:107:0;;;;;:::i;:::-;;:::i;40785:19::-;;;;;;;;;;;;;:::i;27089:186::-;;;;;;;;;;-1:-1:-1;27089:186:0;;;;;:::i;:::-;;:::i;41715:326::-;;;;;;:::i;:::-;;:::i;40023:192::-;;;;;;;;;;-1:-1:-1;40023:192:0;;;;;:::i;:::-;;:::i;23233:370::-;23360:4;-1:-1:-1;;;;;;23390:40:0;;-1:-1:-1;;;23390:40:0;;:99;;-1:-1:-1;;;;;;;23441:48:0;;-1:-1:-1;;;23441:48:0;23390:99;:160;;;-1:-1:-1;;;;;;;23500:50:0;;-1:-1:-1;;;23500:50:0;23390:160;:207;;;;23561:36;23585:11;23561:23;:36::i;:::-;23376:221;;23233:370;;;;:::o;24959:94::-;25013:13;25042:5;25035:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24959:94;:::o;42047:400::-;42111:13;;;;42103:51;;;;-1:-1:-1;;;42103:51:0;;;;;;;:::i;:::-;;;;;;;;;42180:1;42169:8;:12;:36;;;;;42197:8;;42185;:20;;42169:36;42161:88;;;;-1:-1:-1;;;42161:88:0;;;;;;;:::i;:::-;42293:8;42277:15;;:24;;;;:::i;:::-;42264:9;:37;;42256:72;;;;-1:-1:-1;;;42256:72:0;;;;;;;:::i;:::-;42371:9;;42359:8;42343:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;42335:66;;;;-1:-1:-1;;;42335:66:0;;;;;;;:::i;:::-;42410:31;42420:10;42432:8;42410:9;:31::i;:::-;42047:400;:::o;26484:204::-;26552:7;26576:16;26584:7;26576;:16::i;:::-;26568:74;;;;-1:-1:-1;;;26568:74:0;;;;;;;:::i;:::-;-1:-1:-1;26658:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26658:24:0;;26484:204::o;26047:379::-;26116:13;26132:24;26148:7;26132:15;:24::i;:::-;26116:40;;26177:5;-1:-1:-1;;;;;26171:11:0;:2;-1:-1:-1;;;;;26171:11:0;;;26163:58;;;;-1:-1:-1;;;26163:58:0;;;;;;;:::i;:::-;26262:5;-1:-1:-1;;;;;26246:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;26246:21:0;;:62;;;;26271:37;26288:5;26295:12;:10;:12::i;26271:37::-;26230:153;;;;-1:-1:-1;;;26230:153:0;;;;;;;:::i;:::-;26392:28;26401:2;26405:7;26414:5;26392:8;:28::i;:::-;26047:379;;;:::o;41304:93::-;39354:12;:10;:12::i;:::-;-1:-1:-1;;;;;39343:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;39343:23:0;;39335:68;;;;-1:-1:-1;;;39335:68:0;;;;;;;:::i;:::-;41369:9:::1;:22:::0;41304:93::o;40814:47::-;;;;;;;;;;;;;:::o;21794:94::-;21870:12;;21794:94;:::o;42452:268::-;42554:9;;42544:7;:19;42540:130;;;42576:5;;:28;;-1:-1:-1;;;42576:28:0;;:5;;;;-1:-1:-1;;;;;42576:5:0;;:18;;:28;;42595:4;;42601:2;;42576:28;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;42615:17:0;;;;;;:11;:17;;;;;:19;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;42645:15:0;;;;;;:11;:15;;;;;:17;;;;;;:::i;:::-;;;;;;42540:130;42676:39;42697:4;42703:2;42707:7;42676:20;:39::i;43472:118::-;39354:12;:10;:12::i;:::-;-1:-1:-1;;;;;39343:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;39343:23:0;;39335:68;;;;-1:-1:-1;;;39335:68:0;;;;;;;:::i;:::-;37235:1:::1;37831:7;;:19;;37823:63;;;;-1:-1:-1::0;;;37823:63:0::1;;;;;;;:::i;:::-;37235:1;37964:7;:18:::0;43556:28:::2;43575:8:::0;43556:18:::2;:28::i;:::-;-1:-1:-1::0;37191:1:0::1;38143:7;:22:::0;43472:118::o;22425:744::-;22534:7;22569:16;22579:5;22569:9;:16::i;:::-;22561:5;:24;22553:71;;;;-1:-1:-1;;;22553:71:0;;;;;;;:::i;:::-;22631:22;22656:13;:11;:13::i;:::-;22631:38;;22676:19;22706:25;22756:9;22751:350;22775:14;22771:1;:18;22751:350;;;22805:31;22839:14;;;:11;:14;;;;;;;;;22805:48;;;;;;;;;-1:-1:-1;;;;;22805:48:0;;;;;-1:-1:-1;;;22805:48:0;;;;;;;;;;;;22866:28;22862:89;;22927:14;;;-1:-1:-1;22862:89:0;22984:5;-1:-1:-1;;;;;22963:26:0;:17;-1:-1:-1;;;;;22963:26:0;;22959:135;;;23021:5;23006:11;:20;23002:59;;;-1:-1:-1;23048:1:0;-1:-1:-1;23041:8:0;;-1:-1:-1;;;23041:8:0;23002:59;23071:13;;;;:::i;:::-;;;;22959:135;-1:-1:-1;22791:3:0;;;;:::i;:::-;;;;22751:350;;;;23107:56;;-1:-1:-1;;;23107:56:0;;;;;;;:::i;22425:744::-;;;;;:::o;27547:157::-;27659:39;27676:4;27682:2;27686:7;27659:39;;;;;;;;;;;;:16;:39::i;40649:34::-;;;;:::o;21957:177::-;22024:7;22056:13;:11;:13::i;:::-;22048:5;:21;22040:69;;;;-1:-1:-1;;;22040:69:0;;;;;;;:::i;:::-;-1:-1:-1;22123:5:0;21957:177::o;43181:98::-;39354:12;:10;:12::i;:::-;-1:-1:-1;;;;;39343:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;39343:23:0;;39335:68;;;;-1:-1:-1;;;39335:68:0;;;;;;;:::i;:::-;43252:21:::1;:11;43266:7:::0;;43252:21:::1;:::i;40689:20::-:0;;;;:::o;24782:118::-;24846:7;24869:20;24881:7;24869:11;:20::i;:::-;:25;;24782:118;-1:-1:-1;;24782:118:0:o;41403:97::-;39354:12;:10;:12::i;:::-;-1:-1:-1;;;;;39343:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;39343:23:0;;39335:68;;;;-1:-1:-1;;;39335:68:0;;;;;;;:::i;:::-;41470:15:::1;:24:::0;41403:97::o;40748:32::-;;;;;;:::o;40718:25::-;;;;:::o;23659:211::-;23723:7;-1:-1:-1;;;;;23747:19:0;;23739:75;;;;-1:-1:-1;;;23739:75:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;23836:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;23836:27:0;;23659:211::o;39774:94::-;39354:12;:10;:12::i;:::-;-1:-1:-1;;;;;39343:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;39343:23:0;;39335:68;;;;-1:-1:-1;;;39335:68:0;;;;;;;:::i;:::-;39839:21:::1;39857:1;39839:9;:21::i;:::-;39774:94::o:0;41514:101::-;39354:12;:10;:12::i;:::-;-1:-1:-1;;;;;39343:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;39343:23:0;;39335:68;;;;-1:-1:-1;;;39335:68:0;;;;;;;:::i;:::-;41583:11:::1;:26:::0;41514:101::o;40587:53::-;;;;:::o;43862:490::-;43923:16;43949:18;43970:17;43980:6;43970:9;:17::i;:::-;43949:38;-1:-1:-1;43998:15:0;43994:353;;-1:-1:-1;;44067:16:0;;;44081:1;44067:16;;;;;;;;44060:23;;43994:353;44108:23;44148:10;44134:25;;;;;;-1:-1:-1;;;44134:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44134:25:0;;44108:51;;44170:13;44194:122;44218:10;44210:5;:18;44194:122;;;44270:34;44290:6;44298:5;44270:19;:34::i;:::-;44254:6;44261:5;44254:13;;;;;;-1:-1:-1;;;44254:13:0;;;;;;;;;;;;;;;;;;:50;44230:7;;;;:::i;:::-;;;;44194:122;;;-1:-1:-1;44333:6:0;-1:-1:-1;44326:13:0;;-1:-1:-1;44326:13:0;43994:353;43862:490;;;;:::o;39123:87::-;39169:7;39196:6;-1:-1:-1;;;;;39196:6:0;39123:87;:::o;43709:147::-;43790:21;;:::i;:::-;43830:20;43842:7;43830:11;:20::i;25114:98::-;25170:13;25199:7;25192:14;;;;;:::i;41631:78::-;39354:12;:10;:12::i;:::-;-1:-1:-1;;;;;39343:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;39343:23:0;;39335:68;;;;-1:-1:-1;;;39335:68:0;;;;;;;:::i;:::-;41690:13:::1;::::0;;-1:-1:-1;;41673:30:0;::::1;41690:13;::::0;;::::1;41689:14;41673:30;::::0;;41631:78::o;26752:274::-;26855:12;:10;:12::i;:::-;-1:-1:-1;;;;;26843:24:0;:8;-1:-1:-1;;;;;26843:24:0;;;26835:63;;;;-1:-1:-1;;;26835:63:0;;;;;;;:::i;:::-;26952:8;26907:18;:32;26926:12;:10;:12::i;:::-;-1:-1:-1;;;;;26907:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;26907:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;26907:53:0;;;;;;;;;;;26987:12;:10;:12::i;:::-;-1:-1:-1;;;;;26972:48:0;;27011:8;26972:48;;;;;;:::i;:::-;;;;;;;;26752:274;;:::o;43285:181::-;39354:12;:10;:12::i;:::-;-1:-1:-1;;;;;39343:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;39343:23:0;;39335:68;;;;-1:-1:-1;;;39335:68:0;;;;;;;:::i;:::-;37235:1:::1;37831:7;;:19;;37823:63;;;;-1:-1:-1::0;;;37823:63:0::1;;;;;;;:::i;:::-;37235:1;37964:7;:18:::0;43368:49:::2;::::0;43350:12:::2;::::0;43368:10:::2;::::0;43391:21:::2;::::0;43368:49:::2;::::0;::::2;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43349:68;;;43432:7;43424:36;;;;-1:-1:-1::0;;;43424:36:0::2;;;;;;;:::i;42725:302::-:0;42850:9;;42840:7;:19;42836:130;;;42872:5;;:28;;-1:-1:-1;;;42872:28:0;;:5;;;;-1:-1:-1;;;;;42872:5:0;;:18;;:28;;42891:4;;42897:2;;42872:28;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;42911:17:0;;;;;;:11;:17;;;;;:19;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;42941:15:0;;;;;;:11;:15;;;;;:17;;;;;;:::i;:::-;;;;;;42836:130;42972:49;42997:4;43003:2;43007:7;43016:4;42972:24;:49::i;:::-;42725:302;;;;:::o;41206:89::-;39354:12;:10;:12::i;:::-;-1:-1:-1;;;;;39343:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;39343:23:0;;39335:68;;;;-1:-1:-1;;;39335:68:0;;;;;;;:::i;:::-;41269:8:::1;:20:::0;41206:89::o;25275:394::-;25373:13;25414:16;25422:7;25414;:16::i;:::-;25398:97;;;;-1:-1:-1;;;25398:97:0;;;;;;;:::i;:::-;25504:21;25528:10;:8;:10::i;:::-;25504:34;;25583:1;25565:7;25559:21;:25;:104;;;;;;;;;;;;;;;;;25620:7;25629:18;:7;:16;:18::i;:::-;25603:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25559:104;25545:118;25275:394;-1:-1:-1;;;25275:394:0:o;41087:112::-;39354:12;:10;:12::i;:::-;-1:-1:-1;;;;;39343:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;39343:23:0;;39335:68;;;;-1:-1:-1;;;39335:68:0;;;;;;;:::i;:::-;41165:5:::1;:29:::0;;-1:-1:-1;;;;;41165:29:0;;::::1;;;-1:-1:-1::0;;;;;;41165:29:0;;::::1;::::0;;;::::1;::::0;;41087:112::o;32190:43::-;;;;:::o;43596:107::-;43654:7;43677:20;43691:5;43677:13;:20::i;40785:19::-;;;;;;-1:-1:-1;;;;;40785:19:0;;:::o;27089:186::-;-1:-1:-1;;;;;27234:25:0;;;27211:4;27234:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27089:186::o;41715:326::-;41781:13;;;;41773:52;;;;-1:-1:-1;;;41773:52:0;;;;;;;:::i;:::-;41851:1;41840:8;:12;:36;;;;;41868:8;;41856;:20;;41840:36;41832:88;;;;-1:-1:-1;;;41832:88:0;;;;;;;:::i;:::-;41965:11;;41953:8;41937:13;:11;:13::i;40023:192::-;39354:12;:10;:12::i;:::-;-1:-1:-1;;;;;39343:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;39343:23:0;;39335:68;;;;-1:-1:-1;;;39335:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40112:22:0;::::1;40104:73;;;;-1:-1:-1::0;;;40104:73:0::1;;;;;;;:::i;:::-;40188:19;40198:8;40188:9;:19::i;1543:157::-:0;-1:-1:-1;;;;;;1652:40:0;;-1:-1:-1;;;1652:40:0;1543:157;;;:::o;28436:98::-;28501:27;28511:2;28515:8;28501:27;;;;;;;;;;;;:9;:27::i;:::-;28436:98;;:::o;28325:105::-;28412:12;;-1:-1:-1;28402:22:0;28325:105::o;15736:98::-;15816:10;15736:98;:::o;32012:172::-;32109:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;32109:29:0;-1:-1:-1;;;;;32109:29:0;;;;;;;;;32150:28;;32109:24;;32150:28;;;;;;;32012:172;;;:::o;27334:150::-;27450:28;27460:4;27466:2;27470:7;27450:9;:28::i;32338:846::-;32428:24;;32467:12;32459:49;;;;-1:-1:-1;;;32459:49:0;;;;;;;:::i;:::-;32515:16;32565:1;32534:28;32554:8;32534:17;:28;:::i;:::-;:32;;;;:::i;:::-;32515:51;-1:-1:-1;32588:18:0;32605:1;32588:14;:18;:::i;:::-;32577:8;:29;32573:81;;;32628:18;32645:1;32628:14;:18;:::i;:::-;32617:29;;32573:81;32769:17;32777:8;32769:7;:17::i;:::-;32761:68;;;;-1:-1:-1;;;32761:68:0;;;;;;;:::i;:::-;32853:17;32836:297;32877:8;32872:1;:13;32836:297;;32936:1;32905:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;32905:19:0;32901:225;;32951:31;32985:14;32997:1;32985:11;:14::i;:::-;33027:89;;;;;;;;33054:14;;-1:-1:-1;;;;;33027:89:0;;;;;;33081:24;;;;33027:89;;;;;;;;;;-1:-1:-1;33010:14:0;;;:11;:14;;;;;;;:106;;;;;;-1:-1:-1;;;;;;33010:106:0;;;;;;-1:-1:-1;;;;33010:106:0;-1:-1:-1;;;33010:106:0;;;;;;;;;;;;;;-1:-1:-1;32901:225:0;32887:3;;;;:::i;:::-;;;;32836:297;;;-1:-1:-1;33166:12:0;:8;33177:1;33166:12;:::i;:::-;33139:24;:39;-1:-1:-1;;;32338:846:0:o;24122:606::-;24198:21;;:::i;:::-;24239:16;24247:7;24239;:16::i;:::-;24231:71;;;;-1:-1:-1;;;24231:71:0;;;;;;;:::i;:::-;24311:26;24359:12;24348:7;:23;24344:93;;24403:22;24413:12;24403:7;:22;:::i;:::-;:26;;24428:1;24403:26;:::i;:::-;24382:47;;24344:93;24465:7;24445:212;24482:18;24474:4;:26;24445:212;;24519:31;24553:17;;;:11;:17;;;;;;;;;24519:51;;;;;;;;;-1:-1:-1;;;;;24519:51:0;;;;;-1:-1:-1;;;24519:51:0;;;;;;;;;;;;24583:28;24579:71;;24631:9;-1:-1:-1;24624:16:0;;-1:-1:-1;;24624:16:0;24579:71;-1:-1:-1;24502:6:0;;;;:::i;:::-;;;;24445:212;;;;24665:57;;-1:-1:-1;;;24665:57:0;;;;;;;:::i;40223:173::-;40279:16;40298:6;;-1:-1:-1;;;;;40315:17:0;;;-1:-1:-1;;;;;;40315:17:0;;;;;;40348:40;;40298:6;;;;;;;40348:40;;40279:16;40348:40;40223:173;;:::o;27767:319::-;27912:28;27922:4;27928:2;27932:7;27912:9;:28::i;:::-;27963:48;27986:4;27992:2;27996:7;28005:5;27963:22;:48::i;:::-;27947:133;;;;-1:-1:-1;;;27947:133:0;;;;;;;:::i;43069:106::-;43129:13;43158:11;43151:18;;;;;:::i;16205:723::-;16261:13;16482:10;16478:53;;-1:-1:-1;16509:10:0;;;;;;;;;;;;-1:-1:-1;;;16509:10:0;;;;;;16478:53;16556:5;16541:12;16597:78;16604:9;;16597:78;;16630:8;;;;:::i;:::-;;-1:-1:-1;16653:10:0;;-1:-1:-1;16661:2:0;16653:10;;:::i;:::-;;;16597:78;;;16685:19;16717:6;16707:17;;;;;;-1:-1:-1;;;16707:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16707:17:0;;16685:39;;16735:154;16742:10;;16735:154;;16769:11;16779:1;16769:11;;:::i;:::-;;-1:-1:-1;16838:10:0;16846:2;16838:5;:10;:::i;:::-;16825:24;;:2;:24;:::i;:::-;16812:39;;16795:6;16802;16795:14;;;;;;-1:-1:-1;;;16795:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;16795:56:0;;;;;;;;-1:-1:-1;16866:11:0;16875:2;16866:11;;:::i;:::-;;;16735:154;;;16913:6;16205:723;-1:-1:-1;;;;16205:723:0:o;23876:240::-;23937:7;-1:-1:-1;;;;;23969:19:0;;23953:102;;;;-1:-1:-1;;;23953:102:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;24077:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;24077:32:0;;-1:-1:-1;;;;;24077:32:0;;23876:240::o;28873:1272::-;29001:12;;-1:-1:-1;;;;;29028:16:0;;29020:62;;;;-1:-1:-1;;;29020:62:0;;;;;;;:::i;:::-;29219:21;29227:12;29219:7;:21::i;:::-;29218:22;29210:64;;;;-1:-1:-1;;;29210:64:0;;;;;;;:::i;:::-;29301:12;29289:8;:24;;29281:71;;;;-1:-1:-1;;;29281:71:0;;;;;;;:::i;:::-;29361:61;29391:1;29395:2;29399:12;29413:8;29361:21;:61::i;:::-;-1:-1:-1;;;;;29464:16:0;;29431:30;29464:16;;;:12;:16;;;;;;;;;29431:49;;;;;;;;;-1:-1:-1;;;;;29431:49:0;;;;;-1:-1:-1;;;29431:49:0;;;;;;;;;;;29506:119;;;;;;;;29526:19;;29431:49;;29506:119;;;29526:39;;29556:8;;29526:39;:::i;:::-;-1:-1:-1;;;;;29506:119:0;;;;;29609:8;29574:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;29506:119:0;;;;;;-1:-1:-1;;;;;29487:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;;;-1:-1:-1;;;29487:138:0;;;;-1:-1:-1;;29487:138:0;;;;;;;;;;;;;;;;;29660:43;;;;;;;;;;;29686:15;29660:43;;;;;;;;29632:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;29632:71:0;-1:-1:-1;;;;29632:71:0;;;;-1:-1:-1;;;;;;29632:71:0;;;;;;;;;;;;;;;29644:12;;29756:281;29780:8;29776:1;:12;29756:281;;;29809:38;;29834:12;;-1:-1:-1;;;;;29809:38:0;;;29826:1;;29809:38;;29826:1;;29809:38;29874:59;29905:1;29909:2;29913:12;29927:5;29874:22;:59::i;:::-;29856:150;;;;-1:-1:-1;;;29856:150:0;;;;;;;:::i;:::-;30015:14;;;;:::i;:::-;;;;29790:3;;;;;:::i;:::-;;;;29756:281;;;-1:-1:-1;30045:12:0;:27;;;30079:60;30108:1;30112:2;30116:12;30130:8;30079:20;:60::i;:::-;28873:1272;;;;;;:::o;30377:1529::-;30474:35;30512:20;30524:7;30512:11;:20::i;:::-;30474:58;;30541:22;30583:13;:18;;;-1:-1:-1;;;;;30567:34:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;30567:34:0;;:81;;;;30636:12;:10;:12::i;:::-;-1:-1:-1;;;;;30612:36:0;:20;30624:7;30612:11;:20::i;:::-;-1:-1:-1;;;;;30612:36:0;;30567:81;:142;;;-1:-1:-1;30676:18:0;;30659:50;;30696:12;:10;:12::i;30659:50::-;30541:169;;30735:17;30719:101;;;;-1:-1:-1;;;30719:101:0;;;;;;;:::i;:::-;30867:4;-1:-1:-1;;;;;30845:26:0;:13;:18;;;-1:-1:-1;;;;;30845:26:0;;30829:98;;;;-1:-1:-1;;;30829:98:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30942:16:0;;30934:66;;;;-1:-1:-1;;;30934:66:0;;;;;;;:::i;:::-;31009:43;31031:4;31037:2;31041:7;31050:1;31009:21;:43::i;:::-;31109:49;31126:1;31130:7;31139:13;:18;;;31109:8;:49::i;:::-;-1:-1:-1;;;;;31167:18:0;;;;;;:12;:18;;;;;:31;;31197:1;;31167:18;:31;;31197:1;;-1:-1:-1;;;;;31167:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;31167:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;31205:16:0;;-1:-1:-1;31205:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;31205:16:0;;:29;;-1:-1:-1;;31205:29:0;;:::i;:::-;;;-1:-1:-1;;;;;31205:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31264:43:0;;;;;;;;-1:-1:-1;;;;;31264:43:0;;;;;;31290:15;31264:43;;;;;;;;;-1:-1:-1;31241:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;31241:66:0;-1:-1:-1;;;;31241:66:0;;;;-1:-1:-1;;;;;;31241:66:0;;;;;;;;31557:11;31253:7;-1:-1:-1;31557:11:0;:::i;:::-;31620:1;31579:24;;;:11;:24;;;;;:29;31535:33;;-1:-1:-1;;;;;;31579:29:0;31575:236;;31637:20;31645:11;31637:7;:20::i;:::-;31633:171;;;31697:97;;;;;;;;31724:18;;-1:-1:-1;;;;;31697:97:0;;;;;;31755:28;;;;31697:97;;;;;;;;;;-1:-1:-1;31670:24:0;;;:11;:24;;;;;;;:124;;;;;;-1:-1:-1;;;;;;31670:124:0;;;;;;;;;-1:-1:-1;;;;31670:124:0;-1:-1:-1;;;31670:124:0;;;;;;;;;;;;;;31633:171;31843:7;31839:2;-1:-1:-1;;;;;31824:27:0;31833:4;-1:-1:-1;;;;;31824:27:0;;;;;;;;;;;31858:42;31879:4;31885:2;31889:7;31898:1;31858:20;:42::i;33727:690::-;33864:4;33881:15;:2;-1:-1:-1;;;;;33881:13:0;;:15::i;:::-;33877:535;;;33936:2;-1:-1:-1;;;;;33920:36:0;;33957:12;:10;:12::i;:::-;33971:4;33977:7;33986:5;33920:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33920:72:0;;;;;;;;-1:-1:-1;;33920:72:0;;;;;;;;;;;;:::i;:::-;;;33907:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34151:13:0;;34147:215;;34184:61;;-1:-1:-1;;;34184:61:0;;;;;;;:::i;34147:215::-;34330:6;34324:13;34315:6;34311:2;34307:15;34300:38;33907:464;-1:-1:-1;;;;;;34042:55:0;-1:-1:-1;;;34042:55:0;;-1:-1:-1;34035:62:0;;33877:535;-1:-1:-1;34400:4:0;33727:690;;;;;;:::o;2419:387::-;2742:20;2790:8;;;2419:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;14:175:1;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:1178::-;;;;;1195:3;1183:9;1174:7;1170:23;1166:33;1163:2;;;1217:6;1209;1202:22;1163:2;1245:31;1266:9;1245:31;:::i;:::-;1235:41;;1295:2;1316:40;1352:2;1341:9;1337:18;1316:40;:::i;:::-;1306:50;;1403:2;1392:9;1388:18;1375:32;1365:42;;1458:2;1447:9;1443:18;1430:32;1481:18;1522:2;1514:6;1511:14;1508:2;;;1543:6;1535;1528:22;1508:2;1586:6;1575:9;1571:22;1561:32;;1631:7;1624:4;1620:2;1616:13;1612:27;1602:2;;1658:6;1650;1643:22;1602:2;1699;1686:16;1721:2;1717;1714:10;1711:2;;;1727:18;;:::i;:::-;1776:2;1770:9;1845:2;1826:13;;-1:-1:-1;;1822:27:1;1810:40;;1806:49;;1870:18;;;1890:22;;;1867:46;1864:2;;;1916:18;;:::i;:::-;1952:2;1945:22;1976:18;;;2013:11;;;2009:20;;2006:33;-1:-1:-1;2003:2:1;;;2057:6;2049;2042:22;2003:2;2118;2113;2109;2105:11;2100:2;2092:6;2088:15;2075:46;2141:15;;;2137:24;;;2130:40;;;;-1:-1:-1;1153:1048:1;;;;-1:-1:-1;1153:1048:1;;-1:-1:-1;;1153:1048:1:o;2206:369::-;;;2332:2;2320:9;2311:7;2307:23;2303:32;2300:2;;;2353:6;2345;2338:22;2300:2;2381:31;2402:9;2381:31;:::i;:::-;2371:41;;2462:2;2451:9;2447:18;2434:32;2509:5;2502:13;2495:21;2488:5;2485:32;2475:2;;2536:6;2528;2521:22;2475:2;2564:5;2554:15;;;2290:285;;;;;:::o;2580:266::-;;;2709:2;2697:9;2688:7;2684:23;2680:32;2677:2;;;2730:6;2722;2715:22;2677:2;2758:31;2779:9;2758:31;:::i;:::-;2748:41;2836:2;2821:18;;;;2808:32;;-1:-1:-1;;;2667:179:1:o;2851:257::-;;2962:2;2950:9;2941:7;2937:23;2933:32;2930:2;;;2983:6;2975;2968:22;2930:2;3027:9;3014:23;3046:32;3072:5;3046:32;:::i;3113:261::-;;3235:2;3223:9;3214:7;3210:23;3206:32;3203:2;;;3256:6;3248;3241:22;3203:2;3293:9;3287:16;3312:32;3338:5;3312:32;:::i;3379:642::-;;;3511:2;3499:9;3490:7;3486:23;3482:32;3479:2;;;3532:6;3524;3517:22;3479:2;3577:9;3564:23;3606:18;3647:2;3639:6;3636:14;3633:2;;;3668:6;3660;3653:22;3633:2;3711:6;3700:9;3696:22;3686:32;;3756:7;3749:4;3745:2;3741:13;3737:27;3727:2;;3783:6;3775;3768:22;3727:2;3828;3815:16;3854:2;3846:6;3843:14;3840:2;;;3875:6;3867;3860:22;3840:2;3925:7;3920:2;3911:6;3907:2;3903:15;3899:24;3896:37;3893:2;;;3951:6;3943;3936:22;3893:2;3987;3979:11;;;;;4009:6;;-1:-1:-1;3469:552:1;;-1:-1:-1;;;;3469:552:1:o;4026:190::-;;4138:2;4126:9;4117:7;4113:23;4109:32;4106:2;;;4159:6;4151;4144:22;4106:2;-1:-1:-1;4187:23:1;;4096:120;-1:-1:-1;4096:120:1:o;4221:259::-;;4302:5;4296:12;4329:6;4324:3;4317:19;4345:63;4401:6;4394:4;4389:3;4385:14;4378:4;4371:5;4367:16;4345:63;:::i;:::-;4462:2;4441:15;-1:-1:-1;;4437:29:1;4428:39;;;;4469:4;4424:50;;4272:208;-1:-1:-1;;4272:208:1:o;4485:470::-;;4702:6;4696:13;4718:53;4764:6;4759:3;4752:4;4744:6;4740:17;4718:53;:::i;:::-;4834:13;;4793:16;;;;4856:57;4834:13;4793:16;4890:4;4878:17;;4856:57;:::i;:::-;4929:20;;4672:283;-1:-1:-1;;;;4672:283:1:o;4960:205::-;5160:3;5151:14::o;5170:203::-;-1:-1:-1;;;;;5334:32:1;;;;5316:51;;5304:2;5289:18;;5271:102::o;5378:304::-;-1:-1:-1;;;;;5608:15:1;;;5590:34;;5660:15;;5655:2;5640:18;;5633:43;5540:2;5525:18;;5507:175::o;5687:490::-;-1:-1:-1;;;;;5956:15:1;;;5938:34;;6008:15;;6003:2;5988:18;;5981:43;6055:2;6040:18;;6033:34;;;6103:3;6098:2;6083:18;;6076:31;;;5687:490;;6124:47;;6151:19;;6143:6;6124:47;:::i;:::-;6116:55;5890:287;-1:-1:-1;;;;;;5890:287:1:o;6182:635::-;6353:2;6405:21;;;6475:13;;6378:18;;;6497:22;;;6182:635;;6353:2;6576:15;;;;6550:2;6535:18;;;6182:635;6622:169;6636:6;6633:1;6630:13;6622:169;;;6697:13;;6685:26;;6766:15;;;;6731:12;;;;6658:1;6651:9;6622:169;;;-1:-1:-1;6808:3:1;;6333:484;-1:-1:-1;;;;;;6333:484:1:o;6822:187::-;6987:14;;6980:22;6962:41;;6950:2;6935:18;;6917:92::o;7237:221::-;;7386:2;7375:9;7368:21;7406:46;7448:2;7437:9;7433:18;7425:6;7406:46;:::i;7463:398::-;7665:2;7647:21;;;7704:2;7684:18;;;7677:30;7743:34;7738:2;7723:18;;7716:62;-1:-1:-1;;;7809:2:1;7794:18;;7787:32;7851:3;7836:19;;7637:224::o;7866:349::-;8068:2;8050:21;;;8107:2;8087:18;;;8080:30;8146:27;8141:2;8126:18;;8119:55;8206:2;8191:18;;8040:175::o;8220:340::-;8422:2;8404:21;;;8461:2;8441:18;;;8434:30;-1:-1:-1;;;8495:2:1;8480:18;;8473:46;8551:2;8536:18;;8394:166::o;8565:403::-;8767:2;8749:21;;;8806:2;8786:18;;;8779:30;8845:34;8840:2;8825:18;;8818:62;-1:-1:-1;;;8911:2:1;8896:18;;8889:37;8958:3;8943:19;;8739:229::o;8973:402::-;9175:2;9157:21;;;9214:2;9194:18;;;9187:30;9253:34;9248:2;9233:18;;9226:62;-1:-1:-1;;;9319:2:1;9304:18;;9297:36;9365:3;9350:19;;9147:228::o;9380:406::-;9582:2;9564:21;;;9621:2;9601:18;;;9594:30;9660:34;9655:2;9640:18;;9633:62;-1:-1:-1;;;9726:2:1;9711:18;;9704:40;9776:3;9761:19;;9554:232::o;9791:399::-;9993:2;9975:21;;;10032:2;10012:18;;;10005:30;10071:34;10066:2;10051:18;;10044:62;-1:-1:-1;;;10137:2:1;10122:18;;10115:33;10180:3;10165:19;;9965:225::o;10195:401::-;10397:2;10379:21;;;10436:2;10416:18;;;10409:30;10475:34;10470:2;10455:18;;10448:62;-1:-1:-1;;;10541:2:1;10526:18;;10519:35;10586:3;10571:19;;10369:227::o;10601:413::-;10803:2;10785:21;;;10842:2;10822:18;;;10815:30;10881:34;10876:2;10861:18;;10854:62;-1:-1:-1;;;10947:2:1;10932:18;;10925:47;11004:3;10989:19;;10775:239::o;11019:350::-;11221:2;11203:21;;;11260:2;11240:18;;;11233:30;11299:28;11294:2;11279:18;;11272:56;11360:2;11345:18;;11193:176::o;11374:421::-;11576:2;11558:21;;;11615:2;11595:18;;;11588:30;11654:34;11649:2;11634:18;;11627:62;11725:27;11720:2;11705:18;;11698:55;11785:3;11770:19;;11548:247::o;11800:348::-;12002:2;11984:21;;;12041:2;12021:18;;;12014:30;12080:26;12075:2;12060:18;;12053:54;12139:2;12124:18;;11974:174::o;12153:407::-;12355:2;12337:21;;;12394:2;12374:18;;;12367:30;12433:34;12428:2;12413:18;;12406:62;-1:-1:-1;;;12499:2:1;12484:18;;12477:41;12550:3;12535:19;;12327:233::o;12565:402::-;12767:2;12749:21;;;12806:2;12786:18;;;12779:30;12845:34;12840:2;12825:18;;12818:62;-1:-1:-1;;;12911:2:1;12896:18;;12889:36;12957:3;12942:19;;12739:228::o;12972:356::-;13174:2;13156:21;;;13193:18;;;13186:30;13252:34;13247:2;13232:18;;13225:62;13319:2;13304:18;;13146:182::o;13333:411::-;13535:2;13517:21;;;13574:2;13554:18;;;13547:30;13613:34;13608:2;13593:18;;13586:62;-1:-1:-1;;;13679:2:1;13664:18;;13657:45;13734:3;13719:19;;13507:237::o;13749:350::-;13951:2;13933:21;;;13990:2;13970:18;;;13963:30;14029:28;14024:2;14009:18;;14002:56;14090:2;14075:18;;13923:176::o;14104:414::-;14306:2;14288:21;;;14345:2;14325:18;;;14318:30;14384:34;14379:2;14364:18;;14357:62;-1:-1:-1;;;14450:2:1;14435:18;;14428:48;14508:3;14493:19;;14278:240::o;14523:398::-;14725:2;14707:21;;;14764:2;14744:18;;;14737:30;14803:34;14798:2;14783:18;;14776:62;-1:-1:-1;;;14869:2:1;14854:18;;14847:32;14911:3;14896:19;;14697:224::o;14926:340::-;15128:2;15110:21;;;15167:2;15147:18;;;15140:30;-1:-1:-1;;;15201:2:1;15186:18;;15179:46;15257:2;15242:18;;15100:166::o;15271:415::-;15473:2;15455:21;;;15512:2;15492:18;;;15485:30;15551:34;15546:2;15531:18;;15524:62;-1:-1:-1;;;15617:2:1;15602:18;;15595:49;15676:3;15661:19;;15445:241::o;15691:346::-;15893:2;15875:21;;;15932:2;15912:18;;;15905:30;-1:-1:-1;;;15966:2:1;15951:18;;15944:52;16028:2;16013:18;;15865:172::o;16042:353::-;16244:2;16226:21;;;16283:2;16263:18;;;16256:30;16322:31;16317:2;16302:18;;16295:59;16386:2;16371:18;;16216:179::o;16400:397::-;16602:2;16584:21;;;16641:2;16621:18;;;16614:30;16680:34;16675:2;16660:18;;16653:62;-1:-1:-1;;;16746:2:1;16731:18;;16724:31;16787:3;16772:19;;16574:223::o;16802:410::-;17004:2;16986:21;;;17043:2;17023:18;;;17016:30;17082:34;17077:2;17062:18;;17055:62;-1:-1:-1;;;17148:2:1;17133:18;;17126:44;17202:3;17187:19;;16976:236::o;17217:402::-;17419:2;17401:21;;;17458:2;17438:18;;;17431:30;17497:34;17492:2;17477:18;;17470:62;-1:-1:-1;;;17563:2:1;17548:18;;17541:36;17609:3;17594:19;;17391:228::o;17624:355::-;17826:2;17808:21;;;17865:2;17845:18;;;17838:30;17904:33;17899:2;17884:18;;17877:61;17970:2;17955:18;;17798:181::o;17984:411::-;18186:2;18168:21;;;18225:2;18205:18;;;18198:30;18264:34;18259:2;18244:18;;18237:62;-1:-1:-1;;;18330:2:1;18315:18;;18308:45;18385:3;18370:19;;18158:237::o;18400:409::-;18602:2;18584:21;;;18641:2;18621:18;;;18614:30;18680:34;18675:2;18660:18;;18653:62;-1:-1:-1;;;18746:2:1;18731:18;;18724:43;18799:3;18784:19;;18574:235::o;18814:398::-;19016:2;18998:21;;;19055:2;19035:18;;;19028:30;19094:34;19089:2;19074:18;;19067:62;-1:-1:-1;;;19160:2:1;19145:18;;19138:32;19202:3;19187:19;;18988:224::o;19217:360::-;19447:13;;-1:-1:-1;;;;;19443:39:1;19425:58;;19543:4;19531:17;;;19525:24;19551:18;19521:49;19499:20;;;19492:79;;;;19413:2;19398:18;;19380:197::o;19582:177::-;19728:25;;;19716:2;19701:18;;19683:76::o;19764:253::-;;-1:-1:-1;;;;;19893:2:1;19890:1;19886:10;19923:2;19920:1;19916:10;19954:3;19950:2;19946:12;19941:3;19938:21;19935:2;;;19962:18;;:::i;20022:128::-;;20093:1;20089:6;20086:1;20083:13;20080:2;;;20099:18;;:::i;:::-;-1:-1:-1;20135:9:1;;20070:80::o;20155:120::-;;20221:1;20211:2;;20226:18;;:::i;:::-;-1:-1:-1;20260:9:1;;20201:74::o;20280:168::-;;20386:1;20382;20378:6;20374:14;20371:1;20368:21;20363:1;20356:9;20349:17;20345:45;20342:2;;;20393:18;;:::i;:::-;-1:-1:-1;20433:9:1;;20332:116::o;20453:246::-;;-1:-1:-1;;;;;20606:10:1;;;;20576;;20628:12;;;20625:2;;;20643:18;;:::i;:::-;20680:13;;20502:197;-1:-1:-1;;;20502:197:1:o;20704:125::-;;20772:1;20769;20766:8;20763:2;;;20777:18;;:::i;:::-;-1:-1:-1;20814:9:1;;20753:76::o;20834:258::-;20906:1;20916:113;20930:6;20927:1;20924:13;20916:113;;;21006:11;;;21000:18;20987:11;;;20980:39;20952:2;20945:10;20916:113;;;21047:6;21044:1;21041:13;21038:2;;;-1:-1:-1;;21082:1:1;21064:16;;21057:27;20887:205::o;21097:136::-;;21164:5;21154:2;;21173:18;;:::i;:::-;-1:-1:-1;;;21209:18:1;;21144:89::o;21238:380::-;21323:1;21313:12;;21370:1;21360:12;;;21381:2;;21435:4;21427:6;21423:17;21413:27;;21381:2;21488;21480:6;21477:14;21457:18;21454:38;21451:2;;;21534:10;21529:3;21525:20;21522:1;21515:31;21569:4;21566:1;21559:15;21597:4;21594:1;21587:15;21623:135;;-1:-1:-1;;21683:17:1;;21680:2;;;21703:18;;:::i;:::-;-1:-1:-1;21750:1:1;21739:13;;21670:88::o;21763:112::-;;21821:1;21811:2;;21826:18;;:::i;:::-;-1:-1:-1;21860:9:1;;21801:74::o;21880:127::-;21941:10;21936:3;21932:20;21929:1;21922:31;21972:4;21969:1;21962:15;21996:4;21993:1;21986:15;22012:127;22073:10;22068:3;22064:20;22061:1;22054:31;22104:4;22101:1;22094:15;22128:4;22125:1;22118:15;22144:127;22205:10;22200:3;22196:20;22193:1;22186:31;22236:4;22233:1;22226:15;22260:4;22257:1;22250:15;22276:133;-1:-1:-1;;;;;;22352:32:1;;22342:43;;22332:2;;22399:1;22396;22389:12

Swarm Source

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