ETH Price: $3,507.54 (+3.04%)
Gas: 4 Gwei

Token

Ventana (VTA)
 

Overview

Max Total Supply

999 VTA

Holders

725

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
17 VTA
0x8c0c78e6e81510b96fe34483c05ee203a1f0457b
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Ventana NFT is a 999 pieces NFT collection that is based on 'Ventana', a Spanish word or "Window" in English. The window is a special thing in Marquina's hometown - a small coastal village in Spain. This collection is the fourth to be featured on the generative art platform oreo.studio.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Ventana

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-19
*/

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

pragma solidity ^0.8.0;

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

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



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

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

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

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

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

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

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

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

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

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

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

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

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



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

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



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

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

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

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



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

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



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



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

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

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



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

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

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

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

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

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



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

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

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



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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

  // Mapping from token ID to approved address
  mapping(uint256 => address) private _tokenApprovals;

  // Mapping from owner to operator approvals
  mapping(address => mapping(address => bool)) private _operatorApprovals;

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

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

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

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

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

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

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

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

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

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

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

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

  /**
   * @dev See {IERC721Metadata-name}.
   */
  function name() public view virtual override returns (string memory) {
    return _name;
  }

  /**
   * @dev See {IERC721Metadata-symbol}.
   */
  function symbol() public view virtual override returns (string memory) {
    return _symbol;
  }

  /**
   * @dev See {IERC721Metadata-tokenURI}.
   */
  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

    string memory baseURI = _baseURI();
    return
      bytes(baseURI).length > 0
        ? string(abi.encodePacked(baseURI, tokenId.toString(), ".json"))
        : "";
  }

  /**
   * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
   * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
   * by default, can be overriden in child contracts.
   */
  function _baseURI() internal view virtual returns (string memory) {
    return "";
  }

  /**
   * @dev See {IERC721-approve}.
   */
  function approve(address to, uint256 tokenId) public override {
    address owner = ERC721A.ownerOf(tokenId);
    require(to != owner, "ERC721A: approval to current owner");

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

  /**
   * @dev See {IERC721-setApprovalForAll}.
   */
  function setApprovalForAll(address operator, bool approved) public override {
    require(operator != _msgSender(), "ERC721A: approve to caller");

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

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

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

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: transfer to non ERC721Receiver implementer"
    );
  }

  /**
   * @dev Returns whether `tokenId` exists.
   *
   * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
   *
   * Tokens start existing when they are minted (`_mint`),
   */
  function _exists(uint256 tokenId) internal view returns (bool) {
    return tokenId < currentIndex;
  }

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

  /**
   * @dev Transfers `tokenId` from `from` to `to`.
   *
   * Requirements:
   *
   * - `to` cannot be the zero address.
   * - `tokenId` token must be owned by `from`.
   *
   * Emits a {Transfer} event.
   */
  function _transfer(
    address from,
    address to,
    uint256 tokenId
  ) private {
    TokenOwnership memory prevOwnership = ownershipOf(tokenId);

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

  /**
   * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
   * The call is not executed if the target address is not a contract.
   *
   * @param from address representing the previous owner of the given token ID
   * @param to target address that will receive the tokens
   * @param tokenId uint256 ID of the token to be transferred
   * @param _data bytes optional data to send along with the call
   * @return bool whether the call correctly returned the expected magic value
   */
  function _checkOnERC721Received(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) private returns (bool) {
    if (to.isContract()) {
      try
        IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data)
      returns (bytes4 retval) {
        return retval == IERC721Receiver(to).onERC721Received.selector;
      } catch (bytes memory reason) {
        if (reason.length == 0) {
          revert("ERC721A: transfer to non ERC721Receiver implementer");
        } else {
          assembly {
            revert(add(32, reason), mload(reason))
          }
        }
      }
    } else {
      return true;
    }
  }

  /**
   * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
   * transferred to `to`.
   * - When `from` is zero, `tokenId` will be minted for `to`.
   */
  function _beforeTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}

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

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



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

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

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

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

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

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

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

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

contract Ventana  is ERC721A, Ownable {

    string public baseURI = "https://nftservices.s3.amazonaws.com/ventana/";

    uint256 public tokenPrice = 100000000000000000; //0.005 ETH

    uint public maxTokensPerTx = 5;

    uint public defaultTokensPerTx = 3;

    uint256 public MAX_TOKENS = 999;

    bool public saleIsActive = true;

    uint256 public whitelistMintRemains = 0;

    // = 0 if there are all free
    // = maxTokensPerTx if there are all with fee
    uint public maxTokensWithFeePerTx = 20;

    enum TokenURIMode {
        MODE_ONE,
        MODE_TWO
    }

    TokenURIMode private tokenUriMode = TokenURIMode.MODE_ONE;

    constructor() ERC721A("Ventana", "VTA", 100, MAX_TOKENS) {
    }


    struct HelperState {
        uint256 tokenPrice;
        uint256 maxTokensPerTx;
        uint256 MAX_TOKENS;
        bool saleIsActive;
        uint256 totalSupply;
        uint  maxTokensWithFeePerTx;
        uint256 userMinted;
        uint defaultTokensPerTx;
    }

    function _state(address minter) external view returns (HelperState memory) {
        return HelperState({
            tokenPrice: tokenPrice,
            maxTokensPerTx: maxTokensPerTx,
            MAX_TOKENS: MAX_TOKENS,
            saleIsActive: saleIsActive,
            totalSupply: uint256(totalSupply()),
            maxTokensWithFeePerTx : maxTokensWithFeePerTx,
            userMinted: minter == address(0) ? 0 : uint256(_numberMinted(minter)),
            defaultTokensPerTx : defaultTokensPerTx
        });
    }

    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    } 

    function withdrawTo(address to, uint256 amount) public onlyOwner {
        require(amount <= address(this).balance, "Exceed balance of this contract");
        payable(to).transfer(amount);
    } 

    function reserveTokens(address to, uint numberOfTokens) public onlyOwner {        
        require(totalSupply() + numberOfTokens <= MAX_TOKENS, "Exceed max supply of tokens");
        _safeMint(to, numberOfTokens);
    }         
    
    function setBaseURI(string memory newURI) public onlyOwner {
        baseURI = newURI;
    }    

    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function openWhitelistMint(uint256 _whitelistMintRemains) public onlyOwner{
        whitelistMintRemains = _whitelistMintRemains;
        saleIsActive = true;
    }

    function closeWhitelistMint()public onlyOwner{
        whitelistMintRemains = 0;
    }

    function getPrice(uint numberOfTokens, address minter) public view returns (uint256) {
        if(numberMinted(minter) > 0){
            return numberOfTokens * tokenPrice;
        } else if(numberOfTokens > maxTokensWithFeePerTx){
            return maxTokensWithFeePerTx * tokenPrice;
        } else if(numberOfTokens <= maxTokensWithFeePerTx){
            return numberOfTokens * tokenPrice;
        }
        return 0;
    }

    // if numberMinted(msg.sender) > 0 -> no whitelist, no free.
    function mintToken(uint numberOfTokens) public payable {
        require(saleIsActive, "Sale must be active");
        require(numberOfTokens <= maxTokensPerTx, "Exceed max tokens per tx");
        require(numberOfTokens > 0, "Must mint at least one");
        require(totalSupply() + numberOfTokens <= MAX_TOKENS, "Exceed max supply");
        
        if(whitelistMintRemains > 0 && numberMinted(msg.sender) <= 0){
            if(numberOfTokens >= whitelistMintRemains){
                numberOfTokens = whitelistMintRemains;
            }
            _safeMint(msg.sender, numberOfTokens);
            whitelistMintRemains = whitelistMintRemains - numberOfTokens;
        } else{
            if(_numberMinted(msg.sender) > 0){
                require(msg.value >= numberOfTokens * tokenPrice, "Not enough ether");
            } else  if(numberOfTokens > maxTokensWithFeePerTx){
                require(msg.value >= maxTokensWithFeePerTx * tokenPrice, "Not enough ether");
            } else if(numberOfTokens <= maxTokensWithFeePerTx){
                require(msg.value >= numberOfTokens * tokenPrice, "Not enough ether");
            }
            _safeMint(msg.sender, numberOfTokens);
        }
    }

    function setTokenPrice(uint256 newTokenPrice) public onlyOwner{
        tokenPrice = newTokenPrice;
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) 
    {
        require(_exists(_tokenId), "Token does not exist.");
        if (tokenUriMode == TokenURIMode.MODE_TWO) {
          return bytes(baseURI).length > 0 ? string(
            abi.encodePacked(
              baseURI,
              Strings.toString(_tokenId)
            )
          ) : "";
        } else {
          return bytes(baseURI).length > 0 ? string(
            abi.encodePacked(
              baseURI,
              Strings.toString(_tokenId),
              ".json"
            )
          ) : "";
        }
    }

    function setTokenURIMode(uint256 mode) external onlyOwner {
        if (mode == 2) {
            tokenUriMode = TokenURIMode.MODE_TWO;
        } else {
            tokenUriMode = TokenURIMode.MODE_ONE;
        }
    }

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

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

    function setMaxSupply(uint256 _maxSupply) public onlyOwner {
      MAX_TOKENS = _maxSupply;
    }

    function setMaxTokensPerTx(uint _maxTokensPerTx) public onlyOwner{
        maxTokensPerTx = _maxTokensPerTx;
    }

    function setMaxTokensWithFeePerTx(uint _maxTokensWithFeePerTx) public onlyOwner{
        maxTokensWithFeePerTx = _maxTokensWithFeePerTx;
    }

    function setDefaultTokensPerTx(uint _defaultTokensPerTx) public onlyOwner{
        defaultTokensPerTx = _defaultTokensPerTx;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"}],"name":"_state","outputs":[{"components":[{"internalType":"uint256","name":"tokenPrice","type":"uint256"},{"internalType":"uint256","name":"maxTokensPerTx","type":"uint256"},{"internalType":"uint256","name":"MAX_TOKENS","type":"uint256"},{"internalType":"bool","name":"saleIsActive","type":"bool"},{"internalType":"uint256","name":"totalSupply","type":"uint256"},{"internalType":"uint256","name":"maxTokensWithFeePerTx","type":"uint256"},{"internalType":"uint256","name":"userMinted","type":"uint256"},{"internalType":"uint256","name":"defaultTokensPerTx","type":"uint256"}],"internalType":"struct Ventana.HelperState","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"closeWhitelistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"defaultTokensPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"address","name":"minter","type":"address"}],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"maxTokensPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokensWithFeePerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintToken","outputs":[],"stateMutability":"payable","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":[{"internalType":"uint256","name":"_whitelistMintRemains","type":"uint256"}],"name":"openWhitelistMint","outputs":[],"stateMutability":"nonpayable","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"reserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_defaultTokensPerTx","type":"uint256"}],"name":"setDefaultTokensPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTokensPerTx","type":"uint256"}],"name":"setMaxTokensPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTokensWithFeePerTx","type":"uint256"}],"name":"setMaxTokensWithFeePerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTokenPrice","type":"uint256"}],"name":"setTokenPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mode","type":"uint256"}],"name":"setTokenURIMode","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":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistMintRemains","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawTo","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526000805560006007556040518060600160405280602d815260200162005a1a602d9139600990805190602001906200003e929190620002f3565b5067016345785d8a0000600a556005600b556003600c556103e7600d556001600e60006101000a81548160ff0219169083151502179055506000600f5560146010556000601160006101000a81548160ff02191690836001811115620000a957620000a86200047c565b5b0217905550348015620000bb57600080fd5b506040518060400160405280600781526020017f56656e74616e61000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f56544100000000000000000000000000000000000000000000000000000000008152506064600d546000811162000173576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200016a9062000413565b60405180910390fd5b60008211620001b9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001b090620003f1565b60405180910390fd5b8360019080519060200190620001d1929190620002f3565b508260029080519060200190620001ea929190620002f3565b508160a081815250508060808181525050505050506200021f620002136200022560201b60201c565b6200022d60201b60201c565b62000578565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003019062000446565b90600052602060002090601f01602090048101928262000325576000855562000371565b82601f106200034057805160ff191683800117855562000371565b8280016001018555821562000371579182015b828111156200037057825182559160200191906001019062000353565b5b50905062000380919062000384565b5090565b5b808211156200039f57600081600090555060010162000385565b5090565b6000620003b260278362000435565b9150620003bf82620004da565b604082019050919050565b6000620003d9602e8362000435565b9150620003e68262000529565b604082019050919050565b600060208201905081810360008301526200040c81620003a3565b9050919050565b600060208201905081810360008301526200042e81620003ca565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200045f57607f821691505b60208210811415620004765762000475620004ab565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b60805160a051615471620005a960003960008181612cb101528181612cda01526133090152600050506154716000f3fe6080604052600436106102725760003560e01c806370a082311161014f578063b88d4fde116100c1578063d7224ba01161007a578063d7224ba014610929578063dc33e68114610954578063e985e9c514610991578063eb8d2444146109ce578063f2fde38b146109f9578063f47c84c514610a2257610272565b8063b88d4fde1461083c578063b9bed05e14610865578063c4d7e2f81461088e578063c634d032146108a5578063c87b56dd146108c1578063d0a04eac146108fe57610272565b806385c8cc741161011357806385c8cc74146107405780638da5cb5b146107695780638f69ae6f14610794578063900c71f5146107bf57806395d89b41146107e8578063a22cb4651461081357610272565b806370a082311461066f578063715018a6146106ac57806378cf19e9146106c35780637b8940cc146106ec5780637ff9b5961461071557610272565b806342842e0e116101e85780635e307a48116101ac5780635e307a481461055f5780636352211e1461058a578063681c8bac146105c75780636a61e5fc146105f25780636c0360eb1461061b5780636f8b44b01461064657610272565b806342842e0e1461046a578063495e1eba146104935780634df8bb45146104bc5780634f6ccce7146104f957806355f804b31461053657610272565b8063205c28781161023a578063205c28781461037057806323b872dd146103995780632b57cfbb146103c25780632f745c59146103ff57806334918dfd1461043c5780633ccfd60b1461045357610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063095ea7b31461031c57806318160ddd14610345575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190613b6a565b610a4d565b6040516102ab919061433a565b60405180910390f35b3480156102c057600080fd5b506102c9610b97565b6040516102d69190614355565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190613c0d565b610c29565b60405161031391906142d3565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e9190613b2a565b610cae565b005b34801561035157600080fd5b5061035a610dc7565b6040516103679190614713565b60405180910390f35b34801561037c57600080fd5b5061039760048036038101906103929190613b2a565b610dd0565b005b3480156103a557600080fd5b506103c060048036038101906103bb9190613a14565b610eda565b005b3480156103ce57600080fd5b506103e960048036038101906103e49190613c3a565b610eea565b6040516103f69190614713565b60405180910390f35b34801561040b57600080fd5b5061042660048036038101906104219190613b2a565b610f5b565b6040516104339190614713565b60405180910390f35b34801561044857600080fd5b50610451611159565b005b34801561045f57600080fd5b50610468611201565b005b34801561047657600080fd5b50610491600480360381019061048c9190613a14565b6112cc565b005b34801561049f57600080fd5b506104ba60048036038101906104b59190613c0d565b6112ec565b005b3480156104c857600080fd5b506104e360048036038101906104de91906139a7565b611372565b6040516104f091906146f7565b60405180910390f35b34801561050557600080fd5b50610520600480360381019061051b9190613c0d565b611421565b60405161052d9190614713565b60405180910390f35b34801561054257600080fd5b5061055d60048036038101906105589190613bc4565b611474565b005b34801561056b57600080fd5b5061057461150a565b6040516105819190614713565b60405180910390f35b34801561059657600080fd5b506105b160048036038101906105ac9190613c0d565b611510565b6040516105be91906142d3565b60405180910390f35b3480156105d357600080fd5b506105dc611526565b6040516105e99190614713565b60405180910390f35b3480156105fe57600080fd5b5061061960048036038101906106149190613c0d565b61152c565b005b34801561062757600080fd5b506106306115b2565b60405161063d9190614355565b60405180910390f35b34801561065257600080fd5b5061066d60048036038101906106689190613c0d565b611640565b005b34801561067b57600080fd5b50610696600480360381019061069191906139a7565b6116c6565b6040516106a39190614713565b60405180910390f35b3480156106b857600080fd5b506106c16117af565b005b3480156106cf57600080fd5b506106ea60048036038101906106e59190613b2a565b611837565b005b3480156106f857600080fd5b50610713600480360381019061070e9190613c0d565b611918565b005b34801561072157600080fd5b5061072a6119b9565b6040516107379190614713565b60405180910390f35b34801561074c57600080fd5b5061076760048036038101906107629190613c0d565b6119bf565b005b34801561077557600080fd5b5061077e611a45565b60405161078b91906142d3565b60405180910390f35b3480156107a057600080fd5b506107a9611a6f565b6040516107b69190614713565b60405180910390f35b3480156107cb57600080fd5b506107e660048036038101906107e19190613c0d565b611a75565b005b3480156107f457600080fd5b506107fd611b59565b60405161080a9190614355565b60405180910390f35b34801561081f57600080fd5b5061083a60048036038101906108359190613aea565b611beb565b005b34801561084857600080fd5b50610863600480360381019061085e9190613a67565b611d6c565b005b34801561087157600080fd5b5061088c60048036038101906108879190613c0d565b611dc8565b005b34801561089a57600080fd5b506108a3611e4e565b005b6108bf60048036038101906108ba9190613c0d565b611ed4565b005b3480156108cd57600080fd5b506108e860048036038101906108e39190613c0d565b612185565b6040516108f59190614355565b60405180910390f35b34801561090a57600080fd5b506109136122c7565b6040516109209190614713565b60405180910390f35b34801561093557600080fd5b5061093e6122cd565b60405161094b9190614713565b60405180910390f35b34801561096057600080fd5b5061097b600480360381019061097691906139a7565b6122d3565b6040516109889190614713565b60405180910390f35b34801561099d57600080fd5b506109b860048036038101906109b391906139d4565b6122e5565b6040516109c5919061433a565b60405180910390f35b3480156109da57600080fd5b506109e3612379565b6040516109f0919061433a565b60405180910390f35b348015610a0557600080fd5b50610a206004803603810190610a1b91906139a7565b61238c565b005b348015610a2e57600080fd5b50610a37612484565b604051610a449190614713565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b1857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b8057507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b905750610b8f8261248a565b5b9050919050565b606060018054610ba690614a98565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd290614a98565b8015610c1f5780601f10610bf457610100808354040283529160200191610c1f565b820191906000526020600020905b815481529060010190602001808311610c0257829003601f168201915b5050505050905090565b6000610c34826124f4565b610c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6a906146b7565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cb982611510565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d21906145d7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d49612501565b73ffffffffffffffffffffffffffffffffffffffff161480610d785750610d7781610d72612501565b6122e5565b5b610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dae906144b7565b60405180910390fd5b610dc2838383612509565b505050565b60008054905090565b610dd8612501565b73ffffffffffffffffffffffffffffffffffffffff16610df6611a45565b73ffffffffffffffffffffffffffffffffffffffff1614610e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4390614497565b60405180910390fd5b47811115610e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8690614417565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610ed5573d6000803e3d6000fd5b505050565b610ee58383836125bb565b505050565b600080610ef6836122d3565b1115610f1157600a5483610f0a91906148da565b9050610f55565b601054831115610f3257600a54601054610f2b91906148da565b9050610f55565b6010548311610f5057600a5483610f4991906148da565b9050610f55565b600090505b92915050565b6000610f66836116c6565b8210610fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9e90614377565b60405180910390fd5b6000610fb1610dc7565b905060008060005b83811015611117576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146110ab57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561110357868414156110f4578195505050505050611153565b83806110ff90614afb565b9450505b50808061110f90614afb565b915050610fb9565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114a90614657565b60405180910390fd5b92915050565b611161612501565b73ffffffffffffffffffffffffffffffffffffffff1661117f611a45565b73ffffffffffffffffffffffffffffffffffffffff16146111d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cc90614497565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b611209612501565b73ffffffffffffffffffffffffffffffffffffffff16611227611a45565b73ffffffffffffffffffffffffffffffffffffffff161461127d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127490614497565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156112c8573d6000803e3d6000fd5b5050565b6112e783838360405180602001604052806000815250611d6c565b505050565b6112f4612501565b73ffffffffffffffffffffffffffffffffffffffff16611312611a45565b73ffffffffffffffffffffffffffffffffffffffff1614611368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135f90614497565b60405180910390fd5b80600c8190555050565b61137a61373a565b604051806101000160405280600a548152602001600b548152602001600d548152602001600e60009054906101000a900460ff16151581526020016113bd610dc7565b81526020016010548152602001600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161461140c5761140784612b74565b61140f565b60005b8152602001600c548152509050919050565b600061142b610dc7565b821061146c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146390614437565b60405180910390fd5b819050919050565b61147c612501565b73ffffffffffffffffffffffffffffffffffffffff1661149a611a45565b73ffffffffffffffffffffffffffffffffffffffff16146114f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e790614497565b60405180910390fd5b8060099080519060200190611506929190613781565b5050565b600b5481565b600061151b82612c5d565b600001519050919050565b600c5481565b611534612501565b73ffffffffffffffffffffffffffffffffffffffff16611552611a45565b73ffffffffffffffffffffffffffffffffffffffff16146115a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159f90614497565b60405180910390fd5b80600a8190555050565b600980546115bf90614a98565b80601f01602080910402602001604051908101604052809291908181526020018280546115eb90614a98565b80156116385780601f1061160d57610100808354040283529160200191611638565b820191906000526020600020905b81548152906001019060200180831161161b57829003601f168201915b505050505081565b611648612501565b73ffffffffffffffffffffffffffffffffffffffff16611666611a45565b73ffffffffffffffffffffffffffffffffffffffff16146116bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b390614497565b60405180910390fd5b80600d8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611737576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172e906144f7565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6117b7612501565b73ffffffffffffffffffffffffffffffffffffffff166117d5611a45565b73ffffffffffffffffffffffffffffffffffffffff161461182b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182290614497565b60405180910390fd5b6118356000612e60565b565b61183f612501565b73ffffffffffffffffffffffffffffffffffffffff1661185d611a45565b73ffffffffffffffffffffffffffffffffffffffff16146118b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118aa90614497565b60405180910390fd5b600d54816118bf610dc7565b6118c99190614853565b111561190a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611901906144d7565b60405180910390fd5b6119148282612f26565b5050565b611920612501565b73ffffffffffffffffffffffffffffffffffffffff1661193e611a45565b73ffffffffffffffffffffffffffffffffffffffff1614611994576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198b90614497565b60405180910390fd5b80600f819055506001600e60006101000a81548160ff02191690831515021790555050565b600a5481565b6119c7612501565b73ffffffffffffffffffffffffffffffffffffffff166119e5611a45565b73ffffffffffffffffffffffffffffffffffffffff1614611a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3290614497565b60405180910390fd5b8060108190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b611a7d612501565b73ffffffffffffffffffffffffffffffffffffffff16611a9b611a45565b73ffffffffffffffffffffffffffffffffffffffff1614611af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae890614497565b60405180910390fd5b6002811415611b2a576001601160006101000a81548160ff02191690836001811115611b2057611b1f614bd3565b5b0217905550611b56565b6000601160006101000a81548160ff02191690836001811115611b5057611b4f614bd3565b5b02179055505b50565b606060028054611b6890614a98565b80601f0160208091040260200160405190810160405280929190818152602001828054611b9490614a98565b8015611be15780601f10611bb657610100808354040283529160200191611be1565b820191906000526020600020905b815481529060010190602001808311611bc457829003601f168201915b5050505050905090565b611bf3612501565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5890614577565b60405180910390fd5b8060066000611c6e612501565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d1b612501565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d60919061433a565b60405180910390a35050565b611d778484846125bb565b611d8384848484612f44565b611dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db9906145f7565b60405180910390fd5b50505050565b611dd0612501565b73ffffffffffffffffffffffffffffffffffffffff16611dee611a45565b73ffffffffffffffffffffffffffffffffffffffff1614611e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3b90614497565b60405180910390fd5b80600b8190555050565b611e56612501565b73ffffffffffffffffffffffffffffffffffffffff16611e74611a45565b73ffffffffffffffffffffffffffffffffffffffff1614611eca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec190614497565b60405180910390fd5b6000600f81905550565b600e60009054906101000a900460ff16611f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1a90614397565b60405180910390fd5b600b54811115611f68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5f906145b7565b60405180910390fd5b60008111611fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa290614697565b60405180910390fd5b600d5481611fb7610dc7565b611fc19190614853565b1115612002576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff990614537565b60405180910390fd5b6000600f5411801561201d5750600061201a336122d3565b11155b1561205457600f54811061203157600f5490505b61203b3382612f26565b80600f546120499190614968565b600f81905550612182565b600061205f33612b74565b11156120ba57600a548161207391906148da565b3410156120b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ac906143b7565b60405180910390fd5b612177565b60105481111561211b57600a546010546120d491906148da565b341015612116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210d906143b7565b60405180910390fd5b612176565b601054811161217557600a548161213291906148da565b341015612174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216b906143b7565b60405180910390fd5b5b5b5b6121813382612f26565b5b50565b6060612190826124f4565b6121cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c690614517565b60405180910390fd5b6001808111156121e2576121e1614bd3565b5b601160009054906101000a900460ff16600181111561220457612203614bd3565b5b14156122685760006009805461221990614a98565b9050116122355760405180602001604052806000815250612261565b6009612240836130db565b604051602001612251929190614280565b6040516020818303038152906040525b90506122c2565b60006009805461227790614a98565b90501161229357604051806020016040528060008152506122bf565b600961229e836130db565b6040516020016122af9291906142a4565b6040516020818303038152906040525b90505b919050565b60105481565b60075481565b60006122de82612b74565b9050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e60009054906101000a900460ff1681565b612394612501565b73ffffffffffffffffffffffffffffffffffffffff166123b2611a45565b73ffffffffffffffffffffffffffffffffffffffff1614612408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ff90614497565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246f906143d7565b60405180910390fd5b61248181612e60565b50565b600d5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006125c682612c5d565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166125ed612501565b73ffffffffffffffffffffffffffffffffffffffff1614806126495750612612612501565b73ffffffffffffffffffffffffffffffffffffffff1661263184610c29565b73ffffffffffffffffffffffffffffffffffffffff16145b806126655750612664826000015161265f612501565b6122e5565b5b9050806126a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269e90614597565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612719576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271090614557565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612789576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278090614457565b60405180910390fd5b612796858585600161323c565b6127a66000848460000151612509565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166128149190614934565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166128b8919061480d565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846129be9190614853565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612b0457612a34816124f4565b15612b03576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b6c8686866001613242565b505050505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bdc90614477565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b612c65613807565b612c6e826124f4565b612cad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ca4906143f7565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008310612d115760017f000000000000000000000000000000000000000000000000000000000000000084612d049190614968565b612d0e9190614853565b90505b60008390505b818110612e1f576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612e0b57809350505050612e5b565b508080612e1790614a6e565b915050612d17565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5290614677565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612f40828260405180602001604052806000815250613248565b5050565b6000612f658473ffffffffffffffffffffffffffffffffffffffff16613727565b156130ce578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f8e612501565b8786866040518563ffffffff1660e01b8152600401612fb094939291906142ee565b602060405180830381600087803b158015612fca57600080fd5b505af1925050508015612ffb57506040513d601f19601f82011682018060405250810190612ff89190613b97565b60015b61307e573d806000811461302b576040519150601f19603f3d011682016040523d82523d6000602084013e613030565b606091505b50600081511415613076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306d906145f7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506130d3565b600190505b949350505050565b60606000821415613123576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613237565b600082905060005b6000821461315557808061313e90614afb565b915050600a8261314e91906148a9565b915061312b565b60008167ffffffffffffffff81111561317157613170614c60565b5b6040519080825280601f01601f1916602001820160405280156131a35781602001600182028036833780820191505090505b5090505b60008514613230576001826131bc9190614968565b9150600a856131cb9190614b44565b60306131d79190614853565b60f81b8183815181106131ed576131ec614c31565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561322991906148a9565b94506131a7565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156132be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132b590614637565b60405180910390fd5b6132c7816124f4565b15613307576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132fe90614617565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000083111561336a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613361906146d7565b60405180910390fd5b613377600085838661323c565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151613474919061480d565b6fffffffffffffffffffffffffffffffff16815260200185836020015161349b919061480d565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561370a57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46136aa6000888488612f44565b6136e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136e0906145f7565b60405180910390fd5b81806136f490614afb565b925050808061370290614afb565b915050613639565b508060008190555061371f6000878588613242565b505050505050565b600080823b905060008111915050919050565b604051806101000160405280600081526020016000815260200160008152602001600015158152602001600081526020016000815260200160008152602001600081525090565b82805461378d90614a98565b90600052602060002090601f0160209004810192826137af57600085556137f6565b82601f106137c857805160ff19168380011785556137f6565b828001600101855582156137f6579182015b828111156137f55782518255916020019190600101906137da565b5b5090506138039190613841565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561385a576000816000905550600101613842565b5090565b600061387161386c84614753565b61472e565b90508281526020810184848401111561388d5761388c614c94565b5b613898848285614a2c565b509392505050565b60006138b36138ae84614784565b61472e565b9050828152602081018484840111156138cf576138ce614c94565b5b6138da848285614a2c565b509392505050565b6000813590506138f1816153df565b92915050565b600081359050613906816153f6565b92915050565b60008135905061391b8161540d565b92915050565b6000815190506139308161540d565b92915050565b600082601f83011261394b5761394a614c8f565b5b813561395b84826020860161385e565b91505092915050565b600082601f83011261397957613978614c8f565b5b81356139898482602086016138a0565b91505092915050565b6000813590506139a181615424565b92915050565b6000602082840312156139bd576139bc614c9e565b5b60006139cb848285016138e2565b91505092915050565b600080604083850312156139eb576139ea614c9e565b5b60006139f9858286016138e2565b9250506020613a0a858286016138e2565b9150509250929050565b600080600060608486031215613a2d57613a2c614c9e565b5b6000613a3b868287016138e2565b9350506020613a4c868287016138e2565b9250506040613a5d86828701613992565b9150509250925092565b60008060008060808587031215613a8157613a80614c9e565b5b6000613a8f878288016138e2565b9450506020613aa0878288016138e2565b9350506040613ab187828801613992565b925050606085013567ffffffffffffffff811115613ad257613ad1614c99565b5b613ade87828801613936565b91505092959194509250565b60008060408385031215613b0157613b00614c9e565b5b6000613b0f858286016138e2565b9250506020613b20858286016138f7565b9150509250929050565b60008060408385031215613b4157613b40614c9e565b5b6000613b4f858286016138e2565b9250506020613b6085828601613992565b9150509250929050565b600060208284031215613b8057613b7f614c9e565b5b6000613b8e8482850161390c565b91505092915050565b600060208284031215613bad57613bac614c9e565b5b6000613bbb84828501613921565b91505092915050565b600060208284031215613bda57613bd9614c9e565b5b600082013567ffffffffffffffff811115613bf857613bf7614c99565b5b613c0484828501613964565b91505092915050565b600060208284031215613c2357613c22614c9e565b5b6000613c3184828501613992565b91505092915050565b60008060408385031215613c5157613c50614c9e565b5b6000613c5f85828601613992565b9250506020613c70858286016138e2565b9150509250929050565b613c838161499c565b82525050565b613c92816149ae565b82525050565b613ca1816149ae565b82525050565b6000613cb2826147ca565b613cbc81856147e0565b9350613ccc818560208601614a3b565b613cd581614ca3565b840191505092915050565b6000613ceb826147d5565b613cf581856147f1565b9350613d05818560208601614a3b565b613d0e81614ca3565b840191505092915050565b6000613d24826147d5565b613d2e8185614802565b9350613d3e818560208601614a3b565b80840191505092915050565b60008154613d5781614a98565b613d618186614802565b94506001821660008114613d7c5760018114613d8d57613dc0565b60ff19831686528186019350613dc0565b613d96856147b5565b60005b83811015613db857815481890152600182019150602081019050613d99565b838801955050505b50505092915050565b6000613dd66022836147f1565b9150613de182614cb4565b604082019050919050565b6000613df96013836147f1565b9150613e0482614d03565b602082019050919050565b6000613e1c6010836147f1565b9150613e2782614d2c565b602082019050919050565b6000613e3f6026836147f1565b9150613e4a82614d55565b604082019050919050565b6000613e62602a836147f1565b9150613e6d82614da4565b604082019050919050565b6000613e85601f836147f1565b9150613e9082614df3565b602082019050919050565b6000613ea86023836147f1565b9150613eb382614e1c565b604082019050919050565b6000613ecb6025836147f1565b9150613ed682614e6b565b604082019050919050565b6000613eee6031836147f1565b9150613ef982614eba565b604082019050919050565b6000613f116015836147f1565b9150613f1c82614f09565b602082019050919050565b6000613f346039836147f1565b9150613f3f82614f32565b604082019050919050565b6000613f57601b836147f1565b9150613f6282614f81565b602082019050919050565b6000613f7a602b836147f1565b9150613f8582614faa565b604082019050919050565b6000613f9d6015836147f1565b9150613fa882614ff9565b602082019050919050565b6000613fc06011836147f1565b9150613fcb82615022565b602082019050919050565b6000613fe36026836147f1565b9150613fee8261504b565b604082019050919050565b6000614006600583614802565b91506140118261509a565b600582019050919050565b6000614029601a836147f1565b9150614034826150c3565b602082019050919050565b600061404c6032836147f1565b9150614057826150ec565b604082019050919050565b600061406f6018836147f1565b915061407a8261513b565b602082019050919050565b60006140926022836147f1565b915061409d82615164565b604082019050919050565b60006140b56033836147f1565b91506140c0826151b3565b604082019050919050565b60006140d8601d836147f1565b91506140e382615202565b602082019050919050565b60006140fb6021836147f1565b91506141068261522b565b604082019050919050565b600061411e602e836147f1565b91506141298261527a565b604082019050919050565b6000614141602f836147f1565b915061414c826152c9565b604082019050919050565b60006141646016836147f1565b915061416f82615318565b602082019050919050565b6000614187602d836147f1565b915061419282615341565b604082019050919050565b60006141aa6022836147f1565b91506141b582615390565b604082019050919050565b610100820160008201516141d76000850182614262565b5060208201516141ea6020850182614262565b5060408201516141fd6040850182614262565b5060608201516142106060850182613c89565b5060808201516142236080850182614262565b5060a082015161423660a0850182614262565b5060c082015161424960c0850182614262565b5060e082015161425c60e0850182614262565b50505050565b61426b81614a22565b82525050565b61427a81614a22565b82525050565b600061428c8285613d4a565b91506142988284613d19565b91508190509392505050565b60006142b08285613d4a565b91506142bc8284613d19565b91506142c782613ff9565b91508190509392505050565b60006020820190506142e86000830184613c7a565b92915050565b60006080820190506143036000830187613c7a565b6143106020830186613c7a565b61431d6040830185614271565b818103606083015261432f8184613ca7565b905095945050505050565b600060208201905061434f6000830184613c98565b92915050565b6000602082019050818103600083015261436f8184613ce0565b905092915050565b6000602082019050818103600083015261439081613dc9565b9050919050565b600060208201905081810360008301526143b081613dec565b9050919050565b600060208201905081810360008301526143d081613e0f565b9050919050565b600060208201905081810360008301526143f081613e32565b9050919050565b6000602082019050818103600083015261441081613e55565b9050919050565b6000602082019050818103600083015261443081613e78565b9050919050565b6000602082019050818103600083015261445081613e9b565b9050919050565b6000602082019050818103600083015261447081613ebe565b9050919050565b6000602082019050818103600083015261449081613ee1565b9050919050565b600060208201905081810360008301526144b081613f04565b9050919050565b600060208201905081810360008301526144d081613f27565b9050919050565b600060208201905081810360008301526144f081613f4a565b9050919050565b6000602082019050818103600083015261451081613f6d565b9050919050565b6000602082019050818103600083015261453081613f90565b9050919050565b6000602082019050818103600083015261455081613fb3565b9050919050565b6000602082019050818103600083015261457081613fd6565b9050919050565b600060208201905081810360008301526145908161401c565b9050919050565b600060208201905081810360008301526145b08161403f565b9050919050565b600060208201905081810360008301526145d081614062565b9050919050565b600060208201905081810360008301526145f081614085565b9050919050565b60006020820190508181036000830152614610816140a8565b9050919050565b60006020820190508181036000830152614630816140cb565b9050919050565b60006020820190508181036000830152614650816140ee565b9050919050565b6000602082019050818103600083015261467081614111565b9050919050565b6000602082019050818103600083015261469081614134565b9050919050565b600060208201905081810360008301526146b081614157565b9050919050565b600060208201905081810360008301526146d08161417a565b9050919050565b600060208201905081810360008301526146f08161419d565b9050919050565b60006101008201905061470d60008301846141c0565b92915050565b60006020820190506147286000830184614271565b92915050565b6000614738614749565b90506147448282614aca565b919050565b6000604051905090565b600067ffffffffffffffff82111561476e5761476d614c60565b5b61477782614ca3565b9050602081019050919050565b600067ffffffffffffffff82111561479f5761479e614c60565b5b6147a882614ca3565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614818826149e6565b9150614823836149e6565b9250826fffffffffffffffffffffffffffffffff0382111561484857614847614b75565b5b828201905092915050565b600061485e82614a22565b915061486983614a22565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561489e5761489d614b75565b5b828201905092915050565b60006148b482614a22565b91506148bf83614a22565b9250826148cf576148ce614ba4565b5b828204905092915050565b60006148e582614a22565b91506148f083614a22565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561492957614928614b75565b5b828202905092915050565b600061493f826149e6565b915061494a836149e6565b92508282101561495d5761495c614b75565b5b828203905092915050565b600061497382614a22565b915061497e83614a22565b92508282101561499157614990614b75565b5b828203905092915050565b60006149a782614a02565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614a59578082015181840152602081019050614a3e565b83811115614a68576000848401525b50505050565b6000614a7982614a22565b91506000821415614a8d57614a8c614b75565b5b600182039050919050565b60006002820490506001821680614ab057607f821691505b60208210811415614ac457614ac3614c02565b5b50919050565b614ad382614ca3565b810181811067ffffffffffffffff82111715614af257614af1614c60565b5b80604052505050565b6000614b0682614a22565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614b3957614b38614b75565b5b600182019050919050565b6000614b4f82614a22565b9150614b5a83614a22565b925082614b6a57614b69614ba4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206d7573742062652061637469766500000000000000000000000000600082015250565b7f4e6f7420656e6f75676820657468657200000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4578636565642062616c616e6365206f66207468697320636f6e747261637400600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f596f7520617265206e6f7420746865206f776e65720000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f457863656564206d617820737570706c79206f6620746f6b656e730000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f457863656564206d617820737570706c79000000000000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f457863656564206d617820746f6b656e73207065722074780000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f4d757374206d696e74206174206c65617374206f6e6500000000000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6153e88161499c565b81146153f357600080fd5b50565b6153ff816149ae565b811461540a57600080fd5b50565b615416816149ba565b811461542157600080fd5b50565b61542d81614a22565b811461543857600080fd5b5056fea2646970667358221220d8b8a8cbbc6faade4117b69cd553f6bbe1d2fc3c5631635ad18cf4085cdc60df64736f6c6343000807003368747470733a2f2f6e667473657276696365732e73332e616d617a6f6e6177732e636f6d2f76656e74616e612f

Deployed Bytecode

0x6080604052600436106102725760003560e01c806370a082311161014f578063b88d4fde116100c1578063d7224ba01161007a578063d7224ba014610929578063dc33e68114610954578063e985e9c514610991578063eb8d2444146109ce578063f2fde38b146109f9578063f47c84c514610a2257610272565b8063b88d4fde1461083c578063b9bed05e14610865578063c4d7e2f81461088e578063c634d032146108a5578063c87b56dd146108c1578063d0a04eac146108fe57610272565b806385c8cc741161011357806385c8cc74146107405780638da5cb5b146107695780638f69ae6f14610794578063900c71f5146107bf57806395d89b41146107e8578063a22cb4651461081357610272565b806370a082311461066f578063715018a6146106ac57806378cf19e9146106c35780637b8940cc146106ec5780637ff9b5961461071557610272565b806342842e0e116101e85780635e307a48116101ac5780635e307a481461055f5780636352211e1461058a578063681c8bac146105c75780636a61e5fc146105f25780636c0360eb1461061b5780636f8b44b01461064657610272565b806342842e0e1461046a578063495e1eba146104935780634df8bb45146104bc5780634f6ccce7146104f957806355f804b31461053657610272565b8063205c28781161023a578063205c28781461037057806323b872dd146103995780632b57cfbb146103c25780632f745c59146103ff57806334918dfd1461043c5780633ccfd60b1461045357610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063095ea7b31461031c57806318160ddd14610345575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190613b6a565b610a4d565b6040516102ab919061433a565b60405180910390f35b3480156102c057600080fd5b506102c9610b97565b6040516102d69190614355565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190613c0d565b610c29565b60405161031391906142d3565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e9190613b2a565b610cae565b005b34801561035157600080fd5b5061035a610dc7565b6040516103679190614713565b60405180910390f35b34801561037c57600080fd5b5061039760048036038101906103929190613b2a565b610dd0565b005b3480156103a557600080fd5b506103c060048036038101906103bb9190613a14565b610eda565b005b3480156103ce57600080fd5b506103e960048036038101906103e49190613c3a565b610eea565b6040516103f69190614713565b60405180910390f35b34801561040b57600080fd5b5061042660048036038101906104219190613b2a565b610f5b565b6040516104339190614713565b60405180910390f35b34801561044857600080fd5b50610451611159565b005b34801561045f57600080fd5b50610468611201565b005b34801561047657600080fd5b50610491600480360381019061048c9190613a14565b6112cc565b005b34801561049f57600080fd5b506104ba60048036038101906104b59190613c0d565b6112ec565b005b3480156104c857600080fd5b506104e360048036038101906104de91906139a7565b611372565b6040516104f091906146f7565b60405180910390f35b34801561050557600080fd5b50610520600480360381019061051b9190613c0d565b611421565b60405161052d9190614713565b60405180910390f35b34801561054257600080fd5b5061055d60048036038101906105589190613bc4565b611474565b005b34801561056b57600080fd5b5061057461150a565b6040516105819190614713565b60405180910390f35b34801561059657600080fd5b506105b160048036038101906105ac9190613c0d565b611510565b6040516105be91906142d3565b60405180910390f35b3480156105d357600080fd5b506105dc611526565b6040516105e99190614713565b60405180910390f35b3480156105fe57600080fd5b5061061960048036038101906106149190613c0d565b61152c565b005b34801561062757600080fd5b506106306115b2565b60405161063d9190614355565b60405180910390f35b34801561065257600080fd5b5061066d60048036038101906106689190613c0d565b611640565b005b34801561067b57600080fd5b50610696600480360381019061069191906139a7565b6116c6565b6040516106a39190614713565b60405180910390f35b3480156106b857600080fd5b506106c16117af565b005b3480156106cf57600080fd5b506106ea60048036038101906106e59190613b2a565b611837565b005b3480156106f857600080fd5b50610713600480360381019061070e9190613c0d565b611918565b005b34801561072157600080fd5b5061072a6119b9565b6040516107379190614713565b60405180910390f35b34801561074c57600080fd5b5061076760048036038101906107629190613c0d565b6119bf565b005b34801561077557600080fd5b5061077e611a45565b60405161078b91906142d3565b60405180910390f35b3480156107a057600080fd5b506107a9611a6f565b6040516107b69190614713565b60405180910390f35b3480156107cb57600080fd5b506107e660048036038101906107e19190613c0d565b611a75565b005b3480156107f457600080fd5b506107fd611b59565b60405161080a9190614355565b60405180910390f35b34801561081f57600080fd5b5061083a60048036038101906108359190613aea565b611beb565b005b34801561084857600080fd5b50610863600480360381019061085e9190613a67565b611d6c565b005b34801561087157600080fd5b5061088c60048036038101906108879190613c0d565b611dc8565b005b34801561089a57600080fd5b506108a3611e4e565b005b6108bf60048036038101906108ba9190613c0d565b611ed4565b005b3480156108cd57600080fd5b506108e860048036038101906108e39190613c0d565b612185565b6040516108f59190614355565b60405180910390f35b34801561090a57600080fd5b506109136122c7565b6040516109209190614713565b60405180910390f35b34801561093557600080fd5b5061093e6122cd565b60405161094b9190614713565b60405180910390f35b34801561096057600080fd5b5061097b600480360381019061097691906139a7565b6122d3565b6040516109889190614713565b60405180910390f35b34801561099d57600080fd5b506109b860048036038101906109b391906139d4565b6122e5565b6040516109c5919061433a565b60405180910390f35b3480156109da57600080fd5b506109e3612379565b6040516109f0919061433a565b60405180910390f35b348015610a0557600080fd5b50610a206004803603810190610a1b91906139a7565b61238c565b005b348015610a2e57600080fd5b50610a37612484565b604051610a449190614713565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b1857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b8057507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b905750610b8f8261248a565b5b9050919050565b606060018054610ba690614a98565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd290614a98565b8015610c1f5780601f10610bf457610100808354040283529160200191610c1f565b820191906000526020600020905b815481529060010190602001808311610c0257829003601f168201915b5050505050905090565b6000610c34826124f4565b610c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6a906146b7565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cb982611510565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d21906145d7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d49612501565b73ffffffffffffffffffffffffffffffffffffffff161480610d785750610d7781610d72612501565b6122e5565b5b610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dae906144b7565b60405180910390fd5b610dc2838383612509565b505050565b60008054905090565b610dd8612501565b73ffffffffffffffffffffffffffffffffffffffff16610df6611a45565b73ffffffffffffffffffffffffffffffffffffffff1614610e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4390614497565b60405180910390fd5b47811115610e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8690614417565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610ed5573d6000803e3d6000fd5b505050565b610ee58383836125bb565b505050565b600080610ef6836122d3565b1115610f1157600a5483610f0a91906148da565b9050610f55565b601054831115610f3257600a54601054610f2b91906148da565b9050610f55565b6010548311610f5057600a5483610f4991906148da565b9050610f55565b600090505b92915050565b6000610f66836116c6565b8210610fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9e90614377565b60405180910390fd5b6000610fb1610dc7565b905060008060005b83811015611117576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146110ab57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561110357868414156110f4578195505050505050611153565b83806110ff90614afb565b9450505b50808061110f90614afb565b915050610fb9565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114a90614657565b60405180910390fd5b92915050565b611161612501565b73ffffffffffffffffffffffffffffffffffffffff1661117f611a45565b73ffffffffffffffffffffffffffffffffffffffff16146111d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cc90614497565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b611209612501565b73ffffffffffffffffffffffffffffffffffffffff16611227611a45565b73ffffffffffffffffffffffffffffffffffffffff161461127d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127490614497565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156112c8573d6000803e3d6000fd5b5050565b6112e783838360405180602001604052806000815250611d6c565b505050565b6112f4612501565b73ffffffffffffffffffffffffffffffffffffffff16611312611a45565b73ffffffffffffffffffffffffffffffffffffffff1614611368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135f90614497565b60405180910390fd5b80600c8190555050565b61137a61373a565b604051806101000160405280600a548152602001600b548152602001600d548152602001600e60009054906101000a900460ff16151581526020016113bd610dc7565b81526020016010548152602001600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161461140c5761140784612b74565b61140f565b60005b8152602001600c548152509050919050565b600061142b610dc7565b821061146c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146390614437565b60405180910390fd5b819050919050565b61147c612501565b73ffffffffffffffffffffffffffffffffffffffff1661149a611a45565b73ffffffffffffffffffffffffffffffffffffffff16146114f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e790614497565b60405180910390fd5b8060099080519060200190611506929190613781565b5050565b600b5481565b600061151b82612c5d565b600001519050919050565b600c5481565b611534612501565b73ffffffffffffffffffffffffffffffffffffffff16611552611a45565b73ffffffffffffffffffffffffffffffffffffffff16146115a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159f90614497565b60405180910390fd5b80600a8190555050565b600980546115bf90614a98565b80601f01602080910402602001604051908101604052809291908181526020018280546115eb90614a98565b80156116385780601f1061160d57610100808354040283529160200191611638565b820191906000526020600020905b81548152906001019060200180831161161b57829003601f168201915b505050505081565b611648612501565b73ffffffffffffffffffffffffffffffffffffffff16611666611a45565b73ffffffffffffffffffffffffffffffffffffffff16146116bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b390614497565b60405180910390fd5b80600d8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611737576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172e906144f7565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6117b7612501565b73ffffffffffffffffffffffffffffffffffffffff166117d5611a45565b73ffffffffffffffffffffffffffffffffffffffff161461182b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182290614497565b60405180910390fd5b6118356000612e60565b565b61183f612501565b73ffffffffffffffffffffffffffffffffffffffff1661185d611a45565b73ffffffffffffffffffffffffffffffffffffffff16146118b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118aa90614497565b60405180910390fd5b600d54816118bf610dc7565b6118c99190614853565b111561190a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611901906144d7565b60405180910390fd5b6119148282612f26565b5050565b611920612501565b73ffffffffffffffffffffffffffffffffffffffff1661193e611a45565b73ffffffffffffffffffffffffffffffffffffffff1614611994576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198b90614497565b60405180910390fd5b80600f819055506001600e60006101000a81548160ff02191690831515021790555050565b600a5481565b6119c7612501565b73ffffffffffffffffffffffffffffffffffffffff166119e5611a45565b73ffffffffffffffffffffffffffffffffffffffff1614611a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3290614497565b60405180910390fd5b8060108190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b611a7d612501565b73ffffffffffffffffffffffffffffffffffffffff16611a9b611a45565b73ffffffffffffffffffffffffffffffffffffffff1614611af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae890614497565b60405180910390fd5b6002811415611b2a576001601160006101000a81548160ff02191690836001811115611b2057611b1f614bd3565b5b0217905550611b56565b6000601160006101000a81548160ff02191690836001811115611b5057611b4f614bd3565b5b02179055505b50565b606060028054611b6890614a98565b80601f0160208091040260200160405190810160405280929190818152602001828054611b9490614a98565b8015611be15780601f10611bb657610100808354040283529160200191611be1565b820191906000526020600020905b815481529060010190602001808311611bc457829003601f168201915b5050505050905090565b611bf3612501565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5890614577565b60405180910390fd5b8060066000611c6e612501565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d1b612501565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d60919061433a565b60405180910390a35050565b611d778484846125bb565b611d8384848484612f44565b611dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db9906145f7565b60405180910390fd5b50505050565b611dd0612501565b73ffffffffffffffffffffffffffffffffffffffff16611dee611a45565b73ffffffffffffffffffffffffffffffffffffffff1614611e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3b90614497565b60405180910390fd5b80600b8190555050565b611e56612501565b73ffffffffffffffffffffffffffffffffffffffff16611e74611a45565b73ffffffffffffffffffffffffffffffffffffffff1614611eca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec190614497565b60405180910390fd5b6000600f81905550565b600e60009054906101000a900460ff16611f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1a90614397565b60405180910390fd5b600b54811115611f68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5f906145b7565b60405180910390fd5b60008111611fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa290614697565b60405180910390fd5b600d5481611fb7610dc7565b611fc19190614853565b1115612002576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff990614537565b60405180910390fd5b6000600f5411801561201d5750600061201a336122d3565b11155b1561205457600f54811061203157600f5490505b61203b3382612f26565b80600f546120499190614968565b600f81905550612182565b600061205f33612b74565b11156120ba57600a548161207391906148da565b3410156120b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ac906143b7565b60405180910390fd5b612177565b60105481111561211b57600a546010546120d491906148da565b341015612116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210d906143b7565b60405180910390fd5b612176565b601054811161217557600a548161213291906148da565b341015612174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216b906143b7565b60405180910390fd5b5b5b5b6121813382612f26565b5b50565b6060612190826124f4565b6121cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c690614517565b60405180910390fd5b6001808111156121e2576121e1614bd3565b5b601160009054906101000a900460ff16600181111561220457612203614bd3565b5b14156122685760006009805461221990614a98565b9050116122355760405180602001604052806000815250612261565b6009612240836130db565b604051602001612251929190614280565b6040516020818303038152906040525b90506122c2565b60006009805461227790614a98565b90501161229357604051806020016040528060008152506122bf565b600961229e836130db565b6040516020016122af9291906142a4565b6040516020818303038152906040525b90505b919050565b60105481565b60075481565b60006122de82612b74565b9050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e60009054906101000a900460ff1681565b612394612501565b73ffffffffffffffffffffffffffffffffffffffff166123b2611a45565b73ffffffffffffffffffffffffffffffffffffffff1614612408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ff90614497565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246f906143d7565b60405180910390fd5b61248181612e60565b50565b600d5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006125c682612c5d565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166125ed612501565b73ffffffffffffffffffffffffffffffffffffffff1614806126495750612612612501565b73ffffffffffffffffffffffffffffffffffffffff1661263184610c29565b73ffffffffffffffffffffffffffffffffffffffff16145b806126655750612664826000015161265f612501565b6122e5565b5b9050806126a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269e90614597565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612719576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271090614557565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612789576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278090614457565b60405180910390fd5b612796858585600161323c565b6127a66000848460000151612509565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166128149190614934565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166128b8919061480d565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846129be9190614853565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612b0457612a34816124f4565b15612b03576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b6c8686866001613242565b505050505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bdc90614477565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b612c65613807565b612c6e826124f4565b612cad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ca4906143f7565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000648310612d115760017f000000000000000000000000000000000000000000000000000000000000006484612d049190614968565b612d0e9190614853565b90505b60008390505b818110612e1f576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612e0b57809350505050612e5b565b508080612e1790614a6e565b915050612d17565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5290614677565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612f40828260405180602001604052806000815250613248565b5050565b6000612f658473ffffffffffffffffffffffffffffffffffffffff16613727565b156130ce578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f8e612501565b8786866040518563ffffffff1660e01b8152600401612fb094939291906142ee565b602060405180830381600087803b158015612fca57600080fd5b505af1925050508015612ffb57506040513d601f19601f82011682018060405250810190612ff89190613b97565b60015b61307e573d806000811461302b576040519150601f19603f3d011682016040523d82523d6000602084013e613030565b606091505b50600081511415613076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306d906145f7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506130d3565b600190505b949350505050565b60606000821415613123576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613237565b600082905060005b6000821461315557808061313e90614afb565b915050600a8261314e91906148a9565b915061312b565b60008167ffffffffffffffff81111561317157613170614c60565b5b6040519080825280601f01601f1916602001820160405280156131a35781602001600182028036833780820191505090505b5090505b60008514613230576001826131bc9190614968565b9150600a856131cb9190614b44565b60306131d79190614853565b60f81b8183815181106131ed576131ec614c31565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561322991906148a9565b94506131a7565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156132be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132b590614637565b60405180910390fd5b6132c7816124f4565b15613307576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132fe90614617565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000006483111561336a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613361906146d7565b60405180910390fd5b613377600085838661323c565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151613474919061480d565b6fffffffffffffffffffffffffffffffff16815260200185836020015161349b919061480d565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561370a57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46136aa6000888488612f44565b6136e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136e0906145f7565b60405180910390fd5b81806136f490614afb565b925050808061370290614afb565b915050613639565b508060008190555061371f6000878588613242565b505050505050565b600080823b905060008111915050919050565b604051806101000160405280600081526020016000815260200160008152602001600015158152602001600081526020016000815260200160008152602001600081525090565b82805461378d90614a98565b90600052602060002090601f0160209004810192826137af57600085556137f6565b82601f106137c857805160ff19168380011785556137f6565b828001600101855582156137f6579182015b828111156137f55782518255916020019190600101906137da565b5b5090506138039190613841565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561385a576000816000905550600101613842565b5090565b600061387161386c84614753565b61472e565b90508281526020810184848401111561388d5761388c614c94565b5b613898848285614a2c565b509392505050565b60006138b36138ae84614784565b61472e565b9050828152602081018484840111156138cf576138ce614c94565b5b6138da848285614a2c565b509392505050565b6000813590506138f1816153df565b92915050565b600081359050613906816153f6565b92915050565b60008135905061391b8161540d565b92915050565b6000815190506139308161540d565b92915050565b600082601f83011261394b5761394a614c8f565b5b813561395b84826020860161385e565b91505092915050565b600082601f83011261397957613978614c8f565b5b81356139898482602086016138a0565b91505092915050565b6000813590506139a181615424565b92915050565b6000602082840312156139bd576139bc614c9e565b5b60006139cb848285016138e2565b91505092915050565b600080604083850312156139eb576139ea614c9e565b5b60006139f9858286016138e2565b9250506020613a0a858286016138e2565b9150509250929050565b600080600060608486031215613a2d57613a2c614c9e565b5b6000613a3b868287016138e2565b9350506020613a4c868287016138e2565b9250506040613a5d86828701613992565b9150509250925092565b60008060008060808587031215613a8157613a80614c9e565b5b6000613a8f878288016138e2565b9450506020613aa0878288016138e2565b9350506040613ab187828801613992565b925050606085013567ffffffffffffffff811115613ad257613ad1614c99565b5b613ade87828801613936565b91505092959194509250565b60008060408385031215613b0157613b00614c9e565b5b6000613b0f858286016138e2565b9250506020613b20858286016138f7565b9150509250929050565b60008060408385031215613b4157613b40614c9e565b5b6000613b4f858286016138e2565b9250506020613b6085828601613992565b9150509250929050565b600060208284031215613b8057613b7f614c9e565b5b6000613b8e8482850161390c565b91505092915050565b600060208284031215613bad57613bac614c9e565b5b6000613bbb84828501613921565b91505092915050565b600060208284031215613bda57613bd9614c9e565b5b600082013567ffffffffffffffff811115613bf857613bf7614c99565b5b613c0484828501613964565b91505092915050565b600060208284031215613c2357613c22614c9e565b5b6000613c3184828501613992565b91505092915050565b60008060408385031215613c5157613c50614c9e565b5b6000613c5f85828601613992565b9250506020613c70858286016138e2565b9150509250929050565b613c838161499c565b82525050565b613c92816149ae565b82525050565b613ca1816149ae565b82525050565b6000613cb2826147ca565b613cbc81856147e0565b9350613ccc818560208601614a3b565b613cd581614ca3565b840191505092915050565b6000613ceb826147d5565b613cf581856147f1565b9350613d05818560208601614a3b565b613d0e81614ca3565b840191505092915050565b6000613d24826147d5565b613d2e8185614802565b9350613d3e818560208601614a3b565b80840191505092915050565b60008154613d5781614a98565b613d618186614802565b94506001821660008114613d7c5760018114613d8d57613dc0565b60ff19831686528186019350613dc0565b613d96856147b5565b60005b83811015613db857815481890152600182019150602081019050613d99565b838801955050505b50505092915050565b6000613dd66022836147f1565b9150613de182614cb4565b604082019050919050565b6000613df96013836147f1565b9150613e0482614d03565b602082019050919050565b6000613e1c6010836147f1565b9150613e2782614d2c565b602082019050919050565b6000613e3f6026836147f1565b9150613e4a82614d55565b604082019050919050565b6000613e62602a836147f1565b9150613e6d82614da4565b604082019050919050565b6000613e85601f836147f1565b9150613e9082614df3565b602082019050919050565b6000613ea86023836147f1565b9150613eb382614e1c565b604082019050919050565b6000613ecb6025836147f1565b9150613ed682614e6b565b604082019050919050565b6000613eee6031836147f1565b9150613ef982614eba565b604082019050919050565b6000613f116015836147f1565b9150613f1c82614f09565b602082019050919050565b6000613f346039836147f1565b9150613f3f82614f32565b604082019050919050565b6000613f57601b836147f1565b9150613f6282614f81565b602082019050919050565b6000613f7a602b836147f1565b9150613f8582614faa565b604082019050919050565b6000613f9d6015836147f1565b9150613fa882614ff9565b602082019050919050565b6000613fc06011836147f1565b9150613fcb82615022565b602082019050919050565b6000613fe36026836147f1565b9150613fee8261504b565b604082019050919050565b6000614006600583614802565b91506140118261509a565b600582019050919050565b6000614029601a836147f1565b9150614034826150c3565b602082019050919050565b600061404c6032836147f1565b9150614057826150ec565b604082019050919050565b600061406f6018836147f1565b915061407a8261513b565b602082019050919050565b60006140926022836147f1565b915061409d82615164565b604082019050919050565b60006140b56033836147f1565b91506140c0826151b3565b604082019050919050565b60006140d8601d836147f1565b91506140e382615202565b602082019050919050565b60006140fb6021836147f1565b91506141068261522b565b604082019050919050565b600061411e602e836147f1565b91506141298261527a565b604082019050919050565b6000614141602f836147f1565b915061414c826152c9565b604082019050919050565b60006141646016836147f1565b915061416f82615318565b602082019050919050565b6000614187602d836147f1565b915061419282615341565b604082019050919050565b60006141aa6022836147f1565b91506141b582615390565b604082019050919050565b610100820160008201516141d76000850182614262565b5060208201516141ea6020850182614262565b5060408201516141fd6040850182614262565b5060608201516142106060850182613c89565b5060808201516142236080850182614262565b5060a082015161423660a0850182614262565b5060c082015161424960c0850182614262565b5060e082015161425c60e0850182614262565b50505050565b61426b81614a22565b82525050565b61427a81614a22565b82525050565b600061428c8285613d4a565b91506142988284613d19565b91508190509392505050565b60006142b08285613d4a565b91506142bc8284613d19565b91506142c782613ff9565b91508190509392505050565b60006020820190506142e86000830184613c7a565b92915050565b60006080820190506143036000830187613c7a565b6143106020830186613c7a565b61431d6040830185614271565b818103606083015261432f8184613ca7565b905095945050505050565b600060208201905061434f6000830184613c98565b92915050565b6000602082019050818103600083015261436f8184613ce0565b905092915050565b6000602082019050818103600083015261439081613dc9565b9050919050565b600060208201905081810360008301526143b081613dec565b9050919050565b600060208201905081810360008301526143d081613e0f565b9050919050565b600060208201905081810360008301526143f081613e32565b9050919050565b6000602082019050818103600083015261441081613e55565b9050919050565b6000602082019050818103600083015261443081613e78565b9050919050565b6000602082019050818103600083015261445081613e9b565b9050919050565b6000602082019050818103600083015261447081613ebe565b9050919050565b6000602082019050818103600083015261449081613ee1565b9050919050565b600060208201905081810360008301526144b081613f04565b9050919050565b600060208201905081810360008301526144d081613f27565b9050919050565b600060208201905081810360008301526144f081613f4a565b9050919050565b6000602082019050818103600083015261451081613f6d565b9050919050565b6000602082019050818103600083015261453081613f90565b9050919050565b6000602082019050818103600083015261455081613fb3565b9050919050565b6000602082019050818103600083015261457081613fd6565b9050919050565b600060208201905081810360008301526145908161401c565b9050919050565b600060208201905081810360008301526145b08161403f565b9050919050565b600060208201905081810360008301526145d081614062565b9050919050565b600060208201905081810360008301526145f081614085565b9050919050565b60006020820190508181036000830152614610816140a8565b9050919050565b60006020820190508181036000830152614630816140cb565b9050919050565b60006020820190508181036000830152614650816140ee565b9050919050565b6000602082019050818103600083015261467081614111565b9050919050565b6000602082019050818103600083015261469081614134565b9050919050565b600060208201905081810360008301526146b081614157565b9050919050565b600060208201905081810360008301526146d08161417a565b9050919050565b600060208201905081810360008301526146f08161419d565b9050919050565b60006101008201905061470d60008301846141c0565b92915050565b60006020820190506147286000830184614271565b92915050565b6000614738614749565b90506147448282614aca565b919050565b6000604051905090565b600067ffffffffffffffff82111561476e5761476d614c60565b5b61477782614ca3565b9050602081019050919050565b600067ffffffffffffffff82111561479f5761479e614c60565b5b6147a882614ca3565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614818826149e6565b9150614823836149e6565b9250826fffffffffffffffffffffffffffffffff0382111561484857614847614b75565b5b828201905092915050565b600061485e82614a22565b915061486983614a22565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561489e5761489d614b75565b5b828201905092915050565b60006148b482614a22565b91506148bf83614a22565b9250826148cf576148ce614ba4565b5b828204905092915050565b60006148e582614a22565b91506148f083614a22565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561492957614928614b75565b5b828202905092915050565b600061493f826149e6565b915061494a836149e6565b92508282101561495d5761495c614b75565b5b828203905092915050565b600061497382614a22565b915061497e83614a22565b92508282101561499157614990614b75565b5b828203905092915050565b60006149a782614a02565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614a59578082015181840152602081019050614a3e565b83811115614a68576000848401525b50505050565b6000614a7982614a22565b91506000821415614a8d57614a8c614b75565b5b600182039050919050565b60006002820490506001821680614ab057607f821691505b60208210811415614ac457614ac3614c02565b5b50919050565b614ad382614ca3565b810181811067ffffffffffffffff82111715614af257614af1614c60565b5b80604052505050565b6000614b0682614a22565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614b3957614b38614b75565b5b600182019050919050565b6000614b4f82614a22565b9150614b5a83614a22565b925082614b6a57614b69614ba4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206d7573742062652061637469766500000000000000000000000000600082015250565b7f4e6f7420656e6f75676820657468657200000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4578636565642062616c616e6365206f66207468697320636f6e747261637400600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f596f7520617265206e6f7420746865206f776e65720000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f457863656564206d617820737570706c79206f6620746f6b656e730000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f457863656564206d617820737570706c79000000000000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f457863656564206d617820746f6b656e73207065722074780000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f4d757374206d696e74206174206c65617374206f6e6500000000000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6153e88161499c565b81146153f357600080fd5b50565b6153ff816149ae565b811461540a57600080fd5b50565b615416816149ba565b811461542157600080fd5b50565b61542d81614a22565b811461543857600080fd5b5056fea2646970667358221220d8b8a8cbbc6faade4117b69cd553f6bbe1d2fc3c5631635ad18cf4085cdc60df64736f6c63430008070033

Deployed Bytecode Sourcemap

39349:6143:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24537:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26263:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27797:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27360:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23098:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41072:198;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28647:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41998:437;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23729:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41630:89;;;;;;;;;;;;;:::i;:::-;;40923:140;;;;;;;;;;;;;:::i;:::-;;28852:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45357:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40382:533;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23261:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41524:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39543:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26086:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39582:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43745:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39396:71;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44974:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24963:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38495:103;;;;;;;;;;;;;:::i;:::-;;41279:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41727:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39476:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45205:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37855:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39705:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44502:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26418:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28065:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29072:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45081:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41902:88;;;;;;;;;;;;;:::i;:::-;;42509:1228;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43860:634;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39838:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33487:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44852:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28402:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39665:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38753:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39625:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24537:370;24664:4;24709:25;24694:40;;;:11;:40;;;;:99;;;;24760:33;24745:48;;;:11;:48;;;;24694:99;:160;;;;24819:35;24804:50;;;:11;:50;;;;24694:160;:207;;;;24865:36;24889:11;24865:23;:36::i;:::-;24694:207;24680:221;;24537:370;;;:::o;26263:94::-;26317:13;26346:5;26339:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26263:94;:::o;27797:204::-;27865:7;27889:16;27897:7;27889;:16::i;:::-;27881:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;27971:15;:24;27987:7;27971:24;;;;;;;;;;;;;;;;;;;;;27964:31;;27797:204;;;:::o;27360:379::-;27429:13;27445:24;27461:7;27445:15;:24::i;:::-;27429:40;;27490:5;27484:11;;:2;:11;;;;27476:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;27575:5;27559:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27584:37;27601:5;27608:12;:10;:12::i;:::-;27584:16;:37::i;:::-;27559:62;27543:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;27705:28;27714:2;27718:7;27727:5;27705:8;:28::i;:::-;27422:317;27360:379;;:::o;23098:94::-;23151:7;23174:12;;23167:19;;23098:94;:::o;41072:198::-;38086:12;:10;:12::i;:::-;38075:23;;:7;:5;:7::i;:::-;:23;;;38067:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;41166:21:::1;41156:6;:31;;41148:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;41242:2;41234:20;;:28;41255:6;41234:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;41072:198:::0;;:::o;28647:142::-;28755:28;28765:4;28771:2;28775:7;28755:9;:28::i;:::-;28647:142;;;:::o;41998:437::-;42074:7;42120:1;42097:20;42110:6;42097:12;:20::i;:::-;:24;42094:315;;;42161:10;;42144:14;:27;;;;:::i;:::-;42137:34;;;;42094:315;42209:21;;42192:14;:38;42189:220;;;42277:10;;42253:21;;:34;;;;:::i;:::-;42246:41;;;;42189:220;42326:21;;42308:14;:39;42305:104;;42387:10;;42370:14;:27;;;;:::i;:::-;42363:34;;;;42305:104;42426:1;42419:8;;41998:437;;;;;:::o;23729:744::-;23838:7;23873:16;23883:5;23873:9;:16::i;:::-;23865:5;:24;23857:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;23935:22;23960:13;:11;:13::i;:::-;23935:38;;23980:19;24010:25;24060:9;24055:350;24079:14;24075:1;:18;24055:350;;;24109:31;24143:11;:14;24155:1;24143:14;;;;;;;;;;;24109:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24196:1;24170:28;;:9;:14;;;:28;;;24166:89;;24231:9;:14;;;24211:34;;24166:89;24288:5;24267:26;;:17;:26;;;24263:135;;;24325:5;24310:11;:20;24306:59;;;24352:1;24345:8;;;;;;;;;24306:59;24375:13;;;;;:::i;:::-;;;;24263:135;24100:305;24095:3;;;;;:::i;:::-;;;;24055:350;;;;24411:56;;;;;;;;;;:::i;:::-;;;;;;;;23729:744;;;;;:::o;41630:89::-;38086:12;:10;:12::i;:::-;38075:23;;:7;:5;:7::i;:::-;:23;;;38067:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;41699:12:::1;;;;;;;;;;;41698:13;41683:12;;:28;;;;;;;;;;;;;;;;;;41630:89::o:0;40923:140::-;38086:12;:10;:12::i;:::-;38075:23;;:7;:5;:7::i;:::-;:23;;;38067:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;40971:12:::1;40986:21;40971:36;;41026:10;41018:28;;:37;41047:7;41018:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;40960:103;40923:140::o:0;28852:157::-;28964:39;28981:4;28987:2;28991:7;28964:39;;;;;;;;;;;;:16;:39::i;:::-;28852:157;;;:::o;45357:132::-;38086:12;:10;:12::i;:::-;38075:23;;:7;:5;:7::i;:::-;:23;;;38067:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;45462:19:::1;45441:18;:40;;;;45357:132:::0;:::o;40382:533::-;40437:18;;:::i;:::-;40475:432;;;;;;;;40514:10;;40475:432;;;;40555:14;;40475:432;;;;40596:10;;40475:432;;;;40635:12;;;;;;;;;;;40475:432;;;;;;40683:13;:11;:13::i;:::-;40475:432;;;;40736:21;;40475:432;;;;40802:1;40784:20;;:6;:20;;;:57;;40819:21;40833:6;40819:13;:21::i;:::-;40784:57;;;40807:1;40784:57;40475:432;;;;40877:18;;40475:432;;;40468:439;;40382:533;;;:::o;23261:177::-;23328:7;23360:13;:11;:13::i;:::-;23352:5;:21;23344:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;23427:5;23420:12;;23261:177;;;:::o;41524:94::-;38086:12;:10;:12::i;:::-;38075:23;;:7;:5;:7::i;:::-;:23;;;38067:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;41604:6:::1;41594:7;:16;;;;;;;;;;;;:::i;:::-;;41524:94:::0;:::o;39543:30::-;;;;:::o;26086:118::-;26150:7;26173:20;26185:7;26173:11;:20::i;:::-;:25;;;26166:32;;26086:118;;;:::o;39582:34::-;;;;:::o;43745:107::-;38086:12;:10;:12::i;:::-;38075:23;;:7;:5;:7::i;:::-;:23;;;38067:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;43831:13:::1;43818:10;:26;;;;43745:107:::0;:::o;39396:71::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44974:99::-;38086:12;:10;:12::i;:::-;38075:23;;:7;:5;:7::i;:::-;:23;;;38067:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;45055:10:::1;45042;:23;;;;44974:99:::0;:::o;24963:211::-;25027:7;25068:1;25051:19;;:5;:19;;;;25043:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;25140:12;:19;25153:5;25140:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;25132:36;;25125:43;;24963:211;;;:::o;38495:103::-;38086:12;:10;:12::i;:::-;38075:23;;:7;:5;:7::i;:::-;:23;;;38067:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;38560:30:::1;38587:1;38560:18;:30::i;:::-;38495:103::o:0;41279:224::-;38086:12;:10;:12::i;:::-;38075:23;;:7;:5;:7::i;:::-;:23;;;38067:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;41413:10:::1;;41395:14;41379:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:44;;41371:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;41466:29;41476:2;41480:14;41466:9;:29::i;:::-;41279:224:::0;;:::o;41727:167::-;38086:12;:10;:12::i;:::-;38075:23;;:7;:5;:7::i;:::-;:23;;;38067:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;41835:21:::1;41812:20;:44;;;;41882:4;41867:12;;:19;;;;;;;;;;;;;;;;;;41727:167:::0;:::o;39476:46::-;;;;:::o;45205:144::-;38086:12;:10;:12::i;:::-;38075:23;;:7;:5;:7::i;:::-;:23;;;38067:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;45319:22:::1;45295:21;:46;;;;45205:144:::0;:::o;37855:87::-;37901:7;37928:6;;;;;;;;;;;37921:13;;37855:87;:::o;39705:39::-;;;;:::o;44502:223::-;38086:12;:10;:12::i;:::-;38075:23;;:7;:5;:7::i;:::-;:23;;;38067:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;44583:1:::1;44575:4;:9;44571:147;;;44616:21;44601:12;;:36;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;44571:147;;;44685:21;44670:12;;:36;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;44571:147;44502:223:::0;:::o;26418:98::-;26474:13;26503:7;26496:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26418:98;:::o;28065:274::-;28168:12;:10;:12::i;:::-;28156:24;;:8;:24;;;;28148:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;28265:8;28220:18;:32;28239:12;:10;:12::i;:::-;28220:32;;;;;;;;;;;;;;;:42;28253:8;28220:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;28314:8;28285:48;;28300:12;:10;:12::i;:::-;28285:48;;;28324:8;28285:48;;;;;;:::i;:::-;;;;;;;;28065:274;;:::o;29072:311::-;29209:28;29219:4;29225:2;29229:7;29209:9;:28::i;:::-;29260:48;29283:4;29289:2;29293:7;29302:5;29260:22;:48::i;:::-;29244:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;29072:311;;;;:::o;45081:116::-;38086:12;:10;:12::i;:::-;38075:23;;:7;:5;:7::i;:::-;:23;;;38067:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;45174:15:::1;45157:14;:32;;;;45081:116:::0;:::o;41902:88::-;38086:12;:10;:12::i;:::-;38075:23;;:7;:5;:7::i;:::-;:23;;;38067:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;41981:1:::1;41958:20;:24;;;;41902:88::o:0;42509:1228::-;42583:12;;;;;;;;;;;42575:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;42656:14;;42638;:32;;42630:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;42735:1;42718:14;:18;42710:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;42816:10;;42798:14;42782:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:44;;42774:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;42895:1;42872:20;;:24;:57;;;;;42928:1;42900:24;42913:10;42900:12;:24::i;:::-;:29;;42872:57;42869:861;;;42966:20;;42948:14;:38;42945:114;;43023:20;;43006:37;;42945:114;43073:37;43083:10;43095:14;43073:9;:37::i;:::-;43171:14;43148:20;;:37;;;;:::i;:::-;43125:20;:60;;;;42869:861;;;43248:1;43220:25;43234:10;43220:13;:25::i;:::-;:29;43217:450;;;43307:10;;43290:14;:27;;;;:::i;:::-;43277:9;:40;;43269:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;43217:450;;;43381:21;;43364:14;:38;43361:306;;;43467:10;;43443:21;;:34;;;;:::i;:::-;43430:9;:47;;43422:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;43361:306;;;43541:21;;43523:14;:39;43520:147;;43620:10;;43603:14;:27;;;;:::i;:::-;43590:9;:40;;43582:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;43520:147;43361:306;43217:450;43681:37;43691:10;43703:14;43681:9;:37::i;:::-;42869:861;42509:1228;:::o;43860:634::-;43926:13;43966:17;43974:8;43966:7;:17::i;:::-;43958:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;44040:21;44024:37;;;;;;;;:::i;:::-;;:12;;;;;;;;;;;:37;;;;;;;;:::i;:::-;;;44020:467;;;44107:1;44089:7;44083:21;;;;;:::i;:::-;;;:25;:165;;;;;;;;;;;;;;;;;44165:7;44189:26;44206:8;44189:16;:26::i;:::-;44132:98;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44083:165;44076:172;;;;44020:467;44310:1;44292:7;44286:21;;;;;:::i;:::-;;;:25;:189;;;;;;;;;;;;;;;;;44368:7;44392:26;44409:8;44392:16;:26::i;:::-;44335:122;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44286:189;44279:196;;43860:634;;;;:::o;39838:38::-;;;;:::o;33487:43::-;;;;:::o;44852:113::-;44910:7;44937:20;44951:5;44937:13;:20::i;:::-;44930:27;;44852:113;;;:::o;28402:186::-;28524:4;28547:18;:25;28566:5;28547:25;;;;;;;;;;;;;;;:35;28573:8;28547:35;;;;;;;;;;;;;;;;;;;;;;;;;28540:42;;28402:186;;;;:::o;39665:31::-;;;;;;;;;;;;;:::o;38753:238::-;38086:12;:10;:12::i;:::-;38075:23;;:7;:5;:7::i;:::-;:23;;;38067:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;38876:1:::1;38856:22;;:8;:22;;;;38834:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;38955:28;38974:8;38955:18;:28::i;:::-;38753:238:::0;:::o;39625:31::-;;;;:::o;8224:207::-;8354:4;8398:25;8383:40;;;:11;:40;;;;8376:47;;8224:207;;;:::o;29622:105::-;29679:4;29709:12;;29699:7;:22;29692:29;;29622:105;;;:::o;17577:98::-;17630:7;17657:10;17650:17;;17577:98;:::o;33309:172::-;33433:2;33406:15;:24;33422:7;33406:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;33467:7;33463:2;33447:28;;33456:5;33447:28;;;;;;;;;;;;33309:172;;;:::o;31674:1529::-;31771:35;31809:20;31821:7;31809:11;:20::i;:::-;31771:58;;31838:22;31880:13;:18;;;31864:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;31933:12;:10;:12::i;:::-;31909:36;;:20;31921:7;31909:11;:20::i;:::-;:36;;;31864:81;:142;;;;31956:50;31973:13;:18;;;31993:12;:10;:12::i;:::-;31956:16;:50::i;:::-;31864:142;31838:169;;32032:17;32016:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;32164:4;32142:26;;:13;:18;;;:26;;;32126:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;32253:1;32239:16;;:2;:16;;;;32231:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;32306:43;32328:4;32334:2;32338:7;32347:1;32306:21;:43::i;:::-;32406:49;32423:1;32427:7;32436:13;:18;;;32406:8;:49::i;:::-;32494:1;32464:12;:18;32477:4;32464:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32530:1;32502:12;:16;32515:2;32502:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32561:43;;;;;;;;32576:2;32561:43;;;;;;32587:15;32561:43;;;;;32538:11;:20;32550:7;32538:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32832:19;32864:1;32854:7;:11;;;;:::i;:::-;32832:33;;32917:1;32876:43;;:11;:24;32888:11;32876:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;32872:236;;;32934:20;32942:11;32934:7;:20::i;:::-;32930:171;;;32994:97;;;;;;;;33021:13;:18;;;32994:97;;;;;;33052:13;:28;;;32994:97;;;;;32967:11;:24;32979:11;32967:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32930:171;32872:236;33140:7;33136:2;33121:27;;33130:4;33121:27;;;;;;;;;;;;33155:42;33176:4;33182:2;33186:7;33195:1;33155:20;:42::i;:::-;31764:1439;;;31674:1529;;;:::o;25180:240::-;25241:7;25290:1;25273:19;;:5;:19;;;;25257:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;25381:12;:19;25394:5;25381:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;25373:41;;25366:48;;25180:240;;;:::o;25426:606::-;25502:21;;:::i;:::-;25543:16;25551:7;25543;:16::i;:::-;25535:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;25615:26;25663:12;25652:7;:23;25648:93;;25732:1;25717:12;25707:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;25686:47;;25648:93;25754:12;25769:7;25754:22;;25749:212;25786:18;25778:4;:26;25749:212;;25823:31;25857:11;:17;25869:4;25857:17;;;;;;;;;;;25823:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25913:1;25887:28;;:9;:14;;;:28;;;25883:71;;25935:9;25928:16;;;;;;;25883:71;25814:147;25806:6;;;;;:::i;:::-;;;;25749:212;;;;25969:57;;;;;;;;;;:::i;:::-;;;;;;;;25426:606;;;;:::o;39151:191::-;39225:16;39244:6;;;;;;;;;;;39225:25;;39270:8;39261:6;;:17;;;;;;;;;;;;;;;;;;39325:8;39294:40;;39315:8;39294:40;;;;;;;;;;;;39214:128;39151:191;:::o;29733:98::-;29798:27;29808:2;29812:8;29798:27;;;;;;;;;;;;:9;:27::i;:::-;29733:98;;:::o;35024:690::-;35161:4;35178:15;:2;:13;;;:15::i;:::-;35174:535;;;35233:2;35217:36;;;35254:12;:10;:12::i;:::-;35268:4;35274:7;35283:5;35217:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35204:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35465:1;35448:6;:13;:18;35444:215;;;35481:61;;;;;;;;;;:::i;:::-;;;;;;;;35444:215;35627:6;35621:13;35612:6;35608:2;35604:15;35597:38;35204:464;35349:45;;;35339:55;;;:6;:55;;;;35332:62;;;;;35174:535;35697:4;35690:11;;35024:690;;;;;;;:::o;18077:723::-;18133:13;18363:1;18354:5;:10;18350:53;;;18381:10;;;;;;;;;;;;;;;;;;;;;18350:53;18413:12;18428:5;18413:20;;18444:14;18469:78;18484:1;18476:4;:9;18469:78;;18502:8;;;;;:::i;:::-;;;;18533:2;18525:10;;;;;:::i;:::-;;;18469:78;;;18557:19;18589:6;18579:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18557:39;;18607:154;18623:1;18614:5;:10;18607:154;;18651:1;18641:11;;;;;:::i;:::-;;;18718:2;18710:5;:10;;;;:::i;:::-;18697:2;:24;;;;:::i;:::-;18684:39;;18667:6;18674;18667:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;18747:2;18738:11;;;;;:::i;:::-;;;18607:154;;;18785:6;18771:21;;;;;18077:723;;;;:::o;36176:141::-;;;;;:::o;36703:140::-;;;;;:::o;30170:1272::-;30275:20;30298:12;;30275:35;;30339:1;30325:16;;:2;:16;;;;30317:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;30516:21;30524:12;30516:7;:21::i;:::-;30515:22;30507:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;30598:12;30586:8;:24;;30578:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;30658:61;30688:1;30692:2;30696:12;30710:8;30658:21;:61::i;:::-;30728:30;30761:12;:16;30774:2;30761:16;;;;;;;;;;;;;;;30728:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30803:119;;;;;;;;30853:8;30823:11;:19;;;:39;;;;:::i;:::-;30803:119;;;;;;30906:8;30871:11;:24;;;:44;;;;:::i;:::-;30803:119;;;;;30784:12;:16;30797:2;30784:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30957:43;;;;;;;;30972:2;30957:43;;;;;;30983:15;30957:43;;;;;30929:11;:25;30941:12;30929:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31009:20;31032:12;31009:35;;31058:9;31053:281;31077:8;31073:1;:12;31053:281;;;31131:12;31127:2;31106:38;;31123:1;31106:38;;;;;;;;;;;;31171:59;31202:1;31206:2;31210:12;31224:5;31171:22;:59::i;:::-;31153:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;31312:14;;;;;:::i;:::-;;;;31087:3;;;;;:::i;:::-;;;;31053:281;;;;31357:12;31342;:27;;;;31376:60;31405:1;31409:2;31413:12;31427:8;31376:20;:60::i;:::-;30268:1174;;;30170:1272;;;:::o;9179:387::-;9239:4;9447:12;9514:7;9502:20;9494:28;;9557:1;9550:4;:8;9543:15;;;9179:387;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:474::-;7226:6;7234;7283:2;7271:9;7262:7;7258:23;7254:32;7251:119;;;7289:79;;:::i;:::-;7251:119;7409:1;7434:53;7479:7;7470:6;7459:9;7455:22;7434:53;:::i;:::-;7424:63;;7380:117;7536:2;7562:53;7607:7;7598:6;7587:9;7583:22;7562:53;:::i;:::-;7552:63;;7507:118;7158:474;;;;;:::o;7638:118::-;7725:24;7743:5;7725:24;:::i;:::-;7720:3;7713:37;7638:118;;:::o;7762:99::-;7833:21;7848:5;7833:21;:::i;:::-;7828:3;7821:34;7762:99;;:::o;7867:109::-;7948:21;7963:5;7948:21;:::i;:::-;7943:3;7936:34;7867:109;;:::o;7982:360::-;8068:3;8096:38;8128:5;8096:38;:::i;:::-;8150:70;8213:6;8208:3;8150:70;:::i;:::-;8143:77;;8229:52;8274:6;8269:3;8262:4;8255:5;8251:16;8229:52;:::i;:::-;8306:29;8328:6;8306:29;:::i;:::-;8301:3;8297:39;8290:46;;8072:270;7982:360;;;;:::o;8348:364::-;8436:3;8464:39;8497:5;8464:39;:::i;:::-;8519:71;8583:6;8578:3;8519:71;:::i;:::-;8512:78;;8599:52;8644:6;8639:3;8632:4;8625:5;8621:16;8599:52;:::i;:::-;8676:29;8698:6;8676:29;:::i;:::-;8671:3;8667:39;8660:46;;8440:272;8348:364;;;;:::o;8718:377::-;8824:3;8852:39;8885:5;8852:39;:::i;:::-;8907:89;8989:6;8984:3;8907:89;:::i;:::-;8900:96;;9005:52;9050:6;9045:3;9038:4;9031:5;9027:16;9005:52;:::i;:::-;9082:6;9077:3;9073:16;9066:23;;8828:267;8718:377;;;;:::o;9125:845::-;9228:3;9265:5;9259:12;9294:36;9320:9;9294:36;:::i;:::-;9346:89;9428:6;9423:3;9346:89;:::i;:::-;9339:96;;9466:1;9455:9;9451:17;9482:1;9477:137;;;;9628:1;9623:341;;;;9444:520;;9477:137;9561:4;9557:9;9546;9542:25;9537:3;9530:38;9597:6;9592:3;9588:16;9581:23;;9477:137;;9623:341;9690:38;9722:5;9690:38;:::i;:::-;9750:1;9764:154;9778:6;9775:1;9772:13;9764:154;;;9852:7;9846:14;9842:1;9837:3;9833:11;9826:35;9902:1;9893:7;9889:15;9878:26;;9800:4;9797:1;9793:12;9788:17;;9764:154;;;9947:6;9942:3;9938:16;9931:23;;9630:334;;9444:520;;9232:738;;9125:845;;;;:::o;9976:366::-;10118:3;10139:67;10203:2;10198:3;10139:67;:::i;:::-;10132:74;;10215:93;10304:3;10215:93;:::i;:::-;10333:2;10328:3;10324:12;10317:19;;9976:366;;;:::o;10348:::-;10490:3;10511:67;10575:2;10570:3;10511:67;:::i;:::-;10504:74;;10587:93;10676:3;10587:93;:::i;:::-;10705:2;10700:3;10696:12;10689:19;;10348:366;;;:::o;10720:::-;10862:3;10883:67;10947:2;10942:3;10883:67;:::i;:::-;10876:74;;10959:93;11048:3;10959:93;:::i;:::-;11077:2;11072:3;11068:12;11061:19;;10720:366;;;:::o;11092:::-;11234:3;11255:67;11319:2;11314:3;11255:67;:::i;:::-;11248:74;;11331:93;11420:3;11331:93;:::i;:::-;11449:2;11444:3;11440:12;11433:19;;11092:366;;;:::o;11464:::-;11606:3;11627:67;11691:2;11686:3;11627:67;:::i;:::-;11620:74;;11703:93;11792:3;11703:93;:::i;:::-;11821:2;11816:3;11812:12;11805:19;;11464:366;;;:::o;11836:::-;11978:3;11999:67;12063:2;12058:3;11999:67;:::i;:::-;11992:74;;12075:93;12164:3;12075:93;:::i;:::-;12193:2;12188:3;12184:12;12177:19;;11836:366;;;:::o;12208:::-;12350:3;12371:67;12435:2;12430:3;12371:67;:::i;:::-;12364:74;;12447:93;12536:3;12447:93;:::i;:::-;12565:2;12560:3;12556:12;12549:19;;12208:366;;;:::o;12580:::-;12722:3;12743:67;12807:2;12802:3;12743:67;:::i;:::-;12736:74;;12819:93;12908:3;12819:93;:::i;:::-;12937:2;12932:3;12928:12;12921:19;;12580:366;;;:::o;12952:::-;13094:3;13115:67;13179:2;13174:3;13115:67;:::i;:::-;13108:74;;13191:93;13280:3;13191:93;:::i;:::-;13309:2;13304:3;13300:12;13293:19;;12952:366;;;:::o;13324:::-;13466:3;13487:67;13551:2;13546:3;13487:67;:::i;:::-;13480:74;;13563:93;13652:3;13563:93;:::i;:::-;13681:2;13676:3;13672:12;13665:19;;13324:366;;;:::o;13696:::-;13838:3;13859:67;13923:2;13918:3;13859:67;:::i;:::-;13852:74;;13935:93;14024:3;13935:93;:::i;:::-;14053:2;14048:3;14044:12;14037:19;;13696:366;;;:::o;14068:::-;14210:3;14231:67;14295:2;14290:3;14231:67;:::i;:::-;14224:74;;14307:93;14396:3;14307:93;:::i;:::-;14425:2;14420:3;14416:12;14409:19;;14068:366;;;:::o;14440:::-;14582:3;14603:67;14667:2;14662:3;14603:67;:::i;:::-;14596:74;;14679:93;14768:3;14679:93;:::i;:::-;14797:2;14792:3;14788:12;14781:19;;14440:366;;;:::o;14812:::-;14954:3;14975:67;15039:2;15034:3;14975:67;:::i;:::-;14968:74;;15051:93;15140:3;15051:93;:::i;:::-;15169:2;15164:3;15160:12;15153:19;;14812:366;;;:::o;15184:::-;15326:3;15347:67;15411:2;15406:3;15347:67;:::i;:::-;15340:74;;15423:93;15512:3;15423:93;:::i;:::-;15541:2;15536:3;15532:12;15525:19;;15184:366;;;:::o;15556:::-;15698:3;15719:67;15783:2;15778:3;15719:67;:::i;:::-;15712:74;;15795:93;15884:3;15795:93;:::i;:::-;15913:2;15908:3;15904:12;15897:19;;15556:366;;;:::o;15928:400::-;16088:3;16109:84;16191:1;16186:3;16109:84;:::i;:::-;16102:91;;16202:93;16291:3;16202:93;:::i;:::-;16320:1;16315:3;16311:11;16304:18;;15928:400;;;:::o;16334:366::-;16476:3;16497:67;16561:2;16556:3;16497:67;:::i;:::-;16490:74;;16573:93;16662:3;16573:93;:::i;:::-;16691:2;16686:3;16682:12;16675:19;;16334:366;;;:::o;16706:::-;16848:3;16869:67;16933:2;16928:3;16869:67;:::i;:::-;16862:74;;16945:93;17034:3;16945:93;:::i;:::-;17063:2;17058:3;17054:12;17047:19;;16706:366;;;:::o;17078:::-;17220:3;17241:67;17305:2;17300:3;17241:67;:::i;:::-;17234:74;;17317:93;17406:3;17317:93;:::i;:::-;17435:2;17430:3;17426:12;17419:19;;17078:366;;;:::o;17450:::-;17592:3;17613:67;17677:2;17672:3;17613:67;:::i;:::-;17606:74;;17689:93;17778:3;17689:93;:::i;:::-;17807:2;17802:3;17798:12;17791:19;;17450:366;;;:::o;17822:::-;17964:3;17985:67;18049:2;18044:3;17985:67;:::i;:::-;17978:74;;18061:93;18150:3;18061:93;:::i;:::-;18179:2;18174:3;18170:12;18163:19;;17822:366;;;:::o;18194:::-;18336:3;18357:67;18421:2;18416:3;18357:67;:::i;:::-;18350:74;;18433:93;18522:3;18433:93;:::i;:::-;18551:2;18546:3;18542:12;18535:19;;18194:366;;;:::o;18566:::-;18708:3;18729:67;18793:2;18788:3;18729:67;:::i;:::-;18722:74;;18805:93;18894:3;18805:93;:::i;:::-;18923:2;18918:3;18914:12;18907:19;;18566:366;;;:::o;18938:::-;19080:3;19101:67;19165:2;19160:3;19101:67;:::i;:::-;19094:74;;19177:93;19266:3;19177:93;:::i;:::-;19295:2;19290:3;19286:12;19279:19;;18938:366;;;:::o;19310:::-;19452:3;19473:67;19537:2;19532:3;19473:67;:::i;:::-;19466:74;;19549:93;19638:3;19549:93;:::i;:::-;19667:2;19662:3;19658:12;19651:19;;19310:366;;;:::o;19682:::-;19824:3;19845:67;19909:2;19904:3;19845:67;:::i;:::-;19838:74;;19921:93;20010:3;19921:93;:::i;:::-;20039:2;20034:3;20030:12;20023:19;;19682:366;;;:::o;20054:::-;20196:3;20217:67;20281:2;20276:3;20217:67;:::i;:::-;20210:74;;20293:93;20382:3;20293:93;:::i;:::-;20411:2;20406:3;20402:12;20395:19;;20054:366;;;:::o;20426:::-;20568:3;20589:67;20653:2;20648:3;20589:67;:::i;:::-;20582:74;;20665:93;20754:3;20665:93;:::i;:::-;20783:2;20778:3;20774:12;20767:19;;20426:366;;;:::o;20862:1629::-;21017:6;21012:3;21008:16;21112:4;21105:5;21101:16;21095:23;21131:63;21188:4;21183:3;21179:14;21165:12;21131:63;:::i;:::-;21034:170;21296:4;21289:5;21285:16;21279:23;21315:63;21372:4;21367:3;21363:14;21349:12;21315:63;:::i;:::-;21214:174;21476:4;21469:5;21465:16;21459:23;21495:63;21552:4;21547:3;21543:14;21529:12;21495:63;:::i;:::-;21398:170;21658:4;21651:5;21647:16;21641:23;21677:57;21728:4;21723:3;21719:14;21705:12;21677:57;:::i;:::-;21578:166;21833:4;21826:5;21822:16;21816:23;21852:63;21909:4;21904:3;21900:14;21886:12;21852:63;:::i;:::-;21754:171;22024:4;22017:5;22013:16;22007:23;22043:63;22100:4;22095:3;22091:14;22077:12;22043:63;:::i;:::-;21935:181;22204:4;22197:5;22193:16;22187:23;22223:63;22280:4;22275:3;22271:14;22257:12;22223:63;:::i;:::-;22126:170;22392:4;22385:5;22381:16;22375:23;22411:63;22468:4;22463:3;22459:14;22445:12;22411:63;:::i;:::-;22306:178;20986:1505;20862:1629;;:::o;22497:108::-;22574:24;22592:5;22574:24;:::i;:::-;22569:3;22562:37;22497:108;;:::o;22611:118::-;22698:24;22716:5;22698:24;:::i;:::-;22693:3;22686:37;22611:118;;:::o;22735:429::-;22912:3;22934:92;23022:3;23013:6;22934:92;:::i;:::-;22927:99;;23043:95;23134:3;23125:6;23043:95;:::i;:::-;23036:102;;23155:3;23148:10;;22735:429;;;;;:::o;23170:695::-;23448:3;23470:92;23558:3;23549:6;23470:92;:::i;:::-;23463:99;;23579:95;23670:3;23661:6;23579:95;:::i;:::-;23572:102;;23691:148;23835:3;23691:148;:::i;:::-;23684:155;;23856:3;23849:10;;23170:695;;;;;:::o;23871:222::-;23964:4;24002:2;23991:9;23987:18;23979:26;;24015:71;24083:1;24072:9;24068:17;24059:6;24015:71;:::i;:::-;23871:222;;;;:::o;24099:640::-;24294:4;24332:3;24321:9;24317:19;24309:27;;24346:71;24414:1;24403:9;24399:17;24390:6;24346:71;:::i;:::-;24427:72;24495:2;24484:9;24480:18;24471:6;24427:72;:::i;:::-;24509;24577:2;24566:9;24562:18;24553:6;24509:72;:::i;:::-;24628:9;24622:4;24618:20;24613:2;24602:9;24598:18;24591:48;24656:76;24727:4;24718:6;24656:76;:::i;:::-;24648:84;;24099:640;;;;;;;:::o;24745:210::-;24832:4;24870:2;24859:9;24855:18;24847:26;;24883:65;24945:1;24934:9;24930:17;24921:6;24883:65;:::i;:::-;24745:210;;;;:::o;24961:313::-;25074:4;25112:2;25101:9;25097:18;25089:26;;25161:9;25155:4;25151:20;25147:1;25136:9;25132:17;25125:47;25189:78;25262:4;25253:6;25189:78;:::i;:::-;25181:86;;24961:313;;;;:::o;25280:419::-;25446:4;25484:2;25473:9;25469:18;25461:26;;25533:9;25527:4;25523:20;25519:1;25508:9;25504:17;25497:47;25561:131;25687:4;25561:131;:::i;:::-;25553:139;;25280:419;;;:::o;25705:::-;25871:4;25909:2;25898:9;25894:18;25886:26;;25958:9;25952:4;25948:20;25944:1;25933:9;25929:17;25922:47;25986:131;26112:4;25986:131;:::i;:::-;25978:139;;25705:419;;;:::o;26130:::-;26296:4;26334:2;26323:9;26319:18;26311:26;;26383:9;26377:4;26373:20;26369:1;26358:9;26354:17;26347:47;26411:131;26537:4;26411:131;:::i;:::-;26403:139;;26130:419;;;:::o;26555:::-;26721:4;26759:2;26748:9;26744:18;26736:26;;26808:9;26802:4;26798:20;26794:1;26783:9;26779:17;26772:47;26836:131;26962:4;26836:131;:::i;:::-;26828:139;;26555:419;;;:::o;26980:::-;27146:4;27184:2;27173:9;27169:18;27161:26;;27233:9;27227:4;27223:20;27219:1;27208:9;27204:17;27197:47;27261:131;27387:4;27261:131;:::i;:::-;27253:139;;26980:419;;;:::o;27405:::-;27571:4;27609:2;27598:9;27594:18;27586:26;;27658:9;27652:4;27648:20;27644:1;27633:9;27629:17;27622:47;27686:131;27812:4;27686:131;:::i;:::-;27678:139;;27405:419;;;:::o;27830:::-;27996:4;28034:2;28023:9;28019:18;28011:26;;28083:9;28077:4;28073:20;28069:1;28058:9;28054:17;28047:47;28111:131;28237:4;28111:131;:::i;:::-;28103:139;;27830:419;;;:::o;28255:::-;28421:4;28459:2;28448:9;28444:18;28436:26;;28508:9;28502:4;28498:20;28494:1;28483:9;28479:17;28472:47;28536:131;28662:4;28536:131;:::i;:::-;28528:139;;28255:419;;;:::o;28680:::-;28846:4;28884:2;28873:9;28869:18;28861:26;;28933:9;28927:4;28923:20;28919:1;28908:9;28904:17;28897:47;28961:131;29087:4;28961:131;:::i;:::-;28953:139;;28680:419;;;:::o;29105:::-;29271:4;29309:2;29298:9;29294:18;29286:26;;29358:9;29352:4;29348:20;29344:1;29333:9;29329:17;29322:47;29386:131;29512:4;29386:131;:::i;:::-;29378:139;;29105:419;;;:::o;29530:::-;29696:4;29734:2;29723:9;29719:18;29711:26;;29783:9;29777:4;29773:20;29769:1;29758:9;29754:17;29747:47;29811:131;29937:4;29811:131;:::i;:::-;29803:139;;29530:419;;;:::o;29955:::-;30121:4;30159:2;30148:9;30144:18;30136:26;;30208:9;30202:4;30198:20;30194:1;30183:9;30179:17;30172:47;30236:131;30362:4;30236:131;:::i;:::-;30228:139;;29955:419;;;:::o;30380:::-;30546:4;30584:2;30573:9;30569:18;30561:26;;30633:9;30627:4;30623:20;30619:1;30608:9;30604:17;30597:47;30661:131;30787:4;30661:131;:::i;:::-;30653:139;;30380:419;;;:::o;30805:::-;30971:4;31009:2;30998:9;30994:18;30986:26;;31058:9;31052:4;31048:20;31044:1;31033:9;31029:17;31022:47;31086:131;31212:4;31086:131;:::i;:::-;31078:139;;30805:419;;;:::o;31230:::-;31396:4;31434:2;31423:9;31419:18;31411:26;;31483:9;31477:4;31473:20;31469:1;31458:9;31454:17;31447:47;31511:131;31637:4;31511:131;:::i;:::-;31503:139;;31230:419;;;:::o;31655:::-;31821:4;31859:2;31848:9;31844:18;31836:26;;31908:9;31902:4;31898:20;31894:1;31883:9;31879:17;31872:47;31936:131;32062:4;31936:131;:::i;:::-;31928:139;;31655:419;;;:::o;32080:::-;32246:4;32284:2;32273:9;32269:18;32261:26;;32333:9;32327:4;32323:20;32319:1;32308:9;32304:17;32297:47;32361:131;32487:4;32361:131;:::i;:::-;32353:139;;32080:419;;;:::o;32505:::-;32671:4;32709:2;32698:9;32694:18;32686:26;;32758:9;32752:4;32748:20;32744:1;32733:9;32729:17;32722:47;32786:131;32912:4;32786:131;:::i;:::-;32778:139;;32505:419;;;:::o;32930:::-;33096:4;33134:2;33123:9;33119:18;33111:26;;33183:9;33177:4;33173:20;33169:1;33158:9;33154:17;33147:47;33211:131;33337:4;33211:131;:::i;:::-;33203:139;;32930:419;;;:::o;33355:::-;33521:4;33559:2;33548:9;33544:18;33536:26;;33608:9;33602:4;33598:20;33594:1;33583:9;33579:17;33572:47;33636:131;33762:4;33636:131;:::i;:::-;33628:139;;33355:419;;;:::o;33780:::-;33946:4;33984:2;33973:9;33969:18;33961:26;;34033:9;34027:4;34023:20;34019:1;34008:9;34004:17;33997:47;34061:131;34187:4;34061:131;:::i;:::-;34053:139;;33780:419;;;:::o;34205:::-;34371:4;34409:2;34398:9;34394:18;34386:26;;34458:9;34452:4;34448:20;34444:1;34433:9;34429:17;34422:47;34486:131;34612:4;34486:131;:::i;:::-;34478:139;;34205:419;;;:::o;34630:::-;34796:4;34834:2;34823:9;34819:18;34811:26;;34883:9;34877:4;34873:20;34869:1;34858:9;34854:17;34847:47;34911:131;35037:4;34911:131;:::i;:::-;34903:139;;34630:419;;;:::o;35055:::-;35221:4;35259:2;35248:9;35244:18;35236:26;;35308:9;35302:4;35298:20;35294:1;35283:9;35279:17;35272:47;35336:131;35462:4;35336:131;:::i;:::-;35328:139;;35055:419;;;:::o;35480:::-;35646:4;35684:2;35673:9;35669:18;35661:26;;35733:9;35727:4;35723:20;35719:1;35708:9;35704:17;35697:47;35761:131;35887:4;35761:131;:::i;:::-;35753:139;;35480:419;;;:::o;35905:::-;36071:4;36109:2;36098:9;36094:18;36086:26;;36158:9;36152:4;36148:20;36144:1;36133:9;36129:17;36122:47;36186:131;36312:4;36186:131;:::i;:::-;36178:139;;35905:419;;;:::o;36330:::-;36496:4;36534:2;36523:9;36519:18;36511:26;;36583:9;36577:4;36573:20;36569:1;36558:9;36554:17;36547:47;36611:131;36737:4;36611:131;:::i;:::-;36603:139;;36330:419;;;:::o;36755:::-;36921:4;36959:2;36948:9;36944:18;36936:26;;37008:9;37002:4;36998:20;36994:1;36983:9;36979:17;36972:47;37036:131;37162:4;37036:131;:::i;:::-;37028:139;;36755:419;;;:::o;37180:339::-;37331:4;37369:3;37358:9;37354:19;37346:27;;37383:129;37509:1;37498:9;37494:17;37485:6;37383:129;:::i;:::-;37180:339;;;;:::o;37525:222::-;37618:4;37656:2;37645:9;37641:18;37633:26;;37669:71;37737:1;37726:9;37722:17;37713:6;37669:71;:::i;:::-;37525:222;;;;:::o;37753:129::-;37787:6;37814:20;;:::i;:::-;37804:30;;37843:33;37871:4;37863:6;37843:33;:::i;:::-;37753:129;;;:::o;37888:75::-;37921:6;37954:2;37948:9;37938:19;;37888:75;:::o;37969:307::-;38030:4;38120:18;38112:6;38109:30;38106:56;;;38142:18;;:::i;:::-;38106:56;38180:29;38202:6;38180:29;:::i;:::-;38172:37;;38264:4;38258;38254:15;38246:23;;37969:307;;;:::o;38282:308::-;38344:4;38434:18;38426:6;38423:30;38420:56;;;38456:18;;:::i;:::-;38420:56;38494:29;38516:6;38494:29;:::i;:::-;38486:37;;38578:4;38572;38568:15;38560:23;;38282:308;;;:::o;38596:141::-;38645:4;38668:3;38660:11;;38691:3;38688:1;38681:14;38725:4;38722:1;38712:18;38704:26;;38596:141;;;:::o;38743:98::-;38794:6;38828:5;38822:12;38812:22;;38743:98;;;:::o;38847:99::-;38899:6;38933:5;38927:12;38917:22;;38847:99;;;:::o;38952:168::-;39035:11;39069:6;39064:3;39057:19;39109:4;39104:3;39100:14;39085:29;;38952:168;;;;:::o;39126:169::-;39210:11;39244:6;39239:3;39232:19;39284:4;39279:3;39275:14;39260:29;;39126:169;;;;:::o;39301:148::-;39403:11;39440:3;39425:18;;39301:148;;;;:::o;39455:273::-;39495:3;39514:20;39532:1;39514:20;:::i;:::-;39509:25;;39548:20;39566:1;39548:20;:::i;:::-;39543:25;;39670:1;39634:34;39630:42;39627:1;39624:49;39621:75;;;39676:18;;:::i;:::-;39621:75;39720:1;39717;39713:9;39706:16;;39455:273;;;;:::o;39734:305::-;39774:3;39793:20;39811:1;39793:20;:::i;:::-;39788:25;;39827:20;39845:1;39827:20;:::i;:::-;39822:25;;39981:1;39913:66;39909:74;39906:1;39903:81;39900:107;;;39987:18;;:::i;:::-;39900:107;40031:1;40028;40024:9;40017:16;;39734:305;;;;:::o;40045:185::-;40085:1;40102:20;40120:1;40102:20;:::i;:::-;40097:25;;40136:20;40154:1;40136:20;:::i;:::-;40131:25;;40175:1;40165:35;;40180:18;;:::i;:::-;40165:35;40222:1;40219;40215:9;40210:14;;40045:185;;;;:::o;40236:348::-;40276:7;40299:20;40317:1;40299:20;:::i;:::-;40294:25;;40333:20;40351:1;40333:20;:::i;:::-;40328:25;;40521:1;40453:66;40449:74;40446:1;40443:81;40438:1;40431:9;40424:17;40420:105;40417:131;;;40528:18;;:::i;:::-;40417:131;40576:1;40573;40569:9;40558:20;;40236:348;;;;:::o;40590:191::-;40630:4;40650:20;40668:1;40650:20;:::i;:::-;40645:25;;40684:20;40702:1;40684:20;:::i;:::-;40679:25;;40723:1;40720;40717:8;40714:34;;;40728:18;;:::i;:::-;40714:34;40773:1;40770;40766:9;40758:17;;40590:191;;;;:::o;40787:::-;40827:4;40847:20;40865:1;40847:20;:::i;:::-;40842:25;;40881:20;40899:1;40881:20;:::i;:::-;40876:25;;40920:1;40917;40914:8;40911:34;;;40925:18;;:::i;:::-;40911:34;40970:1;40967;40963:9;40955:17;;40787:191;;;;:::o;40984:96::-;41021:7;41050:24;41068:5;41050:24;:::i;:::-;41039:35;;40984:96;;;:::o;41086:90::-;41120:7;41163:5;41156:13;41149:21;41138:32;;41086:90;;;:::o;41182:149::-;41218:7;41258:66;41251:5;41247:78;41236:89;;41182:149;;;:::o;41337:118::-;41374:7;41414:34;41407:5;41403:46;41392:57;;41337:118;;;:::o;41461:126::-;41498:7;41538:42;41531:5;41527:54;41516:65;;41461:126;;;:::o;41593:77::-;41630:7;41659:5;41648:16;;41593:77;;;:::o;41676:154::-;41760:6;41755:3;41750;41737:30;41822:1;41813:6;41808:3;41804:16;41797:27;41676:154;;;:::o;41836:307::-;41904:1;41914:113;41928:6;41925:1;41922:13;41914:113;;;42013:1;42008:3;42004:11;41998:18;41994:1;41989:3;41985:11;41978:39;41950:2;41947:1;41943:10;41938:15;;41914:113;;;42045:6;42042:1;42039:13;42036:101;;;42125:1;42116:6;42111:3;42107:16;42100:27;42036:101;41885:258;41836:307;;;:::o;42149:171::-;42188:3;42211:24;42229:5;42211:24;:::i;:::-;42202:33;;42257:4;42250:5;42247:15;42244:41;;;42265:18;;:::i;:::-;42244:41;42312:1;42305:5;42301:13;42294:20;;42149:171;;;:::o;42326:320::-;42370:6;42407:1;42401:4;42397:12;42387:22;;42454:1;42448:4;42444:12;42475:18;42465:81;;42531:4;42523:6;42519:17;42509:27;;42465:81;42593:2;42585:6;42582:14;42562:18;42559:38;42556:84;;;42612:18;;:::i;:::-;42556:84;42377:269;42326:320;;;:::o;42652:281::-;42735:27;42757:4;42735:27;:::i;:::-;42727:6;42723:40;42865:6;42853:10;42850:22;42829:18;42817:10;42814:34;42811:62;42808:88;;;42876:18;;:::i;:::-;42808:88;42916:10;42912:2;42905:22;42695:238;42652:281;;:::o;42939:233::-;42978:3;43001:24;43019:5;43001:24;:::i;:::-;42992:33;;43047:66;43040:5;43037:77;43034:103;;;43117:18;;:::i;:::-;43034:103;43164:1;43157:5;43153:13;43146:20;;42939:233;;;:::o;43178:176::-;43210:1;43227:20;43245:1;43227:20;:::i;:::-;43222:25;;43261:20;43279:1;43261:20;:::i;:::-;43256:25;;43300:1;43290:35;;43305:18;;:::i;:::-;43290:35;43346:1;43343;43339:9;43334:14;;43178:176;;;;:::o;43360:180::-;43408:77;43405:1;43398:88;43505:4;43502:1;43495:15;43529:4;43526:1;43519:15;43546:180;43594:77;43591:1;43584:88;43691:4;43688:1;43681:15;43715:4;43712:1;43705:15;43732:180;43780:77;43777:1;43770:88;43877:4;43874:1;43867:15;43901:4;43898:1;43891:15;43918:180;43966:77;43963:1;43956:88;44063:4;44060:1;44053:15;44087:4;44084:1;44077:15;44104:180;44152:77;44149:1;44142:88;44249:4;44246:1;44239:15;44273:4;44270:1;44263:15;44290:180;44338:77;44335:1;44328:88;44435:4;44432:1;44425:15;44459:4;44456:1;44449:15;44476:117;44585:1;44582;44575:12;44599:117;44708:1;44705;44698:12;44722:117;44831:1;44828;44821:12;44845:117;44954:1;44951;44944:12;44968:102;45009:6;45060:2;45056:7;45051:2;45044:5;45040:14;45036:28;45026:38;;44968:102;;;:::o;45076:221::-;45216:34;45212:1;45204:6;45200:14;45193:58;45285:4;45280:2;45272:6;45268:15;45261:29;45076:221;:::o;45303:169::-;45443:21;45439:1;45431:6;45427:14;45420:45;45303:169;:::o;45478:166::-;45618:18;45614:1;45606:6;45602:14;45595:42;45478:166;:::o;45650:225::-;45790:34;45786:1;45778:6;45774:14;45767:58;45859:8;45854:2;45846:6;45842:15;45835:33;45650:225;:::o;45881:229::-;46021:34;46017:1;46009:6;46005:14;45998:58;46090:12;46085:2;46077:6;46073:15;46066:37;45881:229;:::o;46116:181::-;46256:33;46252:1;46244:6;46240:14;46233:57;46116:181;:::o;46303:222::-;46443:34;46439:1;46431:6;46427:14;46420:58;46512:5;46507:2;46499:6;46495:15;46488:30;46303:222;:::o;46531:224::-;46671:34;46667:1;46659:6;46655:14;46648:58;46740:7;46735:2;46727:6;46723:15;46716:32;46531:224;:::o;46761:236::-;46901:34;46897:1;46889:6;46885:14;46878:58;46970:19;46965:2;46957:6;46953:15;46946:44;46761:236;:::o;47003:171::-;47143:23;47139:1;47131:6;47127:14;47120:47;47003:171;:::o;47180:244::-;47320:34;47316:1;47308:6;47304:14;47297:58;47389:27;47384:2;47376:6;47372:15;47365:52;47180:244;:::o;47430:177::-;47570:29;47566:1;47558:6;47554:14;47547:53;47430:177;:::o;47613:230::-;47753:34;47749:1;47741:6;47737:14;47730:58;47822:13;47817:2;47809:6;47805:15;47798:38;47613:230;:::o;47849:171::-;47989:23;47985:1;47977:6;47973:14;47966:47;47849:171;:::o;48026:167::-;48166:19;48162:1;48154:6;48150:14;48143:43;48026:167;:::o;48199:225::-;48339:34;48335:1;48327:6;48323:14;48316:58;48408:8;48403:2;48395:6;48391:15;48384:33;48199:225;:::o;48430:155::-;48570:7;48566:1;48558:6;48554:14;48547:31;48430:155;:::o;48591:176::-;48731:28;48727:1;48719:6;48715:14;48708:52;48591:176;:::o;48773:237::-;48913:34;48909:1;48901:6;48897:14;48890:58;48982:20;48977:2;48969:6;48965:15;48958:45;48773:237;:::o;49016:174::-;49156:26;49152:1;49144:6;49140:14;49133:50;49016:174;:::o;49196:221::-;49336:34;49332:1;49324:6;49320:14;49313:58;49405:4;49400:2;49392:6;49388:15;49381:29;49196:221;:::o;49423:238::-;49563:34;49559:1;49551:6;49547:14;49540:58;49632:21;49627:2;49619:6;49615:15;49608:46;49423:238;:::o;49667:179::-;49807:31;49803:1;49795:6;49791:14;49784:55;49667:179;:::o;49852:220::-;49992:34;49988:1;49980:6;49976:14;49969:58;50061:3;50056:2;50048:6;50044:15;50037:28;49852:220;:::o;50078:233::-;50218:34;50214:1;50206:6;50202:14;50195:58;50287:16;50282:2;50274:6;50270:15;50263:41;50078:233;:::o;50317:234::-;50457:34;50453:1;50445:6;50441:14;50434:58;50526:17;50521:2;50513:6;50509:15;50502:42;50317:234;:::o;50557:172::-;50697:24;50693:1;50685:6;50681:14;50674:48;50557:172;:::o;50735:232::-;50875:34;50871:1;50863:6;50859:14;50852:58;50944:15;50939:2;50931:6;50927:15;50920:40;50735:232;:::o;50973:221::-;51113:34;51109:1;51101:6;51097:14;51090:58;51182:4;51177:2;51169:6;51165:15;51158:29;50973:221;:::o;51200:122::-;51273:24;51291:5;51273:24;:::i;:::-;51266:5;51263:35;51253:63;;51312:1;51309;51302:12;51253:63;51200:122;:::o;51328:116::-;51398:21;51413:5;51398:21;:::i;:::-;51391:5;51388:32;51378:60;;51434:1;51431;51424:12;51378:60;51328:116;:::o;51450:120::-;51522:23;51539:5;51522:23;:::i;:::-;51515:5;51512:34;51502:62;;51560:1;51557;51550:12;51502:62;51450:120;:::o;51576:122::-;51649:24;51667:5;51649:24;:::i;:::-;51642:5;51639:35;51629:63;;51688:1;51685;51678:12;51629:63;51576:122;:::o

Swarm Source

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