ETH Price: $3,480.31 (+1.67%)
Gas: 15 Gwei

Token

DESKELETONS (DE)
 

Overview

Max Total Supply

3,877 DE

Holders

569

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
pablopa.eth
Balance
3 DE
0x158cb8db071f8565794c1ac689ad8f13b9b7e744
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:
DESKELETONS

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

/**
 *Submitted for verification at Etherscan.io on 2022-07-17
*/

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

/**
 *Submitted for verification at Etherscan.io on 2022-07-11
*/

// 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(), "You are 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 DESKELETONS is ERC721A, Ownable {
    uint256 public NFT_PRICE = 0 ether;
    uint256 public MAX_SUPPLY = 3000;
    uint256 public MAX_MINTS = 275;
    string public baseURI = "https://theklubrises.mypinata.cloud/ipfs/Qmbkytx83im144JV7g9sfSqufZujuBXFoP4kRx6mkM4WEG/";
    string public baseExtension = "";
     bool public paused = true;   
    
    constructor() ERC721A("DESKELETONS", "DE", MAX_MINTS, MAX_SUPPLY) {  
        _safeMint(_msgSender(), 1);
    }
    

    function FreeMint(uint256 numTokens) public payable {
        require(!paused, "Paused");
        require(numTokens <= 3 && numTokens >0);
        _safeMint(msg.sender, numTokens);
    }

    function ArtisttMint(uint256 numTokens) public payable onlyOwner {
        _safeMint(msg.sender, numTokens);
    }


    function pause(bool _state) public onlyOwner {
        paused = _state;
    }

    function setBaseURI(string memory newBaseURI) public onlyOwner {
        baseURI = newBaseURI;
    }
    function tokenURI(uint256 _tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(_exists(_tokenId), "That token doesn't exist");
        return
            bytes(baseURI).length > 0
                ? string(
                    abi.encodePacked(
                        baseURI,
                        Strings.toString(_tokenId),
                        baseExtension
                    )
                )
                : "";
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"ArtisttMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numTokens","type":"uint256"}],"name":"FreeMint","outputs":[],"stateMutability":"payable","type":"function"},{"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"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"}]

60c06040526000805560006007556000600955610bb8600a55610113600b55604051806080016040528060588152602001620055fc60589139600c908162000048919062000c4a565b5060405180602001604052806000815250600d908162000069919062000c4a565b506001600e60006101000a81548160ff0219169083151502179055503480156200009257600080fd5b506040518060400160405280600b81526020017f4445534b454c45544f4e530000000000000000000000000000000000000000008152506040518060400160405280600281526020017f4445000000000000000000000000000000000000000000000000000000000000815250600b54600a54600081116200014b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001429062000db8565b60405180910390fd5b6000821162000191576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001889062000e50565b60405180910390fd5b8360019081620001a2919062000c4a565b508260029081620001b4919062000c4a565b508160a08181525050806080818152505050505050620001e9620001dd6200021160201b60201c565b6200021960201b60201c565b6200020b620001fd6200021160201b60201c565b6001620002df60201b60201c565b62001373565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003018282604051806020016040528060008152506200030560201b60201c565b5050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036200037d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003749062000ee8565b60405180910390fd5b6200038e81620007fb60201b60201c565b15620003d1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003c89062000f5a565b60405180910390fd5b60a05183111562000419576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004109062000ff2565b60405180910390fd5b6200042e60008583866200080860201b60201c565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516200052d91906200105f565b6fffffffffffffffffffffffffffffffff1681526020018583602001516200055691906200105f565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b85811015620007d657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46200076e60008884886200080e60201b60201c565b620007b0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007a79062001122565b60405180910390fd5b8180620007bd9062001144565b9250508080620007cd9062001144565b915050620006f4565b5080600081905550620007f36000878588620009b760201b60201c565b505050505050565b6000805482109050919050565b50505050565b60006200083c8473ffffffffffffffffffffffffffffffffffffffff16620009bd60201b620016ee1760201c565b15620009aa578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026200086e6200021160201b60201c565b8786866040518563ffffffff1660e01b81526004016200089294939291906200128b565b6020604051808303816000875af1925050508015620008d157506040513d601f19601f82011682018060405250810190620008ce919062001341565b60015b62000959573d806000811462000904576040519150601f19603f3d011682016040523d82523d6000602084013e62000909565b606091505b50600081510362000951576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009489062001122565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050620009af565b600190505b949350505050565b50505050565b600080823b905060008111915050919050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a5257607f821691505b60208210810362000a685762000a6762000a0a565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000ad27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000a93565b62000ade868362000a93565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000b2b62000b2562000b1f8462000af6565b62000b00565b62000af6565b9050919050565b6000819050919050565b62000b478362000b0a565b62000b5f62000b568262000b32565b84845462000aa0565b825550505050565b600090565b62000b7662000b67565b62000b8381848462000b3c565b505050565b5b8181101562000bab5762000b9f60008262000b6c565b60018101905062000b89565b5050565b601f82111562000bfa5762000bc48162000a6e565b62000bcf8462000a83565b8101602085101562000bdf578190505b62000bf762000bee8562000a83565b83018262000b88565b50505b505050565b600082821c905092915050565b600062000c1f6000198460080262000bff565b1980831691505092915050565b600062000c3a838362000c0c565b9150826002028217905092915050565b62000c5582620009d0565b67ffffffffffffffff81111562000c715762000c70620009db565b5b62000c7d825462000a39565b62000c8a82828562000baf565b600060209050601f83116001811462000cc2576000841562000cad578287015190505b62000cb9858262000c2c565b86555062000d29565b601f19841662000cd28662000a6e565b60005b8281101562000cfc5784890151825560018201915060208501945060208101905062000cd5565b8683101562000d1c578489015162000d18601f89168262000c0c565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060008201527f6e6f6e7a65726f20737570706c79000000000000000000000000000000000000602082015250565b600062000da0602e8362000d31565b915062000dad8262000d42565b604082019050919050565b6000602082019050818103600083015262000dd38162000d91565b9050919050565b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b600062000e3860278362000d31565b915062000e458262000dda565b604082019050919050565b6000602082019050818103600083015262000e6b8162000e29565b9050919050565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600062000ed060218362000d31565b915062000edd8262000e72565b604082019050919050565b6000602082019050818103600083015262000f038162000ec1565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b600062000f42601d8362000d31565b915062000f4f8262000f0a565b602082019050919050565b6000602082019050818103600083015262000f758162000f33565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b600062000fda60228362000d31565b915062000fe78262000f7c565b604082019050919050565b600060208201905081810360008301526200100d8162000fcb565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200106c8262001014565b9150620010798362001014565b9250826fffffffffffffffffffffffffffffffff03821115620010a157620010a062001030565b5b828201905092915050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b60006200110a60338362000d31565b91506200111782620010ac565b604082019050919050565b600060208201905081810360008301526200113d81620010fb565b9050919050565b6000620011518262000af6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820362001186576200118562001030565b5b600182019050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620011be8262001191565b9050919050565b620011d081620011b1565b82525050565b620011e18162000af6565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b838110156200122357808201518184015260208101905062001206565b8381111562001233576000848401525b50505050565b6000601f19601f8301169050919050565b60006200125782620011e7565b620012638185620011f2565b93506200127581856020860162001203565b620012808162001239565b840191505092915050565b6000608082019050620012a26000830187620011c5565b620012b16020830186620011c5565b620012c06040830185620011d6565b8181036060830152620012d481846200124a565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6200131b81620012e4565b81146200132757600080fd5b50565b6000815190506200133b8162001310565b92915050565b6000602082840312156200135a5762001359620012df565b5b60006200136a848285016200132a565b91505092915050565b60805160a051614258620013a460003960008181611e5b01528181611e8401526124830152600050506142586000f3fe6080604052600436106101cd5760003560e01c8063676dd563116100f7578063b88d4fde11610095578063cce132d111610064578063cce132d11461066e578063d7224ba014610699578063e985e9c5146106c4578063f2fde38b14610701576101cd565b8063b88d4fde146105c1578063bdfaa084146105ea578063c668286214610606578063c87b56dd14610631576101cd565b8063715018a6116100d1578063715018a61461052b5780638da5cb5b1461054257806395d89b411461056d578063a22cb46514610598576101cd565b8063676dd563146104985780636c0360eb146104c357806370a08231146104ee576101cd565b80632f745c591161016f57806355f804b31161013e57806355f804b3146103eb5780635c975abb1461041457806362569bb21461043f5780636352211e1461045b576101cd565b80632f745c591461031d57806332cb6b0c1461035a57806342842e0e146103855780634f6ccce7146103ae576101cd565b8063081812fc116101ab578063081812fc14610263578063095ea7b3146102a057806318160ddd146102c957806323b872dd146102f4576101cd565b806301ffc9a7146101d257806302329a291461020f57806306fdde0314610238575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612947565b61072a565b604051610206919061298f565b60405180910390f35b34801561021b57600080fd5b50610236600480360381019061023191906129d6565b610874565b005b34801561024457600080fd5b5061024d61090d565b60405161025a9190612a9c565b60405180910390f35b34801561026f57600080fd5b5061028a60048036038101906102859190612af4565b61099f565b6040516102979190612b62565b60405180910390f35b3480156102ac57600080fd5b506102c760048036038101906102c29190612ba9565b610a24565b005b3480156102d557600080fd5b506102de610b3c565b6040516102eb9190612bf8565b60405180910390f35b34801561030057600080fd5b5061031b60048036038101906103169190612c13565b610b45565b005b34801561032957600080fd5b50610344600480360381019061033f9190612ba9565b610b55565b6040516103519190612bf8565b60405180910390f35b34801561036657600080fd5b5061036f610d51565b60405161037c9190612bf8565b60405180910390f35b34801561039157600080fd5b506103ac60048036038101906103a79190612c13565b610d57565b005b3480156103ba57600080fd5b506103d560048036038101906103d09190612af4565b610d77565b6040516103e29190612bf8565b60405180910390f35b3480156103f757600080fd5b50610412600480360381019061040d9190612d9b565b610dca565b005b34801561042057600080fd5b50610429610e59565b604051610436919061298f565b60405180910390f35b61045960048036038101906104549190612af4565b610e6c565b005b34801561046757600080fd5b50610482600480360381019061047d9190612af4565b610ef5565b60405161048f9190612b62565b60405180910390f35b3480156104a457600080fd5b506104ad610f0b565b6040516104ba9190612bf8565b60405180910390f35b3480156104cf57600080fd5b506104d8610f11565b6040516104e59190612a9c565b60405180910390f35b3480156104fa57600080fd5b5061051560048036038101906105109190612de4565b610f9f565b6040516105229190612bf8565b60405180910390f35b34801561053757600080fd5b50610540611087565b005b34801561054e57600080fd5b5061055761110f565b6040516105649190612b62565b60405180910390f35b34801561057957600080fd5b50610582611139565b60405161058f9190612a9c565b60405180910390f35b3480156105a457600080fd5b506105bf60048036038101906105ba9190612e11565b6111cb565b005b3480156105cd57600080fd5b506105e860048036038101906105e39190612ef2565b61134b565b005b61060460048036038101906105ff9190612af4565b6113a7565b005b34801561061257600080fd5b5061061b61141e565b6040516106289190612a9c565b60405180910390f35b34801561063d57600080fd5b5061065860048036038101906106539190612af4565b6114ac565b6040516106659190612a9c565b60405180910390f35b34801561067a57600080fd5b50610683611557565b6040516106909190612bf8565b60405180910390f35b3480156106a557600080fd5b506106ae61155d565b6040516106bb9190612bf8565b60405180910390f35b3480156106d057600080fd5b506106eb60048036038101906106e69190612f75565b611563565b6040516106f8919061298f565b60405180910390f35b34801561070d57600080fd5b5061072860048036038101906107239190612de4565b6115f7565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107f557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061085d57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061086d575061086c82611701565b5b9050919050565b61087c61176b565b73ffffffffffffffffffffffffffffffffffffffff1661089a61110f565b73ffffffffffffffffffffffffffffffffffffffff16146108f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e790613001565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b60606001805461091c90613050565b80601f016020809104026020016040519081016040528092919081815260200182805461094890613050565b80156109955780601f1061096a57610100808354040283529160200191610995565b820191906000526020600020905b81548152906001019060200180831161097857829003601f168201915b5050505050905090565b60006109aa82611773565b6109e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e0906130f3565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a2f82610ef5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9690613185565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610abe61176b565b73ffffffffffffffffffffffffffffffffffffffff161480610aed5750610aec81610ae761176b565b611563565b5b610b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2390613217565b60405180910390fd5b610b37838383611780565b505050565b60008054905090565b610b50838383611832565b505050565b6000610b6083610f9f565b8210610ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b98906132a9565b60405180910390fd5b6000610bab610b3c565b905060008060005b83811015610d0f576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610ca557806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cfb57868403610cec578195505050505050610d4b565b8380610cf7906132f8565b9450505b508080610d07906132f8565b915050610bb3565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d42906133b2565b60405180910390fd5b92915050565b600a5481565b610d728383836040518060200160405280600081525061134b565b505050565b6000610d81610b3c565b8210610dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db990613444565b60405180910390fd5b819050919050565b610dd261176b565b73ffffffffffffffffffffffffffffffffffffffff16610df061110f565b73ffffffffffffffffffffffffffffffffffffffff1614610e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3d90613001565b60405180910390fd5b80600c9081610e559190613610565b5050565b600e60009054906101000a900460ff1681565b610e7461176b565b73ffffffffffffffffffffffffffffffffffffffff16610e9261110f565b73ffffffffffffffffffffffffffffffffffffffff1614610ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edf90613001565b60405180910390fd5b610ef23382611de9565b50565b6000610f0082611e07565b600001519050919050565b60095481565b600c8054610f1e90613050565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4a90613050565b8015610f975780601f10610f6c57610100808354040283529160200191610f97565b820191906000526020600020905b815481529060010190602001808311610f7a57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361100f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100690613754565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61108f61176b565b73ffffffffffffffffffffffffffffffffffffffff166110ad61110f565b73ffffffffffffffffffffffffffffffffffffffff1614611103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fa90613001565b60405180910390fd5b61110d600061200a565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461114890613050565b80601f016020809104026020016040519081016040528092919081815260200182805461117490613050565b80156111c15780601f10611196576101008083540402835291602001916111c1565b820191906000526020600020905b8154815290600101906020018083116111a457829003601f168201915b5050505050905090565b6111d361176b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611240576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611237906137c0565b60405180910390fd5b806006600061124d61176b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112fa61176b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161133f919061298f565b60405180910390a35050565b611356848484611832565b611362848484846120d0565b6113a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139890613852565b60405180910390fd5b50505050565b600e60009054906101000a900460ff16156113f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ee906138be565b60405180910390fd5b600381111580156114085750600081115b61141157600080fd5b61141b3382611de9565b50565b600d805461142b90613050565b80601f016020809104026020016040519081016040528092919081815260200182805461145790613050565b80156114a45780601f10611479576101008083540402835291602001916114a4565b820191906000526020600020905b81548152906001019060200180831161148757829003601f168201915b505050505081565b60606114b782611773565b6114f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ed9061392a565b60405180910390fd5b6000600c805461150590613050565b9050116115215760405180602001604052806000815250611550565b600c61152c83612257565b600d60405160200161154093929190613a09565b6040516020818303038152906040525b9050919050565b600b5481565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115ff61176b565b73ffffffffffffffffffffffffffffffffffffffff1661161d61110f565b73ffffffffffffffffffffffffffffffffffffffff1614611673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166a90613001565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d990613aac565b60405180910390fd5b6116eb8161200a565b50565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061183d82611e07565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661186461176b565b73ffffffffffffffffffffffffffffffffffffffff1614806118c0575061188961176b565b73ffffffffffffffffffffffffffffffffffffffff166118a88461099f565b73ffffffffffffffffffffffffffffffffffffffff16145b806118dc57506118db82600001516118d661176b565b611563565b5b90508061191e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191590613b3e565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611990576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198790613bd0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036119ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f690613c62565b60405180910390fd5b611a0c85858560016123b7565b611a1c6000848460000151611780565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611a8a9190613c9e565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611b2e9190613cd2565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611c349190613d18565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611d7957611ca981611773565b15611d78576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611de186868660016123bd565b505050505050565b611e038282604051806020016040528060008152506123c3565b5050565b611e0f6128a1565b611e1882611773565b611e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4e90613de0565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000000008310611ebb5760017f000000000000000000000000000000000000000000000000000000000000000084611eae9190613e00565b611eb89190613d18565b90505b60008390505b818110611fc9576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611fb557809350505050612005565b508080611fc190613e34565b915050611ec1565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffc90613ecf565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006120f18473ffffffffffffffffffffffffffffffffffffffff166116ee565b1561224a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261211a61176b565b8786866040518563ffffffff1660e01b815260040161213c9493929190613f44565b6020604051808303816000875af192505050801561217857506040513d601f19601f820116820180604052508101906121759190613fa5565b60015b6121fa573d80600081146121a8576040519150601f19603f3d011682016040523d82523d6000602084013e6121ad565b606091505b5060008151036121f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e990613852565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061224f565b600190505b949350505050565b60606000820361229e576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506123b2565b600082905060005b600082146122d05780806122b9906132f8565b915050600a826122c99190614001565b91506122a6565b60008167ffffffffffffffff8111156122ec576122eb612c70565b5b6040519080825280601f01601f19166020018201604052801561231e5781602001600182028036833780820191505090505b5090505b600085146123ab576001826123379190613e00565b9150600a856123469190614032565b60306123529190613d18565b60f81b81838151811061236857612367614063565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123a49190614001565b9450612322565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242f90614104565b60405180910390fd5b61244181611773565b15612481576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247890614170565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000008311156124e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124db90614202565b60405180910390fd5b6124f160008583866123b7565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516125ee9190613cd2565b6fffffffffffffffffffffffffffffffff1681526020018583602001516126159190613cd2565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561288457818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461282460008884886120d0565b612863576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285a90613852565b60405180910390fd5b818061286e906132f8565b925050808061287c906132f8565b9150506127b3565b508060008190555061289960008785886123bd565b505050505050565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612924816128ef565b811461292f57600080fd5b50565b6000813590506129418161291b565b92915050565b60006020828403121561295d5761295c6128e5565b5b600061296b84828501612932565b91505092915050565b60008115159050919050565b61298981612974565b82525050565b60006020820190506129a46000830184612980565b92915050565b6129b381612974565b81146129be57600080fd5b50565b6000813590506129d0816129aa565b92915050565b6000602082840312156129ec576129eb6128e5565b5b60006129fa848285016129c1565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612a3d578082015181840152602081019050612a22565b83811115612a4c576000848401525b50505050565b6000601f19601f8301169050919050565b6000612a6e82612a03565b612a788185612a0e565b9350612a88818560208601612a1f565b612a9181612a52565b840191505092915050565b60006020820190508181036000830152612ab68184612a63565b905092915050565b6000819050919050565b612ad181612abe565b8114612adc57600080fd5b50565b600081359050612aee81612ac8565b92915050565b600060208284031215612b0a57612b096128e5565b5b6000612b1884828501612adf565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b4c82612b21565b9050919050565b612b5c81612b41565b82525050565b6000602082019050612b776000830184612b53565b92915050565b612b8681612b41565b8114612b9157600080fd5b50565b600081359050612ba381612b7d565b92915050565b60008060408385031215612bc057612bbf6128e5565b5b6000612bce85828601612b94565b9250506020612bdf85828601612adf565b9150509250929050565b612bf281612abe565b82525050565b6000602082019050612c0d6000830184612be9565b92915050565b600080600060608486031215612c2c57612c2b6128e5565b5b6000612c3a86828701612b94565b9350506020612c4b86828701612b94565b9250506040612c5c86828701612adf565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612ca882612a52565b810181811067ffffffffffffffff82111715612cc757612cc6612c70565b5b80604052505050565b6000612cda6128db565b9050612ce68282612c9f565b919050565b600067ffffffffffffffff821115612d0657612d05612c70565b5b612d0f82612a52565b9050602081019050919050565b82818337600083830152505050565b6000612d3e612d3984612ceb565b612cd0565b905082815260208101848484011115612d5a57612d59612c6b565b5b612d65848285612d1c565b509392505050565b600082601f830112612d8257612d81612c66565b5b8135612d92848260208601612d2b565b91505092915050565b600060208284031215612db157612db06128e5565b5b600082013567ffffffffffffffff811115612dcf57612dce6128ea565b5b612ddb84828501612d6d565b91505092915050565b600060208284031215612dfa57612df96128e5565b5b6000612e0884828501612b94565b91505092915050565b60008060408385031215612e2857612e276128e5565b5b6000612e3685828601612b94565b9250506020612e47858286016129c1565b9150509250929050565b600067ffffffffffffffff821115612e6c57612e6b612c70565b5b612e7582612a52565b9050602081019050919050565b6000612e95612e9084612e51565b612cd0565b905082815260208101848484011115612eb157612eb0612c6b565b5b612ebc848285612d1c565b509392505050565b600082601f830112612ed957612ed8612c66565b5b8135612ee9848260208601612e82565b91505092915050565b60008060008060808587031215612f0c57612f0b6128e5565b5b6000612f1a87828801612b94565b9450506020612f2b87828801612b94565b9350506040612f3c87828801612adf565b925050606085013567ffffffffffffffff811115612f5d57612f5c6128ea565b5b612f6987828801612ec4565b91505092959194509250565b60008060408385031215612f8c57612f8b6128e5565b5b6000612f9a85828601612b94565b9250506020612fab85828601612b94565b9150509250929050565b7f596f7520617265206e6f7420746865206f776e65720000000000000000000000600082015250565b6000612feb601583612a0e565b9150612ff682612fb5565b602082019050919050565b6000602082019050818103600083015261301a81612fde565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061306857607f821691505b60208210810361307b5761307a613021565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b60006130dd602d83612a0e565b91506130e882613081565b604082019050919050565b6000602082019050818103600083015261310c816130d0565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b600061316f602283612a0e565b915061317a82613113565b604082019050919050565b6000602082019050818103600083015261319e81613162565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000613201603983612a0e565b915061320c826131a5565b604082019050919050565b60006020820190508181036000830152613230816131f4565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613293602283612a0e565b915061329e82613237565b604082019050919050565b600060208201905081810360008301526132c281613286565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061330382612abe565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613335576133346132c9565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b600061339c602e83612a0e565b91506133a782613340565b604082019050919050565b600060208201905081810360008301526133cb8161338f565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b600061342e602383612a0e565b9150613439826133d2565b604082019050919050565b6000602082019050818103600083015261345d81613421565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026134c67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613489565b6134d08683613489565b95508019841693508086168417925050509392505050565b6000819050919050565b600061350d61350861350384612abe565b6134e8565b612abe565b9050919050565b6000819050919050565b613527836134f2565b61353b61353382613514565b848454613496565b825550505050565b600090565b613550613543565b61355b81848461351e565b505050565b5b8181101561357f57613574600082613548565b600181019050613561565b5050565b601f8211156135c45761359581613464565b61359e84613479565b810160208510156135ad578190505b6135c16135b985613479565b830182613560565b50505b505050565b600082821c905092915050565b60006135e7600019846008026135c9565b1980831691505092915050565b600061360083836135d6565b9150826002028217905092915050565b61361982612a03565b67ffffffffffffffff81111561363257613631612c70565b5b61363c8254613050565b613647828285613583565b600060209050601f83116001811461367a5760008415613668578287015190505b61367285826135f4565b8655506136da565b601f19841661368886613464565b60005b828110156136b05784890151825560018201915060208501945060208101905061368b565b868310156136cd57848901516136c9601f8916826135d6565b8355505b6001600288020188555050505b505050505050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b600061373e602b83612a0e565b9150613749826136e2565b604082019050919050565b6000602082019050818103600083015261376d81613731565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b60006137aa601a83612a0e565b91506137b582613774565b602082019050919050565b600060208201905081810360008301526137d98161379d565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b600061383c603383612a0e565b9150613847826137e0565b604082019050919050565b6000602082019050818103600083015261386b8161382f565b9050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b60006138a8600683612a0e565b91506138b382613872565b602082019050919050565b600060208201905081810360008301526138d78161389b565b9050919050565b7f5468617420746f6b656e20646f65736e27742065786973740000000000000000600082015250565b6000613914601883612a0e565b915061391f826138de565b602082019050919050565b6000602082019050818103600083015261394381613907565b9050919050565b600081905092915050565b6000815461396281613050565b61396c818661394a565b94506001821660008114613987576001811461399c576139cf565b60ff19831686528115158202860193506139cf565b6139a585613464565b60005b838110156139c7578154818901526001820191506020810190506139a8565b838801955050505b50505092915050565b60006139e382612a03565b6139ed818561394a565b93506139fd818560208601612a1f565b80840191505092915050565b6000613a158286613955565b9150613a2182856139d8565b9150613a2d8284613955565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613a96602683612a0e565b9150613aa182613a3a565b604082019050919050565b60006020820190508181036000830152613ac581613a89565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000613b28603283612a0e565b9150613b3382613acc565b604082019050919050565b60006020820190508181036000830152613b5781613b1b565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000613bba602683612a0e565b9150613bc582613b5e565b604082019050919050565b60006020820190508181036000830152613be981613bad565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613c4c602583612a0e565b9150613c5782613bf0565b604082019050919050565b60006020820190508181036000830152613c7b81613c3f565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b6000613ca982613c82565b9150613cb483613c82565b925082821015613cc757613cc66132c9565b5b828203905092915050565b6000613cdd82613c82565b9150613ce883613c82565b9250826fffffffffffffffffffffffffffffffff03821115613d0d57613d0c6132c9565b5b828201905092915050565b6000613d2382612abe565b9150613d2e83612abe565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d6357613d626132c9565b5b828201905092915050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000613dca602a83612a0e565b9150613dd582613d6e565b604082019050919050565b60006020820190508181036000830152613df981613dbd565b9050919050565b6000613e0b82612abe565b9150613e1683612abe565b925082821015613e2957613e286132c9565b5b828203905092915050565b6000613e3f82612abe565b915060008203613e5257613e516132c9565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000613eb9602f83612a0e565b9150613ec482613e5d565b604082019050919050565b60006020820190508181036000830152613ee881613eac565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613f1682613eef565b613f208185613efa565b9350613f30818560208601612a1f565b613f3981612a52565b840191505092915050565b6000608082019050613f596000830187612b53565b613f666020830186612b53565b613f736040830185612be9565b8181036060830152613f858184613f0b565b905095945050505050565b600081519050613f9f8161291b565b92915050565b600060208284031215613fbb57613fba6128e5565b5b6000613fc984828501613f90565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061400c82612abe565b915061401783612abe565b92508261402757614026613fd2565b5b828204905092915050565b600061403d82612abe565b915061404883612abe565b92508261405857614057613fd2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006140ee602183612a0e565b91506140f982614092565b604082019050919050565b6000602082019050818103600083015261411d816140e1565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b600061415a601d83612a0e565b915061416582614124565b602082019050919050565b600060208201905081810360008301526141898161414d565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b60006141ec602283612a0e565b91506141f782614190565b604082019050919050565b6000602082019050818103600083015261421b816141df565b905091905056fea2646970667358221220ae6e7590ee8bd2cda63bdac04322c450d5f06fc4d99af22510b69da927a88ff964736f6c634300080f003368747470733a2f2f7468656b6c756272697365732e6d7970696e6174612e636c6f75642f697066732f516d626b7974783833696d3134344a563767397366537175665a756a754258466f50346b5278366d6b4d345745472f

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c8063676dd563116100f7578063b88d4fde11610095578063cce132d111610064578063cce132d11461066e578063d7224ba014610699578063e985e9c5146106c4578063f2fde38b14610701576101cd565b8063b88d4fde146105c1578063bdfaa084146105ea578063c668286214610606578063c87b56dd14610631576101cd565b8063715018a6116100d1578063715018a61461052b5780638da5cb5b1461054257806395d89b411461056d578063a22cb46514610598576101cd565b8063676dd563146104985780636c0360eb146104c357806370a08231146104ee576101cd565b80632f745c591161016f57806355f804b31161013e57806355f804b3146103eb5780635c975abb1461041457806362569bb21461043f5780636352211e1461045b576101cd565b80632f745c591461031d57806332cb6b0c1461035a57806342842e0e146103855780634f6ccce7146103ae576101cd565b8063081812fc116101ab578063081812fc14610263578063095ea7b3146102a057806318160ddd146102c957806323b872dd146102f4576101cd565b806301ffc9a7146101d257806302329a291461020f57806306fdde0314610238575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612947565b61072a565b604051610206919061298f565b60405180910390f35b34801561021b57600080fd5b50610236600480360381019061023191906129d6565b610874565b005b34801561024457600080fd5b5061024d61090d565b60405161025a9190612a9c565b60405180910390f35b34801561026f57600080fd5b5061028a60048036038101906102859190612af4565b61099f565b6040516102979190612b62565b60405180910390f35b3480156102ac57600080fd5b506102c760048036038101906102c29190612ba9565b610a24565b005b3480156102d557600080fd5b506102de610b3c565b6040516102eb9190612bf8565b60405180910390f35b34801561030057600080fd5b5061031b60048036038101906103169190612c13565b610b45565b005b34801561032957600080fd5b50610344600480360381019061033f9190612ba9565b610b55565b6040516103519190612bf8565b60405180910390f35b34801561036657600080fd5b5061036f610d51565b60405161037c9190612bf8565b60405180910390f35b34801561039157600080fd5b506103ac60048036038101906103a79190612c13565b610d57565b005b3480156103ba57600080fd5b506103d560048036038101906103d09190612af4565b610d77565b6040516103e29190612bf8565b60405180910390f35b3480156103f757600080fd5b50610412600480360381019061040d9190612d9b565b610dca565b005b34801561042057600080fd5b50610429610e59565b604051610436919061298f565b60405180910390f35b61045960048036038101906104549190612af4565b610e6c565b005b34801561046757600080fd5b50610482600480360381019061047d9190612af4565b610ef5565b60405161048f9190612b62565b60405180910390f35b3480156104a457600080fd5b506104ad610f0b565b6040516104ba9190612bf8565b60405180910390f35b3480156104cf57600080fd5b506104d8610f11565b6040516104e59190612a9c565b60405180910390f35b3480156104fa57600080fd5b5061051560048036038101906105109190612de4565b610f9f565b6040516105229190612bf8565b60405180910390f35b34801561053757600080fd5b50610540611087565b005b34801561054e57600080fd5b5061055761110f565b6040516105649190612b62565b60405180910390f35b34801561057957600080fd5b50610582611139565b60405161058f9190612a9c565b60405180910390f35b3480156105a457600080fd5b506105bf60048036038101906105ba9190612e11565b6111cb565b005b3480156105cd57600080fd5b506105e860048036038101906105e39190612ef2565b61134b565b005b61060460048036038101906105ff9190612af4565b6113a7565b005b34801561061257600080fd5b5061061b61141e565b6040516106289190612a9c565b60405180910390f35b34801561063d57600080fd5b5061065860048036038101906106539190612af4565b6114ac565b6040516106659190612a9c565b60405180910390f35b34801561067a57600080fd5b50610683611557565b6040516106909190612bf8565b60405180910390f35b3480156106a557600080fd5b506106ae61155d565b6040516106bb9190612bf8565b60405180910390f35b3480156106d057600080fd5b506106eb60048036038101906106e69190612f75565b611563565b6040516106f8919061298f565b60405180910390f35b34801561070d57600080fd5b5061072860048036038101906107239190612de4565b6115f7565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107f557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061085d57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061086d575061086c82611701565b5b9050919050565b61087c61176b565b73ffffffffffffffffffffffffffffffffffffffff1661089a61110f565b73ffffffffffffffffffffffffffffffffffffffff16146108f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108e790613001565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b60606001805461091c90613050565b80601f016020809104026020016040519081016040528092919081815260200182805461094890613050565b80156109955780601f1061096a57610100808354040283529160200191610995565b820191906000526020600020905b81548152906001019060200180831161097857829003601f168201915b5050505050905090565b60006109aa82611773565b6109e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e0906130f3565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a2f82610ef5565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9690613185565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610abe61176b565b73ffffffffffffffffffffffffffffffffffffffff161480610aed5750610aec81610ae761176b565b611563565b5b610b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2390613217565b60405180910390fd5b610b37838383611780565b505050565b60008054905090565b610b50838383611832565b505050565b6000610b6083610f9f565b8210610ba1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b98906132a9565b60405180910390fd5b6000610bab610b3c565b905060008060005b83811015610d0f576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610ca557806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cfb57868403610cec578195505050505050610d4b565b8380610cf7906132f8565b9450505b508080610d07906132f8565b915050610bb3565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d42906133b2565b60405180910390fd5b92915050565b600a5481565b610d728383836040518060200160405280600081525061134b565b505050565b6000610d81610b3c565b8210610dc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db990613444565b60405180910390fd5b819050919050565b610dd261176b565b73ffffffffffffffffffffffffffffffffffffffff16610df061110f565b73ffffffffffffffffffffffffffffffffffffffff1614610e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3d90613001565b60405180910390fd5b80600c9081610e559190613610565b5050565b600e60009054906101000a900460ff1681565b610e7461176b565b73ffffffffffffffffffffffffffffffffffffffff16610e9261110f565b73ffffffffffffffffffffffffffffffffffffffff1614610ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edf90613001565b60405180910390fd5b610ef23382611de9565b50565b6000610f0082611e07565b600001519050919050565b60095481565b600c8054610f1e90613050565b80601f0160208091040260200160405190810160405280929190818152602001828054610f4a90613050565b8015610f975780601f10610f6c57610100808354040283529160200191610f97565b820191906000526020600020905b815481529060010190602001808311610f7a57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361100f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100690613754565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61108f61176b565b73ffffffffffffffffffffffffffffffffffffffff166110ad61110f565b73ffffffffffffffffffffffffffffffffffffffff1614611103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fa90613001565b60405180910390fd5b61110d600061200a565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461114890613050565b80601f016020809104026020016040519081016040528092919081815260200182805461117490613050565b80156111c15780601f10611196576101008083540402835291602001916111c1565b820191906000526020600020905b8154815290600101906020018083116111a457829003601f168201915b5050505050905090565b6111d361176b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611240576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611237906137c0565b60405180910390fd5b806006600061124d61176b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112fa61176b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161133f919061298f565b60405180910390a35050565b611356848484611832565b611362848484846120d0565b6113a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139890613852565b60405180910390fd5b50505050565b600e60009054906101000a900460ff16156113f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ee906138be565b60405180910390fd5b600381111580156114085750600081115b61141157600080fd5b61141b3382611de9565b50565b600d805461142b90613050565b80601f016020809104026020016040519081016040528092919081815260200182805461145790613050565b80156114a45780601f10611479576101008083540402835291602001916114a4565b820191906000526020600020905b81548152906001019060200180831161148757829003601f168201915b505050505081565b60606114b782611773565b6114f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ed9061392a565b60405180910390fd5b6000600c805461150590613050565b9050116115215760405180602001604052806000815250611550565b600c61152c83612257565b600d60405160200161154093929190613a09565b6040516020818303038152906040525b9050919050565b600b5481565b60075481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115ff61176b565b73ffffffffffffffffffffffffffffffffffffffff1661161d61110f565b73ffffffffffffffffffffffffffffffffffffffff1614611673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166a90613001565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d990613aac565b60405180910390fd5b6116eb8161200a565b50565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061183d82611e07565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff1661186461176b565b73ffffffffffffffffffffffffffffffffffffffff1614806118c0575061188961176b565b73ffffffffffffffffffffffffffffffffffffffff166118a88461099f565b73ffffffffffffffffffffffffffffffffffffffff16145b806118dc57506118db82600001516118d661176b565b611563565b5b90508061191e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191590613b3e565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611990576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198790613bd0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036119ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f690613c62565b60405180910390fd5b611a0c85858560016123b7565b611a1c6000848460000151611780565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611a8a9190613c9e565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16611b2e9190613cd2565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050506000600184611c349190613d18565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611d7957611ca981611773565b15611d78576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611de186868660016123bd565b505050505050565b611e038282604051806020016040528060008152506123c3565b5050565b611e0f6128a1565b611e1882611773565b611e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4e90613de0565b60405180910390fd5b60007f00000000000000000000000000000000000000000000000000000000000001138310611ebb5760017f000000000000000000000000000000000000000000000000000000000000011384611eae9190613e00565b611eb89190613d18565b90505b60008390505b818110611fc9576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611fb557809350505050612005565b508080611fc190613e34565b915050611ec1565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffc90613ecf565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006120f18473ffffffffffffffffffffffffffffffffffffffff166116ee565b1561224a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261211a61176b565b8786866040518563ffffffff1660e01b815260040161213c9493929190613f44565b6020604051808303816000875af192505050801561217857506040513d601f19601f820116820180604052508101906121759190613fa5565b60015b6121fa573d80600081146121a8576040519150601f19603f3d011682016040523d82523d6000602084013e6121ad565b606091505b5060008151036121f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e990613852565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061224f565b600190505b949350505050565b60606000820361229e576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506123b2565b600082905060005b600082146122d05780806122b9906132f8565b915050600a826122c99190614001565b91506122a6565b60008167ffffffffffffffff8111156122ec576122eb612c70565b5b6040519080825280601f01601f19166020018201604052801561231e5781602001600182028036833780820191505090505b5090505b600085146123ab576001826123379190613e00565b9150600a856123469190614032565b60306123529190613d18565b60f81b81838151811061236857612367614063565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856123a49190614001565b9450612322565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612438576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242f90614104565b60405180910390fd5b61244181611773565b15612481576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247890614170565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000001138311156124e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124db90614202565b60405180910390fd5b6124f160008583866123b7565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681525050905060405180604001604052808583600001516125ee9190613cd2565b6fffffffffffffffffffffffffffffffff1681526020018583602001516126159190613cd2565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561288457818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461282460008884886120d0565b612863576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285a90613852565b60405180910390fd5b818061286e906132f8565b925050808061287c906132f8565b9150506127b3565b508060008190555061289960008785886123bd565b505050505050565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612924816128ef565b811461292f57600080fd5b50565b6000813590506129418161291b565b92915050565b60006020828403121561295d5761295c6128e5565b5b600061296b84828501612932565b91505092915050565b60008115159050919050565b61298981612974565b82525050565b60006020820190506129a46000830184612980565b92915050565b6129b381612974565b81146129be57600080fd5b50565b6000813590506129d0816129aa565b92915050565b6000602082840312156129ec576129eb6128e5565b5b60006129fa848285016129c1565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612a3d578082015181840152602081019050612a22565b83811115612a4c576000848401525b50505050565b6000601f19601f8301169050919050565b6000612a6e82612a03565b612a788185612a0e565b9350612a88818560208601612a1f565b612a9181612a52565b840191505092915050565b60006020820190508181036000830152612ab68184612a63565b905092915050565b6000819050919050565b612ad181612abe565b8114612adc57600080fd5b50565b600081359050612aee81612ac8565b92915050565b600060208284031215612b0a57612b096128e5565b5b6000612b1884828501612adf565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612b4c82612b21565b9050919050565b612b5c81612b41565b82525050565b6000602082019050612b776000830184612b53565b92915050565b612b8681612b41565b8114612b9157600080fd5b50565b600081359050612ba381612b7d565b92915050565b60008060408385031215612bc057612bbf6128e5565b5b6000612bce85828601612b94565b9250506020612bdf85828601612adf565b9150509250929050565b612bf281612abe565b82525050565b6000602082019050612c0d6000830184612be9565b92915050565b600080600060608486031215612c2c57612c2b6128e5565b5b6000612c3a86828701612b94565b9350506020612c4b86828701612b94565b9250506040612c5c86828701612adf565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612ca882612a52565b810181811067ffffffffffffffff82111715612cc757612cc6612c70565b5b80604052505050565b6000612cda6128db565b9050612ce68282612c9f565b919050565b600067ffffffffffffffff821115612d0657612d05612c70565b5b612d0f82612a52565b9050602081019050919050565b82818337600083830152505050565b6000612d3e612d3984612ceb565b612cd0565b905082815260208101848484011115612d5a57612d59612c6b565b5b612d65848285612d1c565b509392505050565b600082601f830112612d8257612d81612c66565b5b8135612d92848260208601612d2b565b91505092915050565b600060208284031215612db157612db06128e5565b5b600082013567ffffffffffffffff811115612dcf57612dce6128ea565b5b612ddb84828501612d6d565b91505092915050565b600060208284031215612dfa57612df96128e5565b5b6000612e0884828501612b94565b91505092915050565b60008060408385031215612e2857612e276128e5565b5b6000612e3685828601612b94565b9250506020612e47858286016129c1565b9150509250929050565b600067ffffffffffffffff821115612e6c57612e6b612c70565b5b612e7582612a52565b9050602081019050919050565b6000612e95612e9084612e51565b612cd0565b905082815260208101848484011115612eb157612eb0612c6b565b5b612ebc848285612d1c565b509392505050565b600082601f830112612ed957612ed8612c66565b5b8135612ee9848260208601612e82565b91505092915050565b60008060008060808587031215612f0c57612f0b6128e5565b5b6000612f1a87828801612b94565b9450506020612f2b87828801612b94565b9350506040612f3c87828801612adf565b925050606085013567ffffffffffffffff811115612f5d57612f5c6128ea565b5b612f6987828801612ec4565b91505092959194509250565b60008060408385031215612f8c57612f8b6128e5565b5b6000612f9a85828601612b94565b9250506020612fab85828601612b94565b9150509250929050565b7f596f7520617265206e6f7420746865206f776e65720000000000000000000000600082015250565b6000612feb601583612a0e565b9150612ff682612fb5565b602082019050919050565b6000602082019050818103600083015261301a81612fde565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061306857607f821691505b60208210810361307b5761307a613021565b5b50919050565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b60006130dd602d83612a0e565b91506130e882613081565b604082019050919050565b6000602082019050818103600083015261310c816130d0565b9050919050565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b600061316f602283612a0e565b915061317a82613113565b604082019050919050565b6000602082019050818103600083015261319e81613162565b9050919050565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b6000613201603983612a0e565b915061320c826131a5565b604082019050919050565b60006020820190508181036000830152613230816131f4565b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b6000613293602283612a0e565b915061329e82613237565b604082019050919050565b600060208201905081810360008301526132c281613286565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061330382612abe565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613335576133346132c9565b5b600182019050919050565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b600061339c602e83612a0e565b91506133a782613340565b604082019050919050565b600060208201905081810360008301526133cb8161338f565b9050919050565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b600061342e602383612a0e565b9150613439826133d2565b604082019050919050565b6000602082019050818103600083015261345d81613421565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026134c67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613489565b6134d08683613489565b95508019841693508086168417925050509392505050565b6000819050919050565b600061350d61350861350384612abe565b6134e8565b612abe565b9050919050565b6000819050919050565b613527836134f2565b61353b61353382613514565b848454613496565b825550505050565b600090565b613550613543565b61355b81848461351e565b505050565b5b8181101561357f57613574600082613548565b600181019050613561565b5050565b601f8211156135c45761359581613464565b61359e84613479565b810160208510156135ad578190505b6135c16135b985613479565b830182613560565b50505b505050565b600082821c905092915050565b60006135e7600019846008026135c9565b1980831691505092915050565b600061360083836135d6565b9150826002028217905092915050565b61361982612a03565b67ffffffffffffffff81111561363257613631612c70565b5b61363c8254613050565b613647828285613583565b600060209050601f83116001811461367a5760008415613668578287015190505b61367285826135f4565b8655506136da565b601f19841661368886613464565b60005b828110156136b05784890151825560018201915060208501945060208101905061368b565b868310156136cd57848901516136c9601f8916826135d6565b8355505b6001600288020188555050505b505050505050565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b600061373e602b83612a0e565b9150613749826136e2565b604082019050919050565b6000602082019050818103600083015261376d81613731565b9050919050565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b60006137aa601a83612a0e565b91506137b582613774565b602082019050919050565b600060208201905081810360008301526137d98161379d565b9050919050565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b600061383c603383612a0e565b9150613847826137e0565b604082019050919050565b6000602082019050818103600083015261386b8161382f565b9050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b60006138a8600683612a0e565b91506138b382613872565b602082019050919050565b600060208201905081810360008301526138d78161389b565b9050919050565b7f5468617420746f6b656e20646f65736e27742065786973740000000000000000600082015250565b6000613914601883612a0e565b915061391f826138de565b602082019050919050565b6000602082019050818103600083015261394381613907565b9050919050565b600081905092915050565b6000815461396281613050565b61396c818661394a565b94506001821660008114613987576001811461399c576139cf565b60ff19831686528115158202860193506139cf565b6139a585613464565b60005b838110156139c7578154818901526001820191506020810190506139a8565b838801955050505b50505092915050565b60006139e382612a03565b6139ed818561394a565b93506139fd818560208601612a1f565b80840191505092915050565b6000613a158286613955565b9150613a2182856139d8565b9150613a2d8284613955565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613a96602683612a0e565b9150613aa182613a3a565b604082019050919050565b60006020820190508181036000830152613ac581613a89565b9050919050565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b6000613b28603283612a0e565b9150613b3382613acc565b604082019050919050565b60006020820190508181036000830152613b5781613b1b565b9050919050565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b6000613bba602683612a0e565b9150613bc582613b5e565b604082019050919050565b60006020820190508181036000830152613be981613bad565b9050919050565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613c4c602583612a0e565b9150613c5782613bf0565b604082019050919050565b60006020820190508181036000830152613c7b81613c3f565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b6000613ca982613c82565b9150613cb483613c82565b925082821015613cc757613cc66132c9565b5b828203905092915050565b6000613cdd82613c82565b9150613ce883613c82565b9250826fffffffffffffffffffffffffffffffff03821115613d0d57613d0c6132c9565b5b828201905092915050565b6000613d2382612abe565b9150613d2e83612abe565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d6357613d626132c9565b5b828201905092915050565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b6000613dca602a83612a0e565b9150613dd582613d6e565b604082019050919050565b60006020820190508181036000830152613df981613dbd565b9050919050565b6000613e0b82612abe565b9150613e1683612abe565b925082821015613e2957613e286132c9565b5b828203905092915050565b6000613e3f82612abe565b915060008203613e5257613e516132c9565b5b600182039050919050565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b6000613eb9602f83612a0e565b9150613ec482613e5d565b604082019050919050565b60006020820190508181036000830152613ee881613eac565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613f1682613eef565b613f208185613efa565b9350613f30818560208601612a1f565b613f3981612a52565b840191505092915050565b6000608082019050613f596000830187612b53565b613f666020830186612b53565b613f736040830185612be9565b8181036060830152613f858184613f0b565b905095945050505050565b600081519050613f9f8161291b565b92915050565b600060208284031215613fbb57613fba6128e5565b5b6000613fc984828501613f90565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061400c82612abe565b915061401783612abe565b92508261402757614026613fd2565b5b828204905092915050565b600061403d82612abe565b915061404883612abe565b92508261405857614057613fd2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006140ee602183612a0e565b91506140f982614092565b604082019050919050565b6000602082019050818103600083015261411d816140e1565b9050919050565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b600061415a601d83612a0e565b915061416582614124565b602082019050919050565b600060208201905081810360008301526141898161414d565b9050919050565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b60006141ec602283612a0e565b91506141f782614190565b604082019050919050565b6000602082019050818103600083015261421b816141df565b905091905056fea2646970667358221220ae6e7590ee8bd2cda63bdac04322c450d5f06fc4d99af22510b69da927a88ff964736f6c634300080f0033

Deployed Bytecode Sourcemap

39821:1639:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24957:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40639:79;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26683:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28217:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27780:379;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23518:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29067:142;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24149:744;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39910:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29272:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23681:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40726:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40147:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40513:116;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26506:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39869:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39986:114;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25383:211;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38938:103;;;;;;;;;;;;;:::i;:::-;;38298:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26838:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28485:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29492:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40315:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40107:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40834:507;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39949:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33907:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28822:186;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39196:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24957:370;25084:4;25129:25;25114:40;;;:11;:40;;;;:99;;;;25180:33;25165:48;;;:11;:48;;;;25114:99;:160;;;;25239:35;25224:50;;;:11;:50;;;;25114:160;:207;;;;25285:36;25309:11;25285:23;:36::i;:::-;25114:207;25100:221;;24957:370;;;:::o;40639:79::-;38529:12;:10;:12::i;:::-;38518:23;;:7;:5;:7::i;:::-;:23;;;38510:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;40704:6:::1;40695;;:15;;;;;;;;;;;;;;;;;;40639:79:::0;:::o;26683:94::-;26737:13;26766:5;26759:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26683:94;:::o;28217:204::-;28285:7;28309:16;28317:7;28309;:16::i;:::-;28301:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;28391:15;:24;28407:7;28391:24;;;;;;;;;;;;;;;;;;;;;28384:31;;28217:204;;;:::o;27780:379::-;27849:13;27865:24;27881:7;27865:15;:24::i;:::-;27849:40;;27910:5;27904:11;;:2;:11;;;27896:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;27995:5;27979:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;28004:37;28021:5;28028:12;:10;:12::i;:::-;28004:16;:37::i;:::-;27979:62;27963:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;28125:28;28134:2;28138:7;28147:5;28125:8;:28::i;:::-;27842:317;27780:379;;:::o;23518:94::-;23571:7;23594:12;;23587:19;;23518:94;:::o;29067:142::-;29175:28;29185:4;29191:2;29195:7;29175:9;:28::i;:::-;29067:142;;;:::o;24149:744::-;24258:7;24293:16;24303:5;24293:9;:16::i;:::-;24285:5;:24;24277:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;24355:22;24380:13;:11;:13::i;:::-;24355:38;;24400:19;24430:25;24480:9;24475:350;24499:14;24495:1;:18;24475:350;;;24529:31;24563:11;:14;24575:1;24563:14;;;;;;;;;;;24529:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24616:1;24590:28;;:9;:14;;;:28;;;24586:89;;24651:9;:14;;;24631:34;;24586:89;24708:5;24687:26;;:17;:26;;;24683:135;;24745:5;24730:11;:20;24726:59;;24772:1;24765:8;;;;;;;;;24726:59;24795:13;;;;;:::i;:::-;;;;24683:135;24520:305;24515:3;;;;;:::i;:::-;;;;24475:350;;;;24831:56;;;;;;;;;;:::i;:::-;;;;;;;;24149:744;;;;;:::o;39910:32::-;;;;:::o;29272:157::-;29384:39;29401:4;29407:2;29411:7;29384:39;;;;;;;;;;;;:16;:39::i;:::-;29272:157;;;:::o;23681:177::-;23748:7;23780:13;:11;:13::i;:::-;23772:5;:21;23764:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;23847:5;23840:12;;23681:177;;;:::o;40726:102::-;38529:12;:10;:12::i;:::-;38518:23;;:7;:5;:7::i;:::-;:23;;;38510:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;40810:10:::1;40800:7;:20;;;;;;:::i;:::-;;40726:102:::0;:::o;40147:25::-;;;;;;;;;;;;;:::o;40513:116::-;38529:12;:10;:12::i;:::-;38518:23;;:7;:5;:7::i;:::-;:23;;;38510:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;40589:32:::1;40599:10;40611:9;40589;:32::i;:::-;40513:116:::0;:::o;26506:118::-;26570:7;26593:20;26605:7;26593:11;:20::i;:::-;:25;;;26586:32;;26506:118;;;:::o;39869:34::-;;;;:::o;39986:114::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25383:211::-;25447:7;25488:1;25471:19;;:5;:19;;;25463:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;25560:12;:19;25573:5;25560:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;25552:36;;25545:43;;25383:211;;;:::o;38938:103::-;38529:12;:10;:12::i;:::-;38518:23;;:7;:5;:7::i;:::-;:23;;;38510:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;39003:30:::1;39030:1;39003:18;:30::i;:::-;38938:103::o:0;38298:87::-;38344:7;38371:6;;;;;;;;;;;38364:13;;38298:87;:::o;26838:98::-;26894:13;26923:7;26916:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26838:98;:::o;28485:274::-;28588:12;:10;:12::i;:::-;28576:24;;:8;:24;;;28568:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;28685:8;28640:18;:32;28659:12;:10;:12::i;:::-;28640:32;;;;;;;;;;;;;;;:42;28673:8;28640:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;28734:8;28705:48;;28720:12;:10;:12::i;:::-;28705:48;;;28744:8;28705:48;;;;;;:::i;:::-;;;;;;;;28485:274;;:::o;29492:311::-;29629:28;29639:4;29645:2;29649:7;29629:9;:28::i;:::-;29680:48;29703:4;29709:2;29713:7;29722:5;29680:22;:48::i;:::-;29664:133;;;;;;;;;;;;:::i;:::-;;;;;;;;;29492:311;;;;:::o;40315:190::-;40387:6;;;;;;;;;;;40386:7;40378:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;40436:1;40423:9;:14;;:30;;;;;40452:1;40441:9;:12;40423:30;40415:39;;;;;;40465:32;40475:10;40487:9;40465;:32::i;:::-;40315:190;:::o;40107:32::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;40834:507::-;40936:13;40975:17;40983:8;40975:7;:17::i;:::-;40967:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;41076:1;41058:7;41052:21;;;;;:::i;:::-;;;:25;:281;;;;;;;;;;;;;;;;;41169:7;41203:26;41220:8;41203:16;:26::i;:::-;41256:13;41126:166;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;41052:281;41032:301;;40834:507;;;:::o;39949:30::-;;;;:::o;33907:43::-;;;;:::o;28822:186::-;28944:4;28967:18;:25;28986:5;28967:25;;;;;;;;;;;;;;;:35;28993:8;28967:35;;;;;;;;;;;;;;;;;;;;;;;;;28960:42;;28822:186;;;;:::o;39196:238::-;38529:12;:10;:12::i;:::-;38518:23;;:7;:5;:7::i;:::-;:23;;;38510:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;39319:1:::1;39299:22;;:8;:22;;::::0;39277:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;39398:28;39417:8;39398:18;:28::i;:::-;39196:238:::0;:::o;9507:387::-;9567:4;9775:12;9842:7;9830:20;9822:28;;9885:1;9878:4;:8;9871:15;;;9507:387;;;:::o;8529:207::-;8659:4;8703:25;8688:40;;;:11;:40;;;;8681:47;;8529:207;;;:::o;17928:98::-;17981:7;18008:10;18001:17;;17928:98;:::o;30042:105::-;30099:4;30129:12;;30119:7;:22;30112:29;;30042:105;;;:::o;33729:172::-;33853:2;33826:15;:24;33842:7;33826:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;33887:7;33883:2;33867:28;;33876:5;33867:28;;;;;;;;;;;;33729:172;;;:::o;32094:1529::-;32191:35;32229:20;32241:7;32229:11;:20::i;:::-;32191:58;;32258:22;32300:13;:18;;;32284:34;;:12;:10;:12::i;:::-;:34;;;:81;;;;32353:12;:10;:12::i;:::-;32329:36;;:20;32341:7;32329:11;:20::i;:::-;:36;;;32284:81;:142;;;;32376:50;32393:13;:18;;;32413:12;:10;:12::i;:::-;32376:16;:50::i;:::-;32284:142;32258:169;;32452:17;32436:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;32584:4;32562:26;;:13;:18;;;:26;;;32546:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;32673:1;32659:16;;:2;:16;;;32651:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;32726:43;32748:4;32754:2;32758:7;32767:1;32726:21;:43::i;:::-;32826:49;32843:1;32847:7;32856:13;:18;;;32826:8;:49::i;:::-;32914:1;32884:12;:18;32897:4;32884:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32950:1;32922:12;:16;32935:2;32922:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;32981:43;;;;;;;;32996:2;32981:43;;;;;;33007:15;32981:43;;;;;32958:11;:20;32970:7;32958:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33252:19;33284:1;33274:7;:11;;;;:::i;:::-;33252:33;;33337:1;33296:43;;:11;:24;33308:11;33296:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;33292:236;;33354:20;33362:11;33354:7;:20::i;:::-;33350:171;;;33414:97;;;;;;;;33441:13;:18;;;33414:97;;;;;;33472:13;:28;;;33414:97;;;;;33387:11;:24;33399:11;33387:24;;;;;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33350:171;33292:236;33560:7;33556:2;33541:27;;33550:4;33541:27;;;;;;;;;;;;33575:42;33596:4;33602:2;33606:7;33615:1;33575:20;:42::i;:::-;32184:1439;;;32094:1529;;;:::o;30153:98::-;30218:27;30228:2;30232:8;30218:27;;;;;;;;;;;;:9;:27::i;:::-;30153:98;;:::o;25846:606::-;25922:21;;:::i;:::-;25963:16;25971:7;25963;:16::i;:::-;25955:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;26035:26;26083:12;26072:7;:23;26068:93;;26152:1;26137:12;26127:7;:22;;;;:::i;:::-;:26;;;;:::i;:::-;26106:47;;26068:93;26174:12;26189:7;26174:22;;26169:212;26206:18;26198:4;:26;26169:212;;26243:31;26277:11;:17;26289:4;26277:17;;;;;;;;;;;26243:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26333:1;26307:28;;:9;:14;;;:28;;;26303:71;;26355:9;26348:16;;;;;;;26303:71;26234:147;26226:6;;;;;:::i;:::-;;;;26169:212;;;;26389:57;;;;;;;;;;:::i;:::-;;;;;;;;25846:606;;;;:::o;39594:191::-;39668:16;39687:6;;;;;;;;;;;39668:25;;39713:8;39704:6;;:17;;;;;;;;;;;;;;;;;;39768:8;39737:40;;39758:8;39737:40;;;;;;;;;;;;39657:128;39594:191;:::o;35444:690::-;35581:4;35598:15;:2;:13;;;:15::i;:::-;35594:535;;;35653:2;35637:36;;;35674:12;:10;:12::i;:::-;35688:4;35694:7;35703:5;35637:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35624:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35885:1;35868:6;:13;:18;35864:215;;35901:61;;;;;;;;;;:::i;:::-;;;;;;;;35864:215;36047:6;36041:13;36032:6;36028:2;36024:15;36017:38;35624:464;35769:45;;;35759:55;;;:6;:55;;;;35752:62;;;;;35594:535;36117:4;36110:11;;35444:690;;;;;;;:::o;18451:723::-;18507:13;18737:1;18728:5;:10;18724:53;;18755:10;;;;;;;;;;;;;;;;;;;;;18724:53;18787:12;18802:5;18787:20;;18818:14;18843:78;18858:1;18850:4;:9;18843:78;;18876:8;;;;;:::i;:::-;;;;18907:2;18899:10;;;;;:::i;:::-;;;18843:78;;;18931:19;18963:6;18953:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18931:39;;18981:154;18997:1;18988:5;:10;18981:154;;19025:1;19015:11;;;;;:::i;:::-;;;19092:2;19084:5;:10;;;;:::i;:::-;19071:2;:24;;;;:::i;:::-;19058:39;;19041:6;19048;19041:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;19121:2;19112:11;;;;;:::i;:::-;;;18981:154;;;19159:6;19145:21;;;;;18451:723;;;;:::o;36596:141::-;;;;;:::o;37123:140::-;;;;;:::o;30590:1272::-;30695:20;30718:12;;30695:35;;30759:1;30745:16;;:2;:16;;;30737:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;30936:21;30944:12;30936:7;:21::i;:::-;30935:22;30927:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;31018:12;31006:8;:24;;30998:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;31078:61;31108:1;31112:2;31116:12;31130:8;31078:21;:61::i;:::-;31148:30;31181:12;:16;31194:2;31181:16;;;;;;;;;;;;;;;31148:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31223:119;;;;;;;;31273:8;31243:11;:19;;;:39;;;;:::i;:::-;31223:119;;;;;;31326:8;31291:11;:24;;;:44;;;;:::i;:::-;31223:119;;;;;31204:12;:16;31217:2;31204:16;;;;;;;;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31377:43;;;;;;;;31392:2;31377:43;;;;;;31403:15;31377:43;;;;;31349:11;:25;31361:12;31349:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31429:20;31452:12;31429:35;;31478:9;31473:281;31497:8;31493:1;:12;31473:281;;;31551:12;31547:2;31526:38;;31543:1;31526:38;;;;;;;;;;;;31591:59;31622:1;31626:2;31630:12;31644:5;31591:22;:59::i;:::-;31573:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;31732:14;;;;;:::i;:::-;;;;31507:3;;;;;:::i;:::-;;;;31473:281;;;;31777:12;31762;:27;;;;31796:60;31825:1;31829:2;31833:12;31847:8;31796:20;:60::i;:::-;30688:1174;;;30590:1272;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:116::-;1588:21;1603:5;1588:21;:::i;:::-;1581:5;1578:32;1568:60;;1624:1;1621;1614:12;1568:60;1518:116;:::o;1640:133::-;1683:5;1721:6;1708:20;1699:29;;1737:30;1761:5;1737:30;:::i;:::-;1640:133;;;;:::o;1779:323::-;1835:6;1884:2;1872:9;1863:7;1859:23;1855:32;1852:119;;;1890:79;;:::i;:::-;1852:119;2010:1;2035:50;2077:7;2068:6;2057:9;2053:22;2035:50;:::i;:::-;2025:60;;1981:114;1779:323;;;;:::o;2108:99::-;2160:6;2194:5;2188:12;2178:22;;2108:99;;;:::o;2213:169::-;2297:11;2331:6;2326:3;2319:19;2371:4;2366:3;2362:14;2347:29;;2213:169;;;;:::o;2388:307::-;2456:1;2466:113;2480:6;2477:1;2474:13;2466:113;;;2565:1;2560:3;2556:11;2550:18;2546:1;2541:3;2537:11;2530:39;2502:2;2499:1;2495:10;2490:15;;2466:113;;;2597:6;2594:1;2591:13;2588:101;;;2677:1;2668:6;2663:3;2659:16;2652:27;2588:101;2437:258;2388:307;;;:::o;2701:102::-;2742:6;2793:2;2789:7;2784:2;2777:5;2773:14;2769:28;2759:38;;2701:102;;;:::o;2809:364::-;2897:3;2925:39;2958:5;2925:39;:::i;:::-;2980:71;3044:6;3039:3;2980:71;:::i;:::-;2973:78;;3060:52;3105:6;3100:3;3093:4;3086:5;3082:16;3060:52;:::i;:::-;3137:29;3159:6;3137:29;:::i;:::-;3132:3;3128:39;3121:46;;2901:272;2809:364;;;;:::o;3179:313::-;3292:4;3330:2;3319:9;3315:18;3307:26;;3379:9;3373:4;3369:20;3365:1;3354:9;3350:17;3343:47;3407:78;3480:4;3471:6;3407:78;:::i;:::-;3399:86;;3179:313;;;;:::o;3498:77::-;3535:7;3564:5;3553:16;;3498:77;;;:::o;3581:122::-;3654:24;3672:5;3654:24;:::i;:::-;3647:5;3644:35;3634:63;;3693:1;3690;3683:12;3634:63;3581:122;:::o;3709:139::-;3755:5;3793:6;3780:20;3771:29;;3809:33;3836:5;3809:33;:::i;:::-;3709:139;;;;:::o;3854:329::-;3913:6;3962:2;3950:9;3941:7;3937:23;3933:32;3930:119;;;3968:79;;:::i;:::-;3930:119;4088:1;4113:53;4158:7;4149:6;4138:9;4134:22;4113:53;:::i;:::-;4103:63;;4059:117;3854:329;;;;:::o;4189:126::-;4226:7;4266:42;4259:5;4255:54;4244:65;;4189:126;;;:::o;4321:96::-;4358:7;4387:24;4405:5;4387:24;:::i;:::-;4376:35;;4321:96;;;:::o;4423:118::-;4510:24;4528:5;4510:24;:::i;:::-;4505:3;4498:37;4423:118;;:::o;4547:222::-;4640:4;4678:2;4667:9;4663:18;4655:26;;4691:71;4759:1;4748:9;4744:17;4735:6;4691:71;:::i;:::-;4547:222;;;;:::o;4775:122::-;4848:24;4866:5;4848:24;:::i;:::-;4841:5;4838:35;4828:63;;4887:1;4884;4877:12;4828:63;4775:122;:::o;4903:139::-;4949:5;4987:6;4974:20;4965:29;;5003:33;5030:5;5003:33;:::i;:::-;4903:139;;;;:::o;5048:474::-;5116:6;5124;5173:2;5161:9;5152:7;5148:23;5144:32;5141:119;;;5179:79;;:::i;:::-;5141:119;5299:1;5324:53;5369:7;5360:6;5349:9;5345:22;5324:53;:::i;:::-;5314:63;;5270:117;5426:2;5452:53;5497:7;5488:6;5477:9;5473:22;5452:53;:::i;:::-;5442:63;;5397:118;5048:474;;;;;:::o;5528:118::-;5615:24;5633:5;5615:24;:::i;:::-;5610:3;5603:37;5528:118;;:::o;5652:222::-;5745:4;5783:2;5772:9;5768:18;5760:26;;5796:71;5864:1;5853:9;5849:17;5840:6;5796:71;:::i;:::-;5652:222;;;;:::o;5880:619::-;5957:6;5965;5973;6022:2;6010:9;6001:7;5997:23;5993:32;5990:119;;;6028:79;;:::i;:::-;5990:119;6148:1;6173:53;6218:7;6209:6;6198:9;6194:22;6173:53;:::i;:::-;6163:63;;6119:117;6275:2;6301:53;6346:7;6337:6;6326:9;6322:22;6301:53;:::i;:::-;6291:63;;6246:118;6403:2;6429:53;6474:7;6465:6;6454:9;6450:22;6429:53;:::i;:::-;6419:63;;6374:118;5880:619;;;;;:::o;6505:117::-;6614:1;6611;6604:12;6628:117;6737:1;6734;6727:12;6751:180;6799:77;6796:1;6789:88;6896:4;6893:1;6886:15;6920:4;6917:1;6910:15;6937:281;7020:27;7042:4;7020:27;:::i;:::-;7012:6;7008:40;7150:6;7138:10;7135:22;7114:18;7102:10;7099:34;7096:62;7093:88;;;7161:18;;:::i;:::-;7093:88;7201:10;7197:2;7190:22;6980:238;6937:281;;:::o;7224:129::-;7258:6;7285:20;;:::i;:::-;7275:30;;7314:33;7342:4;7334:6;7314:33;:::i;:::-;7224:129;;;:::o;7359:308::-;7421:4;7511:18;7503:6;7500:30;7497:56;;;7533:18;;:::i;:::-;7497:56;7571:29;7593:6;7571:29;:::i;:::-;7563:37;;7655:4;7649;7645:15;7637:23;;7359:308;;;:::o;7673:154::-;7757:6;7752:3;7747;7734:30;7819:1;7810:6;7805:3;7801:16;7794:27;7673:154;;;:::o;7833:412::-;7911:5;7936:66;7952:49;7994:6;7952:49;:::i;:::-;7936:66;:::i;:::-;7927:75;;8025:6;8018:5;8011:21;8063:4;8056:5;8052:16;8101:3;8092:6;8087:3;8083:16;8080:25;8077:112;;;8108:79;;:::i;:::-;8077:112;8198:41;8232:6;8227:3;8222;8198:41;:::i;:::-;7917:328;7833:412;;;;;:::o;8265:340::-;8321:5;8370:3;8363:4;8355:6;8351:17;8347:27;8337:122;;8378:79;;:::i;:::-;8337:122;8495:6;8482:20;8520:79;8595:3;8587:6;8580:4;8572:6;8568:17;8520:79;:::i;:::-;8511:88;;8327:278;8265:340;;;;:::o;8611:509::-;8680:6;8729:2;8717:9;8708:7;8704:23;8700:32;8697:119;;;8735:79;;:::i;:::-;8697:119;8883:1;8872:9;8868:17;8855:31;8913:18;8905:6;8902:30;8899:117;;;8935:79;;:::i;:::-;8899:117;9040:63;9095:7;9086:6;9075:9;9071:22;9040:63;:::i;:::-;9030:73;;8826:287;8611:509;;;;:::o;9126:329::-;9185:6;9234:2;9222:9;9213:7;9209:23;9205:32;9202:119;;;9240:79;;:::i;:::-;9202:119;9360:1;9385:53;9430:7;9421:6;9410:9;9406:22;9385:53;:::i;:::-;9375:63;;9331:117;9126:329;;;;:::o;9461:468::-;9526:6;9534;9583:2;9571:9;9562:7;9558:23;9554:32;9551:119;;;9589:79;;:::i;:::-;9551:119;9709:1;9734:53;9779:7;9770:6;9759:9;9755:22;9734:53;:::i;:::-;9724:63;;9680:117;9836:2;9862:50;9904:7;9895:6;9884:9;9880:22;9862:50;:::i;:::-;9852:60;;9807:115;9461:468;;;;;:::o;9935:307::-;9996:4;10086:18;10078:6;10075:30;10072:56;;;10108:18;;:::i;:::-;10072:56;10146:29;10168:6;10146:29;:::i;:::-;10138:37;;10230:4;10224;10220:15;10212:23;;9935:307;;;:::o;10248:410::-;10325:5;10350:65;10366:48;10407:6;10366:48;:::i;:::-;10350:65;:::i;:::-;10341:74;;10438:6;10431:5;10424:21;10476:4;10469:5;10465:16;10514:3;10505:6;10500:3;10496:16;10493:25;10490:112;;;10521:79;;:::i;:::-;10490:112;10611:41;10645:6;10640:3;10635;10611:41;:::i;:::-;10331:327;10248:410;;;;;:::o;10677:338::-;10732:5;10781:3;10774:4;10766:6;10762:17;10758:27;10748:122;;10789:79;;:::i;:::-;10748:122;10906:6;10893:20;10931:78;11005:3;10997:6;10990:4;10982:6;10978:17;10931:78;:::i;:::-;10922:87;;10738:277;10677:338;;;;:::o;11021:943::-;11116:6;11124;11132;11140;11189:3;11177:9;11168:7;11164:23;11160:33;11157:120;;;11196:79;;:::i;:::-;11157:120;11316:1;11341:53;11386:7;11377:6;11366:9;11362:22;11341:53;:::i;:::-;11331:63;;11287:117;11443:2;11469:53;11514:7;11505:6;11494:9;11490:22;11469:53;:::i;:::-;11459:63;;11414:118;11571:2;11597:53;11642:7;11633:6;11622:9;11618:22;11597:53;:::i;:::-;11587:63;;11542:118;11727:2;11716:9;11712:18;11699:32;11758:18;11750:6;11747:30;11744:117;;;11780:79;;:::i;:::-;11744:117;11885:62;11939:7;11930:6;11919:9;11915:22;11885:62;:::i;:::-;11875:72;;11670:287;11021:943;;;;;;;:::o;11970:474::-;12038:6;12046;12095:2;12083:9;12074:7;12070:23;12066:32;12063:119;;;12101:79;;:::i;:::-;12063:119;12221:1;12246:53;12291:7;12282:6;12271:9;12267:22;12246:53;:::i;:::-;12236:63;;12192:117;12348:2;12374:53;12419:7;12410:6;12399:9;12395:22;12374:53;:::i;:::-;12364:63;;12319:118;11970:474;;;;;:::o;12450:171::-;12590:23;12586:1;12578:6;12574:14;12567:47;12450:171;:::o;12627:366::-;12769:3;12790:67;12854:2;12849:3;12790:67;:::i;:::-;12783:74;;12866:93;12955:3;12866:93;:::i;:::-;12984:2;12979:3;12975:12;12968:19;;12627:366;;;:::o;12999:419::-;13165:4;13203:2;13192:9;13188:18;13180:26;;13252:9;13246:4;13242:20;13238:1;13227:9;13223:17;13216:47;13280:131;13406:4;13280:131;:::i;:::-;13272:139;;12999:419;;;:::o;13424:180::-;13472:77;13469:1;13462:88;13569:4;13566:1;13559:15;13593:4;13590:1;13583:15;13610:320;13654:6;13691:1;13685:4;13681:12;13671:22;;13738:1;13732:4;13728:12;13759:18;13749:81;;13815:4;13807:6;13803:17;13793:27;;13749:81;13877:2;13869:6;13866:14;13846:18;13843:38;13840:84;;13896:18;;:::i;:::-;13840:84;13661:269;13610:320;;;:::o;13936:232::-;14076:34;14072:1;14064:6;14060:14;14053:58;14145:15;14140:2;14132:6;14128:15;14121:40;13936:232;:::o;14174:366::-;14316:3;14337:67;14401:2;14396:3;14337:67;:::i;:::-;14330:74;;14413:93;14502:3;14413:93;:::i;:::-;14531:2;14526:3;14522:12;14515:19;;14174:366;;;:::o;14546:419::-;14712:4;14750:2;14739:9;14735:18;14727:26;;14799:9;14793:4;14789:20;14785:1;14774:9;14770:17;14763:47;14827:131;14953:4;14827:131;:::i;:::-;14819:139;;14546:419;;;:::o;14971:221::-;15111:34;15107:1;15099:6;15095:14;15088:58;15180:4;15175:2;15167:6;15163:15;15156:29;14971:221;:::o;15198:366::-;15340:3;15361:67;15425:2;15420:3;15361:67;:::i;:::-;15354:74;;15437:93;15526:3;15437:93;:::i;:::-;15555:2;15550:3;15546:12;15539:19;;15198:366;;;:::o;15570:419::-;15736:4;15774:2;15763:9;15759:18;15751:26;;15823:9;15817:4;15813:20;15809:1;15798:9;15794:17;15787:47;15851:131;15977:4;15851:131;:::i;:::-;15843:139;;15570:419;;;:::o;15995:244::-;16135:34;16131:1;16123:6;16119:14;16112:58;16204:27;16199:2;16191:6;16187:15;16180:52;15995:244;:::o;16245:366::-;16387:3;16408:67;16472:2;16467:3;16408:67;:::i;:::-;16401:74;;16484:93;16573:3;16484:93;:::i;:::-;16602:2;16597:3;16593:12;16586:19;;16245:366;;;:::o;16617:419::-;16783:4;16821:2;16810:9;16806:18;16798:26;;16870:9;16864:4;16860:20;16856:1;16845:9;16841:17;16834:47;16898:131;17024:4;16898:131;:::i;:::-;16890:139;;16617:419;;;:::o;17042:221::-;17182:34;17178:1;17170:6;17166:14;17159:58;17251:4;17246:2;17238:6;17234:15;17227:29;17042:221;:::o;17269:366::-;17411:3;17432:67;17496:2;17491:3;17432:67;:::i;:::-;17425:74;;17508:93;17597:3;17508:93;:::i;:::-;17626:2;17621:3;17617:12;17610:19;;17269:366;;;:::o;17641:419::-;17807:4;17845:2;17834:9;17830:18;17822:26;;17894:9;17888:4;17884:20;17880:1;17869:9;17865:17;17858:47;17922:131;18048:4;17922:131;:::i;:::-;17914:139;;17641:419;;;:::o;18066:180::-;18114:77;18111:1;18104:88;18211:4;18208:1;18201:15;18235:4;18232:1;18225:15;18252:233;18291:3;18314:24;18332:5;18314:24;:::i;:::-;18305:33;;18360:66;18353:5;18350:77;18347:103;;18430:18;;:::i;:::-;18347:103;18477:1;18470:5;18466:13;18459:20;;18252:233;;;:::o;18491:::-;18631:34;18627:1;18619:6;18615:14;18608:58;18700:16;18695:2;18687:6;18683:15;18676:41;18491:233;:::o;18730:366::-;18872:3;18893:67;18957:2;18952:3;18893:67;:::i;:::-;18886:74;;18969:93;19058:3;18969:93;:::i;:::-;19087:2;19082:3;19078:12;19071:19;;18730:366;;;:::o;19102:419::-;19268:4;19306:2;19295:9;19291:18;19283:26;;19355:9;19349:4;19345:20;19341:1;19330:9;19326:17;19319:47;19383:131;19509:4;19383:131;:::i;:::-;19375:139;;19102:419;;;:::o;19527:222::-;19667:34;19663:1;19655:6;19651:14;19644:58;19736:5;19731:2;19723:6;19719:15;19712:30;19527:222;:::o;19755:366::-;19897:3;19918:67;19982:2;19977:3;19918:67;:::i;:::-;19911:74;;19994:93;20083:3;19994:93;:::i;:::-;20112:2;20107:3;20103:12;20096:19;;19755:366;;;:::o;20127:419::-;20293:4;20331:2;20320:9;20316:18;20308:26;;20380:9;20374:4;20370:20;20366:1;20355:9;20351:17;20344:47;20408:131;20534:4;20408:131;:::i;:::-;20400:139;;20127:419;;;:::o;20552:141::-;20601:4;20624:3;20616:11;;20647:3;20644:1;20637:14;20681:4;20678:1;20668:18;20660:26;;20552:141;;;:::o;20699:93::-;20736:6;20783:2;20778;20771:5;20767:14;20763:23;20753:33;;20699:93;;;:::o;20798:107::-;20842:8;20892:5;20886:4;20882:16;20861:37;;20798:107;;;;:::o;20911:393::-;20980:6;21030:1;21018:10;21014:18;21053:97;21083:66;21072:9;21053:97;:::i;:::-;21171:39;21201:8;21190:9;21171:39;:::i;:::-;21159:51;;21243:4;21239:9;21232:5;21228:21;21219:30;;21292:4;21282:8;21278:19;21271:5;21268:30;21258:40;;20987:317;;20911:393;;;;;:::o;21310:60::-;21338:3;21359:5;21352:12;;21310:60;;;:::o;21376:142::-;21426:9;21459:53;21477:34;21486:24;21504:5;21486:24;:::i;:::-;21477:34;:::i;:::-;21459:53;:::i;:::-;21446:66;;21376:142;;;:::o;21524:75::-;21567:3;21588:5;21581:12;;21524:75;;;:::o;21605:269::-;21715:39;21746:7;21715:39;:::i;:::-;21776:91;21825:41;21849:16;21825:41;:::i;:::-;21817:6;21810:4;21804:11;21776:91;:::i;:::-;21770:4;21763:105;21681:193;21605:269;;;:::o;21880:73::-;21925:3;21880:73;:::o;21959:189::-;22036:32;;:::i;:::-;22077:65;22135:6;22127;22121:4;22077:65;:::i;:::-;22012:136;21959:189;;:::o;22154:186::-;22214:120;22231:3;22224:5;22221:14;22214:120;;;22285:39;22322:1;22315:5;22285:39;:::i;:::-;22258:1;22251:5;22247:13;22238:22;;22214:120;;;22154:186;;:::o;22346:543::-;22447:2;22442:3;22439:11;22436:446;;;22481:38;22513:5;22481:38;:::i;:::-;22565:29;22583:10;22565:29;:::i;:::-;22555:8;22551:44;22748:2;22736:10;22733:18;22730:49;;;22769:8;22754:23;;22730:49;22792:80;22848:22;22866:3;22848:22;:::i;:::-;22838:8;22834:37;22821:11;22792:80;:::i;:::-;22451:431;;22436:446;22346:543;;;:::o;22895:117::-;22949:8;22999:5;22993:4;22989:16;22968:37;;22895:117;;;;:::o;23018:169::-;23062:6;23095:51;23143:1;23139:6;23131:5;23128:1;23124:13;23095:51;:::i;:::-;23091:56;23176:4;23170;23166:15;23156:25;;23069:118;23018:169;;;;:::o;23192:295::-;23268:4;23414:29;23439:3;23433:4;23414:29;:::i;:::-;23406:37;;23476:3;23473:1;23469:11;23463:4;23460:21;23452:29;;23192:295;;;;:::o;23492:1395::-;23609:37;23642:3;23609:37;:::i;:::-;23711:18;23703:6;23700:30;23697:56;;;23733:18;;:::i;:::-;23697:56;23777:38;23809:4;23803:11;23777:38;:::i;:::-;23862:67;23922:6;23914;23908:4;23862:67;:::i;:::-;23956:1;23980:4;23967:17;;24012:2;24004:6;24001:14;24029:1;24024:618;;;;24686:1;24703:6;24700:77;;;24752:9;24747:3;24743:19;24737:26;24728:35;;24700:77;24803:67;24863:6;24856:5;24803:67;:::i;:::-;24797:4;24790:81;24659:222;23994:887;;24024:618;24076:4;24072:9;24064:6;24060:22;24110:37;24142:4;24110:37;:::i;:::-;24169:1;24183:208;24197:7;24194:1;24191:14;24183:208;;;24276:9;24271:3;24267:19;24261:26;24253:6;24246:42;24327:1;24319:6;24315:14;24305:24;;24374:2;24363:9;24359:18;24346:31;;24220:4;24217:1;24213:12;24208:17;;24183:208;;;24419:6;24410:7;24407:19;24404:179;;;24477:9;24472:3;24468:19;24462:26;24520:48;24562:4;24554:6;24550:17;24539:9;24520:48;:::i;:::-;24512:6;24505:64;24427:156;24404:179;24629:1;24625;24617:6;24613:14;24609:22;24603:4;24596:36;24031:611;;;23994:887;;23584:1303;;;23492:1395;;:::o;24893:230::-;25033:34;25029:1;25021:6;25017:14;25010:58;25102:13;25097:2;25089:6;25085:15;25078:38;24893:230;:::o;25129:366::-;25271:3;25292:67;25356:2;25351:3;25292:67;:::i;:::-;25285:74;;25368:93;25457:3;25368:93;:::i;:::-;25486:2;25481:3;25477:12;25470:19;;25129:366;;;:::o;25501:419::-;25667:4;25705:2;25694:9;25690:18;25682:26;;25754:9;25748:4;25744:20;25740:1;25729:9;25725:17;25718:47;25782:131;25908:4;25782:131;:::i;:::-;25774:139;;25501:419;;;:::o;25926:176::-;26066:28;26062:1;26054:6;26050:14;26043:52;25926:176;:::o;26108:366::-;26250:3;26271:67;26335:2;26330:3;26271:67;:::i;:::-;26264:74;;26347:93;26436:3;26347:93;:::i;:::-;26465:2;26460:3;26456:12;26449:19;;26108:366;;;:::o;26480:419::-;26646:4;26684:2;26673:9;26669:18;26661:26;;26733:9;26727:4;26723:20;26719:1;26708:9;26704:17;26697:47;26761:131;26887:4;26761:131;:::i;:::-;26753:139;;26480:419;;;:::o;26905:238::-;27045:34;27041:1;27033:6;27029:14;27022:58;27114:21;27109:2;27101:6;27097:15;27090:46;26905:238;:::o;27149:366::-;27291:3;27312:67;27376:2;27371:3;27312:67;:::i;:::-;27305:74;;27388:93;27477:3;27388:93;:::i;:::-;27506:2;27501:3;27497:12;27490:19;;27149:366;;;:::o;27521:419::-;27687:4;27725:2;27714:9;27710:18;27702:26;;27774:9;27768:4;27764:20;27760:1;27749:9;27745:17;27738:47;27802:131;27928:4;27802:131;:::i;:::-;27794:139;;27521:419;;;:::o;27946:156::-;28086:8;28082:1;28074:6;28070:14;28063:32;27946:156;:::o;28108:365::-;28250:3;28271:66;28335:1;28330:3;28271:66;:::i;:::-;28264:73;;28346:93;28435:3;28346:93;:::i;:::-;28464:2;28459:3;28455:12;28448:19;;28108:365;;;:::o;28479:419::-;28645:4;28683:2;28672:9;28668:18;28660:26;;28732:9;28726:4;28722:20;28718:1;28707:9;28703:17;28696:47;28760:131;28886:4;28760:131;:::i;:::-;28752:139;;28479:419;;;:::o;28904:174::-;29044:26;29040:1;29032:6;29028:14;29021:50;28904:174;:::o;29084:366::-;29226:3;29247:67;29311:2;29306:3;29247:67;:::i;:::-;29240:74;;29323:93;29412:3;29323:93;:::i;:::-;29441:2;29436:3;29432:12;29425:19;;29084:366;;;:::o;29456:419::-;29622:4;29660:2;29649:9;29645:18;29637:26;;29709:9;29703:4;29699:20;29695:1;29684:9;29680:17;29673:47;29737:131;29863:4;29737:131;:::i;:::-;29729:139;;29456:419;;;:::o;29881:148::-;29983:11;30020:3;30005:18;;29881:148;;;;:::o;30059:874::-;30162:3;30199:5;30193:12;30228:36;30254:9;30228:36;:::i;:::-;30280:89;30362:6;30357:3;30280:89;:::i;:::-;30273:96;;30400:1;30389:9;30385:17;30416:1;30411:166;;;;30591:1;30586:341;;;;30378:549;;30411:166;30495:4;30491:9;30480;30476:25;30471:3;30464:38;30557:6;30550:14;30543:22;30535:6;30531:35;30526:3;30522:45;30515:52;;30411:166;;30586:341;30653:38;30685:5;30653:38;:::i;:::-;30713:1;30727:154;30741:6;30738:1;30735:13;30727:154;;;30815:7;30809:14;30805:1;30800:3;30796:11;30789:35;30865:1;30856:7;30852:15;30841:26;;30763:4;30760:1;30756:12;30751:17;;30727:154;;;30910:6;30905:3;30901:16;30894:23;;30593:334;;30378:549;;30166:767;;30059:874;;;;:::o;30939:377::-;31045:3;31073:39;31106:5;31073:39;:::i;:::-;31128:89;31210:6;31205:3;31128:89;:::i;:::-;31121:96;;31226:52;31271:6;31266:3;31259:4;31252:5;31248:16;31226:52;:::i;:::-;31303:6;31298:3;31294:16;31287:23;;31049:267;30939:377;;;;:::o;31322:583::-;31544:3;31566:92;31654:3;31645:6;31566:92;:::i;:::-;31559:99;;31675:95;31766:3;31757:6;31675:95;:::i;:::-;31668:102;;31787:92;31875:3;31866:6;31787:92;:::i;:::-;31780:99;;31896:3;31889:10;;31322:583;;;;;;:::o;31911:225::-;32051:34;32047:1;32039:6;32035:14;32028:58;32120:8;32115:2;32107:6;32103:15;32096:33;31911:225;:::o;32142:366::-;32284:3;32305:67;32369:2;32364:3;32305:67;:::i;:::-;32298:74;;32381:93;32470:3;32381:93;:::i;:::-;32499:2;32494:3;32490:12;32483:19;;32142:366;;;:::o;32514:419::-;32680:4;32718:2;32707:9;32703:18;32695:26;;32767:9;32761:4;32757:20;32753:1;32742:9;32738:17;32731:47;32795:131;32921:4;32795:131;:::i;:::-;32787:139;;32514:419;;;:::o;32939:237::-;33079:34;33075:1;33067:6;33063:14;33056:58;33148:20;33143:2;33135:6;33131:15;33124:45;32939:237;:::o;33182:366::-;33324:3;33345:67;33409:2;33404:3;33345:67;:::i;:::-;33338:74;;33421:93;33510:3;33421:93;:::i;:::-;33539:2;33534:3;33530:12;33523:19;;33182:366;;;:::o;33554:419::-;33720:4;33758:2;33747:9;33743:18;33735:26;;33807:9;33801:4;33797:20;33793:1;33782:9;33778:17;33771:47;33835:131;33961:4;33835:131;:::i;:::-;33827:139;;33554:419;;;:::o;33979:225::-;34119:34;34115:1;34107:6;34103:14;34096:58;34188:8;34183:2;34175:6;34171:15;34164:33;33979:225;:::o;34210:366::-;34352:3;34373:67;34437:2;34432:3;34373:67;:::i;:::-;34366:74;;34449:93;34538:3;34449:93;:::i;:::-;34567:2;34562:3;34558:12;34551:19;;34210:366;;;:::o;34582:419::-;34748:4;34786:2;34775:9;34771:18;34763:26;;34835:9;34829:4;34825:20;34821:1;34810:9;34806:17;34799:47;34863:131;34989:4;34863:131;:::i;:::-;34855:139;;34582:419;;;:::o;35007:224::-;35147:34;35143:1;35135:6;35131:14;35124:58;35216:7;35211:2;35203:6;35199:15;35192:32;35007:224;:::o;35237:366::-;35379:3;35400:67;35464:2;35459:3;35400:67;:::i;:::-;35393:74;;35476:93;35565:3;35476:93;:::i;:::-;35594:2;35589:3;35585:12;35578:19;;35237:366;;;:::o;35609:419::-;35775:4;35813:2;35802:9;35798:18;35790:26;;35862:9;35856:4;35852:20;35848:1;35837:9;35833:17;35826:47;35890:131;36016:4;35890:131;:::i;:::-;35882:139;;35609:419;;;:::o;36034:118::-;36071:7;36111:34;36104:5;36100:46;36089:57;;36034:118;;;:::o;36158:191::-;36198:4;36218:20;36236:1;36218:20;:::i;:::-;36213:25;;36252:20;36270:1;36252:20;:::i;:::-;36247:25;;36291:1;36288;36285:8;36282:34;;;36296:18;;:::i;:::-;36282:34;36341:1;36338;36334:9;36326:17;;36158:191;;;;:::o;36355:273::-;36395:3;36414:20;36432:1;36414:20;:::i;:::-;36409:25;;36448:20;36466:1;36448:20;:::i;:::-;36443:25;;36570:1;36534:34;36530:42;36527:1;36524:49;36521:75;;;36576:18;;:::i;:::-;36521:75;36620:1;36617;36613:9;36606:16;;36355:273;;;;:::o;36634:305::-;36674:3;36693:20;36711:1;36693:20;:::i;:::-;36688:25;;36727:20;36745:1;36727:20;:::i;:::-;36722:25;;36881:1;36813:66;36809:74;36806:1;36803:81;36800:107;;;36887:18;;:::i;:::-;36800:107;36931:1;36928;36924:9;36917:16;;36634:305;;;;:::o;36945:229::-;37085:34;37081:1;37073:6;37069:14;37062:58;37154:12;37149:2;37141:6;37137:15;37130:37;36945:229;:::o;37180:366::-;37322:3;37343:67;37407:2;37402:3;37343:67;:::i;:::-;37336:74;;37419:93;37508:3;37419:93;:::i;:::-;37537:2;37532:3;37528:12;37521:19;;37180:366;;;:::o;37552:419::-;37718:4;37756:2;37745:9;37741:18;37733:26;;37805:9;37799:4;37795:20;37791:1;37780:9;37776:17;37769:47;37833:131;37959:4;37833:131;:::i;:::-;37825:139;;37552:419;;;:::o;37977:191::-;38017:4;38037:20;38055:1;38037:20;:::i;:::-;38032:25;;38071:20;38089:1;38071:20;:::i;:::-;38066:25;;38110:1;38107;38104:8;38101:34;;;38115:18;;:::i;:::-;38101:34;38160:1;38157;38153:9;38145:17;;37977:191;;;;:::o;38174:171::-;38213:3;38236:24;38254:5;38236:24;:::i;:::-;38227:33;;38282:4;38275:5;38272:15;38269:41;;38290:18;;:::i;:::-;38269:41;38337:1;38330:5;38326:13;38319:20;;38174:171;;;:::o;38351:234::-;38491:34;38487:1;38479:6;38475:14;38468:58;38560:17;38555:2;38547:6;38543:15;38536:42;38351:234;:::o;38591:366::-;38733:3;38754:67;38818:2;38813:3;38754:67;:::i;:::-;38747:74;;38830:93;38919:3;38830:93;:::i;:::-;38948:2;38943:3;38939:12;38932:19;;38591:366;;;:::o;38963:419::-;39129:4;39167:2;39156:9;39152:18;39144:26;;39216:9;39210:4;39206:20;39202:1;39191:9;39187:17;39180:47;39244:131;39370:4;39244:131;:::i;:::-;39236:139;;38963:419;;;:::o;39388:98::-;39439:6;39473:5;39467:12;39457:22;;39388:98;;;:::o;39492:168::-;39575:11;39609:6;39604:3;39597:19;39649:4;39644:3;39640:14;39625:29;;39492:168;;;;:::o;39666:360::-;39752:3;39780:38;39812:5;39780:38;:::i;:::-;39834:70;39897:6;39892:3;39834:70;:::i;:::-;39827:77;;39913:52;39958:6;39953:3;39946:4;39939:5;39935:16;39913:52;:::i;:::-;39990:29;40012:6;39990:29;:::i;:::-;39985:3;39981:39;39974:46;;39756:270;39666:360;;;;:::o;40032:640::-;40227:4;40265:3;40254:9;40250:19;40242:27;;40279:71;40347:1;40336:9;40332:17;40323:6;40279:71;:::i;:::-;40360:72;40428:2;40417:9;40413:18;40404:6;40360:72;:::i;:::-;40442;40510:2;40499:9;40495:18;40486:6;40442:72;:::i;:::-;40561:9;40555:4;40551:20;40546:2;40535:9;40531:18;40524:48;40589:76;40660:4;40651:6;40589:76;:::i;:::-;40581:84;;40032:640;;;;;;;:::o;40678:141::-;40734:5;40765:6;40759:13;40750:22;;40781:32;40807:5;40781:32;:::i;:::-;40678:141;;;;:::o;40825:349::-;40894:6;40943:2;40931:9;40922:7;40918:23;40914:32;40911:119;;;40949:79;;:::i;:::-;40911:119;41069:1;41094:63;41149:7;41140:6;41129:9;41125:22;41094:63;:::i;:::-;41084:73;;41040:127;40825:349;;;;:::o;41180:180::-;41228:77;41225:1;41218:88;41325:4;41322:1;41315:15;41349:4;41346:1;41339:15;41366:185;41406:1;41423:20;41441:1;41423:20;:::i;:::-;41418:25;;41457:20;41475:1;41457:20;:::i;:::-;41452:25;;41496:1;41486:35;;41501:18;;:::i;:::-;41486:35;41543:1;41540;41536:9;41531:14;;41366:185;;;;:::o;41557:176::-;41589:1;41606:20;41624:1;41606:20;:::i;:::-;41601:25;;41640:20;41658:1;41640:20;:::i;:::-;41635:25;;41679:1;41669:35;;41684:18;;:::i;:::-;41669:35;41725:1;41722;41718:9;41713:14;;41557:176;;;;:::o;41739:180::-;41787:77;41784:1;41777:88;41884:4;41881:1;41874:15;41908:4;41905:1;41898:15;41925:220;42065:34;42061:1;42053:6;42049:14;42042:58;42134:3;42129:2;42121:6;42117:15;42110:28;41925:220;:::o;42151:366::-;42293:3;42314:67;42378:2;42373:3;42314:67;:::i;:::-;42307:74;;42390:93;42479:3;42390:93;:::i;:::-;42508:2;42503:3;42499:12;42492:19;;42151:366;;;:::o;42523:419::-;42689:4;42727:2;42716:9;42712:18;42704:26;;42776:9;42770:4;42766:20;42762:1;42751:9;42747:17;42740:47;42804:131;42930:4;42804:131;:::i;:::-;42796:139;;42523:419;;;:::o;42948:179::-;43088:31;43084:1;43076:6;43072:14;43065:55;42948:179;:::o;43133:366::-;43275:3;43296:67;43360:2;43355:3;43296:67;:::i;:::-;43289:74;;43372:93;43461:3;43372:93;:::i;:::-;43490:2;43485:3;43481:12;43474:19;;43133:366;;;:::o;43505:419::-;43671:4;43709:2;43698:9;43694:18;43686:26;;43758:9;43752:4;43748:20;43744:1;43733:9;43729:17;43722:47;43786:131;43912:4;43786:131;:::i;:::-;43778:139;;43505:419;;;:::o;43930:221::-;44070:34;44066:1;44058:6;44054:14;44047:58;44139:4;44134:2;44126:6;44122:15;44115:29;43930:221;:::o;44157:366::-;44299:3;44320:67;44384:2;44379:3;44320:67;:::i;:::-;44313:74;;44396:93;44485:3;44396:93;:::i;:::-;44514:2;44509:3;44505:12;44498:19;;44157:366;;;:::o;44529:419::-;44695:4;44733:2;44722:9;44718:18;44710:26;;44782:9;44776:4;44772:20;44768:1;44757:9;44753:17;44746:47;44810:131;44936:4;44810:131;:::i;:::-;44802:139;;44529:419;;;:::o

Swarm Source

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