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

Token

MfersInLove (mflove)
 

Overview

Max Total Supply

2,222 mflove

Holders

224

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
39 mflove
0xd563bb51ff55eff701569b9abe6f8f188bdc25ff
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:
mfersinlove

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-02-21
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

// File: contracts/ERC721A.sol


// Creators: locationtba.eth, 2pmflow.eth

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - `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 > currentIndex - 1) {
      endIndex = currentIndex - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

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

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: contracts/mfersinlove.sol



pragma solidity ^0.8.0;





contract mfersinlove is ERC721A, Ownable {
    uint256 public NFT_PRICE = 0.0069 ether;
    uint256 public MAX_SUPPLY = 2222;
    uint256 public MAX_MINTS = 10;
    uint256 public MAX_MINTS_RESERVED = 10;
    string public projName = "MfersInLove";
    string public projSym = "mflove";

    bool public DROP_ACTIVE = false;

    string public baseURI = "https://ipfs.io/ipfs/QmevZWPCZKdXmCzJaDpV1hiW8N5h5159tQQJbK3ikk5nrF/";
    mapping(address => uint) addressToReservedMints;
    
    constructor() ERC721A(projName, projSym, 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 StaffMint(uint256 numTokens) public onlyOwner{
        _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 _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":"uint256","name":"numTokens","type":"uint256"}],"name":"StaffMint","outputs":[],"stateMutability":"nonpayable","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":[],"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":"projName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"projSym","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","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":"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"}]

60c06040526000805560006007556618838370f340006009556108ae600a55600a600b55600a600c556040518060400160405280600b81526020017f4d66657273496e4c6f7665000000000000000000000000000000000000000000815250600d90805190602001906200007592919062000411565b506040518060400160405280600681526020017f6d666c6f76650000000000000000000000000000000000000000000000000000815250600e9080519060200190620000c392919062000411565b506000600f60006101000a81548160ff02191690831515021790555060405180608001604052806044815260200162004d9e60449139601090805190602001906200011092919062000411565b503480156200011e57600080fd5b50600d80546200012e9062000564565b80601f01602080910402602001604051908101604052809291908181526020018280546200015c9062000564565b8015620001ad5780601f106200018157610100808354040283529160200191620001ad565b820191906000526020600020905b8154815290600101906020018083116200018f57829003601f168201915b5050505050600e8054620001c19062000564565b80601f0160208091040260200160405190810160405280929190818152602001828054620001ef9062000564565b8015620002405780601f10620002145761010080835404028352916020019162000240565b820191906000526020600020905b8154815290600101906020018083116200022257829003601f168201915b5050505050600b54600a546000811162000291576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002889062000531565b60405180910390fd5b60008211620002d7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002ce906200050f565b60405180910390fd5b8360019080519060200190620002ef92919062000411565b5082600290805190602001906200030892919062000411565b508160a081815250508060808181525050505050506200033d620003316200034360201b60201c565b6200034b60201b60201c565b62000667565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200041f9062000564565b90600052602060002090601f0160209004810192826200044357600085556200048f565b82601f106200045e57805160ff19168380011785556200048f565b828001600101855582156200048f579182015b828111156200048e57825182559160200191906001019062000471565b5b5090506200049e9190620004a2565b5090565b5b80821115620004bd576000816000905550600101620004a3565b5090565b6000620004d060278362000553565b9150620004dd82620005c9565b604082019050919050565b6000620004f7602e8362000553565b9150620005048262000618565b604082019050919050565b600060208201905081810360008301526200052a81620004c1565b9050919050565b600060208201905081810360008301526200054c81620004e8565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200057d57607f821691505b602082108114156200059457620005936200059a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b60805160a05161470d62000691600039600081816123c301526123ec01526000505061470d6000f3fe60806040526004361061021a5760003560e01c8063715018a611610123578063b875e2ce116100ab578063da241d061161006f578063da241d061461079e578063e03c69e8146107c9578063e985e9c5146107f4578063f2fde38b14610831578063f7cd09c71461085a5761021a565b8063b875e2ce146106b7578063b88d4fde146106e2578063c87b56dd1461070b578063cce132d114610748578063d7224ba0146107735761021a565b806395d89b41116100f257806395d89b411461060557806396f8f6dd14610630578063a0712d6814610647578063a22cb46514610663578063a7b8cd4d1461068c5761021a565b8063715018a61461057157806379c9cb7b146105885780638da5cb5b146105b157806391b7f5ed146105dc5761021a565b80633ccfd60b116101a65780635ce58726116101755780635ce58726146104785780636352211e146104a1578063676dd563146104de5780636c0360eb1461050957806370a08231146105345761021a565b80633ccfd60b146103d257806342842e0e146103e95780634f6ccce71461041257806355f804b31461044f5761021a565b806318160ddd116101ed57806318160ddd146102ed57806323b872dd146103185780632f745c591461034157806332cb6b0c1461037e5780633b4c4b25146103a95761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190613256565b610885565b60405161025391906137a6565b60405180910390f35b34801561026857600080fd5b506102716109cf565b60405161027e91906137c1565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a991906132f9565b610a61565b6040516102bb919061373f565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e69190613216565b610ae6565b005b3480156102f957600080fd5b50610302610bff565b60405161030f9190613ac3565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a9190613100565b610c08565b005b34801561034d57600080fd5b5061036860048036038101906103639190613216565b610c18565b6040516103759190613ac3565b60405180910390f35b34801561038a57600080fd5b50610393610e16565b6040516103a09190613ac3565b60405180910390f35b3480156103b557600080fd5b506103d060048036038101906103cb91906132f9565b610e1c565b005b3480156103de57600080fd5b506103e7610ea2565b005b3480156103f557600080fd5b50610410600480360381019061040b9190613100565b610f5e565b005b34801561041e57600080fd5b50610439600480360381019061043491906132f9565b610f7e565b6040516104469190613ac3565b60405180910390f35b34801561045b57600080fd5b50610476600480360381019061047191906132b0565b610fd1565b005b34801561048457600080fd5b5061049f600480360381019061049a91906132f9565b611067565b005b3480156104ad57600080fd5b506104c860048036038101906104c391906132f9565b6110f0565b6040516104d5919061373f565b60405180910390f35b3480156104ea57600080fd5b506104f3611106565b6040516105009190613ac3565b60405180910390f35b34801561051557600080fd5b5061051e61110c565b60405161052b91906137c1565b60405180910390f35b34801561054057600080fd5b5061055b60048036038101906105569190613093565b61119a565b6040516105689190613ac3565b60405180910390f35b34801561057d57600080fd5b50610586611283565b005b34801561059457600080fd5b506105af60048036038101906105aa91906132f9565b61130b565b005b3480156105bd57600080fd5b506105c6611391565b6040516105d3919061373f565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe91906132f9565b6113bb565b005b34801561061157600080fd5b5061061a611441565b60405161062791906137c1565b60405180910390f35b34801561063c57600080fd5b506106456114d3565b005b610661600480360381019061065c91906132f9565b61157b565b005b34801561066f57600080fd5b5061068a600480360381019061068591906131d6565b6116cf565b005b34801561069857600080fd5b506106a1611850565b6040516106ae9190613ac3565b60405180910390f35b3480156106c357600080fd5b506106cc611897565b6040516106d99190613ac3565b60405180910390f35b3480156106ee57600080fd5b5061070960048036038101906107049190613153565b61189d565b005b34801561071757600080fd5b50610732600480360381019061072d91906132f9565b6118f9565b60405161073f91906137c1565b60405180910390f35b34801561075457600080fd5b5061075d6119a0565b60405161076a9190613ac3565b60405180910390f35b34801561077f57600080fd5b506107886119a6565b6040516107959190613ac3565b60405180910390f35b3480156107aa57600080fd5b506107b36119ac565b6040516107c091906137c1565b60405180910390f35b3480156107d557600080fd5b506107de611a3a565b6040516107eb91906137c1565b60405180910390f35b34801561080057600080fd5b5061081b600480360381019061081691906130c0565b611ac8565b60405161082891906137a6565b60405180910390f35b34801561083d57600080fd5b5061085860048036038101906108539190613093565b611b5c565b005b34801561086657600080fd5b5061086f611c54565b60405161087c91906137a6565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061095057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109b857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109c857506109c782611c67565b5b9050919050565b6060600180546109de90613e33565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0a90613e33565b8015610a575780601f10610a2c57610100808354040283529160200191610a57565b820191906000526020600020905b815481529060010190602001808311610a3a57829003601f168201915b5050505050905090565b6000610a6c82611cd1565b610aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa290613aa3565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610af1826110f0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b59906139e3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b81611cde565b73ffffffffffffffffffffffffffffffffffffffff161480610bb05750610baf81610baa611cde565b611ac8565b5b610bef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be6906138e3565b60405180910390fd5b610bfa838383611ce6565b505050565b60008054905090565b610c13838383611d98565b505050565b6000610c238361119a565b8210610c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5b906137e3565b60405180910390fd5b6000610c6e610bff565b905060008060005b83811015610dd4576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d6857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dc05786841415610db1578195505050505050610e10565b8380610dbc90613e96565b9450505b508080610dcc90613e96565b915050610c76565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0790613a63565b60405180910390fd5b92915050565b600a5481565b610e24611cde565b73ffffffffffffffffffffffffffffffffffffffff16610e42611391565b73ffffffffffffffffffffffffffffffffffffffff1614610e98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8f90613943565b60405180910390fd5b80600a8190555050565b610eaa611cde565b73ffffffffffffffffffffffffffffffffffffffff16610ec8611391565b73ffffffffffffffffffffffffffffffffffffffff1614610f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1590613943565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610f5c57600080fd5b565b610f798383836040518060200160405280600081525061189d565b505050565b6000610f88610bff565b8210610fc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc090613863565b60405180910390fd5b819050919050565b610fd9611cde565b73ffffffffffffffffffffffffffffffffffffffff16610ff7611391565b73ffffffffffffffffffffffffffffffffffffffff161461104d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104490613943565b60405180910390fd5b8060109080519060200190611063929190612e6d565b5050565b61106f611cde565b73ffffffffffffffffffffffffffffffffffffffff1661108d611391565b73ffffffffffffffffffffffffffffffffffffffff16146110e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110da90613943565b60405180910390fd5b6110ed3382612351565b50565b60006110fb8261236f565b600001519050919050565b60095481565b6010805461111990613e33565b80601f016020809104026020016040519081016040528092919081815260200182805461114590613e33565b80156111925780601f1061116757610100808354040283529160200191611192565b820191906000526020600020905b81548152906001019060200180831161117557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561120b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120290613903565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61128b611cde565b73ffffffffffffffffffffffffffffffffffffffff166112a9611391565b73ffffffffffffffffffffffffffffffffffffffff16146112ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f690613943565b60405180910390fd5b6113096000612572565b565b611313611cde565b73ffffffffffffffffffffffffffffffffffffffff16611331611391565b73ffffffffffffffffffffffffffffffffffffffff1614611387576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137e90613943565b60405180910390fd5b80600b8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6113c3611cde565b73ffffffffffffffffffffffffffffffffffffffff166113e1611391565b73ffffffffffffffffffffffffffffffffffffffff1614611437576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142e90613943565b60405180910390fd5b8060098190555050565b60606002805461145090613e33565b80601f016020809104026020016040519081016040528092919081815260200182805461147c90613e33565b80156114c95780601f1061149e576101008083540402835291602001916114c9565b820191906000526020600020905b8154815290600101906020018083116114ac57829003601f168201915b5050505050905090565b6114db611cde565b73ffffffffffffffffffffffffffffffffffffffff166114f9611391565b73ffffffffffffffffffffffffffffffffffffffff161461154f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154690613943565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b600f60009054906101000a900460ff166115ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c1906138c3565b60405180910390fd5b6000811180156115dc5750600b548111155b61161b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611612906139c3565b60405180910390fd5b600a5481611627610bff565b6116319190613bee565b1115611672576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166990613803565b60405180910390fd5b806009546116809190613c75565b3410156116c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b9906138a3565b60405180910390fd5b6116cc3382612351565b50565b6116d7611cde565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611745576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173c90613983565b60405180910390fd5b8060066000611752611cde565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117ff611cde565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161184491906137a6565b60405180910390a35050565b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905090565b600c5481565b6118a8848484611d98565b6118b484848484612638565b6118f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ea90613a03565b60405180910390fd5b50505050565b606061190482611cd1565b611943576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193a90613963565b60405180910390fd5b600061194d6127cf565b9050600081511161196d5760405180602001604052806000815250611998565b8061197784612861565b60405160200161198892919061371b565b6040516020818303038152906040525b915050919050565b600b5481565b60075481565b600e80546119b990613e33565b80601f01602080910402602001604051908101604052809291908181526020018280546119e590613e33565b8015611a325780601f10611a0757610100808354040283529160200191611a32565b820191906000526020600020905b815481529060010190602001808311611a1557829003601f168201915b505050505081565b600d8054611a4790613e33565b80601f0160208091040260200160405190810160405280929190818152602001828054611a7390613e33565b8015611ac05780601f10611a9557610100808354040283529160200191611ac0565b820191906000526020600020905b815481529060010190602001808311611aa357829003601f168201915b505050505081565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b64611cde565b73ffffffffffffffffffffffffffffffffffffffff16611b82611391565b73ffffffffffffffffffffffffffffffffffffffff1614611bd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcf90613943565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3f90613823565b60405180910390fd5b611c5181612572565b50565b600f60009054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611da38261236f565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611dca611cde565b73ffffffffffffffffffffffffffffffffffffffff161480611e265750611def611cde565b73ffffffffffffffffffffffffffffffffffffffff16611e0e84610a61565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e425750611e418260000151611e3c611cde565b611ac8565b5b905080611e84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7b906139a3565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611ef6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eed90613923565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5d90613883565b60405180910390fd5b611f7385858560016129c2565b611f836000848460000151611ce6565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611ff19190613ccf565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166120959190613ba8565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600060018461219b9190613bee565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156122e15761221181611cd1565b156122e0576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461234986868660016129c8565b505050505050565b61236b8282604051806020016040528060008152506129ce565b5050565b612377612ef3565b61238082611cd1565b6123bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b690613843565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106124235760017f0000000000000000000000000000000000000000000000000000000000000000846124169190613d03565b6124209190613bee565b90505b60008390505b818110612531576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461251d5780935050505061256d565b50808061252990613e09565b915050612429565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256490613a83565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006126598473ffffffffffffffffffffffffffffffffffffffff16612e4a565b156127c2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612682611cde565b8786866040518563ffffffff1660e01b81526004016126a4949392919061375a565b602060405180830381600087803b1580156126be57600080fd5b505af19250505080156126ef57506040513d601f19601f820116820180604052508101906126ec9190613283565b60015b612772573d806000811461271f576040519150601f19603f3d011682016040523d82523d6000602084013e612724565b606091505b5060008151141561276a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276190613a03565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127c7565b600190505b949350505050565b6060601080546127de90613e33565b80601f016020809104026020016040519081016040528092919081815260200182805461280a90613e33565b80156128575780601f1061282c57610100808354040283529160200191612857565b820191906000526020600020905b81548152906001019060200180831161283a57829003601f168201915b5050505050905090565b606060008214156128a9576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129bd565b600082905060005b600082146128db5780806128c490613e96565b915050600a826128d49190613c44565b91506128b1565b60008167ffffffffffffffff8111156128f7576128f6613fcc565b5b6040519080825280601f01601f1916602001820160405280156129295781602001600182028036833780820191505090505b5090505b600085146129b6576001826129429190613d03565b9150600a856129519190613edf565b603061295d9190613bee565b60f81b81838151811061297357612972613f9d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129af9190613c44565b945061292d565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3b90613a43565b60405180910390fd5b612a4d81611cd1565b15612a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8490613a23565b60405180910390fd5b612a9a60008583866129c2565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612b979190613ba8565b6fffffffffffffffffffffffffffffffff168152602001858360200151612bbe9190613ba8565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612e2d57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612dcd6000888488612638565b612e0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0390613a03565b60405180910390fd5b8180612e1790613e96565b9250508080612e2590613e96565b915050612d5c565b5080600081905550612e4260008785886129c8565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612e7990613e33565b90600052602060002090601f016020900481019282612e9b5760008555612ee2565b82601f10612eb457805160ff1916838001178555612ee2565b82800160010185558215612ee2579182015b82811115612ee1578251825591602001919060010190612ec6565b5b509050612eef9190612f2d565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612f46576000816000905550600101612f2e565b5090565b6000612f5d612f5884613b03565b613ade565b905082815260208101848484011115612f7957612f78614000565b5b612f84848285613dc7565b509392505050565b6000612f9f612f9a84613b34565b613ade565b905082815260208101848484011115612fbb57612fba614000565b5b612fc6848285613dc7565b509392505050565b600081359050612fdd8161467b565b92915050565b600081359050612ff281614692565b92915050565b600081359050613007816146a9565b92915050565b60008151905061301c816146a9565b92915050565b600082601f83011261303757613036613ffb565b5b8135613047848260208601612f4a565b91505092915050565b600082601f83011261306557613064613ffb565b5b8135613075848260208601612f8c565b91505092915050565b60008135905061308d816146c0565b92915050565b6000602082840312156130a9576130a861400a565b5b60006130b784828501612fce565b91505092915050565b600080604083850312156130d7576130d661400a565b5b60006130e585828601612fce565b92505060206130f685828601612fce565b9150509250929050565b6000806000606084860312156131195761311861400a565b5b600061312786828701612fce565b935050602061313886828701612fce565b92505060406131498682870161307e565b9150509250925092565b6000806000806080858703121561316d5761316c61400a565b5b600061317b87828801612fce565b945050602061318c87828801612fce565b935050604061319d8782880161307e565b925050606085013567ffffffffffffffff8111156131be576131bd614005565b5b6131ca87828801613022565b91505092959194509250565b600080604083850312156131ed576131ec61400a565b5b60006131fb85828601612fce565b925050602061320c85828601612fe3565b9150509250929050565b6000806040838503121561322d5761322c61400a565b5b600061323b85828601612fce565b925050602061324c8582860161307e565b9150509250929050565b60006020828403121561326c5761326b61400a565b5b600061327a84828501612ff8565b91505092915050565b6000602082840312156132995761329861400a565b5b60006132a78482850161300d565b91505092915050565b6000602082840312156132c6576132c561400a565b5b600082013567ffffffffffffffff8111156132e4576132e3614005565b5b6132f084828501613050565b91505092915050565b60006020828403121561330f5761330e61400a565b5b600061331d8482850161307e565b91505092915050565b61332f81613d37565b82525050565b61333e81613d49565b82525050565b600061334f82613b65565b6133598185613b7b565b9350613369818560208601613dd6565b6133728161400f565b840191505092915050565b600061338882613b70565b6133928185613b8c565b93506133a2818560208601613dd6565b6133ab8161400f565b840191505092915050565b60006133c182613b70565b6133cb8185613b9d565b93506133db818560208601613dd6565b80840191505092915050565b60006133f4602283613b8c565b91506133ff82614020565b604082019050919050565b6000613417600883613b8c565b91506134228261406f565b602082019050919050565b600061343a602683613b8c565b915061344582614098565b604082019050919050565b600061345d602a83613b8c565b9150613468826140e7565b604082019050919050565b6000613480602383613b8c565b915061348b82614136565b604082019050919050565b60006134a3602583613b8c565b91506134ae82614185565b604082019050919050565b60006134c6602283613b8c565b91506134d1826141d4565b604082019050919050565b60006134e9601083613b8c565b91506134f482614223565b602082019050919050565b600061350c603983613b8c565b91506135178261424c565b604082019050919050565b600061352f602b83613b8c565b915061353a8261429b565b604082019050919050565b6000613552602683613b8c565b915061355d826142ea565b604082019050919050565b6000613575602083613b8c565b915061358082614339565b602082019050919050565b6000613598602f83613b8c565b91506135a382614362565b604082019050919050565b60006135bb601a83613b8c565b91506135c6826143b1565b602082019050919050565b60006135de603283613b8c565b91506135e9826143da565b604082019050919050565b6000613601602183613b8c565b915061360c82614429565b604082019050919050565b6000613624602283613b8c565b915061362f82614478565b604082019050919050565b6000613647603383613b8c565b9150613652826144c7565b604082019050919050565b600061366a601d83613b8c565b915061367582614516565b602082019050919050565b600061368d602183613b8c565b91506136988261453f565b604082019050919050565b60006136b0602e83613b8c565b91506136bb8261458e565b604082019050919050565b60006136d3602f83613b8c565b91506136de826145dd565b604082019050919050565b60006136f6602d83613b8c565b91506137018261462c565b604082019050919050565b61371581613dbd565b82525050565b600061372782856133b6565b915061373382846133b6565b91508190509392505050565b60006020820190506137546000830184613326565b92915050565b600060808201905061376f6000830187613326565b61377c6020830186613326565b613789604083018561370c565b818103606083015261379b8184613344565b905095945050505050565b60006020820190506137bb6000830184613335565b92915050565b600060208201905081810360008301526137db818461337d565b905092915050565b600060208201905081810360008301526137fc816133e7565b9050919050565b6000602082019050818103600083015261381c8161340a565b9050919050565b6000602082019050818103600083015261383c8161342d565b9050919050565b6000602082019050818103600083015261385c81613450565b9050919050565b6000602082019050818103600083015261387c81613473565b9050919050565b6000602082019050818103600083015261389c81613496565b9050919050565b600060208201905081810360008301526138bc816134b9565b9050919050565b600060208201905081810360008301526138dc816134dc565b9050919050565b600060208201905081810360008301526138fc816134ff565b9050919050565b6000602082019050818103600083015261391c81613522565b9050919050565b6000602082019050818103600083015261393c81613545565b9050919050565b6000602082019050818103600083015261395c81613568565b9050919050565b6000602082019050818103600083015261397c8161358b565b9050919050565b6000602082019050818103600083015261399c816135ae565b9050919050565b600060208201905081810360008301526139bc816135d1565b9050919050565b600060208201905081810360008301526139dc816135f4565b9050919050565b600060208201905081810360008301526139fc81613617565b9050919050565b60006020820190508181036000830152613a1c8161363a565b9050919050565b60006020820190508181036000830152613a3c8161365d565b9050919050565b60006020820190508181036000830152613a5c81613680565b9050919050565b60006020820190508181036000830152613a7c816136a3565b9050919050565b60006020820190508181036000830152613a9c816136c6565b9050919050565b60006020820190508181036000830152613abc816136e9565b9050919050565b6000602082019050613ad8600083018461370c565b92915050565b6000613ae8613af9565b9050613af48282613e65565b919050565b6000604051905090565b600067ffffffffffffffff821115613b1e57613b1d613fcc565b5b613b278261400f565b9050602081019050919050565b600067ffffffffffffffff821115613b4f57613b4e613fcc565b5b613b588261400f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613bb382613d81565b9150613bbe83613d81565b9250826fffffffffffffffffffffffffffffffff03821115613be357613be2613f10565b5b828201905092915050565b6000613bf982613dbd565b9150613c0483613dbd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c3957613c38613f10565b5b828201905092915050565b6000613c4f82613dbd565b9150613c5a83613dbd565b925082613c6a57613c69613f3f565b5b828204905092915050565b6000613c8082613dbd565b9150613c8b83613dbd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613cc457613cc3613f10565b5b828202905092915050565b6000613cda82613d81565b9150613ce583613d81565b925082821015613cf857613cf7613f10565b5b828203905092915050565b6000613d0e82613dbd565b9150613d1983613dbd565b925082821015613d2c57613d2b613f10565b5b828203905092915050565b6000613d4282613d9d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613df4578082015181840152602081019050613dd9565b83811115613e03576000848401525b50505050565b6000613e1482613dbd565b91506000821415613e2857613e27613f10565b5b600182039050919050565b60006002820490506001821680613e4b57607f821691505b60208210811415613e5f57613e5e613f6e565b5b50919050565b613e6e8261400f565b810181811067ffffffffffffffff82111715613e8d57613e8c613fcc565b5b80604052505050565b6000613ea182613dbd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ed457613ed3613f10565b5b600182019050919050565b6000613eea82613dbd565b9150613ef583613dbd565b925082613f0557613f04613f3f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f536f6c64204f7574000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f416d6f756e74206f662065746865722073656e74206973206e6f7420656e6f7560008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206e6f74207374617274656400000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f4d757374206d696e74206265747765656e203120616e6420313020746f6b656e60008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b61468481613d37565b811461468f57600080fd5b50565b61469b81613d49565b81146146a657600080fd5b50565b6146b281613d55565b81146146bd57600080fd5b50565b6146c981613dbd565b81146146d457600080fd5b5056fea26469706673582212200db4295008b6d519c9b82d535151926e28af4ae18f5fc2c2981a32e070147d0364736f6c6343000807003368747470733a2f2f697066732e696f2f697066732f516d65765a5750435a4b64586d437a4a6144705631686957384e3568353135397451514a624b33696b6b356e72462f

Deployed Bytecode

0x60806040526004361061021a5760003560e01c8063715018a611610123578063b875e2ce116100ab578063da241d061161006f578063da241d061461079e578063e03c69e8146107c9578063e985e9c5146107f4578063f2fde38b14610831578063f7cd09c71461085a5761021a565b8063b875e2ce146106b7578063b88d4fde146106e2578063c87b56dd1461070b578063cce132d114610748578063d7224ba0146107735761021a565b806395d89b41116100f257806395d89b411461060557806396f8f6dd14610630578063a0712d6814610647578063a22cb46514610663578063a7b8cd4d1461068c5761021a565b8063715018a61461057157806379c9cb7b146105885780638da5cb5b146105b157806391b7f5ed146105dc5761021a565b80633ccfd60b116101a65780635ce58726116101755780635ce58726146104785780636352211e146104a1578063676dd563146104de5780636c0360eb1461050957806370a08231146105345761021a565b80633ccfd60b146103d257806342842e0e146103e95780634f6ccce71461041257806355f804b31461044f5761021a565b806318160ddd116101ed57806318160ddd146102ed57806323b872dd146103185780632f745c591461034157806332cb6b0c1461037e5780633b4c4b25146103a95761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190613256565b610885565b60405161025391906137a6565b60405180910390f35b34801561026857600080fd5b506102716109cf565b60405161027e91906137c1565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a991906132f9565b610a61565b6040516102bb919061373f565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e69190613216565b610ae6565b005b3480156102f957600080fd5b50610302610bff565b60405161030f9190613ac3565b60405180910390f35b34801561032457600080fd5b5061033f600480360381019061033a9190613100565b610c08565b005b34801561034d57600080fd5b5061036860048036038101906103639190613216565b610c18565b6040516103759190613ac3565b60405180910390f35b34801561038a57600080fd5b50610393610e16565b6040516103a09190613ac3565b60405180910390f35b3480156103b557600080fd5b506103d060048036038101906103cb91906132f9565b610e1c565b005b3480156103de57600080fd5b506103e7610ea2565b005b3480156103f557600080fd5b50610410600480360381019061040b9190613100565b610f5e565b005b34801561041e57600080fd5b50610439600480360381019061043491906132f9565b610f7e565b6040516104469190613ac3565b60405180910390f35b34801561045b57600080fd5b50610476600480360381019061047191906132b0565b610fd1565b005b34801561048457600080fd5b5061049f600480360381019061049a91906132f9565b611067565b005b3480156104ad57600080fd5b506104c860048036038101906104c391906132f9565b6110f0565b6040516104d5919061373f565b60405180910390f35b3480156104ea57600080fd5b506104f3611106565b6040516105009190613ac3565b60405180910390f35b34801561051557600080fd5b5061051e61110c565b60405161052b91906137c1565b60405180910390f35b34801561054057600080fd5b5061055b60048036038101906105569190613093565b61119a565b6040516105689190613ac3565b60405180910390f35b34801561057d57600080fd5b50610586611283565b005b34801561059457600080fd5b506105af60048036038101906105aa91906132f9565b61130b565b005b3480156105bd57600080fd5b506105c6611391565b6040516105d3919061373f565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe91906132f9565b6113bb565b005b34801561061157600080fd5b5061061a611441565b60405161062791906137c1565b60405180910390f35b34801561063c57600080fd5b506106456114d3565b005b610661600480360381019061065c91906132f9565b61157b565b005b34801561066f57600080fd5b5061068a600480360381019061068591906131d6565b6116cf565b005b34801561069857600080fd5b506106a1611850565b6040516106ae9190613ac3565b60405180910390f35b3480156106c357600080fd5b506106cc611897565b6040516106d99190613ac3565b60405180910390f35b3480156106ee57600080fd5b5061070960048036038101906107049190613153565b61189d565b005b34801561071757600080fd5b50610732600480360381019061072d91906132f9565b6118f9565b60405161073f91906137c1565b60405180910390f35b34801561075457600080fd5b5061075d6119a0565b60405161076a9190613ac3565b60405180910390f35b34801561077f57600080fd5b506107886119a6565b6040516107959190613ac3565b60405180910390f35b3480156107aa57600080fd5b506107b36119ac565b6040516107c091906137c1565b60405180910390f35b3480156107d557600080fd5b506107de611a3a565b6040516107eb91906137c1565b60405180910390f35b34801561080057600080fd5b5061081b600480360381019061081691906130c0565b611ac8565b60405161082891906137a6565b60405180910390f35b34801561083d57600080fd5b5061085860048036038101906108539190613093565b611b5c565b005b34801561086657600080fd5b5061086f611c54565b60405161087c91906137a6565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061095057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109b857507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109c857506109c782611c67565b5b9050919050565b6060600180546109de90613e33565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0a90613e33565b8015610a575780601f10610a2c57610100808354040283529160200191610a57565b820191906000526020600020905b815481529060010190602001808311610a3a57829003601f168201915b5050505050905090565b6000610a6c82611cd1565b610aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa290613aa3565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610af1826110f0565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b59906139e3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b81611cde565b73ffffffffffffffffffffffffffffffffffffffff161480610bb05750610baf81610baa611cde565b611ac8565b5b610bef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be6906138e3565b60405180910390fd5b610bfa838383611ce6565b505050565b60008054905090565b610c13838383611d98565b505050565b6000610c238361119a565b8210610c64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5b906137e3565b60405180910390fd5b6000610c6e610bff565b905060008060005b83811015610dd4576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d6857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dc05786841415610db1578195505050505050610e10565b8380610dbc90613e96565b9450505b508080610dcc90613e96565b915050610c76565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0790613a63565b60405180910390fd5b92915050565b600a5481565b610e24611cde565b73ffffffffffffffffffffffffffffffffffffffff16610e42611391565b73ffffffffffffffffffffffffffffffffffffffff1614610e98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8f90613943565b60405180910390fd5b80600a8190555050565b610eaa611cde565b73ffffffffffffffffffffffffffffffffffffffff16610ec8611391565b73ffffffffffffffffffffffffffffffffffffffff1614610f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1590613943565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610f5c57600080fd5b565b610f798383836040518060200160405280600081525061189d565b505050565b6000610f88610bff565b8210610fc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc090613863565b60405180910390fd5b819050919050565b610fd9611cde565b73ffffffffffffffffffffffffffffffffffffffff16610ff7611391565b73ffffffffffffffffffffffffffffffffffffffff161461104d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104490613943565b60405180910390fd5b8060109080519060200190611063929190612e6d565b5050565b61106f611cde565b73ffffffffffffffffffffffffffffffffffffffff1661108d611391565b73ffffffffffffffffffffffffffffffffffffffff16146110e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110da90613943565b60405180910390fd5b6110ed3382612351565b50565b60006110fb8261236f565b600001519050919050565b60095481565b6010805461111990613e33565b80601f016020809104026020016040519081016040528092919081815260200182805461114590613e33565b80156111925780601f1061116757610100808354040283529160200191611192565b820191906000526020600020905b81548152906001019060200180831161117557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561120b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120290613903565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61128b611cde565b73ffffffffffffffffffffffffffffffffffffffff166112a9611391565b73ffffffffffffffffffffffffffffffffffffffff16146112ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f690613943565b60405180910390fd5b6113096000612572565b565b611313611cde565b73ffffffffffffffffffffffffffffffffffffffff16611331611391565b73ffffffffffffffffffffffffffffffffffffffff1614611387576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137e90613943565b60405180910390fd5b80600b8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6113c3611cde565b73ffffffffffffffffffffffffffffffffffffffff166113e1611391565b73ffffffffffffffffffffffffffffffffffffffff1614611437576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142e90613943565b60405180910390fd5b8060098190555050565b60606002805461145090613e33565b80601f016020809104026020016040519081016040528092919081815260200182805461147c90613e33565b80156114c95780601f1061149e576101008083540402835291602001916114c9565b820191906000526020600020905b8154815290600101906020018083116114ac57829003601f168201915b5050505050905090565b6114db611cde565b73ffffffffffffffffffffffffffffffffffffffff166114f9611391565b73ffffffffffffffffffffffffffffffffffffffff161461154f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154690613943565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b600f60009054906101000a900460ff166115ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c1906138c3565b60405180910390fd5b6000811180156115dc5750600b548111155b61161b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611612906139c3565b60405180910390fd5b600a5481611627610bff565b6116319190613bee565b1115611672576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166990613803565b60405180910390fd5b806009546116809190613c75565b3410156116c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b9906138a3565b60405180910390fd5b6116cc3382612351565b50565b6116d7611cde565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611745576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173c90613983565b60405180910390fd5b8060066000611752611cde565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117ff611cde565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161184491906137a6565b60405180910390a35050565b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905090565b600c5481565b6118a8848484611d98565b6118b484848484612638565b6118f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ea90613a03565b60405180910390fd5b50505050565b606061190482611cd1565b611943576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193a90613963565b60405180910390fd5b600061194d6127cf565b9050600081511161196d5760405180602001604052806000815250611998565b8061197784612861565b60405160200161198892919061371b565b6040516020818303038152906040525b915050919050565b600b5481565b60075481565b600e80546119b990613e33565b80601f01602080910402602001604051908101604052809291908181526020018280546119e590613e33565b8015611a325780601f10611a0757610100808354040283529160200191611a32565b820191906000526020600020905b815481529060010190602001808311611a1557829003601f168201915b505050505081565b600d8054611a4790613e33565b80601f0160208091040260200160405190810160405280929190818152602001828054611a7390613e33565b8015611ac05780601f10611a9557610100808354040283529160200191611ac0565b820191906000526020600020905b815481529060010190602001808311611aa357829003601f168201915b505050505081565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b64611cde565b73ffffffffffffffffffffffffffffffffffffffff16611b82611391565b73ffffffffffffffffffffffffffffffffffffffff1614611bd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcf90613943565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3f90613823565b60405180910390fd5b611c5181612572565b50565b600f60009054906101000a900460ff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611da38261236f565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611dca611cde565b73ffffffffffffffffffffffffffffffffffffffff161480611e265750611def611cde565b73ffffffffffffffffffffffffffffffffffffffff16611e0e84610a61565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e425750611e418260000151611e3c611cde565b611ac8565b5b905080611e84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7b906139a3565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611ef6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eed90613923565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5d90613883565b60405180910390fd5b611f7385858560016129c2565b611f836000848460000151611ce6565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611ff19190613ccf565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166120959190613ba8565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600060018461219b9190613bee565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156122e15761221181611cd1565b156122e0576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461234986868660016129c8565b505050505050565b61236b8282604051806020016040528060008152506129ce565b5050565b612377612ef3565b61238082611cd1565b6123bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b690613843565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000a83106124235760017f000000000000000000000000000000000000000000000000000000000000000a846124169190613d03565b6124209190613bee565b90505b60008390505b818110612531576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461251d5780935050505061256d565b50808061252990613e09565b915050612429565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256490613a83565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006126598473ffffffffffffffffffffffffffffffffffffffff16612e4a565b156127c2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612682611cde565b8786866040518563ffffffff1660e01b81526004016126a4949392919061375a565b602060405180830381600087803b1580156126be57600080fd5b505af19250505080156126ef57506040513d601f19601f820116820180604052508101906126ec9190613283565b60015b612772573d806000811461271f576040519150601f19603f3d011682016040523d82523d6000602084013e612724565b606091505b5060008151141561276a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276190613a03565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127c7565b600190505b949350505050565b6060601080546127de90613e33565b80601f016020809104026020016040519081016040528092919081815260200182805461280a90613e33565b80156128575780601f1061282c57610100808354040283529160200191612857565b820191906000526020600020905b81548152906001019060200180831161283a57829003601f168201915b5050505050905090565b606060008214156128a9576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506129bd565b600082905060005b600082146128db5780806128c490613e96565b915050600a826128d49190613c44565b91506128b1565b60008167ffffffffffffffff8111156128f7576128f6613fcc565b5b6040519080825280601f01601f1916602001820160405280156129295781602001600182028036833780820191505090505b5090505b600085146129b6576001826129429190613d03565b9150600a856129519190613edf565b603061295d9190613bee565b60f81b81838151811061297357612972613f9d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129af9190613c44565b945061292d565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3b90613a43565b60405180910390fd5b612a4d81611cd1565b15612a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a8490613a23565b60405180910390fd5b612a9a60008583866129c2565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612b979190613ba8565b6fffffffffffffffffffffffffffffffff168152602001858360200151612bbe9190613ba8565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015612e2d57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612dcd6000888488612638565b612e0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e0390613a03565b60405180910390fd5b8180612e1790613e96565b9250508080612e2590613e96565b915050612d5c565b5080600081905550612e4260008785886129c8565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612e7990613e33565b90600052602060002090601f016020900481019282612e9b5760008555612ee2565b82601f10612eb457805160ff1916838001178555612ee2565b82800160010185558215612ee2579182015b82811115612ee1578251825591602001919060010190612ec6565b5b509050612eef9190612f2d565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612f46576000816000905550600101612f2e565b5090565b6000612f5d612f5884613b03565b613ade565b905082815260208101848484011115612f7957612f78614000565b5b612f84848285613dc7565b509392505050565b6000612f9f612f9a84613b34565b613ade565b905082815260208101848484011115612fbb57612fba614000565b5b612fc6848285613dc7565b509392505050565b600081359050612fdd8161467b565b92915050565b600081359050612ff281614692565b92915050565b600081359050613007816146a9565b92915050565b60008151905061301c816146a9565b92915050565b600082601f83011261303757613036613ffb565b5b8135613047848260208601612f4a565b91505092915050565b600082601f83011261306557613064613ffb565b5b8135613075848260208601612f8c565b91505092915050565b60008135905061308d816146c0565b92915050565b6000602082840312156130a9576130a861400a565b5b60006130b784828501612fce565b91505092915050565b600080604083850312156130d7576130d661400a565b5b60006130e585828601612fce565b92505060206130f685828601612fce565b9150509250929050565b6000806000606084860312156131195761311861400a565b5b600061312786828701612fce565b935050602061313886828701612fce565b92505060406131498682870161307e565b9150509250925092565b6000806000806080858703121561316d5761316c61400a565b5b600061317b87828801612fce565b945050602061318c87828801612fce565b935050604061319d8782880161307e565b925050606085013567ffffffffffffffff8111156131be576131bd614005565b5b6131ca87828801613022565b91505092959194509250565b600080604083850312156131ed576131ec61400a565b5b60006131fb85828601612fce565b925050602061320c85828601612fe3565b9150509250929050565b6000806040838503121561322d5761322c61400a565b5b600061323b85828601612fce565b925050602061324c8582860161307e565b9150509250929050565b60006020828403121561326c5761326b61400a565b5b600061327a84828501612ff8565b91505092915050565b6000602082840312156132995761329861400a565b5b60006132a78482850161300d565b91505092915050565b6000602082840312156132c6576132c561400a565b5b600082013567ffffffffffffffff8111156132e4576132e3614005565b5b6132f084828501613050565b91505092915050565b60006020828403121561330f5761330e61400a565b5b600061331d8482850161307e565b91505092915050565b61332f81613d37565b82525050565b61333e81613d49565b82525050565b600061334f82613b65565b6133598185613b7b565b9350613369818560208601613dd6565b6133728161400f565b840191505092915050565b600061338882613b70565b6133928185613b8c565b93506133a2818560208601613dd6565b6133ab8161400f565b840191505092915050565b60006133c182613b70565b6133cb8185613b9d565b93506133db818560208601613dd6565b80840191505092915050565b60006133f4602283613b8c565b91506133ff82614020565b604082019050919050565b6000613417600883613b8c565b91506134228261406f565b602082019050919050565b600061343a602683613b8c565b915061344582614098565b604082019050919050565b600061345d602a83613b8c565b9150613468826140e7565b604082019050919050565b6000613480602383613b8c565b915061348b82614136565b604082019050919050565b60006134a3602583613b8c565b91506134ae82614185565b604082019050919050565b60006134c6602283613b8c565b91506134d1826141d4565b604082019050919050565b60006134e9601083613b8c565b91506134f482614223565b602082019050919050565b600061350c603983613b8c565b91506135178261424c565b604082019050919050565b600061352f602b83613b8c565b915061353a8261429b565b604082019050919050565b6000613552602683613b8c565b915061355d826142ea565b604082019050919050565b6000613575602083613b8c565b915061358082614339565b602082019050919050565b6000613598602f83613b8c565b91506135a382614362565b604082019050919050565b60006135bb601a83613b8c565b91506135c6826143b1565b602082019050919050565b60006135de603283613b8c565b91506135e9826143da565b604082019050919050565b6000613601602183613b8c565b915061360c82614429565b604082019050919050565b6000613624602283613b8c565b915061362f82614478565b604082019050919050565b6000613647603383613b8c565b9150613652826144c7565b604082019050919050565b600061366a601d83613b8c565b915061367582614516565b602082019050919050565b600061368d602183613b8c565b91506136988261453f565b604082019050919050565b60006136b0602e83613b8c565b91506136bb8261458e565b604082019050919050565b60006136d3602f83613b8c565b91506136de826145dd565b604082019050919050565b60006136f6602d83613b8c565b91506137018261462c565b604082019050919050565b61371581613dbd565b82525050565b600061372782856133b6565b915061373382846133b6565b91508190509392505050565b60006020820190506137546000830184613326565b92915050565b600060808201905061376f6000830187613326565b61377c6020830186613326565b613789604083018561370c565b818103606083015261379b8184613344565b905095945050505050565b60006020820190506137bb6000830184613335565b92915050565b600060208201905081810360008301526137db818461337d565b905092915050565b600060208201905081810360008301526137fc816133e7565b9050919050565b6000602082019050818103600083015261381c8161340a565b9050919050565b6000602082019050818103600083015261383c8161342d565b9050919050565b6000602082019050818103600083015261385c81613450565b9050919050565b6000602082019050818103600083015261387c81613473565b9050919050565b6000602082019050818103600083015261389c81613496565b9050919050565b600060208201905081810360008301526138bc816134b9565b9050919050565b600060208201905081810360008301526138dc816134dc565b9050919050565b600060208201905081810360008301526138fc816134ff565b9050919050565b6000602082019050818103600083015261391c81613522565b9050919050565b6000602082019050818103600083015261393c81613545565b9050919050565b6000602082019050818103600083015261395c81613568565b9050919050565b6000602082019050818103600083015261397c8161358b565b9050919050565b6000602082019050818103600083015261399c816135ae565b9050919050565b600060208201905081810360008301526139bc816135d1565b9050919050565b600060208201905081810360008301526139dc816135f4565b9050919050565b600060208201905081810360008301526139fc81613617565b9050919050565b60006020820190508181036000830152613a1c8161363a565b9050919050565b60006020820190508181036000830152613a3c8161365d565b9050919050565b60006020820190508181036000830152613a5c81613680565b9050919050565b60006020820190508181036000830152613a7c816136a3565b9050919050565b60006020820190508181036000830152613a9c816136c6565b9050919050565b60006020820190508181036000830152613abc816136e9565b9050919050565b6000602082019050613ad8600083018461370c565b92915050565b6000613ae8613af9565b9050613af48282613e65565b919050565b6000604051905090565b600067ffffffffffffffff821115613b1e57613b1d613fcc565b5b613b278261400f565b9050602081019050919050565b600067ffffffffffffffff821115613b4f57613b4e613fcc565b5b613b588261400f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613bb382613d81565b9150613bbe83613d81565b9250826fffffffffffffffffffffffffffffffff03821115613be357613be2613f10565b5b828201905092915050565b6000613bf982613dbd565b9150613c0483613dbd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c3957613c38613f10565b5b828201905092915050565b6000613c4f82613dbd565b9150613c5a83613dbd565b925082613c6a57613c69613f3f565b5b828204905092915050565b6000613c8082613dbd565b9150613c8b83613dbd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613cc457613cc3613f10565b5b828202905092915050565b6000613cda82613d81565b9150613ce583613d81565b925082821015613cf857613cf7613f10565b5b828203905092915050565b6000613d0e82613dbd565b9150613d1983613dbd565b925082821015613d2c57613d2b613f10565b5b828203905092915050565b6000613d4282613d9d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613df4578082015181840152602081019050613dd9565b83811115613e03576000848401525b50505050565b6000613e1482613dbd565b91506000821415613e2857613e27613f10565b5b600182039050919050565b60006002820490506001821680613e4b57607f821691505b60208210811415613e5f57613e5e613f6e565b5b50919050565b613e6e8261400f565b810181811067ffffffffffffffff82111715613e8d57613e8c613fcc565b5b80604052505050565b6000613ea182613dbd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613ed457613ed3613f10565b5b600182019050919050565b6000613eea82613dbd565b9150613ef583613dbd565b925082613f0557613f04613f3f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f536f6c64204f7574000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f416d6f756e74206f662065746865722073656e74206973206e6f7420656e6f7560008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b7f53616c65206e6f74207374617274656400000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f4d757374206d696e74206265747765656e203120616e6420313020746f6b656e60008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b61468481613d37565b811461468f57600080fd5b50565b61469b81613d49565b81146146a657600080fd5b50565b6146b281613d55565b81146146bd57600080fd5b50565b6146c981613dbd565b81146146d457600080fd5b5056fea26469706673582212200db4295008b6d519c9b82d535151926e28af4ae18f5fc2c2981a32e070147d0364736f6c63430008070033

Deployed Bytecode Sourcemap

42461:2052:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27636:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29362:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30887:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30450:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26200:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31737:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26828:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42555:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44046:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44398:112;;;;;;;;;;;;;:::i;:::-;;31942:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26363:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43737:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43529:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29185:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42509:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42801:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28062:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41567:103;;;;;;;;;;;;;:::i;:::-;;43947:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40916:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43847:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29517:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43642:87;;;;;;;;;;;;;:::i;:::-;;43036:485;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31155:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44270:120;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42630:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32162:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29678:394;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42594:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36495:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42720:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42675:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31492:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41825:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42761:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27636:370;27763:4;27808:25;27793:40;;;:11;:40;;;;:99;;;;27859:33;27844:48;;;:11;:48;;;;27793:99;:160;;;;27918:35;27903:50;;;:11;:50;;;;27793:160;:207;;;;27964:36;27988:11;27964:23;:36::i;:::-;27793:207;27779:221;;27636:370;;;:::o;29362:94::-;29416:13;29445:5;29438:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29362:94;:::o;30887:204::-;30955:7;30979:16;30987:7;30979;:16::i;:::-;30971:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;31061:15;:24;31077:7;31061:24;;;;;;;;;;;;;;;;;;;;;31054:31;;30887:204;;;:::o;30450:379::-;30519:13;30535:24;30551:7;30535:15;:24::i;:::-;30519:40;;30580:5;30574:11;;:2;:11;;;;30566:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;30665:5;30649:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;30674:37;30691:5;30698:12;:10;:12::i;:::-;30674:16;:37::i;:::-;30649:62;30633:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;30795:28;30804:2;30808:7;30817:5;30795:8;:28::i;:::-;30512:317;30450:379;;:::o;26200:94::-;26253:7;26276:12;;26269:19;;26200:94;:::o;31737:142::-;31845:28;31855:4;31861:2;31865:7;31845:9;:28::i;:::-;31737:142;;;:::o;26828:744::-;26937:7;26972:16;26982:5;26972:9;:16::i;:::-;26964:5;:24;26956:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;27034:22;27059:13;:11;:13::i;:::-;27034:38;;27079:19;27109:25;27159:9;27154:350;27178:14;27174:1;:18;27154:350;;;27208:31;27242:11;:14;27254:1;27242:14;;;;;;;;;;;27208:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27295:1;27269:28;;:9;:14;;;:28;;;27265:89;;27330:9;:14;;;27310:34;;27265:89;27387:5;27366:26;;:17;:26;;;27362:135;;;27424:5;27409:11;:20;27405:59;;;27451:1;27444:8;;;;;;;;;27405:59;27474:13;;;;;:::i;:::-;;;;27362:135;27199:305;27194:3;;;;;:::i;:::-;;;;27154:350;;;;27510:56;;;;;;;;;;:::i;:::-;;;;;;;;26828:744;;;;;:::o;42555:32::-;;;;:::o;44046:96::-;41147:12;:10;:12::i;:::-;41136:23;;:7;:5;:7::i;:::-;:23;;;41128:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44125:9:::1;44112:10;:22;;;;44046:96:::0;:::o;44398:112::-;41147:12;:10;:12::i;:::-;41136:23;;:7;:5;:7::i;:::-;:23;;;41128:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44462:10:::1;44454:24;;:47;44479:21;44454:47;;;;;;;;;;;;;;;;;;;;;;;44446:56;;;::::0;::::1;;44398:112::o:0;31942:157::-;32054:39;32071:4;32077:2;32081:7;32054:39;;;;;;;;;;;;:16;:39::i;:::-;31942:157;;;:::o;26363:177::-;26430:7;26462:13;:11;:13::i;:::-;26454:5;:21;26446:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;26529:5;26522:12;;26363:177;;;:::o;43737:102::-;41147:12;:10;:12::i;:::-;41136:23;;:7;:5;:7::i;:::-;:23;;;41128:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43821:10:::1;43811:7;:20;;;;;;;;;;;;:::i;:::-;;43737:102:::0;:::o;43529:105::-;41147:12;:10;:12::i;:::-;41136:23;;:7;:5;:7::i;:::-;:23;;;41128:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43594:32:::1;43604:10;43616:9;43594;:32::i;:::-;43529:105:::0;:::o;29185:118::-;29249:7;29272:20;29284:7;29272:11;:20::i;:::-;:25;;;29265:32;;29185:118;;;:::o;42509:39::-;;;;:::o;42801:94::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28062:211::-;28126:7;28167:1;28150:19;;:5;:19;;;;28142:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;28239:12;:19;28252:5;28239:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28231:36;;28224:43;;28062:211;;;:::o;41567:103::-;41147:12;:10;:12::i;:::-;41136:23;;:7;:5;:7::i;:::-;:23;;;41128:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41632:30:::1;41659:1;41632:18;:30::i;:::-;41567:103::o:0;43947:91::-;41147:12;:10;:12::i;:::-;41136:23;;:7;:5;:7::i;:::-;:23;;;41128:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44024:6:::1;44012:9;:18;;;;43947:91:::0;:::o;40916:87::-;40962:7;40989:6;;;;;;;;;;;40982:13;;40916:87;:::o;43847:92::-;41147:12;:10;:12::i;:::-;41136:23;;:7;:5;:7::i;:::-;:23;;;41128:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43923:8:::1;43911:9;:20;;;;43847:92:::0;:::o;29517:98::-;29573:13;29602:7;29595:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29517:98;:::o;43642:87::-;41147:12;:10;:12::i;:::-;41136:23;;:7;:5;:7::i;:::-;:23;;;41128:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43710:11:::1;;;;;;;;;;;43709:12;43695:11;;:26;;;;;;;;;;;;;;;;;;43642:87::o:0;43036:485::-;43103:11;;;;;;;;;;;43095:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;43180:1;43168:9;:13;:39;;;;;43198:9;;43185;:22;;43168:39;43146:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;43316:10;;43303:9;43287:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:39;;43279:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;43397:9;43385;;:21;;;;:::i;:::-;43372:9;:34;;43350:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;43481:32;43491:10;43503:9;43481;:32::i;:::-;43036:485;:::o;31155:274::-;31258:12;:10;:12::i;:::-;31246:24;;:8;:24;;;;31238:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;31355:8;31310:18;:32;31329:12;:10;:12::i;:::-;31310:32;;;;;;;;;;;;;;;:42;31343:8;31310:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;31404:8;31375:48;;31390:12;:10;:12::i;:::-;31375:48;;;31414:8;31375:48;;;;;;:::i;:::-;;;;;;;;31155:274;;:::o;44270:120::-;44321:7;44348:22;:34;44371:10;44348:34;;;;;;;;;;;;;;;;44341:41;;44270:120;:::o;42630:38::-;;;;:::o;32162:311::-;32299:28;32309:4;32315:2;32319:7;32299:9;:28::i;:::-;32350:48;32373:4;32379:2;32383:7;32392:5;32350:22;:48::i;:::-;32334:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;32162:311;;;;:::o;29678:394::-;29776:13;29817:16;29825:7;29817;:16::i;:::-;29801:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;29907:21;29931:10;:8;:10::i;:::-;29907:34;;29986:1;29968:7;29962:21;:25;:104;;;;;;;;;;;;;;;;;30023:7;30032:18;:7;:16;:18::i;:::-;30006:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;29962:104;29948:118;;;29678:394;;;:::o;42594:29::-;;;;:::o;36495:43::-;;;;:::o;42720:32::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42675:38::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31492:186::-;31614:4;31637:18;:25;31656:5;31637:25;;;;;;;;;;;;;;;:35;31663:8;31637:35;;;;;;;;;;;;;;;;;;;;;;;;;31630:42;;31492:186;;;;:::o;41825:201::-;41147:12;:10;:12::i;:::-;41136:23;;:7;:5;:7::i;:::-;:23;;;41128:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41934:1:::1;41914:22;;:8;:22;;;;41906:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;41990:28;42009:8;41990:18;:28::i;:::-;41825:201:::0;:::o;42761:31::-;;;;;;;;;;;;;:::o;13440:157::-;13525:4;13564:25;13549:40;;;:11;:40;;;;13542:47;;13440:157;;;:::o;32712:105::-;32769:4;32799:12;;32789:7;:22;32782:29;;32712:105;;;:::o;23797:98::-;23850:7;23877:10;23870:17;;23797:98;:::o;36317:172::-;36441:2;36414:15;:24;36430:7;36414:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36475:7;36471:2;36455:28;;36464:5;36455:28;;;;;;;;;;;;36317:172;;;:::o;34682:1529::-;34779:35;34817:20;34829:7;34817:11;:20::i;:::-;34779:58;;34846:22;34888:13;:18;;;34872:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;34941:12;:10;:12::i;:::-;34917:36;;:20;34929:7;34917:11;:20::i;:::-;:36;;;34872:81;:142;;;;34964:50;34981:13;:18;;;35001:12;:10;:12::i;:::-;34964:16;:50::i;:::-;34872:142;34846:169;;35040:17;35024:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;35172:4;35150:26;;:13;:18;;;:26;;;35134:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;35261:1;35247:16;;:2;:16;;;;35239:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;35314:43;35336:4;35342:2;35346:7;35355:1;35314:21;:43::i;:::-;35414:49;35431:1;35435:7;35444:13;:18;;;35414:8;:49::i;:::-;35502:1;35472:12;:18;35485:4;35472:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35538:1;35510:12;:16;35523:2;35510:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35569:43;;;;;;;;35584:2;35569:43;;;;;;35595:15;35569:43;;;;;35546:11;:20;35558:7;35546:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35840:19;35872:1;35862:7;:11;;;;:::i;:::-;35840:33;;35925:1;35884:43;;:11;:24;35896:11;35884:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;35880:236;;;35942:20;35950:11;35942:7;:20::i;:::-;35938:171;;;36002:97;;;;;;;;36029:13;:18;;;36002:97;;;;;;36060:13;:28;;;36002:97;;;;;35975:11;:24;35987:11;35975:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35938:171;35880:236;36148:7;36144:2;36129:27;;36138:4;36129:27;;;;;;;;;;;;36163:42;36184:4;36190:2;36194:7;36203:1;36163:20;:42::i;:::-;34772:1439;;;34682:1529;;;:::o;32823:98::-;32888:27;32898:2;32902:8;32888:27;;;;;;;;;;;;:9;:27::i;:::-;32823:98;;:::o;28525:606::-;28601:21;;:::i;:::-;28642:16;28650:7;28642;:16::i;:::-;28634:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;28714:26;28762:12;28751:7;:23;28747:93;;28831:1;28816:12;28806:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;28785:47;;28747:93;28853:12;28868:7;28853:22;;28848:212;28885:18;28877:4;:26;28848:212;;28922:31;28956:11;:17;28968:4;28956:17;;;;;;;;;;;28922:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29012:1;28986:28;;:9;:14;;;:28;;;28982:71;;29034:9;29027:16;;;;;;;28982:71;28913:147;28905:6;;;;;:::i;:::-;;;;28848:212;;;;29068:57;;;;;;;;;;:::i;:::-;;;;;;;;28525:606;;;;:::o;42186:191::-;42260:16;42279:6;;;;;;;;;;;42260:25;;42305:8;42296:6;;:17;;;;;;;;;;;;;;;;;;42360:8;42329:40;;42350:8;42329:40;;;;;;;;;;;;42249:128;42186:191;:::o;38028:690::-;38165:4;38182:15;:2;:13;;;:15::i;:::-;38178:535;;;38237:2;38221:36;;;38258:12;:10;:12::i;:::-;38272:4;38278:7;38287:5;38221:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38208:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38469:1;38452:6;:13;:18;38448:215;;;38485:61;;;;;;;;;;:::i;:::-;;;;;;;;38448:215;38631:6;38625:13;38616:6;38612:2;38608:15;38601:38;38208:464;38353:45;;;38343:55;;;:6;:55;;;;38336:62;;;;;38178:535;38701:4;38694:11;;38028:690;;;;;;;:::o;44150:108::-;44210:13;44243:7;44236:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44150:108;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;39180:141::-;;;;;:::o;39707:140::-;;;;;:::o;33176:1274::-;33281:20;33304:12;;33281:35;;33345:1;33331:16;;:2;:16;;;;33323:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;33522:21;33530:12;33522:7;:21::i;:::-;33521:22;33513:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;33666:61;33696:1;33700:2;33704:12;33718:8;33666:21;:61::i;:::-;33736:30;33769:12;:16;33782:2;33769:16;;;;;;;;;;;;;;;33736:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33811:119;;;;;;;;33861:8;33831:11;:19;;;:39;;;;:::i;:::-;33811:119;;;;;;33914:8;33879:11;:24;;;:44;;;;:::i;:::-;33811:119;;;;;33792:12;:16;33805:2;33792:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33965:43;;;;;;;;33980:2;33965:43;;;;;;33991:15;33965:43;;;;;33937:11;:25;33949:12;33937:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34017:20;34040:12;34017:35;;34066:9;34061:281;34085:8;34081:1;:12;34061:281;;;34139:12;34135:2;34114:38;;34131:1;34114:38;;;;;;;;;;;;34179:59;34210:1;34214:2;34218:12;34232:5;34179:22;:59::i;:::-;34161:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;34320:14;;;;;:::i;:::-;;;;34095:3;;;;;:::i;:::-;;;;34061:281;;;;34365:12;34350;:27;;;;34384:60;34413:1;34417:2;34421:12;34435:8;34384:20;:60::i;:::-;33274:1176;;;33176:1274;;;:::o;3357:326::-;3417:4;3674:1;3652:7;:19;;;:23;3645:30;;3357:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423: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:::-;13865:3;13886:67;13950:2;13945:3;13886:67;:::i;:::-;13879:74;;13962:93;14051:3;13962:93;:::i;:::-;14080:2;14075:3;14071:12;14064:19;;13723:366;;;:::o;14095:::-;14237:3;14258:67;14322:2;14317:3;14258:67;:::i;:::-;14251:74;;14334:93;14423:3;14334:93;:::i;:::-;14452:2;14447:3;14443:12;14436:19;;14095:366;;;:::o;14467:::-;14609:3;14630:67;14694:2;14689:3;14630:67;:::i;:::-;14623:74;;14706:93;14795:3;14706:93;:::i;:::-;14824:2;14819:3;14815:12;14808:19;;14467:366;;;:::o;14839:::-;14981:3;15002:67;15066:2;15061:3;15002:67;:::i;:::-;14995:74;;15078:93;15167:3;15078:93;:::i;:::-;15196:2;15191:3;15187:12;15180:19;;14839:366;;;:::o;15211:::-;15353:3;15374:67;15438:2;15433:3;15374:67;:::i;:::-;15367:74;;15450:93;15539:3;15450:93;:::i;:::-;15568:2;15563:3;15559:12;15552:19;;15211:366;;;:::o;15583:::-;15725:3;15746:67;15810:2;15805:3;15746:67;:::i;:::-;15739:74;;15822:93;15911:3;15822:93;:::i;:::-;15940:2;15935:3;15931:12;15924:19;;15583:366;;;:::o;15955:::-;16097:3;16118:67;16182:2;16177:3;16118:67;:::i;:::-;16111:74;;16194:93;16283:3;16194:93;:::i;:::-;16312:2;16307:3;16303:12;16296:19;;15955:366;;;:::o;16327:::-;16469:3;16490:67;16554:2;16549:3;16490:67;:::i;:::-;16483:74;;16566:93;16655:3;16566:93;:::i;:::-;16684:2;16679:3;16675:12;16668:19;;16327:366;;;:::o;16699:::-;16841:3;16862:67;16926:2;16921:3;16862:67;:::i;:::-;16855:74;;16938:93;17027:3;16938:93;:::i;:::-;17056:2;17051:3;17047:12;17040:19;;16699:366;;;:::o;17071:118::-;17158:24;17176:5;17158:24;:::i;:::-;17153:3;17146:37;17071:118;;:::o;17195:435::-;17375:3;17397:95;17488:3;17479:6;17397:95;:::i;:::-;17390:102;;17509:95;17600:3;17591:6;17509:95;:::i;:::-;17502:102;;17621:3;17614:10;;17195:435;;;;;:::o;17636:222::-;17729:4;17767:2;17756:9;17752:18;17744:26;;17780:71;17848:1;17837:9;17833:17;17824:6;17780:71;:::i;:::-;17636:222;;;;:::o;17864:640::-;18059:4;18097:3;18086:9;18082:19;18074:27;;18111:71;18179:1;18168:9;18164:17;18155:6;18111:71;:::i;:::-;18192:72;18260:2;18249:9;18245:18;18236:6;18192:72;:::i;:::-;18274;18342:2;18331:9;18327:18;18318:6;18274:72;:::i;:::-;18393:9;18387:4;18383:20;18378:2;18367:9;18363:18;18356:48;18421:76;18492:4;18483:6;18421:76;:::i;:::-;18413:84;;17864:640;;;;;;;:::o;18510:210::-;18597:4;18635:2;18624:9;18620:18;18612:26;;18648:65;18710:1;18699:9;18695:17;18686:6;18648:65;:::i;:::-;18510:210;;;;:::o;18726:313::-;18839:4;18877:2;18866:9;18862:18;18854:26;;18926:9;18920:4;18916:20;18912:1;18901:9;18897:17;18890:47;18954:78;19027:4;19018:6;18954:78;:::i;:::-;18946:86;;18726:313;;;;:::o;19045:419::-;19211:4;19249:2;19238:9;19234:18;19226:26;;19298:9;19292:4;19288:20;19284:1;19273:9;19269:17;19262:47;19326:131;19452:4;19326:131;:::i;:::-;19318:139;;19045:419;;;:::o;19470:::-;19636:4;19674:2;19663:9;19659:18;19651:26;;19723:9;19717:4;19713:20;19709:1;19698:9;19694:17;19687:47;19751:131;19877:4;19751:131;:::i;:::-;19743:139;;19470:419;;;:::o;19895:::-;20061:4;20099:2;20088:9;20084:18;20076:26;;20148:9;20142:4;20138:20;20134:1;20123:9;20119:17;20112:47;20176:131;20302:4;20176:131;:::i;:::-;20168:139;;19895:419;;;:::o;20320:::-;20486:4;20524:2;20513:9;20509:18;20501:26;;20573:9;20567:4;20563:20;20559:1;20548:9;20544:17;20537:47;20601:131;20727:4;20601:131;:::i;:::-;20593:139;;20320:419;;;:::o;20745:::-;20911:4;20949:2;20938:9;20934:18;20926:26;;20998:9;20992:4;20988:20;20984:1;20973:9;20969:17;20962:47;21026:131;21152:4;21026:131;:::i;:::-;21018:139;;20745:419;;;:::o;21170:::-;21336:4;21374:2;21363:9;21359:18;21351:26;;21423:9;21417:4;21413:20;21409:1;21398:9;21394:17;21387:47;21451:131;21577:4;21451:131;:::i;:::-;21443:139;;21170:419;;;:::o;21595:::-;21761:4;21799:2;21788:9;21784:18;21776:26;;21848:9;21842:4;21838:20;21834:1;21823:9;21819:17;21812:47;21876:131;22002:4;21876:131;:::i;:::-;21868:139;;21595:419;;;:::o;22020:::-;22186:4;22224:2;22213:9;22209:18;22201:26;;22273:9;22267:4;22263:20;22259:1;22248:9;22244:17;22237:47;22301:131;22427:4;22301:131;:::i;:::-;22293:139;;22020:419;;;:::o;22445:::-;22611:4;22649:2;22638:9;22634:18;22626:26;;22698:9;22692:4;22688:20;22684:1;22673:9;22669:17;22662:47;22726:131;22852:4;22726:131;:::i;:::-;22718:139;;22445:419;;;:::o;22870:::-;23036:4;23074:2;23063:9;23059:18;23051:26;;23123:9;23117:4;23113:20;23109:1;23098:9;23094:17;23087:47;23151:131;23277:4;23151:131;:::i;:::-;23143:139;;22870:419;;;:::o;23295:::-;23461:4;23499:2;23488:9;23484:18;23476:26;;23548:9;23542:4;23538:20;23534:1;23523:9;23519:17;23512:47;23576:131;23702:4;23576:131;:::i;:::-;23568:139;;23295:419;;;:::o;23720:::-;23886:4;23924:2;23913:9;23909:18;23901:26;;23973:9;23967:4;23963:20;23959:1;23948:9;23944:17;23937:47;24001:131;24127:4;24001:131;:::i;:::-;23993:139;;23720:419;;;:::o;24145:::-;24311:4;24349:2;24338:9;24334:18;24326:26;;24398:9;24392:4;24388:20;24384:1;24373:9;24369:17;24362:47;24426:131;24552:4;24426:131;:::i;:::-;24418:139;;24145:419;;;:::o;24570:::-;24736:4;24774:2;24763:9;24759:18;24751:26;;24823:9;24817:4;24813:20;24809:1;24798:9;24794:17;24787:47;24851:131;24977:4;24851:131;:::i;:::-;24843:139;;24570:419;;;:::o;24995:::-;25161:4;25199:2;25188:9;25184:18;25176:26;;25248:9;25242:4;25238:20;25234:1;25223:9;25219:17;25212:47;25276:131;25402:4;25276:131;:::i;:::-;25268:139;;24995:419;;;:::o;25420:::-;25586:4;25624:2;25613:9;25609:18;25601:26;;25673:9;25667:4;25663:20;25659:1;25648:9;25644:17;25637:47;25701:131;25827:4;25701:131;:::i;:::-;25693:139;;25420:419;;;:::o;25845:::-;26011:4;26049:2;26038:9;26034:18;26026:26;;26098:9;26092:4;26088:20;26084:1;26073:9;26069:17;26062:47;26126:131;26252:4;26126:131;:::i;:::-;26118:139;;25845:419;;;:::o;26270:::-;26436:4;26474:2;26463:9;26459:18;26451:26;;26523:9;26517:4;26513:20;26509:1;26498:9;26494:17;26487:47;26551:131;26677:4;26551:131;:::i;:::-;26543:139;;26270:419;;;:::o;26695:::-;26861:4;26899:2;26888:9;26884:18;26876:26;;26948:9;26942:4;26938:20;26934:1;26923:9;26919:17;26912:47;26976:131;27102:4;26976:131;:::i;:::-;26968:139;;26695:419;;;:::o;27120:::-;27286:4;27324:2;27313:9;27309:18;27301:26;;27373:9;27367:4;27363:20;27359:1;27348:9;27344:17;27337:47;27401:131;27527:4;27401:131;:::i;:::-;27393:139;;27120:419;;;:::o;27545:::-;27711:4;27749:2;27738:9;27734:18;27726:26;;27798:9;27792:4;27788:20;27784:1;27773:9;27769:17;27762:47;27826:131;27952:4;27826:131;:::i;:::-;27818:139;;27545:419;;;:::o;27970:::-;28136:4;28174:2;28163:9;28159:18;28151:26;;28223:9;28217:4;28213:20;28209:1;28198:9;28194:17;28187:47;28251:131;28377:4;28251:131;:::i;:::-;28243:139;;27970:419;;;:::o;28395:::-;28561:4;28599:2;28588:9;28584:18;28576:26;;28648:9;28642:4;28638:20;28634:1;28623:9;28619:17;28612:47;28676:131;28802:4;28676:131;:::i;:::-;28668:139;;28395:419;;;:::o;28820:222::-;28913:4;28951:2;28940:9;28936:18;28928:26;;28964:71;29032:1;29021:9;29017:17;29008:6;28964:71;:::i;:::-;28820:222;;;;:::o;29048:129::-;29082:6;29109:20;;:::i;:::-;29099:30;;29138:33;29166:4;29158:6;29138:33;:::i;:::-;29048:129;;;:::o;29183:75::-;29216:6;29249:2;29243:9;29233:19;;29183:75;:::o;29264:307::-;29325:4;29415:18;29407:6;29404:30;29401:56;;;29437:18;;:::i;:::-;29401:56;29475:29;29497:6;29475:29;:::i;:::-;29467:37;;29559:4;29553;29549:15;29541:23;;29264:307;;;:::o;29577:308::-;29639:4;29729:18;29721:6;29718:30;29715:56;;;29751:18;;:::i;:::-;29715:56;29789:29;29811:6;29789:29;:::i;:::-;29781:37;;29873:4;29867;29863:15;29855:23;;29577:308;;;:::o;29891:98::-;29942:6;29976:5;29970:12;29960:22;;29891:98;;;:::o;29995:99::-;30047:6;30081:5;30075:12;30065:22;;29995:99;;;:::o;30100:168::-;30183:11;30217:6;30212:3;30205:19;30257:4;30252:3;30248:14;30233:29;;30100:168;;;;:::o;30274:169::-;30358:11;30392:6;30387:3;30380:19;30432:4;30427:3;30423:14;30408:29;;30274:169;;;;:::o;30449:148::-;30551:11;30588:3;30573:18;;30449:148;;;;:::o;30603:273::-;30643:3;30662:20;30680:1;30662:20;:::i;:::-;30657:25;;30696:20;30714:1;30696:20;:::i;:::-;30691:25;;30818:1;30782:34;30778:42;30775:1;30772:49;30769:75;;;30824:18;;:::i;:::-;30769:75;30868:1;30865;30861:9;30854:16;;30603:273;;;;:::o;30882:305::-;30922:3;30941:20;30959:1;30941:20;:::i;:::-;30936:25;;30975:20;30993:1;30975:20;:::i;:::-;30970:25;;31129:1;31061:66;31057:74;31054:1;31051:81;31048:107;;;31135:18;;:::i;:::-;31048:107;31179:1;31176;31172:9;31165:16;;30882:305;;;;:::o;31193:185::-;31233:1;31250:20;31268:1;31250:20;:::i;:::-;31245:25;;31284:20;31302:1;31284:20;:::i;:::-;31279:25;;31323:1;31313:35;;31328:18;;:::i;:::-;31313:35;31370:1;31367;31363:9;31358:14;;31193:185;;;;:::o;31384:348::-;31424:7;31447:20;31465:1;31447:20;:::i;:::-;31442:25;;31481:20;31499:1;31481:20;:::i;:::-;31476:25;;31669:1;31601:66;31597:74;31594:1;31591:81;31586:1;31579:9;31572:17;31568:105;31565:131;;;31676:18;;:::i;:::-;31565:131;31724:1;31721;31717:9;31706:20;;31384:348;;;;:::o;31738:191::-;31778:4;31798:20;31816:1;31798:20;:::i;:::-;31793:25;;31832:20;31850:1;31832:20;:::i;:::-;31827:25;;31871:1;31868;31865:8;31862:34;;;31876:18;;:::i;:::-;31862:34;31921:1;31918;31914:9;31906:17;;31738:191;;;;:::o;31935:::-;31975:4;31995:20;32013:1;31995:20;:::i;:::-;31990:25;;32029:20;32047:1;32029:20;:::i;:::-;32024:25;;32068:1;32065;32062:8;32059:34;;;32073:18;;:::i;:::-;32059:34;32118:1;32115;32111:9;32103:17;;31935:191;;;;:::o;32132:96::-;32169:7;32198:24;32216:5;32198:24;:::i;:::-;32187:35;;32132:96;;;:::o;32234:90::-;32268:7;32311:5;32304:13;32297:21;32286:32;;32234:90;;;:::o;32330:149::-;32366:7;32406:66;32399:5;32395:78;32384:89;;32330:149;;;:::o;32485:118::-;32522:7;32562:34;32555:5;32551:46;32540:57;;32485:118;;;:::o;32609:126::-;32646:7;32686:42;32679:5;32675:54;32664:65;;32609:126;;;:::o;32741:77::-;32778:7;32807:5;32796:16;;32741:77;;;:::o;32824:154::-;32908:6;32903:3;32898;32885:30;32970:1;32961:6;32956:3;32952:16;32945:27;32824:154;;;:::o;32984:307::-;33052:1;33062:113;33076:6;33073:1;33070:13;33062:113;;;33161:1;33156:3;33152:11;33146:18;33142:1;33137:3;33133:11;33126:39;33098:2;33095:1;33091:10;33086:15;;33062:113;;;33193:6;33190:1;33187:13;33184:101;;;33273:1;33264:6;33259:3;33255:16;33248:27;33184:101;33033:258;32984:307;;;:::o;33297:171::-;33336:3;33359:24;33377:5;33359:24;:::i;:::-;33350:33;;33405:4;33398:5;33395:15;33392:41;;;33413:18;;:::i;:::-;33392:41;33460:1;33453:5;33449:13;33442:20;;33297:171;;;:::o;33474:320::-;33518:6;33555:1;33549:4;33545:12;33535:22;;33602:1;33596:4;33592:12;33623:18;33613:81;;33679:4;33671:6;33667:17;33657:27;;33613:81;33741:2;33733:6;33730:14;33710:18;33707:38;33704:84;;;33760:18;;:::i;:::-;33704:84;33525:269;33474:320;;;:::o;33800:281::-;33883:27;33905:4;33883:27;:::i;:::-;33875:6;33871:40;34013:6;34001:10;33998:22;33977:18;33965:10;33962:34;33959:62;33956:88;;;34024:18;;:::i;:::-;33956:88;34064:10;34060:2;34053:22;33843:238;33800:281;;:::o;34087:233::-;34126:3;34149:24;34167:5;34149:24;:::i;:::-;34140:33;;34195:66;34188:5;34185:77;34182:103;;;34265:18;;:::i;:::-;34182:103;34312:1;34305:5;34301:13;34294:20;;34087:233;;;:::o;34326:176::-;34358:1;34375:20;34393:1;34375:20;:::i;:::-;34370:25;;34409:20;34427:1;34409:20;:::i;:::-;34404:25;;34448:1;34438:35;;34453:18;;:::i;:::-;34438:35;34494:1;34491;34487:9;34482:14;;34326:176;;;;:::o;34508:180::-;34556:77;34553:1;34546:88;34653:4;34650:1;34643:15;34677:4;34674:1;34667:15;34694:180;34742:77;34739:1;34732:88;34839:4;34836:1;34829:15;34863:4;34860:1;34853:15;34880:180;34928:77;34925:1;34918:88;35025:4;35022:1;35015:15;35049:4;35046:1;35039:15;35066:180;35114:77;35111:1;35104:88;35211:4;35208:1;35201:15;35235:4;35232:1;35225:15;35252:180;35300:77;35297:1;35290:88;35397:4;35394:1;35387:15;35421:4;35418:1;35411:15;35438:117;35547:1;35544;35537:12;35561:117;35670:1;35667;35660:12;35684:117;35793:1;35790;35783:12;35807:117;35916:1;35913;35906:12;35930:102;35971:6;36022:2;36018:7;36013:2;36006:5;36002:14;35998:28;35988:38;;35930:102;;;:::o;36038:221::-;36178:34;36174:1;36166:6;36162:14;36155:58;36247:4;36242:2;36234:6;36230:15;36223:29;36038:221;:::o;36265:158::-;36405:10;36401:1;36393:6;36389:14;36382:34;36265:158;:::o;36429:225::-;36569:34;36565:1;36557:6;36553:14;36546:58;36638:8;36633:2;36625:6;36621:15;36614:33;36429:225;:::o;36660:229::-;36800:34;36796:1;36788:6;36784:14;36777:58;36869:12;36864:2;36856:6;36852:15;36845:37;36660:229;:::o;36895:222::-;37035:34;37031:1;37023:6;37019:14;37012:58;37104:5;37099:2;37091:6;37087:15;37080:30;36895:222;:::o;37123:224::-;37263:34;37259:1;37251:6;37247:14;37240:58;37332:7;37327:2;37319:6;37315:15;37308:32;37123:224;:::o;37353:221::-;37493:34;37489:1;37481:6;37477:14;37470:58;37562:4;37557:2;37549:6;37545:15;37538:29;37353:221;:::o;37580:166::-;37720:18;37716:1;37708:6;37704:14;37697:42;37580:166;:::o;37752:244::-;37892:34;37888:1;37880:6;37876:14;37869:58;37961:27;37956:2;37948:6;37944:15;37937:52;37752:244;:::o;38002:230::-;38142:34;38138:1;38130:6;38126:14;38119:58;38211:13;38206:2;38198:6;38194:15;38187:38;38002:230;:::o;38238:225::-;38378:34;38374:1;38366:6;38362:14;38355:58;38447:8;38442:2;38434:6;38430:15;38423:33;38238:225;:::o;38469:182::-;38609:34;38605:1;38597:6;38593:14;38586:58;38469:182;:::o;38657:234::-;38797:34;38793:1;38785:6;38781:14;38774:58;38866:17;38861:2;38853:6;38849:15;38842:42;38657:234;:::o;38897:176::-;39037:28;39033:1;39025:6;39021:14;39014:52;38897:176;:::o;39079:237::-;39219:34;39215:1;39207:6;39203:14;39196:58;39288:20;39283:2;39275:6;39271:15;39264:45;39079:237;:::o;39322:220::-;39462:34;39458:1;39450:6;39446:14;39439:58;39531:3;39526:2;39518:6;39514:15;39507:28;39322:220;:::o;39548:221::-;39688:34;39684:1;39676:6;39672:14;39665:58;39757:4;39752:2;39744:6;39740:15;39733:29;39548:221;:::o;39775:238::-;39915:34;39911:1;39903:6;39899:14;39892:58;39984:21;39979:2;39971:6;39967:15;39960:46;39775:238;:::o;40019:179::-;40159:31;40155:1;40147:6;40143:14;40136:55;40019:179;:::o;40204:220::-;40344:34;40340:1;40332:6;40328:14;40321:58;40413:3;40408:2;40400:6;40396:15;40389:28;40204:220;:::o;40430:233::-;40570:34;40566:1;40558:6;40554:14;40547:58;40639:16;40634:2;40626:6;40622:15;40615:41;40430:233;:::o;40669:234::-;40809:34;40805:1;40797:6;40793:14;40786:58;40878:17;40873:2;40865:6;40861:15;40854:42;40669:234;:::o;40909:232::-;41049:34;41045:1;41037:6;41033:14;41026:58;41118:15;41113:2;41105:6;41101:15;41094:40;40909:232;:::o;41147:122::-;41220:24;41238:5;41220:24;:::i;:::-;41213:5;41210:35;41200:63;;41259:1;41256;41249:12;41200:63;41147:122;:::o;41275:116::-;41345:21;41360:5;41345:21;:::i;:::-;41338:5;41335:32;41325:60;;41381:1;41378;41371:12;41325:60;41275:116;:::o;41397:120::-;41469:23;41486:5;41469:23;:::i;:::-;41462:5;41459:34;41449:62;;41507:1;41504;41497:12;41449:62;41397:120;:::o;41523:122::-;41596:24;41614:5;41596:24;:::i;:::-;41589:5;41586:35;41576:63;;41635:1;41632;41625:12;41576:63;41523:122;:::o

Swarm Source

ipfs://0db4295008b6d519c9b82d535151926e28af4ae18f5fc2c2981a32e070147d03
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.