ETH Price: $3,428.04 (+4.00%)

Token

KevinSquiggles (KSquig)
 

Overview

Max Total Supply

555 KSquig

Holders

73

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
16 KSquig
0xc856dec8607c47e8355ce090c9cf20a1f42f4161
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:
KevinSquiggles

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

contract KevinSquiggles is ERC721A, Ownable {
    uint256 public NFT_PRICE = 0;
    uint256 public MAX_SUPPLY = 555;
    uint256 public MAX_MINTS = 3;
    string public baseURI = "ipfs://QmRT1TH1WWqtAcpEAU33GhhL7fMcqcgpbPzHsp6FXcDbff/";
    
    constructor() ERC721A("KevinSquiggles", "KSquig", MAX_MINTS, MAX_SUPPLY) {}

    function mint(uint256 numTokens) public payable {
        require(numTokens > 0 && numTokens <= MAX_MINTS);
        require(totalSupply() + numTokens <= MAX_SUPPLY);

        _safeMint(msg.sender, numTokens);
    }

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"setSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c0604052600080556000600755600060095561022b600a556003600b556040518060600160405280603681526020016200447d60369139600c90805190602001906200004e92919062000295565b503480156200005c57600080fd5b506040518060400160405280600e81526020017f4b6576696e5371756967676c65730000000000000000000000000000000000008152506040518060400160405280600681526020017f4b53717569670000000000000000000000000000000000000000000000000000815250600b54600a546000811162000115576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200010c9062000437565b60405180910390fd5b600082116200015b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001529062000415565b60405180910390fd5b83600190805190602001906200017392919062000295565b5082600290805190602001906200018c92919062000295565b508160a08181525050806080818152505050505050620001c1620001b5620001c760201b60201c565b620001cf60201b60201c565b620004cf565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002a3906200046a565b90600052602060002090601f016020900481019282620002c7576000855562000313565b82601f10620002e257805160ff191683800117855562000313565b8280016001018555821562000313579182015b8281111562000312578251825591602001919060010190620002f5565b5b50905062000322919062000326565b5090565b5b808211156200034157600081600090555060010162000327565b5090565b60006200035460278362000459565b91507f455243373231413a206d61782062617463682073697a65206d7573742062652060008301527f6e6f6e7a65726f000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000620003bc602e8362000459565b91507f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008301527f6e6f6e7a65726f20737570706c790000000000000000000000000000000000006020830152604082019050919050565b60006020820190508181036000830152620004308162000345565b9050919050565b600060208201905081810360008301526200045281620003ad565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200048357607f821691505b602082108114156200049a5762000499620004a0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60805160a051613f7d6200050060003960008181611e8901528181611eb201526125bf015260005050613f7d6000f3fe6080604052600436106101cd5760003560e01c80636c0360eb116100f7578063a0712d6811610095578063cce132d111610064578063cce132d114610665578063d7224ba014610690578063e985e9c5146106bb578063f2fde38b146106f8576101cd565b8063a0712d68146105ba578063a22cb465146105d6578063b88d4fde146105ff578063c87b56dd14610628576101cd565b806379c9cb7b116100d157806379c9cb7b146105125780638da5cb5b1461053b57806391b7f5ed1461056657806395d89b411461058f576101cd565b80636c0360eb1461049357806370a08231146104be578063715018a6146104fb576101cd565b806332cb6b0c1161016f5780634f6ccce71161013e5780634f6ccce7146103c557806355f804b3146104025780636352211e1461042b578063676dd56314610468576101cd565b806332cb6b0c146103315780633b4c4b251461035c5780633ccfd60b1461038557806342842e0e1461039c576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a057806323b872dd146102cb5780632f745c59146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612dad565b610721565b6040516102069190613795565b60405180910390f35b34801561021b57600080fd5b5061022461086b565b60405161023191906137b0565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612e40565b6108fd565b60405161026e919061372e565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612d71565b610982565b005b3480156102ac57600080fd5b506102b5610a9b565b6040516102c29190613a52565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed9190612c6b565b610aa4565b005b34801561030057600080fd5b5061031b60048036038101906103169190612d71565b610ab4565b6040516103289190613a52565b60405180910390f35b34801561033d57600080fd5b50610346610cb2565b6040516103539190613a52565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e9190612e40565b610cb8565b005b34801561039157600080fd5b5061039a610d3e565b005b3480156103a857600080fd5b506103c360048036038101906103be9190612c6b565b610dfa565b005b3480156103d157600080fd5b506103ec60048036038101906103e79190612e40565b610e1a565b6040516103f99190613a52565b60405180910390f35b34801561040e57600080fd5b5061042960048036038101906104249190612dff565b610e6d565b005b34801561043757600080fd5b50610452600480360381019061044d9190612e40565b610f03565b60405161045f919061372e565b60405180910390f35b34801561047457600080fd5b5061047d610f19565b60405161048a9190613a52565b60405180910390f35b34801561049f57600080fd5b506104a8610f1f565b6040516104b591906137b0565b60405180910390f35b3480156104ca57600080fd5b506104e560048036038101906104e09190612c06565b610fad565b6040516104f29190613a52565b60405180910390f35b34801561050757600080fd5b50610510611096565b005b34801561051e57600080fd5b5061053960048036038101906105349190612e40565b61111e565b005b34801561054757600080fd5b506105506111a4565b60405161055d919061372e565b60405180910390f35b34801561057257600080fd5b5061058d60048036038101906105889190612e40565b6111ce565b005b34801561059b57600080fd5b506105a4611254565b6040516105b191906137b0565b60405180910390f35b6105d460048036038101906105cf9190612e40565b6112e6565b005b3480156105e257600080fd5b506105fd60048036038101906105f89190612d35565b61132f565b005b34801561060b57600080fd5b5061062660048036038101906106219190612cba565b6114b0565b005b34801561063457600080fd5b5061064f600480360381019061064a9190612e40565b61150c565b60405161065c91906137b0565b60405180910390f35b34801561067157600080fd5b5061067a6115b3565b6040516106879190613a52565b60405180910390f35b34801561069c57600080fd5b506106a56115b9565b6040516106b29190613a52565b60405180910390f35b3480156106c757600080fd5b506106e260048036038101906106dd9190612c2f565b6115bf565b6040516106ef9190613795565b60405180910390f35b34801561070457600080fd5b5061071f600480360381019061071a9190612c06565b611653565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ec57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061085457507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061086457506108638261174b565b5b9050919050565b60606001805461087a90613d72565b80601f01602080910402602001604051908101604052809291908181526020018280546108a690613d72565b80156108f35780601f106108c8576101008083540402835291602001916108f3565b820191906000526020600020905b8154815290600101906020018083116108d657829003601f168201915b5050505050905090565b6000610908826117b5565b610947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093e90613a12565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061098d82610f03565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f590613952565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a1d6117c2565b73ffffffffffffffffffffffffffffffffffffffff161480610a4c5750610a4b81610a466117c2565b6115bf565b5b610a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8290613872565b60405180910390fd5b610a968383836117ca565b505050565b60008054905090565b610aaf83838361187c565b505050565b6000610abf83610fad565b8210610b00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af7906137d2565b60405180910390fd5b6000610b0a610a9b565b905060008060005b83811015610c70576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610c0457806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c5c5786841415610c4d578195505050505050610cac565b8380610c5890613da4565b9450505b508080610c6890613da4565b915050610b12565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca3906139d2565b60405180910390fd5b92915050565b600a5481565b610cc06117c2565b73ffffffffffffffffffffffffffffffffffffffff16610cde6111a4565b73ffffffffffffffffffffffffffffffffffffffff1614610d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2b906138d2565b60405180910390fd5b80600a8190555050565b610d466117c2565b73ffffffffffffffffffffffffffffffffffffffff16610d646111a4565b73ffffffffffffffffffffffffffffffffffffffff1614610dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db1906138d2565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610df857600080fd5b565b610e15838383604051806020016040528060008152506114b0565b505050565b6000610e24610a9b565b8210610e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5c90613832565b60405180910390fd5b819050919050565b610e756117c2565b73ffffffffffffffffffffffffffffffffffffffff16610e936111a4565b73ffffffffffffffffffffffffffffffffffffffff1614610ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee0906138d2565b60405180910390fd5b80600c9080519060200190610eff9291906129f0565b5050565b6000610f0e82611e35565b600001519050919050565b60095481565b600c8054610f2c90613d72565b80601f0160208091040260200160405190810160405280929190818152602001828054610f5890613d72565b8015610fa55780601f10610f7a57610100808354040283529160200191610fa5565b820191906000526020600020905b815481529060010190602001808311610f8857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561101e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101590613892565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61109e6117c2565b73ffffffffffffffffffffffffffffffffffffffff166110bc6111a4565b73ffffffffffffffffffffffffffffffffffffffff1614611112576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611109906138d2565b60405180910390fd5b61111c6000612038565b565b6111266117c2565b73ffffffffffffffffffffffffffffffffffffffff166111446111a4565b73ffffffffffffffffffffffffffffffffffffffff161461119a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611191906138d2565b60405180910390fd5b80600b8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111d66117c2565b73ffffffffffffffffffffffffffffffffffffffff166111f46111a4565b73ffffffffffffffffffffffffffffffffffffffff161461124a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611241906138d2565b60405180910390fd5b8060098190555050565b60606002805461126390613d72565b80601f016020809104026020016040519081016040528092919081815260200182805461128f90613d72565b80156112dc5780601f106112b1576101008083540402835291602001916112dc565b820191906000526020600020905b8154815290600101906020018083116112bf57829003601f168201915b5050505050905090565b6000811180156112f85750600b548111155b61130157600080fd5b600a548161130d610a9b565b6113179190613b87565b111561132257600080fd5b61132c33826120fe565b50565b6113376117c2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139c90613912565b60405180910390fd5b80600660006113b26117c2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661145f6117c2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114a49190613795565b60405180910390a35050565b6114bb84848461187c565b6114c78484848461211c565b611506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fd90613972565b60405180910390fd5b50505050565b6060611517826117b5565b611556576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154d906138f2565b60405180910390fd5b60006115606122b3565b9050600081511161158057604051806020016040528060008152506115ab565b8061158a84612345565b60405160200161159b9291906136ff565b6040516020818303038152906040525b915050919050565b600b5481565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61165b6117c2565b73ffffffffffffffffffffffffffffffffffffffff166116796111a4565b73ffffffffffffffffffffffffffffffffffffffff16146116cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c6906138d2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561173f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611736906137f2565b60405180910390fd5b61174881612038565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061188782611e35565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166118ae6117c2565b73ffffffffffffffffffffffffffffffffffffffff16148061190a57506118d36117c2565b73ffffffffffffffffffffffffffffffffffffffff166118f2846108fd565b73ffffffffffffffffffffffffffffffffffffffff16145b80611926575061192582600001516119206117c2565b6115bf565b5b905080611968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195f90613932565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146119da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d1906138b2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611a4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4190613852565b60405180910390fd5b611a5785858560016124f2565b611a6760008484600001516117ca565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611ad59190613c0e565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611b799190613b41565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611c7f9190613b87565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611dc557611cf5816117b5565b15611dc4576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e2d86868660016124f8565b505050505050565b611e3d612a76565b611e46826117b5565b611e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7c90613812565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008310611ee95760017f000000000000000000000000000000000000000000000000000000000000000084611edc9190613c42565b611ee69190613b87565b90505b60008390505b818110611ff7576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611fe357809350505050612033565b508080611fef90613d48565b915050611eef565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202a906139f2565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121188282604051806020016040528060008152506124fe565b5050565b600061213d8473ffffffffffffffffffffffffffffffffffffffff166129dd565b156122a6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121666117c2565b8786866040518563ffffffff1660e01b81526004016121889493929190613749565b602060405180830381600087803b1580156121a257600080fd5b505af19250505080156121d357506040513d601f19601f820116820180604052508101906121d09190612dd6565b60015b612256573d8060008114612203576040519150601f19603f3d011682016040523d82523d6000602084013e612208565b606091505b5060008151141561224e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224590613972565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506122ab565b600190505b949350505050565b6060600c80546122c290613d72565b80601f01602080910402602001604051908101604052809291908181526020018280546122ee90613d72565b801561233b5780601f106123105761010080835404028352916020019161233b565b820191906000526020600020905b81548152906001019060200180831161231e57829003601f168201915b5050505050905090565b6060600082141561238d576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124ed565b600082905060005b600082146123bf5780806123a890613da4565b915050600a826123b89190613bdd565b9150612395565b60008167ffffffffffffffff811115612401577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156124335781602001600182028036833780820191505090505b5090505b600085146124e65760018261244c9190613c42565b9150600a8561245b9190613ded565b60306124679190613b87565b60f81b8183815181106124a3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124df9190613bdd565b9450612437565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256b906139b2565b60405180910390fd5b61257d816117b5565b156125bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b490613992565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115612620576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261790613a32565b60405180910390fd5b61262d60008583866124f2565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161272a9190613b41565b6fffffffffffffffffffffffffffffffff1681526020018583602001516127519190613b41565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156129c057818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612960600088848861211c565b61299f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299690613972565b60405180910390fd5b81806129aa90613da4565b92505080806129b890613da4565b9150506128ef565b50806000819055506129d560008785886124f8565b505050505050565b600080823b905060008111915050919050565b8280546129fc90613d72565b90600052602060002090601f016020900481019282612a1e5760008555612a65565b82601f10612a3757805160ff1916838001178555612a65565b82800160010185558215612a65579182015b82811115612a64578251825591602001919060010190612a49565b5b509050612a729190612ab0565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612ac9576000816000905550600101612ab1565b5090565b6000612ae0612adb84613a9e565b613a6d565b905082815260208101848484011115612af857600080fd5b612b03848285613d06565b509392505050565b6000612b1e612b1984613ace565b613a6d565b905082815260208101848484011115612b3657600080fd5b612b41848285613d06565b509392505050565b600081359050612b5881613eeb565b92915050565b600081359050612b6d81613f02565b92915050565b600081359050612b8281613f19565b92915050565b600081519050612b9781613f19565b92915050565b600082601f830112612bae57600080fd5b8135612bbe848260208601612acd565b91505092915050565b600082601f830112612bd857600080fd5b8135612be8848260208601612b0b565b91505092915050565b600081359050612c0081613f30565b92915050565b600060208284031215612c1857600080fd5b6000612c2684828501612b49565b91505092915050565b60008060408385031215612c4257600080fd5b6000612c5085828601612b49565b9250506020612c6185828601612b49565b9150509250929050565b600080600060608486031215612c8057600080fd5b6000612c8e86828701612b49565b9350506020612c9f86828701612b49565b9250506040612cb086828701612bf1565b9150509250925092565b60008060008060808587031215612cd057600080fd5b6000612cde87828801612b49565b9450506020612cef87828801612b49565b9350506040612d0087828801612bf1565b925050606085013567ffffffffffffffff811115612d1d57600080fd5b612d2987828801612b9d565b91505092959194509250565b60008060408385031215612d4857600080fd5b6000612d5685828601612b49565b9250506020612d6785828601612b5e565b9150509250929050565b60008060408385031215612d8457600080fd5b6000612d9285828601612b49565b9250506020612da385828601612bf1565b9150509250929050565b600060208284031215612dbf57600080fd5b6000612dcd84828501612b73565b91505092915050565b600060208284031215612de857600080fd5b6000612df684828501612b88565b91505092915050565b600060208284031215612e1157600080fd5b600082013567ffffffffffffffff811115612e2b57600080fd5b612e3784828501612bc7565b91505092915050565b600060208284031215612e5257600080fd5b6000612e6084828501612bf1565b91505092915050565b612e7281613c76565b82525050565b612e8181613c88565b82525050565b6000612e9282613afe565b612e9c8185613b14565b9350612eac818560208601613d15565b612eb581613eda565b840191505092915050565b6000612ecb82613b09565b612ed58185613b25565b9350612ee5818560208601613d15565b612eee81613eda565b840191505092915050565b6000612f0482613b09565b612f0e8185613b36565b9350612f1e818560208601613d15565b80840191505092915050565b6000612f37602283613b25565b91507f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612f9d602683613b25565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613003602a83613b25565b91507f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008301527f74656e7420746f6b656e000000000000000000000000000000000000000000006020830152604082019050919050565b6000613069602383613b25565b91507f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008301527f6e647300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006130cf602583613b25565b91507f455243373231413a207472616e7366657220746f20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613135603983613b25565b91507f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006020830152604082019050919050565b600061319b602b83613b25565b91507f455243373231413a2062616c616e636520717565727920666f7220746865207a60008301527f65726f20616464726573730000000000000000000000000000000000000000006020830152604082019050919050565b6000613201602683613b25565b91507f455243373231413a207472616e736665722066726f6d20696e636f727265637460008301527f206f776e657200000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613267600583613b36565b91507f2e6a736f6e0000000000000000000000000000000000000000000000000000006000830152600582019050919050565b60006132a7602083613b25565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006132e7602f83613b25565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b600061334d601a83613b25565b91507f455243373231413a20617070726f766520746f2063616c6c65720000000000006000830152602082019050919050565b600061338d603283613b25565b91507f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008301527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006020830152604082019050919050565b60006133f3602283613b25565b91507f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008301527f65720000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613459603383613b25565b91507f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008301527f6563656976657220696d706c656d656e746572000000000000000000000000006020830152604082019050919050565b60006134bf601d83613b25565b91507f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006000830152602082019050919050565b60006134ff602183613b25565b91507f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613565602e83613b25565b91507f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008301527f6f776e657220627920696e6465780000000000000000000000000000000000006020830152604082019050919050565b60006135cb602f83613b25565b91507f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008301527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613631602d83613b25565b91507f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008301527f78697374656e7420746f6b656e000000000000000000000000000000000000006020830152604082019050919050565b6000613697602283613b25565b91507f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008301527f67680000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6136f981613cfc565b82525050565b600061370b8285612ef9565b91506137178284612ef9565b91506137228261325a565b91508190509392505050565b60006020820190506137436000830184612e69565b92915050565b600060808201905061375e6000830187612e69565b61376b6020830186612e69565b61377860408301856136f0565b818103606083015261378a8184612e87565b905095945050505050565b60006020820190506137aa6000830184612e78565b92915050565b600060208201905081810360008301526137ca8184612ec0565b905092915050565b600060208201905081810360008301526137eb81612f2a565b9050919050565b6000602082019050818103600083015261380b81612f90565b9050919050565b6000602082019050818103600083015261382b81612ff6565b9050919050565b6000602082019050818103600083015261384b8161305c565b9050919050565b6000602082019050818103600083015261386b816130c2565b9050919050565b6000602082019050818103600083015261388b81613128565b9050919050565b600060208201905081810360008301526138ab8161318e565b9050919050565b600060208201905081810360008301526138cb816131f4565b9050919050565b600060208201905081810360008301526138eb8161329a565b9050919050565b6000602082019050818103600083015261390b816132da565b9050919050565b6000602082019050818103600083015261392b81613340565b9050919050565b6000602082019050818103600083015261394b81613380565b9050919050565b6000602082019050818103600083015261396b816133e6565b9050919050565b6000602082019050818103600083015261398b8161344c565b9050919050565b600060208201905081810360008301526139ab816134b2565b9050919050565b600060208201905081810360008301526139cb816134f2565b9050919050565b600060208201905081810360008301526139eb81613558565b9050919050565b60006020820190508181036000830152613a0b816135be565b9050919050565b60006020820190508181036000830152613a2b81613624565b9050919050565b60006020820190508181036000830152613a4b8161368a565b9050919050565b6000602082019050613a6760008301846136f0565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613a9457613a93613eab565b5b8060405250919050565b600067ffffffffffffffff821115613ab957613ab8613eab565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613ae957613ae8613eab565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b4c82613cc0565b9150613b5783613cc0565b9250826fffffffffffffffffffffffffffffffff03821115613b7c57613b7b613e1e565b5b828201905092915050565b6000613b9282613cfc565b9150613b9d83613cfc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613bd257613bd1613e1e565b5b828201905092915050565b6000613be882613cfc565b9150613bf383613cfc565b925082613c0357613c02613e4d565b5b828204905092915050565b6000613c1982613cc0565b9150613c2483613cc0565b925082821015613c3757613c36613e1e565b5b828203905092915050565b6000613c4d82613cfc565b9150613c5883613cfc565b925082821015613c6b57613c6a613e1e565b5b828203905092915050565b6000613c8182613cdc565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613d33578082015181840152602081019050613d18565b83811115613d42576000848401525b50505050565b6000613d5382613cfc565b91506000821415613d6757613d66613e1e565b5b600182039050919050565b60006002820490506001821680613d8a57607f821691505b60208210811415613d9e57613d9d613e7c565b5b50919050565b6000613daf82613cfc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613de257613de1613e1e565b5b600182019050919050565b6000613df882613cfc565b9150613e0383613cfc565b925082613e1357613e12613e4d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b613ef481613c76565b8114613eff57600080fd5b50565b613f0b81613c88565b8114613f1657600080fd5b50565b613f2281613c94565b8114613f2d57600080fd5b50565b613f3981613cfc565b8114613f4457600080fd5b5056fea2646970667358221220c6ee8ceea7b8a798ebe5a717b1c8a0603cfffa503aa4bbd19e53b55955e6b47f64736f6c63430008000033697066733a2f2f516d5254315448315757717441637045415533334768684c37664d637163677062507a48737036465863446266662f

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c80636c0360eb116100f7578063a0712d6811610095578063cce132d111610064578063cce132d114610665578063d7224ba014610690578063e985e9c5146106bb578063f2fde38b146106f8576101cd565b8063a0712d68146105ba578063a22cb465146105d6578063b88d4fde146105ff578063c87b56dd14610628576101cd565b806379c9cb7b116100d157806379c9cb7b146105125780638da5cb5b1461053b57806391b7f5ed1461056657806395d89b411461058f576101cd565b80636c0360eb1461049357806370a08231146104be578063715018a6146104fb576101cd565b806332cb6b0c1161016f5780634f6ccce71161013e5780634f6ccce7146103c557806355f804b3146104025780636352211e1461042b578063676dd56314610468576101cd565b806332cb6b0c146103315780633b4c4b251461035c5780633ccfd60b1461038557806342842e0e1461039c576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd146102a057806323b872dd146102cb5780632f745c59146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612dad565b610721565b6040516102069190613795565b60405180910390f35b34801561021b57600080fd5b5061022461086b565b60405161023191906137b0565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612e40565b6108fd565b60405161026e919061372e565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612d71565b610982565b005b3480156102ac57600080fd5b506102b5610a9b565b6040516102c29190613a52565b60405180910390f35b3480156102d757600080fd5b506102f260048036038101906102ed9190612c6b565b610aa4565b005b34801561030057600080fd5b5061031b60048036038101906103169190612d71565b610ab4565b6040516103289190613a52565b60405180910390f35b34801561033d57600080fd5b50610346610cb2565b6040516103539190613a52565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e9190612e40565b610cb8565b005b34801561039157600080fd5b5061039a610d3e565b005b3480156103a857600080fd5b506103c360048036038101906103be9190612c6b565b610dfa565b005b3480156103d157600080fd5b506103ec60048036038101906103e79190612e40565b610e1a565b6040516103f99190613a52565b60405180910390f35b34801561040e57600080fd5b5061042960048036038101906104249190612dff565b610e6d565b005b34801561043757600080fd5b50610452600480360381019061044d9190612e40565b610f03565b60405161045f919061372e565b60405180910390f35b34801561047457600080fd5b5061047d610f19565b60405161048a9190613a52565b60405180910390f35b34801561049f57600080fd5b506104a8610f1f565b6040516104b591906137b0565b60405180910390f35b3480156104ca57600080fd5b506104e560048036038101906104e09190612c06565b610fad565b6040516104f29190613a52565b60405180910390f35b34801561050757600080fd5b50610510611096565b005b34801561051e57600080fd5b5061053960048036038101906105349190612e40565b61111e565b005b34801561054757600080fd5b506105506111a4565b60405161055d919061372e565b60405180910390f35b34801561057257600080fd5b5061058d60048036038101906105889190612e40565b6111ce565b005b34801561059b57600080fd5b506105a4611254565b6040516105b191906137b0565b60405180910390f35b6105d460048036038101906105cf9190612e40565b6112e6565b005b3480156105e257600080fd5b506105fd60048036038101906105f89190612d35565b61132f565b005b34801561060b57600080fd5b5061062660048036038101906106219190612cba565b6114b0565b005b34801561063457600080fd5b5061064f600480360381019061064a9190612e40565b61150c565b60405161065c91906137b0565b60405180910390f35b34801561067157600080fd5b5061067a6115b3565b6040516106879190613a52565b60405180910390f35b34801561069c57600080fd5b506106a56115b9565b6040516106b29190613a52565b60405180910390f35b3480156106c757600080fd5b506106e260048036038101906106dd9190612c2f565b6115bf565b6040516106ef9190613795565b60405180910390f35b34801561070457600080fd5b5061071f600480360381019061071a9190612c06565b611653565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107ec57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061085457507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061086457506108638261174b565b5b9050919050565b60606001805461087a90613d72565b80601f01602080910402602001604051908101604052809291908181526020018280546108a690613d72565b80156108f35780601f106108c8576101008083540402835291602001916108f3565b820191906000526020600020905b8154815290600101906020018083116108d657829003601f168201915b5050505050905090565b6000610908826117b5565b610947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093e90613a12565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061098d82610f03565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f590613952565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a1d6117c2565b73ffffffffffffffffffffffffffffffffffffffff161480610a4c5750610a4b81610a466117c2565b6115bf565b5b610a8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8290613872565b60405180910390fd5b610a968383836117ca565b505050565b60008054905090565b610aaf83838361187c565b505050565b6000610abf83610fad565b8210610b00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af7906137d2565b60405180910390fd5b6000610b0a610a9b565b905060008060005b83811015610c70576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610c0457806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c5c5786841415610c4d578195505050505050610cac565b8380610c5890613da4565b9450505b508080610c6890613da4565b915050610b12565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca3906139d2565b60405180910390fd5b92915050565b600a5481565b610cc06117c2565b73ffffffffffffffffffffffffffffffffffffffff16610cde6111a4565b73ffffffffffffffffffffffffffffffffffffffff1614610d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2b906138d2565b60405180910390fd5b80600a8190555050565b610d466117c2565b73ffffffffffffffffffffffffffffffffffffffff16610d646111a4565b73ffffffffffffffffffffffffffffffffffffffff1614610dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db1906138d2565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610df857600080fd5b565b610e15838383604051806020016040528060008152506114b0565b505050565b6000610e24610a9b565b8210610e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5c90613832565b60405180910390fd5b819050919050565b610e756117c2565b73ffffffffffffffffffffffffffffffffffffffff16610e936111a4565b73ffffffffffffffffffffffffffffffffffffffff1614610ee9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee0906138d2565b60405180910390fd5b80600c9080519060200190610eff9291906129f0565b5050565b6000610f0e82611e35565b600001519050919050565b60095481565b600c8054610f2c90613d72565b80601f0160208091040260200160405190810160405280929190818152602001828054610f5890613d72565b8015610fa55780601f10610f7a57610100808354040283529160200191610fa5565b820191906000526020600020905b815481529060010190602001808311610f8857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561101e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101590613892565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61109e6117c2565b73ffffffffffffffffffffffffffffffffffffffff166110bc6111a4565b73ffffffffffffffffffffffffffffffffffffffff1614611112576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611109906138d2565b60405180910390fd5b61111c6000612038565b565b6111266117c2565b73ffffffffffffffffffffffffffffffffffffffff166111446111a4565b73ffffffffffffffffffffffffffffffffffffffff161461119a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611191906138d2565b60405180910390fd5b80600b8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6111d66117c2565b73ffffffffffffffffffffffffffffffffffffffff166111f46111a4565b73ffffffffffffffffffffffffffffffffffffffff161461124a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611241906138d2565b60405180910390fd5b8060098190555050565b60606002805461126390613d72565b80601f016020809104026020016040519081016040528092919081815260200182805461128f90613d72565b80156112dc5780601f106112b1576101008083540402835291602001916112dc565b820191906000526020600020905b8154815290600101906020018083116112bf57829003601f168201915b5050505050905090565b6000811180156112f85750600b548111155b61130157600080fd5b600a548161130d610a9b565b6113179190613b87565b111561132257600080fd5b61132c33826120fe565b50565b6113376117c2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139c90613912565b60405180910390fd5b80600660006113b26117c2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661145f6117c2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114a49190613795565b60405180910390a35050565b6114bb84848461187c565b6114c78484848461211c565b611506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fd90613972565b60405180910390fd5b50505050565b6060611517826117b5565b611556576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154d906138f2565b60405180910390fd5b60006115606122b3565b9050600081511161158057604051806020016040528060008152506115ab565b8061158a84612345565b60405160200161159b9291906136ff565b6040516020818303038152906040525b915050919050565b600b5481565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61165b6117c2565b73ffffffffffffffffffffffffffffffffffffffff166116796111a4565b73ffffffffffffffffffffffffffffffffffffffff16146116cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c6906138d2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561173f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611736906137f2565b60405180910390fd5b61174881612038565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061188782611e35565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166118ae6117c2565b73ffffffffffffffffffffffffffffffffffffffff16148061190a57506118d36117c2565b73ffffffffffffffffffffffffffffffffffffffff166118f2846108fd565b73ffffffffffffffffffffffffffffffffffffffff16145b80611926575061192582600001516119206117c2565b6115bf565b5b905080611968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195f90613932565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146119da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d1906138b2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611a4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4190613852565b60405180910390fd5b611a5785858560016124f2565b611a6760008484600001516117ca565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611ad59190613c0e565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611b799190613b41565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611c7f9190613b87565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611dc557611cf5816117b5565b15611dc4576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e2d86868660016124f8565b505050505050565b611e3d612a76565b611e46826117b5565b611e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7c90613812565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000038310611ee95760017f000000000000000000000000000000000000000000000000000000000000000384611edc9190613c42565b611ee69190613b87565b90505b60008390505b818110611ff7576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611fe357809350505050612033565b508080611fef90613d48565b915050611eef565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202a906139f2565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6121188282604051806020016040528060008152506124fe565b5050565b600061213d8473ffffffffffffffffffffffffffffffffffffffff166129dd565b156122a6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121666117c2565b8786866040518563ffffffff1660e01b81526004016121889493929190613749565b602060405180830381600087803b1580156121a257600080fd5b505af19250505080156121d357506040513d601f19601f820116820180604052508101906121d09190612dd6565b60015b612256573d8060008114612203576040519150601f19603f3d011682016040523d82523d6000602084013e612208565b606091505b5060008151141561224e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224590613972565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506122ab565b600190505b949350505050565b6060600c80546122c290613d72565b80601f01602080910402602001604051908101604052809291908181526020018280546122ee90613d72565b801561233b5780601f106123105761010080835404028352916020019161233b565b820191906000526020600020905b81548152906001019060200180831161231e57829003601f168201915b5050505050905090565b6060600082141561238d576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124ed565b600082905060005b600082146123bf5780806123a890613da4565b915050600a826123b89190613bdd565b9150612395565b60008167ffffffffffffffff811115612401577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156124335781602001600182028036833780820191505090505b5090505b600085146124e65760018261244c9190613c42565b9150600a8561245b9190613ded565b60306124679190613b87565b60f81b8183815181106124a3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124df9190613bdd565b9450612437565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256b906139b2565b60405180910390fd5b61257d816117b5565b156125bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b490613992565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000003831115612620576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261790613a32565b60405180910390fd5b61262d60008583866124f2565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16815250509050604051806040016040528085836000015161272a9190613b41565b6fffffffffffffffffffffffffffffffff1681526020018583602001516127519190613b41565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b858110156129c057818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612960600088848861211c565b61299f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299690613972565b60405180910390fd5b81806129aa90613da4565b92505080806129b890613da4565b9150506128ef565b50806000819055506129d560008785886124f8565b505050505050565b600080823b905060008111915050919050565b8280546129fc90613d72565b90600052602060002090601f016020900481019282612a1e5760008555612a65565b82601f10612a3757805160ff1916838001178555612a65565b82800160010185558215612a65579182015b82811115612a64578251825591602001919060010190612a49565b5b509050612a729190612ab0565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b80821115612ac9576000816000905550600101612ab1565b5090565b6000612ae0612adb84613a9e565b613a6d565b905082815260208101848484011115612af857600080fd5b612b03848285613d06565b509392505050565b6000612b1e612b1984613ace565b613a6d565b905082815260208101848484011115612b3657600080fd5b612b41848285613d06565b509392505050565b600081359050612b5881613eeb565b92915050565b600081359050612b6d81613f02565b92915050565b600081359050612b8281613f19565b92915050565b600081519050612b9781613f19565b92915050565b600082601f830112612bae57600080fd5b8135612bbe848260208601612acd565b91505092915050565b600082601f830112612bd857600080fd5b8135612be8848260208601612b0b565b91505092915050565b600081359050612c0081613f30565b92915050565b600060208284031215612c1857600080fd5b6000612c2684828501612b49565b91505092915050565b60008060408385031215612c4257600080fd5b6000612c5085828601612b49565b9250506020612c6185828601612b49565b9150509250929050565b600080600060608486031215612c8057600080fd5b6000612c8e86828701612b49565b9350506020612c9f86828701612b49565b9250506040612cb086828701612bf1565b9150509250925092565b60008060008060808587031215612cd057600080fd5b6000612cde87828801612b49565b9450506020612cef87828801612b49565b9350506040612d0087828801612bf1565b925050606085013567ffffffffffffffff811115612d1d57600080fd5b612d2987828801612b9d565b91505092959194509250565b60008060408385031215612d4857600080fd5b6000612d5685828601612b49565b9250506020612d6785828601612b5e565b9150509250929050565b60008060408385031215612d8457600080fd5b6000612d9285828601612b49565b9250506020612da385828601612bf1565b9150509250929050565b600060208284031215612dbf57600080fd5b6000612dcd84828501612b73565b91505092915050565b600060208284031215612de857600080fd5b6000612df684828501612b88565b91505092915050565b600060208284031215612e1157600080fd5b600082013567ffffffffffffffff811115612e2b57600080fd5b612e3784828501612bc7565b91505092915050565b600060208284031215612e5257600080fd5b6000612e6084828501612bf1565b91505092915050565b612e7281613c76565b82525050565b612e8181613c88565b82525050565b6000612e9282613afe565b612e9c8185613b14565b9350612eac818560208601613d15565b612eb581613eda565b840191505092915050565b6000612ecb82613b09565b612ed58185613b25565b9350612ee5818560208601613d15565b612eee81613eda565b840191505092915050565b6000612f0482613b09565b612f0e8185613b36565b9350612f1e818560208601613d15565b80840191505092915050565b6000612f37602283613b25565b91507f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612f9d602683613b25565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613003602a83613b25565b91507f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008301527f74656e7420746f6b656e000000000000000000000000000000000000000000006020830152604082019050919050565b6000613069602383613b25565b91507f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008301527f6e647300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006130cf602583613b25565b91507f455243373231413a207472616e7366657220746f20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613135603983613b25565b91507f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006020830152604082019050919050565b600061319b602b83613b25565b91507f455243373231413a2062616c616e636520717565727920666f7220746865207a60008301527f65726f20616464726573730000000000000000000000000000000000000000006020830152604082019050919050565b6000613201602683613b25565b91507f455243373231413a207472616e736665722066726f6d20696e636f727265637460008301527f206f776e657200000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613267600583613b36565b91507f2e6a736f6e0000000000000000000000000000000000000000000000000000006000830152600582019050919050565b60006132a7602083613b25565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006132e7602f83613b25565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b600061334d601a83613b25565b91507f455243373231413a20617070726f766520746f2063616c6c65720000000000006000830152602082019050919050565b600061338d603283613b25565b91507f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008301527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006020830152604082019050919050565b60006133f3602283613b25565b91507f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008301527f65720000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613459603383613b25565b91507f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008301527f6563656976657220696d706c656d656e746572000000000000000000000000006020830152604082019050919050565b60006134bf601d83613b25565b91507f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006000830152602082019050919050565b60006134ff602183613b25565b91507f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613565602e83613b25565b91507f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008301527f6f776e657220627920696e6465780000000000000000000000000000000000006020830152604082019050919050565b60006135cb602f83613b25565b91507f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008301527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006020830152604082019050919050565b6000613631602d83613b25565b91507f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008301527f78697374656e7420746f6b656e000000000000000000000000000000000000006020830152604082019050919050565b6000613697602283613b25565b91507f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008301527f67680000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6136f981613cfc565b82525050565b600061370b8285612ef9565b91506137178284612ef9565b91506137228261325a565b91508190509392505050565b60006020820190506137436000830184612e69565b92915050565b600060808201905061375e6000830187612e69565b61376b6020830186612e69565b61377860408301856136f0565b818103606083015261378a8184612e87565b905095945050505050565b60006020820190506137aa6000830184612e78565b92915050565b600060208201905081810360008301526137ca8184612ec0565b905092915050565b600060208201905081810360008301526137eb81612f2a565b9050919050565b6000602082019050818103600083015261380b81612f90565b9050919050565b6000602082019050818103600083015261382b81612ff6565b9050919050565b6000602082019050818103600083015261384b8161305c565b9050919050565b6000602082019050818103600083015261386b816130c2565b9050919050565b6000602082019050818103600083015261388b81613128565b9050919050565b600060208201905081810360008301526138ab8161318e565b9050919050565b600060208201905081810360008301526138cb816131f4565b9050919050565b600060208201905081810360008301526138eb8161329a565b9050919050565b6000602082019050818103600083015261390b816132da565b9050919050565b6000602082019050818103600083015261392b81613340565b9050919050565b6000602082019050818103600083015261394b81613380565b9050919050565b6000602082019050818103600083015261396b816133e6565b9050919050565b6000602082019050818103600083015261398b8161344c565b9050919050565b600060208201905081810360008301526139ab816134b2565b9050919050565b600060208201905081810360008301526139cb816134f2565b9050919050565b600060208201905081810360008301526139eb81613558565b9050919050565b60006020820190508181036000830152613a0b816135be565b9050919050565b60006020820190508181036000830152613a2b81613624565b9050919050565b60006020820190508181036000830152613a4b8161368a565b9050919050565b6000602082019050613a6760008301846136f0565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613a9457613a93613eab565b5b8060405250919050565b600067ffffffffffffffff821115613ab957613ab8613eab565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613ae957613ae8613eab565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b4c82613cc0565b9150613b5783613cc0565b9250826fffffffffffffffffffffffffffffffff03821115613b7c57613b7b613e1e565b5b828201905092915050565b6000613b9282613cfc565b9150613b9d83613cfc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613bd257613bd1613e1e565b5b828201905092915050565b6000613be882613cfc565b9150613bf383613cfc565b925082613c0357613c02613e4d565b5b828204905092915050565b6000613c1982613cc0565b9150613c2483613cc0565b925082821015613c3757613c36613e1e565b5b828203905092915050565b6000613c4d82613cfc565b9150613c5883613cfc565b925082821015613c6b57613c6a613e1e565b5b828203905092915050565b6000613c8182613cdc565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613d33578082015181840152602081019050613d18565b83811115613d42576000848401525b50505050565b6000613d5382613cfc565b91506000821415613d6757613d66613e1e565b5b600182039050919050565b60006002820490506001821680613d8a57607f821691505b60208210811415613d9e57613d9d613e7c565b5b50919050565b6000613daf82613cfc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613de257613de1613e1e565b5b600182019050919050565b6000613df882613cfc565b9150613e0383613cfc565b925082613e1357613e12613e4d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b613ef481613c76565b8114613eff57600080fd5b50565b613f0b81613c88565b8114613f1657600080fd5b50565b613f2281613c94565b8114613f2d57600080fd5b50565b613f3981613cfc565b8114613f4457600080fd5b5056fea2646970667358221220c6ee8ceea7b8a798ebe5a717b1c8a0603cfffa503aa4bbd19e53b55955e6b47f64736f6c63430008000033

Deployed Bytecode Sourcemap

39759:1206:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24886:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26612:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28146:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27709:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23447:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28996:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24078:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39845:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40630:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40850:112;;;;;;;;;;;;;:::i;:::-;;29201:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23610:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40321:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26435:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39810:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39918:80;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25312:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38878:103;;;;;;;;;;;;;:::i;:::-;;40531:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38227:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40431:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26767:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40094:219;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28414:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29421:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26928:403;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39883:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33836:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28751:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39136:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24886:370;25013:4;25058:25;25043:40;;;:11;:40;;;;:99;;;;25109:33;25094:48;;;:11;:48;;;;25043:99;:160;;;;25168:35;25153:50;;;:11;:50;;;;25043:160;:207;;;;25214:36;25238:11;25214:23;:36::i;:::-;25043:207;25029:221;;24886:370;;;:::o;26612:94::-;26666:13;26695:5;26688:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26612:94;:::o;28146:204::-;28214:7;28238:16;28246:7;28238;:16::i;:::-;28230:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;28320:15;:24;28336:7;28320:24;;;;;;;;;;;;;;;;;;;;;28313:31;;28146:204;;;:::o;27709:379::-;27778:13;27794:24;27810:7;27794:15;:24::i;:::-;27778:40;;27839:5;27833:11;;:2;:11;;;;27825:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;27924:5;27908:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27933:37;27950:5;27957:12;:10;:12::i;:::-;27933:16;:37::i;:::-;27908:62;27892:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;28054:28;28063:2;28067:7;28076:5;28054:8;:28::i;:::-;27709:379;;;:::o;23447:94::-;23500:7;23523:12;;23516:19;;23447:94;:::o;28996:142::-;29104:28;29114:4;29120:2;29124:7;29104:9;:28::i;:::-;28996:142;;;:::o;24078:744::-;24187:7;24222:16;24232:5;24222:9;:16::i;:::-;24214:5;:24;24206:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;24284:22;24309:13;:11;:13::i;:::-;24284:38;;24329:19;24359:25;24409:9;24404:350;24428:14;24424:1;:18;24404:350;;;24458:31;24492:11;:14;24504:1;24492:14;;;;;;;;;;;24458:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24545:1;24519:28;;:9;:14;;;:28;;;24515:89;;24580:9;:14;;;24560:34;;24515:89;24637:5;24616:26;;:17;:26;;;24612:135;;;24674:5;24659:11;:20;24655:59;;;24701:1;24694:8;;;;;;;;;24655:59;24724:13;;;;;:::i;:::-;;;;24612:135;24404:350;24444:3;;;;;:::i;:::-;;;;24404:350;;;;24760:56;;;;;;;;;;:::i;:::-;;;;;;;;24078:744;;;;;:::o;39845:31::-;;;;:::o;40630:96::-;38458:12;:10;:12::i;:::-;38447:23;;:7;:5;:7::i;:::-;:23;;;38439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40709:9:::1;40696:10;:22;;;;40630:96:::0;:::o;40850:112::-;38458:12;:10;:12::i;:::-;38447:23;;:7;:5;:7::i;:::-;:23;;;38439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40914:10:::1;40906:24;;:47;40931:21;40906:47;;;;;;;;;;;;;;;;;;;;;;;40898:56;;;::::0;::::1;;40850:112::o:0;29201:157::-;29313:39;29330:4;29336:2;29340:7;29313:39;;;;;;;;;;;;:16;:39::i;:::-;29201:157;;;:::o;23610:177::-;23677:7;23709:13;:11;:13::i;:::-;23701:5;:21;23693:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;23776:5;23769:12;;23610:177;;;:::o;40321:102::-;38458:12;:10;:12::i;:::-;38447:23;;:7;:5;:7::i;:::-;:23;;;38439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40405:10:::1;40395:7;:20;;;;;;;;;;;;:::i;:::-;;40321:102:::0;:::o;26435:118::-;26499:7;26522:20;26534:7;26522:11;:20::i;:::-;:25;;;26515:32;;26435:118;;;:::o;39810:28::-;;;;:::o;39918:80::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25312:211::-;25376:7;25417:1;25400:19;;:5;:19;;;;25392:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;25489:12;:19;25502:5;25489:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;25481:36;;25474:43;;25312:211;;;:::o;38878:103::-;38458:12;:10;:12::i;:::-;38447:23;;:7;:5;:7::i;:::-;:23;;;38439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38943:30:::1;38970:1;38943:18;:30::i;:::-;38878:103::o:0;40531:91::-;38458:12;:10;:12::i;:::-;38447:23;;:7;:5;:7::i;:::-;:23;;;38439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40608:6:::1;40596:9;:18;;;;40531:91:::0;:::o;38227:87::-;38273:7;38300:6;;;;;;;;;;;38293:13;;38227:87;:::o;40431:92::-;38458:12;:10;:12::i;:::-;38447:23;;:7;:5;:7::i;:::-;:23;;;38439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40507:8:::1;40495:9;:20;;;;40431:92:::0;:::o;26767:98::-;26823:13;26852:7;26845:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26767:98;:::o;40094:219::-;40173:1;40161:9;:13;:39;;;;;40191:9;;40178;:22;;40161:39;40153:48;;;;;;40249:10;;40236:9;40220:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:39;;40212:48;;;;;;40273:32;40283:10;40295:9;40273;:32::i;:::-;40094:219;:::o;28414:274::-;28517:12;:10;:12::i;:::-;28505:24;;:8;:24;;;;28497:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;28614:8;28569:18;:32;28588:12;:10;:12::i;:::-;28569:32;;;;;;;;;;;;;;;:42;28602:8;28569:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;28663:8;28634:48;;28649:12;:10;:12::i;:::-;28634:48;;;28673:8;28634:48;;;;;;:::i;:::-;;;;;;;;28414:274;;:::o;29421:311::-;29558:28;29568:4;29574:2;29578:7;29558:9;:28::i;:::-;29609:48;29632:4;29638:2;29642:7;29651:5;29609:22;:48::i;:::-;29593:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;29421:311;;;;:::o;26928:403::-;27026:13;27067:16;27075:7;27067;:16::i;:::-;27051:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;27157:21;27181:10;:8;:10::i;:::-;27157:34;;27236:1;27218:7;27212:21;:25;:113;;;;;;;;;;;;;;;;;27273:7;27282:18;:7;:16;:18::i;:::-;27256:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27212:113;27198:127;;;26928:403;;;:::o;39883:28::-;;;;:::o;33836:43::-;;;;:::o;28751:186::-;28873:4;28896:18;:25;28915:5;28896:25;;;;;;;;;;;;;;;:35;28922:8;28896:35;;;;;;;;;;;;;;;;;;;;;;;;;28889:42;;28751:186;;;;:::o;39136:238::-;38458:12;:10;:12::i;:::-;38447:23;;:7;:5;:7::i;:::-;:23;;;38439:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39259:1:::1;39239:22;;:8;:22;;;;39217:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;39338:28;39357:8;39338:18;:28::i;:::-;39136:238:::0;:::o;8458:207::-;8588:4;8632:25;8617:40;;;:11;:40;;;;8610:47;;8458:207;;;:::o;29971:105::-;30028:4;30058:12;;30048:7;:22;30041:29;;29971:105;;;:::o;17857:98::-;17910:7;17937:10;17930:17;;17857:98;:::o;33658:172::-;33782:2;33755:15;:24;33771:7;33755:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;33816:7;33812:2;33796:28;;33805:5;33796:28;;;;;;;;;;;;33658:172;;;:::o;32023:1529::-;32120:35;32158:20;32170:7;32158:11;:20::i;:::-;32120:58;;32187:22;32229:13;:18;;;32213:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;32282:12;:10;:12::i;:::-;32258:36;;:20;32270:7;32258:11;:20::i;:::-;:36;;;32213:81;:142;;;;32305:50;32322:13;:18;;;32342:12;:10;:12::i;:::-;32305:16;:50::i;:::-;32213:142;32187:169;;32381:17;32365:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;32513:4;32491:26;;:13;:18;;;:26;;;32475:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;32602:1;32588:16;;:2;:16;;;;32580:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;32655:43;32677:4;32683:2;32687:7;32696:1;32655:21;:43::i;:::-;32755:49;32772:1;32776:7;32785:13;:18;;;32755:8;:49::i;:::-;32843:1;32813:12;:18;32826:4;32813:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32879:1;32851:12;:16;32864:2;32851:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32910:43;;;;;;;;32925:2;32910:43;;;;;;32936:15;32910:43;;;;;32887:11;:20;32899:7;32887:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33181:19;33213:1;33203:7;:11;;;;:::i;:::-;33181:33;;33266:1;33225:43;;:11;:24;33237:11;33225:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;33221:236;;;33283:20;33291:11;33283:7;:20::i;:::-;33279:171;;;33343:97;;;;;;;;33370:13;:18;;;33343:97;;;;;;33401:13;:28;;;33343:97;;;;;33316:11;:24;33328:11;33316:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33279:171;33221:236;33489:7;33485:2;33470:27;;33479:4;33470:27;;;;;;;;;;;;33504:42;33525:4;33531:2;33535:7;33544:1;33504:20;:42::i;:::-;32023:1529;;;;;;:::o;25775:606::-;25851:21;;:::i;:::-;25892:16;25900:7;25892;:16::i;:::-;25884:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;25964:26;26012:12;26001:7;:23;25997:93;;26081:1;26066:12;26056:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;26035:47;;25997:93;26103:12;26118:7;26103:22;;26098:212;26135:18;26127:4;:26;26098:212;;26172:31;26206:11;:17;26218:4;26206:17;;;;;;;;;;;26172:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26262:1;26236:28;;:9;:14;;;:28;;;26232:71;;26284:9;26277:16;;;;;;;26232:71;26098:212;26155:6;;;;;:::i;:::-;;;;26098:212;;;;26318:57;;;;;;;;;;:::i;:::-;;;;;;;;25775:606;;;;:::o;39534:191::-;39608:16;39627:6;;;;;;;;;;;39608:25;;39653:8;39644:6;;:17;;;;;;;;;;;;;;;;;;39708:8;39677:40;;39698:8;39677:40;;;;;;;;;;;;39534:191;;:::o;30082:98::-;30147:27;30157:2;30161:8;30147:27;;;;;;;;;;;;:9;:27::i;:::-;30082:98;;:::o;35373:690::-;35510:4;35527:15;:2;:13;;;:15::i;:::-;35523:535;;;35582:2;35566:36;;;35603:12;:10;:12::i;:::-;35617:4;35623:7;35632:5;35566:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35553:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35814:1;35797:6;:13;:18;35793:215;;;35830:61;;;;;;;;;;:::i;:::-;;;;;;;;35793:215;35976:6;35970:13;35961:6;35957:2;35953:15;35946:38;35553:464;35698:45;;;35688:55;;;:6;:55;;;;35681:62;;;;;35523:535;36046:4;36039:11;;35373:690;;;;;;;:::o;40734:108::-;40794:13;40827:7;40820:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40734:108;:::o;18380:723::-;18436:13;18666:1;18657:5;:10;18653:53;;;18684:10;;;;;;;;;;;;;;;;;;;;;18653:53;18716:12;18731:5;18716:20;;18747:14;18772:78;18787:1;18779:4;:9;18772:78;;18805:8;;;;;:::i;:::-;;;;18836:2;18828:10;;;;;:::i;:::-;;;18772:78;;;18860:19;18892:6;18882:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18860:39;;18910:154;18926:1;18917:5;:10;18910:154;;18954:1;18944:11;;;;;:::i;:::-;;;19021:2;19013:5;:10;;;;:::i;:::-;19000:2;:24;;;;:::i;:::-;18987:39;;18970:6;18977;18970:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;19050:2;19041:11;;;;;:::i;:::-;;;18910:154;;;19088:6;19074:21;;;;;18380:723;;;;:::o;36525:141::-;;;;;:::o;37052:140::-;;;;;:::o;30519:1272::-;30624:20;30647:12;;30624:35;;30688:1;30674:16;;:2;:16;;;;30666:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;30865:21;30873:12;30865:7;:21::i;:::-;30864:22;30856:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;30947:12;30935:8;:24;;30927:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;31007:61;31037:1;31041:2;31045:12;31059:8;31007:21;:61::i;:::-;31077:30;31110:12;:16;31123:2;31110:16;;;;;;;;;;;;;;;31077:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31152:119;;;;;;;;31202:8;31172:11;:19;;;:39;;;;:::i;:::-;31152:119;;;;;;31255:8;31220:11;:24;;;:44;;;;:::i;:::-;31152:119;;;;;31133:12;:16;31146:2;31133:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31306:43;;;;;;;;31321:2;31306:43;;;;;;31332:15;31306:43;;;;;31278:11;:25;31290:12;31278:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31358:20;31381:12;31358:35;;31407:9;31402:281;31426:8;31422:1;:12;31402:281;;;31480:12;31476:2;31455:38;;31472:1;31455:38;;;;;;;;;;;;31520:59;31551:1;31555:2;31559:12;31573:5;31520:22;:59::i;:::-;31502:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;31661:14;;;;;:::i;:::-;;;;31436:3;;;;;:::i;:::-;;;;31402:281;;;;31706:12;31691;:27;;;;31725:60;31754:1;31758:2;31762:12;31776:8;31725:20;:60::i;:::-;30519:1272;;;;;;:::o;9436:387::-;9496:4;9704:12;9771:7;9759:20;9751:28;;9814:1;9807:4;:8;9800:15;;;9436:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:133::-;;931:6;918:20;909:29;;947:30;971:5;947:30;:::i;:::-;899:84;;;;:::o;989:137::-;;1072:6;1059:20;1050:29;;1088:32;1114:5;1088:32;:::i;:::-;1040:86;;;;:::o;1132:141::-;;1219:6;1213:13;1204:22;;1235:32;1261:5;1235:32;:::i;:::-;1194:79;;;;:::o;1292:271::-;;1396:3;1389:4;1381:6;1377:17;1373:27;1363:2;;1414:1;1411;1404:12;1363:2;1454:6;1441:20;1479:78;1553:3;1545:6;1538:4;1530:6;1526:17;1479:78;:::i;:::-;1470:87;;1353:210;;;;;:::o;1583:273::-;;1688:3;1681:4;1673:6;1669:17;1665:27;1655:2;;1706:1;1703;1696:12;1655:2;1746:6;1733:20;1771:79;1846:3;1838:6;1831:4;1823:6;1819:17;1771:79;:::i;:::-;1762:88;;1645:211;;;;;:::o;1862:139::-;;1946:6;1933:20;1924:29;;1962:33;1989:5;1962:33;:::i;:::-;1914:87;;;;:::o;2007:262::-;;2115:2;2103:9;2094:7;2090:23;2086:32;2083:2;;;2131:1;2128;2121:12;2083:2;2174:1;2199:53;2244:7;2235:6;2224:9;2220:22;2199:53;:::i;:::-;2189:63;;2145:117;2073:196;;;;:::o;2275:407::-;;;2400:2;2388:9;2379:7;2375:23;2371:32;2368:2;;;2416:1;2413;2406:12;2368:2;2459:1;2484:53;2529:7;2520:6;2509:9;2505:22;2484:53;:::i;:::-;2474:63;;2430:117;2586:2;2612:53;2657:7;2648:6;2637:9;2633:22;2612:53;:::i;:::-;2602:63;;2557:118;2358:324;;;;;:::o;2688:552::-;;;;2830:2;2818:9;2809:7;2805:23;2801:32;2798:2;;;2846:1;2843;2836:12;2798:2;2889:1;2914:53;2959:7;2950:6;2939:9;2935:22;2914:53;:::i;:::-;2904:63;;2860:117;3016:2;3042:53;3087:7;3078:6;3067:9;3063:22;3042:53;:::i;:::-;3032:63;;2987:118;3144:2;3170:53;3215:7;3206:6;3195:9;3191:22;3170:53;:::i;:::-;3160:63;;3115:118;2788:452;;;;;:::o;3246:809::-;;;;;3414:3;3402:9;3393:7;3389:23;3385:33;3382:2;;;3431:1;3428;3421:12;3382:2;3474:1;3499:53;3544:7;3535:6;3524:9;3520:22;3499:53;:::i;:::-;3489:63;;3445:117;3601:2;3627:53;3672:7;3663:6;3652:9;3648:22;3627:53;:::i;:::-;3617:63;;3572:118;3729:2;3755:53;3800:7;3791:6;3780:9;3776:22;3755:53;:::i;:::-;3745:63;;3700:118;3885:2;3874:9;3870:18;3857:32;3916:18;3908:6;3905:30;3902:2;;;3948:1;3945;3938:12;3902:2;3976:62;4030:7;4021:6;4010:9;4006:22;3976:62;:::i;:::-;3966:72;;3828:220;3372:683;;;;;;;:::o;4061:401::-;;;4183:2;4171:9;4162:7;4158:23;4154:32;4151:2;;;4199:1;4196;4189:12;4151:2;4242:1;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4213:117;4369:2;4395:50;4437:7;4428:6;4417:9;4413:22;4395:50;:::i;:::-;4385:60;;4340:115;4141:321;;;;;:::o;4468:407::-;;;4593:2;4581:9;4572:7;4568:23;4564:32;4561:2;;;4609:1;4606;4599:12;4561:2;4652:1;4677:53;4722:7;4713:6;4702:9;4698:22;4677:53;:::i;:::-;4667:63;;4623:117;4779:2;4805:53;4850:7;4841:6;4830:9;4826:22;4805:53;:::i;:::-;4795:63;;4750:118;4551:324;;;;;:::o;4881:260::-;;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:52;5116:7;5107:6;5096:9;5092:22;5072:52;:::i;:::-;5062:62;;5018:116;4946:195;;;;:::o;5147:282::-;;5265:2;5253:9;5244:7;5240:23;5236:32;5233:2;;;5281:1;5278;5271:12;5233:2;5324:1;5349:63;5404:7;5395:6;5384:9;5380:22;5349:63;:::i;:::-;5339:73;;5295:127;5223:206;;;;:::o;5435:375::-;;5553:2;5541:9;5532:7;5528:23;5524:32;5521:2;;;5569:1;5566;5559:12;5521:2;5640:1;5629:9;5625:17;5612:31;5670:18;5662:6;5659:30;5656:2;;;5702:1;5699;5692:12;5656:2;5730:63;5785:7;5776:6;5765:9;5761:22;5730:63;:::i;:::-;5720:73;;5583:220;5511:299;;;;:::o;5816:262::-;;5924:2;5912:9;5903:7;5899:23;5895:32;5892:2;;;5940:1;5937;5930:12;5892:2;5983:1;6008:53;6053:7;6044:6;6033:9;6029:22;6008:53;:::i;:::-;5998:63;;5954:117;5882:196;;;;:::o;6084:118::-;6171:24;6189:5;6171:24;:::i;:::-;6166:3;6159:37;6149:53;;:::o;6208:109::-;6289:21;6304:5;6289:21;:::i;:::-;6284:3;6277:34;6267:50;;:::o;6323:360::-;;6437:38;6469:5;6437:38;:::i;:::-;6491:70;6554:6;6549:3;6491:70;:::i;:::-;6484:77;;6570:52;6615:6;6610:3;6603:4;6596:5;6592:16;6570:52;:::i;:::-;6647:29;6669:6;6647:29;:::i;:::-;6642:3;6638:39;6631:46;;6413:270;;;;;:::o;6689:364::-;;6805:39;6838:5;6805:39;:::i;:::-;6860:71;6924:6;6919:3;6860:71;:::i;:::-;6853:78;;6940:52;6985:6;6980:3;6973:4;6966:5;6962:16;6940:52;:::i;:::-;7017:29;7039:6;7017:29;:::i;:::-;7012:3;7008:39;7001:46;;6781:272;;;;;:::o;7059:377::-;;7193:39;7226:5;7193:39;:::i;:::-;7248:89;7330:6;7325:3;7248:89;:::i;:::-;7241:96;;7346:52;7391:6;7386:3;7379:4;7372:5;7368:16;7346:52;:::i;:::-;7423:6;7418:3;7414:16;7407:23;;7169:267;;;;;:::o;7442:366::-;;7605:67;7669:2;7664:3;7605:67;:::i;:::-;7598:74;;7702:34;7698:1;7693:3;7689:11;7682:55;7768:4;7763:2;7758:3;7754:12;7747:26;7799:2;7794:3;7790:12;7783:19;;7588:220;;;:::o;7814:370::-;;7977:67;8041:2;8036:3;7977:67;:::i;:::-;7970:74;;8074:34;8070:1;8065:3;8061:11;8054:55;8140:8;8135:2;8130:3;8126:12;8119:30;8175:2;8170:3;8166:12;8159:19;;7960:224;;;:::o;8190:374::-;;8353:67;8417:2;8412:3;8353:67;:::i;:::-;8346:74;;8450:34;8446:1;8441:3;8437:11;8430:55;8516:12;8511:2;8506:3;8502:12;8495:34;8555:2;8550:3;8546:12;8539:19;;8336:228;;;:::o;8570:367::-;;8733:67;8797:2;8792:3;8733:67;:::i;:::-;8726:74;;8830:34;8826:1;8821:3;8817:11;8810:55;8896:5;8891:2;8886:3;8882:12;8875:27;8928:2;8923:3;8919:12;8912:19;;8716:221;;;:::o;8943:369::-;;9106:67;9170:2;9165:3;9106:67;:::i;:::-;9099:74;;9203:34;9199:1;9194:3;9190:11;9183:55;9269:7;9264:2;9259:3;9255:12;9248:29;9303:2;9298:3;9294:12;9287:19;;9089:223;;;:::o;9318:389::-;;9481:67;9545:2;9540:3;9481:67;:::i;:::-;9474:74;;9578:34;9574:1;9569:3;9565:11;9558:55;9644:27;9639:2;9634:3;9630:12;9623:49;9698:2;9693:3;9689:12;9682:19;;9464:243;;;:::o;9713:375::-;;9876:67;9940:2;9935:3;9876:67;:::i;:::-;9869:74;;9973:34;9969:1;9964:3;9960:11;9953:55;10039:13;10034:2;10029:3;10025:12;10018:35;10079:2;10074:3;10070:12;10063:19;;9859:229;;;:::o;10094:370::-;;10257:67;10321:2;10316:3;10257:67;:::i;:::-;10250:74;;10354:34;10350:1;10345:3;10341:11;10334:55;10420:8;10415:2;10410:3;10406:12;10399:30;10455:2;10450:3;10446:12;10439:19;;10240:224;;;:::o;10470:337::-;;10651:84;10733:1;10728:3;10651:84;:::i;:::-;10644:91;;10765:7;10761:1;10756:3;10752:11;10745:28;10799:1;10794:3;10790:11;10783:18;;10634:173;;;:::o;10813:330::-;;10976:67;11040:2;11035:3;10976:67;:::i;:::-;10969:74;;11073:34;11069:1;11064:3;11060:11;11053:55;11134:2;11129:3;11125:12;11118:19;;10959:184;;;:::o;11149:379::-;;11312:67;11376:2;11371:3;11312:67;:::i;:::-;11305:74;;11409:34;11405:1;11400:3;11396:11;11389:55;11475:17;11470:2;11465:3;11461:12;11454:39;11519:2;11514:3;11510:12;11503:19;;11295:233;;;:::o;11534:324::-;;11697:67;11761:2;11756:3;11697:67;:::i;:::-;11690:74;;11794:28;11790:1;11785:3;11781:11;11774:49;11849:2;11844:3;11840:12;11833:19;;11680:178;;;:::o;11864:382::-;;12027:67;12091:2;12086:3;12027:67;:::i;:::-;12020:74;;12124:34;12120:1;12115:3;12111:11;12104:55;12190:20;12185:2;12180:3;12176:12;12169:42;12237:2;12232:3;12228:12;12221:19;;12010:236;;;:::o;12252:366::-;;12415:67;12479:2;12474:3;12415:67;:::i;:::-;12408:74;;12512:34;12508:1;12503:3;12499:11;12492:55;12578:4;12573:2;12568:3;12564:12;12557:26;12609:2;12604:3;12600:12;12593:19;;12398:220;;;:::o;12624:383::-;;12787:67;12851:2;12846:3;12787:67;:::i;:::-;12780:74;;12884:34;12880:1;12875:3;12871:11;12864:55;12950:21;12945:2;12940:3;12936:12;12929:43;12998:2;12993:3;12989:12;12982:19;;12770:237;;;:::o;13013:327::-;;13176:67;13240:2;13235:3;13176:67;:::i;:::-;13169:74;;13273:31;13269:1;13264:3;13260:11;13253:52;13331:2;13326:3;13322:12;13315:19;;13159:181;;;:::o;13346:365::-;;13509:67;13573:2;13568:3;13509:67;:::i;:::-;13502:74;;13606:34;13602:1;13597:3;13593:11;13586:55;13672:3;13667:2;13662:3;13658:12;13651:25;13702:2;13697:3;13693:12;13686:19;;13492:219;;;:::o;13717:378::-;;13880:67;13944:2;13939:3;13880:67;:::i;:::-;13873:74;;13977:34;13973:1;13968:3;13964:11;13957:55;14043:16;14038:2;14033:3;14029:12;14022:38;14086:2;14081:3;14077:12;14070:19;;13863:232;;;:::o;14101:379::-;;14264:67;14328:2;14323:3;14264:67;:::i;:::-;14257:74;;14361:34;14357:1;14352:3;14348:11;14341:55;14427:17;14422:2;14417:3;14413:12;14406:39;14471:2;14466:3;14462:12;14455:19;;14247:233;;;:::o;14486:377::-;;14649:67;14713:2;14708:3;14649:67;:::i;:::-;14642:74;;14746:34;14742:1;14737:3;14733:11;14726:55;14812:15;14807:2;14802:3;14798:12;14791:37;14854:2;14849:3;14845:12;14838:19;;14632:231;;;:::o;14869:366::-;;15032:67;15096:2;15091:3;15032:67;:::i;:::-;15025:74;;15129:34;15125:1;15120:3;15116:11;15109:55;15195:4;15190:2;15185:3;15181:12;15174:26;15226:2;15221:3;15217:12;15210:19;;15015:220;;;:::o;15241:118::-;15328:24;15346:5;15328:24;:::i;:::-;15323:3;15316:37;15306:53;;:::o;15365:701::-;;15668:95;15759:3;15750:6;15668:95;:::i;:::-;15661:102;;15780:95;15871:3;15862:6;15780:95;:::i;:::-;15773:102;;15892:148;16036:3;15892:148;:::i;:::-;15885:155;;16057:3;16050:10;;15650:416;;;;;:::o;16072:222::-;;16203:2;16192:9;16188:18;16180:26;;16216:71;16284:1;16273:9;16269:17;16260:6;16216:71;:::i;:::-;16170:124;;;;:::o;16300:640::-;;16533:3;16522:9;16518:19;16510:27;;16547:71;16615:1;16604:9;16600:17;16591:6;16547:71;:::i;:::-;16628:72;16696:2;16685:9;16681:18;16672:6;16628:72;:::i;:::-;16710;16778:2;16767:9;16763:18;16754:6;16710:72;:::i;:::-;16829:9;16823:4;16819:20;16814:2;16803:9;16799:18;16792:48;16857:76;16928:4;16919:6;16857:76;:::i;:::-;16849:84;;16500:440;;;;;;;:::o;16946:210::-;;17071:2;17060:9;17056:18;17048:26;;17084:65;17146:1;17135:9;17131:17;17122:6;17084:65;:::i;:::-;17038:118;;;;:::o;17162:313::-;;17313:2;17302:9;17298:18;17290:26;;17362:9;17356:4;17352:20;17348:1;17337:9;17333:17;17326:47;17390:78;17463:4;17454:6;17390:78;:::i;:::-;17382:86;;17280:195;;;;:::o;17481:419::-;;17685:2;17674:9;17670:18;17662:26;;17734:9;17728:4;17724:20;17720:1;17709:9;17705:17;17698:47;17762:131;17888:4;17762:131;:::i;:::-;17754:139;;17652:248;;;:::o;17906:419::-;;18110:2;18099:9;18095:18;18087:26;;18159:9;18153:4;18149:20;18145:1;18134:9;18130:17;18123:47;18187:131;18313:4;18187:131;:::i;:::-;18179:139;;18077:248;;;:::o;18331:419::-;;18535:2;18524:9;18520:18;18512:26;;18584:9;18578:4;18574:20;18570:1;18559:9;18555:17;18548:47;18612:131;18738:4;18612:131;:::i;:::-;18604:139;;18502:248;;;:::o;18756:419::-;;18960:2;18949:9;18945:18;18937:26;;19009:9;19003:4;18999:20;18995:1;18984:9;18980:17;18973:47;19037:131;19163:4;19037:131;:::i;:::-;19029:139;;18927:248;;;:::o;19181:419::-;;19385:2;19374:9;19370:18;19362:26;;19434:9;19428:4;19424:20;19420:1;19409:9;19405:17;19398:47;19462:131;19588:4;19462:131;:::i;:::-;19454:139;;19352:248;;;:::o;19606:419::-;;19810:2;19799:9;19795:18;19787:26;;19859:9;19853:4;19849:20;19845:1;19834:9;19830:17;19823:47;19887:131;20013:4;19887:131;:::i;:::-;19879:139;;19777:248;;;:::o;20031:419::-;;20235:2;20224:9;20220:18;20212:26;;20284:9;20278:4;20274:20;20270:1;20259:9;20255:17;20248:47;20312:131;20438:4;20312:131;:::i;:::-;20304:139;;20202:248;;;:::o;20456:419::-;;20660:2;20649:9;20645:18;20637:26;;20709:9;20703:4;20699:20;20695:1;20684:9;20680:17;20673:47;20737:131;20863:4;20737:131;:::i;:::-;20729:139;;20627:248;;;:::o;20881:419::-;;21085:2;21074:9;21070:18;21062:26;;21134:9;21128:4;21124:20;21120:1;21109:9;21105:17;21098:47;21162:131;21288:4;21162:131;:::i;:::-;21154:139;;21052:248;;;:::o;21306:419::-;;21510:2;21499:9;21495:18;21487:26;;21559:9;21553:4;21549:20;21545:1;21534:9;21530:17;21523:47;21587:131;21713:4;21587:131;:::i;:::-;21579:139;;21477:248;;;:::o;21731:419::-;;21935:2;21924:9;21920:18;21912:26;;21984:9;21978:4;21974:20;21970:1;21959:9;21955:17;21948:47;22012:131;22138:4;22012:131;:::i;:::-;22004:139;;21902:248;;;:::o;22156:419::-;;22360:2;22349:9;22345:18;22337:26;;22409:9;22403:4;22399:20;22395:1;22384:9;22380:17;22373:47;22437:131;22563:4;22437:131;:::i;:::-;22429:139;;22327:248;;;:::o;22581:419::-;;22785:2;22774:9;22770:18;22762:26;;22834:9;22828:4;22824:20;22820:1;22809:9;22805:17;22798:47;22862:131;22988:4;22862:131;:::i;:::-;22854:139;;22752:248;;;:::o;23006:419::-;;23210:2;23199:9;23195:18;23187:26;;23259:9;23253:4;23249:20;23245:1;23234:9;23230:17;23223:47;23287:131;23413:4;23287:131;:::i;:::-;23279:139;;23177:248;;;:::o;23431:419::-;;23635:2;23624:9;23620:18;23612:26;;23684:9;23678:4;23674:20;23670:1;23659:9;23655:17;23648:47;23712:131;23838:4;23712:131;:::i;:::-;23704:139;;23602:248;;;:::o;23856:419::-;;24060:2;24049:9;24045:18;24037:26;;24109:9;24103:4;24099:20;24095:1;24084:9;24080:17;24073:47;24137:131;24263:4;24137:131;:::i;:::-;24129:139;;24027:248;;;:::o;24281:419::-;;24485:2;24474:9;24470:18;24462:26;;24534:9;24528:4;24524:20;24520:1;24509:9;24505:17;24498:47;24562:131;24688:4;24562:131;:::i;:::-;24554:139;;24452:248;;;:::o;24706:419::-;;24910:2;24899:9;24895:18;24887:26;;24959:9;24953:4;24949:20;24945:1;24934:9;24930:17;24923:47;24987:131;25113:4;24987:131;:::i;:::-;24979:139;;24877:248;;;:::o;25131:419::-;;25335:2;25324:9;25320:18;25312:26;;25384:9;25378:4;25374:20;25370:1;25359:9;25355:17;25348:47;25412:131;25538:4;25412:131;:::i;:::-;25404:139;;25302:248;;;:::o;25556:419::-;;25760:2;25749:9;25745:18;25737:26;;25809:9;25803:4;25799:20;25795:1;25784:9;25780:17;25773:47;25837:131;25963:4;25837:131;:::i;:::-;25829:139;;25727:248;;;:::o;25981:222::-;;26112:2;26101:9;26097:18;26089:26;;26125:71;26193:1;26182:9;26178:17;26169:6;26125:71;:::i;:::-;26079:124;;;;:::o;26209:283::-;;26275:2;26269:9;26259:19;;26317:4;26309:6;26305:17;26424:6;26412:10;26409:22;26388:18;26376:10;26373:34;26370:62;26367:2;;;26435:18;;:::i;:::-;26367:2;26475:10;26471:2;26464:22;26249:243;;;;:::o;26498:331::-;;26649:18;26641:6;26638:30;26635:2;;;26671:18;;:::i;:::-;26635:2;26756:4;26752:9;26745:4;26737:6;26733:17;26729:33;26721:41;;26817:4;26811;26807:15;26799:23;;26564:265;;;:::o;26835:332::-;;26987:18;26979:6;26976:30;26973:2;;;27009:18;;:::i;:::-;26973:2;27094:4;27090:9;27083:4;27075:6;27071:17;27067:33;27059:41;;27155:4;27149;27145:15;27137:23;;26902:265;;;:::o;27173:98::-;;27258:5;27252:12;27242:22;;27231:40;;;:::o;27277:99::-;;27363:5;27357:12;27347:22;;27336:40;;;:::o;27382:168::-;;27499:6;27494:3;27487:19;27539:4;27534:3;27530:14;27515:29;;27477:73;;;;:::o;27556:169::-;;27674:6;27669:3;27662:19;27714:4;27709:3;27705:14;27690:29;;27652:73;;;;:::o;27731:148::-;;27870:3;27855:18;;27845:34;;;;:::o;27885:273::-;;27944:20;27962:1;27944:20;:::i;:::-;27939:25;;27978:20;27996:1;27978:20;:::i;:::-;27973:25;;28100:1;28064:34;28060:42;28057:1;28054:49;28051:2;;;28106:18;;:::i;:::-;28051:2;28150:1;28147;28143:9;28136:16;;27929:229;;;;:::o;28164:305::-;;28223:20;28241:1;28223:20;:::i;:::-;28218:25;;28257:20;28275:1;28257:20;:::i;:::-;28252:25;;28411:1;28343:66;28339:74;28336:1;28333:81;28330:2;;;28417:18;;:::i;:::-;28330:2;28461:1;28458;28454:9;28447:16;;28208:261;;;;:::o;28475:185::-;;28532:20;28550:1;28532:20;:::i;:::-;28527:25;;28566:20;28584:1;28566:20;:::i;:::-;28561:25;;28605:1;28595:2;;28610:18;;:::i;:::-;28595:2;28652:1;28649;28645:9;28640:14;;28517:143;;;;:::o;28666:191::-;;28726:20;28744:1;28726:20;:::i;:::-;28721:25;;28760:20;28778:1;28760:20;:::i;:::-;28755:25;;28799:1;28796;28793:8;28790:2;;;28804:18;;:::i;:::-;28790:2;28849:1;28846;28842:9;28834:17;;28711:146;;;;:::o;28863:191::-;;28923:20;28941:1;28923:20;:::i;:::-;28918:25;;28957:20;28975:1;28957:20;:::i;:::-;28952:25;;28996:1;28993;28990:8;28987:2;;;29001:18;;:::i;:::-;28987:2;29046:1;29043;29039:9;29031:17;;28908:146;;;;:::o;29060:96::-;;29126:24;29144:5;29126:24;:::i;:::-;29115:35;;29105:51;;;:::o;29162:90::-;;29239:5;29232:13;29225:21;29214:32;;29204:48;;;:::o;29258:149::-;;29334:66;29327:5;29323:78;29312:89;;29302:105;;;:::o;29413:118::-;;29490:34;29483:5;29479:46;29468:57;;29458:73;;;:::o;29537:126::-;;29614:42;29607:5;29603:54;29592:65;;29582:81;;;:::o;29669:77::-;;29735:5;29724:16;;29714:32;;;:::o;29752:154::-;29836:6;29831:3;29826;29813:30;29898:1;29889:6;29884:3;29880:16;29873:27;29803:103;;;:::o;29912:307::-;29980:1;29990:113;30004:6;30001:1;29998:13;29990:113;;;30089:1;30084:3;30080:11;30074:18;30070:1;30065:3;30061:11;30054:39;30026:2;30023:1;30019:10;30014:15;;29990:113;;;30121:6;30118:1;30115:13;30112:2;;;30201:1;30192:6;30187:3;30183:16;30176:27;30112:2;29961:258;;;;:::o;30225:171::-;;30287:24;30305:5;30287:24;:::i;:::-;30278:33;;30333:4;30326:5;30323:15;30320:2;;;30341:18;;:::i;:::-;30320:2;30388:1;30381:5;30377:13;30370:20;;30268:128;;;:::o;30402:320::-;;30483:1;30477:4;30473:12;30463:22;;30530:1;30524:4;30520:12;30551:18;30541:2;;30607:4;30599:6;30595:17;30585:27;;30541:2;30669;30661:6;30658:14;30638:18;30635:38;30632:2;;;30688:18;;:::i;:::-;30632:2;30453:269;;;;:::o;30728:233::-;;30790:24;30808:5;30790:24;:::i;:::-;30781:33;;30836:66;30829:5;30826:77;30823:2;;;30906:18;;:::i;:::-;30823:2;30953:1;30946:5;30942:13;30935:20;;30771:190;;;:::o;30967:176::-;;31016:20;31034:1;31016:20;:::i;:::-;31011:25;;31050:20;31068:1;31050:20;:::i;:::-;31045:25;;31089:1;31079:2;;31094:18;;:::i;:::-;31079:2;31135:1;31132;31128:9;31123:14;;31001:142;;;;:::o;31149:180::-;31197:77;31194:1;31187:88;31294:4;31291:1;31284:15;31318:4;31315:1;31308:15;31335:180;31383:77;31380:1;31373:88;31480:4;31477:1;31470:15;31504:4;31501:1;31494:15;31521:180;31569:77;31566:1;31559:88;31666:4;31663:1;31656:15;31690:4;31687:1;31680:15;31707:180;31755:77;31752:1;31745:88;31852:4;31849:1;31842:15;31876:4;31873:1;31866:15;31893:102;;31985:2;31981:7;31976:2;31969:5;31965:14;31961:28;31951:38;;31941:54;;;:::o;32001:122::-;32074:24;32092:5;32074:24;:::i;:::-;32067:5;32064:35;32054:2;;32113:1;32110;32103:12;32054:2;32044:79;:::o;32129:116::-;32199:21;32214:5;32199:21;:::i;:::-;32192:5;32189:32;32179:2;;32235:1;32232;32225:12;32179:2;32169:76;:::o;32251:120::-;32323:23;32340:5;32323:23;:::i;:::-;32316:5;32313:34;32303:2;;32361:1;32358;32351:12;32303:2;32293:78;:::o;32377:122::-;32450:24;32468:5;32450:24;:::i;:::-;32443:5;32440:35;32430:2;;32489:1;32486;32479:12;32430:2;32420:79;:::o

Swarm Source

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