ETH Price: $2,464.08 (+4.16%)

Token

Trippinokaybull (TOB)
 

Overview

Max Total Supply

1,716 TOB

Holders

502

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 TOB
0xabd426D1E14bc003521FEd7646D4826A81a8d24f
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:
TrippinOkayBull

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-18
*/

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

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

    uint256 public tokenPrice = 5000000000000000; //0.005 ETH

    uint public maxTokensPerTx = 10;

    uint public defaultTokensPerTx = 3;

    uint256 public MAX_TOKENS = 8888;

    bool public saleIsActive = true;

    uint256 public whitelistMintRemains = 0;

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

    enum TokenURIMode {
        MODE_ONE,
        MODE_TWO
    }

    TokenURIMode private tokenUriMode = TokenURIMode.MODE_ONE;

    constructor() ERC721A("Trippinokaybull", "TOB", 250, 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: 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 TrippinOkayBull.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"}]

60c0604052600080556000600755604051806060016040528060358152602001620059dd60359139600990805190602001906200003e929190620002f2565b506611c37937e08000600a55600a600b556003600c556122b8600d556001600e60006101000a81548160ff0219169083151502179055506000600f5560016010556000601160006101000a81548160ff02191690836001811115620000a857620000a76200047b565b5b0217905550348015620000ba57600080fd5b506040518060400160405280600f81526020017f5472697070696e6f6b617962756c6c00000000000000000000000000000000008152506040518060400160405280600381526020017f544f42000000000000000000000000000000000000000000000000000000000081525060fa600d546000811162000172576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001699062000412565b60405180910390fd5b60008211620001b8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001af90620003f0565b60405180910390fd5b8360019080519060200190620001d0929190620002f2565b508260029080519060200190620001e9929190620002f2565b508160a081815250508060808181525050505050506200021e620002126200022460201b60201c565b6200022c60201b60201c565b62000577565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003009062000445565b90600052602060002090601f01602090048101928262000324576000855562000370565b82601f106200033f57805160ff191683800117855562000370565b8280016001018555821562000370579182015b828111156200036f57825182559160200191906001019062000352565b5b5090506200037f919062000383565b5090565b5b808211156200039e57600081600090555060010162000384565b5090565b6000620003b160278362000434565b9150620003be82620004d9565b604082019050919050565b6000620003d8602e8362000434565b9150620003e58262000528565b604082019050919050565b600060208201905081810360008301526200040b81620003a2565b9050919050565b600060208201905081810360008301526200042d81620003c9565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200045e57607f821691505b60208210811415620004755762000474620004aa565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b60805160a051615435620005a860003960008181612c7501528181612c9e01526132cd0152600050506154356000f3fe6080604052600436106102725760003560e01c806370a082311161014f578063b88d4fde116100c1578063d7224ba01161007a578063d7224ba014610929578063dc33e68114610954578063e985e9c514610991578063eb8d2444146109ce578063f2fde38b146109f9578063f47c84c514610a2257610272565b8063b88d4fde1461083c578063b9bed05e14610865578063c4d7e2f81461088e578063c634d032146108a5578063c87b56dd146108c1578063d0a04eac146108fe57610272565b806385c8cc741161011357806385c8cc74146107405780638da5cb5b146107695780638f69ae6f14610794578063900c71f5146107bf57806395d89b41146107e8578063a22cb4651461081357610272565b806370a082311461066f578063715018a6146106ac57806378cf19e9146106c35780637b8940cc146106ec5780637ff9b5961461071557610272565b806342842e0e116101e85780635e307a48116101ac5780635e307a481461055f5780636352211e1461058a578063681c8bac146105c75780636a61e5fc146105f25780636c0360eb1461061b5780636f8b44b01461064657610272565b806342842e0e1461046a578063495e1eba146104935780634df8bb45146104bc5780634f6ccce7146104f957806355f804b31461053657610272565b8063205c28781161023a578063205c28781461037057806323b872dd146103995780632b57cfbb146103c25780632f745c59146103ff57806334918dfd1461043c5780633ccfd60b1461045357610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063095ea7b31461031c57806318160ddd14610345575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190613b2e565b610a4d565b6040516102ab91906142fe565b60405180910390f35b3480156102c057600080fd5b506102c9610b97565b6040516102d69190614319565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190613bd1565b610c29565b6040516103139190614297565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e9190613aee565b610cae565b005b34801561035157600080fd5b5061035a610dc7565b60405161036791906146d7565b60405180910390f35b34801561037c57600080fd5b5061039760048036038101906103929190613aee565b610dd0565b005b3480156103a557600080fd5b506103c060048036038101906103bb91906139d8565b610eda565b005b3480156103ce57600080fd5b506103e960048036038101906103e49190613bfe565b610eea565b6040516103f691906146d7565b60405180910390f35b34801561040b57600080fd5b5061042660048036038101906104219190613aee565b610f5b565b60405161043391906146d7565b60405180910390f35b34801561044857600080fd5b50610451611159565b005b34801561045f57600080fd5b50610468611201565b005b34801561047657600080fd5b50610491600480360381019061048c91906139d8565b6112cc565b005b34801561049f57600080fd5b506104ba60048036038101906104b59190613bd1565b6112ec565b005b3480156104c857600080fd5b506104e360048036038101906104de919061396b565b611372565b6040516104f091906146bb565b60405180910390f35b34801561050557600080fd5b50610520600480360381019061051b9190613bd1565b6113e5565b60405161052d91906146d7565b60405180910390f35b34801561054257600080fd5b5061055d60048036038101906105589190613b88565b611438565b005b34801561056b57600080fd5b506105746114ce565b60405161058191906146d7565b60405180910390f35b34801561059657600080fd5b506105b160048036038101906105ac9190613bd1565b6114d4565b6040516105be9190614297565b60405180910390f35b3480156105d357600080fd5b506105dc6114ea565b6040516105e991906146d7565b60405180910390f35b3480156105fe57600080fd5b5061061960048036038101906106149190613bd1565b6114f0565b005b34801561062757600080fd5b50610630611576565b60405161063d9190614319565b60405180910390f35b34801561065257600080fd5b5061066d60048036038101906106689190613bd1565b611604565b005b34801561067b57600080fd5b506106966004803603810190610691919061396b565b61168a565b6040516106a391906146d7565b60405180910390f35b3480156106b857600080fd5b506106c1611773565b005b3480156106cf57600080fd5b506106ea60048036038101906106e59190613aee565b6117fb565b005b3480156106f857600080fd5b50610713600480360381019061070e9190613bd1565b6118dc565b005b34801561072157600080fd5b5061072a61197d565b60405161073791906146d7565b60405180910390f35b34801561074c57600080fd5b5061076760048036038101906107629190613bd1565b611983565b005b34801561077557600080fd5b5061077e611a09565b60405161078b9190614297565b60405180910390f35b3480156107a057600080fd5b506107a9611a33565b6040516107b691906146d7565b60405180910390f35b3480156107cb57600080fd5b506107e660048036038101906107e19190613bd1565b611a39565b005b3480156107f457600080fd5b506107fd611b1d565b60405161080a9190614319565b60405180910390f35b34801561081f57600080fd5b5061083a60048036038101906108359190613aae565b611baf565b005b34801561084857600080fd5b50610863600480360381019061085e9190613a2b565b611d30565b005b34801561087157600080fd5b5061088c60048036038101906108879190613bd1565b611d8c565b005b34801561089a57600080fd5b506108a3611e12565b005b6108bf60048036038101906108ba9190613bd1565b611e98565b005b3480156108cd57600080fd5b506108e860048036038101906108e39190613bd1565b612149565b6040516108f59190614319565b60405180910390f35b34801561090a57600080fd5b5061091361228b565b60405161092091906146d7565b60405180910390f35b34801561093557600080fd5b5061093e612291565b60405161094b91906146d7565b60405180910390f35b34801561096057600080fd5b5061097b6004803603810190610976919061396b565b612297565b60405161098891906146d7565b60405180910390f35b34801561099d57600080fd5b506109b860048036038101906109b39190613998565b6122a9565b6040516109c591906142fe565b60405180910390f35b3480156109da57600080fd5b506109e361233d565b6040516109f091906142fe565b60405180910390f35b348015610a0557600080fd5b50610a206004803603810190610a1b919061396b565b612350565b005b348015610a2e57600080fd5b50610a37612448565b604051610a4491906146d7565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b1857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b8057507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b905750610b8f8261244e565b5b9050919050565b606060018054610ba690614a5c565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd290614a5c565b8015610c1f5780601f10610bf457610100808354040283529160200191610c1f565b820191906000526020600020905b815481529060010190602001808311610c0257829003601f168201915b5050505050905090565b6000610c34826124b8565b610c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6a9061467b565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cb9826114d4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d219061459b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d496124c5565b73ffffffffffffffffffffffffffffffffffffffff161480610d785750610d7781610d726124c5565b6122a9565b5b610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dae9061447b565b60405180910390fd5b610dc28383836124cd565b505050565b60008054905090565b610dd86124c5565b73ffffffffffffffffffffffffffffffffffffffff16610df6611a09565b73ffffffffffffffffffffffffffffffffffffffff1614610e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e439061445b565b60405180910390fd5b47811115610e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e86906143db565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610ed5573d6000803e3d6000fd5b505050565b610ee583838361257f565b505050565b600080610ef683612297565b1115610f1157600a5483610f0a919061489e565b9050610f55565b601054831115610f3257600a54601054610f2b919061489e565b9050610f55565b6010548311610f5057600a5483610f49919061489e565b9050610f55565b600090505b92915050565b6000610f668361168a565b8210610fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9e9061433b565b60405180910390fd5b6000610fb1610dc7565b905060008060005b83811015611117576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146110ab57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561110357868414156110f4578195505050505050611153565b83806110ff90614abf565b9450505b50808061110f90614abf565b915050610fb9565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114a9061461b565b60405180910390fd5b92915050565b6111616124c5565b73ffffffffffffffffffffffffffffffffffffffff1661117f611a09565b73ffffffffffffffffffffffffffffffffffffffff16146111d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cc9061445b565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b6112096124c5565b73ffffffffffffffffffffffffffffffffffffffff16611227611a09565b73ffffffffffffffffffffffffffffffffffffffff161461127d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112749061445b565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156112c8573d6000803e3d6000fd5b5050565b6112e783838360405180602001604052806000815250611d30565b505050565b6112f46124c5565b73ffffffffffffffffffffffffffffffffffffffff16611312611a09565b73ffffffffffffffffffffffffffffffffffffffff1614611368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135f9061445b565b60405180910390fd5b80600c8190555050565b61137a6136fe565b604051806101000160405280600a548152602001600b548152602001600d548152602001600e60009054906101000a900460ff16151581526020016113bd610dc7565b815260200160105481526020016113d384612b38565b8152602001600c548152509050919050565b60006113ef610dc7565b8210611430576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611427906143fb565b60405180910390fd5b819050919050565b6114406124c5565b73ffffffffffffffffffffffffffffffffffffffff1661145e611a09565b73ffffffffffffffffffffffffffffffffffffffff16146114b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ab9061445b565b60405180910390fd5b80600990805190602001906114ca929190613745565b5050565b600b5481565b60006114df82612c21565b600001519050919050565b600c5481565b6114f86124c5565b73ffffffffffffffffffffffffffffffffffffffff16611516611a09565b73ffffffffffffffffffffffffffffffffffffffff161461156c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115639061445b565b60405180910390fd5b80600a8190555050565b6009805461158390614a5c565b80601f01602080910402602001604051908101604052809291908181526020018280546115af90614a5c565b80156115fc5780601f106115d1576101008083540402835291602001916115fc565b820191906000526020600020905b8154815290600101906020018083116115df57829003601f168201915b505050505081565b61160c6124c5565b73ffffffffffffffffffffffffffffffffffffffff1661162a611a09565b73ffffffffffffffffffffffffffffffffffffffff1614611680576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116779061445b565b60405180910390fd5b80600d8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f2906144bb565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61177b6124c5565b73ffffffffffffffffffffffffffffffffffffffff16611799611a09565b73ffffffffffffffffffffffffffffffffffffffff16146117ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e69061445b565b60405180910390fd5b6117f96000612e24565b565b6118036124c5565b73ffffffffffffffffffffffffffffffffffffffff16611821611a09565b73ffffffffffffffffffffffffffffffffffffffff1614611877576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186e9061445b565b60405180910390fd5b600d5481611883610dc7565b61188d9190614817565b11156118ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c59061449b565b60405180910390fd5b6118d88282612eea565b5050565b6118e46124c5565b73ffffffffffffffffffffffffffffffffffffffff16611902611a09565b73ffffffffffffffffffffffffffffffffffffffff1614611958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194f9061445b565b60405180910390fd5b80600f819055506001600e60006101000a81548160ff02191690831515021790555050565b600a5481565b61198b6124c5565b73ffffffffffffffffffffffffffffffffffffffff166119a9611a09565b73ffffffffffffffffffffffffffffffffffffffff16146119ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f69061445b565b60405180910390fd5b8060108190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b611a416124c5565b73ffffffffffffffffffffffffffffffffffffffff16611a5f611a09565b73ffffffffffffffffffffffffffffffffffffffff1614611ab5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aac9061445b565b60405180910390fd5b6002811415611aee576001601160006101000a81548160ff02191690836001811115611ae457611ae3614b97565b5b0217905550611b1a565b6000601160006101000a81548160ff02191690836001811115611b1457611b13614b97565b5b02179055505b50565b606060028054611b2c90614a5c565b80601f0160208091040260200160405190810160405280929190818152602001828054611b5890614a5c565b8015611ba55780601f10611b7a57610100808354040283529160200191611ba5565b820191906000526020600020905b815481529060010190602001808311611b8857829003601f168201915b5050505050905090565b611bb76124c5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1c9061453b565b60405180910390fd5b8060066000611c326124c5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611cdf6124c5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d2491906142fe565b60405180910390a35050565b611d3b84848461257f565b611d4784848484612f08565b611d86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7d906145bb565b60405180910390fd5b50505050565b611d946124c5565b73ffffffffffffffffffffffffffffffffffffffff16611db2611a09565b73ffffffffffffffffffffffffffffffffffffffff1614611e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dff9061445b565b60405180910390fd5b80600b8190555050565b611e1a6124c5565b73ffffffffffffffffffffffffffffffffffffffff16611e38611a09565b73ffffffffffffffffffffffffffffffffffffffff1614611e8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e859061445b565b60405180910390fd5b6000600f81905550565b600e60009054906101000a900460ff16611ee7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ede9061435b565b60405180910390fd5b600b54811115611f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f239061457b565b60405180910390fd5b60008111611f6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f669061465b565b60405180910390fd5b600d5481611f7b610dc7565b611f859190614817565b1115611fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbd906144fb565b60405180910390fd5b6000600f54118015611fe157506000611fde33612297565b11155b1561201857600f548110611ff557600f5490505b611fff3382612eea565b80600f5461200d919061492c565b600f81905550612146565b600061202333612b38565b111561207e57600a5481612037919061489e565b341015612079576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120709061437b565b60405180910390fd5b61213b565b6010548111156120df57600a54601054612098919061489e565b3410156120da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d19061437b565b60405180910390fd5b61213a565b601054811161213957600a54816120f6919061489e565b341015612138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212f9061437b565b60405180910390fd5b5b5b5b6121453382612eea565b5b50565b6060612154826124b8565b612193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218a906144db565b60405180910390fd5b6001808111156121a6576121a5614b97565b5b601160009054906101000a900460ff1660018111156121c8576121c7614b97565b5b141561222c576000600980546121dd90614a5c565b9050116121f95760405180602001604052806000815250612225565b60096122048361309f565b604051602001612215929190614244565b6040516020818303038152906040525b9050612286565b60006009805461223b90614a5c565b9050116122575760405180602001604052806000815250612283565b60096122628361309f565b604051602001612273929190614268565b6040516020818303038152906040525b90505b919050565b60105481565b60075481565b60006122a282612b38565b9050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e60009054906101000a900460ff1681565b6123586124c5565b73ffffffffffffffffffffffffffffffffffffffff16612376611a09565b73ffffffffffffffffffffffffffffffffffffffff16146123cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c39061445b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561243c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124339061439b565b60405180910390fd5b61244581612e24565b50565b600d5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061258a82612c21565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166125b16124c5565b73ffffffffffffffffffffffffffffffffffffffff16148061260d57506125d66124c5565b73ffffffffffffffffffffffffffffffffffffffff166125f584610c29565b73ffffffffffffffffffffffffffffffffffffffff16145b80612629575061262882600001516126236124c5565b6122a9565b5b90508061266b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126629061455b565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146126dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d49061451b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561274d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127449061441b565b60405180910390fd5b61275a8585856001613200565b61276a60008484600001516124cd565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166127d891906148f8565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661287c91906147d1565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846129829190614817565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612ac8576129f8816124b8565b15612ac7576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b308686866001613206565b505050505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ba09061443b565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b612c296137cb565b612c32826124b8565b612c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c68906143bb565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008310612cd55760017f000000000000000000000000000000000000000000000000000000000000000084612cc8919061492c565b612cd29190614817565b90505b60008390505b818110612de3576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612dcf57809350505050612e1f565b508080612ddb90614a32565b915050612cdb565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e169061463b565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612f0482826040518060200160405280600081525061320c565b5050565b6000612f298473ffffffffffffffffffffffffffffffffffffffff166136eb565b15613092578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f526124c5565b8786866040518563ffffffff1660e01b8152600401612f7494939291906142b2565b602060405180830381600087803b158015612f8e57600080fd5b505af1925050508015612fbf57506040513d601f19601f82011682018060405250810190612fbc9190613b5b565b60015b613042573d8060008114612fef576040519150601f19603f3d011682016040523d82523d6000602084013e612ff4565b606091505b5060008151141561303a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613031906145bb565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613097565b600190505b949350505050565b606060008214156130e7576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506131fb565b600082905060005b6000821461311957808061310290614abf565b915050600a82613112919061486d565b91506130ef565b60008167ffffffffffffffff81111561313557613134614c24565b5b6040519080825280601f01601f1916602001820160405280156131675781602001600182028036833780820191505090505b5090505b600085146131f457600182613180919061492c565b9150600a8561318f9190614b08565b603061319b9190614817565b60f81b8183815181106131b1576131b0614bf5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856131ed919061486d565b945061316b565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613282576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613279906145fb565b60405180910390fd5b61328b816124b8565b156132cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132c2906145db565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000083111561332e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133259061469b565b60405180910390fd5b61333b6000858386613200565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161343891906147d1565b6fffffffffffffffffffffffffffffffff16815260200185836020015161345f91906147d1565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156136ce57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461366e6000888488612f08565b6136ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136a4906145bb565b60405180910390fd5b81806136b890614abf565b92505080806136c690614abf565b9150506135fd565b50806000819055506136e36000878588613206565b505050505050565b600080823b905060008111915050919050565b604051806101000160405280600081526020016000815260200160008152602001600015158152602001600081526020016000815260200160008152602001600081525090565b82805461375190614a5c565b90600052602060002090601f01602090048101928261377357600085556137ba565b82601f1061378c57805160ff19168380011785556137ba565b828001600101855582156137ba579182015b828111156137b957825182559160200191906001019061379e565b5b5090506137c79190613805565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561381e576000816000905550600101613806565b5090565b600061383561383084614717565b6146f2565b90508281526020810184848401111561385157613850614c58565b5b61385c8482856149f0565b509392505050565b600061387761387284614748565b6146f2565b90508281526020810184848401111561389357613892614c58565b5b61389e8482856149f0565b509392505050565b6000813590506138b5816153a3565b92915050565b6000813590506138ca816153ba565b92915050565b6000813590506138df816153d1565b92915050565b6000815190506138f4816153d1565b92915050565b600082601f83011261390f5761390e614c53565b5b813561391f848260208601613822565b91505092915050565b600082601f83011261393d5761393c614c53565b5b813561394d848260208601613864565b91505092915050565b600081359050613965816153e8565b92915050565b60006020828403121561398157613980614c62565b5b600061398f848285016138a6565b91505092915050565b600080604083850312156139af576139ae614c62565b5b60006139bd858286016138a6565b92505060206139ce858286016138a6565b9150509250929050565b6000806000606084860312156139f1576139f0614c62565b5b60006139ff868287016138a6565b9350506020613a10868287016138a6565b9250506040613a2186828701613956565b9150509250925092565b60008060008060808587031215613a4557613a44614c62565b5b6000613a53878288016138a6565b9450506020613a64878288016138a6565b9350506040613a7587828801613956565b925050606085013567ffffffffffffffff811115613a9657613a95614c5d565b5b613aa2878288016138fa565b91505092959194509250565b60008060408385031215613ac557613ac4614c62565b5b6000613ad3858286016138a6565b9250506020613ae4858286016138bb565b9150509250929050565b60008060408385031215613b0557613b04614c62565b5b6000613b13858286016138a6565b9250506020613b2485828601613956565b9150509250929050565b600060208284031215613b4457613b43614c62565b5b6000613b52848285016138d0565b91505092915050565b600060208284031215613b7157613b70614c62565b5b6000613b7f848285016138e5565b91505092915050565b600060208284031215613b9e57613b9d614c62565b5b600082013567ffffffffffffffff811115613bbc57613bbb614c5d565b5b613bc884828501613928565b91505092915050565b600060208284031215613be757613be6614c62565b5b6000613bf584828501613956565b91505092915050565b60008060408385031215613c1557613c14614c62565b5b6000613c2385828601613956565b9250506020613c34858286016138a6565b9150509250929050565b613c4781614960565b82525050565b613c5681614972565b82525050565b613c6581614972565b82525050565b6000613c768261478e565b613c8081856147a4565b9350613c908185602086016149ff565b613c9981614c67565b840191505092915050565b6000613caf82614799565b613cb981856147b5565b9350613cc98185602086016149ff565b613cd281614c67565b840191505092915050565b6000613ce882614799565b613cf281856147c6565b9350613d028185602086016149ff565b80840191505092915050565b60008154613d1b81614a5c565b613d2581866147c6565b94506001821660008114613d405760018114613d5157613d84565b60ff19831686528186019350613d84565b613d5a85614779565b60005b83811015613d7c57815481890152600182019150602081019050613d5d565b838801955050505b50505092915050565b6000613d9a6022836147b5565b9150613da582614c78565b604082019050919050565b6000613dbd6013836147b5565b9150613dc882614cc7565b602082019050919050565b6000613de06010836147b5565b9150613deb82614cf0565b602082019050919050565b6000613e036026836147b5565b9150613e0e82614d19565b604082019050919050565b6000613e26602a836147b5565b9150613e3182614d68565b604082019050919050565b6000613e49601f836147b5565b9150613e5482614db7565b602082019050919050565b6000613e6c6023836147b5565b9150613e7782614de0565b604082019050919050565b6000613e8f6025836147b5565b9150613e9a82614e2f565b604082019050919050565b6000613eb26031836147b5565b9150613ebd82614e7e565b604082019050919050565b6000613ed56015836147b5565b9150613ee082614ecd565b602082019050919050565b6000613ef86039836147b5565b9150613f0382614ef6565b604082019050919050565b6000613f1b601b836147b5565b9150613f2682614f45565b602082019050919050565b6000613f3e602b836147b5565b9150613f4982614f6e565b604082019050919050565b6000613f616015836147b5565b9150613f6c82614fbd565b602082019050919050565b6000613f846011836147b5565b9150613f8f82614fe6565b602082019050919050565b6000613fa76026836147b5565b9150613fb28261500f565b604082019050919050565b6000613fca6005836147c6565b9150613fd58261505e565b600582019050919050565b6000613fed601a836147b5565b9150613ff882615087565b602082019050919050565b60006140106032836147b5565b915061401b826150b0565b604082019050919050565b60006140336018836147b5565b915061403e826150ff565b602082019050919050565b60006140566022836147b5565b915061406182615128565b604082019050919050565b60006140796033836147b5565b915061408482615177565b604082019050919050565b600061409c601d836147b5565b91506140a7826151c6565b602082019050919050565b60006140bf6021836147b5565b91506140ca826151ef565b604082019050919050565b60006140e2602e836147b5565b91506140ed8261523e565b604082019050919050565b6000614105602f836147b5565b91506141108261528d565b604082019050919050565b60006141286016836147b5565b9150614133826152dc565b602082019050919050565b600061414b602d836147b5565b915061415682615305565b604082019050919050565b600061416e6022836147b5565b915061417982615354565b604082019050919050565b6101008201600082015161419b6000850182614226565b5060208201516141ae6020850182614226565b5060408201516141c16040850182614226565b5060608201516141d46060850182613c4d565b5060808201516141e76080850182614226565b5060a08201516141fa60a0850182614226565b5060c082015161420d60c0850182614226565b5060e082015161422060e0850182614226565b50505050565b61422f816149e6565b82525050565b61423e816149e6565b82525050565b60006142508285613d0e565b915061425c8284613cdd565b91508190509392505050565b60006142748285613d0e565b91506142808284613cdd565b915061428b82613fbd565b91508190509392505050565b60006020820190506142ac6000830184613c3e565b92915050565b60006080820190506142c76000830187613c3e565b6142d46020830186613c3e565b6142e16040830185614235565b81810360608301526142f38184613c6b565b905095945050505050565b60006020820190506143136000830184613c5c565b92915050565b600060208201905081810360008301526143338184613ca4565b905092915050565b6000602082019050818103600083015261435481613d8d565b9050919050565b6000602082019050818103600083015261437481613db0565b9050919050565b6000602082019050818103600083015261439481613dd3565b9050919050565b600060208201905081810360008301526143b481613df6565b9050919050565b600060208201905081810360008301526143d481613e19565b9050919050565b600060208201905081810360008301526143f481613e3c565b9050919050565b6000602082019050818103600083015261441481613e5f565b9050919050565b6000602082019050818103600083015261443481613e82565b9050919050565b6000602082019050818103600083015261445481613ea5565b9050919050565b6000602082019050818103600083015261447481613ec8565b9050919050565b6000602082019050818103600083015261449481613eeb565b9050919050565b600060208201905081810360008301526144b481613f0e565b9050919050565b600060208201905081810360008301526144d481613f31565b9050919050565b600060208201905081810360008301526144f481613f54565b9050919050565b6000602082019050818103600083015261451481613f77565b9050919050565b6000602082019050818103600083015261453481613f9a565b9050919050565b6000602082019050818103600083015261455481613fe0565b9050919050565b6000602082019050818103600083015261457481614003565b9050919050565b6000602082019050818103600083015261459481614026565b9050919050565b600060208201905081810360008301526145b481614049565b9050919050565b600060208201905081810360008301526145d48161406c565b9050919050565b600060208201905081810360008301526145f48161408f565b9050919050565b60006020820190508181036000830152614614816140b2565b9050919050565b60006020820190508181036000830152614634816140d5565b9050919050565b60006020820190508181036000830152614654816140f8565b9050919050565b600060208201905081810360008301526146748161411b565b9050919050565b600060208201905081810360008301526146948161413e565b9050919050565b600060208201905081810360008301526146b481614161565b9050919050565b6000610100820190506146d16000830184614184565b92915050565b60006020820190506146ec6000830184614235565b92915050565b60006146fc61470d565b90506147088282614a8e565b919050565b6000604051905090565b600067ffffffffffffffff82111561473257614731614c24565b5b61473b82614c67565b9050602081019050919050565b600067ffffffffffffffff82111561476357614762614c24565b5b61476c82614c67565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006147dc826149aa565b91506147e7836149aa565b9250826fffffffffffffffffffffffffffffffff0382111561480c5761480b614b39565b5b828201905092915050565b6000614822826149e6565b915061482d836149e6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561486257614861614b39565b5b828201905092915050565b6000614878826149e6565b9150614883836149e6565b92508261489357614892614b68565b5b828204905092915050565b60006148a9826149e6565b91506148b4836149e6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156148ed576148ec614b39565b5b828202905092915050565b6000614903826149aa565b915061490e836149aa565b92508282101561492157614920614b39565b5b828203905092915050565b6000614937826149e6565b9150614942836149e6565b92508282101561495557614954614b39565b5b828203905092915050565b600061496b826149c6565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614a1d578082015181840152602081019050614a02565b83811115614a2c576000848401525b50505050565b6000614a3d826149e6565b91506000821415614a5157614a50614b39565b5b600182039050919050565b60006002820490506001821680614a7457607f821691505b60208210811415614a8857614a87614bc6565b5b50919050565b614a9782614c67565b810181811067ffffffffffffffff82111715614ab657614ab5614c24565b5b80604052505050565b6000614aca826149e6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614afd57614afc614b39565b5b600182019050919050565b6000614b13826149e6565b9150614b1e836149e6565b925082614b2e57614b2d614b68565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206d7573742062652061637469766500000000000000000000000000600082015250565b7f4e6f7420656e6f75676820657468657200000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4578636565642062616c616e6365206f66207468697320636f6e747261637400600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f596f7520617265206e6f7420746865206f776e65720000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f457863656564206d617820737570706c79206f6620746f6b656e730000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f457863656564206d617820737570706c79000000000000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f457863656564206d617820746f6b656e73207065722074780000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f4d757374206d696e74206174206c65617374206f6e6500000000000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6153ac81614960565b81146153b757600080fd5b50565b6153c381614972565b81146153ce57600080fd5b50565b6153da8161497e565b81146153e557600080fd5b50565b6153f1816149e6565b81146153fc57600080fd5b5056fea26469706673582212208a9007a535146460bf56d25dae755b3d2c60acad35688a280d82c7cf188abb8e64736f6c6343000807003368747470733a2f2f6e667473657276696365732e73332e616d617a6f6e6177732e636f6d2f7472697070696e6f6b617962756c6c2f

Deployed Bytecode

0x6080604052600436106102725760003560e01c806370a082311161014f578063b88d4fde116100c1578063d7224ba01161007a578063d7224ba014610929578063dc33e68114610954578063e985e9c514610991578063eb8d2444146109ce578063f2fde38b146109f9578063f47c84c514610a2257610272565b8063b88d4fde1461083c578063b9bed05e14610865578063c4d7e2f81461088e578063c634d032146108a5578063c87b56dd146108c1578063d0a04eac146108fe57610272565b806385c8cc741161011357806385c8cc74146107405780638da5cb5b146107695780638f69ae6f14610794578063900c71f5146107bf57806395d89b41146107e8578063a22cb4651461081357610272565b806370a082311461066f578063715018a6146106ac57806378cf19e9146106c35780637b8940cc146106ec5780637ff9b5961461071557610272565b806342842e0e116101e85780635e307a48116101ac5780635e307a481461055f5780636352211e1461058a578063681c8bac146105c75780636a61e5fc146105f25780636c0360eb1461061b5780636f8b44b01461064657610272565b806342842e0e1461046a578063495e1eba146104935780634df8bb45146104bc5780634f6ccce7146104f957806355f804b31461053657610272565b8063205c28781161023a578063205c28781461037057806323b872dd146103995780632b57cfbb146103c25780632f745c59146103ff57806334918dfd1461043c5780633ccfd60b1461045357610272565b806301ffc9a71461027757806306fdde03146102b4578063081812fc146102df578063095ea7b31461031c57806318160ddd14610345575b600080fd5b34801561028357600080fd5b5061029e60048036038101906102999190613b2e565b610a4d565b6040516102ab91906142fe565b60405180910390f35b3480156102c057600080fd5b506102c9610b97565b6040516102d69190614319565b60405180910390f35b3480156102eb57600080fd5b5061030660048036038101906103019190613bd1565b610c29565b6040516103139190614297565b60405180910390f35b34801561032857600080fd5b50610343600480360381019061033e9190613aee565b610cae565b005b34801561035157600080fd5b5061035a610dc7565b60405161036791906146d7565b60405180910390f35b34801561037c57600080fd5b5061039760048036038101906103929190613aee565b610dd0565b005b3480156103a557600080fd5b506103c060048036038101906103bb91906139d8565b610eda565b005b3480156103ce57600080fd5b506103e960048036038101906103e49190613bfe565b610eea565b6040516103f691906146d7565b60405180910390f35b34801561040b57600080fd5b5061042660048036038101906104219190613aee565b610f5b565b60405161043391906146d7565b60405180910390f35b34801561044857600080fd5b50610451611159565b005b34801561045f57600080fd5b50610468611201565b005b34801561047657600080fd5b50610491600480360381019061048c91906139d8565b6112cc565b005b34801561049f57600080fd5b506104ba60048036038101906104b59190613bd1565b6112ec565b005b3480156104c857600080fd5b506104e360048036038101906104de919061396b565b611372565b6040516104f091906146bb565b60405180910390f35b34801561050557600080fd5b50610520600480360381019061051b9190613bd1565b6113e5565b60405161052d91906146d7565b60405180910390f35b34801561054257600080fd5b5061055d60048036038101906105589190613b88565b611438565b005b34801561056b57600080fd5b506105746114ce565b60405161058191906146d7565b60405180910390f35b34801561059657600080fd5b506105b160048036038101906105ac9190613bd1565b6114d4565b6040516105be9190614297565b60405180910390f35b3480156105d357600080fd5b506105dc6114ea565b6040516105e991906146d7565b60405180910390f35b3480156105fe57600080fd5b5061061960048036038101906106149190613bd1565b6114f0565b005b34801561062757600080fd5b50610630611576565b60405161063d9190614319565b60405180910390f35b34801561065257600080fd5b5061066d60048036038101906106689190613bd1565b611604565b005b34801561067b57600080fd5b506106966004803603810190610691919061396b565b61168a565b6040516106a391906146d7565b60405180910390f35b3480156106b857600080fd5b506106c1611773565b005b3480156106cf57600080fd5b506106ea60048036038101906106e59190613aee565b6117fb565b005b3480156106f857600080fd5b50610713600480360381019061070e9190613bd1565b6118dc565b005b34801561072157600080fd5b5061072a61197d565b60405161073791906146d7565b60405180910390f35b34801561074c57600080fd5b5061076760048036038101906107629190613bd1565b611983565b005b34801561077557600080fd5b5061077e611a09565b60405161078b9190614297565b60405180910390f35b3480156107a057600080fd5b506107a9611a33565b6040516107b691906146d7565b60405180910390f35b3480156107cb57600080fd5b506107e660048036038101906107e19190613bd1565b611a39565b005b3480156107f457600080fd5b506107fd611b1d565b60405161080a9190614319565b60405180910390f35b34801561081f57600080fd5b5061083a60048036038101906108359190613aae565b611baf565b005b34801561084857600080fd5b50610863600480360381019061085e9190613a2b565b611d30565b005b34801561087157600080fd5b5061088c60048036038101906108879190613bd1565b611d8c565b005b34801561089a57600080fd5b506108a3611e12565b005b6108bf60048036038101906108ba9190613bd1565b611e98565b005b3480156108cd57600080fd5b506108e860048036038101906108e39190613bd1565b612149565b6040516108f59190614319565b60405180910390f35b34801561090a57600080fd5b5061091361228b565b60405161092091906146d7565b60405180910390f35b34801561093557600080fd5b5061093e612291565b60405161094b91906146d7565b60405180910390f35b34801561096057600080fd5b5061097b6004803603810190610976919061396b565b612297565b60405161098891906146d7565b60405180910390f35b34801561099d57600080fd5b506109b860048036038101906109b39190613998565b6122a9565b6040516109c591906142fe565b60405180910390f35b3480156109da57600080fd5b506109e361233d565b6040516109f091906142fe565b60405180910390f35b348015610a0557600080fd5b50610a206004803603810190610a1b919061396b565b612350565b005b348015610a2e57600080fd5b50610a37612448565b604051610a4491906146d7565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b1857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b8057507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b905750610b8f8261244e565b5b9050919050565b606060018054610ba690614a5c565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd290614a5c565b8015610c1f5780601f10610bf457610100808354040283529160200191610c1f565b820191906000526020600020905b815481529060010190602001808311610c0257829003601f168201915b5050505050905090565b6000610c34826124b8565b610c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6a9061467b565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cb9826114d4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d219061459b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d496124c5565b73ffffffffffffffffffffffffffffffffffffffff161480610d785750610d7781610d726124c5565b6122a9565b5b610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dae9061447b565b60405180910390fd5b610dc28383836124cd565b505050565b60008054905090565b610dd86124c5565b73ffffffffffffffffffffffffffffffffffffffff16610df6611a09565b73ffffffffffffffffffffffffffffffffffffffff1614610e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e439061445b565b60405180910390fd5b47811115610e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e86906143db565b60405180910390fd5b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610ed5573d6000803e3d6000fd5b505050565b610ee583838361257f565b505050565b600080610ef683612297565b1115610f1157600a5483610f0a919061489e565b9050610f55565b601054831115610f3257600a54601054610f2b919061489e565b9050610f55565b6010548311610f5057600a5483610f49919061489e565b9050610f55565b600090505b92915050565b6000610f668361168a565b8210610fa7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9e9061433b565b60405180910390fd5b6000610fb1610dc7565b905060008060005b83811015611117576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146110ab57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561110357868414156110f4578195505050505050611153565b83806110ff90614abf565b9450505b50808061110f90614abf565b915050610fb9565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114a9061461b565b60405180910390fd5b92915050565b6111616124c5565b73ffffffffffffffffffffffffffffffffffffffff1661117f611a09565b73ffffffffffffffffffffffffffffffffffffffff16146111d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cc9061445b565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b6112096124c5565b73ffffffffffffffffffffffffffffffffffffffff16611227611a09565b73ffffffffffffffffffffffffffffffffffffffff161461127d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112749061445b565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156112c8573d6000803e3d6000fd5b5050565b6112e783838360405180602001604052806000815250611d30565b505050565b6112f46124c5565b73ffffffffffffffffffffffffffffffffffffffff16611312611a09565b73ffffffffffffffffffffffffffffffffffffffff1614611368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135f9061445b565b60405180910390fd5b80600c8190555050565b61137a6136fe565b604051806101000160405280600a548152602001600b548152602001600d548152602001600e60009054906101000a900460ff16151581526020016113bd610dc7565b815260200160105481526020016113d384612b38565b8152602001600c548152509050919050565b60006113ef610dc7565b8210611430576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611427906143fb565b60405180910390fd5b819050919050565b6114406124c5565b73ffffffffffffffffffffffffffffffffffffffff1661145e611a09565b73ffffffffffffffffffffffffffffffffffffffff16146114b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ab9061445b565b60405180910390fd5b80600990805190602001906114ca929190613745565b5050565b600b5481565b60006114df82612c21565b600001519050919050565b600c5481565b6114f86124c5565b73ffffffffffffffffffffffffffffffffffffffff16611516611a09565b73ffffffffffffffffffffffffffffffffffffffff161461156c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115639061445b565b60405180910390fd5b80600a8190555050565b6009805461158390614a5c565b80601f01602080910402602001604051908101604052809291908181526020018280546115af90614a5c565b80156115fc5780601f106115d1576101008083540402835291602001916115fc565b820191906000526020600020905b8154815290600101906020018083116115df57829003601f168201915b505050505081565b61160c6124c5565b73ffffffffffffffffffffffffffffffffffffffff1661162a611a09565b73ffffffffffffffffffffffffffffffffffffffff1614611680576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116779061445b565b60405180910390fd5b80600d8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f2906144bb565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61177b6124c5565b73ffffffffffffffffffffffffffffffffffffffff16611799611a09565b73ffffffffffffffffffffffffffffffffffffffff16146117ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e69061445b565b60405180910390fd5b6117f96000612e24565b565b6118036124c5565b73ffffffffffffffffffffffffffffffffffffffff16611821611a09565b73ffffffffffffffffffffffffffffffffffffffff1614611877576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186e9061445b565b60405180910390fd5b600d5481611883610dc7565b61188d9190614817565b11156118ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c59061449b565b60405180910390fd5b6118d88282612eea565b5050565b6118e46124c5565b73ffffffffffffffffffffffffffffffffffffffff16611902611a09565b73ffffffffffffffffffffffffffffffffffffffff1614611958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194f9061445b565b60405180910390fd5b80600f819055506001600e60006101000a81548160ff02191690831515021790555050565b600a5481565b61198b6124c5565b73ffffffffffffffffffffffffffffffffffffffff166119a9611a09565b73ffffffffffffffffffffffffffffffffffffffff16146119ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f69061445b565b60405180910390fd5b8060108190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b611a416124c5565b73ffffffffffffffffffffffffffffffffffffffff16611a5f611a09565b73ffffffffffffffffffffffffffffffffffffffff1614611ab5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aac9061445b565b60405180910390fd5b6002811415611aee576001601160006101000a81548160ff02191690836001811115611ae457611ae3614b97565b5b0217905550611b1a565b6000601160006101000a81548160ff02191690836001811115611b1457611b13614b97565b5b02179055505b50565b606060028054611b2c90614a5c565b80601f0160208091040260200160405190810160405280929190818152602001828054611b5890614a5c565b8015611ba55780601f10611b7a57610100808354040283529160200191611ba5565b820191906000526020600020905b815481529060010190602001808311611b8857829003601f168201915b5050505050905090565b611bb76124c5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1c9061453b565b60405180910390fd5b8060066000611c326124c5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611cdf6124c5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d2491906142fe565b60405180910390a35050565b611d3b84848461257f565b611d4784848484612f08565b611d86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7d906145bb565b60405180910390fd5b50505050565b611d946124c5565b73ffffffffffffffffffffffffffffffffffffffff16611db2611a09565b73ffffffffffffffffffffffffffffffffffffffff1614611e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dff9061445b565b60405180910390fd5b80600b8190555050565b611e1a6124c5565b73ffffffffffffffffffffffffffffffffffffffff16611e38611a09565b73ffffffffffffffffffffffffffffffffffffffff1614611e8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e859061445b565b60405180910390fd5b6000600f81905550565b600e60009054906101000a900460ff16611ee7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ede9061435b565b60405180910390fd5b600b54811115611f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f239061457b565b60405180910390fd5b60008111611f6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f669061465b565b60405180910390fd5b600d5481611f7b610dc7565b611f859190614817565b1115611fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbd906144fb565b60405180910390fd5b6000600f54118015611fe157506000611fde33612297565b11155b1561201857600f548110611ff557600f5490505b611fff3382612eea565b80600f5461200d919061492c565b600f81905550612146565b600061202333612b38565b111561207e57600a5481612037919061489e565b341015612079576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120709061437b565b60405180910390fd5b61213b565b6010548111156120df57600a54601054612098919061489e565b3410156120da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d19061437b565b60405180910390fd5b61213a565b601054811161213957600a54816120f6919061489e565b341015612138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212f9061437b565b60405180910390fd5b5b5b5b6121453382612eea565b5b50565b6060612154826124b8565b612193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218a906144db565b60405180910390fd5b6001808111156121a6576121a5614b97565b5b601160009054906101000a900460ff1660018111156121c8576121c7614b97565b5b141561222c576000600980546121dd90614a5c565b9050116121f95760405180602001604052806000815250612225565b60096122048361309f565b604051602001612215929190614244565b6040516020818303038152906040525b9050612286565b60006009805461223b90614a5c565b9050116122575760405180602001604052806000815250612283565b60096122628361309f565b604051602001612273929190614268565b6040516020818303038152906040525b90505b919050565b60105481565b60075481565b60006122a282612b38565b9050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e60009054906101000a900460ff1681565b6123586124c5565b73ffffffffffffffffffffffffffffffffffffffff16612376611a09565b73ffffffffffffffffffffffffffffffffffffffff16146123cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c39061445b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561243c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124339061439b565b60405180910390fd5b61244581612e24565b50565b600d5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061258a82612c21565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166125b16124c5565b73ffffffffffffffffffffffffffffffffffffffff16148061260d57506125d66124c5565b73ffffffffffffffffffffffffffffffffffffffff166125f584610c29565b73ffffffffffffffffffffffffffffffffffffffff16145b80612629575061262882600001516126236124c5565b6122a9565b5b90508061266b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126629061455b565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146126dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d49061451b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561274d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127449061441b565b60405180910390fd5b61275a8585856001613200565b61276a60008484600001516124cd565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166127d891906148f8565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661287c91906147d1565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846129829190614817565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612ac8576129f8816124b8565b15612ac7576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b308686866001613206565b505050505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ba09061443b565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b612c296137cb565b612c32826124b8565b612c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c68906143bb565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000fa8310612cd55760017f00000000000000000000000000000000000000000000000000000000000000fa84612cc8919061492c565b612cd29190614817565b90505b60008390505b818110612de3576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612dcf57809350505050612e1f565b508080612ddb90614a32565b915050612cdb565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e169061463b565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612f0482826040518060200160405280600081525061320c565b5050565b6000612f298473ffffffffffffffffffffffffffffffffffffffff166136eb565b15613092578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f526124c5565b8786866040518563ffffffff1660e01b8152600401612f7494939291906142b2565b602060405180830381600087803b158015612f8e57600080fd5b505af1925050508015612fbf57506040513d601f19601f82011682018060405250810190612fbc9190613b5b565b60015b613042573d8060008114612fef576040519150601f19603f3d011682016040523d82523d6000602084013e612ff4565b606091505b5060008151141561303a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613031906145bb565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613097565b600190505b949350505050565b606060008214156130e7576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506131fb565b600082905060005b6000821461311957808061310290614abf565b915050600a82613112919061486d565b91506130ef565b60008167ffffffffffffffff81111561313557613134614c24565b5b6040519080825280601f01601f1916602001820160405280156131675781602001600182028036833780820191505090505b5090505b600085146131f457600182613180919061492c565b9150600a8561318f9190614b08565b603061319b9190614817565b60f81b8183815181106131b1576131b0614bf5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856131ed919061486d565b945061316b565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613282576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613279906145fb565b60405180910390fd5b61328b816124b8565b156132cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132c2906145db565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000fa83111561332e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133259061469b565b60405180910390fd5b61333b6000858386613200565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161343891906147d1565b6fffffffffffffffffffffffffffffffff16815260200185836020015161345f91906147d1565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156136ce57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461366e6000888488612f08565b6136ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136a4906145bb565b60405180910390fd5b81806136b890614abf565b92505080806136c690614abf565b9150506135fd565b50806000819055506136e36000878588613206565b505050505050565b600080823b905060008111915050919050565b604051806101000160405280600081526020016000815260200160008152602001600015158152602001600081526020016000815260200160008152602001600081525090565b82805461375190614a5c565b90600052602060002090601f01602090048101928261377357600085556137ba565b82601f1061378c57805160ff19168380011785556137ba565b828001600101855582156137ba579182015b828111156137b957825182559160200191906001019061379e565b5b5090506137c79190613805565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561381e576000816000905550600101613806565b5090565b600061383561383084614717565b6146f2565b90508281526020810184848401111561385157613850614c58565b5b61385c8482856149f0565b509392505050565b600061387761387284614748565b6146f2565b90508281526020810184848401111561389357613892614c58565b5b61389e8482856149f0565b509392505050565b6000813590506138b5816153a3565b92915050565b6000813590506138ca816153ba565b92915050565b6000813590506138df816153d1565b92915050565b6000815190506138f4816153d1565b92915050565b600082601f83011261390f5761390e614c53565b5b813561391f848260208601613822565b91505092915050565b600082601f83011261393d5761393c614c53565b5b813561394d848260208601613864565b91505092915050565b600081359050613965816153e8565b92915050565b60006020828403121561398157613980614c62565b5b600061398f848285016138a6565b91505092915050565b600080604083850312156139af576139ae614c62565b5b60006139bd858286016138a6565b92505060206139ce858286016138a6565b9150509250929050565b6000806000606084860312156139f1576139f0614c62565b5b60006139ff868287016138a6565b9350506020613a10868287016138a6565b9250506040613a2186828701613956565b9150509250925092565b60008060008060808587031215613a4557613a44614c62565b5b6000613a53878288016138a6565b9450506020613a64878288016138a6565b9350506040613a7587828801613956565b925050606085013567ffffffffffffffff811115613a9657613a95614c5d565b5b613aa2878288016138fa565b91505092959194509250565b60008060408385031215613ac557613ac4614c62565b5b6000613ad3858286016138a6565b9250506020613ae4858286016138bb565b9150509250929050565b60008060408385031215613b0557613b04614c62565b5b6000613b13858286016138a6565b9250506020613b2485828601613956565b9150509250929050565b600060208284031215613b4457613b43614c62565b5b6000613b52848285016138d0565b91505092915050565b600060208284031215613b7157613b70614c62565b5b6000613b7f848285016138e5565b91505092915050565b600060208284031215613b9e57613b9d614c62565b5b600082013567ffffffffffffffff811115613bbc57613bbb614c5d565b5b613bc884828501613928565b91505092915050565b600060208284031215613be757613be6614c62565b5b6000613bf584828501613956565b91505092915050565b60008060408385031215613c1557613c14614c62565b5b6000613c2385828601613956565b9250506020613c34858286016138a6565b9150509250929050565b613c4781614960565b82525050565b613c5681614972565b82525050565b613c6581614972565b82525050565b6000613c768261478e565b613c8081856147a4565b9350613c908185602086016149ff565b613c9981614c67565b840191505092915050565b6000613caf82614799565b613cb981856147b5565b9350613cc98185602086016149ff565b613cd281614c67565b840191505092915050565b6000613ce882614799565b613cf281856147c6565b9350613d028185602086016149ff565b80840191505092915050565b60008154613d1b81614a5c565b613d2581866147c6565b94506001821660008114613d405760018114613d5157613d84565b60ff19831686528186019350613d84565b613d5a85614779565b60005b83811015613d7c57815481890152600182019150602081019050613d5d565b838801955050505b50505092915050565b6000613d9a6022836147b5565b9150613da582614c78565b604082019050919050565b6000613dbd6013836147b5565b9150613dc882614cc7565b602082019050919050565b6000613de06010836147b5565b9150613deb82614cf0565b602082019050919050565b6000613e036026836147b5565b9150613e0e82614d19565b604082019050919050565b6000613e26602a836147b5565b9150613e3182614d68565b604082019050919050565b6000613e49601f836147b5565b9150613e5482614db7565b602082019050919050565b6000613e6c6023836147b5565b9150613e7782614de0565b604082019050919050565b6000613e8f6025836147b5565b9150613e9a82614e2f565b604082019050919050565b6000613eb26031836147b5565b9150613ebd82614e7e565b604082019050919050565b6000613ed56015836147b5565b9150613ee082614ecd565b602082019050919050565b6000613ef86039836147b5565b9150613f0382614ef6565b604082019050919050565b6000613f1b601b836147b5565b9150613f2682614f45565b602082019050919050565b6000613f3e602b836147b5565b9150613f4982614f6e565b604082019050919050565b6000613f616015836147b5565b9150613f6c82614fbd565b602082019050919050565b6000613f846011836147b5565b9150613f8f82614fe6565b602082019050919050565b6000613fa76026836147b5565b9150613fb28261500f565b604082019050919050565b6000613fca6005836147c6565b9150613fd58261505e565b600582019050919050565b6000613fed601a836147b5565b9150613ff882615087565b602082019050919050565b60006140106032836147b5565b915061401b826150b0565b604082019050919050565b60006140336018836147b5565b915061403e826150ff565b602082019050919050565b60006140566022836147b5565b915061406182615128565b604082019050919050565b60006140796033836147b5565b915061408482615177565b604082019050919050565b600061409c601d836147b5565b91506140a7826151c6565b602082019050919050565b60006140bf6021836147b5565b91506140ca826151ef565b604082019050919050565b60006140e2602e836147b5565b91506140ed8261523e565b604082019050919050565b6000614105602f836147b5565b91506141108261528d565b604082019050919050565b60006141286016836147b5565b9150614133826152dc565b602082019050919050565b600061414b602d836147b5565b915061415682615305565b604082019050919050565b600061416e6022836147b5565b915061417982615354565b604082019050919050565b6101008201600082015161419b6000850182614226565b5060208201516141ae6020850182614226565b5060408201516141c16040850182614226565b5060608201516141d46060850182613c4d565b5060808201516141e76080850182614226565b5060a08201516141fa60a0850182614226565b5060c082015161420d60c0850182614226565b5060e082015161422060e0850182614226565b50505050565b61422f816149e6565b82525050565b61423e816149e6565b82525050565b60006142508285613d0e565b915061425c8284613cdd565b91508190509392505050565b60006142748285613d0e565b91506142808284613cdd565b915061428b82613fbd565b91508190509392505050565b60006020820190506142ac6000830184613c3e565b92915050565b60006080820190506142c76000830187613c3e565b6142d46020830186613c3e565b6142e16040830185614235565b81810360608301526142f38184613c6b565b905095945050505050565b60006020820190506143136000830184613c5c565b92915050565b600060208201905081810360008301526143338184613ca4565b905092915050565b6000602082019050818103600083015261435481613d8d565b9050919050565b6000602082019050818103600083015261437481613db0565b9050919050565b6000602082019050818103600083015261439481613dd3565b9050919050565b600060208201905081810360008301526143b481613df6565b9050919050565b600060208201905081810360008301526143d481613e19565b9050919050565b600060208201905081810360008301526143f481613e3c565b9050919050565b6000602082019050818103600083015261441481613e5f565b9050919050565b6000602082019050818103600083015261443481613e82565b9050919050565b6000602082019050818103600083015261445481613ea5565b9050919050565b6000602082019050818103600083015261447481613ec8565b9050919050565b6000602082019050818103600083015261449481613eeb565b9050919050565b600060208201905081810360008301526144b481613f0e565b9050919050565b600060208201905081810360008301526144d481613f31565b9050919050565b600060208201905081810360008301526144f481613f54565b9050919050565b6000602082019050818103600083015261451481613f77565b9050919050565b6000602082019050818103600083015261453481613f9a565b9050919050565b6000602082019050818103600083015261455481613fe0565b9050919050565b6000602082019050818103600083015261457481614003565b9050919050565b6000602082019050818103600083015261459481614026565b9050919050565b600060208201905081810360008301526145b481614049565b9050919050565b600060208201905081810360008301526145d48161406c565b9050919050565b600060208201905081810360008301526145f48161408f565b9050919050565b60006020820190508181036000830152614614816140b2565b9050919050565b60006020820190508181036000830152614634816140d5565b9050919050565b60006020820190508181036000830152614654816140f8565b9050919050565b600060208201905081810360008301526146748161411b565b9050919050565b600060208201905081810360008301526146948161413e565b9050919050565b600060208201905081810360008301526146b481614161565b9050919050565b6000610100820190506146d16000830184614184565b92915050565b60006020820190506146ec6000830184614235565b92915050565b60006146fc61470d565b90506147088282614a8e565b919050565b6000604051905090565b600067ffffffffffffffff82111561473257614731614c24565b5b61473b82614c67565b9050602081019050919050565b600067ffffffffffffffff82111561476357614762614c24565b5b61476c82614c67565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006147dc826149aa565b91506147e7836149aa565b9250826fffffffffffffffffffffffffffffffff0382111561480c5761480b614b39565b5b828201905092915050565b6000614822826149e6565b915061482d836149e6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561486257614861614b39565b5b828201905092915050565b6000614878826149e6565b9150614883836149e6565b92508261489357614892614b68565b5b828204905092915050565b60006148a9826149e6565b91506148b4836149e6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156148ed576148ec614b39565b5b828202905092915050565b6000614903826149aa565b915061490e836149aa565b92508282101561492157614920614b39565b5b828203905092915050565b6000614937826149e6565b9150614942836149e6565b92508282101561495557614954614b39565b5b828203905092915050565b600061496b826149c6565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614a1d578082015181840152602081019050614a02565b83811115614a2c576000848401525b50505050565b6000614a3d826149e6565b91506000821415614a5157614a50614b39565b5b600182039050919050565b60006002820490506001821680614a7457607f821691505b60208210811415614a8857614a87614bc6565b5b50919050565b614a9782614c67565b810181811067ffffffffffffffff82111715614ab657614ab5614c24565b5b80604052505050565b6000614aca826149e6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614afd57614afc614b39565b5b600182019050919050565b6000614b13826149e6565b9150614b1e836149e6565b925082614b2e57614b2d614b68565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206d7573742062652061637469766500000000000000000000000000600082015250565b7f4e6f7420656e6f75676820657468657200000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4578636565642062616c616e6365206f66207468697320636f6e747261637400600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f596f7520617265206e6f7420746865206f776e65720000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f457863656564206d617820737570706c79206f6620746f6b656e730000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f457863656564206d617820737570706c79000000000000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f457863656564206d617820746f6b656e73207065722074780000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f4d757374206d696e74206174206c65617374206f6e6500000000000000000000600082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6153ac81614960565b81146153b757600080fd5b50565b6153c381614972565b81146153ce57600080fd5b50565b6153da8161497e565b81146153e557600080fd5b50565b6153f1816149e6565b81146153fc57600080fd5b5056fea26469706673582212208a9007a535146460bf56d25dae755b3d2c60acad35688a280d82c7cf188abb8e64736f6c63430008070033

Deployed Bytecode Sourcemap

39349:6138:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24537:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26263:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27797:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27360:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23098:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41067:198;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28647:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41993:437;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23729:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41625:89;;;;;;;;;;;;;:::i;:::-;;40918:140;;;;;;;;;;;;;:::i;:::-;;28852:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45352:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40404:506;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23261:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41519:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39556:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26086:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39596:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43740:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39403:79;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44969:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24963:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38495:103;;;;;;;;;;;;;:::i;:::-;;41274:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41722:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39491:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45200:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37855:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39720:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44497:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26418:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28065:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29072:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45076:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41897:88;;;;;;;;;;;;;:::i;:::-;;42504:1228;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43855:634;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39853:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33487:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44847:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28402:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39680:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38753:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39639: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;41067:198::-;38086:12;:10;:12::i;:::-;38075:23;;:7;:5;:7::i;:::-;:23;;;38067:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;41161:21:::1;41151:6;:31;;41143:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;41237:2;41229:20;;:28;41250:6;41229:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;41067:198:::0;;:::o;28647:142::-;28755:28;28765:4;28771:2;28775:7;28755:9;:28::i;:::-;28647:142;;;:::o;41993:437::-;42069:7;42115:1;42092:20;42105:6;42092:12;:20::i;:::-;:24;42089:315;;;42156:10;;42139:14;:27;;;;:::i;:::-;42132:34;;;;42089:315;42204:21;;42187:14;:38;42184:220;;;42272:10;;42248:21;;:34;;;;:::i;:::-;42241:41;;;;42184:220;42321:21;;42303:14;:39;42300:104;;42382:10;;42365:14;:27;;;;:::i;:::-;42358:34;;;;42300:104;42421:1;42414:8;;41993: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;41625:89::-;38086:12;:10;:12::i;:::-;38075:23;;:7;:5;:7::i;:::-;:23;;;38067:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;41694:12:::1;;;;;;;;;;;41693:13;41678:12;;:28;;;;;;;;;;;;;;;;;;41625:89::o:0;40918:140::-;38086:12;:10;:12::i;:::-;38075:23;;:7;:5;:7::i;:::-;:23;;;38067:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;40966:12:::1;40981:21;40966:36;;41021:10;41013:28;;:37;41042:7;41013:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;40955:103;40918:140::o:0;28852:157::-;28964:39;28981:4;28987:2;28991:7;28964:39;;;;;;;;;;;;:16;:39::i;:::-;28852:157;;;:::o;45352:132::-;38086:12;:10;:12::i;:::-;38075:23;;:7;:5;:7::i;:::-;:23;;;38067:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;45457:19:::1;45436:18;:40;;;;45352:132:::0;:::o;40404:506::-;40459:18;;:::i;:::-;40497:405;;;;;;;;40536:10;;40497:405;;;;40577:14;;40497:405;;;;40618:10;;40497:405;;;;40657:12;;;;;;;;;;;40497:405;;;;;;40705:13;:11;:13::i;:::-;40497:405;;;;40758:21;;40497:405;;;;40814:21;40828:6;40814:13;:21::i;:::-;40497:405;;;;40872:18;;40497:405;;;40490:412;;40404:506;;;:::o;23261:177::-;23328:7;23360:13;:11;:13::i;:::-;23352:5;:21;23344:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;23427:5;23420:12;;23261:177;;;:::o;41519:94::-;38086:12;:10;:12::i;:::-;38075:23;;:7;:5;:7::i;:::-;:23;;;38067:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;41599:6:::1;41589:7;:16;;;;;;;;;;;;:::i;:::-;;41519:94:::0;:::o;39556:31::-;;;;:::o;26086:118::-;26150:7;26173:20;26185:7;26173:11;:20::i;:::-;:25;;;26166:32;;26086:118;;;:::o;39596:34::-;;;;:::o;43740:107::-;38086:12;:10;:12::i;:::-;38075:23;;:7;:5;:7::i;:::-;:23;;;38067:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;43826:13:::1;43813:10;:26;;;;43740:107:::0;:::o;39403:79::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44969:99::-;38086:12;:10;:12::i;:::-;38075:23;;:7;:5;:7::i;:::-;:23;;;38067:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;45050:10:::1;45037;:23;;;;44969: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;41274:224::-;38086:12;:10;:12::i;:::-;38075:23;;:7;:5;:7::i;:::-;:23;;;38067:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;41408:10:::1;;41390:14;41374:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:44;;41366:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;41461:29;41471:2;41475:14;41461:9;:29::i;:::-;41274:224:::0;;:::o;41722:167::-;38086:12;:10;:12::i;:::-;38075:23;;:7;:5;:7::i;:::-;:23;;;38067:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;41830:21:::1;41807:20;:44;;;;41877:4;41862:12;;:19;;;;;;;;;;;;;;;;;;41722:167:::0;:::o;39491:44::-;;;;:::o;45200:144::-;38086:12;:10;:12::i;:::-;38075:23;;:7;:5;:7::i;:::-;:23;;;38067:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;45314:22:::1;45290:21;:46;;;;45200:144:::0;:::o;37855:87::-;37901:7;37928:6;;;;;;;;;;;37921:13;;37855:87;:::o;39720:39::-;;;;:::o;44497:223::-;38086:12;:10;:12::i;:::-;38075:23;;:7;:5;:7::i;:::-;:23;;;38067:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;44578:1:::1;44570:4;:9;44566:147;;;44611:21;44596:12;;:36;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;44566:147;;;44680:21;44665:12;;:36;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;44566:147;44497: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;45076:116::-;38086:12;:10;:12::i;:::-;38075:23;;:7;:5;:7::i;:::-;:23;;;38067:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;45169:15:::1;45152:14;:32;;;;45076:116:::0;:::o;41897:88::-;38086:12;:10;:12::i;:::-;38075:23;;:7;:5;:7::i;:::-;:23;;;38067:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;41976:1:::1;41953:20;:24;;;;41897:88::o:0;42504:1228::-;42578:12;;;;;;;;;;;42570:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;42651:14;;42633;:32;;42625:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;42730:1;42713:14;:18;42705:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;42811:10;;42793:14;42777:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:44;;42769:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;42890:1;42867:20;;:24;:57;;;;;42923:1;42895:24;42908:10;42895:12;:24::i;:::-;:29;;42867:57;42864:861;;;42961:20;;42943:14;:38;42940:114;;43018:20;;43001:37;;42940:114;43068:37;43078:10;43090:14;43068:9;:37::i;:::-;43166:14;43143:20;;:37;;;;:::i;:::-;43120:20;:60;;;;42864:861;;;43243:1;43215:25;43229:10;43215:13;:25::i;:::-;:29;43212:450;;;43302:10;;43285:14;:27;;;;:::i;:::-;43272:9;:40;;43264:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;43212:450;;;43376:21;;43359:14;:38;43356:306;;;43462:10;;43438:21;;:34;;;;:::i;:::-;43425:9;:47;;43417:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;43356:306;;;43536:21;;43518:14;:39;43515:147;;43615:10;;43598:14;:27;;;;:::i;:::-;43585:9;:40;;43577:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;43515:147;43356:306;43212:450;43676:37;43686:10;43698:14;43676:9;:37::i;:::-;42864:861;42504:1228;:::o;43855:634::-;43921:13;43961:17;43969:8;43961:7;:17::i;:::-;43953:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;44035:21;44019:37;;;;;;;;:::i;:::-;;:12;;;;;;;;;;;:37;;;;;;;;:::i;:::-;;;44015:467;;;44102:1;44084:7;44078:21;;;;;:::i;:::-;;;:25;:165;;;;;;;;;;;;;;;;;44160:7;44184:26;44201:8;44184:16;:26::i;:::-;44127:98;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44078:165;44071:172;;;;44015:467;44305:1;44287:7;44281:21;;;;;:::i;:::-;;;:25;:189;;;;;;;;;;;;;;;;;44363:7;44387:26;44404:8;44387:16;:26::i;:::-;44330:122;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44281:189;44274:196;;43855:634;;;;:::o;39853:37::-;;;;:::o;33487:43::-;;;;:::o;44847:113::-;44905:7;44932:20;44946:5;44932:13;:20::i;:::-;44925:27;;44847:113;;;:::o;28402:186::-;28524:4;28547:18;:25;28566:5;28547:25;;;;;;;;;;;;;;;:35;28573:8;28547:35;;;;;;;;;;;;;;;;;;;;;;;;;28540:42;;28402:186;;;;:::o;39680: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;39639: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://8a9007a535146460bf56d25dae755b3d2c60acad35688a280d82c7cf188abb8e
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.