ETH Price: $3,471.20 (-1.29%)
Gas: 6 Gwei

Token

PussyPass (PSSY)
 

Overview

Max Total Supply

1,212 PSSY

Holders

519

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 PSSY
0x8daf1eca2af4f72afd26f6568f098a5154ccc5ca
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:
PussyPass

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// 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)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    string memory baseURI = _baseURI();
    return
      bytes(baseURI).length > 0
        ? string(abi.encodePacked(baseURI, tokenId.toString(), ".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)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "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);
    }
}


pragma solidity ^0.8.0;

contract PussyPass is ERC721A, Ownable {
    uint256 public NFT_PRICE = 0 ether;
    uint256 public MAX_SUPPLY = 3000;
    uint256 public MAX_MINTS = 250;
    string public baseURI = "";
    string public baseExtension = ".json";
     bool public paused = true;   
    
    constructor() ERC721A("PussyPass", "PSSY", MAX_MINTS, MAX_SUPPLY) {  
    }
    

    function Mint(uint256 numTokens) public payable {
        require(!paused, "Paused");
        require(totalSupply() + numTokens <= MAX_SUPPLY, "Max supply exceeded");
        require(numTokens == 1);
        _safeMint(msg.sender, numTokens);
    }

    function DevMint(uint256 numTokens) public payable onlyOwner {
        _safeMint(msg.sender, numTokens);
    }


    function pause(bool _state) public onlyOwner {
        paused = _state;
    }

    function setBaseURI(string memory newBaseURI) public onlyOwner {
        baseURI = newBaseURI;
    }
    function tokenURI(uint256 _tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(_exists(_tokenId), "That token doesn't exist");
        return
            bytes(baseURI).length > 0
                ? string(
                    abi.encodePacked(
                        baseURI,
                        Strings.toString(_tokenId),
                        baseExtension
                    )
                )
                : "";
    }

    function setPrice(uint256 newPrice) public onlyOwner {
        NFT_PRICE = newPrice;
    }

    function setMaxMints(uint256 newMax) public onlyOwner {
        MAX_MINTS = newMax;
    }

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

    function withdrawMoney() external onlyOwner {
      (bool success, ) = msg.sender.call{value: address(this).balance}("");
      require(success, "WITHDRAW FAILED!");
    }
}

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":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"DevMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"MAX_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"NFT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526000805560006007556000600955610bb8600a5560fa600b5560405180602001604052806000815250600c908051906020019062000044929190620002f4565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600d908051906020019062000092929190620002f4565b506001600e60006101000a81548160ff021916908315150217905550348015620000bb57600080fd5b506040518060400160405280600981526020017f50757373795061737300000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f5053535900000000000000000000000000000000000000000000000000000000815250600b54600a546000811162000174576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200016b906200042b565b60405180910390fd5b60008211620001ba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001b190620004c3565b60405180910390fd5b8360019080519060200190620001d2929190620002f4565b508260029080519060200190620001eb929190620002f4565b508160a0818152505080608081815250505050505062000220620002146200022660201b60201c565b6200022e60201b60201c565b6200054a565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003029062000514565b90600052602060002090601f01602090048101928262000326576000855562000372565b82601f106200034157805160ff191683800117855562000372565b8280016001018555821562000372579182015b828111156200037157825182559160200191906001019062000354565b5b50905062000381919062000385565b5090565b5b80821115620003a057600081600090555060010162000386565b5090565b600082825260208201905092915050565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b600062000413602e83620003a4565b91506200042082620003b5565b604082019050919050565b60006020820190508181036000830152620004468162000404565b9050919050565b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b6000620004ab602783620003a4565b9150620004b8826200044d565b604082019050919050565b60006020820190508181036000830152620004de816200049c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200052d57607f821691505b60208210811415620005445762000543620004e5565b5b50919050565b60805160a0516144cc6200057b600039600081816121620152818161218b01526127810152600050506144cc6000f3fe6080604052600436106101ee5760003560e01c80636c0360eb1161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd146106bb578063cce132d1146106f8578063d7224ba014610723578063e985e9c51461074e578063f2fde38b1461078b576101ee565b8063a22cb46514610627578063ac44600214610650578063b88d4fde14610667578063c668286214610690576101ee565b806379c9cb7b116100dc57806379c9cb7b1461057f5780638da5cb5b146105a857806391b7f5ed146105d357806395d89b41146105fc576101ee565b80636c0360eb146104e45780636dc41da71461050f57806370a082311461052b578063715018a614610568576101ee565b80632f745c591161018557806355f804b31161015457806355f804b3146104285780635c975abb146104515780636352211e1461047c578063676dd563146104b9576101ee565b80632f745c591461035a57806332cb6b0c1461039757806342842e0e146103c25780634f6ccce7146103eb576101ee565b8063081812fc116101c1578063081812fc146102a0578063095ea7b3146102dd57806318160ddd1461030657806323b872dd14610331576101ee565b806301ffc9a7146101f357806302329a291461023057806306fdde03146102595780630788370314610284575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612d07565b6107b4565b6040516102279190612d4f565b60405180910390f35b34801561023c57600080fd5b5061025760048036038101906102529190612d96565b6108fe565b005b34801561026557600080fd5b5061026e610997565b60405161027b9190612e5c565b60405180910390f35b61029e60048036038101906102999190612eb4565b610a29565b005b3480156102ac57600080fd5b506102c760048036038101906102c29190612eb4565b610aea565b6040516102d49190612f22565b60405180910390f35b3480156102e957600080fd5b5061030460048036038101906102ff9190612f69565b610b6f565b005b34801561031257600080fd5b5061031b610c88565b6040516103289190612fb8565b60405180910390f35b34801561033d57600080fd5b5061035860048036038101906103539190612fd3565b610c91565b005b34801561036657600080fd5b50610381600480360381019061037c9190612f69565b610ca1565b60405161038e9190612fb8565b60405180910390f35b3480156103a357600080fd5b506103ac610e9f565b6040516103b99190612fb8565b60405180910390f35b3480156103ce57600080fd5b506103e960048036038101906103e49190612fd3565b610ea5565b005b3480156103f757600080fd5b50610412600480360381019061040d9190612eb4565b610ec5565b60405161041f9190612fb8565b60405180910390f35b34801561043457600080fd5b5061044f600480360381019061044a919061315b565b610f18565b005b34801561045d57600080fd5b50610466610fae565b6040516104739190612d4f565b60405180910390f35b34801561048857600080fd5b506104a3600480360381019061049e9190612eb4565b610fc1565b6040516104b09190612f22565b60405180910390f35b3480156104c557600080fd5b506104ce610fd7565b6040516104db9190612fb8565b60405180910390f35b3480156104f057600080fd5b506104f9610fdd565b6040516105069190612e5c565b60405180910390f35b61052960048036038101906105249190612eb4565b61106b565b005b34801561053757600080fd5b50610552600480360381019061054d91906131a4565b6110f4565b60405161055f9190612fb8565b60405180910390f35b34801561057457600080fd5b5061057d6111dd565b005b34801561058b57600080fd5b506105a660048036038101906105a19190612eb4565b611265565b005b3480156105b457600080fd5b506105bd6112eb565b6040516105ca9190612f22565b60405180910390f35b3480156105df57600080fd5b506105fa60048036038101906105f59190612eb4565b611315565b005b34801561060857600080fd5b5061061161139b565b60405161061e9190612e5c565b60405180910390f35b34801561063357600080fd5b5061064e600480360381019061064991906131d1565b61142d565b005b34801561065c57600080fd5b506106656115ae565b005b34801561067357600080fd5b5061068e600480360381019061068991906132b2565b6116d9565b005b34801561069c57600080fd5b506106a5611735565b6040516106b29190612e5c565b60405180910390f35b3480156106c757600080fd5b506106e260048036038101906106dd9190612eb4565b6117c3565b6040516106ef9190612e5c565b60405180910390f35b34801561070457600080fd5b5061070d61186e565b60405161071a9190612fb8565b60405180910390f35b34801561072f57600080fd5b50610738611874565b6040516107459190612fb8565b60405180910390f35b34801561075a57600080fd5b5061077560048036038101906107709190613335565b61187a565b6040516107829190612d4f565b60405180910390f35b34801561079757600080fd5b506107b260048036038101906107ad91906131a4565b61190e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108e757507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108f757506108f682611a06565b5b9050919050565b610906611a70565b73ffffffffffffffffffffffffffffffffffffffff166109246112eb565b73ffffffffffffffffffffffffffffffffffffffff161461097a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610971906133c1565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6060600180546109a690613410565b80601f01602080910402602001604051908101604052809291908181526020018280546109d290613410565b8015610a1f5780601f106109f457610100808354040283529160200191610a1f565b820191906000526020600020905b815481529060010190602001808311610a0257829003601f168201915b5050505050905090565b600e60009054906101000a900460ff1615610a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a709061348e565b60405180910390fd5b600a5481610a85610c88565b610a8f91906134dd565b1115610ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac79061357f565b60405180910390fd5b60018114610add57600080fd5b610ae73382611a78565b50565b6000610af582611a96565b610b34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2b90613611565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b7a82610fc1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be2906136a3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c0a611a70565b73ffffffffffffffffffffffffffffffffffffffff161480610c395750610c3881610c33611a70565b61187a565b5b610c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6f90613735565b60405180910390fd5b610c83838383611aa3565b505050565b60008054905090565b610c9c838383611b55565b505050565b6000610cac836110f4565b8210610ced576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce4906137c7565b60405180910390fd5b6000610cf7610c88565b905060008060005b83811015610e5d576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610df157806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e495786841415610e3a578195505050505050610e99565b8380610e45906137e7565b9450505b508080610e55906137e7565b915050610cff565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e90906138a2565b60405180910390fd5b92915050565b600a5481565b610ec0838383604051806020016040528060008152506116d9565b505050565b6000610ecf610c88565b8210610f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0790613934565b60405180910390fd5b819050919050565b610f20611a70565b73ffffffffffffffffffffffffffffffffffffffff16610f3e6112eb565b73ffffffffffffffffffffffffffffffffffffffff1614610f94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8b906133c1565b60405180910390fd5b80600c9080519060200190610faa929190612bbe565b5050565b600e60009054906101000a900460ff1681565b6000610fcc8261210e565b600001519050919050565b60095481565b600c8054610fea90613410565b80601f016020809104026020016040519081016040528092919081815260200182805461101690613410565b80156110635780601f1061103857610100808354040283529160200191611063565b820191906000526020600020905b81548152906001019060200180831161104657829003601f168201915b505050505081565b611073611a70565b73ffffffffffffffffffffffffffffffffffffffff166110916112eb565b73ffffffffffffffffffffffffffffffffffffffff16146110e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110de906133c1565b60405180910390fd5b6110f13382611a78565b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611165576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115c906139c6565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6111e5611a70565b73ffffffffffffffffffffffffffffffffffffffff166112036112eb565b73ffffffffffffffffffffffffffffffffffffffff1614611259576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611250906133c1565b60405180910390fd5b6112636000612311565b565b61126d611a70565b73ffffffffffffffffffffffffffffffffffffffff1661128b6112eb565b73ffffffffffffffffffffffffffffffffffffffff16146112e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d8906133c1565b60405180910390fd5b80600b8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61131d611a70565b73ffffffffffffffffffffffffffffffffffffffff1661133b6112eb565b73ffffffffffffffffffffffffffffffffffffffff1614611391576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611388906133c1565b60405180910390fd5b8060098190555050565b6060600280546113aa90613410565b80601f01602080910402602001604051908101604052809291908181526020018280546113d690613410565b80156114235780601f106113f857610100808354040283529160200191611423565b820191906000526020600020905b81548152906001019060200180831161140657829003601f168201915b5050505050905090565b611435611a70565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149a90613a32565b60405180910390fd5b80600660006114b0611a70565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661155d611a70565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115a29190612d4f565b60405180910390a35050565b6115b6611a70565b73ffffffffffffffffffffffffffffffffffffffff166115d46112eb565b73ffffffffffffffffffffffffffffffffffffffff161461162a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611621906133c1565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161165090613a83565b60006040518083038185875af1925050503d806000811461168d576040519150601f19603f3d011682016040523d82523d6000602084013e611692565b606091505b50509050806116d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cd90613ae4565b60405180910390fd5b50565b6116e4848484611b55565b6116f0848484846123d7565b61172f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172690613b76565b60405180910390fd5b50505050565b600d805461174290613410565b80601f016020809104026020016040519081016040528092919081815260200182805461176e90613410565b80156117bb5780601f10611790576101008083540402835291602001916117bb565b820191906000526020600020905b81548152906001019060200180831161179e57829003601f168201915b505050505081565b60606117ce82611a96565b61180d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180490613be2565b60405180910390fd5b6000600c805461181c90613410565b9050116118385760405180602001604052806000815250611867565b600c6118438361255f565b600d60405160200161185793929190613cd2565b6040516020818303038152906040525b9050919050565b600b5481565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611916611a70565b73ffffffffffffffffffffffffffffffffffffffff166119346112eb565b73ffffffffffffffffffffffffffffffffffffffff161461198a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611981906133c1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f190613d75565b60405180910390fd5b611a0381612311565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b611a928282604051806020016040528060008152506126c0565b5050565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611b608261210e565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611b87611a70565b73ffffffffffffffffffffffffffffffffffffffff161480611be35750611bac611a70565b73ffffffffffffffffffffffffffffffffffffffff16611bcb84610aea565b73ffffffffffffffffffffffffffffffffffffffff16145b80611bff5750611bfe8260000151611bf9611a70565b61187a565b5b905080611c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3890613e07565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611caa90613e99565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1a90613f2b565b60405180910390fd5b611d308585856001612b9f565b611d406000848460000151611aa3565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611dae9190613f67565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611e529190613f9b565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611f5891906134dd565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561209e57611fce81611a96565b1561209d576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121068686866001612ba5565b505050505050565b612116612c44565b61211f82611a96565b61215e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215590614053565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106121c25760017f0000000000000000000000000000000000000000000000000000000000000000846121b59190614073565b6121bf91906134dd565b90505b60008390505b8181106122d0576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122bc5780935050505061230c565b5080806122c8906140a7565b9150506121c8565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230390614143565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006123f88473ffffffffffffffffffffffffffffffffffffffff16612bab565b15612552578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612421611a70565b8786866040518563ffffffff1660e01b815260040161244394939291906141b8565b6020604051808303816000875af192505050801561247f57506040513d601f19601f8201168201806040525081019061247c9190614219565b60015b612502573d80600081146124af576040519150601f19603f3d011682016040523d82523d6000602084013e6124b4565b606091505b506000815114156124fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f190613b76565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612557565b600190505b949350505050565b606060008214156125a7576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126bb565b600082905060005b600082146125d95780806125c2906137e7565b915050600a826125d29190614275565b91506125af565b60008167ffffffffffffffff8111156125f5576125f4613030565b5b6040519080825280601f01601f1916602001820160405280156126275781602001600182028036833780820191505090505b5090505b600085146126b4576001826126409190614073565b9150600a8561264f91906142a6565b603061265b91906134dd565b60f81b818381518110612671576126706142d7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126ad9190614275565b945061262b565b8093505050505b919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612736576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272d90614378565b60405180910390fd5b61273f81611a96565b1561277f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612776906143e4565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008311156127e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d990614476565b60405180910390fd5b6127ef6000858386612b9f565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516128ec9190613f9b565b6fffffffffffffffffffffffffffffffff1681526020018583602001516129139190613f9b565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612b8257818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b2260008884886123d7565b612b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5890613b76565b60405180910390fd5b8180612b6c906137e7565b9250508080612b7a906137e7565b915050612ab1565b5080600081905550612b976000878588612ba5565b505050505050565b50505050565b50505050565b600080823b905060008111915050919050565b828054612bca90613410565b90600052602060002090601f016020900481019282612bec5760008555612c33565b82601f10612c0557805160ff1916838001178555612c33565b82800160010185558215612c33579182015b82811115612c32578251825591602001919060010190612c17565b5b509050612c409190612c7e565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612c97576000816000905550600101612c7f565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ce481612caf565b8114612cef57600080fd5b50565b600081359050612d0181612cdb565b92915050565b600060208284031215612d1d57612d1c612ca5565b5b6000612d2b84828501612cf2565b91505092915050565b60008115159050919050565b612d4981612d34565b82525050565b6000602082019050612d646000830184612d40565b92915050565b612d7381612d34565b8114612d7e57600080fd5b50565b600081359050612d9081612d6a565b92915050565b600060208284031215612dac57612dab612ca5565b5b6000612dba84828501612d81565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612dfd578082015181840152602081019050612de2565b83811115612e0c576000848401525b50505050565b6000601f19601f8301169050919050565b6000612e2e82612dc3565b612e388185612dce565b9350612e48818560208601612ddf565b612e5181612e12565b840191505092915050565b60006020820190508181036000830152612e768184612e23565b905092915050565b6000819050919050565b612e9181612e7e565b8114612e9c57600080fd5b50565b600081359050612eae81612e88565b92915050565b600060208284031215612eca57612ec9612ca5565b5b6000612ed884828501612e9f565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f0c82612ee1565b9050919050565b612f1c81612f01565b82525050565b6000602082019050612f376000830184612f13565b92915050565b612f4681612f01565b8114612f5157600080fd5b50565b600081359050612f6381612f3d565b92915050565b60008060408385031215612f8057612f7f612ca5565b5b6000612f8e85828601612f54565b9250506020612f9f85828601612e9f565b9150509250929050565b612fb281612e7e565b82525050565b6000602082019050612fcd6000830184612fa9565b92915050565b600080600060608486031215612fec57612feb612ca5565b5b6000612ffa86828701612f54565b935050602061300b86828701612f54565b925050604061301c86828701612e9f565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61306882612e12565b810181811067ffffffffffffffff8211171561308757613086613030565b5b80604052505050565b600061309a612c9b565b90506130a6828261305f565b919050565b600067ffffffffffffffff8211156130c6576130c5613030565b5b6130cf82612e12565b9050602081019050919050565b82818337600083830152505050565b60006130fe6130f9846130ab565b613090565b90508281526020810184848401111561311a5761311961302b565b5b6131258482856130dc565b509392505050565b600082601f83011261314257613141613026565b5b81356131528482602086016130eb565b91505092915050565b60006020828403121561317157613170612ca5565b5b600082013567ffffffffffffffff81111561318f5761318e612caa565b5b61319b8482850161312d565b91505092915050565b6000602082840312156131ba576131b9612ca5565b5b60006131c884828501612f54565b91505092915050565b600080604083850312156131e8576131e7612ca5565b5b60006131f685828601612f54565b925050602061320785828601612d81565b9150509250929050565b600067ffffffffffffffff82111561322c5761322b613030565b5b61323582612e12565b9050602081019050919050565b600061325561325084613211565b613090565b9050828152602081018484840111156132715761327061302b565b5b61327c8482856130dc565b509392505050565b600082601f83011261329957613298613026565b5b81356132a9848260208601613242565b91505092915050565b600080600080608085870312156132cc576132cb612ca5565b5b60006132da87828801612f54565b94505060206132eb87828801612f54565b93505060406132fc87828801612e9f565b925050606085013567ffffffffffffffff81111561331d5761331c612caa565b5b61332987828801613284565b91505092959194509250565b6000806040838503121561334c5761334b612ca5565b5b600061335a85828601612f54565b925050602061336b85828601612f54565b9150509250929050565b7f596f7520617265206e6f7420746865206f776e65720000000000000000000000600082015250565b60006133ab601583612dce565b91506133b682613375565b602082019050919050565b600060208201905081810360008301526133da8161339e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061342857607f821691505b6020821081141561343c5761343b6133e1565b5b50919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b6000613478600683612dce565b915061348382613442565b602082019050919050565b600060208201905081810360008301526134a78161346b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006134e882612e7e565b91506134f383612e7e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613528576135276134ae565b5b828201905092915050565b7f4d617820737570706c7920657863656564656400000000000000000000000000600082015250565b6000613569601383612dce565b915061357482613533565b602082019050919050565b600060208201905081810360008301526135988161355c565b9050919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b60006135fb602d83612dce565b91506136068261359f565b604082019050919050565b6000602082019050818103600083015261362a816135ee565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b600061368d602283612dce565b915061369882613631565b604082019050919050565b600060208201905081810360008301526136bc81613680565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b600061371f603983612dce565b915061372a826136c3565b604082019050919050565b6000602082019050818103600083015261374e81613712565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b60006137b1602283612dce565b91506137bc82613755565b604082019050919050565b600060208201905081810360008301526137e0816137a4565b9050919050565b60006137f282612e7e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613825576138246134ae565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b600061388c602e83612dce565b915061389782613830565b604082019050919050565b600060208201905081810360008301526138bb8161387f565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b600061391e602383612dce565b9150613929826138c2565b604082019050919050565b6000602082019050818103600083015261394d81613911565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b60006139b0602b83612dce565b91506139bb82613954565b604082019050919050565b600060208201905081810360008301526139df816139a3565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000613a1c601a83612dce565b9150613a27826139e6565b602082019050919050565b60006020820190508181036000830152613a4b81613a0f565b9050919050565b600081905092915050565b50565b6000613a6d600083613a52565b9150613a7882613a5d565b600082019050919050565b6000613a8e82613a60565b9150819050919050565b7f5749544844524157204641494c45442100000000000000000000000000000000600082015250565b6000613ace601083612dce565b9150613ad982613a98565b602082019050919050565b60006020820190508181036000830152613afd81613ac1565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000613b60603383612dce565b9150613b6b82613b04565b604082019050919050565b60006020820190508181036000830152613b8f81613b53565b9050919050565b7f5468617420746f6b656e20646f65736e27742065786973740000000000000000600082015250565b6000613bcc601883612dce565b9150613bd782613b96565b602082019050919050565b60006020820190508181036000830152613bfb81613bbf565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154613c2f81613410565b613c398186613c02565b94506001821660008114613c545760018114613c6557613c98565b60ff19831686528186019350613c98565b613c6e85613c0d565b60005b83811015613c9057815481890152600182019150602081019050613c71565b838801955050505b50505092915050565b6000613cac82612dc3565b613cb68185613c02565b9350613cc6818560208601612ddf565b80840191505092915050565b6000613cde8286613c22565b9150613cea8285613ca1565b9150613cf68284613c22565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613d5f602683612dce565b9150613d6a82613d03565b604082019050919050565b60006020820190508181036000830152613d8e81613d52565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000613df1603283612dce565b9150613dfc82613d95565b604082019050919050565b60006020820190508181036000830152613e2081613de4565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000613e83602683612dce565b9150613e8e82613e27565b604082019050919050565b60006020820190508181036000830152613eb281613e76565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613f15602583612dce565b9150613f2082613eb9565b604082019050919050565b60006020820190508181036000830152613f4481613f08565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b6000613f7282613f4b565b9150613f7d83613f4b565b925082821015613f9057613f8f6134ae565b5b828203905092915050565b6000613fa682613f4b565b9150613fb183613f4b565b9250826fffffffffffffffffffffffffffffffff03821115613fd657613fd56134ae565b5b828201905092915050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b600061403d602a83612dce565b915061404882613fe1565b604082019050919050565b6000602082019050818103600083015261406c81614030565b9050919050565b600061407e82612e7e565b915061408983612e7e565b92508282101561409c5761409b6134ae565b5b828203905092915050565b60006140b282612e7e565b915060008214156140c6576140c56134ae565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b600061412d602f83612dce565b9150614138826140d1565b604082019050919050565b6000602082019050818103600083015261415c81614120565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061418a82614163565b614194818561416e565b93506141a4818560208601612ddf565b6141ad81612e12565b840191505092915050565b60006080820190506141cd6000830187612f13565b6141da6020830186612f13565b6141e76040830185612fa9565b81810360608301526141f9818461417f565b905095945050505050565b60008151905061421381612cdb565b92915050565b60006020828403121561422f5761422e612ca5565b5b600061423d84828501614204565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061428082612e7e565b915061428b83612e7e565b92508261429b5761429a614246565b5b828204905092915050565b60006142b182612e7e565b91506142bc83612e7e565b9250826142cc576142cb614246565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614362602183612dce565b915061436d82614306565b604082019050919050565b6000602082019050818103600083015261439181614355565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b60006143ce601d83612dce565b91506143d982614398565b602082019050919050565b600060208201905081810360008301526143fd816143c1565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6000614460602283612dce565b915061446b82614404565b604082019050919050565b6000602082019050818103600083015261448f81614453565b905091905056fea264697066735822122093bc2fe68567d335dcd683436070c8831621a9470dced3c4adfcbc510fb25c4d64736f6c634300080b0033

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80636c0360eb1161010d578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd146106bb578063cce132d1146106f8578063d7224ba014610723578063e985e9c51461074e578063f2fde38b1461078b576101ee565b8063a22cb46514610627578063ac44600214610650578063b88d4fde14610667578063c668286214610690576101ee565b806379c9cb7b116100dc57806379c9cb7b1461057f5780638da5cb5b146105a857806391b7f5ed146105d357806395d89b41146105fc576101ee565b80636c0360eb146104e45780636dc41da71461050f57806370a082311461052b578063715018a614610568576101ee565b80632f745c591161018557806355f804b31161015457806355f804b3146104285780635c975abb146104515780636352211e1461047c578063676dd563146104b9576101ee565b80632f745c591461035a57806332cb6b0c1461039757806342842e0e146103c25780634f6ccce7146103eb576101ee565b8063081812fc116101c1578063081812fc146102a0578063095ea7b3146102dd57806318160ddd1461030657806323b872dd14610331576101ee565b806301ffc9a7146101f357806302329a291461023057806306fdde03146102595780630788370314610284575b600080fd5b3480156101ff57600080fd5b5061021a60048036038101906102159190612d07565b6107b4565b6040516102279190612d4f565b60405180910390f35b34801561023c57600080fd5b5061025760048036038101906102529190612d96565b6108fe565b005b34801561026557600080fd5b5061026e610997565b60405161027b9190612e5c565b60405180910390f35b61029e60048036038101906102999190612eb4565b610a29565b005b3480156102ac57600080fd5b506102c760048036038101906102c29190612eb4565b610aea565b6040516102d49190612f22565b60405180910390f35b3480156102e957600080fd5b5061030460048036038101906102ff9190612f69565b610b6f565b005b34801561031257600080fd5b5061031b610c88565b6040516103289190612fb8565b60405180910390f35b34801561033d57600080fd5b5061035860048036038101906103539190612fd3565b610c91565b005b34801561036657600080fd5b50610381600480360381019061037c9190612f69565b610ca1565b60405161038e9190612fb8565b60405180910390f35b3480156103a357600080fd5b506103ac610e9f565b6040516103b99190612fb8565b60405180910390f35b3480156103ce57600080fd5b506103e960048036038101906103e49190612fd3565b610ea5565b005b3480156103f757600080fd5b50610412600480360381019061040d9190612eb4565b610ec5565b60405161041f9190612fb8565b60405180910390f35b34801561043457600080fd5b5061044f600480360381019061044a919061315b565b610f18565b005b34801561045d57600080fd5b50610466610fae565b6040516104739190612d4f565b60405180910390f35b34801561048857600080fd5b506104a3600480360381019061049e9190612eb4565b610fc1565b6040516104b09190612f22565b60405180910390f35b3480156104c557600080fd5b506104ce610fd7565b6040516104db9190612fb8565b60405180910390f35b3480156104f057600080fd5b506104f9610fdd565b6040516105069190612e5c565b60405180910390f35b61052960048036038101906105249190612eb4565b61106b565b005b34801561053757600080fd5b50610552600480360381019061054d91906131a4565b6110f4565b60405161055f9190612fb8565b60405180910390f35b34801561057457600080fd5b5061057d6111dd565b005b34801561058b57600080fd5b506105a660048036038101906105a19190612eb4565b611265565b005b3480156105b457600080fd5b506105bd6112eb565b6040516105ca9190612f22565b60405180910390f35b3480156105df57600080fd5b506105fa60048036038101906105f59190612eb4565b611315565b005b34801561060857600080fd5b5061061161139b565b60405161061e9190612e5c565b60405180910390f35b34801561063357600080fd5b5061064e600480360381019061064991906131d1565b61142d565b005b34801561065c57600080fd5b506106656115ae565b005b34801561067357600080fd5b5061068e600480360381019061068991906132b2565b6116d9565b005b34801561069c57600080fd5b506106a5611735565b6040516106b29190612e5c565b60405180910390f35b3480156106c757600080fd5b506106e260048036038101906106dd9190612eb4565b6117c3565b6040516106ef9190612e5c565b60405180910390f35b34801561070457600080fd5b5061070d61186e565b60405161071a9190612fb8565b60405180910390f35b34801561072f57600080fd5b50610738611874565b6040516107459190612fb8565b60405180910390f35b34801561075a57600080fd5b5061077560048036038101906107709190613335565b61187a565b6040516107829190612d4f565b60405180910390f35b34801561079757600080fd5b506107b260048036038101906107ad91906131a4565b61190e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061087f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108e757507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108f757506108f682611a06565b5b9050919050565b610906611a70565b73ffffffffffffffffffffffffffffffffffffffff166109246112eb565b73ffffffffffffffffffffffffffffffffffffffff161461097a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610971906133c1565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b6060600180546109a690613410565b80601f01602080910402602001604051908101604052809291908181526020018280546109d290613410565b8015610a1f5780601f106109f457610100808354040283529160200191610a1f565b820191906000526020600020905b815481529060010190602001808311610a0257829003601f168201915b5050505050905090565b600e60009054906101000a900460ff1615610a79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a709061348e565b60405180910390fd5b600a5481610a85610c88565b610a8f91906134dd565b1115610ad0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac79061357f565b60405180910390fd5b60018114610add57600080fd5b610ae73382611a78565b50565b6000610af582611a96565b610b34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2b90613611565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b7a82610fc1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610beb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be2906136a3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c0a611a70565b73ffffffffffffffffffffffffffffffffffffffff161480610c395750610c3881610c33611a70565b61187a565b5b610c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6f90613735565b60405180910390fd5b610c83838383611aa3565b505050565b60008054905090565b610c9c838383611b55565b505050565b6000610cac836110f4565b8210610ced576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce4906137c7565b60405180910390fd5b6000610cf7610c88565b905060008060005b83811015610e5d576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610df157806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e495786841415610e3a578195505050505050610e99565b8380610e45906137e7565b9450505b508080610e55906137e7565b915050610cff565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e90906138a2565b60405180910390fd5b92915050565b600a5481565b610ec0838383604051806020016040528060008152506116d9565b505050565b6000610ecf610c88565b8210610f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0790613934565b60405180910390fd5b819050919050565b610f20611a70565b73ffffffffffffffffffffffffffffffffffffffff16610f3e6112eb565b73ffffffffffffffffffffffffffffffffffffffff1614610f94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8b906133c1565b60405180910390fd5b80600c9080519060200190610faa929190612bbe565b5050565b600e60009054906101000a900460ff1681565b6000610fcc8261210e565b600001519050919050565b60095481565b600c8054610fea90613410565b80601f016020809104026020016040519081016040528092919081815260200182805461101690613410565b80156110635780601f1061103857610100808354040283529160200191611063565b820191906000526020600020905b81548152906001019060200180831161104657829003601f168201915b505050505081565b611073611a70565b73ffffffffffffffffffffffffffffffffffffffff166110916112eb565b73ffffffffffffffffffffffffffffffffffffffff16146110e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110de906133c1565b60405180910390fd5b6110f13382611a78565b50565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611165576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115c906139c6565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6111e5611a70565b73ffffffffffffffffffffffffffffffffffffffff166112036112eb565b73ffffffffffffffffffffffffffffffffffffffff1614611259576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611250906133c1565b60405180910390fd5b6112636000612311565b565b61126d611a70565b73ffffffffffffffffffffffffffffffffffffffff1661128b6112eb565b73ffffffffffffffffffffffffffffffffffffffff16146112e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d8906133c1565b60405180910390fd5b80600b8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61131d611a70565b73ffffffffffffffffffffffffffffffffffffffff1661133b6112eb565b73ffffffffffffffffffffffffffffffffffffffff1614611391576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611388906133c1565b60405180910390fd5b8060098190555050565b6060600280546113aa90613410565b80601f01602080910402602001604051908101604052809291908181526020018280546113d690613410565b80156114235780601f106113f857610100808354040283529160200191611423565b820191906000526020600020905b81548152906001019060200180831161140657829003601f168201915b5050505050905090565b611435611a70565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149a90613a32565b60405180910390fd5b80600660006114b0611a70565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661155d611a70565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115a29190612d4f565b60405180910390a35050565b6115b6611a70565b73ffffffffffffffffffffffffffffffffffffffff166115d46112eb565b73ffffffffffffffffffffffffffffffffffffffff161461162a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611621906133c1565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161165090613a83565b60006040518083038185875af1925050503d806000811461168d576040519150601f19603f3d011682016040523d82523d6000602084013e611692565b606091505b50509050806116d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cd90613ae4565b60405180910390fd5b50565b6116e4848484611b55565b6116f0848484846123d7565b61172f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172690613b76565b60405180910390fd5b50505050565b600d805461174290613410565b80601f016020809104026020016040519081016040528092919081815260200182805461176e90613410565b80156117bb5780601f10611790576101008083540402835291602001916117bb565b820191906000526020600020905b81548152906001019060200180831161179e57829003601f168201915b505050505081565b60606117ce82611a96565b61180d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180490613be2565b60405180910390fd5b6000600c805461181c90613410565b9050116118385760405180602001604052806000815250611867565b600c6118438361255f565b600d60405160200161185793929190613cd2565b6040516020818303038152906040525b9050919050565b600b5481565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611916611a70565b73ffffffffffffffffffffffffffffffffffffffff166119346112eb565b73ffffffffffffffffffffffffffffffffffffffff161461198a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611981906133c1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f190613d75565b60405180910390fd5b611a0381612311565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b611a928282604051806020016040528060008152506126c0565b5050565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611b608261210e565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611b87611a70565b73ffffffffffffffffffffffffffffffffffffffff161480611be35750611bac611a70565b73ffffffffffffffffffffffffffffffffffffffff16611bcb84610aea565b73ffffffffffffffffffffffffffffffffffffffff16145b80611bff5750611bfe8260000151611bf9611a70565b61187a565b5b905080611c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3890613e07565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611cb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611caa90613e99565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611d23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1a90613f2b565b60405180910390fd5b611d308585856001612b9f565b611d406000848460000151611aa3565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611dae9190613f67565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611e529190613f9b565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611f5891906134dd565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561209e57611fce81611a96565b1561209d576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121068686866001612ba5565b505050505050565b612116612c44565b61211f82611a96565b61215e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215590614053565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000fa83106121c25760017f00000000000000000000000000000000000000000000000000000000000000fa846121b59190614073565b6121bf91906134dd565b90505b60008390505b8181106122d0576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122bc5780935050505061230c565b5080806122c8906140a7565b9150506121c8565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230390614143565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006123f88473ffffffffffffffffffffffffffffffffffffffff16612bab565b15612552578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612421611a70565b8786866040518563ffffffff1660e01b815260040161244394939291906141b8565b6020604051808303816000875af192505050801561247f57506040513d601f19601f8201168201806040525081019061247c9190614219565b60015b612502573d80600081146124af576040519150601f19603f3d011682016040523d82523d6000602084013e6124b4565b606091505b506000815114156124fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f190613b76565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612557565b600190505b949350505050565b606060008214156125a7576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126bb565b600082905060005b600082146125d95780806125c2906137e7565b915050600a826125d29190614275565b91506125af565b60008167ffffffffffffffff8111156125f5576125f4613030565b5b6040519080825280601f01601f1916602001820160405280156126275781602001600182028036833780820191505090505b5090505b600085146126b4576001826126409190614073565b9150600a8561264f91906142a6565b603061265b91906134dd565b60f81b818381518110612671576126706142d7565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126ad9190614275565b945061262b565b8093505050505b919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612736576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272d90614378565b60405180910390fd5b61273f81611a96565b1561277f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612776906143e4565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000fa8311156127e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d990614476565b60405180910390fd5b6127ef6000858386612b9f565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516128ec9190613f9b565b6fffffffffffffffffffffffffffffffff1681526020018583602001516129139190613f9b565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612b8257818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b2260008884886123d7565b612b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5890613b76565b60405180910390fd5b8180612b6c906137e7565b9250508080612b7a906137e7565b915050612ab1565b5080600081905550612b976000878588612ba5565b505050505050565b50505050565b50505050565b600080823b905060008111915050919050565b828054612bca90613410565b90600052602060002090601f016020900481019282612bec5760008555612c33565b82601f10612c0557805160ff1916838001178555612c33565b82800160010185558215612c33579182015b82811115612c32578251825591602001919060010190612c17565b5b509050612c409190612c7e565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612c97576000816000905550600101612c7f565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612ce481612caf565b8114612cef57600080fd5b50565b600081359050612d0181612cdb565b92915050565b600060208284031215612d1d57612d1c612ca5565b5b6000612d2b84828501612cf2565b91505092915050565b60008115159050919050565b612d4981612d34565b82525050565b6000602082019050612d646000830184612d40565b92915050565b612d7381612d34565b8114612d7e57600080fd5b50565b600081359050612d9081612d6a565b92915050565b600060208284031215612dac57612dab612ca5565b5b6000612dba84828501612d81565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612dfd578082015181840152602081019050612de2565b83811115612e0c576000848401525b50505050565b6000601f19601f8301169050919050565b6000612e2e82612dc3565b612e388185612dce565b9350612e48818560208601612ddf565b612e5181612e12565b840191505092915050565b60006020820190508181036000830152612e768184612e23565b905092915050565b6000819050919050565b612e9181612e7e565b8114612e9c57600080fd5b50565b600081359050612eae81612e88565b92915050565b600060208284031215612eca57612ec9612ca5565b5b6000612ed884828501612e9f565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f0c82612ee1565b9050919050565b612f1c81612f01565b82525050565b6000602082019050612f376000830184612f13565b92915050565b612f4681612f01565b8114612f5157600080fd5b50565b600081359050612f6381612f3d565b92915050565b60008060408385031215612f8057612f7f612ca5565b5b6000612f8e85828601612f54565b9250506020612f9f85828601612e9f565b9150509250929050565b612fb281612e7e565b82525050565b6000602082019050612fcd6000830184612fa9565b92915050565b600080600060608486031215612fec57612feb612ca5565b5b6000612ffa86828701612f54565b935050602061300b86828701612f54565b925050604061301c86828701612e9f565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61306882612e12565b810181811067ffffffffffffffff8211171561308757613086613030565b5b80604052505050565b600061309a612c9b565b90506130a6828261305f565b919050565b600067ffffffffffffffff8211156130c6576130c5613030565b5b6130cf82612e12565b9050602081019050919050565b82818337600083830152505050565b60006130fe6130f9846130ab565b613090565b90508281526020810184848401111561311a5761311961302b565b5b6131258482856130dc565b509392505050565b600082601f83011261314257613141613026565b5b81356131528482602086016130eb565b91505092915050565b60006020828403121561317157613170612ca5565b5b600082013567ffffffffffffffff81111561318f5761318e612caa565b5b61319b8482850161312d565b91505092915050565b6000602082840312156131ba576131b9612ca5565b5b60006131c884828501612f54565b91505092915050565b600080604083850312156131e8576131e7612ca5565b5b60006131f685828601612f54565b925050602061320785828601612d81565b9150509250929050565b600067ffffffffffffffff82111561322c5761322b613030565b5b61323582612e12565b9050602081019050919050565b600061325561325084613211565b613090565b9050828152602081018484840111156132715761327061302b565b5b61327c8482856130dc565b509392505050565b600082601f83011261329957613298613026565b5b81356132a9848260208601613242565b91505092915050565b600080600080608085870312156132cc576132cb612ca5565b5b60006132da87828801612f54565b94505060206132eb87828801612f54565b93505060406132fc87828801612e9f565b925050606085013567ffffffffffffffff81111561331d5761331c612caa565b5b61332987828801613284565b91505092959194509250565b6000806040838503121561334c5761334b612ca5565b5b600061335a85828601612f54565b925050602061336b85828601612f54565b9150509250929050565b7f596f7520617265206e6f7420746865206f776e65720000000000000000000000600082015250565b60006133ab601583612dce565b91506133b682613375565b602082019050919050565b600060208201905081810360008301526133da8161339e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061342857607f821691505b6020821081141561343c5761343b6133e1565b5b50919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b6000613478600683612dce565b915061348382613442565b602082019050919050565b600060208201905081810360008301526134a78161346b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006134e882612e7e565b91506134f383612e7e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613528576135276134ae565b5b828201905092915050565b7f4d617820737570706c7920657863656564656400000000000000000000000000600082015250565b6000613569601383612dce565b915061357482613533565b602082019050919050565b600060208201905081810360008301526135988161355c565b9050919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b60006135fb602d83612dce565b91506136068261359f565b604082019050919050565b6000602082019050818103600083015261362a816135ee565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b600061368d602283612dce565b915061369882613631565b604082019050919050565b600060208201905081810360008301526136bc81613680565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b600061371f603983612dce565b915061372a826136c3565b604082019050919050565b6000602082019050818103600083015261374e81613712565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b60006137b1602283612dce565b91506137bc82613755565b604082019050919050565b600060208201905081810360008301526137e0816137a4565b9050919050565b60006137f282612e7e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613825576138246134ae565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b600061388c602e83612dce565b915061389782613830565b604082019050919050565b600060208201905081810360008301526138bb8161387f565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b600061391e602383612dce565b9150613929826138c2565b604082019050919050565b6000602082019050818103600083015261394d81613911565b9050919050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b60006139b0602b83612dce565b91506139bb82613954565b604082019050919050565b600060208201905081810360008301526139df816139a3565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b6000613a1c601a83612dce565b9150613a27826139e6565b602082019050919050565b60006020820190508181036000830152613a4b81613a0f565b9050919050565b600081905092915050565b50565b6000613a6d600083613a52565b9150613a7882613a5d565b600082019050919050565b6000613a8e82613a60565b9150819050919050565b7f5749544844524157204641494c45442100000000000000000000000000000000600082015250565b6000613ace601083612dce565b9150613ad982613a98565b602082019050919050565b60006020820190508181036000830152613afd81613ac1565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b6000613b60603383612dce565b9150613b6b82613b04565b604082019050919050565b60006020820190508181036000830152613b8f81613b53565b9050919050565b7f5468617420746f6b656e20646f65736e27742065786973740000000000000000600082015250565b6000613bcc601883612dce565b9150613bd782613b96565b602082019050919050565b60006020820190508181036000830152613bfb81613bbf565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154613c2f81613410565b613c398186613c02565b94506001821660008114613c545760018114613c6557613c98565b60ff19831686528186019350613c98565b613c6e85613c0d565b60005b83811015613c9057815481890152600182019150602081019050613c71565b838801955050505b50505092915050565b6000613cac82612dc3565b613cb68185613c02565b9350613cc6818560208601612ddf565b80840191505092915050565b6000613cde8286613c22565b9150613cea8285613ca1565b9150613cf68284613c22565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613d5f602683612dce565b9150613d6a82613d03565b604082019050919050565b60006020820190508181036000830152613d8e81613d52565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000613df1603283612dce565b9150613dfc82613d95565b604082019050919050565b60006020820190508181036000830152613e2081613de4565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000613e83602683612dce565b9150613e8e82613e27565b604082019050919050565b60006020820190508181036000830152613eb281613e76565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613f15602583612dce565b9150613f2082613eb9565b604082019050919050565b60006020820190508181036000830152613f4481613f08565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b6000613f7282613f4b565b9150613f7d83613f4b565b925082821015613f9057613f8f6134ae565b5b828203905092915050565b6000613fa682613f4b565b9150613fb183613f4b565b9250826fffffffffffffffffffffffffffffffff03821115613fd657613fd56134ae565b5b828201905092915050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b600061403d602a83612dce565b915061404882613fe1565b604082019050919050565b6000602082019050818103600083015261406c81614030565b9050919050565b600061407e82612e7e565b915061408983612e7e565b92508282101561409c5761409b6134ae565b5b828203905092915050565b60006140b282612e7e565b915060008214156140c6576140c56134ae565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b600061412d602f83612dce565b9150614138826140d1565b604082019050919050565b6000602082019050818103600083015261415c81614120565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061418a82614163565b614194818561416e565b93506141a4818560208601612ddf565b6141ad81612e12565b840191505092915050565b60006080820190506141cd6000830187612f13565b6141da6020830186612f13565b6141e76040830185612fa9565b81810360608301526141f9818461417f565b905095945050505050565b60008151905061421381612cdb565b92915050565b60006020828403121561422f5761422e612ca5565b5b600061423d84828501614204565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061428082612e7e565b915061428b83612e7e565b92508261429b5761429a614246565b5b828204905092915050565b60006142b182612e7e565b91506142bc83612e7e565b9250826142cc576142cb614246565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614362602183612dce565b915061436d82614306565b604082019050919050565b6000602082019050818103600083015261439181614355565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b60006143ce601d83612dce565b91506143d982614398565b602082019050919050565b600060208201905081810360008301526143fd816143c1565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6000614460602283612dce565b915061446b82614404565b604082019050919050565b6000602082019050818103600083015261448f81614453565b905091905056fea264697066735822122093bc2fe68567d335dcd683436070c8831621a9470dced3c4adfcbc510fb25c4d64736f6c634300080b0033

Deployed Bytecode Sourcemap

39608:1956:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24744:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40362:79;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26470:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39980:252;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28004:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27567:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23305:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28854:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23936:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39695:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29059:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23468:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40449:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39849:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26293:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39654:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39771:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40240:112;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25170:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38725:103;;;;;;;;;;;;;:::i;:::-;;41172:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38085:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41072:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26625:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28272:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41387:174;;;;;;;;;;;;;:::i;:::-;;29279:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39804:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40557:507;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39734:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33694:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28609:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38983:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24744:370;24871:4;24916:25;24901:40;;;:11;:40;;;;:99;;;;24967:33;24952:48;;;:11;:48;;;;24901:99;:160;;;;25026:35;25011:50;;;:11;:50;;;;24901:160;:207;;;;25072:36;25096:11;25072:23;:36::i;:::-;24901:207;24887:221;;24744:370;;;:::o;40362:79::-;38316:12;:10;:12::i;:::-;38305:23;;:7;:5;:7::i;:::-;:23;;;38297:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;40427:6:::1;40418;;:15;;;;;;;;;;;;;;;;;;40362:79:::0;:::o;26470:94::-;26524:13;26553:5;26546:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26470:94;:::o;39980:252::-;40048:6;;;;;;;;;;;40047:7;40039:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;40113:10;;40100:9;40084:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:39;;40076:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;40179:1;40166:9;:14;40158:23;;;;;;40192:32;40202:10;40214:9;40192;:32::i;:::-;39980:252;:::o;28004:204::-;28072:7;28096:16;28104:7;28096;:16::i;:::-;28088:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;28178:15;:24;28194:7;28178:24;;;;;;;;;;;;;;;;;;;;;28171:31;;28004:204;;;:::o;27567:379::-;27636:13;27652:24;27668:7;27652:15;:24::i;:::-;27636:40;;27697:5;27691:11;;:2;:11;;;;27683:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;27782:5;27766:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27791:37;27808:5;27815:12;:10;:12::i;:::-;27791:16;:37::i;:::-;27766:62;27750:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;27912:28;27921:2;27925:7;27934:5;27912:8;:28::i;:::-;27629:317;27567:379;;:::o;23305:94::-;23358:7;23381:12;;23374:19;;23305:94;:::o;28854:142::-;28962:28;28972:4;28978:2;28982:7;28962:9;:28::i;:::-;28854:142;;;:::o;23936:744::-;24045:7;24080:16;24090:5;24080:9;:16::i;:::-;24072:5;:24;24064:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;24142:22;24167:13;:11;:13::i;:::-;24142:38;;24187:19;24217:25;24267:9;24262:350;24286:14;24282:1;:18;24262:350;;;24316:31;24350:11;:14;24362:1;24350:14;;;;;;;;;;;24316:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24403:1;24377:28;;:9;:14;;;:28;;;24373:89;;24438:9;:14;;;24418:34;;24373:89;24495:5;24474:26;;:17;:26;;;24470:135;;;24532:5;24517:11;:20;24513:59;;;24559:1;24552:8;;;;;;;;;24513:59;24582:13;;;;;:::i;:::-;;;;24470:135;24307:305;24302:3;;;;;:::i;:::-;;;;24262:350;;;;24618:56;;;;;;;;;;:::i;:::-;;;;;;;;23936:744;;;;;:::o;39695:32::-;;;;:::o;29059:157::-;29171:39;29188:4;29194:2;29198:7;29171:39;;;;;;;;;;;;:16;:39::i;:::-;29059:157;;;:::o;23468:177::-;23535:7;23567:13;:11;:13::i;:::-;23559:5;:21;23551:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;23634:5;23627:12;;23468:177;;;:::o;40449:102::-;38316:12;:10;:12::i;:::-;38305:23;;:7;:5;:7::i;:::-;:23;;;38297:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;40533:10:::1;40523:7;:20;;;;;;;;;;;;:::i;:::-;;40449:102:::0;:::o;39849:25::-;;;;;;;;;;;;;:::o;26293:118::-;26357:7;26380:20;26392:7;26380:11;:20::i;:::-;:25;;;26373:32;;26293:118;;;:::o;39654:34::-;;;;:::o;39771:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;40240:112::-;38316:12;:10;:12::i;:::-;38305:23;;:7;:5;:7::i;:::-;:23;;;38297:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;40312:32:::1;40322:10;40334:9;40312;:32::i;:::-;40240:112:::0;:::o;25170:211::-;25234:7;25275:1;25258:19;;:5;:19;;;;25250:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;25347:12;:19;25360:5;25347:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;25339:36;;25332:43;;25170:211;;;:::o;38725:103::-;38316:12;:10;:12::i;:::-;38305:23;;:7;:5;:7::i;:::-;:23;;;38297:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;38790:30:::1;38817:1;38790:18;:30::i;:::-;38725:103::o:0;41172:91::-;38316:12;:10;:12::i;:::-;38305:23;;:7;:5;:7::i;:::-;:23;;;38297:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;41249:6:::1;41237:9;:18;;;;41172:91:::0;:::o;38085:87::-;38131:7;38158:6;;;;;;;;;;;38151:13;;38085:87;:::o;41072:92::-;38316:12;:10;:12::i;:::-;38305:23;;:7;:5;:7::i;:::-;:23;;;38297:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;41148:8:::1;41136:9;:20;;;;41072:92:::0;:::o;26625:98::-;26681:13;26710:7;26703:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26625:98;:::o;28272:274::-;28375:12;:10;:12::i;:::-;28363:24;;:8;:24;;;;28355:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;28472:8;28427:18;:32;28446:12;:10;:12::i;:::-;28427:32;;;;;;;;;;;;;;;:42;28460:8;28427:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;28521:8;28492:48;;28507:12;:10;:12::i;:::-;28492:48;;;28531:8;28492:48;;;;;;:::i;:::-;;;;;;;;28272:274;;:::o;41387:174::-;38316:12;:10;:12::i;:::-;38305:23;;:7;:5;:7::i;:::-;:23;;;38297:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;41441:12:::1;41459:10;:15;;41482:21;41459:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41440:68;;;41525:7;41517:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;41431:130;41387:174::o:0;29279:311::-;29416:28;29426:4;29432:2;29436:7;29416:9;:28::i;:::-;29467:48;29490:4;29496:2;29500:7;29509:5;29467:22;:48::i;:::-;29451:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;29279:311;;;;:::o;39804:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;40557:507::-;40659:13;40698:17;40706:8;40698:7;:17::i;:::-;40690:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;40799:1;40781:7;40775:21;;;;;:::i;:::-;;;:25;:281;;;;;;;;;;;;;;;;;40892:7;40926:26;40943:8;40926:16;:26::i;:::-;40979:13;40849:166;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40775:281;40755:301;;40557:507;;;:::o;39734:30::-;;;;:::o;33694:43::-;;;;:::o;28609:186::-;28731:4;28754:18;:25;28773:5;28754:25;;;;;;;;;;;;;;;:35;28780:8;28754:35;;;;;;;;;;;;;;;;;;;;;;;;;28747:42;;28609:186;;;;:::o;38983:238::-;38316:12;:10;:12::i;:::-;38305:23;;:7;:5;:7::i;:::-;:23;;;38297:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;39106:1:::1;39086:22;;:8;:22;;;;39064:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;39185:28;39204:8;39185:18;:28::i;:::-;38983:238:::0;:::o;8316:207::-;8446:4;8490:25;8475:40;;;:11;:40;;;;8468:47;;8316:207;;;:::o;17715:98::-;17768:7;17795:10;17788:17;;17715:98;:::o;29940:::-;30005:27;30015:2;30019:8;30005:27;;;;;;;;;;;;:9;:27::i;:::-;29940:98;;:::o;29829:105::-;29886:4;29916:12;;29906:7;:22;29899:29;;29829:105;;;:::o;33516:172::-;33640:2;33613:15;:24;33629:7;33613:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;33674:7;33670:2;33654:28;;33663:5;33654:28;;;;;;;;;;;;33516:172;;;:::o;31881:1529::-;31978:35;32016:20;32028:7;32016:11;:20::i;:::-;31978:58;;32045:22;32087:13;:18;;;32071:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;32140:12;:10;:12::i;:::-;32116:36;;:20;32128:7;32116:11;:20::i;:::-;:36;;;32071:81;:142;;;;32163:50;32180:13;:18;;;32200:12;:10;:12::i;:::-;32163:16;:50::i;:::-;32071:142;32045:169;;32239:17;32223:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;32371:4;32349:26;;:13;:18;;;:26;;;32333:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;32460:1;32446:16;;:2;:16;;;;32438:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;32513:43;32535:4;32541:2;32545:7;32554:1;32513:21;:43::i;:::-;32613:49;32630:1;32634:7;32643:13;:18;;;32613:8;:49::i;:::-;32701:1;32671:12;:18;32684:4;32671:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32737:1;32709:12;:16;32722:2;32709:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32768:43;;;;;;;;32783:2;32768:43;;;;;;32794:15;32768:43;;;;;32745:11;:20;32757:7;32745:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33039:19;33071:1;33061:7;:11;;;;:::i;:::-;33039:33;;33124:1;33083:43;;:11;:24;33095:11;33083:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;33079:236;;;33141:20;33149:11;33141:7;:20::i;:::-;33137:171;;;33201:97;;;;;;;;33228:13;:18;;;33201:97;;;;;;33259:13;:28;;;33201:97;;;;;33174:11;:24;33186:11;33174:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33137:171;33079:236;33347:7;33343:2;33328:27;;33337:4;33328:27;;;;;;;;;;;;33362:42;33383:4;33389:2;33393:7;33402:1;33362:20;:42::i;:::-;31971:1439;;;31881:1529;;;:::o;25633:606::-;25709:21;;:::i;:::-;25750:16;25758:7;25750;:16::i;:::-;25742:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;25822:26;25870:12;25859:7;:23;25855:93;;25939:1;25924:12;25914:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;25893:47;;25855:93;25961:12;25976:7;25961:22;;25956:212;25993:18;25985:4;:26;25956:212;;26030:31;26064:11;:17;26076:4;26064:17;;;;;;;;;;;26030:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26120:1;26094:28;;:9;:14;;;:28;;;26090:71;;26142:9;26135:16;;;;;;;26090:71;26021:147;26013:6;;;;;:::i;:::-;;;;25956:212;;;;26176:57;;;;;;;;;;:::i;:::-;;;;;;;;25633:606;;;;:::o;39381:191::-;39455:16;39474:6;;;;;;;;;;;39455:25;;39500:8;39491:6;;:17;;;;;;;;;;;;;;;;;;39555:8;39524:40;;39545:8;39524:40;;;;;;;;;;;;39444:128;39381:191;:::o;35231:690::-;35368:4;35385:15;:2;:13;;;:15::i;:::-;35381:535;;;35440:2;35424:36;;;35461:12;:10;:12::i;:::-;35475:4;35481:7;35490:5;35424:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35411:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35672:1;35655:6;:13;:18;35651:215;;;35688:61;;;;;;;;;;:::i;:::-;;;;;;;;35651:215;35834:6;35828:13;35819:6;35815:2;35811:15;35804:38;35411:464;35556:45;;;35546:55;;;:6;:55;;;;35539:62;;;;;35381:535;35904:4;35897:11;;35231:690;;;;;;;:::o;18238:723::-;18294:13;18524:1;18515:5;:10;18511:53;;;18542:10;;;;;;;;;;;;;;;;;;;;;18511:53;18574:12;18589:5;18574:20;;18605:14;18630:78;18645:1;18637:4;:9;18630:78;;18663:8;;;;;:::i;:::-;;;;18694:2;18686:10;;;;;:::i;:::-;;;18630:78;;;18718:19;18750:6;18740:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18718:39;;18768:154;18784:1;18775:5;:10;18768:154;;18812:1;18802:11;;;;;:::i;:::-;;;18879:2;18871:5;:10;;;;:::i;:::-;18858:2;:24;;;;:::i;:::-;18845:39;;18828:6;18835;18828:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;18908:2;18899:11;;;;;:::i;:::-;;;18768:154;;;18946:6;18932:21;;;;;18238:723;;;;:::o;30377:1272::-;30482:20;30505:12;;30482:35;;30546:1;30532:16;;:2;:16;;;;30524:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;30723:21;30731:12;30723:7;:21::i;:::-;30722:22;30714:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;30805:12;30793:8;:24;;30785:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;30865:61;30895:1;30899:2;30903:12;30917:8;30865:21;:61::i;:::-;30935:30;30968:12;:16;30981:2;30968:16;;;;;;;;;;;;;;;30935:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31010:119;;;;;;;;31060:8;31030:11;:19;;;:39;;;;:::i;:::-;31010:119;;;;;;31113:8;31078:11;:24;;;:44;;;;:::i;:::-;31010:119;;;;;30991:12;:16;31004:2;30991:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31164:43;;;;;;;;31179:2;31164:43;;;;;;31190:15;31164:43;;;;;31136:11;:25;31148:12;31136:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31216:20;31239:12;31216:35;;31265:9;31260:281;31284:8;31280:1;:12;31260:281;;;31338:12;31334:2;31313:38;;31330:1;31313:38;;;;;;;;;;;;31378:59;31409:1;31413:2;31417:12;31431:5;31378:22;:59::i;:::-;31360:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;31519:14;;;;;:::i;:::-;;;;31294:3;;;;;:::i;:::-;;;;31260:281;;;;31564:12;31549;:27;;;;31583:60;31612:1;31616:2;31620:12;31634:8;31583:20;:60::i;:::-;30475:1174;;;30377:1272;;;:::o;36383:141::-;;;;;:::o;36910:140::-;;;;;:::o;9294:387::-;9354:4;9562:12;9629:7;9617:20;9609:28;;9672:1;9665:4;:8;9658:15;;;9294:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:116::-;1588:21;1603:5;1588:21;:::i;:::-;1581:5;1578:32;1568:60;;1624:1;1621;1614:12;1568:60;1518:116;:::o;1640:133::-;1683:5;1721:6;1708:20;1699:29;;1737:30;1761:5;1737:30;:::i;:::-;1640:133;;;;:::o;1779:323::-;1835:6;1884:2;1872:9;1863:7;1859:23;1855:32;1852:119;;;1890:79;;:::i;:::-;1852:119;2010:1;2035:50;2077:7;2068:6;2057:9;2053:22;2035:50;:::i;:::-;2025:60;;1981:114;1779:323;;;;:::o;2108:99::-;2160:6;2194:5;2188:12;2178:22;;2108:99;;;:::o;2213:169::-;2297:11;2331:6;2326:3;2319:19;2371:4;2366:3;2362:14;2347:29;;2213:169;;;;:::o;2388:307::-;2456:1;2466:113;2480:6;2477:1;2474:13;2466:113;;;2565:1;2560:3;2556:11;2550:18;2546:1;2541:3;2537:11;2530:39;2502:2;2499:1;2495:10;2490:15;;2466:113;;;2597:6;2594:1;2591:13;2588:101;;;2677:1;2668:6;2663:3;2659:16;2652:27;2588:101;2437:258;2388:307;;;:::o;2701:102::-;2742:6;2793:2;2789:7;2784:2;2777:5;2773:14;2769:28;2759:38;;2701:102;;;:::o;2809:364::-;2897:3;2925:39;2958:5;2925:39;:::i;:::-;2980:71;3044:6;3039:3;2980:71;:::i;:::-;2973:78;;3060:52;3105:6;3100:3;3093:4;3086:5;3082:16;3060:52;:::i;:::-;3137:29;3159:6;3137:29;:::i;:::-;3132:3;3128:39;3121:46;;2901:272;2809:364;;;;:::o;3179:313::-;3292:4;3330:2;3319:9;3315:18;3307:26;;3379:9;3373:4;3369:20;3365:1;3354:9;3350:17;3343:47;3407:78;3480:4;3471:6;3407:78;:::i;:::-;3399:86;;3179:313;;;;:::o;3498:77::-;3535:7;3564:5;3553:16;;3498:77;;;:::o;3581:122::-;3654:24;3672:5;3654:24;:::i;:::-;3647:5;3644:35;3634:63;;3693:1;3690;3683:12;3634:63;3581:122;:::o;3709:139::-;3755:5;3793:6;3780:20;3771:29;;3809:33;3836:5;3809:33;:::i;:::-;3709:139;;;;:::o;3854:329::-;3913:6;3962:2;3950:9;3941:7;3937:23;3933:32;3930:119;;;3968:79;;:::i;:::-;3930:119;4088:1;4113:53;4158:7;4149:6;4138:9;4134:22;4113:53;:::i;:::-;4103:63;;4059:117;3854:329;;;;:::o;4189:126::-;4226:7;4266:42;4259:5;4255:54;4244:65;;4189:126;;;:::o;4321:96::-;4358:7;4387:24;4405:5;4387:24;:::i;:::-;4376:35;;4321:96;;;:::o;4423:118::-;4510:24;4528:5;4510:24;:::i;:::-;4505:3;4498:37;4423:118;;:::o;4547:222::-;4640:4;4678:2;4667:9;4663:18;4655:26;;4691:71;4759:1;4748:9;4744:17;4735:6;4691:71;:::i;:::-;4547:222;;;;:::o;4775:122::-;4848:24;4866:5;4848:24;:::i;:::-;4841:5;4838:35;4828:63;;4887:1;4884;4877:12;4828:63;4775:122;:::o;4903:139::-;4949:5;4987:6;4974:20;4965:29;;5003:33;5030:5;5003:33;:::i;:::-;4903:139;;;;:::o;5048:474::-;5116:6;5124;5173:2;5161:9;5152:7;5148:23;5144:32;5141:119;;;5179:79;;:::i;:::-;5141:119;5299:1;5324:53;5369:7;5360:6;5349:9;5345:22;5324:53;:::i;:::-;5314:63;;5270:117;5426:2;5452:53;5497:7;5488:6;5477:9;5473:22;5452:53;:::i;:::-;5442:63;;5397:118;5048:474;;;;;:::o;5528:118::-;5615:24;5633:5;5615:24;:::i;:::-;5610:3;5603:37;5528:118;;:::o;5652:222::-;5745:4;5783:2;5772:9;5768:18;5760:26;;5796:71;5864:1;5853:9;5849:17;5840:6;5796:71;:::i;:::-;5652:222;;;;:::o;5880:619::-;5957:6;5965;5973;6022:2;6010:9;6001:7;5997:23;5993:32;5990:119;;;6028:79;;:::i;:::-;5990:119;6148:1;6173:53;6218:7;6209:6;6198:9;6194:22;6173:53;:::i;:::-;6163:63;;6119:117;6275:2;6301:53;6346:7;6337:6;6326:9;6322:22;6301:53;:::i;:::-;6291:63;;6246:118;6403:2;6429:53;6474:7;6465:6;6454:9;6450:22;6429:53;:::i;:::-;6419:63;;6374:118;5880:619;;;;;:::o;6505:117::-;6614:1;6611;6604:12;6628:117;6737:1;6734;6727:12;6751:180;6799:77;6796:1;6789:88;6896:4;6893:1;6886:15;6920:4;6917:1;6910:15;6937:281;7020:27;7042:4;7020:27;:::i;:::-;7012:6;7008:40;7150:6;7138:10;7135:22;7114:18;7102:10;7099:34;7096:62;7093:88;;;7161:18;;:::i;:::-;7093:88;7201:10;7197:2;7190:22;6980:238;6937:281;;:::o;7224:129::-;7258:6;7285:20;;:::i;:::-;7275:30;;7314:33;7342:4;7334:6;7314:33;:::i;:::-;7224:129;;;:::o;7359:308::-;7421:4;7511:18;7503:6;7500:30;7497:56;;;7533:18;;:::i;:::-;7497:56;7571:29;7593:6;7571:29;:::i;:::-;7563:37;;7655:4;7649;7645:15;7637:23;;7359:308;;;:::o;7673:154::-;7757:6;7752:3;7747;7734:30;7819:1;7810:6;7805:3;7801:16;7794:27;7673:154;;;:::o;7833:412::-;7911:5;7936:66;7952:49;7994:6;7952:49;:::i;:::-;7936:66;:::i;:::-;7927:75;;8025:6;8018:5;8011:21;8063:4;8056:5;8052:16;8101:3;8092:6;8087:3;8083:16;8080:25;8077:112;;;8108:79;;:::i;:::-;8077:112;8198:41;8232:6;8227:3;8222;8198:41;:::i;:::-;7917:328;7833:412;;;;;:::o;8265:340::-;8321:5;8370:3;8363:4;8355:6;8351:17;8347:27;8337:122;;8378:79;;:::i;:::-;8337:122;8495:6;8482:20;8520:79;8595:3;8587:6;8580:4;8572:6;8568:17;8520:79;:::i;:::-;8511:88;;8327:278;8265:340;;;;:::o;8611:509::-;8680:6;8729:2;8717:9;8708:7;8704:23;8700:32;8697:119;;;8735:79;;:::i;:::-;8697:119;8883:1;8872:9;8868:17;8855:31;8913:18;8905:6;8902:30;8899:117;;;8935:79;;:::i;:::-;8899:117;9040:63;9095:7;9086:6;9075:9;9071:22;9040:63;:::i;:::-;9030:73;;8826:287;8611:509;;;;:::o;9126:329::-;9185:6;9234:2;9222:9;9213:7;9209:23;9205:32;9202:119;;;9240:79;;:::i;:::-;9202:119;9360:1;9385:53;9430:7;9421:6;9410:9;9406:22;9385:53;:::i;:::-;9375:63;;9331:117;9126:329;;;;:::o;9461:468::-;9526:6;9534;9583:2;9571:9;9562:7;9558:23;9554:32;9551:119;;;9589:79;;:::i;:::-;9551:119;9709:1;9734:53;9779:7;9770:6;9759:9;9755:22;9734:53;:::i;:::-;9724:63;;9680:117;9836:2;9862:50;9904:7;9895:6;9884:9;9880:22;9862:50;:::i;:::-;9852:60;;9807:115;9461:468;;;;;:::o;9935:307::-;9996:4;10086:18;10078:6;10075:30;10072:56;;;10108:18;;:::i;:::-;10072:56;10146:29;10168:6;10146:29;:::i;:::-;10138:37;;10230:4;10224;10220:15;10212:23;;9935:307;;;:::o;10248:410::-;10325:5;10350:65;10366:48;10407:6;10366:48;:::i;:::-;10350:65;:::i;:::-;10341:74;;10438:6;10431:5;10424:21;10476:4;10469:5;10465:16;10514:3;10505:6;10500:3;10496:16;10493:25;10490:112;;;10521:79;;:::i;:::-;10490:112;10611:41;10645:6;10640:3;10635;10611:41;:::i;:::-;10331:327;10248:410;;;;;:::o;10677:338::-;10732:5;10781:3;10774:4;10766:6;10762:17;10758:27;10748:122;;10789:79;;:::i;:::-;10748:122;10906:6;10893:20;10931:78;11005:3;10997:6;10990:4;10982:6;10978:17;10931:78;:::i;:::-;10922:87;;10738:277;10677:338;;;;:::o;11021:943::-;11116:6;11124;11132;11140;11189:3;11177:9;11168:7;11164:23;11160:33;11157:120;;;11196:79;;:::i;:::-;11157:120;11316:1;11341:53;11386:7;11377:6;11366:9;11362:22;11341:53;:::i;:::-;11331:63;;11287:117;11443:2;11469:53;11514:7;11505:6;11494:9;11490:22;11469:53;:::i;:::-;11459:63;;11414:118;11571:2;11597:53;11642:7;11633:6;11622:9;11618:22;11597:53;:::i;:::-;11587:63;;11542:118;11727:2;11716:9;11712:18;11699:32;11758:18;11750:6;11747:30;11744:117;;;11780:79;;:::i;:::-;11744:117;11885:62;11939:7;11930:6;11919:9;11915:22;11885:62;:::i;:::-;11875:72;;11670:287;11021:943;;;;;;;:::o;11970:474::-;12038:6;12046;12095:2;12083:9;12074:7;12070:23;12066:32;12063:119;;;12101:79;;:::i;:::-;12063:119;12221:1;12246:53;12291:7;12282:6;12271:9;12267:22;12246:53;:::i;:::-;12236:63;;12192:117;12348:2;12374:53;12419:7;12410:6;12399:9;12395:22;12374:53;:::i;:::-;12364:63;;12319:118;11970:474;;;;;:::o;12450:171::-;12590:23;12586:1;12578:6;12574:14;12567:47;12450:171;:::o;12627:366::-;12769:3;12790:67;12854:2;12849:3;12790:67;:::i;:::-;12783:74;;12866:93;12955:3;12866:93;:::i;:::-;12984:2;12979:3;12975:12;12968:19;;12627:366;;;:::o;12999:419::-;13165:4;13203:2;13192:9;13188:18;13180:26;;13252:9;13246:4;13242:20;13238:1;13227:9;13223:17;13216:47;13280:131;13406:4;13280:131;:::i;:::-;13272:139;;12999:419;;;:::o;13424:180::-;13472:77;13469:1;13462:88;13569:4;13566:1;13559:15;13593:4;13590:1;13583:15;13610:320;13654:6;13691:1;13685:4;13681:12;13671:22;;13738:1;13732:4;13728:12;13759:18;13749:81;;13815:4;13807:6;13803:17;13793:27;;13749:81;13877:2;13869:6;13866:14;13846:18;13843:38;13840:84;;;13896:18;;:::i;:::-;13840:84;13661:269;13610:320;;;:::o;13936:156::-;14076:8;14072:1;14064:6;14060:14;14053:32;13936:156;:::o;14098:365::-;14240:3;14261:66;14325:1;14320:3;14261:66;:::i;:::-;14254:73;;14336:93;14425:3;14336:93;:::i;:::-;14454:2;14449:3;14445:12;14438:19;;14098:365;;;:::o;14469:419::-;14635:4;14673:2;14662:9;14658:18;14650:26;;14722:9;14716:4;14712:20;14708:1;14697:9;14693:17;14686:47;14750:131;14876:4;14750:131;:::i;:::-;14742:139;;14469:419;;;:::o;14894:180::-;14942:77;14939:1;14932:88;15039:4;15036:1;15029:15;15063:4;15060:1;15053:15;15080:305;15120:3;15139:20;15157:1;15139:20;:::i;:::-;15134:25;;15173:20;15191:1;15173:20;:::i;:::-;15168:25;;15327:1;15259:66;15255:74;15252:1;15249:81;15246:107;;;15333:18;;:::i;:::-;15246:107;15377:1;15374;15370:9;15363:16;;15080:305;;;;:::o;15391:169::-;15531:21;15527:1;15519:6;15515:14;15508:45;15391:169;:::o;15566:366::-;15708:3;15729:67;15793:2;15788:3;15729:67;:::i;:::-;15722:74;;15805:93;15894:3;15805:93;:::i;:::-;15923:2;15918:3;15914:12;15907:19;;15566:366;;;:::o;15938:419::-;16104:4;16142:2;16131:9;16127:18;16119:26;;16191:9;16185:4;16181:20;16177:1;16166:9;16162:17;16155:47;16219:131;16345:4;16219:131;:::i;:::-;16211:139;;15938:419;;;:::o;16363:232::-;16503:34;16499:1;16491:6;16487:14;16480:58;16572:15;16567:2;16559:6;16555:15;16548:40;16363:232;:::o;16601:366::-;16743:3;16764:67;16828:2;16823:3;16764:67;:::i;:::-;16757:74;;16840:93;16929:3;16840:93;:::i;:::-;16958:2;16953:3;16949:12;16942:19;;16601:366;;;:::o;16973:419::-;17139:4;17177:2;17166:9;17162:18;17154:26;;17226:9;17220:4;17216:20;17212:1;17201:9;17197:17;17190:47;17254:131;17380:4;17254:131;:::i;:::-;17246:139;;16973:419;;;:::o;17398:221::-;17538:34;17534:1;17526:6;17522:14;17515:58;17607:4;17602:2;17594:6;17590:15;17583:29;17398:221;:::o;17625:366::-;17767:3;17788:67;17852:2;17847:3;17788:67;:::i;:::-;17781:74;;17864:93;17953:3;17864:93;:::i;:::-;17982:2;17977:3;17973:12;17966:19;;17625:366;;;:::o;17997:419::-;18163:4;18201:2;18190:9;18186:18;18178:26;;18250:9;18244:4;18240:20;18236:1;18225:9;18221:17;18214:47;18278:131;18404:4;18278:131;:::i;:::-;18270:139;;17997:419;;;:::o;18422:244::-;18562:34;18558:1;18550:6;18546:14;18539:58;18631:27;18626:2;18618:6;18614:15;18607:52;18422:244;:::o;18672:366::-;18814:3;18835:67;18899:2;18894:3;18835:67;:::i;:::-;18828:74;;18911:93;19000:3;18911:93;:::i;:::-;19029:2;19024:3;19020:12;19013:19;;18672:366;;;:::o;19044:419::-;19210:4;19248:2;19237:9;19233:18;19225:26;;19297:9;19291:4;19287:20;19283:1;19272:9;19268:17;19261:47;19325:131;19451:4;19325:131;:::i;:::-;19317:139;;19044:419;;;:::o;19469:221::-;19609:34;19605:1;19597:6;19593:14;19586:58;19678:4;19673:2;19665:6;19661:15;19654:29;19469:221;:::o;19696:366::-;19838:3;19859:67;19923:2;19918:3;19859:67;:::i;:::-;19852:74;;19935:93;20024:3;19935:93;:::i;:::-;20053:2;20048:3;20044:12;20037:19;;19696:366;;;:::o;20068:419::-;20234:4;20272:2;20261:9;20257:18;20249:26;;20321:9;20315:4;20311:20;20307:1;20296:9;20292:17;20285:47;20349:131;20475:4;20349:131;:::i;:::-;20341:139;;20068:419;;;:::o;20493:233::-;20532:3;20555:24;20573:5;20555:24;:::i;:::-;20546:33;;20601:66;20594:5;20591:77;20588:103;;;20671:18;;:::i;:::-;20588:103;20718:1;20711:5;20707:13;20700:20;;20493:233;;;:::o;20732:::-;20872:34;20868:1;20860:6;20856:14;20849:58;20941:16;20936:2;20928:6;20924:15;20917:41;20732:233;:::o;20971:366::-;21113:3;21134:67;21198:2;21193:3;21134:67;:::i;:::-;21127:74;;21210:93;21299:3;21210:93;:::i;:::-;21328:2;21323:3;21319:12;21312:19;;20971:366;;;:::o;21343:419::-;21509:4;21547:2;21536:9;21532:18;21524:26;;21596:9;21590:4;21586:20;21582:1;21571:9;21567:17;21560:47;21624:131;21750:4;21624:131;:::i;:::-;21616:139;;21343:419;;;:::o;21768:222::-;21908:34;21904:1;21896:6;21892:14;21885:58;21977:5;21972:2;21964:6;21960:15;21953:30;21768:222;:::o;21996:366::-;22138:3;22159:67;22223:2;22218:3;22159:67;:::i;:::-;22152:74;;22235:93;22324:3;22235:93;:::i;:::-;22353:2;22348:3;22344:12;22337:19;;21996:366;;;:::o;22368:419::-;22534:4;22572:2;22561:9;22557:18;22549:26;;22621:9;22615:4;22611:20;22607:1;22596:9;22592:17;22585:47;22649:131;22775:4;22649:131;:::i;:::-;22641:139;;22368:419;;;:::o;22793:230::-;22933:34;22929:1;22921:6;22917:14;22910:58;23002:13;22997:2;22989:6;22985:15;22978:38;22793:230;:::o;23029:366::-;23171:3;23192:67;23256:2;23251:3;23192:67;:::i;:::-;23185:74;;23268:93;23357:3;23268:93;:::i;:::-;23386:2;23381:3;23377:12;23370:19;;23029:366;;;:::o;23401:419::-;23567:4;23605:2;23594:9;23590:18;23582:26;;23654:9;23648:4;23644:20;23640:1;23629:9;23625:17;23618:47;23682:131;23808:4;23682:131;:::i;:::-;23674:139;;23401:419;;;:::o;23826:176::-;23966:28;23962:1;23954:6;23950:14;23943:52;23826:176;:::o;24008:366::-;24150:3;24171:67;24235:2;24230:3;24171:67;:::i;:::-;24164:74;;24247:93;24336:3;24247:93;:::i;:::-;24365:2;24360:3;24356:12;24349:19;;24008:366;;;:::o;24380:419::-;24546:4;24584:2;24573:9;24569:18;24561:26;;24633:9;24627:4;24623:20;24619:1;24608:9;24604:17;24597:47;24661:131;24787:4;24661:131;:::i;:::-;24653:139;;24380:419;;;:::o;24805:147::-;24906:11;24943:3;24928:18;;24805:147;;;;:::o;24958:114::-;;:::o;25078:398::-;25237:3;25258:83;25339:1;25334:3;25258:83;:::i;:::-;25251:90;;25350:93;25439:3;25350:93;:::i;:::-;25468:1;25463:3;25459:11;25452:18;;25078:398;;;:::o;25482:379::-;25666:3;25688:147;25831:3;25688:147;:::i;:::-;25681:154;;25852:3;25845:10;;25482:379;;;:::o;25867:166::-;26007:18;26003:1;25995:6;25991:14;25984:42;25867:166;:::o;26039:366::-;26181:3;26202:67;26266:2;26261:3;26202:67;:::i;:::-;26195:74;;26278:93;26367:3;26278:93;:::i;:::-;26396:2;26391:3;26387:12;26380:19;;26039:366;;;:::o;26411:419::-;26577:4;26615:2;26604:9;26600:18;26592:26;;26664:9;26658:4;26654:20;26650:1;26639:9;26635:17;26628:47;26692:131;26818:4;26692:131;:::i;:::-;26684:139;;26411:419;;;:::o;26836:238::-;26976:34;26972:1;26964:6;26960:14;26953:58;27045:21;27040:2;27032:6;27028:15;27021:46;26836:238;:::o;27080:366::-;27222:3;27243:67;27307:2;27302:3;27243:67;:::i;:::-;27236:74;;27319:93;27408:3;27319:93;:::i;:::-;27437:2;27432:3;27428:12;27421:19;;27080:366;;;:::o;27452:419::-;27618:4;27656:2;27645:9;27641:18;27633:26;;27705:9;27699:4;27695:20;27691:1;27680:9;27676:17;27669:47;27733:131;27859:4;27733:131;:::i;:::-;27725:139;;27452:419;;;:::o;27877:174::-;28017:26;28013:1;28005:6;28001:14;27994:50;27877:174;:::o;28057:366::-;28199:3;28220:67;28284:2;28279:3;28220:67;:::i;:::-;28213:74;;28296:93;28385:3;28296:93;:::i;:::-;28414:2;28409:3;28405:12;28398:19;;28057:366;;;:::o;28429:419::-;28595:4;28633:2;28622:9;28618:18;28610:26;;28682:9;28676:4;28672:20;28668:1;28657:9;28653:17;28646:47;28710:131;28836:4;28710:131;:::i;:::-;28702:139;;28429:419;;;:::o;28854:148::-;28956:11;28993:3;28978:18;;28854:148;;;;:::o;29008:141::-;29057:4;29080:3;29072:11;;29103:3;29100:1;29093:14;29137:4;29134:1;29124:18;29116:26;;29008:141;;;:::o;29179:845::-;29282:3;29319:5;29313:12;29348:36;29374:9;29348:36;:::i;:::-;29400:89;29482:6;29477:3;29400:89;:::i;:::-;29393:96;;29520:1;29509:9;29505:17;29536:1;29531:137;;;;29682:1;29677:341;;;;29498:520;;29531:137;29615:4;29611:9;29600;29596:25;29591:3;29584:38;29651:6;29646:3;29642:16;29635:23;;29531:137;;29677:341;29744:38;29776:5;29744:38;:::i;:::-;29804:1;29818:154;29832:6;29829:1;29826:13;29818:154;;;29906:7;29900:14;29896:1;29891:3;29887:11;29880:35;29956:1;29947:7;29943:15;29932:26;;29854:4;29851:1;29847:12;29842:17;;29818:154;;;30001:6;29996:3;29992:16;29985:23;;29684:334;;29498:520;;29286:738;;29179:845;;;;:::o;30030:377::-;30136:3;30164:39;30197:5;30164:39;:::i;:::-;30219:89;30301:6;30296:3;30219:89;:::i;:::-;30212:96;;30317:52;30362:6;30357:3;30350:4;30343:5;30339:16;30317:52;:::i;:::-;30394:6;30389:3;30385:16;30378:23;;30140:267;30030:377;;;;:::o;30413:583::-;30635:3;30657:92;30745:3;30736:6;30657:92;:::i;:::-;30650:99;;30766:95;30857:3;30848:6;30766:95;:::i;:::-;30759:102;;30878:92;30966:3;30957:6;30878:92;:::i;:::-;30871:99;;30987:3;30980:10;;30413:583;;;;;;:::o;31002:225::-;31142:34;31138:1;31130:6;31126:14;31119:58;31211:8;31206:2;31198:6;31194:15;31187:33;31002:225;:::o;31233:366::-;31375:3;31396:67;31460:2;31455:3;31396:67;:::i;:::-;31389:74;;31472:93;31561:3;31472:93;:::i;:::-;31590:2;31585:3;31581:12;31574:19;;31233:366;;;:::o;31605:419::-;31771:4;31809:2;31798:9;31794:18;31786:26;;31858:9;31852:4;31848:20;31844:1;31833:9;31829:17;31822:47;31886:131;32012:4;31886:131;:::i;:::-;31878:139;;31605:419;;;:::o;32030:237::-;32170:34;32166:1;32158:6;32154:14;32147:58;32239:20;32234:2;32226:6;32222:15;32215:45;32030:237;:::o;32273:366::-;32415:3;32436:67;32500:2;32495:3;32436:67;:::i;:::-;32429:74;;32512:93;32601:3;32512:93;:::i;:::-;32630:2;32625:3;32621:12;32614:19;;32273:366;;;:::o;32645:419::-;32811:4;32849:2;32838:9;32834:18;32826:26;;32898:9;32892:4;32888:20;32884:1;32873:9;32869:17;32862:47;32926:131;33052:4;32926:131;:::i;:::-;32918:139;;32645:419;;;:::o;33070:225::-;33210:34;33206:1;33198:6;33194:14;33187:58;33279:8;33274:2;33266:6;33262:15;33255:33;33070:225;:::o;33301:366::-;33443:3;33464:67;33528:2;33523:3;33464:67;:::i;:::-;33457:74;;33540:93;33629:3;33540:93;:::i;:::-;33658:2;33653:3;33649:12;33642:19;;33301:366;;;:::o;33673:419::-;33839:4;33877:2;33866:9;33862:18;33854:26;;33926:9;33920:4;33916:20;33912:1;33901:9;33897:17;33890:47;33954:131;34080:4;33954:131;:::i;:::-;33946:139;;33673:419;;;:::o;34098:224::-;34238:34;34234:1;34226:6;34222:14;34215:58;34307:7;34302:2;34294:6;34290:15;34283:32;34098:224;:::o;34328:366::-;34470:3;34491:67;34555:2;34550:3;34491:67;:::i;:::-;34484:74;;34567:93;34656:3;34567:93;:::i;:::-;34685:2;34680:3;34676:12;34669:19;;34328:366;;;:::o;34700:419::-;34866:4;34904:2;34893:9;34889:18;34881:26;;34953:9;34947:4;34943:20;34939:1;34928:9;34924:17;34917:47;34981:131;35107:4;34981:131;:::i;:::-;34973:139;;34700:419;;;:::o;35125:118::-;35162:7;35202:34;35195:5;35191:46;35180:57;;35125:118;;;:::o;35249:191::-;35289:4;35309:20;35327:1;35309:20;:::i;:::-;35304:25;;35343:20;35361:1;35343:20;:::i;:::-;35338:25;;35382:1;35379;35376:8;35373:34;;;35387:18;;:::i;:::-;35373:34;35432:1;35429;35425:9;35417:17;;35249:191;;;;:::o;35446:273::-;35486:3;35505:20;35523:1;35505:20;:::i;:::-;35500:25;;35539:20;35557:1;35539:20;:::i;:::-;35534:25;;35661:1;35625:34;35621:42;35618:1;35615:49;35612:75;;;35667:18;;:::i;:::-;35612:75;35711:1;35708;35704:9;35697:16;;35446:273;;;;:::o;35725:229::-;35865:34;35861:1;35853:6;35849:14;35842:58;35934:12;35929:2;35921:6;35917:15;35910:37;35725:229;:::o;35960:366::-;36102:3;36123:67;36187:2;36182:3;36123:67;:::i;:::-;36116:74;;36199:93;36288:3;36199:93;:::i;:::-;36317:2;36312:3;36308:12;36301:19;;35960:366;;;:::o;36332:419::-;36498:4;36536:2;36525:9;36521:18;36513:26;;36585:9;36579:4;36575:20;36571:1;36560:9;36556:17;36549:47;36613:131;36739:4;36613:131;:::i;:::-;36605:139;;36332:419;;;:::o;36757:191::-;36797:4;36817:20;36835:1;36817:20;:::i;:::-;36812:25;;36851:20;36869:1;36851:20;:::i;:::-;36846:25;;36890:1;36887;36884:8;36881:34;;;36895:18;;:::i;:::-;36881:34;36940:1;36937;36933:9;36925:17;;36757:191;;;;:::o;36954:171::-;36993:3;37016:24;37034:5;37016:24;:::i;:::-;37007:33;;37062:4;37055:5;37052:15;37049:41;;;37070:18;;:::i;:::-;37049:41;37117:1;37110:5;37106:13;37099:20;;36954:171;;;:::o;37131:234::-;37271:34;37267:1;37259:6;37255:14;37248:58;37340:17;37335:2;37327:6;37323:15;37316:42;37131:234;:::o;37371:366::-;37513:3;37534:67;37598:2;37593:3;37534:67;:::i;:::-;37527:74;;37610:93;37699:3;37610:93;:::i;:::-;37728:2;37723:3;37719:12;37712:19;;37371:366;;;:::o;37743:419::-;37909:4;37947:2;37936:9;37932:18;37924:26;;37996:9;37990:4;37986:20;37982:1;37971:9;37967:17;37960:47;38024:131;38150:4;38024:131;:::i;:::-;38016:139;;37743:419;;;:::o;38168:98::-;38219:6;38253:5;38247:12;38237:22;;38168:98;;;:::o;38272:168::-;38355:11;38389:6;38384:3;38377:19;38429:4;38424:3;38420:14;38405:29;;38272:168;;;;:::o;38446:360::-;38532:3;38560:38;38592:5;38560:38;:::i;:::-;38614:70;38677:6;38672:3;38614:70;:::i;:::-;38607:77;;38693:52;38738:6;38733:3;38726:4;38719:5;38715:16;38693:52;:::i;:::-;38770:29;38792:6;38770:29;:::i;:::-;38765:3;38761:39;38754:46;;38536:270;38446:360;;;;:::o;38812:640::-;39007:4;39045:3;39034:9;39030:19;39022:27;;39059:71;39127:1;39116:9;39112:17;39103:6;39059:71;:::i;:::-;39140:72;39208:2;39197:9;39193:18;39184:6;39140:72;:::i;:::-;39222;39290:2;39279:9;39275:18;39266:6;39222:72;:::i;:::-;39341:9;39335:4;39331:20;39326:2;39315:9;39311:18;39304:48;39369:76;39440:4;39431:6;39369:76;:::i;:::-;39361:84;;38812:640;;;;;;;:::o;39458:141::-;39514:5;39545:6;39539:13;39530:22;;39561:32;39587:5;39561:32;:::i;:::-;39458:141;;;;:::o;39605:349::-;39674:6;39723:2;39711:9;39702:7;39698:23;39694:32;39691:119;;;39729:79;;:::i;:::-;39691:119;39849:1;39874:63;39929:7;39920:6;39909:9;39905:22;39874:63;:::i;:::-;39864:73;;39820:127;39605:349;;;;:::o;39960:180::-;40008:77;40005:1;39998:88;40105:4;40102:1;40095:15;40129:4;40126:1;40119:15;40146:185;40186:1;40203:20;40221:1;40203:20;:::i;:::-;40198:25;;40237:20;40255:1;40237:20;:::i;:::-;40232:25;;40276:1;40266:35;;40281:18;;:::i;:::-;40266:35;40323:1;40320;40316:9;40311:14;;40146:185;;;;:::o;40337:176::-;40369:1;40386:20;40404:1;40386:20;:::i;:::-;40381:25;;40420:20;40438:1;40420:20;:::i;:::-;40415:25;;40459:1;40449:35;;40464:18;;:::i;:::-;40449:35;40505:1;40502;40498:9;40493:14;;40337:176;;;;:::o;40519:180::-;40567:77;40564:1;40557:88;40664:4;40661:1;40654:15;40688:4;40685:1;40678:15;40705:220;40845:34;40841:1;40833:6;40829:14;40822:58;40914:3;40909:2;40901:6;40897:15;40890:28;40705:220;:::o;40931:366::-;41073:3;41094:67;41158:2;41153:3;41094:67;:::i;:::-;41087:74;;41170:93;41259:3;41170:93;:::i;:::-;41288:2;41283:3;41279:12;41272:19;;40931:366;;;:::o;41303:419::-;41469:4;41507:2;41496:9;41492:18;41484:26;;41556:9;41550:4;41546:20;41542:1;41531:9;41527:17;41520:47;41584:131;41710:4;41584:131;:::i;:::-;41576:139;;41303:419;;;:::o;41728:179::-;41868:31;41864:1;41856:6;41852:14;41845:55;41728:179;:::o;41913:366::-;42055:3;42076:67;42140:2;42135:3;42076:67;:::i;:::-;42069:74;;42152:93;42241:3;42152:93;:::i;:::-;42270:2;42265:3;42261:12;42254:19;;41913:366;;;:::o;42285:419::-;42451:4;42489:2;42478:9;42474:18;42466:26;;42538:9;42532:4;42528:20;42524:1;42513:9;42509:17;42502:47;42566:131;42692:4;42566:131;:::i;:::-;42558:139;;42285:419;;;:::o;42710:221::-;42850:34;42846:1;42838:6;42834:14;42827:58;42919:4;42914:2;42906:6;42902:15;42895:29;42710:221;:::o;42937:366::-;43079:3;43100:67;43164:2;43159:3;43100:67;:::i;:::-;43093:74;;43176:93;43265:3;43176:93;:::i;:::-;43294:2;43289:3;43285:12;43278:19;;42937:366;;;:::o;43309:419::-;43475:4;43513:2;43502:9;43498:18;43490:26;;43562:9;43556:4;43552:20;43548:1;43537:9;43533:17;43526:47;43590:131;43716:4;43590:131;:::i;:::-;43582:139;;43309:419;;;:::o

Swarm Source

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