ETH Price: $2,274.03 (+0.06%)

Token

The Lonely Gnomes (GNOMES)
 

Overview

Max Total Supply

1,000 GNOMES

Holders

81

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
20 GNOMES
0x87a5ee283e602718957fdc1a4a60f1cd290500ea
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:
TheLonelyGnomes

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

// File: contracts/ERC721A.sol



pragma solidity ^0.8.0;









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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    uint256 urlTokenId = tokenId + 1;

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: contracts/TheLonelyGnomes.sol



pragma solidity ^0.8.0;





contract TheLonelyGnomes is Ownable, ERC721A, ReentrancyGuard {

  uint256 public constant freeSaleLimit = 1000;
  uint256 public constant maxPerAddressDuringMint = 30;

  struct SaleConfig {
    uint64 publicPrice;
    bool paused;
  }

  SaleConfig public saleConfig;

  constructor() ERC721A("The Lonely Gnomes", "GNOMES", 10, 6000) {
    saleConfig.publicPrice = 0.015 ether;
    saleConfig.paused = true;
  }

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

  function publicSaleMint(uint256 quantity)
    external
    payable
    callerIsUser
  {
    SaleConfig memory config = saleConfig;
    bool state = config.paused;
    uint256 publicPrice = uint256(config.publicPrice);

    require(
      isPublicSaleOn(publicPrice, state),
      "public sale has not begun yet"
    );
    require(totalSupply() + quantity <= collectionSize, "reached max supply");
    require(
      numberMinted(msg.sender) + quantity <= maxPerAddressDuringMint,
      "can not mint this many"
    );
    if( totalSupply() < freeSaleLimit) {
      require( totalSupply() + quantity <= freeSaleLimit, "you need to choose a lower quantity to mint for free");
    }
    _safeMint(msg.sender, quantity);
    if ( totalSupply() > freeSaleLimit ){
      refundIfOver(publicPrice * quantity);
    }
  }

  function refundIfOver(uint256 price) private {
    require(msg.value >= price, "Need to send more ETH.");
    if (msg.value > price) {
      payable(msg.sender).transfer(msg.value - price);
    }
  }

  function isPublicSaleOn(
    uint256 publicPriceWei,
    bool state
  ) internal view returns (bool) {
    return
      publicPriceWei != 0 &&
      !state;
  }

  // For marketing etc.
  function devMint(uint256 quantity) external onlyOwner {
    require(totalSupply() + quantity <= collectionSize, "reached max supply");
    require(
      quantity % maxBatchSize == 0,
      "can only mint a multiple of the maxBatchSize"
    );
    uint256 numChunks = quantity / maxBatchSize;
    for (uint256 i = 0; i < numChunks; i++) {
      _safeMint(msg.sender, maxBatchSize);
    }
  }

  function SetupSaleInfo(
    uint64 publicPriceWei,
    bool state
  ) external onlyOwner {
    saleConfig = SaleConfig(
      publicPriceWei,
      state
    );
  }

  // // metadata URI
  string private _baseTokenURI;

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint64","name":"publicPriceWei","type":"uint64"},{"internalType":"bool","name":"state","type":"bool"}],"name":"SetupSaleInfo","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":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeSaleLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleConfig","outputs":[{"internalType":"uint64","name":"publicPrice","type":"uint64"},{"internalType":"bool","name":"paused","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c0604052600060015560006008553480156200001b57600080fd5b506040518060400160405280601181526020017f546865204c6f6e656c7920476e6f6d65730000000000000000000000000000008152506040518060400160405280600681526020017f474e4f4d45530000000000000000000000000000000000000000000000000000815250600a611770620000ad620000a1620001de60201b60201c565b620001e660201b60201c565b60008111620000f3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000ea90620003ca565b60405180910390fd5b6000821162000139576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200013090620003a8565b60405180910390fd5b836002908051906020019062000151929190620002aa565b5082600390805190602001906200016a929190620002aa565b508160a08181525050806080818152505050505050600160098190555066354a6ba7a18000600a60000160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600a60000160086101000a81548160ff02191690831515021790555062000500565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002b890620003fd565b90600052602060002090601f016020900481019282620002dc576000855562000328565b82601f10620002f757805160ff191683800117855562000328565b8280016001018555821562000328579182015b82811115620003275782518255916020019190600101906200030a565b5b5090506200033791906200033b565b5090565b5b80821115620003565760008160009055506001016200033c565b5090565b600062000369602783620003ec565b9150620003768262000462565b604082019050919050565b600062000390602e83620003ec565b91506200039d82620004b1565b604082019050919050565b60006020820190508181036000830152620003c3816200035a565b9050919050565b60006020820190508181036000830152620003e58162000381565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200041657607f821691505b602082108114156200042d576200042c62000433565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b60805160a0516151516200055e60003960008181610ee101528181610f4f01528181610f8c0152818161269c015281816126c50152612f09015260008181610e6a0152818161179a01528181612406015261243a01526151516000f3fe6080604052600436106101d85760003560e01c80638bc35c2f11610102578063b3ab66b011610095578063dc33e68111610064578063dc33e681146106b0578063e985e9c5146106ed578063eddc080d1461072a578063f2fde38b14610753576101d8565b8063b3ab66b014610603578063b88d4fde1461061f578063c87b56dd14610648578063d7224ba014610685576101d8565b806395d89b41116100d157806395d89b411461056d578063a1da579d14610598578063a22cb465146105c3578063ac446002146105ec576101d8565b80638bc35c2f146104ae5780638da5cb5b146104d957806390aa0b0f146105045780639231ab2a14610530576101d8565b80632f745c591161017a57806355f804b31161014957806355f804b3146103f45780636352211e1461041d57806370a082311461045a578063715018a614610497576101d8565b80632f745c5914610328578063375a069a1461036557806342842e0e1461038e5780634f6ccce7146103b7576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd146102ab57806323b872dd146102d65780632d20fb60146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff919061372e565b61077c565b6040516102119190613e91565b60405180910390f35b34801561022657600080fd5b5061022f6108c6565b60405161023c9190613eac565b60405180910390f35b34801561025157600080fd5b5061026c600480360381019061026791906137d5565b610958565b6040516102799190613e2a565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a491906136ee565b6109dd565b005b3480156102b757600080fd5b506102c0610af6565b6040516102cd91906142e9565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f891906135d8565b610b00565b005b34801561030b57600080fd5b50610326600480360381019061032191906137d5565b610b10565b005b34801561033457600080fd5b5061034f600480360381019061034a91906136ee565b610bee565b60405161035c91906142e9565b60405180910390f35b34801561037157600080fd5b5061038c600480360381019061038791906137d5565b610dec565b005b34801561039a57600080fd5b506103b560048036038101906103b091906135d8565b610fc8565b005b3480156103c357600080fd5b506103de60048036038101906103d991906137d5565b610fe8565b6040516103eb91906142e9565b60405180910390f35b34801561040057600080fd5b5061041b60048036038101906104169190613788565b61103b565b005b34801561042957600080fd5b50610444600480360381019061043f91906137d5565b6110cd565b6040516104519190613e2a565b60405180910390f35b34801561046657600080fd5b50610481600480360381019061047c919061356b565b6110e3565b60405161048e91906142e9565b60405180910390f35b3480156104a357600080fd5b506104ac6111cc565b005b3480156104ba57600080fd5b506104c3611254565b6040516104d091906142e9565b60405180910390f35b3480156104e557600080fd5b506104ee611259565b6040516104fb9190613e2a565b60405180910390f35b34801561051057600080fd5b50610519611282565b604051610527929190614304565b60405180910390f35b34801561053c57600080fd5b50610557600480360381019061055291906137d5565b6112b5565b60405161056491906142ce565b60405180910390f35b34801561057957600080fd5b506105826112cd565b60405161058f9190613eac565b60405180910390f35b3480156105a457600080fd5b506105ad61135f565b6040516105ba91906142e9565b60405180910390f35b3480156105cf57600080fd5b506105ea60048036038101906105e591906136ae565b611365565b005b3480156105f857600080fd5b506106016114e6565b005b61061d600480360381019061061891906137d5565b611667565b005b34801561062b57600080fd5b506106466004803603810190610641919061362b565b611903565b005b34801561065457600080fd5b5061066f600480360381019061066a91906137d5565b61195f565b60405161067c9190613eac565b60405180910390f35b34801561069157600080fd5b5061069a611a18565b6040516106a791906142e9565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d2919061356b565b611a1e565b6040516106e491906142e9565b60405180910390f35b3480156106f957600080fd5b50610714600480360381019061070f9190613598565b611a30565b6040516107219190613e91565b60405180910390f35b34801561073657600080fd5b50610751600480360381019061074c9190613802565b611ac4565b005b34801561075f57600080fd5b5061077a6004803603810190610775919061356b565b611bb9565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061084757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108af57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108bf57506108be82611cb1565b5b9050919050565b6060600280546108d590614670565b80601f016020809104026020016040519081016040528092919081815260200182805461090190614670565b801561094e5780601f106109235761010080835404028352916020019161094e565b820191906000526020600020905b81548152906001019060200180831161093157829003601f168201915b5050505050905090565b600061096382611d1b565b6109a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109999061428e565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109e8826110cd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a509061410e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a78611d29565b73ffffffffffffffffffffffffffffffffffffffff161480610aa75750610aa681610aa1611d29565b611a30565b5b610ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610add90613fce565b60405180910390fd5b610af1838383611d31565b505050565b6000600154905090565b610b0b838383611de3565b505050565b610b18611d29565b73ffffffffffffffffffffffffffffffffffffffff16610b36611259565b73ffffffffffffffffffffffffffffffffffffffff1614610b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b839061406e565b60405180910390fd5b60026009541415610bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc99061424e565b60405180910390fd5b6002600981905550610be38161239c565b600160098190555050565b6000610bf9836110e3565b8210610c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3190613ece565b60405180910390fd5b6000610c44610af6565b905060008060005b83811015610daa576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d3e57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d965786841415610d87578195505050505050610de6565b8380610d92906146d3565b9450505b508080610da2906146d3565b915050610c4c565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddd9061420e565b60405180910390fd5b92915050565b610df4611d29565b73ffffffffffffffffffffffffffffffffffffffff16610e12611259565b73ffffffffffffffffffffffffffffffffffffffff1614610e68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5f9061406e565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000081610e92610af6565b610e9c9190614417565b1115610edd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed49061402e565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000082610f0b919061471c565b14610f4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4290613f2e565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000082610f79919061446d565b905060005b81811015610fc357610fb0337f000000000000000000000000000000000000000000000000000000000000000061262a565b8080610fbb906146d3565b915050610f7e565b505050565b610fe383838360405180602001604052806000815250611903565b505050565b6000610ff2610af6565b8210611033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102a90613f4e565b60405180910390fd5b819050919050565b611043611d29565b73ffffffffffffffffffffffffffffffffffffffff16611061611259565b73ffffffffffffffffffffffffffffffffffffffff16146110b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ae9061406e565b60405180910390fd5b8181600b91906110c892919061334a565b505050565b60006110d882612648565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611154576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114b9061400e565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6111d4611d29565b73ffffffffffffffffffffffffffffffffffffffff166111f2611259565b73ffffffffffffffffffffffffffffffffffffffff1614611248576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123f9061406e565b60405180910390fd5b611252600061284b565b565b601e81565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a8060000160009054906101000a900467ffffffffffffffff16908060000160089054906101000a900460ff16905082565b6112bd6133d0565b6112c682612648565b9050919050565b6060600380546112dc90614670565b80601f016020809104026020016040519081016040528092919081815260200182805461130890614670565b80156113555780601f1061132a57610100808354040283529160200191611355565b820191906000526020600020905b81548152906001019060200180831161133857829003601f168201915b5050505050905090565b6103e881565b61136d611d29565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d2906140ae565b60405180910390fd5b80600760006113e8611d29565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611495611d29565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114da9190613e91565b60405180910390a35050565b6114ee611d29565b73ffffffffffffffffffffffffffffffffffffffff1661150c611259565b73ffffffffffffffffffffffffffffffffffffffff1614611562576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115599061406e565b60405180910390fd5b600260095414156115a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159f9061424e565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff16476040516115d690613e15565b60006040518083038185875af1925050503d8060008114611613576040519150601f19603f3d011682016040523d82523d6000602084013e611618565b606091505b505090508061165c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116539061412e565b60405180910390fd5b506001600981905550565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146116d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cc90613fae565b60405180910390fd5b6000600a6040518060400160405290816000820160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016000820160089054906101000a900460ff16151515158152505090506000816020015190506000826000015167ffffffffffffffff169050611759818361290f565b611798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178f906140ee565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000846117c2610af6565b6117cc9190614417565b111561180d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118049061402e565b60405180910390fd5b601e8461181933611a1e565b6118239190614417565b1115611864576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185b906141ce565b60405180910390fd5b6103e861186f610af6565b10156118cd576103e884611881610af6565b61188b9190614417565b11156118cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c3906141ee565b60405180910390fd5b5b6118d7338561262a565b6103e86118e2610af6565b11156118fd576118fc84826118f7919061449e565b612927565b5b50505050565b61190e848484611de3565b61191a848484846129c8565b611959576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119509061414e565b60405180910390fd5b50505050565b606061196a82611d1b565b6119a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a09061408e565b60405180910390fd5b60006001836119b89190614417565b905060006119c4612b5f565b905060008151116119e45760405180602001604052806000815250611a0f565b806119ee83612bf1565b6040516020016119ff929190613df1565b6040516020818303038152906040525b92505050919050565b60085481565b6000611a2982612d52565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611acc611d29565b73ffffffffffffffffffffffffffffffffffffffff16611aea611259565b73ffffffffffffffffffffffffffffffffffffffff1614611b40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b379061406e565b60405180910390fd5b60405180604001604052808367ffffffffffffffff168152602001821515815250600a60008201518160000160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060208201518160000160086101000a81548160ff0219169083151502179055509050505050565b611bc1611d29565b73ffffffffffffffffffffffffffffffffffffffff16611bdf611259565b73ffffffffffffffffffffffffffffffffffffffff1614611c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2c9061406e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ca5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9c90613eee565b60405180910390fd5b611cae8161284b565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611dee82612648565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611e15611d29565b73ffffffffffffffffffffffffffffffffffffffff161480611e715750611e3a611d29565b73ffffffffffffffffffffffffffffffffffffffff16611e5984610958565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e8d5750611e8c8260000151611e87611d29565b611a30565b5b905080611ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec6906140ce565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f389061404e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611fb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa890613f6e565b60405180910390fd5b611fbe8585856001612e3b565b611fce6000848460000151611d31565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661203c91906144f8565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166120e091906143d1565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846121e69190614417565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561232c5761225c81611d1b565b1561232b576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123948686866001612e41565b505050505050565b60006008549050600082116123e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123dd90613fee565b60405180910390fd5b6000600183836123f69190614417565b612400919061452c565b905060017f000000000000000000000000000000000000000000000000000000000000000061242f919061452c565b8111156124665760017f0000000000000000000000000000000000000000000000000000000000000000612463919061452c565b90505b61246f81611d1b565b6124ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a59061422e565b60405180910390fd5b60008290505b81811161261157600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156125fe57600061253182612648565b90506040518060400160405280826000015173ffffffffffffffffffffffffffffffffffffffff168152602001826020015167ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050505b8080612609906146d3565b9150506124b4565b5060018161261f9190614417565b600881905550505050565b612644828260405180602001604052806000815250612e47565b5050565b6126506133d0565b61265982611d1b565b612698576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268f90613f0e565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106126fc5760017f0000000000000000000000000000000000000000000000000000000000000000846126ef919061452c565b6126f99190614417565b90505b60008390505b81811061280a576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127f657809350505050612846565b50808061280290614646565b915050612702565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283d9061426e565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080831415801561291f575081155b905092915050565b8034101561296a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129619061416e565b60405180910390fd5b803411156129c5573373ffffffffffffffffffffffffffffffffffffffff166108fc8234612998919061452c565b9081150290604051600060405180830381858888f193505050501580156129c3573d6000803e3d6000fd5b505b50565b60006129e98473ffffffffffffffffffffffffffffffffffffffff16613327565b15612b52578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a12611d29565b8786866040518563ffffffff1660e01b8152600401612a349493929190613e45565b602060405180830381600087803b158015612a4e57600080fd5b505af1925050508015612a7f57506040513d601f19601f82011682018060405250810190612a7c919061375b565b60015b612b02573d8060008114612aaf576040519150601f19603f3d011682016040523d82523d6000602084013e612ab4565b606091505b50600081511415612afa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af19061414e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b57565b600190505b949350505050565b6060600b8054612b6e90614670565b80601f0160208091040260200160405190810160405280929190818152602001828054612b9a90614670565b8015612be75780601f10612bbc57610100808354040283529160200191612be7565b820191906000526020600020905b815481529060010190602001808311612bca57829003601f168201915b5050505050905090565b60606000821415612c39576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d4d565b600082905060005b60008214612c6b578080612c54906146d3565b915050600a82612c64919061446d565b9150612c41565b60008167ffffffffffffffff811115612c8757612c86614809565b5b6040519080825280601f01601f191660200182016040528015612cb95781602001600182028036833780820191505090505b5090505b60008514612d4657600182612cd2919061452c565b9150600a85612ce1919061471c565b6030612ced9190614417565b60f81b818381518110612d0357612d026147da565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d3f919061446d565b9450612cbd565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612dc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dba90613f8e565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb5906141ae565b60405180910390fd5b612ec781611d1b565b15612f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612efe9061418e565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115612f6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f61906142ae565b60405180910390fd5b612f776000858386612e3b565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161307491906143d1565b6fffffffffffffffffffffffffffffffff16815260200185836020015161309b91906143d1565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561330a57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46132aa60008884886129c8565b6132e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132e09061414e565b60405180910390fd5b81806132f4906146d3565b9250508080613302906146d3565b915050613239565b508060018190555061331f6000878588612e41565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461335690614670565b90600052602060002090601f01602090048101928261337857600085556133bf565b82601f1061339157803560ff19168380011785556133bf565b828001600101855582156133bf579182015b828111156133be5782358255916020019190600101906133a3565b5b5090506133cc919061340a565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561342357600081600090555060010161340b565b5090565b600061343a61343584614352565b61432d565b90508281526020810184848401111561345657613455614847565b5b613461848285614604565b509392505050565b600081359050613478816150a8565b92915050565b60008135905061348d816150bf565b92915050565b6000813590506134a2816150d6565b92915050565b6000815190506134b7816150d6565b92915050565b600082601f8301126134d2576134d161483d565b5b81356134e2848260208601613427565b91505092915050565b60008083601f8401126135015761350061483d565b5b8235905067ffffffffffffffff81111561351e5761351d614838565b5b60208301915083600182028301111561353a57613539614842565b5b9250929050565b600081359050613550816150ed565b92915050565b60008135905061356581615104565b92915050565b60006020828403121561358157613580614851565b5b600061358f84828501613469565b91505092915050565b600080604083850312156135af576135ae614851565b5b60006135bd85828601613469565b92505060206135ce85828601613469565b9150509250929050565b6000806000606084860312156135f1576135f0614851565b5b60006135ff86828701613469565b935050602061361086828701613469565b925050604061362186828701613541565b9150509250925092565b6000806000806080858703121561364557613644614851565b5b600061365387828801613469565b945050602061366487828801613469565b935050604061367587828801613541565b925050606085013567ffffffffffffffff8111156136965761369561484c565b5b6136a2878288016134bd565b91505092959194509250565b600080604083850312156136c5576136c4614851565b5b60006136d385828601613469565b92505060206136e48582860161347e565b9150509250929050565b6000806040838503121561370557613704614851565b5b600061371385828601613469565b925050602061372485828601613541565b9150509250929050565b60006020828403121561374457613743614851565b5b600061375284828501613493565b91505092915050565b60006020828403121561377157613770614851565b5b600061377f848285016134a8565b91505092915050565b6000806020838503121561379f5761379e614851565b5b600083013567ffffffffffffffff8111156137bd576137bc61484c565b5b6137c9858286016134eb565b92509250509250929050565b6000602082840312156137eb576137ea614851565b5b60006137f984828501613541565b91505092915050565b6000806040838503121561381957613818614851565b5b600061382785828601613556565b92505060206138388582860161347e565b9150509250929050565b61384b81614560565b82525050565b61385a81614560565b82525050565b61386981614572565b82525050565b600061387a82614383565b6138848185614399565b9350613894818560208601614613565b61389d81614856565b840191505092915050565b60006138b38261438e565b6138bd81856143b5565b93506138cd818560208601614613565b6138d681614856565b840191505092915050565b60006138ec8261438e565b6138f681856143c6565b9350613906818560208601614613565b80840191505092915050565b600061391f6022836143b5565b915061392a82614867565b604082019050919050565b60006139426026836143b5565b915061394d826148b6565b604082019050919050565b6000613965602a836143b5565b915061397082614905565b604082019050919050565b6000613988602c836143b5565b915061399382614954565b604082019050919050565b60006139ab6023836143b5565b91506139b6826149a3565b604082019050919050565b60006139ce6025836143b5565b91506139d9826149f2565b604082019050919050565b60006139f16031836143b5565b91506139fc82614a41565b604082019050919050565b6000613a14601e836143b5565b9150613a1f82614a90565b602082019050919050565b6000613a376039836143b5565b9150613a4282614ab9565b604082019050919050565b6000613a5a6018836143b5565b9150613a6582614b08565b602082019050919050565b6000613a7d602b836143b5565b9150613a8882614b31565b604082019050919050565b6000613aa06012836143b5565b9150613aab82614b80565b602082019050919050565b6000613ac36026836143b5565b9150613ace82614ba9565b604082019050919050565b6000613ae66020836143b5565b9150613af182614bf8565b602082019050919050565b6000613b09602f836143b5565b9150613b1482614c21565b604082019050919050565b6000613b2c601a836143b5565b9150613b3782614c70565b602082019050919050565b6000613b4f6032836143b5565b9150613b5a82614c99565b604082019050919050565b6000613b72601d836143b5565b9150613b7d82614ce8565b602082019050919050565b6000613b956022836143b5565b9150613ba082614d11565b604082019050919050565b6000613bb86000836143aa565b9150613bc382614d60565b600082019050919050565b6000613bdb6010836143b5565b9150613be682614d63565b602082019050919050565b6000613bfe6033836143b5565b9150613c0982614d8c565b604082019050919050565b6000613c216016836143b5565b9150613c2c82614ddb565b602082019050919050565b6000613c44601d836143b5565b9150613c4f82614e04565b602082019050919050565b6000613c676021836143b5565b9150613c7282614e2d565b604082019050919050565b6000613c8a6016836143b5565b9150613c9582614e7c565b602082019050919050565b6000613cad6034836143b5565b9150613cb882614ea5565b604082019050919050565b6000613cd0602e836143b5565b9150613cdb82614ef4565b604082019050919050565b6000613cf36026836143b5565b9150613cfe82614f43565b604082019050919050565b6000613d16601f836143b5565b9150613d2182614f92565b602082019050919050565b6000613d39602f836143b5565b9150613d4482614fbb565b604082019050919050565b6000613d5c602d836143b5565b9150613d678261500a565b604082019050919050565b6000613d7f6022836143b5565b9150613d8a82615059565b604082019050919050565b604082016000820151613dab6000850182613842565b506020820151613dbe6020850182613dd3565b50505050565b613dcd816145e6565b82525050565b613ddc816145f0565b82525050565b613deb816145f0565b82525050565b6000613dfd82856138e1565b9150613e0982846138e1565b91508190509392505050565b6000613e2082613bab565b9150819050919050565b6000602082019050613e3f6000830184613851565b92915050565b6000608082019050613e5a6000830187613851565b613e676020830186613851565b613e746040830185613dc4565b8181036060830152613e86818461386f565b905095945050505050565b6000602082019050613ea66000830184613860565b92915050565b60006020820190508181036000830152613ec681846138a8565b905092915050565b60006020820190508181036000830152613ee781613912565b9050919050565b60006020820190508181036000830152613f0781613935565b9050919050565b60006020820190508181036000830152613f2781613958565b9050919050565b60006020820190508181036000830152613f478161397b565b9050919050565b60006020820190508181036000830152613f678161399e565b9050919050565b60006020820190508181036000830152613f87816139c1565b9050919050565b60006020820190508181036000830152613fa7816139e4565b9050919050565b60006020820190508181036000830152613fc781613a07565b9050919050565b60006020820190508181036000830152613fe781613a2a565b9050919050565b6000602082019050818103600083015261400781613a4d565b9050919050565b6000602082019050818103600083015261402781613a70565b9050919050565b6000602082019050818103600083015261404781613a93565b9050919050565b6000602082019050818103600083015261406781613ab6565b9050919050565b6000602082019050818103600083015261408781613ad9565b9050919050565b600060208201905081810360008301526140a781613afc565b9050919050565b600060208201905081810360008301526140c781613b1f565b9050919050565b600060208201905081810360008301526140e781613b42565b9050919050565b6000602082019050818103600083015261410781613b65565b9050919050565b6000602082019050818103600083015261412781613b88565b9050919050565b6000602082019050818103600083015261414781613bce565b9050919050565b6000602082019050818103600083015261416781613bf1565b9050919050565b6000602082019050818103600083015261418781613c14565b9050919050565b600060208201905081810360008301526141a781613c37565b9050919050565b600060208201905081810360008301526141c781613c5a565b9050919050565b600060208201905081810360008301526141e781613c7d565b9050919050565b6000602082019050818103600083015261420781613ca0565b9050919050565b6000602082019050818103600083015261422781613cc3565b9050919050565b6000602082019050818103600083015261424781613ce6565b9050919050565b6000602082019050818103600083015261426781613d09565b9050919050565b6000602082019050818103600083015261428781613d2c565b9050919050565b600060208201905081810360008301526142a781613d4f565b9050919050565b600060208201905081810360008301526142c781613d72565b9050919050565b60006040820190506142e36000830184613d95565b92915050565b60006020820190506142fe6000830184613dc4565b92915050565b60006040820190506143196000830185613de2565b6143266020830184613860565b9392505050565b6000614337614348565b905061434382826146a2565b919050565b6000604051905090565b600067ffffffffffffffff82111561436d5761436c614809565b5b61437682614856565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006143dc826145aa565b91506143e7836145aa565b9250826fffffffffffffffffffffffffffffffff0382111561440c5761440b61474d565b5b828201905092915050565b6000614422826145e6565b915061442d836145e6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144625761446161474d565b5b828201905092915050565b6000614478826145e6565b9150614483836145e6565b9250826144935761449261477c565b5b828204905092915050565b60006144a9826145e6565b91506144b4836145e6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156144ed576144ec61474d565b5b828202905092915050565b6000614503826145aa565b915061450e836145aa565b9250828210156145215761452061474d565b5b828203905092915050565b6000614537826145e6565b9150614542836145e6565b9250828210156145555761455461474d565b5b828203905092915050565b600061456b826145c6565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015614631578082015181840152602081019050614616565b83811115614640576000848401525b50505050565b6000614651826145e6565b915060008214156146655761466461474d565b5b600182039050919050565b6000600282049050600182168061468857607f821691505b6020821081141561469c5761469b6147ab565b5b50919050565b6146ab82614856565b810181811067ffffffffffffffff821117156146ca576146c9614809565b5b80604052505050565b60006146de826145e6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156147115761471061474d565b5b600182019050919050565b6000614727826145e6565b9150614732836145e6565b9250826147425761474161477c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060008201527f6d6178426174636853697a650000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f7075626c69632073616c6520686173206e6f7420626567756e20796574000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f4e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f63616e206e6f74206d696e742074686973206d616e7900000000000000000000600082015250565b7f796f75206e65656420746f2063686f6f73652061206c6f776572207175616e7460008201527f69747920746f206d696e7420666f722066726565000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360008201527f6c65616e75700000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6150b181614560565b81146150bc57600080fd5b50565b6150c881614572565b81146150d357600080fd5b50565b6150df8161457e565b81146150ea57600080fd5b50565b6150f6816145e6565b811461510157600080fd5b50565b61510d816145f0565b811461511857600080fd5b5056fea26469706673582212209e04391f65e6e24e15bb237b8d5e2a906a40702699375df83bbc82250331013064736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101d85760003560e01c80638bc35c2f11610102578063b3ab66b011610095578063dc33e68111610064578063dc33e681146106b0578063e985e9c5146106ed578063eddc080d1461072a578063f2fde38b14610753576101d8565b8063b3ab66b014610603578063b88d4fde1461061f578063c87b56dd14610648578063d7224ba014610685576101d8565b806395d89b41116100d157806395d89b411461056d578063a1da579d14610598578063a22cb465146105c3578063ac446002146105ec576101d8565b80638bc35c2f146104ae5780638da5cb5b146104d957806390aa0b0f146105045780639231ab2a14610530576101d8565b80632f745c591161017a57806355f804b31161014957806355f804b3146103f45780636352211e1461041d57806370a082311461045a578063715018a614610497576101d8565b80632f745c5914610328578063375a069a1461036557806342842e0e1461038e5780634f6ccce7146103b7576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806318160ddd146102ab57806323b872dd146102d65780632d20fb60146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff919061372e565b61077c565b6040516102119190613e91565b60405180910390f35b34801561022657600080fd5b5061022f6108c6565b60405161023c9190613eac565b60405180910390f35b34801561025157600080fd5b5061026c600480360381019061026791906137d5565b610958565b6040516102799190613e2a565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a491906136ee565b6109dd565b005b3480156102b757600080fd5b506102c0610af6565b6040516102cd91906142e9565b60405180910390f35b3480156102e257600080fd5b506102fd60048036038101906102f891906135d8565b610b00565b005b34801561030b57600080fd5b50610326600480360381019061032191906137d5565b610b10565b005b34801561033457600080fd5b5061034f600480360381019061034a91906136ee565b610bee565b60405161035c91906142e9565b60405180910390f35b34801561037157600080fd5b5061038c600480360381019061038791906137d5565b610dec565b005b34801561039a57600080fd5b506103b560048036038101906103b091906135d8565b610fc8565b005b3480156103c357600080fd5b506103de60048036038101906103d991906137d5565b610fe8565b6040516103eb91906142e9565b60405180910390f35b34801561040057600080fd5b5061041b60048036038101906104169190613788565b61103b565b005b34801561042957600080fd5b50610444600480360381019061043f91906137d5565b6110cd565b6040516104519190613e2a565b60405180910390f35b34801561046657600080fd5b50610481600480360381019061047c919061356b565b6110e3565b60405161048e91906142e9565b60405180910390f35b3480156104a357600080fd5b506104ac6111cc565b005b3480156104ba57600080fd5b506104c3611254565b6040516104d091906142e9565b60405180910390f35b3480156104e557600080fd5b506104ee611259565b6040516104fb9190613e2a565b60405180910390f35b34801561051057600080fd5b50610519611282565b604051610527929190614304565b60405180910390f35b34801561053c57600080fd5b50610557600480360381019061055291906137d5565b6112b5565b60405161056491906142ce565b60405180910390f35b34801561057957600080fd5b506105826112cd565b60405161058f9190613eac565b60405180910390f35b3480156105a457600080fd5b506105ad61135f565b6040516105ba91906142e9565b60405180910390f35b3480156105cf57600080fd5b506105ea60048036038101906105e591906136ae565b611365565b005b3480156105f857600080fd5b506106016114e6565b005b61061d600480360381019061061891906137d5565b611667565b005b34801561062b57600080fd5b506106466004803603810190610641919061362b565b611903565b005b34801561065457600080fd5b5061066f600480360381019061066a91906137d5565b61195f565b60405161067c9190613eac565b60405180910390f35b34801561069157600080fd5b5061069a611a18565b6040516106a791906142e9565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d2919061356b565b611a1e565b6040516106e491906142e9565b60405180910390f35b3480156106f957600080fd5b50610714600480360381019061070f9190613598565b611a30565b6040516107219190613e91565b60405180910390f35b34801561073657600080fd5b50610751600480360381019061074c9190613802565b611ac4565b005b34801561075f57600080fd5b5061077a6004803603810190610775919061356b565b611bb9565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061084757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108af57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108bf57506108be82611cb1565b5b9050919050565b6060600280546108d590614670565b80601f016020809104026020016040519081016040528092919081815260200182805461090190614670565b801561094e5780601f106109235761010080835404028352916020019161094e565b820191906000526020600020905b81548152906001019060200180831161093157829003601f168201915b5050505050905090565b600061096382611d1b565b6109a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109999061428e565b60405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109e8826110cd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a509061410e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a78611d29565b73ffffffffffffffffffffffffffffffffffffffff161480610aa75750610aa681610aa1611d29565b611a30565b5b610ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610add90613fce565b60405180910390fd5b610af1838383611d31565b505050565b6000600154905090565b610b0b838383611de3565b505050565b610b18611d29565b73ffffffffffffffffffffffffffffffffffffffff16610b36611259565b73ffffffffffffffffffffffffffffffffffffffff1614610b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b839061406e565b60405180910390fd5b60026009541415610bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc99061424e565b60405180910390fd5b6002600981905550610be38161239c565b600160098190555050565b6000610bf9836110e3565b8210610c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3190613ece565b60405180910390fd5b6000610c44610af6565b905060008060005b83811015610daa576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610d3e57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d965786841415610d87578195505050505050610de6565b8380610d92906146d3565b9450505b508080610da2906146d3565b915050610c4c565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddd9061420e565b60405180910390fd5b92915050565b610df4611d29565b73ffffffffffffffffffffffffffffffffffffffff16610e12611259565b73ffffffffffffffffffffffffffffffffffffffff1614610e68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5f9061406e565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000177081610e92610af6565b610e9c9190614417565b1115610edd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed49061402e565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000a82610f0b919061471c565b14610f4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4290613f2e565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000a82610f79919061446d565b905060005b81811015610fc357610fb0337f000000000000000000000000000000000000000000000000000000000000000a61262a565b8080610fbb906146d3565b915050610f7e565b505050565b610fe383838360405180602001604052806000815250611903565b505050565b6000610ff2610af6565b8210611033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102a90613f4e565b60405180910390fd5b819050919050565b611043611d29565b73ffffffffffffffffffffffffffffffffffffffff16611061611259565b73ffffffffffffffffffffffffffffffffffffffff16146110b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ae9061406e565b60405180910390fd5b8181600b91906110c892919061334a565b505050565b60006110d882612648565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611154576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114b9061400e565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b6111d4611d29565b73ffffffffffffffffffffffffffffffffffffffff166111f2611259565b73ffffffffffffffffffffffffffffffffffffffff1614611248576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123f9061406e565b60405180910390fd5b611252600061284b565b565b601e81565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a8060000160009054906101000a900467ffffffffffffffff16908060000160089054906101000a900460ff16905082565b6112bd6133d0565b6112c682612648565b9050919050565b6060600380546112dc90614670565b80601f016020809104026020016040519081016040528092919081815260200182805461130890614670565b80156113555780601f1061132a57610100808354040283529160200191611355565b820191906000526020600020905b81548152906001019060200180831161133857829003601f168201915b5050505050905090565b6103e881565b61136d611d29565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d2906140ae565b60405180910390fd5b80600760006113e8611d29565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611495611d29565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114da9190613e91565b60405180910390a35050565b6114ee611d29565b73ffffffffffffffffffffffffffffffffffffffff1661150c611259565b73ffffffffffffffffffffffffffffffffffffffff1614611562576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115599061406e565b60405180910390fd5b600260095414156115a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159f9061424e565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff16476040516115d690613e15565b60006040518083038185875af1925050503d8060008114611613576040519150601f19603f3d011682016040523d82523d6000602084013e611618565b606091505b505090508061165c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116539061412e565b60405180910390fd5b506001600981905550565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146116d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cc90613fae565b60405180910390fd5b6000600a6040518060400160405290816000820160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff1681526020016000820160089054906101000a900460ff16151515158152505090506000816020015190506000826000015167ffffffffffffffff169050611759818361290f565b611798576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178f906140ee565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000001770846117c2610af6565b6117cc9190614417565b111561180d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118049061402e565b60405180910390fd5b601e8461181933611a1e565b6118239190614417565b1115611864576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185b906141ce565b60405180910390fd5b6103e861186f610af6565b10156118cd576103e884611881610af6565b61188b9190614417565b11156118cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c3906141ee565b60405180910390fd5b5b6118d7338561262a565b6103e86118e2610af6565b11156118fd576118fc84826118f7919061449e565b612927565b5b50505050565b61190e848484611de3565b61191a848484846129c8565b611959576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119509061414e565b60405180910390fd5b50505050565b606061196a82611d1b565b6119a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a09061408e565b60405180910390fd5b60006001836119b89190614417565b905060006119c4612b5f565b905060008151116119e45760405180602001604052806000815250611a0f565b806119ee83612bf1565b6040516020016119ff929190613df1565b6040516020818303038152906040525b92505050919050565b60085481565b6000611a2982612d52565b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611acc611d29565b73ffffffffffffffffffffffffffffffffffffffff16611aea611259565b73ffffffffffffffffffffffffffffffffffffffff1614611b40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b379061406e565b60405180910390fd5b60405180604001604052808367ffffffffffffffff168152602001821515815250600a60008201518160000160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060208201518160000160086101000a81548160ff0219169083151502179055509050505050565b611bc1611d29565b73ffffffffffffffffffffffffffffffffffffffff16611bdf611259565b73ffffffffffffffffffffffffffffffffffffffff1614611c35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2c9061406e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ca5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9c90613eee565b60405180910390fd5b611cae8161284b565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482109050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611dee82612648565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611e15611d29565b73ffffffffffffffffffffffffffffffffffffffff161480611e715750611e3a611d29565b73ffffffffffffffffffffffffffffffffffffffff16611e5984610958565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e8d5750611e8c8260000151611e87611d29565b611a30565b5b905080611ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec6906140ce565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611f41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f389061404e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611fb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa890613f6e565b60405180910390fd5b611fbe8585856001612e3b565b611fce6000848460000151611d31565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff1661203c91906144f8565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166120e091906143d1565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846121e69190614417565b9050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561232c5761225c81611d1b565b1561232b576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506004600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123948686866001612e41565b505050505050565b60006008549050600082116123e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123dd90613fee565b60405180910390fd5b6000600183836123f69190614417565b612400919061452c565b905060017f000000000000000000000000000000000000000000000000000000000000177061242f919061452c565b8111156124665760017f0000000000000000000000000000000000000000000000000000000000001770612463919061452c565b90505b61246f81611d1b565b6124ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a59061422e565b60405180910390fd5b60008290505b81811161261157600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156125fe57600061253182612648565b90506040518060400160405280826000015173ffffffffffffffffffffffffffffffffffffffff168152602001826020015167ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050505b8080612609906146d3565b9150506124b4565b5060018161261f9190614417565b600881905550505050565b612644828260405180602001604052806000815250612e47565b5050565b6126506133d0565b61265982611d1b565b612698576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268f90613f0e565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000a83106126fc5760017f000000000000000000000000000000000000000000000000000000000000000a846126ef919061452c565b6126f99190614417565b90505b60008390505b81811061280a576000600460008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127f657809350505050612846565b50808061280290614646565b915050612702565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283d9061426e565b60405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080831415801561291f575081155b905092915050565b8034101561296a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129619061416e565b60405180910390fd5b803411156129c5573373ffffffffffffffffffffffffffffffffffffffff166108fc8234612998919061452c565b9081150290604051600060405180830381858888f193505050501580156129c3573d6000803e3d6000fd5b505b50565b60006129e98473ffffffffffffffffffffffffffffffffffffffff16613327565b15612b52578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a12611d29565b8786866040518563ffffffff1660e01b8152600401612a349493929190613e45565b602060405180830381600087803b158015612a4e57600080fd5b505af1925050508015612a7f57506040513d601f19601f82011682018060405250810190612a7c919061375b565b60015b612b02573d8060008114612aaf576040519150601f19603f3d011682016040523d82523d6000602084013e612ab4565b606091505b50600081511415612afa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af19061414e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612b57565b600190505b949350505050565b6060600b8054612b6e90614670565b80601f0160208091040260200160405190810160405280929190818152602001828054612b9a90614670565b8015612be75780601f10612bbc57610100808354040283529160200191612be7565b820191906000526020600020905b815481529060010190602001808311612bca57829003601f168201915b5050505050905090565b60606000821415612c39576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d4d565b600082905060005b60008214612c6b578080612c54906146d3565b915050600a82612c64919061446d565b9150612c41565b60008167ffffffffffffffff811115612c8757612c86614809565b5b6040519080825280601f01601f191660200182016040528015612cb95781602001600182028036833780820191505090505b5090505b60008514612d4657600182612cd2919061452c565b9150600a85612ce1919061471c565b6030612ced9190614417565b60f81b818381518110612d0357612d026147da565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d3f919061446d565b9450612cbd565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612dc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dba90613f8e565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb5906141ae565b60405180910390fd5b612ec781611d1b565b15612f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612efe9061418e565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000a831115612f6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f61906142ae565b60405180910390fd5b612f776000858386612e3b565b6000600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161307491906143d1565b6fffffffffffffffffffffffffffffffff16815260200185836020015161309b91906143d1565b6fffffffffffffffffffffffffffffffff16815250600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506004600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561330a57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46132aa60008884886129c8565b6132e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132e09061414e565b60405180910390fd5b81806132f4906146d3565b9250508080613302906146d3565b915050613239565b508060018190555061331f6000878588612e41565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461335690614670565b90600052602060002090601f01602090048101928261337857600085556133bf565b82601f1061339157803560ff19168380011785556133bf565b828001600101855582156133bf579182015b828111156133be5782358255916020019190600101906133a3565b5b5090506133cc919061340a565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561342357600081600090555060010161340b565b5090565b600061343a61343584614352565b61432d565b90508281526020810184848401111561345657613455614847565b5b613461848285614604565b509392505050565b600081359050613478816150a8565b92915050565b60008135905061348d816150bf565b92915050565b6000813590506134a2816150d6565b92915050565b6000815190506134b7816150d6565b92915050565b600082601f8301126134d2576134d161483d565b5b81356134e2848260208601613427565b91505092915050565b60008083601f8401126135015761350061483d565b5b8235905067ffffffffffffffff81111561351e5761351d614838565b5b60208301915083600182028301111561353a57613539614842565b5b9250929050565b600081359050613550816150ed565b92915050565b60008135905061356581615104565b92915050565b60006020828403121561358157613580614851565b5b600061358f84828501613469565b91505092915050565b600080604083850312156135af576135ae614851565b5b60006135bd85828601613469565b92505060206135ce85828601613469565b9150509250929050565b6000806000606084860312156135f1576135f0614851565b5b60006135ff86828701613469565b935050602061361086828701613469565b925050604061362186828701613541565b9150509250925092565b6000806000806080858703121561364557613644614851565b5b600061365387828801613469565b945050602061366487828801613469565b935050604061367587828801613541565b925050606085013567ffffffffffffffff8111156136965761369561484c565b5b6136a2878288016134bd565b91505092959194509250565b600080604083850312156136c5576136c4614851565b5b60006136d385828601613469565b92505060206136e48582860161347e565b9150509250929050565b6000806040838503121561370557613704614851565b5b600061371385828601613469565b925050602061372485828601613541565b9150509250929050565b60006020828403121561374457613743614851565b5b600061375284828501613493565b91505092915050565b60006020828403121561377157613770614851565b5b600061377f848285016134a8565b91505092915050565b6000806020838503121561379f5761379e614851565b5b600083013567ffffffffffffffff8111156137bd576137bc61484c565b5b6137c9858286016134eb565b92509250509250929050565b6000602082840312156137eb576137ea614851565b5b60006137f984828501613541565b91505092915050565b6000806040838503121561381957613818614851565b5b600061382785828601613556565b92505060206138388582860161347e565b9150509250929050565b61384b81614560565b82525050565b61385a81614560565b82525050565b61386981614572565b82525050565b600061387a82614383565b6138848185614399565b9350613894818560208601614613565b61389d81614856565b840191505092915050565b60006138b38261438e565b6138bd81856143b5565b93506138cd818560208601614613565b6138d681614856565b840191505092915050565b60006138ec8261438e565b6138f681856143c6565b9350613906818560208601614613565b80840191505092915050565b600061391f6022836143b5565b915061392a82614867565b604082019050919050565b60006139426026836143b5565b915061394d826148b6565b604082019050919050565b6000613965602a836143b5565b915061397082614905565b604082019050919050565b6000613988602c836143b5565b915061399382614954565b604082019050919050565b60006139ab6023836143b5565b91506139b6826149a3565b604082019050919050565b60006139ce6025836143b5565b91506139d9826149f2565b604082019050919050565b60006139f16031836143b5565b91506139fc82614a41565b604082019050919050565b6000613a14601e836143b5565b9150613a1f82614a90565b602082019050919050565b6000613a376039836143b5565b9150613a4282614ab9565b604082019050919050565b6000613a5a6018836143b5565b9150613a6582614b08565b602082019050919050565b6000613a7d602b836143b5565b9150613a8882614b31565b604082019050919050565b6000613aa06012836143b5565b9150613aab82614b80565b602082019050919050565b6000613ac36026836143b5565b9150613ace82614ba9565b604082019050919050565b6000613ae66020836143b5565b9150613af182614bf8565b602082019050919050565b6000613b09602f836143b5565b9150613b1482614c21565b604082019050919050565b6000613b2c601a836143b5565b9150613b3782614c70565b602082019050919050565b6000613b4f6032836143b5565b9150613b5a82614c99565b604082019050919050565b6000613b72601d836143b5565b9150613b7d82614ce8565b602082019050919050565b6000613b956022836143b5565b9150613ba082614d11565b604082019050919050565b6000613bb86000836143aa565b9150613bc382614d60565b600082019050919050565b6000613bdb6010836143b5565b9150613be682614d63565b602082019050919050565b6000613bfe6033836143b5565b9150613c0982614d8c565b604082019050919050565b6000613c216016836143b5565b9150613c2c82614ddb565b602082019050919050565b6000613c44601d836143b5565b9150613c4f82614e04565b602082019050919050565b6000613c676021836143b5565b9150613c7282614e2d565b604082019050919050565b6000613c8a6016836143b5565b9150613c9582614e7c565b602082019050919050565b6000613cad6034836143b5565b9150613cb882614ea5565b604082019050919050565b6000613cd0602e836143b5565b9150613cdb82614ef4565b604082019050919050565b6000613cf36026836143b5565b9150613cfe82614f43565b604082019050919050565b6000613d16601f836143b5565b9150613d2182614f92565b602082019050919050565b6000613d39602f836143b5565b9150613d4482614fbb565b604082019050919050565b6000613d5c602d836143b5565b9150613d678261500a565b604082019050919050565b6000613d7f6022836143b5565b9150613d8a82615059565b604082019050919050565b604082016000820151613dab6000850182613842565b506020820151613dbe6020850182613dd3565b50505050565b613dcd816145e6565b82525050565b613ddc816145f0565b82525050565b613deb816145f0565b82525050565b6000613dfd82856138e1565b9150613e0982846138e1565b91508190509392505050565b6000613e2082613bab565b9150819050919050565b6000602082019050613e3f6000830184613851565b92915050565b6000608082019050613e5a6000830187613851565b613e676020830186613851565b613e746040830185613dc4565b8181036060830152613e86818461386f565b905095945050505050565b6000602082019050613ea66000830184613860565b92915050565b60006020820190508181036000830152613ec681846138a8565b905092915050565b60006020820190508181036000830152613ee781613912565b9050919050565b60006020820190508181036000830152613f0781613935565b9050919050565b60006020820190508181036000830152613f2781613958565b9050919050565b60006020820190508181036000830152613f478161397b565b9050919050565b60006020820190508181036000830152613f678161399e565b9050919050565b60006020820190508181036000830152613f87816139c1565b9050919050565b60006020820190508181036000830152613fa7816139e4565b9050919050565b60006020820190508181036000830152613fc781613a07565b9050919050565b60006020820190508181036000830152613fe781613a2a565b9050919050565b6000602082019050818103600083015261400781613a4d565b9050919050565b6000602082019050818103600083015261402781613a70565b9050919050565b6000602082019050818103600083015261404781613a93565b9050919050565b6000602082019050818103600083015261406781613ab6565b9050919050565b6000602082019050818103600083015261408781613ad9565b9050919050565b600060208201905081810360008301526140a781613afc565b9050919050565b600060208201905081810360008301526140c781613b1f565b9050919050565b600060208201905081810360008301526140e781613b42565b9050919050565b6000602082019050818103600083015261410781613b65565b9050919050565b6000602082019050818103600083015261412781613b88565b9050919050565b6000602082019050818103600083015261414781613bce565b9050919050565b6000602082019050818103600083015261416781613bf1565b9050919050565b6000602082019050818103600083015261418781613c14565b9050919050565b600060208201905081810360008301526141a781613c37565b9050919050565b600060208201905081810360008301526141c781613c5a565b9050919050565b600060208201905081810360008301526141e781613c7d565b9050919050565b6000602082019050818103600083015261420781613ca0565b9050919050565b6000602082019050818103600083015261422781613cc3565b9050919050565b6000602082019050818103600083015261424781613ce6565b9050919050565b6000602082019050818103600083015261426781613d09565b9050919050565b6000602082019050818103600083015261428781613d2c565b9050919050565b600060208201905081810360008301526142a781613d4f565b9050919050565b600060208201905081810360008301526142c781613d72565b9050919050565b60006040820190506142e36000830184613d95565b92915050565b60006020820190506142fe6000830184613dc4565b92915050565b60006040820190506143196000830185613de2565b6143266020830184613860565b9392505050565b6000614337614348565b905061434382826146a2565b919050565b6000604051905090565b600067ffffffffffffffff82111561436d5761436c614809565b5b61437682614856565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006143dc826145aa565b91506143e7836145aa565b9250826fffffffffffffffffffffffffffffffff0382111561440c5761440b61474d565b5b828201905092915050565b6000614422826145e6565b915061442d836145e6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144625761446161474d565b5b828201905092915050565b6000614478826145e6565b9150614483836145e6565b9250826144935761449261477c565b5b828204905092915050565b60006144a9826145e6565b91506144b4836145e6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156144ed576144ec61474d565b5b828202905092915050565b6000614503826145aa565b915061450e836145aa565b9250828210156145215761452061474d565b5b828203905092915050565b6000614537826145e6565b9150614542836145e6565b9250828210156145555761455461474d565b5b828203905092915050565b600061456b826145c6565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015614631578082015181840152602081019050614616565b83811115614640576000848401525b50505050565b6000614651826145e6565b915060008214156146655761466461474d565b5b600182039050919050565b6000600282049050600182168061468857607f821691505b6020821081141561469c5761469b6147ab565b5b50919050565b6146ab82614856565b810181811067ffffffffffffffff821117156146ca576146c9614809565b5b80604052505050565b60006146de826145e6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156147115761471061474d565b5b600182019050919050565b6000614727826145e6565b9150614732836145e6565b9250826147425761474161477c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060008201527f6d6178426174636853697a650000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f7075626c69632073616c6520686173206e6f7420626567756e20796574000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f4e65656420746f2073656e64206d6f7265204554482e00000000000000000000600082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f63616e206e6f74206d696e742074686973206d616e7900000000000000000000600082015250565b7f796f75206e65656420746f2063686f6f73652061206c6f776572207175616e7460008201527f69747920746f206d696e7420666f722066726565000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360008201527f6c65616e75700000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b6150b181614560565b81146150bc57600080fd5b50565b6150c881614572565b81146150d357600080fd5b50565b6150df8161457e565b81146150ea57600080fd5b50565b6150f6816145e6565b811461510157600080fd5b50565b61510d816145f0565b811461511857600080fd5b5056fea26469706673582212209e04391f65e6e24e15bb237b8d5e2a906a40702699375df83bbc82250331013064736f6c63430008070033

Deployed Bytecode Sourcemap

42723:3241:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27766:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29492:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31061:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30624:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26327:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31911:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45577:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26958:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44528:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32116:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26490:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45284:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29315:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28192:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41825:103;;;;;;;;;;;;;:::i;:::-;;42841:52;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41174:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42973:28;;;;;;;;;;;;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;45814:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29647:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42792:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31329:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45390:181;;;;;;;;;;;;;:::i;:::-;;43276:838;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32336:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29808:438;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36751:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45701:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31666:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44935:172;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42083:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27766:370;27893:4;27938:25;27923:40;;;:11;:40;;;;:99;;;;27989:33;27974:48;;;:11;:48;;;;27923:99;:160;;;;28048:35;28033:50;;;:11;:50;;;;27923:160;:207;;;;28094:36;28118:11;28094:23;:36::i;:::-;27923:207;27909:221;;27766:370;;;:::o;29492:94::-;29546:13;29575:5;29568:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29492:94;:::o;31061:204::-;31129:7;31153:16;31161:7;31153;:16::i;:::-;31145:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;31235:15;:24;31251:7;31235:24;;;;;;;;;;;;;;;;;;;;;31228:31;;31061:204;;;:::o;30624:379::-;30693:13;30709:24;30725:7;30709:15;:24::i;:::-;30693:40;;30754:5;30748:11;;:2;:11;;;;30740:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;30839:5;30823:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;30848:37;30865:5;30872:12;:10;:12::i;:::-;30848:16;:37::i;:::-;30823:62;30807:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;30969:28;30978:2;30982:7;30991:5;30969:8;:28::i;:::-;30686:317;30624:379;;:::o;26327:94::-;26380:7;26403:12;;26396:19;;26327:94;:::o;31911:142::-;32019:28;32029:4;32035:2;32039:7;32019:9;:28::i;:::-;31911:142;;;:::o;45577:118::-;41405:12;:10;:12::i;:::-;41394:23;;:7;:5;:7::i;:::-;:23;;;41386:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22171:1:::1;22769:7;;:19;;22761:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;22171:1;22902:7;:18;;;;45661:28:::2;45680:8;45661:18;:28::i;:::-;22127:1:::1;23081:7;:22;;;;45577:118:::0;:::o;26958:744::-;27067:7;27102:16;27112:5;27102:9;:16::i;:::-;27094:5;:24;27086:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;27164:22;27189:13;:11;:13::i;:::-;27164:38;;27209:19;27239:25;27289:9;27284:350;27308:14;27304:1;:18;27284:350;;;27338:31;27372:11;:14;27384:1;27372:14;;;;;;;;;;;27338:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27425:1;27399:28;;:9;:14;;;:28;;;27395:89;;27460:9;:14;;;27440:34;;27395:89;27517:5;27496:26;;:17;:26;;;27492:135;;;27554:5;27539:11;:20;27535:59;;;27581:1;27574:8;;;;;;;;;27535:59;27604:13;;;;;:::i;:::-;;;;27492:135;27329:305;27324:3;;;;;:::i;:::-;;;;27284:350;;;;27640:56;;;;;;;;;;:::i;:::-;;;;;;;;26958:744;;;;;:::o;44528:401::-;41405:12;:10;:12::i;:::-;41394:23;;:7;:5;:7::i;:::-;:23;;;41386:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44625:14:::1;44613:8;44597:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:42;;44589:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;44712:1;44696:12;44685:8;:23;;;;:::i;:::-;:28;44669:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;44782:17;44813:12;44802:8;:23;;;;:::i;:::-;44782:43;;44837:9;44832:92;44856:9;44852:1;:13;44832:92;;;44881:35;44891:10;44903:12;44881:9;:35::i;:::-;44867:3;;;;;:::i;:::-;;;;44832:92;;;;44582:347;44528:401:::0;:::o;32116:157::-;32228:39;32245:4;32251:2;32255:7;32228:39;;;;;;;;;;;;:16;:39::i;:::-;32116:157;;;:::o;26490:177::-;26557:7;26589:13;:11;:13::i;:::-;26581:5;:21;26573:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;26656:5;26649:12;;26490:177;;;:::o;45284:100::-;41405:12;:10;:12::i;:::-;41394:23;;:7;:5;:7::i;:::-;:23;;;41386:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45371:7:::1;;45355:13;:23;;;;;;;:::i;:::-;;45284:100:::0;;:::o;29315:118::-;29379:7;29402:20;29414:7;29402:11;:20::i;:::-;:25;;;29395:32;;29315:118;;;:::o;28192:211::-;28256:7;28297:1;28280:19;;:5;:19;;;;28272:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;28369:12;:19;28382:5;28369:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28361:36;;28354:43;;28192:211;;;:::o;41825:103::-;41405:12;:10;:12::i;:::-;41394:23;;:7;:5;:7::i;:::-;:23;;;41386:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41890:30:::1;41917:1;41890:18;:30::i;:::-;41825:103::o:0;42841:52::-;42891:2;42841:52;:::o;41174:87::-;41220:7;41247:6;;;;;;;;;;;41240:13;;41174:87;:::o;42973:28::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45814:147::-;45895:21;;:::i;:::-;45935:20;45947:7;45935:11;:20::i;:::-;45928:27;;45814:147;;;:::o;29647:98::-;29703:13;29732:7;29725:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29647:98;:::o;42792:44::-;42832:4;42792:44;:::o;31329:274::-;31432:12;:10;:12::i;:::-;31420:24;;:8;:24;;;;31412:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;31529:8;31484:18;:32;31503:12;:10;:12::i;:::-;31484:32;;;;;;;;;;;;;;;:42;31517:8;31484:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;31578:8;31549:48;;31564:12;:10;:12::i;:::-;31549:48;;;31588:8;31549:48;;;;;;:::i;:::-;;;;;;;;31329:274;;:::o;45390:181::-;41405:12;:10;:12::i;:::-;41394:23;;:7;:5;:7::i;:::-;:23;;;41386:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22171:1:::1;22769:7;;:19;;22761:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;22171:1;22902:7;:18;;;;45455:12:::2;45473:10;:15;;45496:21;45473:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45454:68;;;45537:7;45529:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;45447:124;22127:1:::1;23081:7;:22;;;;45390:181::o:0;43276:838::-;43209:10;43196:23;;:9;:23;;;43188:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;43373:24:::1;43400:10;43373:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;43417:10;43430:6;:13;;;43417:26;;43450:19;43480:6;:18;;;43472:27;;43450:49;;43524:34;43539:11;43552:5;43524:14;:34::i;:::-;43508:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;43648:14;43636:8;43620:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:42;;43612:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42891:2;43735:8;43708:24;43721:10;43708:12;:24::i;:::-;:35;;;;:::i;:::-;:62;;43692:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;42832:4;43821:13;:11;:13::i;:::-;:29;43817:159;;;42832:4;43886:8;43870:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:41;;43861:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;43817:159;43982:31;43992:10;44004:8;43982:9;:31::i;:::-;42832:4;44025:13;:11;:13::i;:::-;:29;44020:89;;;44065:36;44092:8;44078:11;:22;;;;:::i;:::-;44065:12;:36::i;:::-;44020:89;43366:748;;;43276:838:::0;:::o;32336:311::-;32473:28;32483:4;32489:2;32493:7;32473:9;:28::i;:::-;32524:48;32547:4;32553:2;32557:7;32566:5;32524:22;:48::i;:::-;32508:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;32336:311;;;;:::o;29808:438::-;29906:13;29947:16;29955:7;29947;:16::i;:::-;29931:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;30037:18;30068:1;30058:7;:11;;;;:::i;:::-;30037:32;;30078:21;30102:10;:8;:10::i;:::-;30078:34;;30157:1;30139:7;30133:21;:25;:107;;;;;;;;;;;;;;;;;30194:7;30203:21;:10;:19;:21::i;:::-;30177:48;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30133:107;30119:121;;;;29808:438;;;:::o;36751:43::-;;;;:::o;45701:107::-;45759:7;45782:20;45796:5;45782:13;:20::i;:::-;45775:27;;45701:107;;;:::o;31666:186::-;31788:4;31811:18;:25;31830:5;31811:25;;;;;;;;;;;;;;;:35;31837:8;31811:35;;;;;;;;;;;;;;;;;;;;;;;;;31804:42;;31666:186;;;;:::o;44935:172::-;41405:12;:10;:12::i;:::-;41394:23;;:7;:5;:7::i;:::-;:23;;;41386:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45047:54:::1;;;;;;;;45066:14;45047:54;;;;;;45089:5;45047:54;;;;::::0;45034:10:::1;:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44935:172:::0;;:::o;42083:201::-;41405:12;:10;:12::i;:::-;41394:23;;:7;:5;:7::i;:::-;:23;;;41386:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42192:1:::1;42172:22;;:8;:22;;;;42164:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42248:28;42267:8;42248:18;:28::i;:::-;42083:201:::0;:::o;13440:157::-;13525:4;13564:25;13549:40;;;:11;:40;;;;13542:47;;13440:157;;;:::o;32886:105::-;32943:4;32973:12;;32963:7;:22;32956:29;;32886:105;;;:::o;23797:98::-;23850:7;23877:10;23870:17;;23797:98;:::o;36573:172::-;36697:2;36670:15;:24;36686:7;36670:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36731:7;36727:2;36711:28;;36720:5;36711:28;;;;;;;;;;;;36573:172;;;:::o;34938:1529::-;35035:35;35073:20;35085:7;35073:11;:20::i;:::-;35035:58;;35102:22;35144:13;:18;;;35128:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;35197:12;:10;:12::i;:::-;35173:36;;:20;35185:7;35173:11;:20::i;:::-;:36;;;35128:81;:142;;;;35220:50;35237:13;:18;;;35257:12;:10;:12::i;:::-;35220:16;:50::i;:::-;35128:142;35102:169;;35296:17;35280:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;35428:4;35406:26;;:13;:18;;;:26;;;35390:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;35517:1;35503:16;;:2;:16;;;;35495:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;35570:43;35592:4;35598:2;35602:7;35611:1;35570:21;:43::i;:::-;35670:49;35687:1;35691:7;35700:13;:18;;;35670:8;:49::i;:::-;35758:1;35728:12;:18;35741:4;35728:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35794:1;35766:12;:16;35779:2;35766:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;35825:43;;;;;;;;35840:2;35825:43;;;;;;35851:15;35825:43;;;;;35802:11;:20;35814:7;35802:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36096:19;36128:1;36118:7;:11;;;;:::i;:::-;36096:33;;36181:1;36140:43;;:11;:24;36152:11;36140:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;36136:236;;;36198:20;36206:11;36198:7;:20::i;:::-;36194:171;;;36258:97;;;;;;;;36285:13;:18;;;36258:97;;;;;;36316:13;:28;;;36258:97;;;;;36231:11;:24;36243:11;36231:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36194:171;36136:236;36404:7;36400:2;36385:27;;36394:4;36385:27;;;;;;;;;;;;36419:42;36440:4;36446:2;36450:7;36459:1;36419:20;:42::i;:::-;35028:1439;;;34938:1529;;;:::o;36899:846::-;36961:25;36989:24;;36961:52;;37039:1;37028:8;:12;37020:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;37076:16;37126:1;37115:8;37095:17;:28;;;;:::i;:::-;:32;;;;:::i;:::-;37076:51;;37166:1;37149:14;:18;;;;:::i;:::-;37138:8;:29;37134:81;;;37206:1;37189:14;:18;;;;:::i;:::-;37178:29;;37134:81;37330:17;37338:8;37330:7;:17::i;:::-;37322:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37402:9;37414:17;37402:29;;37397:297;37438:8;37433:1;:13;37397:297;;37497:1;37466:33;;:11;:14;37478:1;37466:14;;;;;;;;;;;:19;;;;;;;;;;;;:33;;;37462:225;;;37512:31;37546:14;37558:1;37546:11;:14::i;:::-;37512:48;;37588:89;;;;;;;;37615:9;:14;;;37588:89;;;;;;37642:9;:24;;;37588:89;;;;;37571:11;:14;37583:1;37571:14;;;;;;;;;;;:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37501:186;37462:225;37448:3;;;;;:::i;:::-;;;;37397:297;;;;37738:1;37727:8;:12;;;;:::i;:::-;37700:24;:39;;;;36954:791;;36899:846;:::o;32997:98::-;33062:27;33072:2;33076:8;33062:27;;;;;;;;;;;;:9;:27::i;:::-;32997:98;;:::o;28655:606::-;28731:21;;:::i;:::-;28772:16;28780:7;28772;:16::i;:::-;28764:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;28844:26;28892:12;28881:7;:23;28877:93;;28961:1;28946:12;28936:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;28915:47;;28877:93;28983:12;28998:7;28983:22;;28978:212;29015:18;29007:4;:26;28978:212;;29052:31;29086:11;:17;29098:4;29086:17;;;;;;;;;;;29052:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29142:1;29116:28;;:9;:14;;;:28;;;29112:71;;29164:9;29157:16;;;;;;;29112:71;29043:147;29035:6;;;;;:::i;:::-;;;;28978:212;;;;29198:57;;;;;;;;;;:::i;:::-;;;;;;;;28655:606;;;;:::o;42444:191::-;42518:16;42537:6;;;;;;;;;;;42518:25;;42563:8;42554:6;;:17;;;;;;;;;;;;;;;;;;42618:8;42587:40;;42608:8;42587:40;;;;;;;;;;;;42507:128;42444:191;:::o;44330:167::-;44428:4;44473:1;44455:14;:19;;:36;;;;;44486:5;44485:6;44455:36;44441:50;;44330:167;;;;:::o;44120:204::-;44193:5;44180:9;:18;;44172:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;44248:5;44236:9;:17;44232:87;;;44272:10;44264:28;;:47;44305:5;44293:9;:17;;;;:::i;:::-;44264:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44232:87;44120:204;:::o;38288:690::-;38425:4;38442:15;:2;:13;;;:15::i;:::-;38438:535;;;38497:2;38481:36;;;38518:12;:10;:12::i;:::-;38532:4;38538:7;38547:5;38481:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38468:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38729:1;38712:6;:13;:18;38708:215;;;38745:61;;;;;;;;;;:::i;:::-;;;;;;;;38708:215;38891:6;38885:13;38876:6;38872:2;38868:15;38861:38;38468:464;38613:45;;;38603:55;;;:6;:55;;;;38596:62;;;;;38438:535;38961:4;38954:11;;38288:690;;;;;;;:::o;45170:108::-;45230:13;45259;45252:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45170: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;28409:240::-;28470:7;28519:1;28502:19;;:5;:19;;;;28486:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;28610:12;:19;28623:5;28610:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;28602:41;;28595:48;;28409:240;;;:::o;39440:141::-;;;;;:::o;39967:140::-;;;;;:::o;33434:1272::-;33539:20;33562:12;;33539:35;;33603:1;33589:16;;:2;:16;;;;33581:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;33780:21;33788:12;33780:7;:21::i;:::-;33779:22;33771:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;33862:12;33850:8;:24;;33842:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;33922:61;33952:1;33956:2;33960:12;33974:8;33922:21;:61::i;:::-;33992:30;34025:12;:16;34038:2;34025:16;;;;;;;;;;;;;;;33992:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34067:119;;;;;;;;34117:8;34087:11;:19;;;:39;;;;:::i;:::-;34067:119;;;;;;34170:8;34135:11;:24;;;:44;;;;:::i;:::-;34067:119;;;;;34048:12;:16;34061:2;34048:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34221:43;;;;;;;;34236:2;34221:43;;;;;;34247:15;34221:43;;;;;34193:11;:25;34205:12;34193:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34273:20;34296:12;34273:35;;34322:9;34317:281;34341:8;34337:1;:12;34317:281;;;34395:12;34391:2;34370:38;;34387:1;34370:38;;;;;;;;;;;;34435:59;34466:1;34470:2;34474:12;34488:5;34435:22;:59::i;:::-;34417:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;34576:14;;;;;:::i;:::-;;;;34351:3;;;;;:::i;:::-;;;;34317:281;;;;34621:12;34606;:27;;;;34640:60;34669:1;34673:2;34677:12;34691:8;34640:20;:60::i;:::-;33532:1174;;;33434:1272;;;:::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:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:137::-;2117:5;2155:6;2142:20;2133:29;;2171:32;2197:5;2171:32;:::i;:::-;2072:137;;;;:::o;2215:329::-;2274:6;2323:2;2311:9;2302:7;2298:23;2294:32;2291:119;;;2329:79;;:::i;:::-;2291:119;2449:1;2474:53;2519:7;2510:6;2499:9;2495:22;2474:53;:::i;:::-;2464:63;;2420:117;2215:329;;;;:::o;2550:474::-;2618:6;2626;2675:2;2663:9;2654:7;2650:23;2646:32;2643:119;;;2681:79;;:::i;:::-;2643:119;2801:1;2826:53;2871:7;2862:6;2851:9;2847:22;2826:53;:::i;:::-;2816:63;;2772:117;2928:2;2954:53;2999:7;2990:6;2979:9;2975:22;2954:53;:::i;:::-;2944:63;;2899:118;2550:474;;;;;:::o;3030:619::-;3107:6;3115;3123;3172:2;3160:9;3151:7;3147:23;3143:32;3140:119;;;3178:79;;:::i;:::-;3140:119;3298:1;3323:53;3368:7;3359:6;3348:9;3344:22;3323:53;:::i;:::-;3313:63;;3269:117;3425:2;3451:53;3496:7;3487:6;3476:9;3472:22;3451:53;:::i;:::-;3441:63;;3396:118;3553:2;3579:53;3624:7;3615:6;3604:9;3600:22;3579:53;:::i;:::-;3569:63;;3524:118;3030:619;;;;;:::o;3655:943::-;3750:6;3758;3766;3774;3823:3;3811:9;3802:7;3798:23;3794:33;3791:120;;;3830:79;;:::i;:::-;3791:120;3950:1;3975:53;4020:7;4011:6;4000:9;3996:22;3975:53;:::i;:::-;3965:63;;3921:117;4077:2;4103:53;4148:7;4139:6;4128:9;4124:22;4103:53;:::i;:::-;4093:63;;4048:118;4205:2;4231:53;4276:7;4267:6;4256:9;4252:22;4231:53;:::i;:::-;4221:63;;4176:118;4361:2;4350:9;4346:18;4333:32;4392:18;4384:6;4381:30;4378:117;;;4414:79;;:::i;:::-;4378:117;4519:62;4573:7;4564:6;4553:9;4549:22;4519:62;:::i;:::-;4509:72;;4304:287;3655:943;;;;;;;:::o;4604:468::-;4669:6;4677;4726:2;4714:9;4705:7;4701:23;4697:32;4694:119;;;4732:79;;:::i;:::-;4694:119;4852:1;4877:53;4922:7;4913:6;4902:9;4898:22;4877:53;:::i;:::-;4867:63;;4823:117;4979:2;5005:50;5047:7;5038:6;5027:9;5023:22;5005:50;:::i;:::-;4995:60;;4950:115;4604:468;;;;;:::o;5078:474::-;5146:6;5154;5203:2;5191:9;5182:7;5178:23;5174:32;5171:119;;;5209:79;;:::i;:::-;5171:119;5329:1;5354:53;5399:7;5390:6;5379:9;5375:22;5354:53;:::i;:::-;5344:63;;5300:117;5456:2;5482:53;5527:7;5518:6;5507:9;5503:22;5482:53;:::i;:::-;5472:63;;5427:118;5078:474;;;;;:::o;5558:327::-;5616:6;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:52;5860:7;5851:6;5840:9;5836:22;5816:52;:::i;:::-;5806:62;;5762:116;5558:327;;;;:::o;5891:349::-;5960:6;6009:2;5997:9;5988:7;5984:23;5980:32;5977:119;;;6015:79;;:::i;:::-;5977:119;6135:1;6160:63;6215:7;6206:6;6195:9;6191:22;6160:63;:::i;:::-;6150:73;;6106:127;5891:349;;;;:::o;6246:529::-;6317:6;6325;6374:2;6362:9;6353:7;6349:23;6345:32;6342:119;;;6380:79;;:::i;:::-;6342:119;6528:1;6517:9;6513:17;6500:31;6558:18;6550:6;6547:30;6544:117;;;6580:79;;:::i;:::-;6544:117;6693:65;6750:7;6741:6;6730:9;6726:22;6693:65;:::i;:::-;6675:83;;;;6471:297;6246:529;;;;;:::o;6781:329::-;6840:6;6889:2;6877:9;6868:7;6864:23;6860:32;6857:119;;;6895:79;;:::i;:::-;6857:119;7015:1;7040:53;7085:7;7076:6;7065:9;7061:22;7040:53;:::i;:::-;7030:63;;6986:117;6781:329;;;;:::o;7116:466::-;7180:6;7188;7237:2;7225:9;7216:7;7212:23;7208:32;7205:119;;;7243:79;;:::i;:::-;7205:119;7363:1;7388:52;7432:7;7423:6;7412:9;7408:22;7388:52;:::i;:::-;7378:62;;7334:116;7489:2;7515:50;7557:7;7548:6;7537:9;7533:22;7515:50;:::i;:::-;7505:60;;7460:115;7116:466;;;;;:::o;7588:108::-;7665:24;7683:5;7665:24;:::i;:::-;7660:3;7653:37;7588:108;;:::o;7702:118::-;7789:24;7807:5;7789:24;:::i;:::-;7784:3;7777:37;7702:118;;:::o;7826:109::-;7907:21;7922:5;7907:21;:::i;:::-;7902:3;7895:34;7826:109;;:::o;7941:360::-;8027:3;8055:38;8087:5;8055:38;:::i;:::-;8109:70;8172:6;8167:3;8109:70;:::i;:::-;8102:77;;8188:52;8233:6;8228:3;8221:4;8214:5;8210:16;8188:52;:::i;:::-;8265:29;8287:6;8265:29;:::i;:::-;8260:3;8256:39;8249:46;;8031:270;7941:360;;;;:::o;8307:364::-;8395:3;8423:39;8456:5;8423:39;:::i;:::-;8478:71;8542:6;8537:3;8478:71;:::i;:::-;8471:78;;8558:52;8603:6;8598:3;8591:4;8584:5;8580:16;8558:52;:::i;:::-;8635:29;8657:6;8635:29;:::i;:::-;8630:3;8626:39;8619:46;;8399:272;8307:364;;;;:::o;8677:377::-;8783:3;8811:39;8844:5;8811:39;:::i;:::-;8866:89;8948:6;8943:3;8866:89;:::i;:::-;8859:96;;8964:52;9009:6;9004:3;8997:4;8990:5;8986:16;8964:52;:::i;:::-;9041:6;9036:3;9032:16;9025:23;;8787:267;8677:377;;;;:::o;9060:366::-;9202:3;9223:67;9287:2;9282:3;9223:67;:::i;:::-;9216:74;;9299:93;9388:3;9299:93;:::i;:::-;9417:2;9412:3;9408:12;9401:19;;9060:366;;;:::o;9432:::-;9574:3;9595:67;9659:2;9654:3;9595:67;:::i;:::-;9588:74;;9671:93;9760:3;9671:93;:::i;:::-;9789:2;9784:3;9780:12;9773:19;;9432:366;;;:::o;9804:::-;9946:3;9967:67;10031:2;10026:3;9967:67;:::i;:::-;9960:74;;10043:93;10132:3;10043:93;:::i;:::-;10161:2;10156:3;10152:12;10145:19;;9804:366;;;:::o;10176:::-;10318:3;10339:67;10403:2;10398:3;10339:67;:::i;:::-;10332:74;;10415:93;10504:3;10415:93;:::i;:::-;10533:2;10528:3;10524:12;10517:19;;10176:366;;;:::o;10548:::-;10690:3;10711:67;10775:2;10770:3;10711:67;:::i;:::-;10704:74;;10787:93;10876:3;10787:93;:::i;:::-;10905:2;10900:3;10896:12;10889:19;;10548:366;;;:::o;10920:::-;11062:3;11083:67;11147:2;11142:3;11083:67;:::i;:::-;11076:74;;11159:93;11248:3;11159:93;:::i;:::-;11277:2;11272:3;11268:12;11261:19;;10920:366;;;:::o;11292:::-;11434:3;11455:67;11519:2;11514:3;11455:67;:::i;:::-;11448:74;;11531:93;11620:3;11531:93;:::i;:::-;11649:2;11644:3;11640:12;11633:19;;11292:366;;;:::o;11664:::-;11806:3;11827:67;11891:2;11886:3;11827:67;:::i;:::-;11820:74;;11903:93;11992:3;11903:93;:::i;:::-;12021:2;12016:3;12012:12;12005:19;;11664:366;;;:::o;12036:::-;12178:3;12199:67;12263:2;12258:3;12199:67;:::i;:::-;12192:74;;12275:93;12364:3;12275:93;:::i;:::-;12393:2;12388:3;12384:12;12377:19;;12036:366;;;:::o;12408:::-;12550:3;12571:67;12635:2;12630:3;12571:67;:::i;:::-;12564:74;;12647:93;12736:3;12647:93;:::i;:::-;12765:2;12760:3;12756:12;12749:19;;12408:366;;;:::o;12780:::-;12922:3;12943:67;13007:2;13002:3;12943:67;:::i;:::-;12936:74;;13019:93;13108:3;13019:93;:::i;:::-;13137:2;13132:3;13128:12;13121:19;;12780:366;;;:::o;13152:::-;13294:3;13315:67;13379:2;13374:3;13315:67;:::i;:::-;13308:74;;13391:93;13480:3;13391:93;:::i;:::-;13509:2;13504:3;13500:12;13493:19;;13152:366;;;:::o;13524:::-;13666:3;13687:67;13751:2;13746:3;13687:67;:::i;:::-;13680:74;;13763:93;13852:3;13763:93;:::i;:::-;13881:2;13876:3;13872:12;13865:19;;13524:366;;;:::o;13896:::-;14038:3;14059:67;14123:2;14118:3;14059:67;:::i;:::-;14052:74;;14135:93;14224:3;14135:93;:::i;:::-;14253:2;14248:3;14244:12;14237:19;;13896:366;;;:::o;14268:::-;14410:3;14431:67;14495:2;14490:3;14431:67;:::i;:::-;14424:74;;14507:93;14596:3;14507:93;:::i;:::-;14625:2;14620:3;14616:12;14609:19;;14268:366;;;:::o;14640:::-;14782:3;14803:67;14867:2;14862:3;14803:67;:::i;:::-;14796:74;;14879:93;14968:3;14879:93;:::i;:::-;14997:2;14992:3;14988:12;14981:19;;14640:366;;;:::o;15012:::-;15154:3;15175:67;15239:2;15234:3;15175:67;:::i;:::-;15168:74;;15251:93;15340:3;15251:93;:::i;:::-;15369:2;15364:3;15360:12;15353:19;;15012:366;;;:::o;15384:::-;15526:3;15547:67;15611:2;15606:3;15547:67;:::i;:::-;15540:74;;15623:93;15712:3;15623:93;:::i;:::-;15741:2;15736:3;15732:12;15725:19;;15384:366;;;:::o;15756:::-;15898:3;15919:67;15983:2;15978:3;15919:67;:::i;:::-;15912:74;;15995:93;16084:3;15995:93;:::i;:::-;16113:2;16108:3;16104:12;16097:19;;15756:366;;;:::o;16128:398::-;16287:3;16308:83;16389:1;16384:3;16308:83;:::i;:::-;16301:90;;16400:93;16489:3;16400:93;:::i;:::-;16518:1;16513:3;16509:11;16502:18;;16128:398;;;:::o;16532:366::-;16674:3;16695:67;16759:2;16754:3;16695:67;:::i;:::-;16688:74;;16771:93;16860:3;16771:93;:::i;:::-;16889:2;16884:3;16880:12;16873:19;;16532:366;;;:::o;16904:::-;17046:3;17067:67;17131:2;17126:3;17067:67;:::i;:::-;17060:74;;17143:93;17232:3;17143:93;:::i;:::-;17261:2;17256:3;17252:12;17245:19;;16904:366;;;:::o;17276:::-;17418:3;17439:67;17503:2;17498:3;17439:67;:::i;:::-;17432:74;;17515:93;17604:3;17515:93;:::i;:::-;17633:2;17628:3;17624:12;17617:19;;17276:366;;;:::o;17648:::-;17790:3;17811:67;17875:2;17870:3;17811:67;:::i;:::-;17804:74;;17887:93;17976:3;17887:93;:::i;:::-;18005:2;18000:3;17996:12;17989:19;;17648:366;;;:::o;18020:::-;18162:3;18183:67;18247:2;18242:3;18183:67;:::i;:::-;18176:74;;18259:93;18348:3;18259:93;:::i;:::-;18377:2;18372:3;18368:12;18361:19;;18020:366;;;:::o;18392:::-;18534:3;18555:67;18619:2;18614:3;18555:67;:::i;:::-;18548:74;;18631:93;18720:3;18631:93;:::i;:::-;18749:2;18744:3;18740:12;18733:19;;18392:366;;;:::o;18764:::-;18906:3;18927:67;18991:2;18986:3;18927:67;:::i;:::-;18920:74;;19003:93;19092:3;19003:93;:::i;:::-;19121:2;19116:3;19112:12;19105:19;;18764:366;;;:::o;19136:::-;19278:3;19299:67;19363:2;19358:3;19299:67;:::i;:::-;19292:74;;19375:93;19464:3;19375:93;:::i;:::-;19493:2;19488:3;19484:12;19477:19;;19136:366;;;:::o;19508:::-;19650:3;19671:67;19735:2;19730:3;19671:67;:::i;:::-;19664:74;;19747:93;19836:3;19747:93;:::i;:::-;19865:2;19860:3;19856:12;19849:19;;19508:366;;;:::o;19880:::-;20022:3;20043:67;20107:2;20102:3;20043:67;:::i;:::-;20036:74;;20119:93;20208:3;20119:93;:::i;:::-;20237:2;20232:3;20228:12;20221:19;;19880:366;;;:::o;20252:::-;20394:3;20415:67;20479:2;20474:3;20415:67;:::i;:::-;20408:74;;20491:93;20580:3;20491:93;:::i;:::-;20609:2;20604:3;20600:12;20593:19;;20252:366;;;:::o;20624:::-;20766:3;20787:67;20851:2;20846:3;20787:67;:::i;:::-;20780:74;;20863:93;20952:3;20863:93;:::i;:::-;20981:2;20976:3;20972:12;20965:19;;20624:366;;;:::o;20996:::-;21138:3;21159:67;21223:2;21218:3;21159:67;:::i;:::-;21152:74;;21235:93;21324:3;21235:93;:::i;:::-;21353:2;21348:3;21344:12;21337:19;;20996:366;;;:::o;21438:527::-;21597:4;21592:3;21588:14;21684:4;21677:5;21673:16;21667:23;21703:63;21760:4;21755:3;21751:14;21737:12;21703:63;:::i;:::-;21612:164;21868:4;21861:5;21857:16;21851:23;21887:61;21942:4;21937:3;21933:14;21919:12;21887:61;:::i;:::-;21786:172;21566:399;21438:527;;:::o;21971:118::-;22058:24;22076:5;22058:24;:::i;:::-;22053:3;22046:37;21971:118;;:::o;22095:105::-;22170:23;22187:5;22170:23;:::i;:::-;22165:3;22158:36;22095:105;;:::o;22206:115::-;22291:23;22308:5;22291:23;:::i;:::-;22286:3;22279:36;22206:115;;:::o;22327:435::-;22507:3;22529:95;22620:3;22611:6;22529:95;:::i;:::-;22522:102;;22641:95;22732:3;22723:6;22641:95;:::i;:::-;22634:102;;22753:3;22746:10;;22327:435;;;;;:::o;22768:379::-;22952:3;22974:147;23117:3;22974:147;:::i;:::-;22967:154;;23138:3;23131:10;;22768:379;;;:::o;23153:222::-;23246:4;23284:2;23273:9;23269:18;23261:26;;23297:71;23365:1;23354:9;23350:17;23341:6;23297:71;:::i;:::-;23153:222;;;;:::o;23381:640::-;23576:4;23614:3;23603:9;23599:19;23591:27;;23628:71;23696:1;23685:9;23681:17;23672:6;23628:71;:::i;:::-;23709:72;23777:2;23766:9;23762:18;23753:6;23709:72;:::i;:::-;23791;23859:2;23848:9;23844:18;23835:6;23791:72;:::i;:::-;23910:9;23904:4;23900:20;23895:2;23884:9;23880:18;23873:48;23938:76;24009:4;24000:6;23938:76;:::i;:::-;23930:84;;23381:640;;;;;;;:::o;24027:210::-;24114:4;24152:2;24141:9;24137:18;24129:26;;24165:65;24227:1;24216:9;24212:17;24203:6;24165:65;:::i;:::-;24027:210;;;;:::o;24243:313::-;24356:4;24394:2;24383:9;24379:18;24371:26;;24443:9;24437:4;24433:20;24429:1;24418:9;24414:17;24407:47;24471:78;24544:4;24535:6;24471:78;:::i;:::-;24463:86;;24243:313;;;;:::o;24562:419::-;24728:4;24766:2;24755:9;24751:18;24743:26;;24815:9;24809:4;24805:20;24801:1;24790:9;24786:17;24779:47;24843:131;24969:4;24843:131;:::i;:::-;24835:139;;24562:419;;;:::o;24987:::-;25153:4;25191:2;25180:9;25176:18;25168:26;;25240:9;25234:4;25230:20;25226:1;25215:9;25211:17;25204:47;25268:131;25394:4;25268:131;:::i;:::-;25260:139;;24987:419;;;:::o;25412:::-;25578:4;25616:2;25605:9;25601:18;25593:26;;25665:9;25659:4;25655:20;25651:1;25640:9;25636:17;25629:47;25693:131;25819:4;25693:131;:::i;:::-;25685:139;;25412:419;;;:::o;25837:::-;26003:4;26041:2;26030:9;26026:18;26018:26;;26090:9;26084:4;26080:20;26076:1;26065:9;26061:17;26054:47;26118:131;26244:4;26118:131;:::i;:::-;26110:139;;25837:419;;;:::o;26262:::-;26428:4;26466:2;26455:9;26451:18;26443:26;;26515:9;26509:4;26505:20;26501:1;26490:9;26486:17;26479:47;26543:131;26669:4;26543:131;:::i;:::-;26535:139;;26262:419;;;:::o;26687:::-;26853:4;26891:2;26880:9;26876:18;26868:26;;26940:9;26934:4;26930:20;26926:1;26915:9;26911:17;26904:47;26968:131;27094:4;26968:131;:::i;:::-;26960:139;;26687:419;;;:::o;27112:::-;27278:4;27316:2;27305:9;27301:18;27293:26;;27365:9;27359:4;27355:20;27351:1;27340:9;27336:17;27329:47;27393:131;27519:4;27393:131;:::i;:::-;27385:139;;27112:419;;;:::o;27537:::-;27703:4;27741:2;27730:9;27726:18;27718:26;;27790:9;27784:4;27780:20;27776:1;27765:9;27761:17;27754:47;27818:131;27944:4;27818:131;:::i;:::-;27810:139;;27537:419;;;:::o;27962:::-;28128:4;28166:2;28155:9;28151:18;28143:26;;28215:9;28209:4;28205:20;28201:1;28190:9;28186:17;28179:47;28243:131;28369:4;28243:131;:::i;:::-;28235:139;;27962:419;;;:::o;28387:::-;28553:4;28591:2;28580:9;28576:18;28568:26;;28640:9;28634:4;28630:20;28626:1;28615:9;28611:17;28604:47;28668:131;28794:4;28668:131;:::i;:::-;28660:139;;28387:419;;;:::o;28812:::-;28978:4;29016:2;29005:9;29001:18;28993:26;;29065:9;29059:4;29055:20;29051:1;29040:9;29036:17;29029:47;29093:131;29219:4;29093:131;:::i;:::-;29085:139;;28812:419;;;:::o;29237:::-;29403:4;29441:2;29430:9;29426:18;29418:26;;29490:9;29484:4;29480:20;29476:1;29465:9;29461:17;29454:47;29518:131;29644:4;29518:131;:::i;:::-;29510:139;;29237:419;;;:::o;29662:::-;29828:4;29866:2;29855:9;29851:18;29843:26;;29915:9;29909:4;29905:20;29901:1;29890:9;29886:17;29879:47;29943:131;30069:4;29943:131;:::i;:::-;29935:139;;29662:419;;;:::o;30087:::-;30253:4;30291:2;30280:9;30276:18;30268:26;;30340:9;30334:4;30330:20;30326:1;30315:9;30311:17;30304:47;30368:131;30494:4;30368:131;:::i;:::-;30360:139;;30087:419;;;:::o;30512:::-;30678:4;30716:2;30705:9;30701:18;30693:26;;30765:9;30759:4;30755:20;30751:1;30740:9;30736:17;30729:47;30793:131;30919:4;30793:131;:::i;:::-;30785:139;;30512:419;;;:::o;30937:::-;31103:4;31141:2;31130:9;31126:18;31118:26;;31190:9;31184:4;31180:20;31176:1;31165:9;31161:17;31154:47;31218:131;31344:4;31218:131;:::i;:::-;31210:139;;30937:419;;;:::o;31362:::-;31528:4;31566:2;31555:9;31551:18;31543:26;;31615:9;31609:4;31605:20;31601:1;31590:9;31586:17;31579:47;31643:131;31769:4;31643:131;:::i;:::-;31635:139;;31362:419;;;:::o;31787:::-;31953:4;31991:2;31980:9;31976:18;31968:26;;32040:9;32034:4;32030:20;32026:1;32015:9;32011:17;32004:47;32068:131;32194:4;32068:131;:::i;:::-;32060:139;;31787:419;;;:::o;32212:::-;32378:4;32416:2;32405:9;32401:18;32393:26;;32465:9;32459:4;32455:20;32451:1;32440:9;32436:17;32429:47;32493:131;32619:4;32493:131;:::i;:::-;32485:139;;32212:419;;;:::o;32637:::-;32803:4;32841:2;32830:9;32826:18;32818:26;;32890:9;32884:4;32880:20;32876:1;32865:9;32861:17;32854:47;32918:131;33044:4;32918:131;:::i;:::-;32910:139;;32637:419;;;:::o;33062:::-;33228:4;33266:2;33255:9;33251:18;33243:26;;33315:9;33309:4;33305:20;33301:1;33290:9;33286:17;33279:47;33343:131;33469:4;33343:131;:::i;:::-;33335:139;;33062:419;;;:::o;33487:::-;33653:4;33691:2;33680:9;33676:18;33668:26;;33740:9;33734:4;33730:20;33726:1;33715:9;33711:17;33704:47;33768:131;33894:4;33768:131;:::i;:::-;33760:139;;33487:419;;;:::o;33912:::-;34078:4;34116:2;34105:9;34101:18;34093:26;;34165:9;34159:4;34155:20;34151:1;34140:9;34136:17;34129:47;34193:131;34319:4;34193:131;:::i;:::-;34185:139;;33912:419;;;:::o;34337:::-;34503:4;34541:2;34530:9;34526:18;34518:26;;34590:9;34584:4;34580:20;34576:1;34565:9;34561:17;34554:47;34618:131;34744:4;34618:131;:::i;:::-;34610:139;;34337:419;;;:::o;34762:::-;34928:4;34966:2;34955:9;34951:18;34943:26;;35015:9;35009:4;35005:20;35001:1;34990:9;34986:17;34979:47;35043:131;35169:4;35043:131;:::i;:::-;35035:139;;34762:419;;;:::o;35187:::-;35353:4;35391:2;35380:9;35376:18;35368:26;;35440:9;35434:4;35430:20;35426:1;35415:9;35411:17;35404:47;35468:131;35594:4;35468:131;:::i;:::-;35460:139;;35187:419;;;:::o;35612:::-;35778:4;35816:2;35805:9;35801:18;35793:26;;35865:9;35859:4;35855:20;35851:1;35840:9;35836:17;35829:47;35893:131;36019:4;35893:131;:::i;:::-;35885:139;;35612:419;;;:::o;36037:::-;36203:4;36241:2;36230:9;36226:18;36218:26;;36290:9;36284:4;36280:20;36276:1;36265:9;36261:17;36254:47;36318:131;36444:4;36318:131;:::i;:::-;36310:139;;36037:419;;;:::o;36462:::-;36628:4;36666:2;36655:9;36651:18;36643:26;;36715:9;36709:4;36705:20;36701:1;36690:9;36686:17;36679:47;36743:131;36869:4;36743:131;:::i;:::-;36735:139;;36462:419;;;:::o;36887:::-;37053:4;37091:2;37080:9;37076:18;37068:26;;37140:9;37134:4;37130:20;37126:1;37115:9;37111:17;37104:47;37168:131;37294:4;37168:131;:::i;:::-;37160:139;;36887:419;;;:::o;37312:::-;37478:4;37516:2;37505:9;37501:18;37493:26;;37565:9;37559:4;37555:20;37551:1;37540:9;37536:17;37529:47;37593:131;37719:4;37593:131;:::i;:::-;37585:139;;37312:419;;;:::o;37737:::-;37903:4;37941:2;37930:9;37926:18;37918:26;;37990:9;37984:4;37980:20;37976:1;37965:9;37961:17;37954:47;38018:131;38144:4;38018:131;:::i;:::-;38010:139;;37737:419;;;:::o;38162:346::-;38317:4;38355:2;38344:9;38340:18;38332:26;;38368:133;38498:1;38487:9;38483:17;38474:6;38368:133;:::i;:::-;38162:346;;;;:::o;38514:222::-;38607:4;38645:2;38634:9;38630:18;38622:26;;38658:71;38726:1;38715:9;38711:17;38702:6;38658:71;:::i;:::-;38514:222;;;;:::o;38742:316::-;38855:4;38893:2;38882:9;38878:18;38870:26;;38906:69;38972:1;38961:9;38957:17;38948:6;38906:69;:::i;:::-;38985:66;39047:2;39036:9;39032:18;39023:6;38985:66;:::i;:::-;38742:316;;;;;:::o;39064:129::-;39098:6;39125:20;;:::i;:::-;39115:30;;39154:33;39182:4;39174:6;39154:33;:::i;:::-;39064:129;;;:::o;39199:75::-;39232:6;39265:2;39259:9;39249:19;;39199:75;:::o;39280:307::-;39341:4;39431:18;39423:6;39420:30;39417:56;;;39453:18;;:::i;:::-;39417:56;39491:29;39513:6;39491:29;:::i;:::-;39483:37;;39575:4;39569;39565:15;39557:23;;39280:307;;;:::o;39593:98::-;39644:6;39678:5;39672:12;39662:22;;39593:98;;;:::o;39697:99::-;39749:6;39783:5;39777:12;39767:22;;39697:99;;;:::o;39802:168::-;39885:11;39919:6;39914:3;39907:19;39959:4;39954:3;39950:14;39935:29;;39802:168;;;;:::o;39976:147::-;40077:11;40114:3;40099:18;;39976:147;;;;:::o;40129:169::-;40213:11;40247:6;40242:3;40235:19;40287:4;40282:3;40278:14;40263:29;;40129:169;;;;:::o;40304:148::-;40406:11;40443:3;40428:18;;40304:148;;;;:::o;40458:273::-;40498:3;40517:20;40535:1;40517:20;:::i;:::-;40512:25;;40551:20;40569:1;40551:20;:::i;:::-;40546:25;;40673:1;40637:34;40633:42;40630:1;40627:49;40624:75;;;40679:18;;:::i;:::-;40624:75;40723:1;40720;40716:9;40709:16;;40458:273;;;;:::o;40737:305::-;40777:3;40796:20;40814:1;40796:20;:::i;:::-;40791:25;;40830:20;40848:1;40830:20;:::i;:::-;40825:25;;40984:1;40916:66;40912:74;40909:1;40906:81;40903:107;;;40990:18;;:::i;:::-;40903:107;41034:1;41031;41027:9;41020:16;;40737:305;;;;:::o;41048:185::-;41088:1;41105:20;41123:1;41105:20;:::i;:::-;41100:25;;41139:20;41157:1;41139:20;:::i;:::-;41134:25;;41178:1;41168:35;;41183:18;;:::i;:::-;41168:35;41225:1;41222;41218:9;41213:14;;41048:185;;;;:::o;41239:348::-;41279:7;41302:20;41320:1;41302:20;:::i;:::-;41297:25;;41336:20;41354:1;41336:20;:::i;:::-;41331:25;;41524:1;41456:66;41452:74;41449:1;41446:81;41441:1;41434:9;41427:17;41423:105;41420:131;;;41531:18;;:::i;:::-;41420:131;41579:1;41576;41572:9;41561:20;;41239:348;;;;:::o;41593:191::-;41633:4;41653:20;41671:1;41653:20;:::i;:::-;41648:25;;41687:20;41705:1;41687:20;:::i;:::-;41682:25;;41726:1;41723;41720:8;41717:34;;;41731:18;;:::i;:::-;41717:34;41776:1;41773;41769:9;41761:17;;41593:191;;;;:::o;41790:::-;41830:4;41850:20;41868:1;41850:20;:::i;:::-;41845:25;;41884:20;41902:1;41884:20;:::i;:::-;41879:25;;41923:1;41920;41917:8;41914:34;;;41928:18;;:::i;:::-;41914:34;41973:1;41970;41966:9;41958:17;;41790:191;;;;:::o;41987:96::-;42024:7;42053:24;42071:5;42053:24;:::i;:::-;42042:35;;41987:96;;;:::o;42089:90::-;42123:7;42166:5;42159:13;42152:21;42141:32;;42089:90;;;:::o;42185:149::-;42221:7;42261:66;42254:5;42250:78;42239:89;;42185:149;;;:::o;42340:118::-;42377:7;42417:34;42410:5;42406:46;42395:57;;42340:118;;;:::o;42464:126::-;42501:7;42541:42;42534:5;42530:54;42519:65;;42464:126;;;:::o;42596:77::-;42633:7;42662:5;42651:16;;42596:77;;;:::o;42679:101::-;42715:7;42755:18;42748:5;42744:30;42733:41;;42679:101;;;:::o;42786:154::-;42870:6;42865:3;42860;42847:30;42932:1;42923:6;42918:3;42914:16;42907:27;42786:154;;;:::o;42946:307::-;43014:1;43024:113;43038:6;43035:1;43032:13;43024:113;;;43123:1;43118:3;43114:11;43108:18;43104:1;43099:3;43095:11;43088:39;43060:2;43057:1;43053:10;43048:15;;43024:113;;;43155:6;43152:1;43149:13;43146:101;;;43235:1;43226:6;43221:3;43217:16;43210:27;43146:101;42995:258;42946:307;;;:::o;43259:171::-;43298:3;43321:24;43339:5;43321:24;:::i;:::-;43312:33;;43367:4;43360:5;43357:15;43354:41;;;43375:18;;:::i;:::-;43354:41;43422:1;43415:5;43411:13;43404:20;;43259:171;;;:::o;43436:320::-;43480:6;43517:1;43511:4;43507:12;43497:22;;43564:1;43558:4;43554:12;43585:18;43575:81;;43641:4;43633:6;43629:17;43619:27;;43575:81;43703:2;43695:6;43692:14;43672:18;43669:38;43666:84;;;43722:18;;:::i;:::-;43666:84;43487:269;43436:320;;;:::o;43762:281::-;43845:27;43867:4;43845:27;:::i;:::-;43837:6;43833:40;43975:6;43963:10;43960:22;43939:18;43927:10;43924:34;43921:62;43918:88;;;43986:18;;:::i;:::-;43918:88;44026:10;44022:2;44015:22;43805:238;43762:281;;:::o;44049:233::-;44088:3;44111:24;44129:5;44111:24;:::i;:::-;44102:33;;44157:66;44150:5;44147:77;44144:103;;;44227:18;;:::i;:::-;44144:103;44274:1;44267:5;44263:13;44256:20;;44049:233;;;:::o;44288:176::-;44320:1;44337:20;44355:1;44337:20;:::i;:::-;44332:25;;44371:20;44389:1;44371:20;:::i;:::-;44366:25;;44410:1;44400:35;;44415:18;;:::i;:::-;44400:35;44456:1;44453;44449:9;44444:14;;44288:176;;;;:::o;44470:180::-;44518:77;44515:1;44508:88;44615:4;44612:1;44605:15;44639:4;44636:1;44629:15;44656:180;44704:77;44701:1;44694:88;44801:4;44798:1;44791:15;44825:4;44822:1;44815:15;44842:180;44890:77;44887:1;44880:88;44987:4;44984:1;44977:15;45011:4;45008:1;45001:15;45028:180;45076:77;45073:1;45066:88;45173:4;45170:1;45163:15;45197:4;45194:1;45187:15;45214:180;45262:77;45259:1;45252:88;45359:4;45356:1;45349:15;45383:4;45380:1;45373:15;45400:117;45509:1;45506;45499:12;45523:117;45632:1;45629;45622:12;45646:117;45755:1;45752;45745:12;45769:117;45878:1;45875;45868:12;45892:117;46001:1;45998;45991:12;46015:117;46124:1;46121;46114:12;46138:102;46179:6;46230:2;46226:7;46221:2;46214:5;46210:14;46206:28;46196:38;;46138:102;;;:::o;46246:221::-;46386:34;46382:1;46374:6;46370:14;46363:58;46455:4;46450:2;46442:6;46438:15;46431:29;46246:221;:::o;46473:225::-;46613:34;46609:1;46601:6;46597:14;46590:58;46682:8;46677:2;46669:6;46665:15;46658:33;46473:225;:::o;46704:229::-;46844:34;46840:1;46832:6;46828:14;46821:58;46913:12;46908:2;46900:6;46896:15;46889:37;46704:229;:::o;46939:231::-;47079:34;47075:1;47067:6;47063:14;47056:58;47148:14;47143:2;47135:6;47131:15;47124:39;46939:231;:::o;47176:222::-;47316:34;47312:1;47304:6;47300:14;47293:58;47385:5;47380:2;47372:6;47368:15;47361:30;47176:222;:::o;47404:224::-;47544:34;47540:1;47532:6;47528:14;47521:58;47613:7;47608:2;47600:6;47596:15;47589:32;47404:224;:::o;47634:236::-;47774:34;47770:1;47762:6;47758:14;47751:58;47843:19;47838:2;47830:6;47826:15;47819:44;47634:236;:::o;47876:180::-;48016:32;48012:1;48004:6;48000:14;47993:56;47876:180;:::o;48062:244::-;48202:34;48198:1;48190:6;48186:14;48179:58;48271:27;48266:2;48258:6;48254:15;48247:52;48062:244;:::o;48312:174::-;48452:26;48448:1;48440:6;48436:14;48429:50;48312:174;:::o;48492:230::-;48632:34;48628:1;48620:6;48616:14;48609:58;48701:13;48696:2;48688:6;48684:15;48677:38;48492:230;:::o;48728:168::-;48868:20;48864:1;48856:6;48852:14;48845:44;48728:168;:::o;48902:225::-;49042:34;49038:1;49030:6;49026:14;49019:58;49111:8;49106:2;49098:6;49094:15;49087:33;48902:225;:::o;49133:182::-;49273:34;49269:1;49261:6;49257:14;49250:58;49133:182;:::o;49321:234::-;49461:34;49457:1;49449:6;49445:14;49438:58;49530:17;49525:2;49517:6;49513:15;49506:42;49321:234;:::o;49561:176::-;49701:28;49697:1;49689:6;49685:14;49678:52;49561:176;:::o;49743:237::-;49883:34;49879:1;49871:6;49867:14;49860:58;49952:20;49947:2;49939:6;49935:15;49928:45;49743:237;:::o;49986:179::-;50126:31;50122:1;50114:6;50110:14;50103:55;49986:179;:::o;50171:221::-;50311:34;50307:1;50299:6;50295:14;50288:58;50380:4;50375:2;50367:6;50363:15;50356:29;50171:221;:::o;50398:114::-;;:::o;50518:166::-;50658:18;50654:1;50646:6;50642:14;50635:42;50518:166;:::o;50690:238::-;50830:34;50826:1;50818:6;50814:14;50807:58;50899:21;50894:2;50886:6;50882:15;50875:46;50690:238;:::o;50934:172::-;51074:24;51070:1;51062:6;51058:14;51051:48;50934:172;:::o;51112:179::-;51252:31;51248:1;51240:6;51236:14;51229:55;51112:179;:::o;51297:220::-;51437:34;51433:1;51425:6;51421:14;51414:58;51506:3;51501:2;51493:6;51489:15;51482:28;51297:220;:::o;51523:172::-;51663:24;51659:1;51651:6;51647:14;51640:48;51523:172;:::o;51701:239::-;51841:34;51837:1;51829:6;51825:14;51818:58;51910:22;51905:2;51897:6;51893:15;51886:47;51701:239;:::o;51946:233::-;52086:34;52082:1;52074:6;52070:14;52063:58;52155:16;52150:2;52142:6;52138:15;52131:41;51946:233;:::o;52185:225::-;52325:34;52321:1;52313:6;52309:14;52302:58;52394:8;52389:2;52381:6;52377:15;52370:33;52185:225;:::o;52416:181::-;52556:33;52552:1;52544:6;52540:14;52533:57;52416:181;:::o;52603:234::-;52743:34;52739:1;52731:6;52727:14;52720:58;52812:17;52807:2;52799:6;52795:15;52788:42;52603:234;:::o;52843:232::-;52983:34;52979:1;52971:6;52967:14;52960:58;53052:15;53047:2;53039:6;53035:15;53028:40;52843:232;:::o;53081:221::-;53221:34;53217:1;53209:6;53205:14;53198:58;53290:4;53285:2;53277:6;53273:15;53266:29;53081:221;:::o;53308:122::-;53381:24;53399:5;53381:24;:::i;:::-;53374:5;53371:35;53361:63;;53420:1;53417;53410:12;53361:63;53308:122;:::o;53436:116::-;53506:21;53521:5;53506:21;:::i;:::-;53499:5;53496:32;53486:60;;53542:1;53539;53532:12;53486:60;53436:116;:::o;53558:120::-;53630:23;53647:5;53630:23;:::i;:::-;53623:5;53620:34;53610:62;;53668:1;53665;53658:12;53610:62;53558:120;:::o;53684:122::-;53757:24;53775:5;53757:24;:::i;:::-;53750:5;53747:35;53737:63;;53796:1;53793;53786:12;53737:63;53684:122;:::o;53812:120::-;53884:23;53901:5;53884:23;:::i;:::-;53877:5;53874:34;53864:62;;53922:1;53919;53912:12;53864:62;53812:120;:::o

Swarm Source

ipfs://9e04391f65e6e24e15bb237b8d5e2a906a40702699375df83bbc822503310130
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.