ETH Price: $3,038.90 (+0.50%)
Gas: 3 Gwei

Token

Every Ape Matters (EAM)
 

Overview

Max Total Supply

1,543 EAM

Holders

381

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
cheapart.eth
Balance
5 EAM
0x3eF418118D1deCF42226580305Fd4f5CCadCCfA6
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Everyapematters

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-06-23
*/

// 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 Everyapematters is ERC721A, Ownable {

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

    uint256 public tokenPrice = 5000000000000000; //0.005 ETH

    uint public maxTokensPerTx = 5;

    uint public defaultTokensPerTx = 3;

    uint256 public MAX_TOKENS = 5555;

    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("Every Ape Matters", "EAM", 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 Everyapematters.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"}]

60c060405260008055600060075560405180606001604052806035815260200162005a1960359139600990805190602001906200003e929190620002f2565b506611c37937e08000600a556005600b556003600c556115b3600d556001600e60006101000a81548160ff0219169083151502179055506000600f5560146010556000601160006101000a81548160ff02191690836001811115620000a857620000a76200047b565b5b0217905550348015620000ba57600080fd5b506040518060400160405280601181526020017f457665727920417065204d6174746572730000000000000000000000000000008152506040518060400160405280600381526020017f45414d00000000000000000000000000000000000000000000000000000000008152506064600d546000811162000172576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001699062000412565b60405180910390fd5b60008211620001b8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001af90620003f0565b60405180910390fd5b8360019080519060200190620001d0929190620002f2565b508260029080519060200190620001e9929190620002f2565b508160a081815250508060808181525050505050506200021e620002126200022460201b60201c565b6200022c60201b60201c565b62000577565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003009062000445565b90600052602060002090601f01602090048101928262000324576000855562000370565b82601f106200033f57805160ff191683800117855562000370565b8280016001018555821562000370579182015b828111156200036f57825182559160200191906001019062000352565b5b5090506200037f919062000383565b5090565b5b808211156200039e57600081600090555060010162000384565b5090565b6000620003b160278362000434565b9150620003be82620004d9565b604082019050919050565b6000620003d8602e8362000434565b9150620003e58262000528565b604082019050919050565b600060208201905081810360008301526200040b81620003a2565b9050919050565b600060208201905081810360008301526200042d81620003c9565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200045e57607f821691505b60208210811415620004755762000474620004aa565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b60805160a051615471620005a860003960008181612cb101528181612cda01526133090152600050506154716000f3fe6080604052600436106102725760003560e01c806370a082311161014f578063b88d4fde116100c1578063d7224ba01161007a578063d7224ba014610929578063dc33e68114610954578063e985e9c514610991578063eb8d2444146109ce578063f2fde38b146109f9578063f47c84c514610a2257610272565b8063b88d4fde1461083c578063b9bed05e14610865578063c4d7e2f81461088e578063c634d032146108a5578063c87b56dd146108c1578063d0a04eac146108fe57610272565b806385c8cc741161011357806385c8cc74146107405780638da5cb5b146107695780638f69ae6f14610794578063900c71f5146107bf57806395d89b41146107e8578063a22cb4651461081357610272565b806370a082311461066f578063715018a6146106ac57806378cf19e9146106c35780637b8940cc146106ec5780637ff9b5961461071557610272565b806342842e0e116101e85780635e307a48116101ac5780635e307a481461055f5780636352211e1461058a578063681c8bac146105c75780636a61e5fc146105f25780636c0360eb1461061b5780636f8b44b01461064657610272565b806342842e0e1461046a578063495e1eba146104935780634df8bb45146104bc5780634f6ccce7146104f957806355f804b31461053657610272565b8063205c28781161023a578063205c28781461037057806323b872dd146103995780632b57cfbb146103c25780632f745c59146103ff57806334918dfd1461043c5780633ccfd60b1461045357610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063095ea7b31461031c57806318160ddd14610345575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190613b6a565b610a4d565b6040516102ab919061433a565b60405180910390f35b3480156102c057600080fd5b506102c9610b97565b6040516102d69190614355565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190613c0d565b610c29565b60405161031391906142d3565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e9190613b2a565b610cae565b005b34801561035157600080fd5b5061035a610dc7565b6040516103679190614713565b60405180910390f35b34801561037c57600080fd5b5061039760048036038101906103929190613b2a565b610dd0565b005b3480156103a557600080fd5b506103c060048036038101906103bb9190613a14565b610eda565b005b3480156103ce57600080fd5b506103e960048036038101906103e49190613c3a565b610eea565b6040516103f69190614713565b60405180910390f35b34801561040b57600080fd5b5061042660048036038101906104219190613b2a565b610f5b565b6040516104339190614713565b60405180910390f35b34801561044857600080fd5b50610451611159565b005b34801561045f57600080fd5b50610468611201565b005b34801561047657600080fd5b50610491600480360381019061048c9190613a14565b6112cc565b005b34801561049f57600080fd5b506104ba60048036038101906104b59190613c0d565b6112ec565b005b3480156104c857600080fd5b506104e360048036038101906104de91906139a7565b611372565b6040516104f091906146f7565b60405180910390f35b34801561050557600080fd5b50610520600480360381019061051b9190613c0d565b611421565b60405161052d9190614713565b60405180910390f35b34801561054257600080fd5b5061055d60048036038101906105589190613bc4565b611474565b005b34801561056b57600080fd5b5061057461150a565b6040516105819190614713565b60405180910390f35b34801561059657600080fd5b506105b160048036038101906105ac9190613c0d565b611510565b6040516105be91906142d3565b60405180910390f35b3480156105d357600080fd5b506105dc611526565b6040516105e99190614713565b60405180910390f35b3480156105fe57600080fd5b5061061960048036038101906106149190613c0d565b61152c565b005b34801561062757600080fd5b506106306115b2565b60405161063d9190614355565b60405180910390f35b34801561065257600080fd5b5061066d60048036038101906106689190613c0d565b611640565b005b34801561067b57600080fd5b50610696600480360381019061069191906139a7565b6116c6565b6040516106a39190614713565b60405180910390f35b3480156106b857600080fd5b506106c16117af565b005b3480156106cf57600080fd5b506106ea60048036038101906106e59190613b2a565b611837565b005b3480156106f857600080fd5b50610713600480360381019061070e9190613c0d565b611918565b005b34801561072157600080fd5b5061072a6119b9565b6040516107379190614713565b60405180910390f35b34801561074c57600080fd5b5061076760048036038101906107629190613c0d565b6119bf565b005b34801561077557600080fd5b5061077e611a45565b60405161078b91906142d3565b60405180910390f35b3480156107a057600080fd5b506107a9611a6f565b6040516107b69190614713565b60405180910390f35b3480156107cb57600080fd5b506107e660048036038101906107e19190613c0d565b611a75565b005b3480156107f457600080fd5b506107fd611b59565b60405161080a9190614355565b60405180910390f35b34801561081f57600080fd5b5061083a60048036038101906108359190613aea565b611beb565b005b34801561084857600080fd5b50610863600480360381019061085e9190613a67565b611d6c565b005b34801561087157600080fd5b5061088c60048036038101906108879190613c0d565b611dc8565b005b34801561089a57600080fd5b506108a3611e4e565b005b6108bf60048036038101906108ba9190613c0d565b611ed4565b005b3480156108cd57600080fd5b506108e860048036038101906108e39190613c0d565b612185565b6040516108f59190614355565b60405180910390f35b34801561090a57600080fd5b506109136122c7565b6040516109209190614713565b60405180910390f35b34801561093557600080fd5b5061093e6122cd565b60405161094b9190614713565b60405180910390f35b34801561096057600080fd5b5061097b600480360381019061097691906139a7565b6122d3565b6040516109889190614713565b60405180910390f35b34801561099d57600080fd5b506109b860048036038101906109b391906139d4565b6122e5565b6040516109c5919061433a565b60405180910390f35b3480156109da57600080fd5b506109e3612379565b6040516109f0919061433a565b60405180910390f35b348015610a0557600080fd5b50610a206004803603810190610a1b91906139a7565b61238c565b005b348015610a2e57600080fd5b50610a37612484565b604051610a449190614713565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b1857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b8057507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b905750610b8f8261248a565b5b9050919050565b606060018054610ba690614a98565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd290614a98565b8015610c1f5780601f10610bf457610100808354040283529160200191610c1f565b820191906000526020600020905b815481529060010190602001808311610c0257829003601f168201915b5050505050905090565b6000610c34826124f4565b610c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6a906146b7565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cb982611510565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d21906145d7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d49612501565b73ffffffffffffffffffffffffffffffffffffffff161480610d785750610d7781610d72612501565b6122e5565b5b610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dae906144b7565b60405180910390fd5b610dc2838383612509565b505050565b60008054905090565b610dd8612501565b73ffffffffffffffffffffffffffffffffffffffff16610df6611a45565b73ffffffffffffffffffffffffffffffffffffffff1614610e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4390614497565b60405180910390fd5b47811115610e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8690614417565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610ed5573d6000803e3d6000fd5b505050565b610ee58383836125bb565b505050565b600080610ef6836122d3565b1115610f1157600a5483610f0a91906148da565b9050610f55565b601054831115610f3257600a54601054610f2b91906148da565b9050610f55565b6010548311610f5057600a5483610f4991906148da565b9050610f55565b600090505b92915050565b6000610f66836116c6565b8210610fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9e90614377565b60405180910390fd5b6000610fb1610dc7565b905060008060005b83811015611117576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146110ab57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561110357868414156110f4578195505050505050611153565b83806110ff90614afb565b9450505b50808061110f90614afb565b915050610fb9565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114a90614657565b60405180910390fd5b92915050565b611161612501565b73ffffffffffffffffffffffffffffffffffffffff1661117f611a45565b73ffffffffffffffffffffffffffffffffffffffff16146111d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cc90614497565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b611209612501565b73ffffffffffffffffffffffffffffffffffffffff16611227611a45565b73ffffffffffffffffffffffffffffffffffffffff161461127d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127490614497565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156112c8573d6000803e3d6000fd5b5050565b6112e783838360405180602001604052806000815250611d6c565b505050565b6112f4612501565b73ffffffffffffffffffffffffffffffffffffffff16611312611a45565b73ffffffffffffffffffffffffffffffffffffffff1614611368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135f90614497565b60405180910390fd5b80600c8190555050565b61137a61373a565b604051806101000160405280600a548152602001600b548152602001600d548152602001600e60009054906101000a900460ff16151581526020016113bd610dc7565b81526020016010548152602001600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161461140c5761140784612b74565b61140f565b60005b8152602001600c548152509050919050565b600061142b610dc7565b821061146c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146390614437565b60405180910390fd5b819050919050565b61147c612501565b73ffffffffffffffffffffffffffffffffffffffff1661149a611a45565b73ffffffffffffffffffffffffffffffffffffffff16146114f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e790614497565b60405180910390fd5b8060099080519060200190611506929190613781565b5050565b600b5481565b600061151b82612c5d565b600001519050919050565b600c5481565b611534612501565b73ffffffffffffffffffffffffffffffffffffffff16611552611a45565b73ffffffffffffffffffffffffffffffffffffffff16146115a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159f90614497565b60405180910390fd5b80600a8190555050565b600980546115bf90614a98565b80601f01602080910402602001604051908101604052809291908181526020018280546115eb90614a98565b80156116385780601f1061160d57610100808354040283529160200191611638565b820191906000526020600020905b81548152906001019060200180831161161b57829003601f168201915b505050505081565b611648612501565b73ffffffffffffffffffffffffffffffffffffffff16611666611a45565b73ffffffffffffffffffffffffffffffffffffffff16146116bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b390614497565b60405180910390fd5b80600d8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611737576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172e906144f7565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6117b7612501565b73ffffffffffffffffffffffffffffffffffffffff166117d5611a45565b73ffffffffffffffffffffffffffffffffffffffff161461182b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182290614497565b60405180910390fd5b6118356000612e60565b565b61183f612501565b73ffffffffffffffffffffffffffffffffffffffff1661185d611a45565b73ffffffffffffffffffffffffffffffffffffffff16146118b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118aa90614497565b60405180910390fd5b600d54816118bf610dc7565b6118c99190614853565b111561190a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611901906144d7565b60405180910390fd5b6119148282612f26565b5050565b611920612501565b73ffffffffffffffffffffffffffffffffffffffff1661193e611a45565b73ffffffffffffffffffffffffffffffffffffffff1614611994576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198b90614497565b60405180910390fd5b80600f819055506001600e60006101000a81548160ff02191690831515021790555050565b600a5481565b6119c7612501565b73ffffffffffffffffffffffffffffffffffffffff166119e5611a45565b73ffffffffffffffffffffffffffffffffffffffff1614611a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3290614497565b60405180910390fd5b8060108190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b611a7d612501565b73ffffffffffffffffffffffffffffffffffffffff16611a9b611a45565b73ffffffffffffffffffffffffffffffffffffffff1614611af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae890614497565b60405180910390fd5b6002811415611b2a576001601160006101000a81548160ff02191690836001811115611b2057611b1f614bd3565b5b0217905550611b56565b6000601160006101000a81548160ff02191690836001811115611b5057611b4f614bd3565b5b02179055505b50565b606060028054611b6890614a98565b80601f0160208091040260200160405190810160405280929190818152602001828054611b9490614a98565b8015611be15780601f10611bb657610100808354040283529160200191611be1565b820191906000526020600020905b815481529060010190602001808311611bc457829003601f168201915b5050505050905090565b611bf3612501565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5890614577565b60405180910390fd5b8060066000611c6e612501565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d1b612501565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d60919061433a565b60405180910390a35050565b611d778484846125bb565b611d8384848484612f44565b611dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db9906145f7565b60405180910390fd5b50505050565b611dd0612501565b73ffffffffffffffffffffffffffffffffffffffff16611dee611a45565b73ffffffffffffffffffffffffffffffffffffffff1614611e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3b90614497565b60405180910390fd5b80600b8190555050565b611e56612501565b73ffffffffffffffffffffffffffffffffffffffff16611e74611a45565b73ffffffffffffffffffffffffffffffffffffffff1614611eca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec190614497565b60405180910390fd5b6000600f81905550565b600e60009054906101000a900460ff16611f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1a90614397565b60405180910390fd5b600b54811115611f68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5f906145b7565b60405180910390fd5b60008111611fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa290614697565b60405180910390fd5b600d5481611fb7610dc7565b611fc19190614853565b1115612002576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff990614537565b60405180910390fd5b6000600f5411801561201d5750600061201a336122d3565b11155b1561205457600f54811061203157600f5490505b61203b3382612f26565b80600f546120499190614968565b600f81905550612182565b600061205f33612b74565b11156120ba57600a548161207391906148da565b3410156120b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ac906143b7565b60405180910390fd5b612177565b60105481111561211b57600a546010546120d491906148da565b341015612116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210d906143b7565b60405180910390fd5b612176565b601054811161217557600a548161213291906148da565b341015612174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216b906143b7565b60405180910390fd5b5b5b5b6121813382612f26565b5b50565b6060612190826124f4565b6121cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c690614517565b60405180910390fd5b6001808111156121e2576121e1614bd3565b5b601160009054906101000a900460ff16600181111561220457612203614bd3565b5b14156122685760006009805461221990614a98565b9050116122355760405180602001604052806000815250612261565b6009612240836130db565b604051602001612251929190614280565b6040516020818303038152906040525b90506122c2565b60006009805461227790614a98565b90501161229357604051806020016040528060008152506122bf565b600961229e836130db565b6040516020016122af9291906142a4565b6040516020818303038152906040525b90505b919050565b60105481565b60075481565b60006122de82612b74565b9050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e60009054906101000a900460ff1681565b612394612501565b73ffffffffffffffffffffffffffffffffffffffff166123b2611a45565b73ffffffffffffffffffffffffffffffffffffffff1614612408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ff90614497565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246f906143d7565b60405180910390fd5b61248181612e60565b50565b600d5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006125c682612c5d565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166125ed612501565b73ffffffffffffffffffffffffffffffffffffffff1614806126495750612612612501565b73ffffffffffffffffffffffffffffffffffffffff1661263184610c29565b73ffffffffffffffffffffffffffffffffffffffff16145b806126655750612664826000015161265f612501565b6122e5565b5b9050806126a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269e90614597565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612719576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271090614557565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612789576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278090614457565b60405180910390fd5b612796858585600161323c565b6127a66000848460000151612509565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166128149190614934565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166128b8919061480d565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846129be9190614853565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612b0457612a34816124f4565b15612b03576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b6c8686866001613242565b505050505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bdc90614477565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b612c65613807565b612c6e826124f4565b612cad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ca4906143f7565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008310612d115760017f000000000000000000000000000000000000000000000000000000000000000084612d049190614968565b612d0e9190614853565b90505b60008390505b818110612e1f576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612e0b57809350505050612e5b565b508080612e1790614a6e565b915050612d17565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5290614677565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612f40828260405180602001604052806000815250613248565b5050565b6000612f658473ffffffffffffffffffffffffffffffffffffffff16613727565b156130ce578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f8e612501565b8786866040518563ffffffff1660e01b8152600401612fb094939291906142ee565b602060405180830381600087803b158015612fca57600080fd5b505af1925050508015612ffb57506040513d601f19601f82011682018060405250810190612ff89190613b97565b60015b61307e573d806000811461302b576040519150601f19603f3d011682016040523d82523d6000602084013e613030565b606091505b50600081511415613076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306d906145f7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506130d3565b600190505b949350505050565b60606000821415613123576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613237565b600082905060005b6000821461315557808061313e90614afb565b915050600a8261314e91906148a9565b915061312b565b60008167ffffffffffffffff81111561317157613170614c60565b5b6040519080825280601f01601f1916602001820160405280156131a35781602001600182028036833780820191505090505b5090505b60008514613230576001826131bc9190614968565b9150600a856131cb9190614b44565b60306131d79190614853565b60f81b8183815181106131ed576131ec614c31565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561322991906148a9565b94506131a7565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156132be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132b590614637565b60405180910390fd5b6132c7816124f4565b15613307576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132fe90614617565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000083111561336a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613361906146d7565b60405180910390fd5b613377600085838661323c565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151613474919061480d565b6fffffffffffffffffffffffffffffffff16815260200185836020015161349b919061480d565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561370a57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46136aa6000888488612f44565b6136e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136e0906145f7565b60405180910390fd5b81806136f490614afb565b925050808061370290614afb565b915050613639565b508060008190555061371f6000878588613242565b505050505050565b600080823b905060008111915050919050565b604051806101000160405280600081526020016000815260200160008152602001600015158152602001600081526020016000815260200160008152602001600081525090565b82805461378d90614a98565b90600052602060002090601f0160209004810192826137af57600085556137f6565b82601f106137c857805160ff19168380011785556137f6565b828001600101855582156137f6579182015b828111156137f55782518255916020019190600101906137da565b5b5090506138039190613841565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561385a576000816000905550600101613842565b5090565b600061387161386c84614753565b61472e565b90508281526020810184848401111561388d5761388c614c94565b5b613898848285614a2c565b509392505050565b60006138b36138ae84614784565b61472e565b9050828152602081018484840111156138cf576138ce614c94565b5b6138da848285614a2c565b509392505050565b6000813590506138f1816153df565b92915050565b600081359050613906816153f6565b92915050565b60008135905061391b8161540d565b92915050565b6000815190506139308161540d565b92915050565b600082601f83011261394b5761394a614c8f565b5b813561395b84826020860161385e565b91505092915050565b600082601f83011261397957613978614c8f565b5b81356139898482602086016138a0565b91505092915050565b6000813590506139a181615424565b92915050565b6000602082840312156139bd576139bc614c9e565b5b60006139cb848285016138e2565b91505092915050565b600080604083850312156139eb576139ea614c9e565b5b60006139f9858286016138e2565b9250506020613a0a858286016138e2565b9150509250929050565b600080600060608486031215613a2d57613a2c614c9e565b5b6000613a3b868287016138e2565b9350506020613a4c868287016138e2565b9250506040613a5d86828701613992565b9150509250925092565b60008060008060808587031215613a8157613a80614c9e565b5b6000613a8f878288016138e2565b9450506020613aa0878288016138e2565b9350506040613ab187828801613992565b925050606085013567ffffffffffffffff811115613ad257613ad1614c99565b5b613ade87828801613936565b91505092959194509250565b60008060408385031215613b0157613b00614c9e565b5b6000613b0f858286016138e2565b9250506020613b20858286016138f7565b9150509250929050565b60008060408385031215613b4157613b40614c9e565b5b6000613b4f858286016138e2565b9250506020613b6085828601613992565b9150509250929050565b600060208284031215613b8057613b7f614c9e565b5b6000613b8e8482850161390c565b91505092915050565b600060208284031215613bad57613bac614c9e565b5b6000613bbb84828501613921565b91505092915050565b600060208284031215613bda57613bd9614c9e565b5b600082013567ffffffffffffffff811115613bf857613bf7614c99565b5b613c0484828501613964565b91505092915050565b600060208284031215613c2357613c22614c9e565b5b6000613c3184828501613992565b91505092915050565b60008060408385031215613c5157613c50614c9e565b5b6000613c5f85828601613992565b9250506020613c70858286016138e2565b9150509250929050565b613c838161499c565b82525050565b613c92816149ae565b82525050565b613ca1816149ae565b82525050565b6000613cb2826147ca565b613cbc81856147e0565b9350613ccc818560208601614a3b565b613cd581614ca3565b840191505092915050565b6000613ceb826147d5565b613cf581856147f1565b9350613d05818560208601614a3b565b613d0e81614ca3565b840191505092915050565b6000613d24826147d5565b613d2e8185614802565b9350613d3e818560208601614a3b565b80840191505092915050565b60008154613d5781614a98565b613d618186614802565b94506001821660008114613d7c5760018114613d8d57613dc0565b60ff19831686528186019350613dc0565b613d96856147b5565b60005b83811015613db857815481890152600182019150602081019050613d99565b838801955050505b50505092915050565b6000613dd66022836147f1565b9150613de182614cb4565b604082019050919050565b6000613df96013836147f1565b9150613e0482614d03565b602082019050919050565b6000613e1c6010836147f1565b9150613e2782614d2c565b602082019050919050565b6000613e3f6026836147f1565b9150613e4a82614d55565b604082019050919050565b6000613e62602a836147f1565b9150613e6d82614da4565b604082019050919050565b6000613e85601f836147f1565b9150613e9082614df3565b602082019050919050565b6000613ea86023836147f1565b9150613eb382614e1c565b604082019050919050565b6000613ecb6025836147f1565b9150613ed682614e6b565b604082019050919050565b6000613eee6031836147f1565b9150613ef982614eba565b604082019050919050565b6000613f116015836147f1565b9150613f1c82614f09565b602082019050919050565b6000613f346039836147f1565b9150613f3f82614f32565b604082019050919050565b6000613f57601b836147f1565b9150613f6282614f81565b602082019050919050565b6000613f7a602b836147f1565b9150613f8582614faa565b604082019050919050565b6000613f9d6015836147f1565b9150613fa882614ff9565b602082019050919050565b6000613fc06011836147f1565b9150613fcb82615022565b602082019050919050565b6000613fe36026836147f1565b9150613fee8261504b565b604082019050919050565b6000614006600583614802565b91506140118261509a565b600582019050919050565b6000614029601a836147f1565b9150614034826150c3565b602082019050919050565b600061404c6032836147f1565b9150614057826150ec565b604082019050919050565b600061406f6018836147f1565b915061407a8261513b565b602082019050919050565b60006140926022836147f1565b915061409d82615164565b604082019050919050565b60006140b56033836147f1565b91506140c0826151b3565b604082019050919050565b60006140d8601d836147f1565b91506140e382615202565b602082019050919050565b60006140fb6021836147f1565b91506141068261522b565b604082019050919050565b600061411e602e836147f1565b91506141298261527a565b604082019050919050565b6000614141602f836147f1565b915061414c826152c9565b604082019050919050565b60006141646016836147f1565b915061416f82615318565b602082019050919050565b6000614187602d836147f1565b915061419282615341565b604082019050919050565b60006141aa6022836147f1565b91506141b582615390565b604082019050919050565b610100820160008201516141d76000850182614262565b5060208201516141ea6020850182614262565b5060408201516141fd6040850182614262565b5060608201516142106060850182613c89565b5060808201516142236080850182614262565b5060a082015161423660a0850182614262565b5060c082015161424960c0850182614262565b5060e082015161425c60e0850182614262565b50505050565b61426b81614a22565b82525050565b61427a81614a22565b82525050565b600061428c8285613d4a565b91506142988284613d19565b91508190509392505050565b60006142b08285613d4a565b91506142bc8284613d19565b91506142c782613ff9565b91508190509392505050565b60006020820190506142e86000830184613c7a565b92915050565b60006080820190506143036000830187613c7a565b6143106020830186613c7a565b61431d6040830185614271565b818103606083015261432f8184613ca7565b905095945050505050565b600060208201905061434f6000830184613c98565b92915050565b6000602082019050818103600083015261436f8184613ce0565b905092915050565b6000602082019050818103600083015261439081613dc9565b9050919050565b600060208201905081810360008301526143b081613dec565b9050919050565b600060208201905081810360008301526143d081613e0f565b9050919050565b600060208201905081810360008301526143f081613e32565b9050919050565b6000602082019050818103600083015261441081613e55565b9050919050565b6000602082019050818103600083015261443081613e78565b9050919050565b6000602082019050818103600083015261445081613e9b565b9050919050565b6000602082019050818103600083015261447081613ebe565b9050919050565b6000602082019050818103600083015261449081613ee1565b9050919050565b600060208201905081810360008301526144b081613f04565b9050919050565b600060208201905081810360008301526144d081613f27565b9050919050565b600060208201905081810360008301526144f081613f4a565b9050919050565b6000602082019050818103600083015261451081613f6d565b9050919050565b6000602082019050818103600083015261453081613f90565b9050919050565b6000602082019050818103600083015261455081613fb3565b9050919050565b6000602082019050818103600083015261457081613fd6565b9050919050565b600060208201905081810360008301526145908161401c565b9050919050565b600060208201905081810360008301526145b08161403f565b9050919050565b600060208201905081810360008301526145d081614062565b9050919050565b600060208201905081810360008301526145f081614085565b9050919050565b60006020820190508181036000830152614610816140a8565b9050919050565b60006020820190508181036000830152614630816140cb565b9050919050565b60006020820190508181036000830152614650816140ee565b9050919050565b6000602082019050818103600083015261467081614111565b9050919050565b6000602082019050818103600083015261469081614134565b9050919050565b600060208201905081810360008301526146b081614157565b9050919050565b600060208201905081810360008301526146d08161417a565b9050919050565b600060208201905081810360008301526146f08161419d565b9050919050565b60006101008201905061470d60008301846141c0565b92915050565b60006020820190506147286000830184614271565b92915050565b6000614738614749565b90506147448282614aca565b919050565b6000604051905090565b600067ffffffffffffffff82111561476e5761476d614c60565b5b61477782614ca3565b9050602081019050919050565b600067ffffffffffffffff82111561479f5761479e614c60565b5b6147a882614ca3565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614818826149e6565b9150614823836149e6565b9250826fffffffffffffffffffffffffffffffff0382111561484857614847614b75565b5b828201905092915050565b600061485e82614a22565b915061486983614a22565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561489e5761489d614b75565b5b828201905092915050565b60006148b482614a22565b91506148bf83614a22565b9250826148cf576148ce614ba4565b5b828204905092915050565b60006148e582614a22565b91506148f083614a22565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561492957614928614b75565b5b828202905092915050565b600061493f826149e6565b915061494a836149e6565b92508282101561495d5761495c614b75565b5b828203905092915050565b600061497382614a22565b915061497e83614a22565b92508282101561499157614990614b75565b5b828203905092915050565b60006149a782614a02565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614a59578082015181840152602081019050614a3e565b83811115614a68576000848401525b50505050565b6000614a7982614a22565b91506000821415614a8d57614a8c614b75565b5b600182039050919050565b60006002820490506001821680614ab057607f821691505b60208210811415614ac457614ac3614c02565b5b50919050565b614ad382614ca3565b810181811067ffffffffffffffff82111715614af257614af1614c60565b5b80604052505050565b6000614b0682614a22565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614b3957614b38614b75565b5b600182019050919050565b6000614b4f82614a22565b9150614b5a83614a22565b925082614b6a57614b69614ba4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206d7573742062652061637469766500000000000000000000000000600082015250565b7f4e6f7420656e6f75676820657468657200000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4578636565642062616c616e6365206f66207468697320636f6e747261637400600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f596f7520617265206e6f7420746865206f776e65720000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f457863656564206d617820737570706c79206f6620746f6b656e730000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f457863656564206d617820737570706c79000000000000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f457863656564206d617820746f6b656e73207065722074780000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f4d757374206d696e74206174206c65617374206f6e6500000000000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6153e88161499c565b81146153f357600080fd5b50565b6153ff816149ae565b811461540a57600080fd5b50565b615416816149ba565b811461542157600080fd5b50565b61542d81614a22565b811461543857600080fd5b5056fea264697066735822122051040d3dcf3e3e27cfcc7ac5df9204f3bf43da3e97b75568656aa433a3f0949d64736f6c6343000807003368747470733a2f2f6e667473657276696365732e73332e616d617a6f6e6177732e636f6d2f65766572796170656d6174746572732f

Deployed Bytecode

0x6080604052600436106102725760003560e01c806370a082311161014f578063b88d4fde116100c1578063d7224ba01161007a578063d7224ba014610929578063dc33e68114610954578063e985e9c514610991578063eb8d2444146109ce578063f2fde38b146109f9578063f47c84c514610a2257610272565b8063b88d4fde1461083c578063b9bed05e14610865578063c4d7e2f81461088e578063c634d032146108a5578063c87b56dd146108c1578063d0a04eac146108fe57610272565b806385c8cc741161011357806385c8cc74146107405780638da5cb5b146107695780638f69ae6f14610794578063900c71f5146107bf57806395d89b41146107e8578063a22cb4651461081357610272565b806370a082311461066f578063715018a6146106ac57806378cf19e9146106c35780637b8940cc146106ec5780637ff9b5961461071557610272565b806342842e0e116101e85780635e307a48116101ac5780635e307a481461055f5780636352211e1461058a578063681c8bac146105c75780636a61e5fc146105f25780636c0360eb1461061b5780636f8b44b01461064657610272565b806342842e0e1461046a578063495e1eba146104935780634df8bb45146104bc5780634f6ccce7146104f957806355f804b31461053657610272565b8063205c28781161023a578063205c28781461037057806323b872dd146103995780632b57cfbb146103c25780632f745c59146103ff57806334918dfd1461043c5780633ccfd60b1461045357610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063095ea7b31461031c57806318160ddd14610345575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190613b6a565b610a4d565b6040516102ab919061433a565b60405180910390f35b3480156102c057600080fd5b506102c9610b97565b6040516102d69190614355565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190613c0d565b610c29565b60405161031391906142d3565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e9190613b2a565b610cae565b005b34801561035157600080fd5b5061035a610dc7565b6040516103679190614713565b60405180910390f35b34801561037c57600080fd5b5061039760048036038101906103929190613b2a565b610dd0565b005b3480156103a557600080fd5b506103c060048036038101906103bb9190613a14565b610eda565b005b3480156103ce57600080fd5b506103e960048036038101906103e49190613c3a565b610eea565b6040516103f69190614713565b60405180910390f35b34801561040b57600080fd5b5061042660048036038101906104219190613b2a565b610f5b565b6040516104339190614713565b60405180910390f35b34801561044857600080fd5b50610451611159565b005b34801561045f57600080fd5b50610468611201565b005b34801561047657600080fd5b50610491600480360381019061048c9190613a14565b6112cc565b005b34801561049f57600080fd5b506104ba60048036038101906104b59190613c0d565b6112ec565b005b3480156104c857600080fd5b506104e360048036038101906104de91906139a7565b611372565b6040516104f091906146f7565b60405180910390f35b34801561050557600080fd5b50610520600480360381019061051b9190613c0d565b611421565b60405161052d9190614713565b60405180910390f35b34801561054257600080fd5b5061055d60048036038101906105589190613bc4565b611474565b005b34801561056b57600080fd5b5061057461150a565b6040516105819190614713565b60405180910390f35b34801561059657600080fd5b506105b160048036038101906105ac9190613c0d565b611510565b6040516105be91906142d3565b60405180910390f35b3480156105d357600080fd5b506105dc611526565b6040516105e99190614713565b60405180910390f35b3480156105fe57600080fd5b5061061960048036038101906106149190613c0d565b61152c565b005b34801561062757600080fd5b506106306115b2565b60405161063d9190614355565b60405180910390f35b34801561065257600080fd5b5061066d60048036038101906106689190613c0d565b611640565b005b34801561067b57600080fd5b50610696600480360381019061069191906139a7565b6116c6565b6040516106a39190614713565b60405180910390f35b3480156106b857600080fd5b506106c16117af565b005b3480156106cf57600080fd5b506106ea60048036038101906106e59190613b2a565b611837565b005b3480156106f857600080fd5b50610713600480360381019061070e9190613c0d565b611918565b005b34801561072157600080fd5b5061072a6119b9565b6040516107379190614713565b60405180910390f35b34801561074c57600080fd5b5061076760048036038101906107629190613c0d565b6119bf565b005b34801561077557600080fd5b5061077e611a45565b60405161078b91906142d3565b60405180910390f35b3480156107a057600080fd5b506107a9611a6f565b6040516107b69190614713565b60405180910390f35b3480156107cb57600080fd5b506107e660048036038101906107e19190613c0d565b611a75565b005b3480156107f457600080fd5b506107fd611b59565b60405161080a9190614355565b60405180910390f35b34801561081f57600080fd5b5061083a60048036038101906108359190613aea565b611beb565b005b34801561084857600080fd5b50610863600480360381019061085e9190613a67565b611d6c565b005b34801561087157600080fd5b5061088c60048036038101906108879190613c0d565b611dc8565b005b34801561089a57600080fd5b506108a3611e4e565b005b6108bf60048036038101906108ba9190613c0d565b611ed4565b005b3480156108cd57600080fd5b506108e860048036038101906108e39190613c0d565b612185565b6040516108f59190614355565b60405180910390f35b34801561090a57600080fd5b506109136122c7565b6040516109209190614713565b60405180910390f35b34801561093557600080fd5b5061093e6122cd565b60405161094b9190614713565b60405180910390f35b34801561096057600080fd5b5061097b600480360381019061097691906139a7565b6122d3565b6040516109889190614713565b60405180910390f35b34801561099d57600080fd5b506109b860048036038101906109b391906139d4565b6122e5565b6040516109c5919061433a565b60405180910390f35b3480156109da57600080fd5b506109e3612379565b6040516109f0919061433a565b60405180910390f35b348015610a0557600080fd5b50610a206004803603810190610a1b91906139a7565b61238c565b005b348015610a2e57600080fd5b50610a37612484565b604051610a449190614713565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b1857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b8057507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b905750610b8f8261248a565b5b9050919050565b606060018054610ba690614a98565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd290614a98565b8015610c1f5780601f10610bf457610100808354040283529160200191610c1f565b820191906000526020600020905b815481529060010190602001808311610c0257829003601f168201915b5050505050905090565b6000610c34826124f4565b610c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6a906146b7565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cb982611510565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d21906145d7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d49612501565b73ffffffffffffffffffffffffffffffffffffffff161480610d785750610d7781610d72612501565b6122e5565b5b610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dae906144b7565b60405180910390fd5b610dc2838383612509565b505050565b60008054905090565b610dd8612501565b73ffffffffffffffffffffffffffffffffffffffff16610df6611a45565b73ffffffffffffffffffffffffffffffffffffffff1614610e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4390614497565b60405180910390fd5b47811115610e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8690614417565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610ed5573d6000803e3d6000fd5b505050565b610ee58383836125bb565b505050565b600080610ef6836122d3565b1115610f1157600a5483610f0a91906148da565b9050610f55565b601054831115610f3257600a54601054610f2b91906148da565b9050610f55565b6010548311610f5057600a5483610f4991906148da565b9050610f55565b600090505b92915050565b6000610f66836116c6565b8210610fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9e90614377565b60405180910390fd5b6000610fb1610dc7565b905060008060005b83811015611117576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146110ab57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561110357868414156110f4578195505050505050611153565b83806110ff90614afb565b9450505b50808061110f90614afb565b915050610fb9565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114a90614657565b60405180910390fd5b92915050565b611161612501565b73ffffffffffffffffffffffffffffffffffffffff1661117f611a45565b73ffffffffffffffffffffffffffffffffffffffff16146111d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cc90614497565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b611209612501565b73ffffffffffffffffffffffffffffffffffffffff16611227611a45565b73ffffffffffffffffffffffffffffffffffffffff161461127d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127490614497565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156112c8573d6000803e3d6000fd5b5050565b6112e783838360405180602001604052806000815250611d6c565b505050565b6112f4612501565b73ffffffffffffffffffffffffffffffffffffffff16611312611a45565b73ffffffffffffffffffffffffffffffffffffffff1614611368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135f90614497565b60405180910390fd5b80600c8190555050565b61137a61373a565b604051806101000160405280600a548152602001600b548152602001600d548152602001600e60009054906101000a900460ff16151581526020016113bd610dc7565b81526020016010548152602001600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161461140c5761140784612b74565b61140f565b60005b8152602001600c548152509050919050565b600061142b610dc7565b821061146c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146390614437565b60405180910390fd5b819050919050565b61147c612501565b73ffffffffffffffffffffffffffffffffffffffff1661149a611a45565b73ffffffffffffffffffffffffffffffffffffffff16146114f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e790614497565b60405180910390fd5b8060099080519060200190611506929190613781565b5050565b600b5481565b600061151b82612c5d565b600001519050919050565b600c5481565b611534612501565b73ffffffffffffffffffffffffffffffffffffffff16611552611a45565b73ffffffffffffffffffffffffffffffffffffffff16146115a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159f90614497565b60405180910390fd5b80600a8190555050565b600980546115bf90614a98565b80601f01602080910402602001604051908101604052809291908181526020018280546115eb90614a98565b80156116385780601f1061160d57610100808354040283529160200191611638565b820191906000526020600020905b81548152906001019060200180831161161b57829003601f168201915b505050505081565b611648612501565b73ffffffffffffffffffffffffffffffffffffffff16611666611a45565b73ffffffffffffffffffffffffffffffffffffffff16146116bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b390614497565b60405180910390fd5b80600d8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611737576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172e906144f7565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6117b7612501565b73ffffffffffffffffffffffffffffffffffffffff166117d5611a45565b73ffffffffffffffffffffffffffffffffffffffff161461182b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182290614497565b60405180910390fd5b6118356000612e60565b565b61183f612501565b73ffffffffffffffffffffffffffffffffffffffff1661185d611a45565b73ffffffffffffffffffffffffffffffffffffffff16146118b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118aa90614497565b60405180910390fd5b600d54816118bf610dc7565b6118c99190614853565b111561190a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611901906144d7565b60405180910390fd5b6119148282612f26565b5050565b611920612501565b73ffffffffffffffffffffffffffffffffffffffff1661193e611a45565b73ffffffffffffffffffffffffffffffffffffffff1614611994576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198b90614497565b60405180910390fd5b80600f819055506001600e60006101000a81548160ff02191690831515021790555050565b600a5481565b6119c7612501565b73ffffffffffffffffffffffffffffffffffffffff166119e5611a45565b73ffffffffffffffffffffffffffffffffffffffff1614611a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3290614497565b60405180910390fd5b8060108190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b611a7d612501565b73ffffffffffffffffffffffffffffffffffffffff16611a9b611a45565b73ffffffffffffffffffffffffffffffffffffffff1614611af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae890614497565b60405180910390fd5b6002811415611b2a576001601160006101000a81548160ff02191690836001811115611b2057611b1f614bd3565b5b0217905550611b56565b6000601160006101000a81548160ff02191690836001811115611b5057611b4f614bd3565b5b02179055505b50565b606060028054611b6890614a98565b80601f0160208091040260200160405190810160405280929190818152602001828054611b9490614a98565b8015611be15780601f10611bb657610100808354040283529160200191611be1565b820191906000526020600020905b815481529060010190602001808311611bc457829003601f168201915b5050505050905090565b611bf3612501565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5890614577565b60405180910390fd5b8060066000611c6e612501565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d1b612501565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d60919061433a565b60405180910390a35050565b611d778484846125bb565b611d8384848484612f44565b611dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db9906145f7565b60405180910390fd5b50505050565b611dd0612501565b73ffffffffffffffffffffffffffffffffffffffff16611dee611a45565b73ffffffffffffffffffffffffffffffffffffffff1614611e44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3b90614497565b60405180910390fd5b80600b8190555050565b611e56612501565b73ffffffffffffffffffffffffffffffffffffffff16611e74611a45565b73ffffffffffffffffffffffffffffffffffffffff1614611eca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec190614497565b60405180910390fd5b6000600f81905550565b600e60009054906101000a900460ff16611f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1a90614397565b60405180910390fd5b600b54811115611f68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5f906145b7565b60405180910390fd5b60008111611fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa290614697565b60405180910390fd5b600d5481611fb7610dc7565b611fc19190614853565b1115612002576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff990614537565b60405180910390fd5b6000600f5411801561201d5750600061201a336122d3565b11155b1561205457600f54811061203157600f5490505b61203b3382612f26565b80600f546120499190614968565b600f81905550612182565b600061205f33612b74565b11156120ba57600a548161207391906148da565b3410156120b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ac906143b7565b60405180910390fd5b612177565b60105481111561211b57600a546010546120d491906148da565b341015612116576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210d906143b7565b60405180910390fd5b612176565b601054811161217557600a548161213291906148da565b341015612174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216b906143b7565b60405180910390fd5b5b5b5b6121813382612f26565b5b50565b6060612190826124f4565b6121cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c690614517565b60405180910390fd5b6001808111156121e2576121e1614bd3565b5b601160009054906101000a900460ff16600181111561220457612203614bd3565b5b14156122685760006009805461221990614a98565b9050116122355760405180602001604052806000815250612261565b6009612240836130db565b604051602001612251929190614280565b6040516020818303038152906040525b90506122c2565b60006009805461227790614a98565b90501161229357604051806020016040528060008152506122bf565b600961229e836130db565b6040516020016122af9291906142a4565b6040516020818303038152906040525b90505b919050565b60105481565b60075481565b60006122de82612b74565b9050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e60009054906101000a900460ff1681565b612394612501565b73ffffffffffffffffffffffffffffffffffffffff166123b2611a45565b73ffffffffffffffffffffffffffffffffffffffff1614612408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ff90614497565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612478576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246f906143d7565b60405180910390fd5b61248181612e60565b50565b600d5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006125c682612c5d565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166125ed612501565b73ffffffffffffffffffffffffffffffffffffffff1614806126495750612612612501565b73ffffffffffffffffffffffffffffffffffffffff1661263184610c29565b73ffffffffffffffffffffffffffffffffffffffff16145b806126655750612664826000015161265f612501565b6122e5565b5b9050806126a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269e90614597565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612719576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271090614557565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612789576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278090614457565b60405180910390fd5b612796858585600161323c565b6127a66000848460000151612509565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166128149190614934565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166128b8919061480d565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846129be9190614853565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612b0457612a34816124f4565b15612b03576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b6c8686866001613242565b505050505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bdc90614477565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b612c65613807565b612c6e826124f4565b612cad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ca4906143f7565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000648310612d115760017f000000000000000000000000000000000000000000000000000000000000006484612d049190614968565b612d0e9190614853565b90505b60008390505b818110612e1f576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612e0b57809350505050612e5b565b508080612e1790614a6e565b915050612d17565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5290614677565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612f40828260405180602001604052806000815250613248565b5050565b6000612f658473ffffffffffffffffffffffffffffffffffffffff16613727565b156130ce578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f8e612501565b8786866040518563ffffffff1660e01b8152600401612fb094939291906142ee565b602060405180830381600087803b158015612fca57600080fd5b505af1925050508015612ffb57506040513d601f19601f82011682018060405250810190612ff89190613b97565b60015b61307e573d806000811461302b576040519150601f19603f3d011682016040523d82523d6000602084013e613030565b606091505b50600081511415613076576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306d906145f7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506130d3565b600190505b949350505050565b60606000821415613123576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613237565b600082905060005b6000821461315557808061313e90614afb565b915050600a8261314e91906148a9565b915061312b565b60008167ffffffffffffffff81111561317157613170614c60565b5b6040519080825280601f01601f1916602001820160405280156131a35781602001600182028036833780820191505090505b5090505b60008514613230576001826131bc9190614968565b9150600a856131cb9190614b44565b60306131d79190614853565b60f81b8183815181106131ed576131ec614c31565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561322991906148a9565b94506131a7565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156132be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132b590614637565b60405180910390fd5b6132c7816124f4565b15613307576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132fe90614617565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000006483111561336a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613361906146d7565b60405180910390fd5b613377600085838661323c565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151613474919061480d565b6fffffffffffffffffffffffffffffffff16815260200185836020015161349b919061480d565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561370a57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46136aa6000888488612f44565b6136e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136e0906145f7565b60405180910390fd5b81806136f490614afb565b925050808061370290614afb565b915050613639565b508060008190555061371f6000878588613242565b505050505050565b600080823b905060008111915050919050565b604051806101000160405280600081526020016000815260200160008152602001600015158152602001600081526020016000815260200160008152602001600081525090565b82805461378d90614a98565b90600052602060002090601f0160209004810192826137af57600085556137f6565b82601f106137c857805160ff19168380011785556137f6565b828001600101855582156137f6579182015b828111156137f55782518255916020019190600101906137da565b5b5090506138039190613841565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561385a576000816000905550600101613842565b5090565b600061387161386c84614753565b61472e565b90508281526020810184848401111561388d5761388c614c94565b5b613898848285614a2c565b509392505050565b60006138b36138ae84614784565b61472e565b9050828152602081018484840111156138cf576138ce614c94565b5b6138da848285614a2c565b509392505050565b6000813590506138f1816153df565b92915050565b600081359050613906816153f6565b92915050565b60008135905061391b8161540d565b92915050565b6000815190506139308161540d565b92915050565b600082601f83011261394b5761394a614c8f565b5b813561395b84826020860161385e565b91505092915050565b600082601f83011261397957613978614c8f565b5b81356139898482602086016138a0565b91505092915050565b6000813590506139a181615424565b92915050565b6000602082840312156139bd576139bc614c9e565b5b60006139cb848285016138e2565b91505092915050565b600080604083850312156139eb576139ea614c9e565b5b60006139f9858286016138e2565b9250506020613a0a858286016138e2565b9150509250929050565b600080600060608486031215613a2d57613a2c614c9e565b5b6000613a3b868287016138e2565b9350506020613a4c868287016138e2565b9250506040613a5d86828701613992565b9150509250925092565b60008060008060808587031215613a8157613a80614c9e565b5b6000613a8f878288016138e2565b9450506020613aa0878288016138e2565b9350506040613ab187828801613992565b925050606085013567ffffffffffffffff811115613ad257613ad1614c99565b5b613ade87828801613936565b91505092959194509250565b60008060408385031215613b0157613b00614c9e565b5b6000613b0f858286016138e2565b9250506020613b20858286016138f7565b9150509250929050565b60008060408385031215613b4157613b40614c9e565b5b6000613b4f858286016138e2565b9250506020613b6085828601613992565b9150509250929050565b600060208284031215613b8057613b7f614c9e565b5b6000613b8e8482850161390c565b91505092915050565b600060208284031215613bad57613bac614c9e565b5b6000613bbb84828501613921565b91505092915050565b600060208284031215613bda57613bd9614c9e565b5b600082013567ffffffffffffffff811115613bf857613bf7614c99565b5b613c0484828501613964565b91505092915050565b600060208284031215613c2357613c22614c9e565b5b6000613c3184828501613992565b91505092915050565b60008060408385031215613c5157613c50614c9e565b5b6000613c5f85828601613992565b9250506020613c70858286016138e2565b9150509250929050565b613c838161499c565b82525050565b613c92816149ae565b82525050565b613ca1816149ae565b82525050565b6000613cb2826147ca565b613cbc81856147e0565b9350613ccc818560208601614a3b565b613cd581614ca3565b840191505092915050565b6000613ceb826147d5565b613cf581856147f1565b9350613d05818560208601614a3b565b613d0e81614ca3565b840191505092915050565b6000613d24826147d5565b613d2e8185614802565b9350613d3e818560208601614a3b565b80840191505092915050565b60008154613d5781614a98565b613d618186614802565b94506001821660008114613d7c5760018114613d8d57613dc0565b60ff19831686528186019350613dc0565b613d96856147b5565b60005b83811015613db857815481890152600182019150602081019050613d99565b838801955050505b50505092915050565b6000613dd66022836147f1565b9150613de182614cb4565b604082019050919050565b6000613df96013836147f1565b9150613e0482614d03565b602082019050919050565b6000613e1c6010836147f1565b9150613e2782614d2c565b602082019050919050565b6000613e3f6026836147f1565b9150613e4a82614d55565b604082019050919050565b6000613e62602a836147f1565b9150613e6d82614da4565b604082019050919050565b6000613e85601f836147f1565b9150613e9082614df3565b602082019050919050565b6000613ea86023836147f1565b9150613eb382614e1c565b604082019050919050565b6000613ecb6025836147f1565b9150613ed682614e6b565b604082019050919050565b6000613eee6031836147f1565b9150613ef982614eba565b604082019050919050565b6000613f116015836147f1565b9150613f1c82614f09565b602082019050919050565b6000613f346039836147f1565b9150613f3f82614f32565b604082019050919050565b6000613f57601b836147f1565b9150613f6282614f81565b602082019050919050565b6000613f7a602b836147f1565b9150613f8582614faa565b604082019050919050565b6000613f9d6015836147f1565b9150613fa882614ff9565b602082019050919050565b6000613fc06011836147f1565b9150613fcb82615022565b602082019050919050565b6000613fe36026836147f1565b9150613fee8261504b565b604082019050919050565b6000614006600583614802565b91506140118261509a565b600582019050919050565b6000614029601a836147f1565b9150614034826150c3565b602082019050919050565b600061404c6032836147f1565b9150614057826150ec565b604082019050919050565b600061406f6018836147f1565b915061407a8261513b565b602082019050919050565b60006140926022836147f1565b915061409d82615164565b604082019050919050565b60006140b56033836147f1565b91506140c0826151b3565b604082019050919050565b60006140d8601d836147f1565b91506140e382615202565b602082019050919050565b60006140fb6021836147f1565b91506141068261522b565b604082019050919050565b600061411e602e836147f1565b91506141298261527a565b604082019050919050565b6000614141602f836147f1565b915061414c826152c9565b604082019050919050565b60006141646016836147f1565b915061416f82615318565b602082019050919050565b6000614187602d836147f1565b915061419282615341565b604082019050919050565b60006141aa6022836147f1565b91506141b582615390565b604082019050919050565b610100820160008201516141d76000850182614262565b5060208201516141ea6020850182614262565b5060408201516141fd6040850182614262565b5060608201516142106060850182613c89565b5060808201516142236080850182614262565b5060a082015161423660a0850182614262565b5060c082015161424960c0850182614262565b5060e082015161425c60e0850182614262565b50505050565b61426b81614a22565b82525050565b61427a81614a22565b82525050565b600061428c8285613d4a565b91506142988284613d19565b91508190509392505050565b60006142b08285613d4a565b91506142bc8284613d19565b91506142c782613ff9565b91508190509392505050565b60006020820190506142e86000830184613c7a565b92915050565b60006080820190506143036000830187613c7a565b6143106020830186613c7a565b61431d6040830185614271565b818103606083015261432f8184613ca7565b905095945050505050565b600060208201905061434f6000830184613c98565b92915050565b6000602082019050818103600083015261436f8184613ce0565b905092915050565b6000602082019050818103600083015261439081613dc9565b9050919050565b600060208201905081810360008301526143b081613dec565b9050919050565b600060208201905081810360008301526143d081613e0f565b9050919050565b600060208201905081810360008301526143f081613e32565b9050919050565b6000602082019050818103600083015261441081613e55565b9050919050565b6000602082019050818103600083015261443081613e78565b9050919050565b6000602082019050818103600083015261445081613e9b565b9050919050565b6000602082019050818103600083015261447081613ebe565b9050919050565b6000602082019050818103600083015261449081613ee1565b9050919050565b600060208201905081810360008301526144b081613f04565b9050919050565b600060208201905081810360008301526144d081613f27565b9050919050565b600060208201905081810360008301526144f081613f4a565b9050919050565b6000602082019050818103600083015261451081613f6d565b9050919050565b6000602082019050818103600083015261453081613f90565b9050919050565b6000602082019050818103600083015261455081613fb3565b9050919050565b6000602082019050818103600083015261457081613fd6565b9050919050565b600060208201905081810360008301526145908161401c565b9050919050565b600060208201905081810360008301526145b08161403f565b9050919050565b600060208201905081810360008301526145d081614062565b9050919050565b600060208201905081810360008301526145f081614085565b9050919050565b60006020820190508181036000830152614610816140a8565b9050919050565b60006020820190508181036000830152614630816140cb565b9050919050565b60006020820190508181036000830152614650816140ee565b9050919050565b6000602082019050818103600083015261467081614111565b9050919050565b6000602082019050818103600083015261469081614134565b9050919050565b600060208201905081810360008301526146b081614157565b9050919050565b600060208201905081810360008301526146d08161417a565b9050919050565b600060208201905081810360008301526146f08161419d565b9050919050565b60006101008201905061470d60008301846141c0565b92915050565b60006020820190506147286000830184614271565b92915050565b6000614738614749565b90506147448282614aca565b919050565b6000604051905090565b600067ffffffffffffffff82111561476e5761476d614c60565b5b61477782614ca3565b9050602081019050919050565b600067ffffffffffffffff82111561479f5761479e614c60565b5b6147a882614ca3565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614818826149e6565b9150614823836149e6565b9250826fffffffffffffffffffffffffffffffff0382111561484857614847614b75565b5b828201905092915050565b600061485e82614a22565b915061486983614a22565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561489e5761489d614b75565b5b828201905092915050565b60006148b482614a22565b91506148bf83614a22565b9250826148cf576148ce614ba4565b5b828204905092915050565b60006148e582614a22565b91506148f083614a22565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561492957614928614b75565b5b828202905092915050565b600061493f826149e6565b915061494a836149e6565b92508282101561495d5761495c614b75565b5b828203905092915050565b600061497382614a22565b915061497e83614a22565b92508282101561499157614990614b75565b5b828203905092915050565b60006149a782614a02565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614a59578082015181840152602081019050614a3e565b83811115614a68576000848401525b50505050565b6000614a7982614a22565b91506000821415614a8d57614a8c614b75565b5b600182039050919050565b60006002820490506001821680614ab057607f821691505b60208210811415614ac457614ac3614c02565b5b50919050565b614ad382614ca3565b810181811067ffffffffffffffff82111715614af257614af1614c60565b5b80604052505050565b6000614b0682614a22565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614b3957614b38614b75565b5b600182019050919050565b6000614b4f82614a22565b9150614b5a83614a22565b925082614b6a57614b69614ba4565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206d7573742062652061637469766500000000000000000000000000600082015250565b7f4e6f7420656e6f75676820657468657200000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4578636565642062616c616e6365206f66207468697320636f6e747261637400600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f596f7520617265206e6f7420746865206f776e65720000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f457863656564206d617820737570706c79206f6620746f6b656e730000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f457863656564206d617820737570706c79000000000000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f457863656564206d617820746f6b656e73207065722074780000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f4d757374206d696e74206174206c65617374206f6e6500000000000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6153e88161499c565b81146153f357600080fd5b50565b6153ff816149ae565b811461540a57600080fd5b50565b615416816149ba565b811461542157600080fd5b50565b61542d81614a22565b811461543857600080fd5b5056fea264697066735822122051040d3dcf3e3e27cfcc7ac5df9204f3bf43da3e97b75568656aa433a3f0949d64736f6c63430008070033

Deployed Bytecode Sourcemap

39349:6167:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24537:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26263:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27797:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27360:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23098:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41096:198;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28647:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42022:437;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23729:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41654:89;;;;;;;;;;;;;:::i;:::-;;40947:140;;;;;;;;;;;;;:::i;:::-;;28852:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45381:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40406:533;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23261:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41548:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39556:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26086:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39595:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43769:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39403:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44998:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24963:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38495:103;;;;;;;;;;;;;:::i;:::-;;41303:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41751:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39491:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45229:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37855:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39719:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44526:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26418:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28065:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29072:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45105:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41926:88;;;;;;;;;;;;;:::i;:::-;;42533:1228;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43884:634;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39852:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33487:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44876:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28402:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39679:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38753:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39638:32;;;;;;;;;;;;;:::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;41096:198::-;38086:12;:10;:12::i;:::-;38075:23;;:7;:5;:7::i;:::-;:23;;;38067:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;41190:21:::1;41180:6;:31;;41172:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;41266:2;41258:20;;:28;41279:6;41258:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;41096:198:::0;;:::o;28647:142::-;28755:28;28765:4;28771:2;28775:7;28755:9;:28::i;:::-;28647:142;;;:::o;42022:437::-;42098:7;42144:1;42121:20;42134:6;42121:12;:20::i;:::-;:24;42118:315;;;42185:10;;42168:14;:27;;;;:::i;:::-;42161:34;;;;42118:315;42233:21;;42216:14;:38;42213:220;;;42301:10;;42277:21;;:34;;;;:::i;:::-;42270:41;;;;42213:220;42350:21;;42332:14;:39;42329:104;;42411:10;;42394:14;:27;;;;:::i;:::-;42387:34;;;;42329:104;42450:1;42443:8;;42022: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;41654:89::-;38086:12;:10;:12::i;:::-;38075:23;;:7;:5;:7::i;:::-;:23;;;38067:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;41723:12:::1;;;;;;;;;;;41722:13;41707:12;;:28;;;;;;;;;;;;;;;;;;41654:89::o:0;40947:140::-;38086:12;:10;:12::i;:::-;38075:23;;:7;:5;:7::i;:::-;:23;;;38067:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;40995:12:::1;41010:21;40995:36;;41050:10;41042:28;;:37;41071:7;41042:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;40984:103;40947:140::o:0;28852:157::-;28964:39;28981:4;28987:2;28991:7;28964:39;;;;;;;;;;;;:16;:39::i;:::-;28852:157;;;:::o;45381:132::-;38086:12;:10;:12::i;:::-;38075:23;;:7;:5;:7::i;:::-;:23;;;38067:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;45486:19:::1;45465:18;:40;;;;45381:132:::0;:::o;40406:533::-;40461:18;;:::i;:::-;40499:432;;;;;;;;40538:10;;40499:432;;;;40579:14;;40499:432;;;;40620:10;;40499:432;;;;40659:12;;;;;;;;;;;40499:432;;;;;;40707:13;:11;:13::i;:::-;40499:432;;;;40760:21;;40499:432;;;;40826:1;40808:20;;:6;:20;;;:57;;40843:21;40857:6;40843:13;:21::i;:::-;40808:57;;;40831:1;40808:57;40499:432;;;;40901:18;;40499:432;;;40492:439;;40406:533;;;:::o;23261:177::-;23328:7;23360:13;:11;:13::i;:::-;23352:5;:21;23344:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;23427:5;23420:12;;23261:177;;;:::o;41548:94::-;38086:12;:10;:12::i;:::-;38075:23;;:7;:5;:7::i;:::-;:23;;;38067:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;41628:6:::1;41618:7;:16;;;;;;;;;;;;:::i;:::-;;41548:94:::0;:::o;39556:30::-;;;;:::o;26086:118::-;26150:7;26173:20;26185:7;26173:11;:20::i;:::-;:25;;;26166:32;;26086:118;;;:::o;39595:34::-;;;;:::o;43769:107::-;38086:12;:10;:12::i;:::-;38075:23;;:7;:5;:7::i;:::-;:23;;;38067:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;43855:13:::1;43842:10;:26;;;;43769:107:::0;:::o;39403:79::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44998:99::-;38086:12;:10;:12::i;:::-;38075:23;;:7;:5;:7::i;:::-;:23;;;38067:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;45079:10:::1;45066;:23;;;;44998: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;41303:224::-;38086:12;:10;:12::i;:::-;38075:23;;:7;:5;:7::i;:::-;:23;;;38067:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;41437:10:::1;;41419:14;41403:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:44;;41395:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;41490:29;41500:2;41504:14;41490:9;:29::i;:::-;41303:224:::0;;:::o;41751:167::-;38086:12;:10;:12::i;:::-;38075:23;;:7;:5;:7::i;:::-;:23;;;38067:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;41859:21:::1;41836:20;:44;;;;41906:4;41891:12;;:19;;;;;;;;;;;;;;;;;;41751:167:::0;:::o;39491:44::-;;;;:::o;45229:144::-;38086:12;:10;:12::i;:::-;38075:23;;:7;:5;:7::i;:::-;:23;;;38067:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;45343:22:::1;45319:21;:46;;;;45229:144:::0;:::o;37855:87::-;37901:7;37928:6;;;;;;;;;;;37921:13;;37855:87;:::o;39719:39::-;;;;:::o;44526:223::-;38086:12;:10;:12::i;:::-;38075:23;;:7;:5;:7::i;:::-;:23;;;38067:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;44607:1:::1;44599:4;:9;44595:147;;;44640:21;44625:12;;:36;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;44595:147;;;44709:21;44694:12;;:36;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;44595:147;44526: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;45105:116::-;38086:12;:10;:12::i;:::-;38075:23;;:7;:5;:7::i;:::-;:23;;;38067:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;45198:15:::1;45181:14;:32;;;;45105:116:::0;:::o;41926:88::-;38086:12;:10;:12::i;:::-;38075:23;;:7;:5;:7::i;:::-;:23;;;38067:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;42005:1:::1;41982:20;:24;;;;41926:88::o:0;42533:1228::-;42607:12;;;;;;;;;;;42599:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;42680:14;;42662;:32;;42654:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;42759:1;42742:14;:18;42734:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;42840:10;;42822:14;42806:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:44;;42798:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;42919:1;42896:20;;:24;:57;;;;;42952:1;42924:24;42937:10;42924:12;:24::i;:::-;:29;;42896:57;42893:861;;;42990:20;;42972:14;:38;42969:114;;43047:20;;43030:37;;42969:114;43097:37;43107:10;43119:14;43097:9;:37::i;:::-;43195:14;43172:20;;:37;;;;:::i;:::-;43149:20;:60;;;;42893:861;;;43272:1;43244:25;43258:10;43244:13;:25::i;:::-;:29;43241:450;;;43331:10;;43314:14;:27;;;;:::i;:::-;43301:9;:40;;43293:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;43241:450;;;43405:21;;43388:14;:38;43385:306;;;43491:10;;43467:21;;:34;;;;:::i;:::-;43454:9;:47;;43446:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;43385:306;;;43565:21;;43547:14;:39;43544:147;;43644:10;;43627:14;:27;;;;:::i;:::-;43614:9;:40;;43606:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;43544:147;43385:306;43241:450;43705:37;43715:10;43727:14;43705:9;:37::i;:::-;42893:861;42533:1228;:::o;43884:634::-;43950:13;43990:17;43998:8;43990:7;:17::i;:::-;43982:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;44064:21;44048:37;;;;;;;;:::i;:::-;;:12;;;;;;;;;;;:37;;;;;;;;:::i;:::-;;;44044:467;;;44131:1;44113:7;44107:21;;;;;:::i;:::-;;;:25;:165;;;;;;;;;;;;;;;;;44189:7;44213:26;44230:8;44213:16;:26::i;:::-;44156:98;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44107:165;44100:172;;;;44044:467;44334:1;44316:7;44310:21;;;;;:::i;:::-;;;:25;:189;;;;;;;;;;;;;;;;;44392:7;44416:26;44433:8;44416:16;:26::i;:::-;44359:122;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44310:189;44303:196;;43884:634;;;;:::o;39852:38::-;;;;:::o;33487:43::-;;;;:::o;44876:113::-;44934:7;44961:20;44975:5;44961:13;:20::i;:::-;44954:27;;44876:113;;;:::o;28402:186::-;28524:4;28547:18;:25;28566:5;28547:25;;;;;;;;;;;;;;;:35;28573:8;28547:35;;;;;;;;;;;;;;;;;;;;;;;;;28540:42;;28402:186;;;;:::o;39679: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;39638:32::-;;;;:::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;20878:1629::-;21033:6;21028:3;21024:16;21128:4;21121:5;21117:16;21111:23;21147:63;21204:4;21199:3;21195:14;21181:12;21147:63;:::i;:::-;21050:170;21312:4;21305:5;21301:16;21295:23;21331:63;21388:4;21383:3;21379:14;21365:12;21331:63;:::i;:::-;21230:174;21492:4;21485:5;21481:16;21475:23;21511:63;21568:4;21563:3;21559:14;21545:12;21511:63;:::i;:::-;21414:170;21674:4;21667:5;21663:16;21657:23;21693:57;21744:4;21739:3;21735:14;21721:12;21693:57;:::i;:::-;21594:166;21849:4;21842:5;21838:16;21832:23;21868:63;21925:4;21920:3;21916:14;21902:12;21868:63;:::i;:::-;21770:171;22040:4;22033:5;22029:16;22023:23;22059:63;22116:4;22111:3;22107:14;22093:12;22059:63;:::i;:::-;21951:181;22220:4;22213:5;22209:16;22203:23;22239:63;22296:4;22291:3;22287:14;22273:12;22239:63;:::i;:::-;22142:170;22408:4;22401:5;22397:16;22391:23;22427:63;22484:4;22479:3;22475:14;22461:12;22427:63;:::i;:::-;22322:178;21002:1505;20878:1629;;:::o;22513:108::-;22590:24;22608:5;22590:24;:::i;:::-;22585:3;22578:37;22513:108;;:::o;22627:118::-;22714:24;22732:5;22714:24;:::i;:::-;22709:3;22702:37;22627:118;;:::o;22751:429::-;22928:3;22950:92;23038:3;23029:6;22950:92;:::i;:::-;22943:99;;23059:95;23150:3;23141:6;23059:95;:::i;:::-;23052:102;;23171:3;23164:10;;22751:429;;;;;:::o;23186:695::-;23464:3;23486:92;23574:3;23565:6;23486:92;:::i;:::-;23479:99;;23595:95;23686:3;23677:6;23595:95;:::i;:::-;23588:102;;23707:148;23851:3;23707:148;:::i;:::-;23700:155;;23872:3;23865:10;;23186:695;;;;;:::o;23887:222::-;23980:4;24018:2;24007:9;24003:18;23995:26;;24031:71;24099:1;24088:9;24084:17;24075:6;24031:71;:::i;:::-;23887:222;;;;:::o;24115:640::-;24310:4;24348:3;24337:9;24333:19;24325:27;;24362:71;24430:1;24419:9;24415:17;24406:6;24362:71;:::i;:::-;24443:72;24511:2;24500:9;24496:18;24487:6;24443:72;:::i;:::-;24525;24593:2;24582:9;24578:18;24569:6;24525:72;:::i;:::-;24644:9;24638:4;24634:20;24629:2;24618:9;24614:18;24607:48;24672:76;24743:4;24734:6;24672:76;:::i;:::-;24664:84;;24115:640;;;;;;;:::o;24761:210::-;24848:4;24886:2;24875:9;24871:18;24863:26;;24899:65;24961:1;24950:9;24946:17;24937:6;24899:65;:::i;:::-;24761:210;;;;:::o;24977:313::-;25090:4;25128:2;25117:9;25113:18;25105:26;;25177:9;25171:4;25167:20;25163:1;25152:9;25148:17;25141:47;25205:78;25278:4;25269:6;25205:78;:::i;:::-;25197:86;;24977:313;;;;:::o;25296:419::-;25462:4;25500:2;25489:9;25485:18;25477:26;;25549:9;25543:4;25539:20;25535:1;25524:9;25520:17;25513:47;25577:131;25703:4;25577:131;:::i;:::-;25569:139;;25296:419;;;:::o;25721:::-;25887:4;25925:2;25914:9;25910:18;25902:26;;25974:9;25968:4;25964:20;25960:1;25949:9;25945:17;25938:47;26002:131;26128:4;26002:131;:::i;:::-;25994:139;;25721:419;;;:::o;26146:::-;26312:4;26350:2;26339:9;26335:18;26327:26;;26399:9;26393:4;26389:20;26385:1;26374:9;26370:17;26363:47;26427:131;26553:4;26427:131;:::i;:::-;26419:139;;26146:419;;;:::o;26571:::-;26737:4;26775:2;26764:9;26760:18;26752:26;;26824:9;26818:4;26814:20;26810:1;26799:9;26795:17;26788:47;26852:131;26978:4;26852:131;:::i;:::-;26844:139;;26571:419;;;:::o;26996:::-;27162:4;27200:2;27189:9;27185:18;27177:26;;27249:9;27243:4;27239:20;27235:1;27224:9;27220:17;27213:47;27277:131;27403:4;27277:131;:::i;:::-;27269:139;;26996:419;;;:::o;27421:::-;27587:4;27625:2;27614:9;27610:18;27602:26;;27674:9;27668:4;27664:20;27660:1;27649:9;27645:17;27638:47;27702:131;27828:4;27702:131;:::i;:::-;27694:139;;27421:419;;;:::o;27846:::-;28012:4;28050:2;28039:9;28035:18;28027:26;;28099:9;28093:4;28089:20;28085:1;28074:9;28070:17;28063:47;28127:131;28253:4;28127:131;:::i;:::-;28119:139;;27846:419;;;:::o;28271:::-;28437:4;28475:2;28464:9;28460:18;28452:26;;28524:9;28518:4;28514:20;28510:1;28499:9;28495:17;28488:47;28552:131;28678:4;28552:131;:::i;:::-;28544:139;;28271:419;;;:::o;28696:::-;28862:4;28900:2;28889:9;28885:18;28877:26;;28949:9;28943:4;28939:20;28935:1;28924:9;28920:17;28913:47;28977:131;29103:4;28977:131;:::i;:::-;28969:139;;28696:419;;;:::o;29121:::-;29287:4;29325:2;29314:9;29310:18;29302:26;;29374:9;29368:4;29364:20;29360:1;29349:9;29345:17;29338:47;29402:131;29528:4;29402:131;:::i;:::-;29394:139;;29121:419;;;:::o;29546:::-;29712:4;29750:2;29739:9;29735:18;29727:26;;29799:9;29793:4;29789:20;29785:1;29774:9;29770:17;29763:47;29827:131;29953:4;29827:131;:::i;:::-;29819:139;;29546:419;;;:::o;29971:::-;30137:4;30175:2;30164:9;30160:18;30152:26;;30224:9;30218:4;30214:20;30210:1;30199:9;30195:17;30188:47;30252:131;30378:4;30252:131;:::i;:::-;30244:139;;29971:419;;;:::o;30396:::-;30562:4;30600:2;30589:9;30585:18;30577:26;;30649:9;30643:4;30639:20;30635:1;30624:9;30620:17;30613:47;30677:131;30803:4;30677:131;:::i;:::-;30669:139;;30396:419;;;:::o;30821:::-;30987:4;31025:2;31014:9;31010:18;31002:26;;31074:9;31068:4;31064:20;31060:1;31049:9;31045:17;31038:47;31102:131;31228:4;31102:131;:::i;:::-;31094:139;;30821:419;;;:::o;31246:::-;31412:4;31450:2;31439:9;31435:18;31427:26;;31499:9;31493:4;31489:20;31485:1;31474:9;31470:17;31463:47;31527:131;31653:4;31527:131;:::i;:::-;31519:139;;31246:419;;;:::o;31671:::-;31837:4;31875:2;31864:9;31860:18;31852:26;;31924:9;31918:4;31914:20;31910:1;31899:9;31895:17;31888:47;31952:131;32078:4;31952:131;:::i;:::-;31944:139;;31671:419;;;:::o;32096:::-;32262:4;32300:2;32289:9;32285:18;32277:26;;32349:9;32343:4;32339:20;32335:1;32324:9;32320:17;32313:47;32377:131;32503:4;32377:131;:::i;:::-;32369:139;;32096:419;;;:::o;32521:::-;32687:4;32725:2;32714:9;32710:18;32702:26;;32774:9;32768:4;32764:20;32760:1;32749:9;32745:17;32738:47;32802:131;32928:4;32802:131;:::i;:::-;32794:139;;32521:419;;;:::o;32946:::-;33112:4;33150:2;33139:9;33135:18;33127:26;;33199:9;33193:4;33189:20;33185:1;33174:9;33170:17;33163:47;33227:131;33353:4;33227:131;:::i;:::-;33219:139;;32946:419;;;:::o;33371:::-;33537:4;33575:2;33564:9;33560:18;33552:26;;33624:9;33618:4;33614:20;33610:1;33599:9;33595:17;33588:47;33652:131;33778:4;33652:131;:::i;:::-;33644:139;;33371:419;;;:::o;33796:::-;33962:4;34000:2;33989:9;33985:18;33977:26;;34049:9;34043:4;34039:20;34035:1;34024:9;34020:17;34013:47;34077:131;34203:4;34077:131;:::i;:::-;34069:139;;33796:419;;;:::o;34221:::-;34387:4;34425:2;34414:9;34410:18;34402:26;;34474:9;34468:4;34464:20;34460:1;34449:9;34445:17;34438:47;34502:131;34628:4;34502:131;:::i;:::-;34494:139;;34221:419;;;:::o;34646:::-;34812:4;34850:2;34839:9;34835:18;34827:26;;34899:9;34893:4;34889:20;34885:1;34874:9;34870:17;34863:47;34927:131;35053:4;34927:131;:::i;:::-;34919:139;;34646:419;;;:::o;35071:::-;35237:4;35275:2;35264:9;35260:18;35252:26;;35324:9;35318:4;35314:20;35310:1;35299:9;35295:17;35288:47;35352:131;35478:4;35352:131;:::i;:::-;35344:139;;35071:419;;;:::o;35496:::-;35662:4;35700:2;35689:9;35685:18;35677:26;;35749:9;35743:4;35739:20;35735:1;35724:9;35720:17;35713:47;35777:131;35903:4;35777:131;:::i;:::-;35769:139;;35496:419;;;:::o;35921:::-;36087:4;36125:2;36114:9;36110:18;36102:26;;36174:9;36168:4;36164:20;36160:1;36149:9;36145:17;36138:47;36202:131;36328:4;36202:131;:::i;:::-;36194:139;;35921:419;;;:::o;36346:::-;36512:4;36550:2;36539:9;36535:18;36527:26;;36599:9;36593:4;36589:20;36585:1;36574:9;36570:17;36563:47;36627:131;36753:4;36627:131;:::i;:::-;36619:139;;36346:419;;;:::o;36771:::-;36937:4;36975:2;36964:9;36960:18;36952:26;;37024:9;37018:4;37014:20;37010:1;36999:9;36995:17;36988:47;37052:131;37178:4;37052:131;:::i;:::-;37044:139;;36771:419;;;:::o;37196:339::-;37347:4;37385:3;37374:9;37370:19;37362:27;;37399:129;37525:1;37514:9;37510:17;37501:6;37399:129;:::i;:::-;37196:339;;;;:::o;37541:222::-;37634:4;37672:2;37661:9;37657:18;37649:26;;37685:71;37753:1;37742:9;37738:17;37729:6;37685:71;:::i;:::-;37541:222;;;;:::o;37769:129::-;37803:6;37830:20;;:::i;:::-;37820:30;;37859:33;37887:4;37879:6;37859:33;:::i;:::-;37769:129;;;:::o;37904:75::-;37937:6;37970:2;37964:9;37954:19;;37904:75;:::o;37985:307::-;38046:4;38136:18;38128:6;38125:30;38122:56;;;38158:18;;:::i;:::-;38122:56;38196:29;38218:6;38196:29;:::i;:::-;38188:37;;38280:4;38274;38270:15;38262:23;;37985:307;;;:::o;38298:308::-;38360:4;38450:18;38442:6;38439:30;38436:56;;;38472:18;;:::i;:::-;38436:56;38510:29;38532:6;38510:29;:::i;:::-;38502:37;;38594:4;38588;38584:15;38576:23;;38298:308;;;:::o;38612:141::-;38661:4;38684:3;38676:11;;38707:3;38704:1;38697:14;38741:4;38738:1;38728:18;38720:26;;38612:141;;;:::o;38759:98::-;38810:6;38844:5;38838:12;38828:22;;38759:98;;;:::o;38863:99::-;38915:6;38949:5;38943:12;38933:22;;38863:99;;;:::o;38968:168::-;39051:11;39085:6;39080:3;39073:19;39125:4;39120:3;39116:14;39101:29;;38968:168;;;;:::o;39142:169::-;39226:11;39260:6;39255:3;39248:19;39300:4;39295:3;39291:14;39276:29;;39142:169;;;;:::o;39317:148::-;39419:11;39456:3;39441:18;;39317:148;;;;:::o;39471:273::-;39511:3;39530:20;39548:1;39530:20;:::i;:::-;39525:25;;39564:20;39582:1;39564:20;:::i;:::-;39559:25;;39686:1;39650:34;39646:42;39643:1;39640:49;39637:75;;;39692:18;;:::i;:::-;39637:75;39736:1;39733;39729:9;39722:16;;39471:273;;;;:::o;39750:305::-;39790:3;39809:20;39827:1;39809:20;:::i;:::-;39804:25;;39843:20;39861:1;39843:20;:::i;:::-;39838:25;;39997:1;39929:66;39925:74;39922:1;39919:81;39916:107;;;40003:18;;:::i;:::-;39916:107;40047:1;40044;40040:9;40033:16;;39750:305;;;;:::o;40061:185::-;40101:1;40118:20;40136:1;40118:20;:::i;:::-;40113:25;;40152:20;40170:1;40152:20;:::i;:::-;40147:25;;40191:1;40181:35;;40196:18;;:::i;:::-;40181:35;40238:1;40235;40231:9;40226:14;;40061:185;;;;:::o;40252:348::-;40292:7;40315:20;40333:1;40315:20;:::i;:::-;40310:25;;40349:20;40367:1;40349:20;:::i;:::-;40344:25;;40537:1;40469:66;40465:74;40462:1;40459:81;40454:1;40447:9;40440:17;40436:105;40433:131;;;40544:18;;:::i;:::-;40433:131;40592:1;40589;40585:9;40574:20;;40252:348;;;;:::o;40606:191::-;40646:4;40666:20;40684:1;40666:20;:::i;:::-;40661:25;;40700:20;40718:1;40700:20;:::i;:::-;40695:25;;40739:1;40736;40733:8;40730:34;;;40744:18;;:::i;:::-;40730:34;40789:1;40786;40782:9;40774:17;;40606:191;;;;:::o;40803:::-;40843:4;40863:20;40881:1;40863:20;:::i;:::-;40858:25;;40897:20;40915:1;40897:20;:::i;:::-;40892:25;;40936:1;40933;40930:8;40927:34;;;40941:18;;:::i;:::-;40927:34;40986:1;40983;40979:9;40971:17;;40803:191;;;;:::o;41000:96::-;41037:7;41066:24;41084:5;41066:24;:::i;:::-;41055:35;;41000:96;;;:::o;41102:90::-;41136:7;41179:5;41172:13;41165:21;41154:32;;41102:90;;;:::o;41198:149::-;41234:7;41274:66;41267:5;41263:78;41252:89;;41198:149;;;:::o;41353:118::-;41390:7;41430:34;41423:5;41419:46;41408:57;;41353:118;;;:::o;41477:126::-;41514:7;41554:42;41547:5;41543:54;41532:65;;41477:126;;;:::o;41609:77::-;41646:7;41675:5;41664:16;;41609:77;;;:::o;41692:154::-;41776:6;41771:3;41766;41753:30;41838:1;41829:6;41824:3;41820:16;41813:27;41692:154;;;:::o;41852:307::-;41920:1;41930:113;41944:6;41941:1;41938:13;41930:113;;;42029:1;42024:3;42020:11;42014:18;42010:1;42005:3;42001:11;41994:39;41966:2;41963:1;41959:10;41954:15;;41930:113;;;42061:6;42058:1;42055:13;42052:101;;;42141:1;42132:6;42127:3;42123:16;42116:27;42052:101;41901:258;41852:307;;;:::o;42165:171::-;42204:3;42227:24;42245:5;42227:24;:::i;:::-;42218:33;;42273:4;42266:5;42263:15;42260:41;;;42281:18;;:::i;:::-;42260:41;42328:1;42321:5;42317:13;42310:20;;42165:171;;;:::o;42342:320::-;42386:6;42423:1;42417:4;42413:12;42403:22;;42470:1;42464:4;42460:12;42491:18;42481:81;;42547:4;42539:6;42535:17;42525:27;;42481:81;42609:2;42601:6;42598:14;42578:18;42575:38;42572:84;;;42628:18;;:::i;:::-;42572:84;42393:269;42342:320;;;:::o;42668:281::-;42751:27;42773:4;42751:27;:::i;:::-;42743:6;42739:40;42881:6;42869:10;42866:22;42845:18;42833:10;42830:34;42827:62;42824:88;;;42892:18;;:::i;:::-;42824:88;42932:10;42928:2;42921:22;42711:238;42668:281;;:::o;42955:233::-;42994:3;43017:24;43035:5;43017:24;:::i;:::-;43008:33;;43063:66;43056:5;43053:77;43050:103;;;43133:18;;:::i;:::-;43050:103;43180:1;43173:5;43169:13;43162:20;;42955:233;;;:::o;43194:176::-;43226:1;43243:20;43261:1;43243:20;:::i;:::-;43238:25;;43277:20;43295:1;43277:20;:::i;:::-;43272:25;;43316:1;43306:35;;43321:18;;:::i;:::-;43306:35;43362:1;43359;43355:9;43350:14;;43194:176;;;;:::o;43376:180::-;43424:77;43421:1;43414:88;43521:4;43518:1;43511:15;43545:4;43542:1;43535:15;43562:180;43610:77;43607:1;43600:88;43707:4;43704:1;43697:15;43731:4;43728:1;43721:15;43748:180;43796:77;43793:1;43786:88;43893:4;43890:1;43883:15;43917:4;43914:1;43907:15;43934:180;43982:77;43979:1;43972:88;44079:4;44076:1;44069:15;44103:4;44100:1;44093:15;44120:180;44168:77;44165:1;44158:88;44265:4;44262:1;44255:15;44289:4;44286:1;44279:15;44306:180;44354:77;44351:1;44344:88;44451:4;44448:1;44441:15;44475:4;44472:1;44465:15;44492:117;44601:1;44598;44591:12;44615:117;44724:1;44721;44714:12;44738:117;44847:1;44844;44837:12;44861:117;44970:1;44967;44960:12;44984:102;45025:6;45076:2;45072:7;45067:2;45060:5;45056:14;45052:28;45042:38;;44984:102;;;:::o;45092:221::-;45232:34;45228:1;45220:6;45216:14;45209:58;45301:4;45296:2;45288:6;45284:15;45277:29;45092:221;:::o;45319:169::-;45459:21;45455:1;45447:6;45443:14;45436:45;45319:169;:::o;45494:166::-;45634:18;45630:1;45622:6;45618:14;45611:42;45494:166;:::o;45666:225::-;45806:34;45802:1;45794:6;45790:14;45783:58;45875:8;45870:2;45862:6;45858:15;45851:33;45666:225;:::o;45897:229::-;46037:34;46033:1;46025:6;46021:14;46014:58;46106:12;46101:2;46093:6;46089:15;46082:37;45897:229;:::o;46132:181::-;46272:33;46268:1;46260:6;46256:14;46249:57;46132:181;:::o;46319:222::-;46459:34;46455:1;46447:6;46443:14;46436:58;46528:5;46523:2;46515:6;46511:15;46504:30;46319:222;:::o;46547:224::-;46687:34;46683:1;46675:6;46671:14;46664:58;46756:7;46751:2;46743:6;46739:15;46732:32;46547:224;:::o;46777:236::-;46917:34;46913:1;46905:6;46901:14;46894:58;46986:19;46981:2;46973:6;46969:15;46962:44;46777:236;:::o;47019:171::-;47159:23;47155:1;47147:6;47143:14;47136:47;47019:171;:::o;47196:244::-;47336:34;47332:1;47324:6;47320:14;47313:58;47405:27;47400:2;47392:6;47388:15;47381:52;47196:244;:::o;47446:177::-;47586:29;47582:1;47574:6;47570:14;47563:53;47446:177;:::o;47629:230::-;47769:34;47765:1;47757:6;47753:14;47746:58;47838:13;47833:2;47825:6;47821:15;47814:38;47629:230;:::o;47865:171::-;48005:23;48001:1;47993:6;47989:14;47982:47;47865:171;:::o;48042:167::-;48182:19;48178:1;48170:6;48166:14;48159:43;48042:167;:::o;48215:225::-;48355:34;48351:1;48343:6;48339:14;48332:58;48424:8;48419:2;48411:6;48407:15;48400:33;48215:225;:::o;48446:155::-;48586:7;48582:1;48574:6;48570:14;48563:31;48446:155;:::o;48607:176::-;48747:28;48743:1;48735:6;48731:14;48724:52;48607:176;:::o;48789:237::-;48929:34;48925:1;48917:6;48913:14;48906:58;48998:20;48993:2;48985:6;48981:15;48974:45;48789:237;:::o;49032:174::-;49172:26;49168:1;49160:6;49156:14;49149:50;49032:174;:::o;49212:221::-;49352:34;49348:1;49340:6;49336:14;49329:58;49421:4;49416:2;49408:6;49404:15;49397:29;49212:221;:::o;49439:238::-;49579:34;49575:1;49567:6;49563:14;49556:58;49648:21;49643:2;49635:6;49631:15;49624:46;49439:238;:::o;49683:179::-;49823:31;49819:1;49811:6;49807:14;49800:55;49683:179;:::o;49868:220::-;50008:34;50004:1;49996:6;49992:14;49985:58;50077:3;50072:2;50064:6;50060:15;50053:28;49868:220;:::o;50094:233::-;50234:34;50230:1;50222:6;50218:14;50211:58;50303:16;50298:2;50290:6;50286:15;50279:41;50094:233;:::o;50333:234::-;50473:34;50469:1;50461:6;50457:14;50450:58;50542:17;50537:2;50529:6;50525:15;50518:42;50333:234;:::o;50573:172::-;50713:24;50709:1;50701:6;50697:14;50690:48;50573:172;:::o;50751:232::-;50891:34;50887:1;50879:6;50875:14;50868:58;50960:15;50955:2;50947:6;50943:15;50936:40;50751:232;:::o;50989:221::-;51129:34;51125:1;51117:6;51113:14;51106:58;51198:4;51193:2;51185:6;51181:15;51174:29;50989:221;:::o;51216:122::-;51289:24;51307:5;51289:24;:::i;:::-;51282:5;51279:35;51269:63;;51328:1;51325;51318:12;51269:63;51216:122;:::o;51344:116::-;51414:21;51429:5;51414:21;:::i;:::-;51407:5;51404:32;51394:60;;51450:1;51447;51440:12;51394:60;51344:116;:::o;51466:120::-;51538:23;51555:5;51538:23;:::i;:::-;51531:5;51528:34;51518:62;;51576:1;51573;51566:12;51518:62;51466:120;:::o;51592:122::-;51665:24;51683:5;51665:24;:::i;:::-;51658:5;51655:35;51645:63;;51704:1;51701;51694:12;51645:63;51592:122;:::o

Swarm Source

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