ETH Price: $2,864.23 (-10.57%)
Gas: 15 Gwei

Token

Little Limes (LIME)
 

Overview

Max Total Supply

1,897 LIME

Holders

390

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 LIME
0xca345a3b6501a82c19dd8a459db0fcd39d123b05
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:
LittleLimeFriends

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-01-15
*/

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

pragma solidity ^0.8.0;

contract LittleLimeFriends is ERC721A, Ownable {
    uint256 public NFT_PRICE = 20000000000000000;
    uint256 public MAX_SUPPLY = 3333;
    uint256 public MAX_MINTS = 10;
    uint256 public MAX_MINTS_RESERVED = 5;
    uint256 public reserveTokens = 500;

    bool public DROP_ACTIVE = false;

    string public baseURI = "";
    mapping(address => uint) addressToReservedMints;
    
    constructor() ERC721A("Little Limes", "LIME", MAX_MINTS, MAX_SUPPLY) {}

    function mint(uint256 numTokens) public payable {
        require(DROP_ACTIVE, "Sale not started");
        require(
            numTokens > 0 && numTokens <= MAX_MINTS,
            "Must mint between 1 and 10 tokens"
        );
        require(totalSupply() + numTokens <= MAX_SUPPLY, "Sold Out");
        require(
            msg.value >= NFT_PRICE * numTokens,
            "Amount of ether sent is not enough"
        );

        _safeMint(msg.sender, numTokens);
    }

    function mintReserved(uint256 numTokens) public {
        require(DROP_ACTIVE, "Sale not started");
        require(
            numTokens > 0 && numTokens <= MAX_MINTS_RESERVED,
            "Must mint between 1 and 5 tokens"
        );
        require(
            addressToReservedMints[msg.sender] + numTokens <= MAX_MINTS_RESERVED,
            "Only 5 reserved mints per wallet"
        );
        require(totalSupply() + numTokens <= MAX_SUPPLY, "Sold Out");
        require(
            totalSupply() + numTokens <= reserveTokens,
            "There are no reserved mints left"
        );

        addressToReservedMints[msg.sender] += numTokens;
        _safeMint(msg.sender, numTokens);
    }

    function flipDropState() public onlyOwner {
        DROP_ACTIVE = !DROP_ACTIVE;
    }

    function setBaseURI(string memory newBaseURI) public onlyOwner {
        baseURI = newBaseURI;
    }

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

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

    function setSupply(uint256 newSupply) public onlyOwner {
        MAX_SUPPLY = newSupply;
    }

    function setReserveTokens(uint256 newReserve) public onlyOwner {
        reserveTokens = newReserve;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
    
    function reservedMintedBy() external view returns (uint256) {
        return addressToReservedMints[msg.sender];
    }

    function withdraw() public onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DROP_ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINTS_RESERVED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipDropState","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":"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":"numTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"mintReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reservedMintedBy","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newReserve","type":"uint256"}],"name":"setReserveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"setSupply","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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c060405260008055600060075566470de4df820000600955610d05600a55600a600b556005600c556101f4600d556000600e60006101000a81548160ff02191690831515021790555060405180602001604052806000815250600f908051906020019062000070929190620002b7565b503480156200007e57600080fd5b506040518060400160405280600c81526020017f4c6974746c65204c696d657300000000000000000000000000000000000000008152506040518060400160405280600481526020017f4c494d4500000000000000000000000000000000000000000000000000000000815250600b54600a546000811162000137576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200012e90620003d7565b60405180910390fd5b600082116200017d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200017490620003b5565b60405180910390fd5b836001908051906020019062000195929190620002b7565b508260029080519060200190620001ae929190620002b7565b508160a08181525050806080818152505050505050620001e3620001d7620001e960201b60201c565b620001f160201b60201c565b6200050d565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002c5906200040a565b90600052602060002090601f016020900481019282620002e9576000855562000335565b82601f106200030457805160ff191683800117855562000335565b8280016001018555821562000335579182015b828111156200033457825182559160200191906001019062000317565b5b50905062000344919062000348565b5090565b5b808211156200036357600081600090555060010162000349565b5090565b600062000376602783620003f9565b915062000383826200046f565b604082019050919050565b60006200039d602e83620003f9565b9150620003aa82620004be565b604082019050919050565b60006020820190508181036000830152620003d08162000367565b9050919050565b60006020820190508181036000830152620003f2816200038e565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200042357607f821691505b602082108114156200043a576200043962000440565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b60805160a051614ab26200053e600039600081816124ca015281816124f30152612bb4015260005050614ab26000f3fe60806040526004361061021a5760003560e01c806370a0823111610123578063a22cb465116100ab578063cce132d11161006f578063cce132d11461079c578063d7224ba0146107c7578063e985e9c5146107f2578063f2fde38b1461082f578063f7cd09c7146108585761021a565b8063a22cb465146106b7578063a7b8cd4d146106e0578063b875e2ce1461070b578063b88d4fde14610736578063c87b56dd1461075f5761021a565b806391b7f5ed116100f257806391b7f5ed1461060757806395d89b411461063057806396f8f6dd1461065b5780639a5d140b14610672578063a0712d681461069b5761021a565b806370a082311461055f578063715018a61461059c57806379c9cb7b146105b35780638da5cb5b146105dc5761021a565b80633b4c4b25116101a657806355f804b31161017557806355f804b31461047a5780636352211e146104a3578063676dd563146104e05780636a44e1731461050b5780636c0360eb146105345761021a565b80633b4c4b25146103d45780633ccfd60b146103fd57806342842e0e146104145780634f6ccce71461043d5761021a565b806318160ddd116101ed57806318160ddd146102ed57806323b872dd1461031857806327ac36c4146103415780632f745c591461036c57806332cb6b0c146103a95761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b50610246600480360381019061024191906133ce565b610883565b60405161025391906139d8565b60405180910390f35b34801561026857600080fd5b506102716109cd565b60405161027e91906139f3565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190613471565b610a5f565b6040516102bb9190613971565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e6919061338e565b610ae4565b005b3480156102f957600080fd5b50610302610bfd565b60405161030f9190613d75565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a9190613278565b610c06565b005b34801561034d57600080fd5b50610356610c16565b6040516103639190613d75565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e919061338e565b610c1c565b6040516103a09190613d75565b60405180910390f35b3480156103b557600080fd5b506103be610e1a565b6040516103cb9190613d75565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f69190613471565b610e20565b005b34801561040957600080fd5b50610412610ea6565b005b34801561042057600080fd5b5061043b60048036038101906104369190613278565b610f62565b005b34801561044957600080fd5b50610464600480360381019061045f9190613471565b610f82565b6040516104719190613d75565b60405180910390f35b34801561048657600080fd5b506104a1600480360381019061049c9190613428565b610fd5565b005b3480156104af57600080fd5b506104ca60048036038101906104c59190613471565b61106b565b6040516104d79190613971565b60405180910390f35b3480156104ec57600080fd5b506104f5611081565b6040516105029190613d75565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d9190613471565b611087565b005b34801561054057600080fd5b5061054961110d565b60405161055691906139f3565b60405180910390f35b34801561056b57600080fd5b506105866004803603810190610581919061320b565b61119b565b6040516105939190613d75565b60405180910390f35b3480156105a857600080fd5b506105b1611284565b005b3480156105bf57600080fd5b506105da60048036038101906105d59190613471565b61130c565b005b3480156105e857600080fd5b506105f1611392565b6040516105fe9190613971565b60405180910390f35b34801561061357600080fd5b5061062e60048036038101906106299190613471565b6113bc565b005b34801561063c57600080fd5b50610645611442565b60405161065291906139f3565b60405180910390f35b34801561066757600080fd5b506106706114d4565b005b34801561067e57600080fd5b5061069960048036038101906106949190613471565b61157c565b005b6106b560048036038101906106b09190613471565b6117bc565b005b3480156106c357600080fd5b506106de60048036038101906106d9919061334e565b611910565b005b3480156106ec57600080fd5b506106f5611a91565b6040516107029190613d75565b60405180910390f35b34801561071757600080fd5b50610720611ad8565b60405161072d9190613d75565b60405180910390f35b34801561074257600080fd5b5061075d600480360381019061075891906132cb565b611ade565b005b34801561076b57600080fd5b5061078660048036038101906107819190613471565b611b3a565b60405161079391906139f3565b60405180910390f35b3480156107a857600080fd5b506107b1611be1565b6040516107be9190613d75565b60405180910390f35b3480156107d357600080fd5b506107dc611be7565b6040516107e99190613d75565b60405180910390f35b3480156107fe57600080fd5b5061081960048036038101906108149190613238565b611bed565b60405161082691906139d8565b60405180910390f35b34801561083b57600080fd5b506108566004803603810190610851919061320b565b611c81565b005b34801561086457600080fd5b5061086d611d79565b60405161087a91906139d8565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061094e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109b657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109c657506109c582611d8c565b5b9050919050565b6060600180546109dc906140e5565b80601f0160208091040260200160405190810160405280929190818152602001828054610a08906140e5565b8015610a555780601f10610a2a57610100808354040283529160200191610a55565b820191906000526020600020905b815481529060010190602001808311610a3857829003601f168201915b5050505050905090565b6000610a6a82611df6565b610aa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa090613d35565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aef8261106b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5790613c75565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b7f611e03565b73ffffffffffffffffffffffffffffffffffffffff161480610bae5750610bad81610ba8611e03565b611bed565b5b610bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be490613b55565b60405180910390fd5b610bf8838383611e0b565b505050565b60008054905090565b610c11838383611ebd565b505050565b600d5481565b6000610c278361119b565b8210610c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5f90613a15565b60405180910390fd5b6000610c72610bfd565b905060008060005b83811015610dd8576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d6c57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dc45786841415610db5578195505050505050610e14565b8380610dc090614148565b9450505b508080610dd090614148565b915050610c7a565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0b90613cf5565b60405180910390fd5b92915050565b600a5481565b610e28611e03565b73ffffffffffffffffffffffffffffffffffffffff16610e46611392565b73ffffffffffffffffffffffffffffffffffffffff1614610e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9390613bd5565b60405180910390fd5b80600a8190555050565b610eae611e03565b73ffffffffffffffffffffffffffffffffffffffff16610ecc611392565b73ffffffffffffffffffffffffffffffffffffffff1614610f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1990613bd5565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610f6057600080fd5b565b610f7d83838360405180602001604052806000815250611ade565b505050565b6000610f8c610bfd565b8210610fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc490613ab5565b60405180910390fd5b819050919050565b610fdd611e03565b73ffffffffffffffffffffffffffffffffffffffff16610ffb611392565b73ffffffffffffffffffffffffffffffffffffffff1614611051576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104890613bd5565b60405180910390fd5b80600f9080519060200190611067929190612fe5565b5050565b600061107682612476565b600001519050919050565b60095481565b61108f611e03565b73ffffffffffffffffffffffffffffffffffffffff166110ad611392565b73ffffffffffffffffffffffffffffffffffffffff1614611103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fa90613bd5565b60405180910390fd5b80600d8190555050565b600f805461111a906140e5565b80601f0160208091040260200160405190810160405280929190818152602001828054611146906140e5565b80156111935780601f1061116857610100808354040283529160200191611193565b820191906000526020600020905b81548152906001019060200180831161117657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561120c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120390613b95565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61128c611e03565b73ffffffffffffffffffffffffffffffffffffffff166112aa611392565b73ffffffffffffffffffffffffffffffffffffffff1614611300576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f790613bd5565b60405180910390fd5b61130a6000612679565b565b611314611e03565b73ffffffffffffffffffffffffffffffffffffffff16611332611392565b73ffffffffffffffffffffffffffffffffffffffff1614611388576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137f90613bd5565b60405180910390fd5b80600b8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6113c4611e03565b73ffffffffffffffffffffffffffffffffffffffff166113e2611392565b73ffffffffffffffffffffffffffffffffffffffff1614611438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142f90613bd5565b60405180910390fd5b8060098190555050565b606060028054611451906140e5565b80601f016020809104026020016040519081016040528092919081815260200182805461147d906140e5565b80156114ca5780601f1061149f576101008083540402835291602001916114ca565b820191906000526020600020905b8154815290600101906020018083116114ad57829003601f168201915b5050505050905090565b6114dc611e03565b73ffffffffffffffffffffffffffffffffffffffff166114fa611392565b73ffffffffffffffffffffffffffffffffffffffff1614611550576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154790613bd5565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b600e60009054906101000a900460ff166115cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c290613b35565b60405180910390fd5b6000811180156115dd5750600c548111155b61161c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161390613b75565b60405180910390fd5b600c5481601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461166a9190613ea0565b11156116ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a290613a95565b60405180910390fd5b600a54816116b7610bfd565b6116c19190613ea0565b1115611702576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f990613a35565b60405180910390fd5b600d548161170e610bfd565b6117189190613ea0565b1115611759576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175090613af5565b60405180910390fd5b80601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117a89190613ea0565b925050819055506117b9338261273f565b50565b600e60009054906101000a900460ff1661180b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180290613b35565b60405180910390fd5b60008111801561181d5750600b548111155b61185c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185390613c55565b60405180910390fd5b600a5481611868610bfd565b6118729190613ea0565b11156118b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118aa90613a35565b60405180910390fd5b806009546118c19190613f27565b341015611903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fa90613b15565b60405180910390fd5b61190d338261273f565b50565b611918611e03565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197d90613c15565b60405180910390fd5b8060066000611993611e03565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a40611e03565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a8591906139d8565b60405180910390a35050565b6000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905090565b600c5481565b611ae9848484611ebd565b611af58484848461275d565b611b34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2b90613c95565b60405180910390fd5b50505050565b6060611b4582611df6565b611b84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7b90613bf5565b60405180910390fd5b6000611b8e6128f4565b90506000815111611bae5760405180602001604052806000815250611bd9565b80611bb884612986565b604051602001611bc9929190613942565b6040516020818303038152906040525b915050919050565b600b5481565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c89611e03565b73ffffffffffffffffffffffffffffffffffffffff16611ca7611392565b73ffffffffffffffffffffffffffffffffffffffff1614611cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf490613bd5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6490613a55565b60405180910390fd5b611d7681612679565b50565b600e60009054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611ec882612476565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611eef611e03565b73ffffffffffffffffffffffffffffffffffffffff161480611f4b5750611f14611e03565b73ffffffffffffffffffffffffffffffffffffffff16611f3384610a5f565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f675750611f668260000151611f61611e03565b611bed565b5b905080611fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa090613c35565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461201b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201290613bb5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561208b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208290613ad5565b60405180910390fd5b6120988585856001612ae7565b6120a86000848460000151611e0b565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166121169190613f81565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166121ba9190613e5a565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846122c09190613ea0565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156124065761233681611df6565b15612405576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461246e8686866001612aed565b505050505050565b61247e61306b565b61248782611df6565b6124c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124bd90613a75565b60405180910390fd5b60007f0000000000000000000000000000000000000000000000000000000000000000831061252a5760017f00000000000000000000000000000000000000000000000000000000000000008461251d9190613fb5565b6125279190613ea0565b90505b60008390505b818110612638576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461262457809350505050612674565b508080612630906140bb565b915050612530565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266b90613d15565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612759828260405180602001604052806000815250612af3565b5050565b600061277e8473ffffffffffffffffffffffffffffffffffffffff16612fd2565b156128e7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127a7611e03565b8786866040518563ffffffff1660e01b81526004016127c9949392919061398c565b602060405180830381600087803b1580156127e357600080fd5b505af192505050801561281457506040513d601f19601f8201168201806040525081019061281191906133fb565b60015b612897573d8060008114612844576040519150601f19603f3d011682016040523d82523d6000602084013e612849565b606091505b5060008151141561288f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288690613c95565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506128ec565b600190505b949350505050565b6060600f8054612903906140e5565b80601f016020809104026020016040519081016040528092919081815260200182805461292f906140e5565b801561297c5780601f106129515761010080835404028352916020019161297c565b820191906000526020600020905b81548152906001019060200180831161295f57829003601f168201915b5050505050905090565b606060008214156129ce576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ae2565b600082905060005b60008214612a005780806129e990614148565b915050600a826129f99190613ef6565b91506129d6565b60008167ffffffffffffffff811115612a1c57612a1b61427e565b5b6040519080825280601f01601f191660200182016040528015612a4e5781602001600182028036833780820191505090505b5090505b60008514612adb57600182612a679190613fb5565b9150600a85612a769190614191565b6030612a829190613ea0565b60f81b818381518110612a9857612a9761424f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ad49190613ef6565b9450612a52565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6090613cd5565b60405180910390fd5b612b7281611df6565b15612bb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ba990613cb5565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115612c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0c90613d55565b60405180910390fd5b612c226000858386612ae7565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612d1f9190613e5a565b6fffffffffffffffffffffffffffffffff168152602001858360200151612d469190613e5a565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612fb557818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f55600088848861275d565b612f94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f8b90613c95565b60405180910390fd5b8180612f9f90614148565b9250508080612fad90614148565b915050612ee4565b5080600081905550612fca6000878588612aed565b505050505050565b600080823b905060008111915050919050565b828054612ff1906140e5565b90600052602060002090601f016020900481019282613013576000855561305a565b82601f1061302c57805160ff191683800117855561305a565b8280016001018555821561305a579182015b8281111561305957825182559160200191906001019061303e565b5b50905061306791906130a5565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156130be5760008160009055506001016130a6565b5090565b60006130d56130d084613db5565b613d90565b9050828152602081018484840111156130f1576130f06142b2565b5b6130fc848285614079565b509392505050565b600061311761311284613de6565b613d90565b905082815260208101848484011115613133576131326142b2565b5b61313e848285614079565b509392505050565b60008135905061315581614a20565b92915050565b60008135905061316a81614a37565b92915050565b60008135905061317f81614a4e565b92915050565b60008151905061319481614a4e565b92915050565b600082601f8301126131af576131ae6142ad565b5b81356131bf8482602086016130c2565b91505092915050565b600082601f8301126131dd576131dc6142ad565b5b81356131ed848260208601613104565b91505092915050565b60008135905061320581614a65565b92915050565b600060208284031215613221576132206142bc565b5b600061322f84828501613146565b91505092915050565b6000806040838503121561324f5761324e6142bc565b5b600061325d85828601613146565b925050602061326e85828601613146565b9150509250929050565b600080600060608486031215613291576132906142bc565b5b600061329f86828701613146565b93505060206132b086828701613146565b92505060406132c1868287016131f6565b9150509250925092565b600080600080608085870312156132e5576132e46142bc565b5b60006132f387828801613146565b945050602061330487828801613146565b9350506040613315878288016131f6565b925050606085013567ffffffffffffffff811115613336576133356142b7565b5b6133428782880161319a565b91505092959194509250565b60008060408385031215613365576133646142bc565b5b600061337385828601613146565b92505060206133848582860161315b565b9150509250929050565b600080604083850312156133a5576133a46142bc565b5b60006133b385828601613146565b92505060206133c4858286016131f6565b9150509250929050565b6000602082840312156133e4576133e36142bc565b5b60006133f284828501613170565b91505092915050565b600060208284031215613411576134106142bc565b5b600061341f84828501613185565b91505092915050565b60006020828403121561343e5761343d6142bc565b5b600082013567ffffffffffffffff81111561345c5761345b6142b7565b5b613468848285016131c8565b91505092915050565b600060208284031215613487576134866142bc565b5b6000613495848285016131f6565b91505092915050565b6134a781613fe9565b82525050565b6134b681613ffb565b82525050565b60006134c782613e17565b6134d18185613e2d565b93506134e1818560208601614088565b6134ea816142c1565b840191505092915050565b600061350082613e22565b61350a8185613e3e565b935061351a818560208601614088565b613523816142c1565b840191505092915050565b600061353982613e22565b6135438185613e4f565b9350613553818560208601614088565b80840191505092915050565b600061356c602283613e3e565b9150613577826142d2565b604082019050919050565b600061358f600883613e3e565b915061359a82614321565b602082019050919050565b60006135b2602683613e3e565b91506135bd8261434a565b604082019050919050565b60006135d5602a83613e3e565b91506135e082614399565b604082019050919050565b60006135f8602083613e3e565b9150613603826143e8565b602082019050919050565b600061361b602383613e3e565b915061362682614411565b604082019050919050565b600061363e602583613e3e565b915061364982614460565b604082019050919050565b6000613661602083613e3e565b915061366c826144af565b602082019050919050565b6000613684602283613e3e565b915061368f826144d8565b604082019050919050565b60006136a7601083613e3e565b91506136b282614527565b602082019050919050565b60006136ca603983613e3e565b91506136d582614550565b604082019050919050565b60006136ed602083613e3e565b91506136f88261459f565b602082019050919050565b6000613710602b83613e3e565b915061371b826145c8565b604082019050919050565b6000613733602683613e3e565b915061373e82614617565b604082019050919050565b6000613756600583613e4f565b915061376182614666565b600582019050919050565b6000613779602083613e3e565b91506137848261468f565b602082019050919050565b600061379c602f83613e3e565b91506137a7826146b8565b604082019050919050565b60006137bf601a83613e3e565b91506137ca82614707565b602082019050919050565b60006137e2603283613e3e565b91506137ed82614730565b604082019050919050565b6000613805602183613e3e565b91506138108261477f565b604082019050919050565b6000613828602283613e3e565b9150613833826147ce565b604082019050919050565b600061384b603383613e3e565b91506138568261481d565b604082019050919050565b600061386e601d83613e3e565b91506138798261486c565b602082019050919050565b6000613891602183613e3e565b915061389c82614895565b604082019050919050565b60006138b4602e83613e3e565b91506138bf826148e4565b604082019050919050565b60006138d7602f83613e3e565b91506138e282614933565b604082019050919050565b60006138fa602d83613e3e565b915061390582614982565b604082019050919050565b600061391d602283613e3e565b9150613928826149d1565b604082019050919050565b61393c8161406f565b82525050565b600061394e828561352e565b915061395a828461352e565b915061396582613749565b91508190509392505050565b6000602082019050613986600083018461349e565b92915050565b60006080820190506139a1600083018761349e565b6139ae602083018661349e565b6139bb6040830185613933565b81810360608301526139cd81846134bc565b905095945050505050565b60006020820190506139ed60008301846134ad565b92915050565b60006020820190508181036000830152613a0d81846134f5565b905092915050565b60006020820190508181036000830152613a2e8161355f565b9050919050565b60006020820190508181036000830152613a4e81613582565b9050919050565b60006020820190508181036000830152613a6e816135a5565b9050919050565b60006020820190508181036000830152613a8e816135c8565b9050919050565b60006020820190508181036000830152613aae816135eb565b9050919050565b60006020820190508181036000830152613ace8161360e565b9050919050565b60006020820190508181036000830152613aee81613631565b9050919050565b60006020820190508181036000830152613b0e81613654565b9050919050565b60006020820190508181036000830152613b2e81613677565b9050919050565b60006020820190508181036000830152613b4e8161369a565b9050919050565b60006020820190508181036000830152613b6e816136bd565b9050919050565b60006020820190508181036000830152613b8e816136e0565b9050919050565b60006020820190508181036000830152613bae81613703565b9050919050565b60006020820190508181036000830152613bce81613726565b9050919050565b60006020820190508181036000830152613bee8161376c565b9050919050565b60006020820190508181036000830152613c0e8161378f565b9050919050565b60006020820190508181036000830152613c2e816137b2565b9050919050565b60006020820190508181036000830152613c4e816137d5565b9050919050565b60006020820190508181036000830152613c6e816137f8565b9050919050565b60006020820190508181036000830152613c8e8161381b565b9050919050565b60006020820190508181036000830152613cae8161383e565b9050919050565b60006020820190508181036000830152613cce81613861565b9050919050565b60006020820190508181036000830152613cee81613884565b9050919050565b60006020820190508181036000830152613d0e816138a7565b9050919050565b60006020820190508181036000830152613d2e816138ca565b9050919050565b60006020820190508181036000830152613d4e816138ed565b9050919050565b60006020820190508181036000830152613d6e81613910565b9050919050565b6000602082019050613d8a6000830184613933565b92915050565b6000613d9a613dab565b9050613da68282614117565b919050565b6000604051905090565b600067ffffffffffffffff821115613dd057613dcf61427e565b5b613dd9826142c1565b9050602081019050919050565b600067ffffffffffffffff821115613e0157613e0061427e565b5b613e0a826142c1565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e6582614033565b9150613e7083614033565b9250826fffffffffffffffffffffffffffffffff03821115613e9557613e946141c2565b5b828201905092915050565b6000613eab8261406f565b9150613eb68361406f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613eeb57613eea6141c2565b5b828201905092915050565b6000613f018261406f565b9150613f0c8361406f565b925082613f1c57613f1b6141f1565b5b828204905092915050565b6000613f328261406f565b9150613f3d8361406f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f7657613f756141c2565b5b828202905092915050565b6000613f8c82614033565b9150613f9783614033565b925082821015613faa57613fa96141c2565b5b828203905092915050565b6000613fc08261406f565b9150613fcb8361406f565b925082821015613fde57613fdd6141c2565b5b828203905092915050565b6000613ff48261404f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156140a657808201518184015260208101905061408b565b838111156140b5576000848401525b50505050565b60006140c68261406f565b915060008214156140da576140d96141c2565b5b600182039050919050565b600060028204905060018216806140fd57607f821691505b6020821081141561411157614110614220565b5b50919050565b614120826142c1565b810181811067ffffffffffffffff8211171561413f5761413e61427e565b5b80604052505050565b60006141538261406f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614186576141856141c2565b5b600182019050919050565b600061419c8261406f565b91506141a78361406f565b9250826141b7576141b66141f1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f536f6c64204f7574000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4f6e6c792035207265736572766564206d696e7473207065722077616c6c6574600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f546865726520617265206e6f207265736572766564206d696e7473206c656674600082015250565b7f416d6f756e74206f662065746865722073656e74206973206e6f7420656e6f7560008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206e6f74207374617274656400000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f4d757374206d696e74206265747765656e203120616e64203520746f6b656e73600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f4d757374206d696e74206265747765656e203120616e6420313020746f6b656e60008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b614a2981613fe9565b8114614a3457600080fd5b50565b614a4081613ffb565b8114614a4b57600080fd5b50565b614a5781614007565b8114614a6257600080fd5b50565b614a6e8161406f565b8114614a7957600080fd5b5056fea26469706673582212205fef0711fcd820a71a44756ab6b57b4db2ebadba906127752432a55c7dfa2aee64736f6c63430008070033

Deployed Bytecode

0x60806040526004361061021a5760003560e01c806370a0823111610123578063a22cb465116100ab578063cce132d11161006f578063cce132d11461079c578063d7224ba0146107c7578063e985e9c5146107f2578063f2fde38b1461082f578063f7cd09c7146108585761021a565b8063a22cb465146106b7578063a7b8cd4d146106e0578063b875e2ce1461070b578063b88d4fde14610736578063c87b56dd1461075f5761021a565b806391b7f5ed116100f257806391b7f5ed1461060757806395d89b411461063057806396f8f6dd1461065b5780639a5d140b14610672578063a0712d681461069b5761021a565b806370a082311461055f578063715018a61461059c57806379c9cb7b146105b35780638da5cb5b146105dc5761021a565b80633b4c4b25116101a657806355f804b31161017557806355f804b31461047a5780636352211e146104a3578063676dd563146104e05780636a44e1731461050b5780636c0360eb146105345761021a565b80633b4c4b25146103d45780633ccfd60b146103fd57806342842e0e146104145780634f6ccce71461043d5761021a565b806318160ddd116101ed57806318160ddd146102ed57806323b872dd1461031857806327ac36c4146103415780632f745c591461036c57806332cb6b0c146103a95761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b50610246600480360381019061024191906133ce565b610883565b60405161025391906139d8565b60405180910390f35b34801561026857600080fd5b506102716109cd565b60405161027e91906139f3565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190613471565b610a5f565b6040516102bb9190613971565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e6919061338e565b610ae4565b005b3480156102f957600080fd5b50610302610bfd565b60405161030f9190613d75565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a9190613278565b610c06565b005b34801561034d57600080fd5b50610356610c16565b6040516103639190613d75565b60405180910390f35b34801561037857600080fd5b50610393600480360381019061038e919061338e565b610c1c565b6040516103a09190613d75565b60405180910390f35b3480156103b557600080fd5b506103be610e1a565b6040516103cb9190613d75565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f69190613471565b610e20565b005b34801561040957600080fd5b50610412610ea6565b005b34801561042057600080fd5b5061043b60048036038101906104369190613278565b610f62565b005b34801561044957600080fd5b50610464600480360381019061045f9190613471565b610f82565b6040516104719190613d75565b60405180910390f35b34801561048657600080fd5b506104a1600480360381019061049c9190613428565b610fd5565b005b3480156104af57600080fd5b506104ca60048036038101906104c59190613471565b61106b565b6040516104d79190613971565b60405180910390f35b3480156104ec57600080fd5b506104f5611081565b6040516105029190613d75565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d9190613471565b611087565b005b34801561054057600080fd5b5061054961110d565b60405161055691906139f3565b60405180910390f35b34801561056b57600080fd5b506105866004803603810190610581919061320b565b61119b565b6040516105939190613d75565b60405180910390f35b3480156105a857600080fd5b506105b1611284565b005b3480156105bf57600080fd5b506105da60048036038101906105d59190613471565b61130c565b005b3480156105e857600080fd5b506105f1611392565b6040516105fe9190613971565b60405180910390f35b34801561061357600080fd5b5061062e60048036038101906106299190613471565b6113bc565b005b34801561063c57600080fd5b50610645611442565b60405161065291906139f3565b60405180910390f35b34801561066757600080fd5b506106706114d4565b005b34801561067e57600080fd5b5061069960048036038101906106949190613471565b61157c565b005b6106b560048036038101906106b09190613471565b6117bc565b005b3480156106c357600080fd5b506106de60048036038101906106d9919061334e565b611910565b005b3480156106ec57600080fd5b506106f5611a91565b6040516107029190613d75565b60405180910390f35b34801561071757600080fd5b50610720611ad8565b60405161072d9190613d75565b60405180910390f35b34801561074257600080fd5b5061075d600480360381019061075891906132cb565b611ade565b005b34801561076b57600080fd5b5061078660048036038101906107819190613471565b611b3a565b60405161079391906139f3565b60405180910390f35b3480156107a857600080fd5b506107b1611be1565b6040516107be9190613d75565b60405180910390f35b3480156107d357600080fd5b506107dc611be7565b6040516107e99190613d75565b60405180910390f35b3480156107fe57600080fd5b5061081960048036038101906108149190613238565b611bed565b60405161082691906139d8565b60405180910390f35b34801561083b57600080fd5b506108566004803603810190610851919061320b565b611c81565b005b34801561086457600080fd5b5061086d611d79565b60405161087a91906139d8565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061094e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109b657507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109c657506109c582611d8c565b5b9050919050565b6060600180546109dc906140e5565b80601f0160208091040260200160405190810160405280929190818152602001828054610a08906140e5565b8015610a555780601f10610a2a57610100808354040283529160200191610a55565b820191906000526020600020905b815481529060010190602001808311610a3857829003601f168201915b5050505050905090565b6000610a6a82611df6565b610aa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa090613d35565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aef8261106b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5790613c75565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b7f611e03565b73ffffffffffffffffffffffffffffffffffffffff161480610bae5750610bad81610ba8611e03565b611bed565b5b610bed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be490613b55565b60405180910390fd5b610bf8838383611e0b565b505050565b60008054905090565b610c11838383611ebd565b505050565b600d5481565b6000610c278361119b565b8210610c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5f90613a15565b60405180910390fd5b6000610c72610bfd565b905060008060005b83811015610dd8576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d6c57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dc45786841415610db5578195505050505050610e14565b8380610dc090614148565b9450505b508080610dd090614148565b915050610c7a565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0b90613cf5565b60405180910390fd5b92915050565b600a5481565b610e28611e03565b73ffffffffffffffffffffffffffffffffffffffff16610e46611392565b73ffffffffffffffffffffffffffffffffffffffff1614610e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9390613bd5565b60405180910390fd5b80600a8190555050565b610eae611e03565b73ffffffffffffffffffffffffffffffffffffffff16610ecc611392565b73ffffffffffffffffffffffffffffffffffffffff1614610f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1990613bd5565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610f6057600080fd5b565b610f7d83838360405180602001604052806000815250611ade565b505050565b6000610f8c610bfd565b8210610fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc490613ab5565b60405180910390fd5b819050919050565b610fdd611e03565b73ffffffffffffffffffffffffffffffffffffffff16610ffb611392565b73ffffffffffffffffffffffffffffffffffffffff1614611051576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104890613bd5565b60405180910390fd5b80600f9080519060200190611067929190612fe5565b5050565b600061107682612476565b600001519050919050565b60095481565b61108f611e03565b73ffffffffffffffffffffffffffffffffffffffff166110ad611392565b73ffffffffffffffffffffffffffffffffffffffff1614611103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fa90613bd5565b60405180910390fd5b80600d8190555050565b600f805461111a906140e5565b80601f0160208091040260200160405190810160405280929190818152602001828054611146906140e5565b80156111935780601f1061116857610100808354040283529160200191611193565b820191906000526020600020905b81548152906001019060200180831161117657829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561120c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120390613b95565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61128c611e03565b73ffffffffffffffffffffffffffffffffffffffff166112aa611392565b73ffffffffffffffffffffffffffffffffffffffff1614611300576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f790613bd5565b60405180910390fd5b61130a6000612679565b565b611314611e03565b73ffffffffffffffffffffffffffffffffffffffff16611332611392565b73ffffffffffffffffffffffffffffffffffffffff1614611388576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137f90613bd5565b60405180910390fd5b80600b8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6113c4611e03565b73ffffffffffffffffffffffffffffffffffffffff166113e2611392565b73ffffffffffffffffffffffffffffffffffffffff1614611438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142f90613bd5565b60405180910390fd5b8060098190555050565b606060028054611451906140e5565b80601f016020809104026020016040519081016040528092919081815260200182805461147d906140e5565b80156114ca5780601f1061149f576101008083540402835291602001916114ca565b820191906000526020600020905b8154815290600101906020018083116114ad57829003601f168201915b5050505050905090565b6114dc611e03565b73ffffffffffffffffffffffffffffffffffffffff166114fa611392565b73ffffffffffffffffffffffffffffffffffffffff1614611550576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154790613bd5565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b600e60009054906101000a900460ff166115cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c290613b35565b60405180910390fd5b6000811180156115dd5750600c548111155b61161c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161390613b75565b60405180910390fd5b600c5481601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461166a9190613ea0565b11156116ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a290613a95565b60405180910390fd5b600a54816116b7610bfd565b6116c19190613ea0565b1115611702576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f990613a35565b60405180910390fd5b600d548161170e610bfd565b6117189190613ea0565b1115611759576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175090613af5565b60405180910390fd5b80601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117a89190613ea0565b925050819055506117b9338261273f565b50565b600e60009054906101000a900460ff1661180b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161180290613b35565b60405180910390fd5b60008111801561181d5750600b548111155b61185c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185390613c55565b60405180910390fd5b600a5481611868610bfd565b6118729190613ea0565b11156118b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118aa90613a35565b60405180910390fd5b806009546118c19190613f27565b341015611903576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118fa90613b15565b60405180910390fd5b61190d338261273f565b50565b611918611e03565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197d90613c15565b60405180910390fd5b8060066000611993611e03565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a40611e03565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a8591906139d8565b60405180910390a35050565b6000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905090565b600c5481565b611ae9848484611ebd565b611af58484848461275d565b611b34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2b90613c95565b60405180910390fd5b50505050565b6060611b4582611df6565b611b84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7b90613bf5565b60405180910390fd5b6000611b8e6128f4565b90506000815111611bae5760405180602001604052806000815250611bd9565b80611bb884612986565b604051602001611bc9929190613942565b6040516020818303038152906040525b915050919050565b600b5481565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c89611e03565b73ffffffffffffffffffffffffffffffffffffffff16611ca7611392565b73ffffffffffffffffffffffffffffffffffffffff1614611cfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf490613bd5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6490613a55565b60405180910390fd5b611d7681612679565b50565b600e60009054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611ec882612476565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611eef611e03565b73ffffffffffffffffffffffffffffffffffffffff161480611f4b5750611f14611e03565b73ffffffffffffffffffffffffffffffffffffffff16611f3384610a5f565b73ffffffffffffffffffffffffffffffffffffffff16145b80611f675750611f668260000151611f61611e03565b611bed565b5b905080611fa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa090613c35565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461201b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201290613bb5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561208b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208290613ad5565b60405180910390fd5b6120988585856001612ae7565b6120a86000848460000151611e0b565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166121169190613f81565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166121ba9190613e5a565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846122c09190613ea0565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156124065761233681611df6565b15612405576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461246e8686866001612aed565b505050505050565b61247e61306b565b61248782611df6565b6124c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124bd90613a75565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000a831061252a5760017f000000000000000000000000000000000000000000000000000000000000000a8461251d9190613fb5565b6125279190613ea0565b90505b60008390505b818110612638576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461262457809350505050612674565b508080612630906140bb565b915050612530565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266b90613d15565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612759828260405180602001604052806000815250612af3565b5050565b600061277e8473ffffffffffffffffffffffffffffffffffffffff16612fd2565b156128e7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127a7611e03565b8786866040518563ffffffff1660e01b81526004016127c9949392919061398c565b602060405180830381600087803b1580156127e357600080fd5b505af192505050801561281457506040513d601f19601f8201168201806040525081019061281191906133fb565b60015b612897573d8060008114612844576040519150601f19603f3d011682016040523d82523d6000602084013e612849565b606091505b5060008151141561288f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288690613c95565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506128ec565b600190505b949350505050565b6060600f8054612903906140e5565b80601f016020809104026020016040519081016040528092919081815260200182805461292f906140e5565b801561297c5780601f106129515761010080835404028352916020019161297c565b820191906000526020600020905b81548152906001019060200180831161295f57829003601f168201915b5050505050905090565b606060008214156129ce576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ae2565b600082905060005b60008214612a005780806129e990614148565b915050600a826129f99190613ef6565b91506129d6565b60008167ffffffffffffffff811115612a1c57612a1b61427e565b5b6040519080825280601f01601f191660200182016040528015612a4e5781602001600182028036833780820191505090505b5090505b60008514612adb57600182612a679190613fb5565b9150600a85612a769190614191565b6030612a829190613ea0565b60f81b818381518110612a9857612a9761424f565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ad49190613ef6565b9450612a52565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6090613cd5565b60405180910390fd5b612b7281611df6565b15612bb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ba990613cb5565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000a831115612c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0c90613d55565b60405180910390fd5b612c226000858386612ae7565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612d1f9190613e5a565b6fffffffffffffffffffffffffffffffff168152602001858360200151612d469190613e5a565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612fb557818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f55600088848861275d565b612f94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f8b90613c95565b60405180910390fd5b8180612f9f90614148565b9250508080612fad90614148565b915050612ee4565b5080600081905550612fca6000878588612aed565b505050505050565b600080823b905060008111915050919050565b828054612ff1906140e5565b90600052602060002090601f016020900481019282613013576000855561305a565b82601f1061302c57805160ff191683800117855561305a565b8280016001018555821561305a579182015b8281111561305957825182559160200191906001019061303e565b5b50905061306791906130a5565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156130be5760008160009055506001016130a6565b5090565b60006130d56130d084613db5565b613d90565b9050828152602081018484840111156130f1576130f06142b2565b5b6130fc848285614079565b509392505050565b600061311761311284613de6565b613d90565b905082815260208101848484011115613133576131326142b2565b5b61313e848285614079565b509392505050565b60008135905061315581614a20565b92915050565b60008135905061316a81614a37565b92915050565b60008135905061317f81614a4e565b92915050565b60008151905061319481614a4e565b92915050565b600082601f8301126131af576131ae6142ad565b5b81356131bf8482602086016130c2565b91505092915050565b600082601f8301126131dd576131dc6142ad565b5b81356131ed848260208601613104565b91505092915050565b60008135905061320581614a65565b92915050565b600060208284031215613221576132206142bc565b5b600061322f84828501613146565b91505092915050565b6000806040838503121561324f5761324e6142bc565b5b600061325d85828601613146565b925050602061326e85828601613146565b9150509250929050565b600080600060608486031215613291576132906142bc565b5b600061329f86828701613146565b93505060206132b086828701613146565b92505060406132c1868287016131f6565b9150509250925092565b600080600080608085870312156132e5576132e46142bc565b5b60006132f387828801613146565b945050602061330487828801613146565b9350506040613315878288016131f6565b925050606085013567ffffffffffffffff811115613336576133356142b7565b5b6133428782880161319a565b91505092959194509250565b60008060408385031215613365576133646142bc565b5b600061337385828601613146565b92505060206133848582860161315b565b9150509250929050565b600080604083850312156133a5576133a46142bc565b5b60006133b385828601613146565b92505060206133c4858286016131f6565b9150509250929050565b6000602082840312156133e4576133e36142bc565b5b60006133f284828501613170565b91505092915050565b600060208284031215613411576134106142bc565b5b600061341f84828501613185565b91505092915050565b60006020828403121561343e5761343d6142bc565b5b600082013567ffffffffffffffff81111561345c5761345b6142b7565b5b613468848285016131c8565b91505092915050565b600060208284031215613487576134866142bc565b5b6000613495848285016131f6565b91505092915050565b6134a781613fe9565b82525050565b6134b681613ffb565b82525050565b60006134c782613e17565b6134d18185613e2d565b93506134e1818560208601614088565b6134ea816142c1565b840191505092915050565b600061350082613e22565b61350a8185613e3e565b935061351a818560208601614088565b613523816142c1565b840191505092915050565b600061353982613e22565b6135438185613e4f565b9350613553818560208601614088565b80840191505092915050565b600061356c602283613e3e565b9150613577826142d2565b604082019050919050565b600061358f600883613e3e565b915061359a82614321565b602082019050919050565b60006135b2602683613e3e565b91506135bd8261434a565b604082019050919050565b60006135d5602a83613e3e565b91506135e082614399565b604082019050919050565b60006135f8602083613e3e565b9150613603826143e8565b602082019050919050565b600061361b602383613e3e565b915061362682614411565b604082019050919050565b600061363e602583613e3e565b915061364982614460565b604082019050919050565b6000613661602083613e3e565b915061366c826144af565b602082019050919050565b6000613684602283613e3e565b915061368f826144d8565b604082019050919050565b60006136a7601083613e3e565b91506136b282614527565b602082019050919050565b60006136ca603983613e3e565b91506136d582614550565b604082019050919050565b60006136ed602083613e3e565b91506136f88261459f565b602082019050919050565b6000613710602b83613e3e565b915061371b826145c8565b604082019050919050565b6000613733602683613e3e565b915061373e82614617565b604082019050919050565b6000613756600583613e4f565b915061376182614666565b600582019050919050565b6000613779602083613e3e565b91506137848261468f565b602082019050919050565b600061379c602f83613e3e565b91506137a7826146b8565b604082019050919050565b60006137bf601a83613e3e565b91506137ca82614707565b602082019050919050565b60006137e2603283613e3e565b91506137ed82614730565b604082019050919050565b6000613805602183613e3e565b91506138108261477f565b604082019050919050565b6000613828602283613e3e565b9150613833826147ce565b604082019050919050565b600061384b603383613e3e565b91506138568261481d565b604082019050919050565b600061386e601d83613e3e565b91506138798261486c565b602082019050919050565b6000613891602183613e3e565b915061389c82614895565b604082019050919050565b60006138b4602e83613e3e565b91506138bf826148e4565b604082019050919050565b60006138d7602f83613e3e565b91506138e282614933565b604082019050919050565b60006138fa602d83613e3e565b915061390582614982565b604082019050919050565b600061391d602283613e3e565b9150613928826149d1565b604082019050919050565b61393c8161406f565b82525050565b600061394e828561352e565b915061395a828461352e565b915061396582613749565b91508190509392505050565b6000602082019050613986600083018461349e565b92915050565b60006080820190506139a1600083018761349e565b6139ae602083018661349e565b6139bb6040830185613933565b81810360608301526139cd81846134bc565b905095945050505050565b60006020820190506139ed60008301846134ad565b92915050565b60006020820190508181036000830152613a0d81846134f5565b905092915050565b60006020820190508181036000830152613a2e8161355f565b9050919050565b60006020820190508181036000830152613a4e81613582565b9050919050565b60006020820190508181036000830152613a6e816135a5565b9050919050565b60006020820190508181036000830152613a8e816135c8565b9050919050565b60006020820190508181036000830152613aae816135eb565b9050919050565b60006020820190508181036000830152613ace8161360e565b9050919050565b60006020820190508181036000830152613aee81613631565b9050919050565b60006020820190508181036000830152613b0e81613654565b9050919050565b60006020820190508181036000830152613b2e81613677565b9050919050565b60006020820190508181036000830152613b4e8161369a565b9050919050565b60006020820190508181036000830152613b6e816136bd565b9050919050565b60006020820190508181036000830152613b8e816136e0565b9050919050565b60006020820190508181036000830152613bae81613703565b9050919050565b60006020820190508181036000830152613bce81613726565b9050919050565b60006020820190508181036000830152613bee8161376c565b9050919050565b60006020820190508181036000830152613c0e8161378f565b9050919050565b60006020820190508181036000830152613c2e816137b2565b9050919050565b60006020820190508181036000830152613c4e816137d5565b9050919050565b60006020820190508181036000830152613c6e816137f8565b9050919050565b60006020820190508181036000830152613c8e8161381b565b9050919050565b60006020820190508181036000830152613cae8161383e565b9050919050565b60006020820190508181036000830152613cce81613861565b9050919050565b60006020820190508181036000830152613cee81613884565b9050919050565b60006020820190508181036000830152613d0e816138a7565b9050919050565b60006020820190508181036000830152613d2e816138ca565b9050919050565b60006020820190508181036000830152613d4e816138ed565b9050919050565b60006020820190508181036000830152613d6e81613910565b9050919050565b6000602082019050613d8a6000830184613933565b92915050565b6000613d9a613dab565b9050613da68282614117565b919050565b6000604051905090565b600067ffffffffffffffff821115613dd057613dcf61427e565b5b613dd9826142c1565b9050602081019050919050565b600067ffffffffffffffff821115613e0157613e0061427e565b5b613e0a826142c1565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e6582614033565b9150613e7083614033565b9250826fffffffffffffffffffffffffffffffff03821115613e9557613e946141c2565b5b828201905092915050565b6000613eab8261406f565b9150613eb68361406f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613eeb57613eea6141c2565b5b828201905092915050565b6000613f018261406f565b9150613f0c8361406f565b925082613f1c57613f1b6141f1565b5b828204905092915050565b6000613f328261406f565b9150613f3d8361406f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f7657613f756141c2565b5b828202905092915050565b6000613f8c82614033565b9150613f9783614033565b925082821015613faa57613fa96141c2565b5b828203905092915050565b6000613fc08261406f565b9150613fcb8361406f565b925082821015613fde57613fdd6141c2565b5b828203905092915050565b6000613ff48261404f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156140a657808201518184015260208101905061408b565b838111156140b5576000848401525b50505050565b60006140c68261406f565b915060008214156140da576140d96141c2565b5b600182039050919050565b600060028204905060018216806140fd57607f821691505b6020821081141561411157614110614220565b5b50919050565b614120826142c1565b810181811067ffffffffffffffff8211171561413f5761413e61427e565b5b80604052505050565b60006141538261406f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614186576141856141c2565b5b600182019050919050565b600061419c8261406f565b91506141a78361406f565b9250826141b7576141b66141f1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f536f6c64204f7574000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4f6e6c792035207265736572766564206d696e7473207065722077616c6c6574600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f546865726520617265206e6f207265736572766564206d696e7473206c656674600082015250565b7f416d6f756e74206f662065746865722073656e74206973206e6f7420656e6f7560008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206e6f74207374617274656400000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f4d757374206d696e74206265747765656e203120616e64203520746f6b656e73600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f4d757374206d696e74206265747765656e203120616e6420313020746f6b656e60008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b614a2981613fe9565b8114614a3457600080fd5b50565b614a4081613ffb565b8114614a4b57600080fd5b50565b614a5781614007565b8114614a6257600080fd5b50565b614a6e8161406f565b8114614a7957600080fd5b5056fea26469706673582212205fef0711fcd820a71a44756ab6b57b4db2ebadba906127752432a55c7dfa2aee64736f6c63430008070033

Deployed Bytecode Sourcemap

39617:2685:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24744:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26470:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28004:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27567:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23305:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28854:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39841:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23936:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39722:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41719:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42187:112;;;;;;;;;;;;;:::i;:::-;;29059:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23468:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41410:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26293:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39671:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41823:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39924:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25170:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38736:103;;;;;;;;;;;;;:::i;:::-;;41620:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38085:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41520:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26625:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41315:87;;;;;;;;;;;;;:::i;:::-;;40589:718;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40096:485;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28272:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42059:120;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39797:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29279:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26786:403;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39761:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33694:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28609:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38994:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39884:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24744:370;24871:4;24916:25;24901:40;;;:11;:40;;;;:99;;;;24967:33;24952:48;;;:11;:48;;;;24901:99;:160;;;;25026:35;25011:50;;;:11;:50;;;;24901:160;:207;;;;25072:36;25096:11;25072:23;:36::i;:::-;24901:207;24887:221;;24744:370;;;:::o;26470:94::-;26524:13;26553:5;26546:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26470:94;:::o;28004:204::-;28072:7;28096:16;28104:7;28096;:16::i;:::-;28088:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;28178:15;:24;28194:7;28178:24;;;;;;;;;;;;;;;;;;;;;28171:31;;28004:204;;;:::o;27567:379::-;27636:13;27652:24;27668:7;27652:15;:24::i;:::-;27636:40;;27697:5;27691:11;;:2;:11;;;;27683:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;27782:5;27766:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27791:37;27808:5;27815:12;:10;:12::i;:::-;27791:16;:37::i;:::-;27766:62;27750:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;27912:28;27921:2;27925:7;27934:5;27912:8;:28::i;:::-;27629:317;27567:379;;:::o;23305:94::-;23358:7;23381:12;;23374:19;;23305:94;:::o;28854:142::-;28962:28;28972:4;28978:2;28982:7;28962:9;:28::i;:::-;28854:142;;;:::o;39841:34::-;;;;:::o;23936:744::-;24045:7;24080:16;24090:5;24080:9;:16::i;:::-;24072:5;:24;24064:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;24142:22;24167:13;:11;:13::i;:::-;24142:38;;24187:19;24217:25;24267:9;24262:350;24286:14;24282:1;:18;24262:350;;;24316:31;24350:11;:14;24362:1;24350:14;;;;;;;;;;;24316:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24403:1;24377:28;;:9;:14;;;:28;;;24373:89;;24438:9;:14;;;24418:34;;24373:89;24495:5;24474:26;;:17;:26;;;24470:135;;;24532:5;24517:11;:20;24513:59;;;24559:1;24552:8;;;;;;;;;24513:59;24582:13;;;;;:::i;:::-;;;;24470:135;24307:305;24302:3;;;;;:::i;:::-;;;;24262:350;;;;24618:56;;;;;;;;;;:::i;:::-;;;;;;;;23936:744;;;;;:::o;39722:32::-;;;;:::o;41719:96::-;38316:12;:10;:12::i;:::-;38305:23;;:7;:5;:7::i;:::-;:23;;;38297:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41798:9:::1;41785:10;:22;;;;41719:96:::0;:::o;42187:112::-;38316:12;:10;:12::i;:::-;38305:23;;:7;:5;:7::i;:::-;:23;;;38297:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42251:10:::1;42243:24;;:47;42268:21;42243:47;;;;;;;;;;;;;;;;;;;;;;;42235:56;;;::::0;::::1;;42187:112::o:0;29059:157::-;29171:39;29188:4;29194:2;29198:7;29171:39;;;;;;;;;;;;:16;:39::i;:::-;29059:157;;;:::o;23468:177::-;23535:7;23567:13;:11;:13::i;:::-;23559:5;:21;23551:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;23634:5;23627:12;;23468:177;;;:::o;41410:102::-;38316:12;:10;:12::i;:::-;38305:23;;:7;:5;:7::i;:::-;:23;;;38297:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41494:10:::1;41484:7;:20;;;;;;;;;;;;:::i;:::-;;41410:102:::0;:::o;26293:118::-;26357:7;26380:20;26392:7;26380:11;:20::i;:::-;:25;;;26373:32;;26293:118;;;:::o;39671:44::-;;;;:::o;41823:108::-;38316:12;:10;:12::i;:::-;38305:23;;:7;:5;:7::i;:::-;:23;;;38297:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41913:10:::1;41897:13;:26;;;;41823:108:::0;:::o;39924:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25170:211::-;25234:7;25275:1;25258:19;;:5;:19;;;;25250:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;25347:12;:19;25360:5;25347:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;25339:36;;25332:43;;25170:211;;;:::o;38736:103::-;38316:12;:10;:12::i;:::-;38305:23;;:7;:5;:7::i;:::-;:23;;;38297:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38801:30:::1;38828:1;38801:18;:30::i;:::-;38736:103::o:0;41620:91::-;38316:12;:10;:12::i;:::-;38305:23;;:7;:5;:7::i;:::-;:23;;;38297:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41697:6:::1;41685:9;:18;;;;41620:91:::0;:::o;38085:87::-;38131:7;38158:6;;;;;;;;;;;38151:13;;38085:87;:::o;41520:92::-;38316:12;:10;:12::i;:::-;38305:23;;:7;:5;:7::i;:::-;:23;;;38297:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41596:8:::1;41584:9;:20;;;;41520:92:::0;:::o;26625:98::-;26681:13;26710:7;26703:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26625:98;:::o;41315:87::-;38316:12;:10;:12::i;:::-;38305:23;;:7;:5;:7::i;:::-;:23;;;38297:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41383:11:::1;;;;;;;;;;;41382:12;41368:11;;:26;;;;;;;;;;;;;;;;;;41315:87::o:0;40589:718::-;40656:11;;;;;;;;;;;40648:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;40733:1;40721:9;:13;:48;;;;;40751:18;;40738:9;:31;;40721:48;40699:130;;;;;;;;;;;;:::i;:::-;;;;;;;;;40912:18;;40899:9;40862:22;:34;40885:10;40862:34;;;;;;;;;;;;;;;;:46;;;;:::i;:::-;:68;;40840:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;41038:10;;41025:9;41009:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:39;;41001:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;41123:13;;41110:9;41094:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:42;;41072:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;41247:9;41209:22;:34;41232:10;41209:34;;;;;;;;;;;;;;;;:47;;;;;;;:::i;:::-;;;;;;;;41267:32;41277:10;41289:9;41267;:32::i;:::-;40589:718;:::o;40096:485::-;40163:11;;;;;;;;;;;40155:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;40240:1;40228:9;:13;:39;;;;;40258:9;;40245;:22;;40228:39;40206:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;40376:10;;40363:9;40347:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:39;;40339:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;40457:9;40445;;:21;;;;:::i;:::-;40432:9;:34;;40410:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;40541:32;40551:10;40563:9;40541;:32::i;:::-;40096:485;:::o;28272:274::-;28375:12;:10;:12::i;:::-;28363:24;;:8;:24;;;;28355:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;28472:8;28427:18;:32;28446:12;:10;:12::i;:::-;28427:32;;;;;;;;;;;;;;;:42;28460:8;28427:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;28521:8;28492:48;;28507:12;:10;:12::i;:::-;28492:48;;;28531:8;28492:48;;;;;;:::i;:::-;;;;;;;;28272:274;;:::o;42059:120::-;42110:7;42137:22;:34;42160:10;42137:34;;;;;;;;;;;;;;;;42130:41;;42059:120;:::o;39797:37::-;;;;:::o;29279:311::-;29416:28;29426:4;29432:2;29436:7;29416:9;:28::i;:::-;29467:48;29490:4;29496:2;29500:7;29509:5;29467:22;:48::i;:::-;29451:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;29279:311;;;;:::o;26786:403::-;26884:13;26925:16;26933:7;26925;:16::i;:::-;26909:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;27015:21;27039:10;:8;:10::i;:::-;27015:34;;27094:1;27076:7;27070:21;:25;:113;;;;;;;;;;;;;;;;;27131:7;27140:18;:7;:16;:18::i;:::-;27114:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27070:113;27056:127;;;26786:403;;;:::o;39761:29::-;;;;:::o;33694:43::-;;;;:::o;28609:186::-;28731:4;28754:18;:25;28773:5;28754:25;;;;;;;;;;;;;;;:35;28780:8;28754:35;;;;;;;;;;;;;;;;;;;;;;;;;28747:42;;28609:186;;;;:::o;38994:238::-;38316:12;:10;:12::i;:::-;38305:23;;:7;:5;:7::i;:::-;:23;;;38297:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39117:1:::1;39097:22;;:8;:22;;;;39075:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;39196:28;39215:8;39196:18;:28::i;:::-;38994:238:::0;:::o;39884:31::-;;;;;;;;;;;;;:::o;8316:207::-;8446:4;8490:25;8475:40;;;:11;:40;;;;8468:47;;8316:207;;;:::o;29829:105::-;29886:4;29916:12;;29906:7;:22;29899:29;;29829:105;;;:::o;17715:98::-;17768:7;17795:10;17788:17;;17715:98;:::o;33516:172::-;33640:2;33613:15;:24;33629:7;33613:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;33674:7;33670:2;33654:28;;33663:5;33654:28;;;;;;;;;;;;33516:172;;;:::o;31881:1529::-;31978:35;32016:20;32028:7;32016:11;:20::i;:::-;31978:58;;32045:22;32087:13;:18;;;32071:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;32140:12;:10;:12::i;:::-;32116:36;;:20;32128:7;32116:11;:20::i;:::-;:36;;;32071:81;:142;;;;32163:50;32180:13;:18;;;32200:12;:10;:12::i;:::-;32163:16;:50::i;:::-;32071:142;32045:169;;32239:17;32223:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;32371:4;32349:26;;:13;:18;;;:26;;;32333:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;32460:1;32446:16;;:2;:16;;;;32438:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;32513:43;32535:4;32541:2;32545:7;32554:1;32513:21;:43::i;:::-;32613:49;32630:1;32634:7;32643:13;:18;;;32613:8;:49::i;:::-;32701:1;32671:12;:18;32684:4;32671:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32737:1;32709:12;:16;32722:2;32709:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32768:43;;;;;;;;32783:2;32768:43;;;;;;32794:15;32768:43;;;;;32745:11;:20;32757:7;32745:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33039:19;33071:1;33061:7;:11;;;;:::i;:::-;33039:33;;33124:1;33083:43;;:11;:24;33095:11;33083:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;33079:236;;;33141:20;33149:11;33141:7;:20::i;:::-;33137:171;;;33201:97;;;;;;;;33228:13;:18;;;33201:97;;;;;;33259:13;:28;;;33201:97;;;;;33174:11;:24;33186:11;33174:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33137:171;33079:236;33347:7;33343:2;33328:27;;33337:4;33328:27;;;;;;;;;;;;33362:42;33383:4;33389:2;33393:7;33402:1;33362:20;:42::i;:::-;31971:1439;;;31881:1529;;;:::o;25633:606::-;25709:21;;:::i;:::-;25750:16;25758:7;25750;:16::i;:::-;25742:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;25822:26;25870:12;25859:7;:23;25855:93;;25939:1;25924:12;25914:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;25893:47;;25855:93;25961:12;25976:7;25961:22;;25956:212;25993:18;25985:4;:26;25956:212;;26030:31;26064:11;:17;26076:4;26064:17;;;;;;;;;;;26030:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26120:1;26094:28;;:9;:14;;;:28;;;26090:71;;26142:9;26135:16;;;;;;;26090:71;26021:147;26013:6;;;;;:::i;:::-;;;;25956:212;;;;26176:57;;;;;;;;;;:::i;:::-;;;;;;;;25633:606;;;;:::o;39392:191::-;39466:16;39485:6;;;;;;;;;;;39466:25;;39511:8;39502:6;;:17;;;;;;;;;;;;;;;;;;39566:8;39535:40;;39556:8;39535:40;;;;;;;;;;;;39455:128;39392:191;:::o;29940:98::-;30005:27;30015:2;30019:8;30005:27;;;;;;;;;;;;:9;:27::i;:::-;29940:98;;:::o;35231:690::-;35368:4;35385:15;:2;:13;;;:15::i;:::-;35381:535;;;35440:2;35424:36;;;35461:12;:10;:12::i;:::-;35475:4;35481:7;35490:5;35424:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35411:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35672:1;35655:6;:13;:18;35651:215;;;35688:61;;;;;;;;;;:::i;:::-;;;;;;;;35651:215;35834:6;35828:13;35819:6;35815:2;35811:15;35804:38;35411:464;35556:45;;;35546:55;;;:6;:55;;;;35539:62;;;;;35381:535;35904:4;35897:11;;35231:690;;;;;;;:::o;41939:108::-;41999:13;42032:7;42025:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41939:108;:::o;18238:723::-;18294:13;18524:1;18515:5;:10;18511:53;;;18542:10;;;;;;;;;;;;;;;;;;;;;18511:53;18574:12;18589:5;18574:20;;18605:14;18630:78;18645:1;18637:4;:9;18630:78;;18663:8;;;;;:::i;:::-;;;;18694:2;18686:10;;;;;:::i;:::-;;;18630:78;;;18718:19;18750:6;18740:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18718:39;;18768:154;18784:1;18775:5;:10;18768:154;;18812:1;18802:11;;;;;:::i;:::-;;;18879:2;18871:5;:10;;;;:::i;:::-;18858:2;:24;;;;:::i;:::-;18845:39;;18828:6;18835;18828:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;18908:2;18899:11;;;;;:::i;:::-;;;18768:154;;;18946:6;18932:21;;;;;18238:723;;;;:::o;36383:141::-;;;;;:::o;36910:140::-;;;;;:::o;30377:1272::-;30482:20;30505:12;;30482:35;;30546:1;30532:16;;:2;:16;;;;30524:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;30723:21;30731:12;30723:7;:21::i;:::-;30722:22;30714:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;30805:12;30793:8;:24;;30785:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;30865:61;30895:1;30899:2;30903:12;30917:8;30865:21;:61::i;:::-;30935:30;30968:12;:16;30981:2;30968:16;;;;;;;;;;;;;;;30935:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31010:119;;;;;;;;31060:8;31030:11;:19;;;:39;;;;:::i;:::-;31010:119;;;;;;31113:8;31078:11;:24;;;:44;;;;:::i;:::-;31010:119;;;;;30991:12;:16;31004:2;30991:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31164:43;;;;;;;;31179:2;31164:43;;;;;;31190:15;31164:43;;;;;31136:11;:25;31148:12;31136:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31216:20;31239:12;31216:35;;31265:9;31260:281;31284:8;31280:1;:12;31260:281;;;31338:12;31334:2;31313:38;;31330:1;31313:38;;;;;;;;;;;;31378:59;31409:1;31413:2;31417:12;31431:5;31378:22;:59::i;:::-;31360:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;31519:14;;;;;:::i;:::-;;;;31294:3;;;;;:::i;:::-;;;;31260:281;;;;31564:12;31549;:27;;;;31583:60;31612:1;31616:2;31620:12;31634:8;31583:20;:60::i;:::-;30475:1174;;;30377:1272;;;:::o;9294:387::-;9354:4;9562:12;9629:7;9617:20;9609:28;;9672:1;9665:4;:8;9658:15;;;9294:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:118::-;7245:24;7263:5;7245:24;:::i;:::-;7240:3;7233:37;7158:118;;:::o;7282:109::-;7363:21;7378:5;7363:21;:::i;:::-;7358:3;7351:34;7282:109;;:::o;7397:360::-;7483:3;7511:38;7543:5;7511:38;:::i;:::-;7565:70;7628:6;7623:3;7565:70;:::i;:::-;7558:77;;7644:52;7689:6;7684:3;7677:4;7670:5;7666:16;7644:52;:::i;:::-;7721:29;7743:6;7721:29;:::i;:::-;7716:3;7712:39;7705:46;;7487:270;7397:360;;;;:::o;7763:364::-;7851:3;7879:39;7912:5;7879:39;:::i;:::-;7934:71;7998:6;7993:3;7934:71;:::i;:::-;7927:78;;8014:52;8059:6;8054:3;8047:4;8040:5;8036:16;8014:52;:::i;:::-;8091:29;8113:6;8091:29;:::i;:::-;8086:3;8082:39;8075:46;;7855:272;7763:364;;;;:::o;8133:377::-;8239:3;8267:39;8300:5;8267:39;:::i;:::-;8322:89;8404:6;8399:3;8322:89;:::i;:::-;8315:96;;8420:52;8465:6;8460:3;8453:4;8446:5;8442:16;8420:52;:::i;:::-;8497:6;8492:3;8488:16;8481:23;;8243:267;8133:377;;;;:::o;8516:366::-;8658:3;8679:67;8743:2;8738:3;8679:67;:::i;:::-;8672:74;;8755:93;8844:3;8755:93;:::i;:::-;8873:2;8868:3;8864:12;8857:19;;8516:366;;;:::o;8888:365::-;9030:3;9051:66;9115:1;9110:3;9051:66;:::i;:::-;9044:73;;9126:93;9215:3;9126:93;:::i;:::-;9244:2;9239:3;9235:12;9228:19;;8888:365;;;:::o;9259:366::-;9401:3;9422:67;9486:2;9481:3;9422:67;:::i;:::-;9415:74;;9498:93;9587:3;9498:93;:::i;:::-;9616:2;9611:3;9607:12;9600:19;;9259:366;;;:::o;9631:::-;9773:3;9794:67;9858:2;9853:3;9794:67;:::i;:::-;9787:74;;9870:93;9959:3;9870:93;:::i;:::-;9988:2;9983:3;9979:12;9972:19;;9631:366;;;:::o;10003:::-;10145:3;10166:67;10230:2;10225:3;10166:67;:::i;:::-;10159:74;;10242:93;10331:3;10242:93;:::i;:::-;10360:2;10355:3;10351:12;10344:19;;10003:366;;;:::o;10375:::-;10517:3;10538:67;10602:2;10597:3;10538:67;:::i;:::-;10531:74;;10614:93;10703:3;10614:93;:::i;:::-;10732:2;10727:3;10723:12;10716:19;;10375:366;;;:::o;10747:::-;10889:3;10910:67;10974:2;10969:3;10910:67;:::i;:::-;10903:74;;10986:93;11075:3;10986:93;:::i;:::-;11104:2;11099:3;11095:12;11088:19;;10747:366;;;:::o;11119:::-;11261:3;11282:67;11346:2;11341:3;11282:67;:::i;:::-;11275:74;;11358:93;11447:3;11358:93;:::i;:::-;11476:2;11471:3;11467:12;11460:19;;11119:366;;;:::o;11491:::-;11633:3;11654:67;11718:2;11713:3;11654:67;:::i;:::-;11647:74;;11730:93;11819:3;11730:93;:::i;:::-;11848:2;11843:3;11839:12;11832:19;;11491:366;;;:::o;11863:::-;12005:3;12026:67;12090:2;12085:3;12026:67;:::i;:::-;12019:74;;12102:93;12191:3;12102:93;:::i;:::-;12220:2;12215:3;12211:12;12204:19;;11863:366;;;:::o;12235:::-;12377:3;12398:67;12462:2;12457:3;12398:67;:::i;:::-;12391:74;;12474:93;12563:3;12474:93;:::i;:::-;12592:2;12587:3;12583:12;12576:19;;12235:366;;;:::o;12607:::-;12749:3;12770:67;12834:2;12829:3;12770:67;:::i;:::-;12763:74;;12846:93;12935:3;12846:93;:::i;:::-;12964:2;12959:3;12955:12;12948:19;;12607:366;;;:::o;12979:::-;13121:3;13142:67;13206:2;13201:3;13142:67;:::i;:::-;13135:74;;13218:93;13307:3;13218:93;:::i;:::-;13336:2;13331:3;13327:12;13320:19;;12979:366;;;:::o;13351:::-;13493:3;13514:67;13578:2;13573:3;13514:67;:::i;:::-;13507:74;;13590:93;13679:3;13590:93;:::i;:::-;13708:2;13703:3;13699:12;13692:19;;13351:366;;;:::o;13723:400::-;13883:3;13904:84;13986:1;13981:3;13904:84;:::i;:::-;13897:91;;13997:93;14086:3;13997:93;:::i;:::-;14115:1;14110:3;14106:11;14099:18;;13723:400;;;:::o;14129:366::-;14271:3;14292:67;14356:2;14351:3;14292:67;:::i;:::-;14285:74;;14368:93;14457:3;14368:93;:::i;:::-;14486:2;14481:3;14477:12;14470:19;;14129:366;;;:::o;14501:::-;14643:3;14664:67;14728:2;14723:3;14664:67;:::i;:::-;14657:74;;14740:93;14829:3;14740:93;:::i;:::-;14858:2;14853:3;14849:12;14842:19;;14501:366;;;:::o;14873:::-;15015:3;15036:67;15100:2;15095:3;15036:67;:::i;:::-;15029:74;;15112:93;15201:3;15112:93;:::i;:::-;15230:2;15225:3;15221:12;15214:19;;14873:366;;;:::o;15245:::-;15387:3;15408:67;15472:2;15467:3;15408:67;:::i;:::-;15401:74;;15484:93;15573:3;15484:93;:::i;:::-;15602:2;15597:3;15593:12;15586:19;;15245:366;;;:::o;15617:::-;15759:3;15780:67;15844:2;15839:3;15780:67;:::i;:::-;15773:74;;15856:93;15945:3;15856:93;:::i;:::-;15974:2;15969:3;15965:12;15958:19;;15617:366;;;:::o;15989:::-;16131:3;16152:67;16216:2;16211:3;16152:67;:::i;:::-;16145:74;;16228:93;16317:3;16228:93;:::i;:::-;16346:2;16341:3;16337:12;16330:19;;15989:366;;;:::o;16361:::-;16503:3;16524:67;16588:2;16583:3;16524:67;:::i;:::-;16517:74;;16600:93;16689:3;16600:93;:::i;:::-;16718:2;16713:3;16709:12;16702:19;;16361:366;;;:::o;16733:::-;16875:3;16896:67;16960:2;16955:3;16896:67;:::i;:::-;16889:74;;16972:93;17061:3;16972:93;:::i;:::-;17090:2;17085:3;17081:12;17074:19;;16733:366;;;:::o;17105:::-;17247:3;17268:67;17332:2;17327:3;17268:67;:::i;:::-;17261:74;;17344:93;17433:3;17344:93;:::i;:::-;17462:2;17457:3;17453:12;17446:19;;17105:366;;;:::o;17477:::-;17619:3;17640:67;17704:2;17699:3;17640:67;:::i;:::-;17633:74;;17716:93;17805:3;17716:93;:::i;:::-;17834:2;17829:3;17825:12;17818:19;;17477:366;;;:::o;17849:::-;17991:3;18012:67;18076:2;18071:3;18012:67;:::i;:::-;18005:74;;18088:93;18177:3;18088:93;:::i;:::-;18206:2;18201:3;18197:12;18190:19;;17849:366;;;:::o;18221:::-;18363:3;18384:67;18448:2;18443:3;18384:67;:::i;:::-;18377:74;;18460:93;18549:3;18460:93;:::i;:::-;18578:2;18573:3;18569:12;18562:19;;18221:366;;;:::o;18593:::-;18735:3;18756:67;18820:2;18815:3;18756:67;:::i;:::-;18749:74;;18832:93;18921:3;18832:93;:::i;:::-;18950:2;18945:3;18941:12;18934:19;;18593:366;;;:::o;18965:118::-;19052:24;19070:5;19052:24;:::i;:::-;19047:3;19040:37;18965:118;;:::o;19089:701::-;19370:3;19392:95;19483:3;19474:6;19392:95;:::i;:::-;19385:102;;19504:95;19595:3;19586:6;19504:95;:::i;:::-;19497:102;;19616:148;19760:3;19616:148;:::i;:::-;19609:155;;19781:3;19774:10;;19089:701;;;;;:::o;19796:222::-;19889:4;19927:2;19916:9;19912:18;19904:26;;19940:71;20008:1;19997:9;19993:17;19984:6;19940:71;:::i;:::-;19796:222;;;;:::o;20024:640::-;20219:4;20257:3;20246:9;20242:19;20234:27;;20271:71;20339:1;20328:9;20324:17;20315:6;20271:71;:::i;:::-;20352:72;20420:2;20409:9;20405:18;20396:6;20352:72;:::i;:::-;20434;20502:2;20491:9;20487:18;20478:6;20434:72;:::i;:::-;20553:9;20547:4;20543:20;20538:2;20527:9;20523:18;20516:48;20581:76;20652:4;20643:6;20581:76;:::i;:::-;20573:84;;20024:640;;;;;;;:::o;20670:210::-;20757:4;20795:2;20784:9;20780:18;20772:26;;20808:65;20870:1;20859:9;20855:17;20846:6;20808:65;:::i;:::-;20670:210;;;;:::o;20886:313::-;20999:4;21037:2;21026:9;21022:18;21014:26;;21086:9;21080:4;21076:20;21072:1;21061:9;21057:17;21050:47;21114:78;21187:4;21178:6;21114:78;:::i;:::-;21106:86;;20886:313;;;;:::o;21205:419::-;21371:4;21409:2;21398:9;21394:18;21386:26;;21458:9;21452:4;21448:20;21444:1;21433:9;21429:17;21422:47;21486:131;21612:4;21486:131;:::i;:::-;21478:139;;21205:419;;;:::o;21630:::-;21796:4;21834:2;21823:9;21819:18;21811:26;;21883:9;21877:4;21873:20;21869:1;21858:9;21854:17;21847:47;21911:131;22037:4;21911:131;:::i;:::-;21903:139;;21630:419;;;:::o;22055:::-;22221:4;22259:2;22248:9;22244:18;22236:26;;22308:9;22302:4;22298:20;22294:1;22283:9;22279:17;22272:47;22336:131;22462:4;22336:131;:::i;:::-;22328:139;;22055:419;;;:::o;22480:::-;22646:4;22684:2;22673:9;22669:18;22661:26;;22733:9;22727:4;22723:20;22719:1;22708:9;22704:17;22697:47;22761:131;22887:4;22761:131;:::i;:::-;22753:139;;22480:419;;;:::o;22905:::-;23071:4;23109:2;23098:9;23094:18;23086:26;;23158:9;23152:4;23148:20;23144:1;23133:9;23129:17;23122:47;23186:131;23312:4;23186:131;:::i;:::-;23178:139;;22905:419;;;:::o;23330:::-;23496:4;23534:2;23523:9;23519:18;23511:26;;23583:9;23577:4;23573:20;23569:1;23558:9;23554:17;23547:47;23611:131;23737:4;23611:131;:::i;:::-;23603:139;;23330:419;;;:::o;23755:::-;23921:4;23959:2;23948:9;23944:18;23936:26;;24008:9;24002:4;23998:20;23994:1;23983:9;23979:17;23972:47;24036:131;24162:4;24036:131;:::i;:::-;24028:139;;23755:419;;;:::o;24180:::-;24346:4;24384:2;24373:9;24369:18;24361:26;;24433:9;24427:4;24423:20;24419:1;24408:9;24404:17;24397:47;24461:131;24587:4;24461:131;:::i;:::-;24453:139;;24180:419;;;:::o;24605:::-;24771:4;24809:2;24798:9;24794:18;24786:26;;24858:9;24852:4;24848:20;24844:1;24833:9;24829:17;24822:47;24886:131;25012:4;24886:131;:::i;:::-;24878:139;;24605:419;;;:::o;25030:::-;25196:4;25234:2;25223:9;25219:18;25211:26;;25283:9;25277:4;25273:20;25269:1;25258:9;25254:17;25247:47;25311:131;25437:4;25311:131;:::i;:::-;25303:139;;25030:419;;;:::o;25455:::-;25621:4;25659:2;25648:9;25644:18;25636:26;;25708:9;25702:4;25698:20;25694:1;25683:9;25679:17;25672:47;25736:131;25862:4;25736:131;:::i;:::-;25728:139;;25455:419;;;:::o;25880:::-;26046:4;26084:2;26073:9;26069:18;26061:26;;26133:9;26127:4;26123:20;26119:1;26108:9;26104:17;26097:47;26161:131;26287:4;26161:131;:::i;:::-;26153:139;;25880:419;;;:::o;26305:::-;26471:4;26509:2;26498:9;26494:18;26486:26;;26558:9;26552:4;26548:20;26544:1;26533:9;26529:17;26522:47;26586:131;26712:4;26586:131;:::i;:::-;26578:139;;26305:419;;;:::o;26730:::-;26896:4;26934:2;26923:9;26919:18;26911:26;;26983:9;26977:4;26973:20;26969:1;26958:9;26954:17;26947:47;27011:131;27137:4;27011:131;:::i;:::-;27003:139;;26730:419;;;:::o;27155:::-;27321:4;27359:2;27348:9;27344:18;27336:26;;27408:9;27402:4;27398:20;27394:1;27383:9;27379:17;27372:47;27436:131;27562:4;27436:131;:::i;:::-;27428:139;;27155:419;;;:::o;27580:::-;27746:4;27784:2;27773:9;27769:18;27761:26;;27833:9;27827:4;27823:20;27819:1;27808:9;27804:17;27797:47;27861:131;27987:4;27861:131;:::i;:::-;27853:139;;27580:419;;;:::o;28005:::-;28171:4;28209:2;28198:9;28194:18;28186:26;;28258:9;28252:4;28248:20;28244:1;28233:9;28229:17;28222:47;28286:131;28412:4;28286:131;:::i;:::-;28278:139;;28005:419;;;:::o;28430:::-;28596:4;28634:2;28623:9;28619:18;28611:26;;28683:9;28677:4;28673:20;28669:1;28658:9;28654:17;28647:47;28711:131;28837:4;28711:131;:::i;:::-;28703:139;;28430:419;;;:::o;28855:::-;29021:4;29059:2;29048:9;29044:18;29036:26;;29108:9;29102:4;29098:20;29094:1;29083:9;29079:17;29072:47;29136:131;29262:4;29136:131;:::i;:::-;29128:139;;28855:419;;;:::o;29280:::-;29446:4;29484:2;29473:9;29469:18;29461:26;;29533:9;29527:4;29523:20;29519:1;29508:9;29504:17;29497:47;29561:131;29687:4;29561:131;:::i;:::-;29553:139;;29280:419;;;:::o;29705:::-;29871:4;29909:2;29898:9;29894:18;29886:26;;29958:9;29952:4;29948:20;29944:1;29933:9;29929:17;29922:47;29986:131;30112:4;29986:131;:::i;:::-;29978:139;;29705:419;;;:::o;30130:::-;30296:4;30334:2;30323:9;30319:18;30311:26;;30383:9;30377:4;30373:20;30369:1;30358:9;30354:17;30347:47;30411:131;30537:4;30411:131;:::i;:::-;30403:139;;30130:419;;;:::o;30555:::-;30721:4;30759:2;30748:9;30744:18;30736:26;;30808:9;30802:4;30798:20;30794:1;30783:9;30779:17;30772:47;30836:131;30962:4;30836:131;:::i;:::-;30828:139;;30555:419;;;:::o;30980:::-;31146:4;31184:2;31173:9;31169:18;31161:26;;31233:9;31227:4;31223:20;31219:1;31208:9;31204:17;31197:47;31261:131;31387:4;31261:131;:::i;:::-;31253:139;;30980:419;;;:::o;31405:::-;31571:4;31609:2;31598:9;31594:18;31586:26;;31658:9;31652:4;31648:20;31644:1;31633:9;31629:17;31622:47;31686:131;31812:4;31686:131;:::i;:::-;31678:139;;31405:419;;;:::o;31830:::-;31996:4;32034:2;32023:9;32019:18;32011:26;;32083:9;32077:4;32073:20;32069:1;32058:9;32054:17;32047:47;32111:131;32237:4;32111:131;:::i;:::-;32103:139;;31830:419;;;:::o;32255:::-;32421:4;32459:2;32448:9;32444:18;32436:26;;32508:9;32502:4;32498:20;32494:1;32483:9;32479:17;32472:47;32536:131;32662:4;32536:131;:::i;:::-;32528:139;;32255:419;;;:::o;32680:222::-;32773:4;32811:2;32800:9;32796:18;32788:26;;32824:71;32892:1;32881:9;32877:17;32868:6;32824:71;:::i;:::-;32680:222;;;;:::o;32908:129::-;32942:6;32969:20;;:::i;:::-;32959:30;;32998:33;33026:4;33018:6;32998:33;:::i;:::-;32908:129;;;:::o;33043:75::-;33076:6;33109:2;33103:9;33093:19;;33043:75;:::o;33124:307::-;33185:4;33275:18;33267:6;33264:30;33261:56;;;33297:18;;:::i;:::-;33261:56;33335:29;33357:6;33335:29;:::i;:::-;33327:37;;33419:4;33413;33409:15;33401:23;;33124:307;;;:::o;33437:308::-;33499:4;33589:18;33581:6;33578:30;33575:56;;;33611:18;;:::i;:::-;33575:56;33649:29;33671:6;33649:29;:::i;:::-;33641:37;;33733:4;33727;33723:15;33715:23;;33437:308;;;:::o;33751:98::-;33802:6;33836:5;33830:12;33820:22;;33751:98;;;:::o;33855:99::-;33907:6;33941:5;33935:12;33925:22;;33855:99;;;:::o;33960:168::-;34043:11;34077:6;34072:3;34065:19;34117:4;34112:3;34108:14;34093:29;;33960:168;;;;:::o;34134:169::-;34218:11;34252:6;34247:3;34240:19;34292:4;34287:3;34283:14;34268:29;;34134:169;;;;:::o;34309:148::-;34411:11;34448:3;34433:18;;34309:148;;;;:::o;34463:273::-;34503:3;34522:20;34540:1;34522:20;:::i;:::-;34517:25;;34556:20;34574:1;34556:20;:::i;:::-;34551:25;;34678:1;34642:34;34638:42;34635:1;34632:49;34629:75;;;34684:18;;:::i;:::-;34629:75;34728:1;34725;34721:9;34714:16;;34463:273;;;;:::o;34742:305::-;34782:3;34801:20;34819:1;34801:20;:::i;:::-;34796:25;;34835:20;34853:1;34835:20;:::i;:::-;34830:25;;34989:1;34921:66;34917:74;34914:1;34911:81;34908:107;;;34995:18;;:::i;:::-;34908:107;35039:1;35036;35032:9;35025:16;;34742:305;;;;:::o;35053:185::-;35093:1;35110:20;35128:1;35110:20;:::i;:::-;35105:25;;35144:20;35162:1;35144:20;:::i;:::-;35139:25;;35183:1;35173:35;;35188:18;;:::i;:::-;35173:35;35230:1;35227;35223:9;35218:14;;35053:185;;;;:::o;35244:348::-;35284:7;35307:20;35325:1;35307:20;:::i;:::-;35302:25;;35341:20;35359:1;35341:20;:::i;:::-;35336:25;;35529:1;35461:66;35457:74;35454:1;35451:81;35446:1;35439:9;35432:17;35428:105;35425:131;;;35536:18;;:::i;:::-;35425:131;35584:1;35581;35577:9;35566:20;;35244:348;;;;:::o;35598:191::-;35638:4;35658:20;35676:1;35658:20;:::i;:::-;35653:25;;35692:20;35710:1;35692:20;:::i;:::-;35687:25;;35731:1;35728;35725:8;35722:34;;;35736:18;;:::i;:::-;35722:34;35781:1;35778;35774:9;35766:17;;35598:191;;;;:::o;35795:::-;35835:4;35855:20;35873:1;35855:20;:::i;:::-;35850:25;;35889:20;35907:1;35889:20;:::i;:::-;35884:25;;35928:1;35925;35922:8;35919:34;;;35933:18;;:::i;:::-;35919:34;35978:1;35975;35971:9;35963:17;;35795:191;;;;:::o;35992:96::-;36029:7;36058:24;36076:5;36058:24;:::i;:::-;36047:35;;35992:96;;;:::o;36094:90::-;36128:7;36171:5;36164:13;36157:21;36146:32;;36094:90;;;:::o;36190:149::-;36226:7;36266:66;36259:5;36255:78;36244:89;;36190:149;;;:::o;36345:118::-;36382:7;36422:34;36415:5;36411:46;36400:57;;36345:118;;;:::o;36469:126::-;36506:7;36546:42;36539:5;36535:54;36524:65;;36469:126;;;:::o;36601:77::-;36638:7;36667:5;36656:16;;36601:77;;;:::o;36684:154::-;36768:6;36763:3;36758;36745:30;36830:1;36821:6;36816:3;36812:16;36805:27;36684:154;;;:::o;36844:307::-;36912:1;36922:113;36936:6;36933:1;36930:13;36922:113;;;37021:1;37016:3;37012:11;37006:18;37002:1;36997:3;36993:11;36986:39;36958:2;36955:1;36951:10;36946:15;;36922:113;;;37053:6;37050:1;37047:13;37044:101;;;37133:1;37124:6;37119:3;37115:16;37108:27;37044:101;36893:258;36844:307;;;:::o;37157:171::-;37196:3;37219:24;37237:5;37219:24;:::i;:::-;37210:33;;37265:4;37258:5;37255:15;37252:41;;;37273:18;;:::i;:::-;37252:41;37320:1;37313:5;37309:13;37302:20;;37157:171;;;:::o;37334:320::-;37378:6;37415:1;37409:4;37405:12;37395:22;;37462:1;37456:4;37452:12;37483:18;37473:81;;37539:4;37531:6;37527:17;37517:27;;37473:81;37601:2;37593:6;37590:14;37570:18;37567:38;37564:84;;;37620:18;;:::i;:::-;37564:84;37385:269;37334:320;;;:::o;37660:281::-;37743:27;37765:4;37743:27;:::i;:::-;37735:6;37731:40;37873:6;37861:10;37858:22;37837:18;37825:10;37822:34;37819:62;37816:88;;;37884:18;;:::i;:::-;37816:88;37924:10;37920:2;37913:22;37703:238;37660:281;;:::o;37947:233::-;37986:3;38009:24;38027:5;38009:24;:::i;:::-;38000:33;;38055:66;38048:5;38045:77;38042:103;;;38125:18;;:::i;:::-;38042:103;38172:1;38165:5;38161:13;38154:20;;37947:233;;;:::o;38186:176::-;38218:1;38235:20;38253:1;38235:20;:::i;:::-;38230:25;;38269:20;38287:1;38269:20;:::i;:::-;38264:25;;38308:1;38298:35;;38313:18;;:::i;:::-;38298:35;38354:1;38351;38347:9;38342:14;;38186:176;;;;:::o;38368:180::-;38416:77;38413:1;38406:88;38513:4;38510:1;38503:15;38537:4;38534:1;38527:15;38554:180;38602:77;38599:1;38592:88;38699:4;38696:1;38689:15;38723:4;38720:1;38713:15;38740:180;38788:77;38785:1;38778:88;38885:4;38882:1;38875:15;38909:4;38906:1;38899:15;38926:180;38974:77;38971:1;38964:88;39071:4;39068:1;39061:15;39095:4;39092:1;39085:15;39112:180;39160:77;39157:1;39150:88;39257:4;39254:1;39247:15;39281:4;39278:1;39271:15;39298:117;39407:1;39404;39397:12;39421:117;39530:1;39527;39520:12;39544:117;39653:1;39650;39643:12;39667:117;39776:1;39773;39766:12;39790:102;39831:6;39882:2;39878:7;39873:2;39866:5;39862:14;39858:28;39848:38;;39790:102;;;:::o;39898:221::-;40038:34;40034:1;40026:6;40022:14;40015:58;40107:4;40102:2;40094:6;40090:15;40083:29;39898:221;:::o;40125:158::-;40265:10;40261:1;40253:6;40249:14;40242:34;40125:158;:::o;40289:225::-;40429:34;40425:1;40417:6;40413:14;40406:58;40498:8;40493:2;40485:6;40481:15;40474:33;40289:225;:::o;40520:229::-;40660:34;40656:1;40648:6;40644:14;40637:58;40729:12;40724:2;40716:6;40712:15;40705:37;40520:229;:::o;40755:182::-;40895:34;40891:1;40883:6;40879:14;40872:58;40755:182;:::o;40943:222::-;41083:34;41079:1;41071:6;41067:14;41060:58;41152:5;41147:2;41139:6;41135:15;41128:30;40943:222;:::o;41171:224::-;41311:34;41307:1;41299:6;41295:14;41288:58;41380:7;41375:2;41367:6;41363:15;41356:32;41171:224;:::o;41401:182::-;41541:34;41537:1;41529:6;41525:14;41518:58;41401:182;:::o;41589:221::-;41729:34;41725:1;41717:6;41713:14;41706:58;41798:4;41793:2;41785:6;41781:15;41774:29;41589:221;:::o;41816:166::-;41956:18;41952:1;41944:6;41940:14;41933:42;41816:166;:::o;41988:244::-;42128:34;42124:1;42116:6;42112:14;42105:58;42197:27;42192:2;42184:6;42180:15;42173:52;41988:244;:::o;42238:182::-;42378:34;42374:1;42366:6;42362:14;42355:58;42238:182;:::o;42426:230::-;42566:34;42562:1;42554:6;42550:14;42543:58;42635:13;42630:2;42622:6;42618:15;42611:38;42426:230;:::o;42662:225::-;42802:34;42798:1;42790:6;42786:14;42779:58;42871:8;42866:2;42858:6;42854:15;42847:33;42662:225;:::o;42893:155::-;43033:7;43029:1;43021:6;43017:14;43010:31;42893:155;:::o;43054:182::-;43194:34;43190:1;43182:6;43178:14;43171:58;43054:182;:::o;43242:234::-;43382:34;43378:1;43370:6;43366:14;43359:58;43451:17;43446:2;43438:6;43434:15;43427:42;43242:234;:::o;43482:176::-;43622:28;43618:1;43610:6;43606:14;43599:52;43482:176;:::o;43664:237::-;43804:34;43800:1;43792:6;43788:14;43781:58;43873:20;43868:2;43860:6;43856:15;43849:45;43664:237;:::o;43907:220::-;44047:34;44043:1;44035:6;44031:14;44024:58;44116:3;44111:2;44103:6;44099:15;44092:28;43907:220;:::o;44133:221::-;44273:34;44269:1;44261:6;44257:14;44250:58;44342:4;44337:2;44329:6;44325:15;44318:29;44133:221;:::o;44360:238::-;44500:34;44496:1;44488:6;44484:14;44477:58;44569:21;44564:2;44556:6;44552:15;44545:46;44360:238;:::o;44604:179::-;44744:31;44740:1;44732:6;44728:14;44721:55;44604:179;:::o;44789:220::-;44929:34;44925:1;44917:6;44913:14;44906:58;44998:3;44993:2;44985:6;44981:15;44974:28;44789:220;:::o;45015:233::-;45155:34;45151:1;45143:6;45139:14;45132:58;45224:16;45219:2;45211:6;45207:15;45200:41;45015:233;:::o;45254:234::-;45394:34;45390:1;45382:6;45378:14;45371:58;45463:17;45458:2;45450:6;45446:15;45439:42;45254:234;:::o;45494:232::-;45634:34;45630:1;45622:6;45618:14;45611:58;45703:15;45698:2;45690:6;45686:15;45679:40;45494:232;:::o;45732:221::-;45872:34;45868:1;45860:6;45856:14;45849:58;45941:4;45936:2;45928:6;45924:15;45917:29;45732:221;:::o;45959:122::-;46032:24;46050:5;46032:24;:::i;:::-;46025:5;46022:35;46012:63;;46071:1;46068;46061:12;46012:63;45959:122;:::o;46087:116::-;46157:21;46172:5;46157:21;:::i;:::-;46150:5;46147:32;46137:60;;46193:1;46190;46183:12;46137:60;46087:116;:::o;46209:120::-;46281:23;46298:5;46281:23;:::i;:::-;46274:5;46271:34;46261:62;;46319:1;46316;46309:12;46261:62;46209:120;:::o;46335:122::-;46408:24;46426:5;46408:24;:::i;:::-;46401:5;46398:35;46388:63;;46447:1;46444;46437:12;46388:63;46335:122;:::o

Swarm Source

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