ETH Price: $3,104.98 (+0.76%)
Gas: 4 Gwei

Token

OmniWolvesCC0 (OW)
 

Overview

Max Total Supply

1,550 OW

Holders

143

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
only1dan.eth
Balance
2 OW
0x2fa3f64491f2e7183ed6b50ab7cdbed360fddc83
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:
OmniWolvesCC0

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: OmniWolves New.sol


// File: @openzeppelin/contracts/utils/Strings.sol


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

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (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);

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


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

// File: contracts/ERC721A.sol



pragma solidity ^0.8.0;









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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

  /**
   * @dev See {IERC721-transferFrom}.
   */
  function transferFrom(
    address from,
    address to,
    uint256 tokenId
  ) public 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 {}
}
// File: @openzeppelin/contracts/access/Ownable.sol


// 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(), "Ownable: caller is not the owner");
        _;
    }

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

// File: contracts/Project.sol



pragma solidity ^0.8.0;
/**
*/





contract OmniWolvesCC0 is Ownable, ERC721A, ReentrancyGuard {
    bool publicSale = true;
    uint256 nbFree = 500;
    uint256 public price = 0.001 ether;

    constructor() ERC721A("OmniWolvesCC0", "OW", 10, 1550) {}

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    function setFree(uint256 nb) external onlyOwner {
        nbFree = nb;
    }

    function freeMint(uint256 quantity) external callerIsUser {
        require(publicSale, "Public sale has not begun yet");
        require(totalSupply() + quantity <= nbFree, "Reached max free supply");
        require(quantity <= 10, "can not mint this many free at a time");
        _safeMint(msg.sender, quantity);
    }

    function mint(uint256 quantity) external payable callerIsUser {
        require(publicSale, "Public sale has not begun yet");
        require(
            totalSupply() + quantity <= collectionSize,
            "Reached max supply"
        );
        require(quantity <= 10, "can not mint this many at a time");
        require(
            price * quantity <= msg.value,
            "Ether value sent is not correct"
        );

        _safeMint(msg.sender, quantity);
    }

	function setprice(uint256 _newprice) public onlyOwner {
	    price = _newprice;
	}

    // metadata URI
    string private _baseTokenURI =
        "ipfs://bafkreid4r3qqdsxv2i47c2vbdhx2zq7rjk4xqn43t4pywchdmq7oidvsvm";

    function initMint() external onlyOwner {
        _safeMint(msg.sender, 1); // As the collection starts at 0, this first mint is for the deployer ...
    }

    
    function setSaleState(bool state) external onlyOwner {
        publicSale = state;
    }

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

    function setBaseURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

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

    function setOwnersExplicit(uint256 quantity)
        external
        onlyOwner
        nonReentrant
    {
        _setOwnersExplicit(quantity);
    }

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

    function getOwnershipData(uint256 tokenId)
        external
        view
        returns (TokenOwnership memory)
    {
        return ownershipOf(tokenId);
    }
    
}

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":"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":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initMint","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"nb","type":"uint256"}],"name":"setFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"setSaleState","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"}]

60c0604052600060015560006008556001600a60006101000a81548160ff0219169083151502179055506101f4600b5566038d7ea4c68000600c556040518060800160405280604281526020016200551660429139600d90805190602001906200006b929190620002b7565b503480156200007957600080fd5b506040518060400160405280600d81526020017f4f6d6e69576f6c766573434330000000000000000000000000000000000000008152506040518060400160405280600281526020017f4f57000000000000000000000000000000000000000000000000000000000000815250600a61060e6200010b620000ff620001eb60201b60201c565b620001f360201b60201c565b6000811162000151576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200014890620003d7565b60405180910390fd5b6000821162000197576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200018e90620003b5565b60405180910390fd5b8360029080519060200190620001af929190620002b7565b508260039080519060200190620001c8929190620002b7565b508160a0818152505080608081815250505050505060016009819055506200050d565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002c5906200040a565b90600052602060002090601f016020900481019282620002e9576000855562000335565b82601f106200030457805160ff191683800117855562000335565b8280016001018555821562000335579182015b828111156200033457825182559160200191906001019062000317565b5b50905062000344919062000348565b5090565b5b808211156200036357600081600090555060010162000349565b5090565b600062000376602783620003f9565b915062000383826200046f565b604082019050919050565b60006200039d602e83620003f9565b9150620003aa82620004be565b604082019050919050565b60006020820190508181036000830152620003d08162000367565b9050919050565b60006020820190508181036000830152620003f2816200038e565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200042357607f821691505b602082108114156200043a576200043962000440565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b60805160a051614fc76200054f6000396000818161264a015281816126730152612e1c015260008181611418015281816123d201526124060152614fc76000f3fe6080604052600436106101e35760003560e01c80638da5cb5b11610102578063c4e3709511610095578063dc33e68111610064578063dc33e681146106df578063e0737f7a1461071c578063e985e9c514610733578063f2fde38b14610770576101e3565b8063c4e3709514610625578063c87b56dd1461064e578063d49f0fa51461068b578063d7224ba0146106b4576101e3565b8063a0712d68116100d1578063a0712d68146105a0578063a22cb465146105bc578063ac446002146105e5578063b88d4fde146105fc576101e3565b80638da5cb5b146104e25780639231ab2a1461050d57806395d89b411461054a578063a035b1fe14610575576101e3565b806342842e0e1161017a5780637040d73f116101495780637040d73f1461043c57806370a0823114610465578063715018a6146104a25780637c928fe9146104b9576101e3565b806342842e0e146103705780634f6ccce71461039957806355f804b3146103d65780636352211e146103ff576101e3565b806318160ddd116101b657806318160ddd146102b657806323b872dd146102e15780632d20fb601461030a5780632f745c5914610333576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190613659565b610799565b60405161021c9190613d6d565b60405180910390f35b34801561023157600080fd5b5061023a6108e3565b6040516102479190613d88565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190613700565b610975565b6040516102849190613d06565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af91906135ec565b6109fa565b005b3480156102c257600080fd5b506102cb610b13565b6040516102d891906141c5565b60405180910390f35b3480156102ed57600080fd5b50610308600480360381019061030391906134d6565b610b1d565b005b34801561031657600080fd5b50610331600480360381019061032c9190613700565b610b2d565b005b34801561033f57600080fd5b5061035a600480360381019061035591906135ec565b610c0b565b60405161036791906141c5565b60405180910390f35b34801561037c57600080fd5b50610397600480360381019061039291906134d6565b610e09565b005b3480156103a557600080fd5b506103c060048036038101906103bb9190613700565b610e29565b6040516103cd91906141c5565b60405180910390f35b3480156103e257600080fd5b506103fd60048036038101906103f891906136b3565b610e7c565b005b34801561040b57600080fd5b5061042660048036038101906104219190613700565b610f0e565b6040516104339190613d06565b60405180910390f35b34801561044857600080fd5b50610463600480360381019061045e9190613700565b610f24565b005b34801561047157600080fd5b5061048c60048036038101906104879190613469565b610faa565b60405161049991906141c5565b60405180910390f35b3480156104ae57600080fd5b506104b7611093565b005b3480156104c557600080fd5b506104e060048036038101906104db9190613700565b61111b565b005b3480156104ee57600080fd5b506104f7611280565b6040516105049190613d06565b60405180910390f35b34801561051957600080fd5b50610534600480360381019061052f9190613700565b6112a9565b60405161054191906141aa565b60405180910390f35b34801561055657600080fd5b5061055f6112c1565b60405161056c9190613d88565b60405180910390f35b34801561058157600080fd5b5061058a611353565b60405161059791906141c5565b60405180910390f35b6105ba60048036038101906105b59190613700565b611359565b005b3480156105c857600080fd5b506105e360048036038101906105de91906135ac565b61152c565b005b3480156105f157600080fd5b506105fa6116ad565b005b34801561060857600080fd5b50610623600480360381019061061e9190613529565b61182e565b005b34801561063157600080fd5b5061064c6004803603810190610647919061362c565b61188a565b005b34801561065a57600080fd5b5061067560048036038101906106709190613700565b611923565b6040516106829190613d88565b60405180910390f35b34801561069757600080fd5b506106b260048036038101906106ad9190613700565b6119ca565b005b3480156106c057600080fd5b506106c9611a50565b6040516106d691906141c5565b60405180910390f35b3480156106eb57600080fd5b5061070660048036038101906107019190613469565b611a56565b60405161071391906141c5565b60405180910390f35b34801561072857600080fd5b50610731611a68565b005b34801561073f57600080fd5b5061075a60048036038101906107559190613496565b611af1565b6040516107679190613d6d565b60405180910390f35b34801561077c57600080fd5b5061079760048036038101906107929190613469565b611b85565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108cc57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108dc57506108db82611c7d565b5b9050919050565b6060600280546108f290614523565b80601f016020809104026020016040519081016040528092919081815260200182805461091e90614523565b801561096b5780601f106109405761010080835404028352916020019161096b565b820191906000526020600020905b81548152906001019060200180831161094e57829003601f168201915b5050505050905090565b600061098082611ce7565b6109bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b69061414a565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a0582610f0e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6d9061402a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a95611cf5565b73ffffffffffffffffffffffffffffffffffffffff161480610ac45750610ac381610abe611cf5565b611af1565b5b610b03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afa90613f0a565b60405180910390fd5b610b0e838383611cfd565b505050565b6000600154905090565b610b28838383611daf565b505050565b610b35611cf5565b73ffffffffffffffffffffffffffffffffffffffff16610b53611280565b73ffffffffffffffffffffffffffffffffffffffff1614610ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba090613f8a565b60405180910390fd5b60026009541415610bef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be69061410a565b60405180910390fd5b6002600981905550610c0081612368565b600160098190555050565b6000610c1683610faa565b8210610c57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4e90613daa565b60405180910390fd5b6000610c61610b13565b905060008060005b83811015610dc7576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d5b57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610db35786841415610da4578195505050505050610e03565b8380610daf90614586565b9450505b508080610dbf90614586565b915050610c69565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfa906140ca565b60405180910390fd5b92915050565b610e248383836040518060200160405280600081525061182e565b505050565b6000610e33610b13565b8210610e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6b90613e2a565b60405180910390fd5b819050919050565b610e84611cf5565b73ffffffffffffffffffffffffffffffffffffffff16610ea2611280565b73ffffffffffffffffffffffffffffffffffffffff1614610ef8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eef90613f8a565b60405180910390fd5b8181600d9190610f0992919061325d565b505050565b6000610f19826125f6565b600001519050919050565b610f2c611cf5565b73ffffffffffffffffffffffffffffffffffffffff16610f4a611280565b73ffffffffffffffffffffffffffffffffffffffff1614610fa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9790613f8a565b60405180910390fd5b80600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561101b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101290613f4a565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61109b611cf5565b73ffffffffffffffffffffffffffffffffffffffff166110b9611280565b73ffffffffffffffffffffffffffffffffffffffff161461110f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110690613f8a565b60405180910390fd5b61111960006127f9565b565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611189576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118090613eca565b60405180910390fd5b600a60009054906101000a900460ff166111d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cf90613dca565b60405180910390fd5b600b54816111e4610b13565b6111ee91906142ca565b111561122f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112269061400a565b60405180910390fd5b600a811115611273576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126a9061418a565b60405180910390fd5b61127d33826128bd565b50565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6112b16132e3565b6112ba826125f6565b9050919050565b6060600380546112d090614523565b80601f01602080910402602001604051908101604052809291908181526020018280546112fc90614523565b80156113495780601f1061131e57610100808354040283529160200191611349565b820191906000526020600020905b81548152906001019060200180831161132c57829003601f168201915b5050505050905090565b600c5481565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146113c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113be90613eca565b60405180910390fd5b600a60009054906101000a900460ff16611416576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140d90613dca565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000081611440610b13565b61144a91906142ca565b111561148b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148290613e4a565b60405180910390fd5b600a8111156114cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c690613eea565b60405180910390fd5b3481600c546114de9190614351565b111561151f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151690613eaa565b60405180910390fd5b61152933826128bd565b50565b611534611cf5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159990613fca565b60405180910390fd5b80600760006115af611cf5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661165c611cf5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116a19190613d6d565b60405180910390a35050565b6116b5611cf5565b73ffffffffffffffffffffffffffffffffffffffff166116d3611280565b73ffffffffffffffffffffffffffffffffffffffff1614611729576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172090613f8a565b60405180910390fd5b6002600954141561176f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117669061410a565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff164760405161179d90613cf1565b60006040518083038185875af1925050503d80600081146117da576040519150601f19603f3d011682016040523d82523d6000602084013e6117df565b606091505b5050905080611823576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181a9061404a565b60405180910390fd5b506001600981905550565b611839848484611daf565b611845848484846128db565b611884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187b9061406a565b60405180910390fd5b50505050565b611892611cf5565b73ffffffffffffffffffffffffffffffffffffffff166118b0611280565b73ffffffffffffffffffffffffffffffffffffffff1614611906576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fd90613f8a565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b606061192e82611ce7565b61196d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196490613faa565b60405180910390fd5b6000611977612a72565b9050600081511161199757604051806020016040528060008152506119c2565b806119a184612b04565b6040516020016119b2929190613ccd565b6040516020818303038152906040525b915050919050565b6119d2611cf5565b73ffffffffffffffffffffffffffffffffffffffff166119f0611280565b73ffffffffffffffffffffffffffffffffffffffff1614611a46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3d90613f8a565b60405180910390fd5b80600c8190555050565b60085481565b6000611a6182612c65565b9050919050565b611a70611cf5565b73ffffffffffffffffffffffffffffffffffffffff16611a8e611280565b73ffffffffffffffffffffffffffffffffffffffff1614611ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adb90613f8a565b60405180910390fd5b611aef3360016128bd565b565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b8d611cf5565b73ffffffffffffffffffffffffffffffffffffffff16611bab611280565b73ffffffffffffffffffffffffffffffffffffffff1614611c01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf890613f8a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6890613dea565b60405180910390fd5b611c7a816127f9565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611dba826125f6565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611de1611cf5565b73ffffffffffffffffffffffffffffffffffffffff161480611e3d5750611e06611cf5565b73ffffffffffffffffffffffffffffffffffffffff16611e2584610975565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e595750611e588260000151611e53611cf5565b611af1565b5b905080611e9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9290613fea565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611f0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0490613f6a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7490613e6a565b60405180910390fd5b611f8a8585856001612d4e565b611f9a6000848460000151611cfd565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661200891906143ab565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166120ac9190614284565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846121b291906142ca565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156122f85761222881611ce7565b156122f7576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123608686866001612d54565b505050505050565b60006008549050600082116123b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a990613f2a565b60405180910390fd5b6000600183836123c291906142ca565b6123cc91906143df565b905060017f00000000000000000000000000000000000000000000000000000000000000006123fb91906143df565b8111156124325760017f000000000000000000000000000000000000000000000000000000000000000061242f91906143df565b90505b61243b81611ce7565b61247a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612471906140ea565b60405180910390fd5b60008290505b8181116125dd57600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156125ca5760006124fd826125f6565b90506040518060400160405280826000015173ffffffffffffffffffffffffffffffffffffffff168152602001826020015167ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050505b80806125d590614586565b915050612480565b506001816125eb91906142ca565b600881905550505050565b6125fe6132e3565b61260782611ce7565b612646576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263d90613e0a565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106126aa5760017f00000000000000000000000000000000000000000000000000000000000000008461269d91906143df565b6126a791906142ca565b90505b60008390505b8181106127b8576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127a4578093505050506127f4565b5080806127b0906144f9565b9150506126b0565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127eb9061412a565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6128d7828260405180602001604052806000815250612d5a565b5050565b60006128fc8473ffffffffffffffffffffffffffffffffffffffff1661323a565b15612a65578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612925611cf5565b8786866040518563ffffffff1660e01b81526004016129479493929190613d21565b602060405180830381600087803b15801561296157600080fd5b505af192505050801561299257506040513d601f19601f8201168201806040525081019061298f9190613686565b60015b612a15573d80600081146129c2576040519150601f19603f3d011682016040523d82523d6000602084013e6129c7565b606091505b50600081511415612a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a049061406a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a6a565b600190505b949350505050565b6060600d8054612a8190614523565b80601f0160208091040260200160405190810160405280929190818152602001828054612aad90614523565b8015612afa5780601f10612acf57610100808354040283529160200191612afa565b820191906000526020600020905b815481529060010190602001808311612add57829003601f168201915b5050505050905090565b60606000821415612b4c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c60565b600082905060005b60008214612b7e578080612b6790614586565b915050600a82612b779190614320565b9150612b54565b60008167ffffffffffffffff811115612b9a57612b996146bc565b5b6040519080825280601f01601f191660200182016040528015612bcc5781602001600182028036833780820191505090505b5090505b60008514612c5957600182612be591906143df565b9150600a85612bf491906145cf565b6030612c0091906142ca565b60f81b818381518110612c1657612c1561468d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c529190614320565b9450612bd0565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ccd90613e8a565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612dd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc8906140aa565b60405180910390fd5b612dda81611ce7565b15612e1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e119061408a565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115612e7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e749061416a565b60405180910390fd5b612e8a6000858386612d4e565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612f879190614284565b6fffffffffffffffffffffffffffffffff168152602001858360200151612fae9190614284565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561321d57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46131bd60008884886128db565b6131fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131f39061406a565b60405180910390fd5b818061320790614586565b925050808061321590614586565b91505061314c565b50806001819055506132326000878588612d54565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461326990614523565b90600052602060002090601f01602090048101928261328b57600085556132d2565b82601f106132a457803560ff19168380011785556132d2565b828001600101855582156132d2579182015b828111156132d15782358255916020019190600101906132b6565b5b5090506132df919061331d565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561333657600081600090555060010161331e565b5090565b600061334d61334884614205565b6141e0565b905082815260208101848484011115613369576133686146fa565b5b6133748482856144b7565b509392505050565b60008135905061338b81614f35565b92915050565b6000813590506133a081614f4c565b92915050565b6000813590506133b581614f63565b92915050565b6000815190506133ca81614f63565b92915050565b600082601f8301126133e5576133e46146f0565b5b81356133f584826020860161333a565b91505092915050565b60008083601f840112613414576134136146f0565b5b8235905067ffffffffffffffff811115613431576134306146eb565b5b60208301915083600182028301111561344d5761344c6146f5565b5b9250929050565b60008135905061346381614f7a565b92915050565b60006020828403121561347f5761347e614704565b5b600061348d8482850161337c565b91505092915050565b600080604083850312156134ad576134ac614704565b5b60006134bb8582860161337c565b92505060206134cc8582860161337c565b9150509250929050565b6000806000606084860312156134ef576134ee614704565b5b60006134fd8682870161337c565b935050602061350e8682870161337c565b925050604061351f86828701613454565b9150509250925092565b6000806000806080858703121561354357613542614704565b5b60006135518782880161337c565b94505060206135628782880161337c565b935050604061357387828801613454565b925050606085013567ffffffffffffffff811115613594576135936146ff565b5b6135a0878288016133d0565b91505092959194509250565b600080604083850312156135c3576135c2614704565b5b60006135d18582860161337c565b92505060206135e285828601613391565b9150509250929050565b6000806040838503121561360357613602614704565b5b60006136118582860161337c565b925050602061362285828601613454565b9150509250929050565b60006020828403121561364257613641614704565b5b600061365084828501613391565b91505092915050565b60006020828403121561366f5761366e614704565b5b600061367d848285016133a6565b91505092915050565b60006020828403121561369c5761369b614704565b5b60006136aa848285016133bb565b91505092915050565b600080602083850312156136ca576136c9614704565b5b600083013567ffffffffffffffff8111156136e8576136e76146ff565b5b6136f4858286016133fe565b92509250509250929050565b60006020828403121561371657613715614704565b5b600061372484828501613454565b91505092915050565b61373681614413565b82525050565b61374581614413565b82525050565b61375481614425565b82525050565b600061376582614236565b61376f818561424c565b935061377f8185602086016144c6565b61378881614709565b840191505092915050565b600061379e82614241565b6137a88185614268565b93506137b88185602086016144c6565b6137c181614709565b840191505092915050565b60006137d782614241565b6137e18185614279565b93506137f18185602086016144c6565b80840191505092915050565b600061380a602283614268565b91506138158261471a565b604082019050919050565b600061382d601d83614268565b915061383882614769565b602082019050919050565b6000613850602683614268565b915061385b82614792565b604082019050919050565b6000613873602a83614268565b915061387e826147e1565b604082019050919050565b6000613896602383614268565b91506138a182614830565b604082019050919050565b60006138b9601283614268565b91506138c48261487f565b602082019050919050565b60006138dc602583614268565b91506138e7826148a8565b604082019050919050565b60006138ff603183614268565b915061390a826148f7565b604082019050919050565b6000613922601f83614268565b915061392d82614946565b602082019050919050565b6000613945601e83614268565b91506139508261496f565b602082019050919050565b6000613968602083614268565b915061397382614998565b602082019050919050565b600061398b603983614268565b9150613996826149c1565b604082019050919050565b60006139ae601883614268565b91506139b982614a10565b602082019050919050565b60006139d1602b83614268565b91506139dc82614a39565b604082019050919050565b60006139f4602683614268565b91506139ff82614a88565b604082019050919050565b6000613a17602083614268565b9150613a2282614ad7565b602082019050919050565b6000613a3a602f83614268565b9150613a4582614b00565b604082019050919050565b6000613a5d601a83614268565b9150613a6882614b4f565b602082019050919050565b6000613a80603283614268565b9150613a8b82614b78565b604082019050919050565b6000613aa3601783614268565b9150613aae82614bc7565b602082019050919050565b6000613ac6602283614268565b9150613ad182614bf0565b604082019050919050565b6000613ae960008361425d565b9150613af482614c3f565b600082019050919050565b6000613b0c601083614268565b9150613b1782614c42565b602082019050919050565b6000613b2f603383614268565b9150613b3a82614c6b565b604082019050919050565b6000613b52601d83614268565b9150613b5d82614cba565b602082019050919050565b6000613b75602183614268565b9150613b8082614ce3565b604082019050919050565b6000613b98602e83614268565b9150613ba382614d32565b604082019050919050565b6000613bbb602683614268565b9150613bc682614d81565b604082019050919050565b6000613bde601f83614268565b9150613be982614dd0565b602082019050919050565b6000613c01602f83614268565b9150613c0c82614df9565b604082019050919050565b6000613c24602d83614268565b9150613c2f82614e48565b604082019050919050565b6000613c47602283614268565b9150613c5282614e97565b604082019050919050565b6000613c6a602583614268565b9150613c7582614ee6565b604082019050919050565b604082016000820151613c96600085018261372d565b506020820151613ca96020850182613cbe565b50505050565b613cb881614499565b82525050565b613cc7816144a3565b82525050565b6000613cd982856137cc565b9150613ce582846137cc565b91508190509392505050565b6000613cfc82613adc565b9150819050919050565b6000602082019050613d1b600083018461373c565b92915050565b6000608082019050613d36600083018761373c565b613d43602083018661373c565b613d506040830185613caf565b8181036060830152613d62818461375a565b905095945050505050565b6000602082019050613d82600083018461374b565b92915050565b60006020820190508181036000830152613da28184613793565b905092915050565b60006020820190508181036000830152613dc3816137fd565b9050919050565b60006020820190508181036000830152613de381613820565b9050919050565b60006020820190508181036000830152613e0381613843565b9050919050565b60006020820190508181036000830152613e2381613866565b9050919050565b60006020820190508181036000830152613e4381613889565b9050919050565b60006020820190508181036000830152613e63816138ac565b9050919050565b60006020820190508181036000830152613e83816138cf565b9050919050565b60006020820190508181036000830152613ea3816138f2565b9050919050565b60006020820190508181036000830152613ec381613915565b9050919050565b60006020820190508181036000830152613ee381613938565b9050919050565b60006020820190508181036000830152613f038161395b565b9050919050565b60006020820190508181036000830152613f238161397e565b9050919050565b60006020820190508181036000830152613f43816139a1565b9050919050565b60006020820190508181036000830152613f63816139c4565b9050919050565b60006020820190508181036000830152613f83816139e7565b9050919050565b60006020820190508181036000830152613fa381613a0a565b9050919050565b60006020820190508181036000830152613fc381613a2d565b9050919050565b60006020820190508181036000830152613fe381613a50565b9050919050565b6000602082019050818103600083015261400381613a73565b9050919050565b6000602082019050818103600083015261402381613a96565b9050919050565b6000602082019050818103600083015261404381613ab9565b9050919050565b6000602082019050818103600083015261406381613aff565b9050919050565b6000602082019050818103600083015261408381613b22565b9050919050565b600060208201905081810360008301526140a381613b45565b9050919050565b600060208201905081810360008301526140c381613b68565b9050919050565b600060208201905081810360008301526140e381613b8b565b9050919050565b6000602082019050818103600083015261410381613bae565b9050919050565b6000602082019050818103600083015261412381613bd1565b9050919050565b6000602082019050818103600083015261414381613bf4565b9050919050565b6000602082019050818103600083015261416381613c17565b9050919050565b6000602082019050818103600083015261418381613c3a565b9050919050565b600060208201905081810360008301526141a381613c5d565b9050919050565b60006040820190506141bf6000830184613c80565b92915050565b60006020820190506141da6000830184613caf565b92915050565b60006141ea6141fb565b90506141f68282614555565b919050565b6000604051905090565b600067ffffffffffffffff8211156142205761421f6146bc565b5b61422982614709565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061428f8261445d565b915061429a8361445d565b9250826fffffffffffffffffffffffffffffffff038211156142bf576142be614600565b5b828201905092915050565b60006142d582614499565b91506142e083614499565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561431557614314614600565b5b828201905092915050565b600061432b82614499565b915061433683614499565b9250826143465761434561462f565b5b828204905092915050565b600061435c82614499565b915061436783614499565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143a05761439f614600565b5b828202905092915050565b60006143b68261445d565b91506143c18361445d565b9250828210156143d4576143d3614600565b5b828203905092915050565b60006143ea82614499565b91506143f583614499565b92508282101561440857614407614600565b5b828203905092915050565b600061441e82614479565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156144e45780820151818401526020810190506144c9565b838111156144f3576000848401525b50505050565b600061450482614499565b9150600082141561451857614517614600565b5b600182039050919050565b6000600282049050600182168061453b57607f821691505b6020821081141561454f5761454e61465e565b5b50919050565b61455e82614709565b810181811067ffffffffffffffff8211171561457d5761457c6146bc565b5b80604052505050565b600061459182614499565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156145c4576145c3614600565b5b600182019050919050565b60006145da82614499565b91506145e583614499565b9250826145f5576145f461462f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f5075626c69632073616c6520686173206e6f7420626567756e20796574000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f52656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f63616e206e6f74206d696e742074686973206d616e7920617420612074696d65600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f52656163686564206d6178206672656520737570706c79000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360008201527f6c65616e75700000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b7f63616e206e6f74206d696e742074686973206d616e792066726565206174206160008201527f2074696d65000000000000000000000000000000000000000000000000000000602082015250565b614f3e81614413565b8114614f4957600080fd5b50565b614f5581614425565b8114614f6057600080fd5b50565b614f6c81614431565b8114614f7757600080fd5b50565b614f8381614499565b8114614f8e57600080fd5b5056fea2646970667358221220906214e1e99406b302cfa8b5e9066a669c3c8b66a56820efc05fbb0833e4168864736f6c63430008070033697066733a2f2f6261666b726569643472337171647378763269343763327662646878327a7137726a6b3478716e343374347079776368646d71376f69647673766d

Deployed Bytecode

0x6080604052600436106101e35760003560e01c80638da5cb5b11610102578063c4e3709511610095578063dc33e68111610064578063dc33e681146106df578063e0737f7a1461071c578063e985e9c514610733578063f2fde38b14610770576101e3565b8063c4e3709514610625578063c87b56dd1461064e578063d49f0fa51461068b578063d7224ba0146106b4576101e3565b8063a0712d68116100d1578063a0712d68146105a0578063a22cb465146105bc578063ac446002146105e5578063b88d4fde146105fc576101e3565b80638da5cb5b146104e25780639231ab2a1461050d57806395d89b411461054a578063a035b1fe14610575576101e3565b806342842e0e1161017a5780637040d73f116101495780637040d73f1461043c57806370a0823114610465578063715018a6146104a25780637c928fe9146104b9576101e3565b806342842e0e146103705780634f6ccce71461039957806355f804b3146103d65780636352211e146103ff576101e3565b806318160ddd116101b657806318160ddd146102b657806323b872dd146102e15780632d20fb601461030a5780632f745c5914610333576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190613659565b610799565b60405161021c9190613d6d565b60405180910390f35b34801561023157600080fd5b5061023a6108e3565b6040516102479190613d88565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190613700565b610975565b6040516102849190613d06565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af91906135ec565b6109fa565b005b3480156102c257600080fd5b506102cb610b13565b6040516102d891906141c5565b60405180910390f35b3480156102ed57600080fd5b50610308600480360381019061030391906134d6565b610b1d565b005b34801561031657600080fd5b50610331600480360381019061032c9190613700565b610b2d565b005b34801561033f57600080fd5b5061035a600480360381019061035591906135ec565b610c0b565b60405161036791906141c5565b60405180910390f35b34801561037c57600080fd5b50610397600480360381019061039291906134d6565b610e09565b005b3480156103a557600080fd5b506103c060048036038101906103bb9190613700565b610e29565b6040516103cd91906141c5565b60405180910390f35b3480156103e257600080fd5b506103fd60048036038101906103f891906136b3565b610e7c565b005b34801561040b57600080fd5b5061042660048036038101906104219190613700565b610f0e565b6040516104339190613d06565b60405180910390f35b34801561044857600080fd5b50610463600480360381019061045e9190613700565b610f24565b005b34801561047157600080fd5b5061048c60048036038101906104879190613469565b610faa565b60405161049991906141c5565b60405180910390f35b3480156104ae57600080fd5b506104b7611093565b005b3480156104c557600080fd5b506104e060048036038101906104db9190613700565b61111b565b005b3480156104ee57600080fd5b506104f7611280565b6040516105049190613d06565b60405180910390f35b34801561051957600080fd5b50610534600480360381019061052f9190613700565b6112a9565b60405161054191906141aa565b60405180910390f35b34801561055657600080fd5b5061055f6112c1565b60405161056c9190613d88565b60405180910390f35b34801561058157600080fd5b5061058a611353565b60405161059791906141c5565b60405180910390f35b6105ba60048036038101906105b59190613700565b611359565b005b3480156105c857600080fd5b506105e360048036038101906105de91906135ac565b61152c565b005b3480156105f157600080fd5b506105fa6116ad565b005b34801561060857600080fd5b50610623600480360381019061061e9190613529565b61182e565b005b34801561063157600080fd5b5061064c6004803603810190610647919061362c565b61188a565b005b34801561065a57600080fd5b5061067560048036038101906106709190613700565b611923565b6040516106829190613d88565b60405180910390f35b34801561069757600080fd5b506106b260048036038101906106ad9190613700565b6119ca565b005b3480156106c057600080fd5b506106c9611a50565b6040516106d691906141c5565b60405180910390f35b3480156106eb57600080fd5b5061070660048036038101906107019190613469565b611a56565b60405161071391906141c5565b60405180910390f35b34801561072857600080fd5b50610731611a68565b005b34801561073f57600080fd5b5061075a60048036038101906107559190613496565b611af1565b6040516107679190613d6d565b60405180910390f35b34801561077c57600080fd5b5061079760048036038101906107929190613469565b611b85565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061086457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108cc57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108dc57506108db82611c7d565b5b9050919050565b6060600280546108f290614523565b80601f016020809104026020016040519081016040528092919081815260200182805461091e90614523565b801561096b5780601f106109405761010080835404028352916020019161096b565b820191906000526020600020905b81548152906001019060200180831161094e57829003601f168201915b5050505050905090565b600061098082611ce7565b6109bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b69061414a565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a0582610f0e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6d9061402a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a95611cf5565b73ffffffffffffffffffffffffffffffffffffffff161480610ac45750610ac381610abe611cf5565b611af1565b5b610b03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afa90613f0a565b60405180910390fd5b610b0e838383611cfd565b505050565b6000600154905090565b610b28838383611daf565b505050565b610b35611cf5565b73ffffffffffffffffffffffffffffffffffffffff16610b53611280565b73ffffffffffffffffffffffffffffffffffffffff1614610ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba090613f8a565b60405180910390fd5b60026009541415610bef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be69061410a565b60405180910390fd5b6002600981905550610c0081612368565b600160098190555050565b6000610c1683610faa565b8210610c57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4e90613daa565b60405180910390fd5b6000610c61610b13565b905060008060005b83811015610dc7576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d5b57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610db35786841415610da4578195505050505050610e03565b8380610daf90614586565b9450505b508080610dbf90614586565b915050610c69565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfa906140ca565b60405180910390fd5b92915050565b610e248383836040518060200160405280600081525061182e565b505050565b6000610e33610b13565b8210610e74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6b90613e2a565b60405180910390fd5b819050919050565b610e84611cf5565b73ffffffffffffffffffffffffffffffffffffffff16610ea2611280565b73ffffffffffffffffffffffffffffffffffffffff1614610ef8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eef90613f8a565b60405180910390fd5b8181600d9190610f0992919061325d565b505050565b6000610f19826125f6565b600001519050919050565b610f2c611cf5565b73ffffffffffffffffffffffffffffffffffffffff16610f4a611280565b73ffffffffffffffffffffffffffffffffffffffff1614610fa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9790613f8a565b60405180910390fd5b80600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561101b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101290613f4a565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61109b611cf5565b73ffffffffffffffffffffffffffffffffffffffff166110b9611280565b73ffffffffffffffffffffffffffffffffffffffff161461110f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110690613f8a565b60405180910390fd5b61111960006127f9565b565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611189576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118090613eca565b60405180910390fd5b600a60009054906101000a900460ff166111d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cf90613dca565b60405180910390fd5b600b54816111e4610b13565b6111ee91906142ca565b111561122f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112269061400a565b60405180910390fd5b600a811115611273576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126a9061418a565b60405180910390fd5b61127d33826128bd565b50565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6112b16132e3565b6112ba826125f6565b9050919050565b6060600380546112d090614523565b80601f01602080910402602001604051908101604052809291908181526020018280546112fc90614523565b80156113495780601f1061131e57610100808354040283529160200191611349565b820191906000526020600020905b81548152906001019060200180831161132c57829003601f168201915b5050505050905090565b600c5481565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146113c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113be90613eca565b60405180910390fd5b600a60009054906101000a900460ff16611416576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140d90613dca565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000060e81611440610b13565b61144a91906142ca565b111561148b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148290613e4a565b60405180910390fd5b600a8111156114cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c690613eea565b60405180910390fd5b3481600c546114de9190614351565b111561151f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151690613eaa565b60405180910390fd5b61152933826128bd565b50565b611534611cf5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159990613fca565b60405180910390fd5b80600760006115af611cf5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661165c611cf5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116a19190613d6d565b60405180910390a35050565b6116b5611cf5565b73ffffffffffffffffffffffffffffffffffffffff166116d3611280565b73ffffffffffffffffffffffffffffffffffffffff1614611729576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172090613f8a565b60405180910390fd5b6002600954141561176f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117669061410a565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff164760405161179d90613cf1565b60006040518083038185875af1925050503d80600081146117da576040519150601f19603f3d011682016040523d82523d6000602084013e6117df565b606091505b5050905080611823576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181a9061404a565b60405180910390fd5b506001600981905550565b611839848484611daf565b611845848484846128db565b611884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187b9061406a565b60405180910390fd5b50505050565b611892611cf5565b73ffffffffffffffffffffffffffffffffffffffff166118b0611280565b73ffffffffffffffffffffffffffffffffffffffff1614611906576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fd90613f8a565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b606061192e82611ce7565b61196d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196490613faa565b60405180910390fd5b6000611977612a72565b9050600081511161199757604051806020016040528060008152506119c2565b806119a184612b04565b6040516020016119b2929190613ccd565b6040516020818303038152906040525b915050919050565b6119d2611cf5565b73ffffffffffffffffffffffffffffffffffffffff166119f0611280565b73ffffffffffffffffffffffffffffffffffffffff1614611a46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3d90613f8a565b60405180910390fd5b80600c8190555050565b60085481565b6000611a6182612c65565b9050919050565b611a70611cf5565b73ffffffffffffffffffffffffffffffffffffffff16611a8e611280565b73ffffffffffffffffffffffffffffffffffffffff1614611ae4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adb90613f8a565b60405180910390fd5b611aef3360016128bd565b565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b8d611cf5565b73ffffffffffffffffffffffffffffffffffffffff16611bab611280565b73ffffffffffffffffffffffffffffffffffffffff1614611c01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf890613f8a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6890613dea565b60405180910390fd5b611c7a816127f9565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611dba826125f6565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611de1611cf5565b73ffffffffffffffffffffffffffffffffffffffff161480611e3d5750611e06611cf5565b73ffffffffffffffffffffffffffffffffffffffff16611e2584610975565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e595750611e588260000151611e53611cf5565b611af1565b5b905080611e9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9290613fea565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611f0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0490613f6a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7490613e6a565b60405180910390fd5b611f8a8585856001612d4e565b611f9a6000848460000151611cfd565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661200891906143ab565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166120ac9190614284565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846121b291906142ca565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156122f85761222881611ce7565b156122f7576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123608686866001612d54565b505050505050565b60006008549050600082116123b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a990613f2a565b60405180910390fd5b6000600183836123c291906142ca565b6123cc91906143df565b905060017f000000000000000000000000000000000000000000000000000000000000060e6123fb91906143df565b8111156124325760017f000000000000000000000000000000000000000000000000000000000000060e61242f91906143df565b90505b61243b81611ce7565b61247a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612471906140ea565b60405180910390fd5b60008290505b8181116125dd57600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156125ca5760006124fd826125f6565b90506040518060400160405280826000015173ffffffffffffffffffffffffffffffffffffffff168152602001826020015167ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050505b80806125d590614586565b915050612480565b506001816125eb91906142ca565b600881905550505050565b6125fe6132e3565b61260782611ce7565b612646576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263d90613e0a565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000a83106126aa5760017f000000000000000000000000000000000000000000000000000000000000000a8461269d91906143df565b6126a791906142ca565b90505b60008390505b8181106127b8576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127a4578093505050506127f4565b5080806127b0906144f9565b9150506126b0565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127eb9061412a565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6128d7828260405180602001604052806000815250612d5a565b5050565b60006128fc8473ffffffffffffffffffffffffffffffffffffffff1661323a565b15612a65578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612925611cf5565b8786866040518563ffffffff1660e01b81526004016129479493929190613d21565b602060405180830381600087803b15801561296157600080fd5b505af192505050801561299257506040513d601f19601f8201168201806040525081019061298f9190613686565b60015b612a15573d80600081146129c2576040519150601f19603f3d011682016040523d82523d6000602084013e6129c7565b606091505b50600081511415612a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a049061406a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a6a565b600190505b949350505050565b6060600d8054612a8190614523565b80601f0160208091040260200160405190810160405280929190818152602001828054612aad90614523565b8015612afa5780601f10612acf57610100808354040283529160200191612afa565b820191906000526020600020905b815481529060010190602001808311612add57829003601f168201915b5050505050905090565b60606000821415612b4c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612c60565b600082905060005b60008214612b7e578080612b6790614586565b915050600a82612b779190614320565b9150612b54565b60008167ffffffffffffffff811115612b9a57612b996146bc565b5b6040519080825280601f01601f191660200182016040528015612bcc5781602001600182028036833780820191505090505b5090505b60008514612c5957600182612be591906143df565b9150600a85612bf491906145cf565b6030612c0091906142ca565b60f81b818381518110612c1657612c1561468d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612c529190614320565b9450612bd0565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ccd90613e8a565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612dd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc8906140aa565b60405180910390fd5b612dda81611ce7565b15612e1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e119061408a565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000a831115612e7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e749061416a565b60405180910390fd5b612e8a6000858386612d4e565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612f879190614284565b6fffffffffffffffffffffffffffffffff168152602001858360200151612fae9190614284565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561321d57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46131bd60008884886128db565b6131fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131f39061406a565b60405180910390fd5b818061320790614586565b925050808061321590614586565b91505061314c565b50806001819055506132326000878588612d54565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461326990614523565b90600052602060002090601f01602090048101928261328b57600085556132d2565b82601f106132a457803560ff19168380011785556132d2565b828001600101855582156132d2579182015b828111156132d15782358255916020019190600101906132b6565b5b5090506132df919061331d565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561333657600081600090555060010161331e565b5090565b600061334d61334884614205565b6141e0565b905082815260208101848484011115613369576133686146fa565b5b6133748482856144b7565b509392505050565b60008135905061338b81614f35565b92915050565b6000813590506133a081614f4c565b92915050565b6000813590506133b581614f63565b92915050565b6000815190506133ca81614f63565b92915050565b600082601f8301126133e5576133e46146f0565b5b81356133f584826020860161333a565b91505092915050565b60008083601f840112613414576134136146f0565b5b8235905067ffffffffffffffff811115613431576134306146eb565b5b60208301915083600182028301111561344d5761344c6146f5565b5b9250929050565b60008135905061346381614f7a565b92915050565b60006020828403121561347f5761347e614704565b5b600061348d8482850161337c565b91505092915050565b600080604083850312156134ad576134ac614704565b5b60006134bb8582860161337c565b92505060206134cc8582860161337c565b9150509250929050565b6000806000606084860312156134ef576134ee614704565b5b60006134fd8682870161337c565b935050602061350e8682870161337c565b925050604061351f86828701613454565b9150509250925092565b6000806000806080858703121561354357613542614704565b5b60006135518782880161337c565b94505060206135628782880161337c565b935050604061357387828801613454565b925050606085013567ffffffffffffffff811115613594576135936146ff565b5b6135a0878288016133d0565b91505092959194509250565b600080604083850312156135c3576135c2614704565b5b60006135d18582860161337c565b92505060206135e285828601613391565b9150509250929050565b6000806040838503121561360357613602614704565b5b60006136118582860161337c565b925050602061362285828601613454565b9150509250929050565b60006020828403121561364257613641614704565b5b600061365084828501613391565b91505092915050565b60006020828403121561366f5761366e614704565b5b600061367d848285016133a6565b91505092915050565b60006020828403121561369c5761369b614704565b5b60006136aa848285016133bb565b91505092915050565b600080602083850312156136ca576136c9614704565b5b600083013567ffffffffffffffff8111156136e8576136e76146ff565b5b6136f4858286016133fe565b92509250509250929050565b60006020828403121561371657613715614704565b5b600061372484828501613454565b91505092915050565b61373681614413565b82525050565b61374581614413565b82525050565b61375481614425565b82525050565b600061376582614236565b61376f818561424c565b935061377f8185602086016144c6565b61378881614709565b840191505092915050565b600061379e82614241565b6137a88185614268565b93506137b88185602086016144c6565b6137c181614709565b840191505092915050565b60006137d782614241565b6137e18185614279565b93506137f18185602086016144c6565b80840191505092915050565b600061380a602283614268565b91506138158261471a565b604082019050919050565b600061382d601d83614268565b915061383882614769565b602082019050919050565b6000613850602683614268565b915061385b82614792565b604082019050919050565b6000613873602a83614268565b915061387e826147e1565b604082019050919050565b6000613896602383614268565b91506138a182614830565b604082019050919050565b60006138b9601283614268565b91506138c48261487f565b602082019050919050565b60006138dc602583614268565b91506138e7826148a8565b604082019050919050565b60006138ff603183614268565b915061390a826148f7565b604082019050919050565b6000613922601f83614268565b915061392d82614946565b602082019050919050565b6000613945601e83614268565b91506139508261496f565b602082019050919050565b6000613968602083614268565b915061397382614998565b602082019050919050565b600061398b603983614268565b9150613996826149c1565b604082019050919050565b60006139ae601883614268565b91506139b982614a10565b602082019050919050565b60006139d1602b83614268565b91506139dc82614a39565b604082019050919050565b60006139f4602683614268565b91506139ff82614a88565b604082019050919050565b6000613a17602083614268565b9150613a2282614ad7565b602082019050919050565b6000613a3a602f83614268565b9150613a4582614b00565b604082019050919050565b6000613a5d601a83614268565b9150613a6882614b4f565b602082019050919050565b6000613a80603283614268565b9150613a8b82614b78565b604082019050919050565b6000613aa3601783614268565b9150613aae82614bc7565b602082019050919050565b6000613ac6602283614268565b9150613ad182614bf0565b604082019050919050565b6000613ae960008361425d565b9150613af482614c3f565b600082019050919050565b6000613b0c601083614268565b9150613b1782614c42565b602082019050919050565b6000613b2f603383614268565b9150613b3a82614c6b565b604082019050919050565b6000613b52601d83614268565b9150613b5d82614cba565b602082019050919050565b6000613b75602183614268565b9150613b8082614ce3565b604082019050919050565b6000613b98602e83614268565b9150613ba382614d32565b604082019050919050565b6000613bbb602683614268565b9150613bc682614d81565b604082019050919050565b6000613bde601f83614268565b9150613be982614dd0565b602082019050919050565b6000613c01602f83614268565b9150613c0c82614df9565b604082019050919050565b6000613c24602d83614268565b9150613c2f82614e48565b604082019050919050565b6000613c47602283614268565b9150613c5282614e97565b604082019050919050565b6000613c6a602583614268565b9150613c7582614ee6565b604082019050919050565b604082016000820151613c96600085018261372d565b506020820151613ca96020850182613cbe565b50505050565b613cb881614499565b82525050565b613cc7816144a3565b82525050565b6000613cd982856137cc565b9150613ce582846137cc565b91508190509392505050565b6000613cfc82613adc565b9150819050919050565b6000602082019050613d1b600083018461373c565b92915050565b6000608082019050613d36600083018761373c565b613d43602083018661373c565b613d506040830185613caf565b8181036060830152613d62818461375a565b905095945050505050565b6000602082019050613d82600083018461374b565b92915050565b60006020820190508181036000830152613da28184613793565b905092915050565b60006020820190508181036000830152613dc3816137fd565b9050919050565b60006020820190508181036000830152613de381613820565b9050919050565b60006020820190508181036000830152613e0381613843565b9050919050565b60006020820190508181036000830152613e2381613866565b9050919050565b60006020820190508181036000830152613e4381613889565b9050919050565b60006020820190508181036000830152613e63816138ac565b9050919050565b60006020820190508181036000830152613e83816138cf565b9050919050565b60006020820190508181036000830152613ea3816138f2565b9050919050565b60006020820190508181036000830152613ec381613915565b9050919050565b60006020820190508181036000830152613ee381613938565b9050919050565b60006020820190508181036000830152613f038161395b565b9050919050565b60006020820190508181036000830152613f238161397e565b9050919050565b60006020820190508181036000830152613f43816139a1565b9050919050565b60006020820190508181036000830152613f63816139c4565b9050919050565b60006020820190508181036000830152613f83816139e7565b9050919050565b60006020820190508181036000830152613fa381613a0a565b9050919050565b60006020820190508181036000830152613fc381613a2d565b9050919050565b60006020820190508181036000830152613fe381613a50565b9050919050565b6000602082019050818103600083015261400381613a73565b9050919050565b6000602082019050818103600083015261402381613a96565b9050919050565b6000602082019050818103600083015261404381613ab9565b9050919050565b6000602082019050818103600083015261406381613aff565b9050919050565b6000602082019050818103600083015261408381613b22565b9050919050565b600060208201905081810360008301526140a381613b45565b9050919050565b600060208201905081810360008301526140c381613b68565b9050919050565b600060208201905081810360008301526140e381613b8b565b9050919050565b6000602082019050818103600083015261410381613bae565b9050919050565b6000602082019050818103600083015261412381613bd1565b9050919050565b6000602082019050818103600083015261414381613bf4565b9050919050565b6000602082019050818103600083015261416381613c17565b9050919050565b6000602082019050818103600083015261418381613c3a565b9050919050565b600060208201905081810360008301526141a381613c5d565b9050919050565b60006040820190506141bf6000830184613c80565b92915050565b60006020820190506141da6000830184613caf565b92915050565b60006141ea6141fb565b90506141f68282614555565b919050565b6000604051905090565b600067ffffffffffffffff8211156142205761421f6146bc565b5b61422982614709565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061428f8261445d565b915061429a8361445d565b9250826fffffffffffffffffffffffffffffffff038211156142bf576142be614600565b5b828201905092915050565b60006142d582614499565b91506142e083614499565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561431557614314614600565b5b828201905092915050565b600061432b82614499565b915061433683614499565b9250826143465761434561462f565b5b828204905092915050565b600061435c82614499565b915061436783614499565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156143a05761439f614600565b5b828202905092915050565b60006143b68261445d565b91506143c18361445d565b9250828210156143d4576143d3614600565b5b828203905092915050565b60006143ea82614499565b91506143f583614499565b92508282101561440857614407614600565b5b828203905092915050565b600061441e82614479565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b838110156144e45780820151818401526020810190506144c9565b838111156144f3576000848401525b50505050565b600061450482614499565b9150600082141561451857614517614600565b5b600182039050919050565b6000600282049050600182168061453b57607f821691505b6020821081141561454f5761454e61465e565b5b50919050565b61455e82614709565b810181811067ffffffffffffffff8211171561457d5761457c6146bc565b5b80604052505050565b600061459182614499565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156145c4576145c3614600565b5b600182019050919050565b60006145da82614499565b91506145e583614499565b9250826145f5576145f461462f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f5075626c69632073616c6520686173206e6f7420626567756e20796574000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f52656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f63616e206e6f74206d696e742074686973206d616e7920617420612074696d65600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f52656163686564206d6178206672656520737570706c79000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360008201527f6c65616e75700000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b7f63616e206e6f74206d696e742074686973206d616e792066726565206174206160008201527f2074696d65000000000000000000000000000000000000000000000000000000602082015250565b614f3e81614413565b8114614f4957600080fd5b50565b614f5581614425565b8114614f6057600080fd5b50565b614f6c81614431565b8114614f7757600080fd5b50565b614f8381614499565b8114614f8e57600080fd5b5056fea2646970667358221220906214e1e99406b302cfa8b5e9066a669c3c8b66a56820efc05fbb0833e4168864736f6c63430008070033

Deployed Bytecode Sourcemap

42713:2669:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27799:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29525:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31050:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30613:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26360:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31900:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44921:156;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26991:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32105:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26523:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44608:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29348:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43073:78;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28225:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41814:103;;;;;;;;;;;;;:::i;:::-;;43159:327;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41163:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45206:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29680:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42836:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43494:489;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31318:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44722:191;;;;;;;;;;;;;:::i;:::-;;32325:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44388:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29841:394;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43988:84;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36740:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45085:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44218:156;;;;;;;;;;;;;:::i;:::-;;31655:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42072:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27799:370;27926:4;27971:25;27956:40;;;:11;:40;;;;:99;;;;28022:33;28007:48;;;:11;:48;;;;27956:99;:160;;;;28081:35;28066:50;;;:11;:50;;;;27956:160;:207;;;;28127:36;28151:11;28127:23;:36::i;:::-;27956:207;27942:221;;27799:370;;;:::o;29525:94::-;29579:13;29608:5;29601:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29525:94;:::o;31050:204::-;31118:7;31142:16;31150:7;31142;:16::i;:::-;31134:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;31224:15;:24;31240:7;31224:24;;;;;;;;;;;;;;;;;;;;;31217:31;;31050:204;;;:::o;30613:379::-;30682:13;30698:24;30714:7;30698:15;:24::i;:::-;30682:40;;30743:5;30737:11;;:2;:11;;;;30729:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;30828:5;30812:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;30837:37;30854:5;30861:12;:10;:12::i;:::-;30837:16;:37::i;:::-;30812:62;30796:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;30958:28;30967:2;30971:7;30980:5;30958:8;:28::i;:::-;30675:317;30613:379;;:::o;26360:94::-;26413:7;26436:12;;26429:19;;26360:94;:::o;31900:142::-;32008:28;32018:4;32024:2;32028:7;32008:9;:28::i;:::-;31900:142;;;:::o;44921:156::-;41394:12;:10;:12::i;:::-;41383:23;;:7;:5;:7::i;:::-;:23;;;41375:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22204:1:::1;22802:7;;:19;;22794:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;22204:1;22935:7;:18;;;;45041:28:::2;45060:8;45041:18;:28::i;:::-;22160:1:::1;23114:7;:22;;;;44921:156:::0;:::o;26991:744::-;27100:7;27135:16;27145:5;27135:9;:16::i;:::-;27127:5;:24;27119:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;27197:22;27222:13;:11;:13::i;:::-;27197:38;;27242:19;27272:25;27322:9;27317:350;27341:14;27337:1;:18;27317:350;;;27371:31;27405:11;:14;27417:1;27405:14;;;;;;;;;;;27371:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27458:1;27432:28;;:9;:14;;;:28;;;27428:89;;27493:9;:14;;;27473:34;;27428:89;27550:5;27529:26;;:17;:26;;;27525:135;;;27587:5;27572:11;:20;27568:59;;;27614:1;27607:8;;;;;;;;;27568:59;27637:13;;;;;:::i;:::-;;;;27525:135;27362:305;27357:3;;;;;:::i;:::-;;;;27317:350;;;;27673:56;;;;;;;;;;:::i;:::-;;;;;;;;26991:744;;;;;:::o;32105:157::-;32217:39;32234:4;32240:2;32244:7;32217:39;;;;;;;;;;;;:16;:39::i;:::-;32105:157;;;:::o;26523:177::-;26590:7;26622:13;:11;:13::i;:::-;26614:5;:21;26606:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;26689:5;26682:12;;26523:177;;;:::o;44608:106::-;41394:12;:10;:12::i;:::-;41383:23;;:7;:5;:7::i;:::-;:23;;;41375:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44699:7:::1;;44683:13;:23;;;;;;;:::i;:::-;;44608:106:::0;;:::o;29348:118::-;29412:7;29435:20;29447:7;29435:11;:20::i;:::-;:25;;;29428:32;;29348:118;;;:::o;43073:78::-;41394:12;:10;:12::i;:::-;41383:23;;:7;:5;:7::i;:::-;:23;;;41375:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43141:2:::1;43132:6;:11;;;;43073:78:::0;:::o;28225:211::-;28289:7;28330:1;28313:19;;:5;:19;;;;28305:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;28402:12;:19;28415:5;28402:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28394:36;;28387:43;;28225:211;;;:::o;41814:103::-;41394:12;:10;:12::i;:::-;41383:23;;:7;:5;:7::i;:::-;:23;;;41375:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41879:30:::1;41906:1;41879:18;:30::i;:::-;41814:103::o:0;43159:327::-;43000:10;42987:23;;:9;:23;;;42979:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;43236:10:::1;;;;;;;;;;;43228:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;43327:6;;43315:8;43299:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:34;;43291:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;43392:2;43380:8;:14;;43372:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;43447:31;43457:10;43469:8;43447:9;:31::i;:::-;43159:327:::0;:::o;41163:87::-;41209:7;41236:6;;;;;;;;;;;41229:13;;41163:87;:::o;45206:167::-;45299:21;;:::i;:::-;45345:20;45357:7;45345:11;:20::i;:::-;45338:27;;45206:167;;;:::o;29680:98::-;29736:13;29765:7;29758:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29680:98;:::o;42836:34::-;;;;:::o;43494:489::-;43000:10;42987:23;;:9;:23;;;42979:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;43575:10:::1;;;;;;;;;;;43567:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;43680:14;43668:8;43652:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:42;;43630:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;43771:2;43759:8;:14;;43751:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;43863:9;43851:8;43843:5;;:16;;;;:::i;:::-;:29;;43821:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;43944:31;43954:10;43966:8;43944:9;:31::i;:::-;43494:489:::0;:::o;31318:274::-;31421:12;:10;:12::i;:::-;31409:24;;:8;:24;;;;31401:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;31518:8;31473:18;:32;31492:12;:10;:12::i;:::-;31473:32;;;;;;;;;;;;;;;:42;31506:8;31473:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;31567:8;31538:48;;31553:12;:10;:12::i;:::-;31538:48;;;31577:8;31538:48;;;;;;:::i;:::-;;;;;;;;31318:274;;:::o;44722:191::-;41394:12;:10;:12::i;:::-;41383:23;;:7;:5;:7::i;:::-;:23;;;41375:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22204:1:::1;22802:7;;:19;;22794:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;22204:1;22935:7;:18;;;;44791:12:::2;44809:10;:15;;44832:21;44809:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44790:68;;;44877:7;44869:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;44779:134;22160:1:::1;23114:7;:22;;;;44722:191::o:0;32325:311::-;32462:28;32472:4;32478:2;32482:7;32462:9;:28::i;:::-;32513:48;32536:4;32542:2;32546:7;32555:5;32513:22;:48::i;:::-;32497:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;32325:311;;;;:::o;44388:90::-;41394:12;:10;:12::i;:::-;41383:23;;:7;:5;:7::i;:::-;:23;;;41375:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44465:5:::1;44452:10;;:18;;;;;;;;;;;;;;;;;;44388:90:::0;:::o;29841:394::-;29939:13;29980:16;29988:7;29980;:16::i;:::-;29964:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;30070:21;30094:10;:8;:10::i;:::-;30070:34;;30149:1;30131:7;30125:21;:25;:104;;;;;;;;;;;;;;;;;30186:7;30195:18;:7;:16;:18::i;:::-;30169:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30125:104;30111:118;;;29841:394;;;:::o;43988:84::-;41394:12;:10;:12::i;:::-;41383:23;;:7;:5;:7::i;:::-;:23;;;41375:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44058:9:::1;44050:5;:17;;;;43988:84:::0;:::o;36740:43::-;;;;:::o;45085:113::-;45143:7;45170:20;45184:5;45170:13;:20::i;:::-;45163:27;;45085:113;;;:::o;44218:156::-;41394:12;:10;:12::i;:::-;41383:23;;:7;:5;:7::i;:::-;:23;;;41375:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44268:24:::1;44278:10;44290:1;44268:9;:24::i;:::-;44218:156::o:0;31655:186::-;31777:4;31800:18;:25;31819:5;31800:25;;;;;;;;;;;;;;;:35;31826:8;31800:35;;;;;;;;;;;;;;;;;;;;;;;;;31793:42;;31655:186;;;;:::o;42072:201::-;41394:12;:10;:12::i;:::-;41383:23;;:7;:5;:7::i;:::-;:23;;;41375:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42181:1:::1;42161:22;;:8;:22;;;;42153:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42237:28;42256:8;42237:18;:28::i;:::-;42072:201:::0;:::o;13473:157::-;13558:4;13597:25;13582:40;;;:11;:40;;;;13575:47;;13473:157;;;:::o;32875:105::-;32932:4;32962:12;;32952:7;:22;32945:29;;32875:105;;;:::o;23830:98::-;23883:7;23910:10;23903:17;;23830:98;:::o;36562:172::-;36686:2;36659:15;:24;36675:7;36659:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36720:7;36716:2;36700:28;;36709:5;36700:28;;;;;;;;;;;;36562:172;;;:::o;34927:1529::-;35024:35;35062:20;35074:7;35062:11;:20::i;:::-;35024:58;;35091:22;35133:13;:18;;;35117:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;35186:12;:10;:12::i;:::-;35162:36;;:20;35174:7;35162:11;:20::i;:::-;:36;;;35117:81;:142;;;;35209:50;35226:13;:18;;;35246:12;:10;:12::i;:::-;35209:16;:50::i;:::-;35117:142;35091:169;;35285:17;35269:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;35417:4;35395:26;;:13;:18;;;:26;;;35379:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;35506:1;35492:16;;:2;:16;;;;35484:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;35559:43;35581:4;35587:2;35591:7;35600:1;35559:21;:43::i;:::-;35659:49;35676:1;35680:7;35689:13;:18;;;35659:8;:49::i;:::-;35747:1;35717:12;:18;35730:4;35717:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35783:1;35755:12;:16;35768:2;35755:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35814:43;;;;;;;;35829:2;35814:43;;;;;;35840:15;35814:43;;;;;35791:11;:20;35803:7;35791:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36085:19;36117:1;36107:7;:11;;;;:::i;:::-;36085:33;;36170:1;36129:43;;:11;:24;36141:11;36129:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;36125:236;;;36187:20;36195:11;36187:7;:20::i;:::-;36183:171;;;36247:97;;;;;;;;36274:13;:18;;;36247:97;;;;;;36305:13;:28;;;36247:97;;;;;36220:11;:24;36232:11;36220:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36183:171;36125:236;36393:7;36389:2;36374:27;;36383:4;36374:27;;;;;;;;;;;;36408:42;36429:4;36435:2;36439:7;36448:1;36408:20;:42::i;:::-;35017:1439;;;34927:1529;;;:::o;36888:846::-;36950:25;36978:24;;36950:52;;37028:1;37017:8;:12;37009:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;37065:16;37115:1;37104:8;37084:17;:28;;;;:::i;:::-;:32;;;;:::i;:::-;37065:51;;37155:1;37138:14;:18;;;;:::i;:::-;37127:8;:29;37123:81;;;37195:1;37178:14;:18;;;;:::i;:::-;37167:29;;37123:81;37319:17;37327:8;37319:7;:17::i;:::-;37311:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37391:9;37403:17;37391:29;;37386:297;37427:8;37422:1;:13;37386:297;;37486:1;37455:33;;:11;:14;37467:1;37455:14;;;;;;;;;;;:19;;;;;;;;;;;;:33;;;37451:225;;;37501:31;37535:14;37547:1;37535:11;:14::i;:::-;37501:48;;37577:89;;;;;;;;37604:9;:14;;;37577:89;;;;;;37631:9;:24;;;37577:89;;;;;37560:11;:14;37572:1;37560:14;;;;;;;;;;;:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37490:186;37451:225;37437:3;;;;;:::i;:::-;;;;37386:297;;;;37727:1;37716:8;:12;;;;:::i;:::-;37689:24;:39;;;;36943:791;;36888:846;:::o;28688:606::-;28764:21;;:::i;:::-;28805:16;28813:7;28805;:16::i;:::-;28797:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;28877:26;28925:12;28914:7;:23;28910:93;;28994:1;28979:12;28969:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;28948:47;;28910:93;29016:12;29031:7;29016:22;;29011:212;29048:18;29040:4;:26;29011:212;;29085:31;29119:11;:17;29131:4;29119:17;;;;;;;;;;;29085:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29175:1;29149:28;;:9;:14;;;:28;;;29145:71;;29197:9;29190:16;;;;;;;29145:71;29076:147;29068:6;;;;;:::i;:::-;;;;29011:212;;;;29231:57;;;;;;;;;;:::i;:::-;;;;;;;;28688:606;;;;:::o;42433:191::-;42507:16;42526:6;;;;;;;;;;;42507:25;;42552:8;42543:6;;:17;;;;;;;;;;;;;;;;;;42607:8;42576:40;;42597:8;42576:40;;;;;;;;;;;;42496:128;42433:191;:::o;32986:98::-;33051:27;33061:2;33065:8;33051:27;;;;;;;;;;;;:9;:27::i;:::-;32986:98;;:::o;38277:690::-;38414:4;38431:15;:2;:13;;;:15::i;:::-;38427:535;;;38486:2;38470:36;;;38507:12;:10;:12::i;:::-;38521:4;38527:7;38536:5;38470:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38457:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38718:1;38701:6;:13;:18;38697:215;;;38734:61;;;;;;;;;;:::i;:::-;;;;;;;;38697:215;38880:6;38874:13;38865:6;38861:2;38857:15;38850:38;38457:464;38602:45;;;38592:55;;;:6;:55;;;;38585:62;;;;;38427:535;38950:4;38943:11;;38277:690;;;;;;;:::o;44486:114::-;44546:13;44579;44572:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44486:114;:::o;398:723::-;454:13;684:1;675:5;:10;671:53;;;702:10;;;;;;;;;;;;;;;;;;;;;671:53;734:12;749:5;734:20;;765:14;790:78;805:1;797:4;:9;790:78;;823:8;;;;;:::i;:::-;;;;854:2;846:10;;;;;:::i;:::-;;;790:78;;;878:19;910:6;900:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;878:39;;928:154;944:1;935:5;:10;928:154;;972:1;962:11;;;;;:::i;:::-;;;1039:2;1031:5;:10;;;;:::i;:::-;1018:2;:24;;;;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1068:2;1059:11;;;;;:::i;:::-;;;928:154;;;1106:6;1092:21;;;;;398:723;;;;:::o;28442:240::-;28503:7;28552:1;28535:19;;:5;:19;;;;28519:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;28643:12;:19;28656:5;28643:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;28635:41;;28628:48;;28442:240;;;:::o;39429:141::-;;;;;:::o;39956:140::-;;;;;:::o;33423:1272::-;33528:20;33551:12;;33528:35;;33592:1;33578:16;;:2;:16;;;;33570:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;33769:21;33777:12;33769:7;:21::i;:::-;33768:22;33760:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;33851:12;33839:8;:24;;33831:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;33911:61;33941:1;33945:2;33949:12;33963:8;33911:21;:61::i;:::-;33981:30;34014:12;:16;34027:2;34014:16;;;;;;;;;;;;;;;33981:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34056:119;;;;;;;;34106:8;34076:11;:19;;;:39;;;;:::i;:::-;34056:119;;;;;;34159:8;34124:11;:24;;;:44;;;;:::i;:::-;34056:119;;;;;34037:12;:16;34050:2;34037:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34210:43;;;;;;;;34225:2;34210:43;;;;;;34236:15;34210:43;;;;;34182:11;:25;34194:12;34182:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34262:20;34285:12;34262:35;;34311:9;34306:281;34330:8;34326:1;:12;34306:281;;;34384:12;34380:2;34359:38;;34376:1;34359:38;;;;;;;;;;;;34424:59;34455:1;34459:2;34463:12;34477:5;34424:22;:59::i;:::-;34406:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;34565:14;;;;;:::i;:::-;;;;34340:3;;;;;:::i;:::-;;;;34306:281;;;;34610:12;34595;:27;;;;34629:60;34658:1;34662:2;34666:12;34680:8;34629:20;:60::i;:::-;33521:1174;;;33423:1272;;;:::o;3390:326::-;3450:4;3707:1;3685:7;:19;;;:23;3678:30;;3390:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:329::-;2131:6;2180:2;2168:9;2159:7;2155:23;2151:32;2148:119;;;2186:79;;:::i;:::-;2148:119;2306:1;2331:53;2376:7;2367:6;2356:9;2352:22;2331:53;:::i;:::-;2321:63;;2277:117;2072:329;;;;:::o;2407:474::-;2475:6;2483;2532:2;2520:9;2511:7;2507:23;2503:32;2500:119;;;2538:79;;:::i;:::-;2500:119;2658:1;2683:53;2728:7;2719:6;2708:9;2704:22;2683:53;:::i;:::-;2673:63;;2629:117;2785:2;2811:53;2856:7;2847:6;2836:9;2832:22;2811:53;:::i;:::-;2801:63;;2756:118;2407:474;;;;;:::o;2887:619::-;2964:6;2972;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;3410:2;3436:53;3481:7;3472:6;3461:9;3457:22;3436:53;:::i;:::-;3426:63;;3381:118;2887:619;;;;;:::o;3512:943::-;3607:6;3615;3623;3631;3680:3;3668:9;3659:7;3655:23;3651:33;3648:120;;;3687:79;;:::i;:::-;3648:120;3807:1;3832:53;3877:7;3868:6;3857:9;3853:22;3832:53;:::i;:::-;3822:63;;3778:117;3934:2;3960:53;4005:7;3996:6;3985:9;3981:22;3960:53;:::i;:::-;3950:63;;3905:118;4062:2;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4033:118;4218:2;4207:9;4203:18;4190:32;4249:18;4241:6;4238:30;4235:117;;;4271:79;;:::i;:::-;4235:117;4376:62;4430:7;4421:6;4410:9;4406:22;4376:62;:::i;:::-;4366:72;;4161:287;3512:943;;;;;;;:::o;4461:468::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:50;4904:7;4895:6;4884:9;4880:22;4862:50;:::i;:::-;4852:60;;4807:115;4461:468;;;;;:::o;4935:474::-;5003:6;5011;5060:2;5048:9;5039:7;5035:23;5031:32;5028:119;;;5066:79;;:::i;:::-;5028:119;5186:1;5211:53;5256:7;5247:6;5236:9;5232:22;5211:53;:::i;:::-;5201:63;;5157:117;5313:2;5339:53;5384:7;5375:6;5364:9;5360:22;5339:53;:::i;:::-;5329:63;;5284:118;4935:474;;;;;:::o;5415:323::-;5471:6;5520:2;5508:9;5499:7;5495:23;5491:32;5488:119;;;5526:79;;:::i;:::-;5488:119;5646:1;5671:50;5713:7;5704:6;5693:9;5689:22;5671:50;:::i;:::-;5661:60;;5617:114;5415:323;;;;:::o;5744:327::-;5802:6;5851:2;5839:9;5830:7;5826:23;5822:32;5819:119;;;5857:79;;:::i;:::-;5819:119;5977:1;6002:52;6046:7;6037:6;6026:9;6022:22;6002:52;:::i;:::-;5992:62;;5948:116;5744:327;;;;:::o;6077:349::-;6146:6;6195:2;6183:9;6174:7;6170:23;6166:32;6163:119;;;6201:79;;:::i;:::-;6163:119;6321:1;6346:63;6401:7;6392:6;6381:9;6377:22;6346:63;:::i;:::-;6336:73;;6292:127;6077:349;;;;:::o;6432:529::-;6503:6;6511;6560:2;6548:9;6539:7;6535:23;6531:32;6528:119;;;6566:79;;:::i;:::-;6528:119;6714:1;6703:9;6699:17;6686:31;6744:18;6736:6;6733:30;6730:117;;;6766:79;;:::i;:::-;6730:117;6879:65;6936:7;6927:6;6916:9;6912:22;6879:65;:::i;:::-;6861:83;;;;6657:297;6432:529;;;;;:::o;6967:329::-;7026:6;7075:2;7063:9;7054:7;7050:23;7046:32;7043:119;;;7081:79;;:::i;:::-;7043:119;7201:1;7226:53;7271:7;7262:6;7251:9;7247:22;7226:53;:::i;:::-;7216:63;;7172:117;6967:329;;;;:::o;7302:108::-;7379:24;7397:5;7379:24;:::i;:::-;7374:3;7367:37;7302:108;;:::o;7416:118::-;7503:24;7521:5;7503:24;:::i;:::-;7498:3;7491:37;7416:118;;:::o;7540:109::-;7621:21;7636:5;7621:21;:::i;:::-;7616:3;7609:34;7540:109;;:::o;7655:360::-;7741:3;7769:38;7801:5;7769:38;:::i;:::-;7823:70;7886:6;7881:3;7823:70;:::i;:::-;7816:77;;7902:52;7947:6;7942:3;7935:4;7928:5;7924:16;7902:52;:::i;:::-;7979:29;8001:6;7979:29;:::i;:::-;7974:3;7970:39;7963:46;;7745:270;7655:360;;;;:::o;8021:364::-;8109:3;8137:39;8170:5;8137:39;:::i;:::-;8192:71;8256:6;8251:3;8192:71;:::i;:::-;8185:78;;8272:52;8317:6;8312:3;8305:4;8298:5;8294:16;8272:52;:::i;:::-;8349:29;8371:6;8349:29;:::i;:::-;8344:3;8340:39;8333:46;;8113:272;8021:364;;;;:::o;8391:377::-;8497:3;8525:39;8558:5;8525:39;:::i;:::-;8580:89;8662:6;8657:3;8580:89;:::i;:::-;8573:96;;8678:52;8723:6;8718:3;8711:4;8704:5;8700:16;8678:52;:::i;:::-;8755:6;8750:3;8746:16;8739:23;;8501:267;8391:377;;;;:::o;8774:366::-;8916:3;8937:67;9001:2;8996:3;8937:67;:::i;:::-;8930:74;;9013:93;9102:3;9013:93;:::i;:::-;9131:2;9126:3;9122:12;9115:19;;8774:366;;;:::o;9146:::-;9288:3;9309:67;9373:2;9368:3;9309:67;:::i;:::-;9302:74;;9385:93;9474:3;9385:93;:::i;:::-;9503:2;9498:3;9494:12;9487:19;;9146:366;;;:::o;9518:::-;9660:3;9681:67;9745:2;9740:3;9681:67;:::i;:::-;9674:74;;9757:93;9846:3;9757:93;:::i;:::-;9875:2;9870:3;9866:12;9859:19;;9518:366;;;:::o;9890:::-;10032:3;10053:67;10117:2;10112:3;10053:67;:::i;:::-;10046:74;;10129:93;10218:3;10129:93;:::i;:::-;10247:2;10242:3;10238:12;10231:19;;9890:366;;;:::o;10262:::-;10404:3;10425:67;10489:2;10484:3;10425:67;:::i;:::-;10418:74;;10501:93;10590:3;10501:93;:::i;:::-;10619:2;10614:3;10610:12;10603:19;;10262:366;;;:::o;10634:::-;10776:3;10797:67;10861:2;10856:3;10797:67;:::i;:::-;10790:74;;10873:93;10962:3;10873:93;:::i;:::-;10991:2;10986:3;10982:12;10975:19;;10634:366;;;:::o;11006:::-;11148:3;11169:67;11233:2;11228:3;11169:67;:::i;:::-;11162:74;;11245:93;11334:3;11245:93;:::i;:::-;11363:2;11358:3;11354:12;11347:19;;11006:366;;;:::o;11378:::-;11520:3;11541:67;11605:2;11600:3;11541:67;:::i;:::-;11534:74;;11617:93;11706:3;11617:93;:::i;:::-;11735:2;11730:3;11726:12;11719:19;;11378:366;;;:::o;11750:::-;11892:3;11913:67;11977:2;11972:3;11913:67;:::i;:::-;11906:74;;11989:93;12078:3;11989:93;:::i;:::-;12107:2;12102:3;12098:12;12091:19;;11750:366;;;:::o;12122:::-;12264:3;12285:67;12349:2;12344:3;12285:67;:::i;:::-;12278:74;;12361:93;12450:3;12361:93;:::i;:::-;12479:2;12474:3;12470:12;12463:19;;12122:366;;;:::o;12494:::-;12636:3;12657:67;12721:2;12716:3;12657:67;:::i;:::-;12650:74;;12733:93;12822:3;12733:93;:::i;:::-;12851:2;12846:3;12842:12;12835:19;;12494:366;;;:::o;12866:::-;13008:3;13029:67;13093:2;13088:3;13029:67;:::i;:::-;13022:74;;13105:93;13194:3;13105:93;:::i;:::-;13223:2;13218:3;13214:12;13207:19;;12866:366;;;:::o;13238:::-;13380:3;13401:67;13465:2;13460:3;13401:67;:::i;:::-;13394:74;;13477:93;13566:3;13477:93;:::i;:::-;13595:2;13590:3;13586:12;13579:19;;13238:366;;;:::o;13610:::-;13752:3;13773:67;13837:2;13832:3;13773:67;:::i;:::-;13766:74;;13849:93;13938:3;13849:93;:::i;:::-;13967:2;13962:3;13958:12;13951:19;;13610:366;;;:::o;13982:::-;14124:3;14145:67;14209:2;14204:3;14145:67;:::i;:::-;14138:74;;14221:93;14310:3;14221:93;:::i;:::-;14339:2;14334:3;14330:12;14323:19;;13982:366;;;:::o;14354:::-;14496:3;14517:67;14581:2;14576:3;14517:67;:::i;:::-;14510:74;;14593:93;14682:3;14593:93;:::i;:::-;14711:2;14706:3;14702:12;14695:19;;14354:366;;;:::o;14726:::-;14868:3;14889:67;14953:2;14948:3;14889:67;:::i;:::-;14882:74;;14965:93;15054:3;14965:93;:::i;:::-;15083:2;15078:3;15074:12;15067:19;;14726:366;;;:::o;15098:::-;15240:3;15261:67;15325:2;15320:3;15261:67;:::i;:::-;15254:74;;15337:93;15426:3;15337:93;:::i;:::-;15455:2;15450:3;15446:12;15439:19;;15098:366;;;:::o;15470:::-;15612:3;15633:67;15697:2;15692:3;15633:67;:::i;:::-;15626:74;;15709:93;15798:3;15709:93;:::i;:::-;15827:2;15822:3;15818:12;15811:19;;15470:366;;;:::o;15842:::-;15984:3;16005:67;16069:2;16064:3;16005:67;:::i;:::-;15998:74;;16081:93;16170:3;16081:93;:::i;:::-;16199:2;16194:3;16190:12;16183:19;;15842:366;;;:::o;16214:::-;16356:3;16377:67;16441:2;16436:3;16377:67;:::i;:::-;16370:74;;16453:93;16542:3;16453:93;:::i;:::-;16571:2;16566:3;16562:12;16555:19;;16214:366;;;:::o;16586:398::-;16745:3;16766:83;16847:1;16842:3;16766:83;:::i;:::-;16759:90;;16858:93;16947:3;16858:93;:::i;:::-;16976:1;16971:3;16967:11;16960:18;;16586:398;;;:::o;16990:366::-;17132:3;17153:67;17217:2;17212:3;17153:67;:::i;:::-;17146:74;;17229:93;17318:3;17229:93;:::i;:::-;17347:2;17342:3;17338:12;17331:19;;16990:366;;;:::o;17362:::-;17504:3;17525:67;17589:2;17584:3;17525:67;:::i;:::-;17518:74;;17601:93;17690:3;17601:93;:::i;:::-;17719:2;17714:3;17710:12;17703:19;;17362:366;;;:::o;17734:::-;17876:3;17897:67;17961:2;17956:3;17897:67;:::i;:::-;17890:74;;17973:93;18062:3;17973:93;:::i;:::-;18091:2;18086:3;18082:12;18075:19;;17734:366;;;:::o;18106:::-;18248:3;18269:67;18333:2;18328:3;18269:67;:::i;:::-;18262:74;;18345:93;18434:3;18345:93;:::i;:::-;18463:2;18458:3;18454:12;18447:19;;18106:366;;;:::o;18478:::-;18620:3;18641:67;18705:2;18700:3;18641:67;:::i;:::-;18634:74;;18717:93;18806:3;18717:93;:::i;:::-;18835:2;18830:3;18826:12;18819:19;;18478:366;;;:::o;18850:::-;18992:3;19013:67;19077:2;19072:3;19013:67;:::i;:::-;19006:74;;19089:93;19178:3;19089:93;:::i;:::-;19207:2;19202:3;19198:12;19191:19;;18850:366;;;:::o;19222:::-;19364:3;19385:67;19449:2;19444:3;19385:67;:::i;:::-;19378:74;;19461:93;19550:3;19461:93;:::i;:::-;19579:2;19574:3;19570:12;19563:19;;19222:366;;;:::o;19594:::-;19736:3;19757:67;19821:2;19816:3;19757:67;:::i;:::-;19750:74;;19833:93;19922:3;19833:93;:::i;:::-;19951:2;19946:3;19942:12;19935:19;;19594:366;;;:::o;19966:::-;20108:3;20129:67;20193:2;20188:3;20129:67;:::i;:::-;20122:74;;20205:93;20294:3;20205:93;:::i;:::-;20323:2;20318:3;20314:12;20307:19;;19966:366;;;:::o;20338:::-;20480:3;20501:67;20565:2;20560:3;20501:67;:::i;:::-;20494:74;;20577:93;20666:3;20577:93;:::i;:::-;20695:2;20690:3;20686:12;20679:19;;20338:366;;;:::o;20710:::-;20852:3;20873:67;20937:2;20932:3;20873:67;:::i;:::-;20866:74;;20949:93;21038:3;20949:93;:::i;:::-;21067:2;21062:3;21058:12;21051:19;;20710:366;;;:::o;21152:527::-;21311:4;21306:3;21302:14;21398:4;21391:5;21387:16;21381:23;21417:63;21474:4;21469:3;21465:14;21451:12;21417:63;:::i;:::-;21326:164;21582:4;21575:5;21571:16;21565:23;21601:61;21656:4;21651:3;21647:14;21633:12;21601:61;:::i;:::-;21500:172;21280:399;21152:527;;:::o;21685:118::-;21772:24;21790:5;21772:24;:::i;:::-;21767:3;21760:37;21685:118;;:::o;21809:105::-;21884:23;21901:5;21884:23;:::i;:::-;21879:3;21872:36;21809:105;;:::o;21920:435::-;22100:3;22122:95;22213:3;22204:6;22122:95;:::i;:::-;22115:102;;22234:95;22325:3;22316:6;22234:95;:::i;:::-;22227:102;;22346:3;22339:10;;21920:435;;;;;:::o;22361:379::-;22545:3;22567:147;22710:3;22567:147;:::i;:::-;22560:154;;22731:3;22724:10;;22361:379;;;:::o;22746:222::-;22839:4;22877:2;22866:9;22862:18;22854:26;;22890:71;22958:1;22947:9;22943:17;22934:6;22890:71;:::i;:::-;22746:222;;;;:::o;22974:640::-;23169:4;23207:3;23196:9;23192:19;23184:27;;23221:71;23289:1;23278:9;23274:17;23265:6;23221:71;:::i;:::-;23302:72;23370:2;23359:9;23355:18;23346:6;23302:72;:::i;:::-;23384;23452:2;23441:9;23437:18;23428:6;23384:72;:::i;:::-;23503:9;23497:4;23493:20;23488:2;23477:9;23473:18;23466:48;23531:76;23602:4;23593:6;23531:76;:::i;:::-;23523:84;;22974:640;;;;;;;:::o;23620:210::-;23707:4;23745:2;23734:9;23730:18;23722:26;;23758:65;23820:1;23809:9;23805:17;23796:6;23758:65;:::i;:::-;23620:210;;;;:::o;23836:313::-;23949:4;23987:2;23976:9;23972:18;23964:26;;24036:9;24030:4;24026:20;24022:1;24011:9;24007:17;24000:47;24064:78;24137:4;24128:6;24064:78;:::i;:::-;24056:86;;23836:313;;;;:::o;24155:419::-;24321:4;24359:2;24348:9;24344:18;24336:26;;24408:9;24402:4;24398:20;24394:1;24383:9;24379:17;24372:47;24436:131;24562:4;24436:131;:::i;:::-;24428:139;;24155:419;;;:::o;24580:::-;24746:4;24784:2;24773:9;24769:18;24761:26;;24833:9;24827:4;24823:20;24819:1;24808:9;24804:17;24797:47;24861:131;24987:4;24861:131;:::i;:::-;24853:139;;24580:419;;;:::o;25005:::-;25171:4;25209:2;25198:9;25194:18;25186:26;;25258:9;25252:4;25248:20;25244:1;25233:9;25229:17;25222:47;25286:131;25412:4;25286:131;:::i;:::-;25278:139;;25005:419;;;:::o;25430:::-;25596:4;25634:2;25623:9;25619:18;25611:26;;25683:9;25677:4;25673:20;25669:1;25658:9;25654:17;25647:47;25711:131;25837:4;25711:131;:::i;:::-;25703:139;;25430:419;;;:::o;25855:::-;26021:4;26059:2;26048:9;26044:18;26036:26;;26108:9;26102:4;26098:20;26094:1;26083:9;26079:17;26072:47;26136:131;26262:4;26136:131;:::i;:::-;26128:139;;25855:419;;;:::o;26280:::-;26446:4;26484:2;26473:9;26469:18;26461:26;;26533:9;26527:4;26523:20;26519:1;26508:9;26504:17;26497:47;26561:131;26687:4;26561:131;:::i;:::-;26553:139;;26280:419;;;:::o;26705:::-;26871:4;26909:2;26898:9;26894:18;26886:26;;26958:9;26952:4;26948:20;26944:1;26933:9;26929:17;26922:47;26986:131;27112:4;26986:131;:::i;:::-;26978:139;;26705:419;;;:::o;27130:::-;27296:4;27334:2;27323:9;27319:18;27311:26;;27383:9;27377:4;27373:20;27369:1;27358:9;27354:17;27347:47;27411:131;27537:4;27411:131;:::i;:::-;27403:139;;27130:419;;;:::o;27555:::-;27721:4;27759:2;27748:9;27744:18;27736:26;;27808:9;27802:4;27798:20;27794:1;27783:9;27779:17;27772:47;27836:131;27962:4;27836:131;:::i;:::-;27828:139;;27555:419;;;:::o;27980:::-;28146:4;28184:2;28173:9;28169:18;28161:26;;28233:9;28227:4;28223:20;28219:1;28208:9;28204:17;28197:47;28261:131;28387:4;28261:131;:::i;:::-;28253:139;;27980:419;;;:::o;28405:::-;28571:4;28609:2;28598:9;28594:18;28586:26;;28658:9;28652:4;28648:20;28644:1;28633:9;28629:17;28622:47;28686:131;28812:4;28686:131;:::i;:::-;28678:139;;28405:419;;;:::o;28830:::-;28996:4;29034:2;29023:9;29019:18;29011:26;;29083:9;29077:4;29073:20;29069:1;29058:9;29054:17;29047:47;29111:131;29237:4;29111:131;:::i;:::-;29103:139;;28830:419;;;:::o;29255:::-;29421:4;29459:2;29448:9;29444:18;29436:26;;29508:9;29502:4;29498:20;29494:1;29483:9;29479:17;29472:47;29536:131;29662:4;29536:131;:::i;:::-;29528:139;;29255:419;;;:::o;29680:::-;29846:4;29884:2;29873:9;29869:18;29861:26;;29933:9;29927:4;29923:20;29919:1;29908:9;29904:17;29897:47;29961:131;30087:4;29961:131;:::i;:::-;29953:139;;29680:419;;;:::o;30105:::-;30271:4;30309:2;30298:9;30294:18;30286:26;;30358:9;30352:4;30348:20;30344:1;30333:9;30329:17;30322:47;30386:131;30512:4;30386:131;:::i;:::-;30378:139;;30105:419;;;:::o;30530:::-;30696:4;30734:2;30723:9;30719:18;30711:26;;30783:9;30777:4;30773:20;30769:1;30758:9;30754:17;30747:47;30811:131;30937:4;30811:131;:::i;:::-;30803:139;;30530:419;;;:::o;30955:::-;31121:4;31159:2;31148:9;31144:18;31136:26;;31208:9;31202:4;31198:20;31194:1;31183:9;31179:17;31172:47;31236:131;31362:4;31236:131;:::i;:::-;31228:139;;30955:419;;;:::o;31380:::-;31546:4;31584:2;31573:9;31569:18;31561:26;;31633:9;31627:4;31623:20;31619:1;31608:9;31604:17;31597:47;31661:131;31787:4;31661:131;:::i;:::-;31653:139;;31380:419;;;:::o;31805:::-;31971:4;32009:2;31998:9;31994:18;31986:26;;32058:9;32052:4;32048:20;32044:1;32033:9;32029:17;32022:47;32086:131;32212:4;32086:131;:::i;:::-;32078:139;;31805:419;;;:::o;32230:::-;32396:4;32434:2;32423:9;32419:18;32411:26;;32483:9;32477:4;32473:20;32469:1;32458:9;32454:17;32447:47;32511:131;32637:4;32511:131;:::i;:::-;32503:139;;32230:419;;;:::o;32655:::-;32821:4;32859:2;32848:9;32844:18;32836:26;;32908:9;32902:4;32898:20;32894:1;32883:9;32879:17;32872:47;32936:131;33062:4;32936:131;:::i;:::-;32928:139;;32655:419;;;:::o;33080:::-;33246:4;33284:2;33273:9;33269:18;33261:26;;33333:9;33327:4;33323:20;33319:1;33308:9;33304:17;33297:47;33361:131;33487:4;33361:131;:::i;:::-;33353:139;;33080:419;;;:::o;33505:::-;33671:4;33709:2;33698:9;33694:18;33686:26;;33758:9;33752:4;33748:20;33744:1;33733:9;33729:17;33722:47;33786:131;33912:4;33786:131;:::i;:::-;33778:139;;33505:419;;;:::o;33930:::-;34096:4;34134:2;34123:9;34119:18;34111:26;;34183:9;34177:4;34173:20;34169:1;34158:9;34154:17;34147:47;34211:131;34337:4;34211:131;:::i;:::-;34203:139;;33930:419;;;:::o;34355:::-;34521:4;34559:2;34548:9;34544:18;34536:26;;34608:9;34602:4;34598:20;34594:1;34583:9;34579:17;34572:47;34636:131;34762:4;34636:131;:::i;:::-;34628:139;;34355:419;;;:::o;34780:::-;34946:4;34984:2;34973:9;34969:18;34961:26;;35033:9;35027:4;35023:20;35019:1;35008:9;35004:17;34997:47;35061:131;35187:4;35061:131;:::i;:::-;35053:139;;34780:419;;;:::o;35205:::-;35371:4;35409:2;35398:9;35394:18;35386:26;;35458:9;35452:4;35448:20;35444:1;35433:9;35429:17;35422:47;35486:131;35612:4;35486:131;:::i;:::-;35478:139;;35205:419;;;:::o;35630:::-;35796:4;35834:2;35823:9;35819:18;35811:26;;35883:9;35877:4;35873:20;35869:1;35858:9;35854:17;35847:47;35911:131;36037:4;35911:131;:::i;:::-;35903:139;;35630:419;;;:::o;36055:::-;36221:4;36259:2;36248:9;36244:18;36236:26;;36308:9;36302:4;36298:20;36294:1;36283:9;36279:17;36272:47;36336:131;36462:4;36336:131;:::i;:::-;36328:139;;36055:419;;;:::o;36480:::-;36646:4;36684:2;36673:9;36669:18;36661:26;;36733:9;36727:4;36723:20;36719:1;36708:9;36704:17;36697:47;36761:131;36887:4;36761:131;:::i;:::-;36753:139;;36480:419;;;:::o;36905:::-;37071:4;37109:2;37098:9;37094:18;37086:26;;37158:9;37152:4;37148:20;37144:1;37133:9;37129:17;37122:47;37186:131;37312:4;37186:131;:::i;:::-;37178:139;;36905:419;;;:::o;37330:::-;37496:4;37534:2;37523:9;37519:18;37511:26;;37583:9;37577:4;37573:20;37569:1;37558:9;37554:17;37547:47;37611:131;37737:4;37611:131;:::i;:::-;37603:139;;37330:419;;;:::o;37755:346::-;37910:4;37948:2;37937:9;37933:18;37925:26;;37961:133;38091:1;38080:9;38076:17;38067:6;37961:133;:::i;:::-;37755:346;;;;:::o;38107:222::-;38200:4;38238:2;38227:9;38223:18;38215:26;;38251:71;38319:1;38308:9;38304:17;38295:6;38251:71;:::i;:::-;38107:222;;;;:::o;38335:129::-;38369:6;38396:20;;:::i;:::-;38386:30;;38425:33;38453:4;38445:6;38425:33;:::i;:::-;38335:129;;;:::o;38470:75::-;38503:6;38536:2;38530:9;38520:19;;38470:75;:::o;38551:307::-;38612:4;38702:18;38694:6;38691:30;38688:56;;;38724:18;;:::i;:::-;38688:56;38762:29;38784:6;38762:29;:::i;:::-;38754:37;;38846:4;38840;38836:15;38828:23;;38551:307;;;:::o;38864:98::-;38915:6;38949:5;38943:12;38933:22;;38864:98;;;:::o;38968:99::-;39020:6;39054:5;39048:12;39038:22;;38968:99;;;:::o;39073:168::-;39156:11;39190:6;39185:3;39178:19;39230:4;39225:3;39221:14;39206:29;;39073:168;;;;:::o;39247:147::-;39348:11;39385:3;39370:18;;39247:147;;;;:::o;39400:169::-;39484:11;39518:6;39513:3;39506:19;39558:4;39553:3;39549:14;39534:29;;39400:169;;;;:::o;39575:148::-;39677:11;39714:3;39699:18;;39575:148;;;;:::o;39729:273::-;39769:3;39788:20;39806:1;39788:20;:::i;:::-;39783:25;;39822:20;39840:1;39822:20;:::i;:::-;39817:25;;39944:1;39908:34;39904:42;39901:1;39898:49;39895:75;;;39950:18;;:::i;:::-;39895:75;39994:1;39991;39987:9;39980:16;;39729:273;;;;:::o;40008:305::-;40048:3;40067:20;40085:1;40067:20;:::i;:::-;40062:25;;40101:20;40119:1;40101:20;:::i;:::-;40096:25;;40255:1;40187:66;40183:74;40180:1;40177:81;40174:107;;;40261:18;;:::i;:::-;40174:107;40305:1;40302;40298:9;40291:16;;40008:305;;;;:::o;40319:185::-;40359:1;40376:20;40394:1;40376:20;:::i;:::-;40371:25;;40410:20;40428:1;40410:20;:::i;:::-;40405:25;;40449:1;40439:35;;40454:18;;:::i;:::-;40439:35;40496:1;40493;40489:9;40484:14;;40319:185;;;;:::o;40510:348::-;40550:7;40573:20;40591:1;40573:20;:::i;:::-;40568:25;;40607:20;40625:1;40607:20;:::i;:::-;40602:25;;40795:1;40727:66;40723:74;40720:1;40717:81;40712:1;40705:9;40698:17;40694:105;40691:131;;;40802:18;;:::i;:::-;40691:131;40850:1;40847;40843:9;40832:20;;40510:348;;;;:::o;40864:191::-;40904:4;40924:20;40942:1;40924:20;:::i;:::-;40919:25;;40958:20;40976:1;40958:20;:::i;:::-;40953:25;;40997:1;40994;40991:8;40988:34;;;41002:18;;:::i;:::-;40988:34;41047:1;41044;41040:9;41032:17;;40864:191;;;;:::o;41061:::-;41101:4;41121:20;41139:1;41121:20;:::i;:::-;41116:25;;41155:20;41173:1;41155:20;:::i;:::-;41150:25;;41194:1;41191;41188:8;41185:34;;;41199:18;;:::i;:::-;41185:34;41244:1;41241;41237:9;41229:17;;41061:191;;;;:::o;41258:96::-;41295:7;41324:24;41342:5;41324:24;:::i;:::-;41313:35;;41258:96;;;:::o;41360:90::-;41394:7;41437:5;41430:13;41423:21;41412:32;;41360:90;;;:::o;41456:149::-;41492:7;41532:66;41525:5;41521:78;41510:89;;41456:149;;;:::o;41611:118::-;41648:7;41688:34;41681:5;41677:46;41666:57;;41611:118;;;:::o;41735:126::-;41772:7;41812:42;41805:5;41801:54;41790:65;;41735:126;;;:::o;41867:77::-;41904:7;41933:5;41922:16;;41867:77;;;:::o;41950:101::-;41986:7;42026:18;42019:5;42015:30;42004:41;;41950:101;;;:::o;42057:154::-;42141:6;42136:3;42131;42118:30;42203:1;42194:6;42189:3;42185:16;42178:27;42057:154;;;:::o;42217:307::-;42285:1;42295:113;42309:6;42306:1;42303:13;42295:113;;;42394:1;42389:3;42385:11;42379:18;42375:1;42370:3;42366:11;42359:39;42331:2;42328:1;42324:10;42319:15;;42295:113;;;42426:6;42423:1;42420:13;42417:101;;;42506:1;42497:6;42492:3;42488:16;42481:27;42417:101;42266:258;42217:307;;;:::o;42530:171::-;42569:3;42592:24;42610:5;42592:24;:::i;:::-;42583:33;;42638:4;42631:5;42628:15;42625:41;;;42646:18;;:::i;:::-;42625:41;42693:1;42686:5;42682:13;42675:20;;42530:171;;;:::o;42707:320::-;42751:6;42788:1;42782:4;42778:12;42768:22;;42835:1;42829:4;42825:12;42856:18;42846:81;;42912:4;42904:6;42900:17;42890:27;;42846:81;42974:2;42966:6;42963:14;42943:18;42940:38;42937:84;;;42993:18;;:::i;:::-;42937:84;42758:269;42707:320;;;:::o;43033:281::-;43116:27;43138:4;43116:27;:::i;:::-;43108:6;43104:40;43246:6;43234:10;43231:22;43210:18;43198:10;43195:34;43192:62;43189:88;;;43257:18;;:::i;:::-;43189:88;43297:10;43293:2;43286:22;43076:238;43033:281;;:::o;43320:233::-;43359:3;43382:24;43400:5;43382:24;:::i;:::-;43373:33;;43428:66;43421:5;43418:77;43415:103;;;43498:18;;:::i;:::-;43415:103;43545:1;43538:5;43534:13;43527:20;;43320:233;;;:::o;43559:176::-;43591:1;43608:20;43626:1;43608:20;:::i;:::-;43603:25;;43642:20;43660:1;43642:20;:::i;:::-;43637:25;;43681:1;43671:35;;43686:18;;:::i;:::-;43671:35;43727:1;43724;43720:9;43715:14;;43559:176;;;;:::o;43741:180::-;43789:77;43786:1;43779:88;43886:4;43883:1;43876:15;43910:4;43907:1;43900:15;43927:180;43975:77;43972:1;43965:88;44072:4;44069:1;44062:15;44096:4;44093:1;44086:15;44113:180;44161:77;44158:1;44151:88;44258:4;44255:1;44248:15;44282:4;44279:1;44272:15;44299:180;44347:77;44344:1;44337:88;44444:4;44441:1;44434:15;44468:4;44465:1;44458:15;44485:180;44533:77;44530:1;44523:88;44630:4;44627:1;44620:15;44654:4;44651:1;44644:15;44671:117;44780:1;44777;44770:12;44794:117;44903:1;44900;44893:12;44917:117;45026:1;45023;45016:12;45040:117;45149:1;45146;45139:12;45163:117;45272:1;45269;45262:12;45286:117;45395:1;45392;45385:12;45409:102;45450:6;45501:2;45497:7;45492:2;45485:5;45481:14;45477:28;45467:38;;45409:102;;;:::o;45517:221::-;45657:34;45653:1;45645:6;45641:14;45634:58;45726:4;45721:2;45713:6;45709:15;45702:29;45517:221;:::o;45744:179::-;45884:31;45880:1;45872:6;45868:14;45861:55;45744:179;:::o;45929:225::-;46069:34;46065:1;46057:6;46053:14;46046:58;46138:8;46133:2;46125:6;46121:15;46114:33;45929:225;:::o;46160:229::-;46300:34;46296:1;46288:6;46284:14;46277:58;46369:12;46364:2;46356:6;46352:15;46345:37;46160:229;:::o;46395:222::-;46535:34;46531:1;46523:6;46519:14;46512:58;46604:5;46599:2;46591:6;46587:15;46580:30;46395:222;:::o;46623:168::-;46763:20;46759:1;46751:6;46747:14;46740:44;46623:168;:::o;46797:224::-;46937:34;46933:1;46925:6;46921:14;46914:58;47006:7;47001:2;46993:6;46989:15;46982:32;46797:224;:::o;47027:236::-;47167:34;47163:1;47155:6;47151:14;47144:58;47236:19;47231:2;47223:6;47219:15;47212:44;47027:236;:::o;47269:181::-;47409:33;47405:1;47397:6;47393:14;47386:57;47269:181;:::o;47456:180::-;47596:32;47592:1;47584:6;47580:14;47573:56;47456:180;:::o;47642:182::-;47782:34;47778:1;47770:6;47766:14;47759:58;47642:182;:::o;47830:244::-;47970:34;47966:1;47958:6;47954:14;47947:58;48039:27;48034:2;48026:6;48022:15;48015:52;47830:244;:::o;48080:174::-;48220:26;48216:1;48208:6;48204:14;48197:50;48080:174;:::o;48260:230::-;48400:34;48396:1;48388:6;48384:14;48377:58;48469:13;48464:2;48456:6;48452:15;48445:38;48260:230;:::o;48496:225::-;48636:34;48632:1;48624:6;48620:14;48613:58;48705:8;48700:2;48692:6;48688:15;48681:33;48496:225;:::o;48727:182::-;48867:34;48863:1;48855:6;48851:14;48844:58;48727:182;:::o;48915:234::-;49055:34;49051:1;49043:6;49039:14;49032:58;49124:17;49119:2;49111:6;49107:15;49100:42;48915:234;:::o;49155:176::-;49295:28;49291:1;49283:6;49279:14;49272:52;49155:176;:::o;49337:237::-;49477:34;49473:1;49465:6;49461:14;49454:58;49546:20;49541:2;49533:6;49529:15;49522:45;49337:237;:::o;49580:173::-;49720:25;49716:1;49708:6;49704:14;49697:49;49580:173;:::o;49759:221::-;49899:34;49895:1;49887:6;49883:14;49876:58;49968:4;49963:2;49955:6;49951:15;49944:29;49759:221;:::o;49986:114::-;;:::o;50106:166::-;50246:18;50242:1;50234:6;50230:14;50223:42;50106:166;:::o;50278:238::-;50418:34;50414:1;50406:6;50402:14;50395:58;50487:21;50482:2;50474:6;50470:15;50463:46;50278:238;:::o;50522:179::-;50662:31;50658:1;50650:6;50646:14;50639:55;50522:179;:::o;50707:220::-;50847:34;50843:1;50835:6;50831:14;50824:58;50916:3;50911:2;50903:6;50899:15;50892:28;50707:220;:::o;50933:233::-;51073:34;51069:1;51061:6;51057:14;51050:58;51142:16;51137:2;51129:6;51125:15;51118:41;50933:233;:::o;51172:225::-;51312:34;51308:1;51300:6;51296:14;51289:58;51381:8;51376:2;51368:6;51364:15;51357:33;51172:225;:::o;51403:181::-;51543:33;51539:1;51531:6;51527:14;51520:57;51403:181;:::o;51590:234::-;51730:34;51726:1;51718:6;51714:14;51707:58;51799:17;51794:2;51786:6;51782:15;51775:42;51590:234;:::o;51830:232::-;51970:34;51966:1;51958:6;51954:14;51947:58;52039:15;52034:2;52026:6;52022:15;52015:40;51830:232;:::o;52068:221::-;52208:34;52204:1;52196:6;52192:14;52185:58;52277:4;52272:2;52264:6;52260:15;52253:29;52068:221;:::o;52295:224::-;52435:34;52431:1;52423:6;52419:14;52412:58;52504:7;52499:2;52491:6;52487:15;52480:32;52295:224;:::o;52525:122::-;52598:24;52616:5;52598:24;:::i;:::-;52591:5;52588:35;52578:63;;52637:1;52634;52627:12;52578:63;52525:122;:::o;52653:116::-;52723:21;52738:5;52723:21;:::i;:::-;52716:5;52713:32;52703:60;;52759:1;52756;52749:12;52703:60;52653:116;:::o;52775:120::-;52847:23;52864:5;52847:23;:::i;:::-;52840:5;52837:34;52827:62;;52885:1;52882;52875:12;52827:62;52775:120;:::o;52901:122::-;52974:24;52992:5;52974:24;:::i;:::-;52967:5;52964:35;52954:63;;53013:1;53010;53003:12;52954:63;52901:122;:::o

Swarm Source

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