ETH Price: $3,468.21 (+2.18%)
Gas: 12 Gwei

Token

KimDAO (KIMDAO)
 

Overview

Max Total Supply

369 KIMDAO

Holders

43

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
z00t.eth
Balance
5 KIMDAO
0x634ffd24513c0def2127e2d086a81968f948c7d7
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
KimDAO

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: Address.sol



pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    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);
            }
        }
    }
}

// File: IERC721Receiver.sol



pragma solidity ^0.8.1;

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

// File: ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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



pragma solidity ^0.8.1;

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

// File: ERC165.sol



pragma solidity ^0.8.1;


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

// File: IERC721.sol



pragma solidity ^0.8.1;


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

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

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

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

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

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

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

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

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

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

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

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

// File: IERC721Enumerable.sol



pragma solidity ^0.8.1;


/**
 * @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);
}

// File: IERC721Metadata.sol



pragma solidity ^0.8.1;


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

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

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

// File: IERC2981.sol


// OpenZeppelin Contracts v4.4.1 (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be payed in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}
// File: Strings.sol



pragma solidity ^0.8.1;

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

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

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

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

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

// File: Context.sol



pragma solidity ^0.8.1;

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

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

// File: ERC721A.sol


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

pragma solidity ^0.8.0;









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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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

// File: Ownable.sol



pragma solidity ^0.8.1;


/**
 * @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() {
        _setOwner(_msgSender());
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(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"
        );
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: KimDAO.sol


pragma solidity ^0.8.7;






contract KimDAO is ERC721A, IERC2981, Ownable, ReentrancyGuard {
    using Strings for uint256;

    string public constant baseURI = "ipfs://QmdS1LWJGvH3wBLvGwfUHjbhtWqzLjSQRdGpmGRJwWn1s5/";
    string public constant contractURI = "";
    string public constant baseExtension = ".json";
    address private openSeaProxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1;
    // Mainnet - 0xa5409ec958C83C3f309868babACA7c86DCB077c1
    // Rinkeby - 0xF57B2c51dED3A29e6891aba85459d600256Cf317

    uint256 public constant MAX_FREE_MINTS_PER_TX = 5;
    uint256 public constant MAX_PUBLIC_MINTS_PER_TX = 10;
    uint256 public maxSupply = 777;

    uint256 public constant PUBLIC_SALE_PRICE = 0.01 ether;
    uint256 public NUM_FREE_MINTS = 333;
    bool public isPublicSaleActive = true;

    // ============ ACCESS CONTROL/SANITY MODIFIERS ============

    modifier publicSaleActive() {
        require(isPublicSaleActive, "Public sale is not open");
        _;
    }

    modifier maxMintsPerTX(uint256 numberOfTokens, uint256 MAX_MINTS_PER_TX) {
        require(
            numberOfTokens <= MAX_MINTS_PER_TX,
            "Max mints per txn exceeded"
        );
        _;
    }

    modifier canMintNFTs(uint256 numberOfTokens) {
        require(
            totalSupply() + numberOfTokens <= maxSupply,
            "Not enough mints remain"
        );
        _;
    }

    modifier freeMintsAvailable() {
        require(
            totalSupply() <= NUM_FREE_MINTS,
            "Not enough free mints remain"
        );
        _;
    }

    modifier isCorrectPayment(uint256 price, uint256 numberOfTokens) {
        if(totalSupply() > NUM_FREE_MINTS){
            require(
                (price * numberOfTokens) <= msg.value,
                "Insufficient eth value"
            );
        }
        _;
    }

    constructor() ERC721A("KimDAO", "KIMDAO", 111) {
        _safeMint(msg.sender, 1);
    }

    // ============ PUBLIC FUNCTIONS FOR MINTING ============
    /**
     * @dev 3 Mints, Price 0.01 eth
     */
    function mint(uint256 numberOfTokens)
        external
        payable
        nonReentrant
        isCorrectPayment(PUBLIC_SALE_PRICE, numberOfTokens)
        publicSaleActive
        canMintNFTs(numberOfTokens)
        maxMintsPerTX(numberOfTokens, MAX_PUBLIC_MINTS_PER_TX)
    {
        _safeMint(msg.sender, numberOfTokens);
    }

    //A simple free mint function to avoid confusion
    //The normal mint function with a cost of 0 would work too
    /**
     * @dev Free Max 5 mints until 333
     */
    function freeMint(uint256 numberOfTokens)
        external
        nonReentrant
        publicSaleActive
        canMintNFTs(numberOfTokens)
        maxMintsPerTX(numberOfTokens, MAX_FREE_MINTS_PER_TX)
        freeMintsAvailable()
    {
        _safeMint(msg.sender, numberOfTokens);
    }

    function withdraw(address _to) public onlyOwner {
        uint256 balance = address(this).balance;
        (bool success, ) = _to.call{value: balance}("");
        require(success, "Failed to send");
    }

    // ============ FUNCTION OVERRIDES ============

    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC721A, IERC165)
        returns (bool)
    {
        return
            interfaceId == type(IERC2981).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev Override isApprovedForAll to allowlist user's OpenSea proxy accounts to enable gas-less listings.
     */
    function isApprovedForAll(address owner, address operator)
        public
        view
        override
        returns (bool)
    {
        // Get a reference to OpenSea's proxy registry contract by instantiating
        // the contract using the already existing address.
        ProxyRegistry proxyRegistry = ProxyRegistry(openSeaProxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
     function tokenURI(uint256 _tokenId)
        public
        view
        override
        returns (string memory)
     {
         require(_exists(_tokenId), "Token does not exist.");
         return bytes(baseURI).length > 0 ? string(
             abi.encodePacked(
               baseURI,
               Strings.toString(_tokenId),
               baseExtension
             )
         ) : "";
     }

    /**
     * @dev See {IERC165-royaltyInfo}.
     */
     function royaltyInfo(uint256 tokenId, uint256 salePrice)
         external
         view
         override
         returns (address receiver, uint256 royaltyAmount)
     {
         require(_exists(tokenId), "Nonexistent token");
         return (address(this), (salePrice * 1000) / 10000);
     }
}

// These contract definitions are used to create a reference to the OpenSea
// ProxyRegistry contract by using the registry's address (see isApprovedForAll).
contract OwnableDelegateProxy {}
contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_FREE_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUM_FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_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":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040526000808055600755600a80546001600160a01b03191673a5409ec958c83c3f309868babaca7c86dcb077c1179055610309600b5561014d600c55600d805460ff191660011790553480156200005857600080fd5b50604051806040016040528060068152602001654b696d44414f60d01b815250604051806040016040528060068152602001654b494d44414f60d01b815250606f60008111620000ff5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b60648201526084015b60405180910390fd5b8251620001149060019060208601906200063a565b5081516200012a9060029060208501906200063a565b50608052506200013c90503362000156565b6001600981905562000150903390620001a8565b6200082d565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620001ca828260405180602001604052806000815250620001ce60201b60201c565b5050565b6000546001600160a01b038416620002335760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401620000f6565b6200023f816000541190565b156200028e5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401620000f6565b608051831115620002ed5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401620000f6565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906200034b908790620006f6565b6001600160801b031681526020018583602001516200036b9190620006f6565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015620004cf5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4620004516000888488620004da565b620004aa5760405162461bcd60e51b8152602060048201526033602482015260008051602062002d1e83398151915260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b6064820152608401620000f6565b81620004b68162000724565b9250508080620004c69062000724565b91505062000401565b506000555050505050565b6000620004fb846001600160a01b03166200063460201b6200137a1760201c565b156200062857604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906200053590339089908890889060040162000742565b6020604051808303816000875af192505050801562000573575060408051601f3d908101601f191682019092526200057091810190620007bd565b60015b6200060d573d808015620005a4576040519150601f19603f3d011682016040523d82523d6000602084013e620005a9565b606091505b508051620006055760405162461bcd60e51b8152602060048201526033602482015260008051602062002d1e83398151915260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b6064820152608401620000f6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506200062c565b5060015b949350505050565b3b151590565b8280546200064890620007f0565b90600052602060002090601f0160209004810192826200066c5760008555620006b7565b82601f106200068757805160ff1916838001178555620006b7565b82800160010185558215620006b7579182015b82811115620006b75782518255916020019190600101906200069a565b50620006c5929150620006c9565b5090565b5b80821115620006c55760008155600101620006ca565b634e487b7160e01b600052601160045260246000fd5b60006001600160801b038281168482168083038211156200071b576200071b620006e0565b01949350505050565b60006000198214156200073b576200073b620006e0565b5060010190565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b82811015620007915785810182015185820160a00152810162000773565b82811115620007a457600060a084870101525b5050601f01601f19169190910160a00195945050505050565b600060208284031215620007d057600080fd5b81516001600160e01b031981168114620007e957600080fd5b9392505050565b600181811c908216806200080557607f821691505b602082108114156200082757634e487b7160e01b600052602260045260246000fd5b50919050565b6080516124c762000857600039600081816118510152818161187b0152611ca201526124c76000f3fe6080604052600436106101ee5760003560e01c80636c0360eb1161010d578063a22cb465116100a0578063d5abeb011161006f578063d5abeb011461057c578063d7224ba014610592578063e8a3d485146105a8578063e985e9c5146105cb578063f2fde38b146105eb57600080fd5b8063a22cb465146104eb578063b88d4fde1461050b578063c66828621461052b578063c87b56dd1461055c57600080fd5b80638da5cb5b116100dc5780638da5cb5b1461048f57806395d89b41146104ad578063982d669e146104c2578063a0712d68146104d857600080fd5b80636c0360eb1461042557806370a082311461043a578063715018a61461045a5780637c928fe91461046f57600080fd5b80632a55205a1161018557806342842e0e1161015457806342842e0e146103a55780634f6ccce7146103c557806351cff8d9146103e55780636352211e1461040557600080fd5b80632a55205a1461031c5780632de54df81461035b5780632f745c5914610370578063305af4ff1461039057600080fd5b8063095ea7b3116101c1578063095ea7b3146102ab57806318160ddd146102cd5780631e84c413146102e257806323b872dd146102fc57600080fd5b806301ffc9a7146101f357806306fdde031461022857806307e89ec01461024a578063081812fc14610273575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611ed6565b61060b565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d610636565b60405161021f9190611f52565b34801561025657600080fd5b50610265662386f26fc1000081565b60405190815260200161021f565b34801561027f57600080fd5b5061029361028e366004611f65565b6106c8565b6040516001600160a01b03909116815260200161021f565b3480156102b757600080fd5b506102cb6102c6366004611f93565b610758565b005b3480156102d957600080fd5b50600054610265565b3480156102ee57600080fd5b50600d546102139060ff1681565b34801561030857600080fd5b506102cb610317366004611fbf565b610870565b34801561032857600080fd5b5061033c610337366004612000565b61087b565b604080516001600160a01b03909316835260208301919091520161021f565b34801561036757600080fd5b50610265600a81565b34801561037c57600080fd5b5061026561038b366004611f93565b6108ee565b34801561039c57600080fd5b50610265600581565b3480156103b157600080fd5b506102cb6103c0366004611fbf565b610a5c565b3480156103d157600080fd5b506102656103e0366004611f65565b610a77565b3480156103f157600080fd5b506102cb610400366004612022565b610ad9565b34801561041157600080fd5b50610293610420366004611f65565b610b97565b34801561043157600080fd5b5061023d610ba9565b34801561044657600080fd5b50610265610455366004612022565b610bc5565b34801561046657600080fd5b506102cb610c56565b34801561047b57600080fd5b506102cb61048a366004611f65565b610c8c565b34801561049b57600080fd5b506008546001600160a01b0316610293565b3480156104b957600080fd5b5061023d610e4c565b3480156104ce57600080fd5b50610265600c5481565b6102cb6104e6366004611f65565b610e5b565b3480156104f757600080fd5b506102cb61050636600461203f565b611032565b34801561051757600080fd5b506102cb610526366004612093565b6110f7565b34801561053757600080fd5b5061023d60405180604001604052806005815260200164173539b7b760d91b81525081565b34801561056857600080fd5b5061023d610577366004611f65565b611130565b34801561058857600080fd5b50610265600b5481565b34801561059e57600080fd5b5061026560075481565b3480156105b457600080fd5b5061023d6040518060200160405280600081525081565b3480156105d757600080fd5b506102136105e6366004612173565b61121e565b3480156105f757600080fd5b506102cb610606366004612022565b6112df565b60006001600160e01b0319821663152a902d60e11b1480610630575061063082611380565b92915050565b606060018054610645906121a1565b80601f0160208091040260200160405190810160405280929190818152602001828054610671906121a1565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b5050505050905090565b60006106d5826000541190565b61073c5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061076382610b97565b9050806001600160a01b0316836001600160a01b031614156107d25760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610733565b336001600160a01b03821614806107ee57506107ee813361121e565b6108605760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610733565b61086b8383836113eb565b505050565b61086b838383611447565b600080610889846000541190565b6108c95760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b6044820152606401610733565b306127106108d9856103e86121f2565b6108e39190612227565b915091509250929050565b60006108f983610bc5565b82106109525760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610733565b600080549080805b838110156109fc576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156109ad57805192505b876001600160a01b0316836001600160a01b031614156109e957868414156109db5750935061063092505050565b836109e58161223b565b9450505b50806109f48161223b565b91505061095a565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610733565b61086b838383604051806020016040528060008152506110f7565b600080548210610ad55760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610733565b5090565b6008546001600160a01b03163314610b035760405162461bcd60e51b815260040161073390612256565b60405147906000906001600160a01b0384169083908381818185875af1925050503d8060008114610b50576040519150601f19603f3d011682016040523d82523d6000602084013e610b55565b606091505b505090508061086b5760405162461bcd60e51b815260206004820152600e60248201526d11985a5b1959081d1bc81cd95b9960921b6044820152606401610733565b6000610ba2826117cf565b5192915050565b60405180606001604052806036815260200161245c6036913981565b60006001600160a01b038216610c315760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610733565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b03163314610c805760405162461bcd60e51b815260040161073390612256565b610c8a6000611979565b565b60026009541415610cdf5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610733565b6002600955600d5460ff16610d305760405162461bcd60e51b8152602060048201526017602482015276283ab13634b19039b0b6329034b9903737ba1037b832b760491b6044820152606401610733565b80600b5481610d3e60005490565b610d48919061228b565b1115610d905760405162461bcd60e51b81526020600482015260176024820152762737ba1032b737bab3b41036b4b73a39903932b6b0b4b760491b6044820152606401610733565b81600580821115610de35760405162461bcd60e51b815260206004820152601a60248201527f4d6178206d696e7473207065722074786e2065786365656465640000000000006044820152606401610733565b600c546000541115610e375760405162461bcd60e51b815260206004820152601c60248201527f4e6f7420656e6f7567682066726565206d696e74732072656d61696e000000006044820152606401610733565b610e4133856119cb565b505060016009555050565b606060028054610645906121a1565b60026009541415610eae5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610733565b6002600955600c54600054662386f26fc100009183911115610f1c5734610ed582846121f2565b1115610f1c5760405162461bcd60e51b8152602060048201526016602482015275496e73756666696369656e74206574682076616c756560501b6044820152606401610733565b600d5460ff16610f685760405162461bcd60e51b8152602060048201526017602482015276283ab13634b19039b0b6329034b9903737ba1037b832b760491b6044820152606401610733565b82600b5481610f7660005490565b610f80919061228b565b1115610fc85760405162461bcd60e51b81526020600482015260176024820152762737ba1032b737bab3b41036b4b73a39903932b6b0b4b760491b6044820152606401610733565b83600a8082111561101b5760405162461bcd60e51b815260206004820152601a60248201527f4d6178206d696e7473207065722074786e2065786365656465640000000000006044820152606401610733565b61102533876119cb565b5050600160095550505050565b6001600160a01b03821633141561108b5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610733565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611102848484611447565b61110e848484846119e9565b61112a5760405162461bcd60e51b8152600401610733906122a3565b50505050565b606061113d826000541190565b6111815760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b6044820152606401610733565b600060405180606001604052806036815260200161245c6036913951116111b75760405180602001604052806000815250610630565b60405180606001604052806036815260200161245c603691396111d983611ae7565b60405180604001604052806005815260200164173539b7b760d91b815250604051602001611209939291906122f6565b60405160208183030381529060405292915050565b600a5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c455279190602401602060405180830381865afa158015611270573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112949190612339565b6001600160a01b031614156112ad576001915050610630565b6001600160a01b0380851660009081526006602090815260408083209387168352929052205460ff165b949350505050565b6008546001600160a01b031633146113095760405162461bcd60e51b815260040161073390612256565b6001600160a01b03811661136e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610733565b61137781611979565b50565b3b151590565b60006001600160e01b031982166380ac58cd60e01b14806113b157506001600160e01b03198216635b5e139f60e01b145b806113cc57506001600160e01b0319821663780e9d6360e01b145b8061063057506301ffc9a760e01b6001600160e01b0319831614610630565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611452826117cf565b80519091506000906001600160a01b0316336001600160a01b0316148061148957503361147e846106c8565b6001600160a01b0316145b8061149b5750815161149b903361121e565b9050806115055760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610733565b846001600160a01b031682600001516001600160a01b0316146115795760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610733565b6001600160a01b0384166115dd5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610733565b6115ed60008484600001516113eb565b6001600160a01b038516600090815260046020526040812080546001929061161f9084906001600160801b0316612356565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600460205260408120805460019450909261166b9185911661237e565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556116f384600161228b565b6000818152600360205260409020549091506001600160a01b03166117855761171d816000541190565b156117855760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60408051808201909152600080825260208201526117ee826000541190565b61184d5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610733565b60007f000000000000000000000000000000000000000000000000000000000000000083106118ae576118a07f0000000000000000000000000000000000000000000000000000000000000000846123a9565b6118ab90600161228b565b90505b825b818110611918576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561190557949350505050565b5080611910816123c0565b9150506118b0565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610733565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6119e5828260405180602001604052806000815250611be5565b5050565b60006001600160a01b0384163b15611adc57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a2d9033908990889088906004016123d7565b6020604051808303816000875af1925050508015611a68575060408051601f3d908101601f19168201909252611a6591810190612414565b60015b611ac2573d808015611a96576040519150601f19603f3d011682016040523d82523d6000602084013e611a9b565b606091505b508051611aba5760405162461bcd60e51b8152600401610733906122a3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112d7565b506001949350505050565b606081611b0b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b355780611b1f8161223b565b9150611b2e9050600a83612227565b9150611b0f565b60008167ffffffffffffffff811115611b5057611b5061207d565b6040519080825280601f01601f191660200182016040528015611b7a576020820181803683370190505b5090505b84156112d757611b8f6001836123a9565b9150611b9c600a86612431565b611ba790603061228b565b60f81b818381518110611bbc57611bbc612445565b60200101906001600160f81b031916908160001a905350611bde600a86612227565b9450611b7e565b6000546001600160a01b038416611c485760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610733565b611c53816000541190565b15611ca05760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610733565b7f0000000000000000000000000000000000000000000000000000000000000000831115611d1b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610733565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611d7790879061237e565b6001600160801b03168152602001858360200151611d95919061237e565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611eb55760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611e7960008884886119e9565b611e955760405162461bcd60e51b8152600401610733906122a3565b81611e9f8161223b565b9250508080611ead9061223b565b915050611e2c565b5060008190556117c7565b6001600160e01b03198116811461137757600080fd5b600060208284031215611ee857600080fd5b8135611ef381611ec0565b9392505050565b60005b83811015611f15578181015183820152602001611efd565b8381111561112a5750506000910152565b60008151808452611f3e816020860160208601611efa565b601f01601f19169290920160200192915050565b602081526000611ef36020830184611f26565b600060208284031215611f7757600080fd5b5035919050565b6001600160a01b038116811461137757600080fd5b60008060408385031215611fa657600080fd5b8235611fb181611f7e565b946020939093013593505050565b600080600060608486031215611fd457600080fd5b8335611fdf81611f7e565b92506020840135611fef81611f7e565b929592945050506040919091013590565b6000806040838503121561201357600080fd5b50508035926020909101359150565b60006020828403121561203457600080fd5b8135611ef381611f7e565b6000806040838503121561205257600080fd5b823561205d81611f7e565b91506020830135801515811461207257600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156120a957600080fd5b84356120b481611f7e565b935060208501356120c481611f7e565b925060408501359150606085013567ffffffffffffffff808211156120e857600080fd5b818701915087601f8301126120fc57600080fd5b81358181111561210e5761210e61207d565b604051601f8201601f19908116603f011681019083821181831017156121365761213661207d565b816040528281528a602084870101111561214f57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561218657600080fd5b823561219181611f7e565b9150602083013561207281611f7e565b600181811c908216806121b557607f821691505b602082108114156121d657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561220c5761220c6121dc565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261223657612236612211565b500490565b600060001982141561224f5761224f6121dc565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561229e5761229e6121dc565b500190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008451612308818460208901611efa565b84519083019061231c818360208901611efa565b845191019061232f818360208801611efa565b0195945050505050565b60006020828403121561234b57600080fd5b8151611ef381611f7e565b60006001600160801b0383811690831681811015612376576123766121dc565b039392505050565b60006001600160801b038083168185168083038211156123a0576123a06121dc565b01949350505050565b6000828210156123bb576123bb6121dc565b500390565b6000816123cf576123cf6121dc565b506000190190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061240a90830184611f26565b9695505050505050565b60006020828403121561242657600080fd5b8151611ef381611ec0565b60008261244057612440612211565b500690565b634e487b7160e01b600052603260045260246000fdfe697066733a2f2f516d6453314c574a4776483377424c7647776655486a62687457717a4c6a5351526447706d47524a77576e3173352fa2646970667358221220c7401dff32530ce4d06f76f3f1cc6bc74d282b86cdcd244dda01e60cda7a9bce64736f6c634300080b0033455243373231413a207472616e7366657220746f206e6f6e2045524337323152

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c80636c0360eb1161010d578063a22cb465116100a0578063d5abeb011161006f578063d5abeb011461057c578063d7224ba014610592578063e8a3d485146105a8578063e985e9c5146105cb578063f2fde38b146105eb57600080fd5b8063a22cb465146104eb578063b88d4fde1461050b578063c66828621461052b578063c87b56dd1461055c57600080fd5b80638da5cb5b116100dc5780638da5cb5b1461048f57806395d89b41146104ad578063982d669e146104c2578063a0712d68146104d857600080fd5b80636c0360eb1461042557806370a082311461043a578063715018a61461045a5780637c928fe91461046f57600080fd5b80632a55205a1161018557806342842e0e1161015457806342842e0e146103a55780634f6ccce7146103c557806351cff8d9146103e55780636352211e1461040557600080fd5b80632a55205a1461031c5780632de54df81461035b5780632f745c5914610370578063305af4ff1461039057600080fd5b8063095ea7b3116101c1578063095ea7b3146102ab57806318160ddd146102cd5780631e84c413146102e257806323b872dd146102fc57600080fd5b806301ffc9a7146101f357806306fdde031461022857806307e89ec01461024a578063081812fc14610273575b600080fd5b3480156101ff57600080fd5b5061021361020e366004611ed6565b61060b565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b5061023d610636565b60405161021f9190611f52565b34801561025657600080fd5b50610265662386f26fc1000081565b60405190815260200161021f565b34801561027f57600080fd5b5061029361028e366004611f65565b6106c8565b6040516001600160a01b03909116815260200161021f565b3480156102b757600080fd5b506102cb6102c6366004611f93565b610758565b005b3480156102d957600080fd5b50600054610265565b3480156102ee57600080fd5b50600d546102139060ff1681565b34801561030857600080fd5b506102cb610317366004611fbf565b610870565b34801561032857600080fd5b5061033c610337366004612000565b61087b565b604080516001600160a01b03909316835260208301919091520161021f565b34801561036757600080fd5b50610265600a81565b34801561037c57600080fd5b5061026561038b366004611f93565b6108ee565b34801561039c57600080fd5b50610265600581565b3480156103b157600080fd5b506102cb6103c0366004611fbf565b610a5c565b3480156103d157600080fd5b506102656103e0366004611f65565b610a77565b3480156103f157600080fd5b506102cb610400366004612022565b610ad9565b34801561041157600080fd5b50610293610420366004611f65565b610b97565b34801561043157600080fd5b5061023d610ba9565b34801561044657600080fd5b50610265610455366004612022565b610bc5565b34801561046657600080fd5b506102cb610c56565b34801561047b57600080fd5b506102cb61048a366004611f65565b610c8c565b34801561049b57600080fd5b506008546001600160a01b0316610293565b3480156104b957600080fd5b5061023d610e4c565b3480156104ce57600080fd5b50610265600c5481565b6102cb6104e6366004611f65565b610e5b565b3480156104f757600080fd5b506102cb61050636600461203f565b611032565b34801561051757600080fd5b506102cb610526366004612093565b6110f7565b34801561053757600080fd5b5061023d60405180604001604052806005815260200164173539b7b760d91b81525081565b34801561056857600080fd5b5061023d610577366004611f65565b611130565b34801561058857600080fd5b50610265600b5481565b34801561059e57600080fd5b5061026560075481565b3480156105b457600080fd5b5061023d6040518060200160405280600081525081565b3480156105d757600080fd5b506102136105e6366004612173565b61121e565b3480156105f757600080fd5b506102cb610606366004612022565b6112df565b60006001600160e01b0319821663152a902d60e11b1480610630575061063082611380565b92915050565b606060018054610645906121a1565b80601f0160208091040260200160405190810160405280929190818152602001828054610671906121a1565b80156106be5780601f10610693576101008083540402835291602001916106be565b820191906000526020600020905b8154815290600101906020018083116106a157829003601f168201915b5050505050905090565b60006106d5826000541190565b61073c5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061076382610b97565b9050806001600160a01b0316836001600160a01b031614156107d25760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610733565b336001600160a01b03821614806107ee57506107ee813361121e565b6108605760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610733565b61086b8383836113eb565b505050565b61086b838383611447565b600080610889846000541190565b6108c95760405162461bcd60e51b81526020600482015260116024820152702737b732bc34b9ba32b73a103a37b5b2b760791b6044820152606401610733565b306127106108d9856103e86121f2565b6108e39190612227565b915091509250929050565b60006108f983610bc5565b82106109525760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610733565b600080549080805b838110156109fc576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156109ad57805192505b876001600160a01b0316836001600160a01b031614156109e957868414156109db5750935061063092505050565b836109e58161223b565b9450505b50806109f48161223b565b91505061095a565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610733565b61086b838383604051806020016040528060008152506110f7565b600080548210610ad55760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610733565b5090565b6008546001600160a01b03163314610b035760405162461bcd60e51b815260040161073390612256565b60405147906000906001600160a01b0384169083908381818185875af1925050503d8060008114610b50576040519150601f19603f3d011682016040523d82523d6000602084013e610b55565b606091505b505090508061086b5760405162461bcd60e51b815260206004820152600e60248201526d11985a5b1959081d1bc81cd95b9960921b6044820152606401610733565b6000610ba2826117cf565b5192915050565b60405180606001604052806036815260200161245c6036913981565b60006001600160a01b038216610c315760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610733565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b03163314610c805760405162461bcd60e51b815260040161073390612256565b610c8a6000611979565b565b60026009541415610cdf5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610733565b6002600955600d5460ff16610d305760405162461bcd60e51b8152602060048201526017602482015276283ab13634b19039b0b6329034b9903737ba1037b832b760491b6044820152606401610733565b80600b5481610d3e60005490565b610d48919061228b565b1115610d905760405162461bcd60e51b81526020600482015260176024820152762737ba1032b737bab3b41036b4b73a39903932b6b0b4b760491b6044820152606401610733565b81600580821115610de35760405162461bcd60e51b815260206004820152601a60248201527f4d6178206d696e7473207065722074786e2065786365656465640000000000006044820152606401610733565b600c546000541115610e375760405162461bcd60e51b815260206004820152601c60248201527f4e6f7420656e6f7567682066726565206d696e74732072656d61696e000000006044820152606401610733565b610e4133856119cb565b505060016009555050565b606060028054610645906121a1565b60026009541415610eae5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610733565b6002600955600c54600054662386f26fc100009183911115610f1c5734610ed582846121f2565b1115610f1c5760405162461bcd60e51b8152602060048201526016602482015275496e73756666696369656e74206574682076616c756560501b6044820152606401610733565b600d5460ff16610f685760405162461bcd60e51b8152602060048201526017602482015276283ab13634b19039b0b6329034b9903737ba1037b832b760491b6044820152606401610733565b82600b5481610f7660005490565b610f80919061228b565b1115610fc85760405162461bcd60e51b81526020600482015260176024820152762737ba1032b737bab3b41036b4b73a39903932b6b0b4b760491b6044820152606401610733565b83600a8082111561101b5760405162461bcd60e51b815260206004820152601a60248201527f4d6178206d696e7473207065722074786e2065786365656465640000000000006044820152606401610733565b61102533876119cb565b5050600160095550505050565b6001600160a01b03821633141561108b5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610733565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611102848484611447565b61110e848484846119e9565b61112a5760405162461bcd60e51b8152600401610733906122a3565b50505050565b606061113d826000541190565b6111815760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b6044820152606401610733565b600060405180606001604052806036815260200161245c6036913951116111b75760405180602001604052806000815250610630565b60405180606001604052806036815260200161245c603691396111d983611ae7565b60405180604001604052806005815260200164173539b7b760d91b815250604051602001611209939291906122f6565b60405160208183030381529060405292915050565b600a5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c455279190602401602060405180830381865afa158015611270573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112949190612339565b6001600160a01b031614156112ad576001915050610630565b6001600160a01b0380851660009081526006602090815260408083209387168352929052205460ff165b949350505050565b6008546001600160a01b031633146113095760405162461bcd60e51b815260040161073390612256565b6001600160a01b03811661136e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610733565b61137781611979565b50565b3b151590565b60006001600160e01b031982166380ac58cd60e01b14806113b157506001600160e01b03198216635b5e139f60e01b145b806113cc57506001600160e01b0319821663780e9d6360e01b145b8061063057506301ffc9a760e01b6001600160e01b0319831614610630565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611452826117cf565b80519091506000906001600160a01b0316336001600160a01b0316148061148957503361147e846106c8565b6001600160a01b0316145b8061149b5750815161149b903361121e565b9050806115055760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610733565b846001600160a01b031682600001516001600160a01b0316146115795760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610733565b6001600160a01b0384166115dd5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610733565b6115ed60008484600001516113eb565b6001600160a01b038516600090815260046020526040812080546001929061161f9084906001600160801b0316612356565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600460205260408120805460019450909261166b9185911661237e565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556116f384600161228b565b6000818152600360205260409020549091506001600160a01b03166117855761171d816000541190565b156117855760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60408051808201909152600080825260208201526117ee826000541190565b61184d5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610733565b60007f000000000000000000000000000000000000000000000000000000000000006f83106118ae576118a07f000000000000000000000000000000000000000000000000000000000000006f846123a9565b6118ab90600161228b565b90505b825b818110611918576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561190557949350505050565b5080611910816123c0565b9150506118b0565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610733565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6119e5828260405180602001604052806000815250611be5565b5050565b60006001600160a01b0384163b15611adc57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a2d9033908990889088906004016123d7565b6020604051808303816000875af1925050508015611a68575060408051601f3d908101601f19168201909252611a6591810190612414565b60015b611ac2573d808015611a96576040519150601f19603f3d011682016040523d82523d6000602084013e611a9b565b606091505b508051611aba5760405162461bcd60e51b8152600401610733906122a3565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112d7565b506001949350505050565b606081611b0b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b355780611b1f8161223b565b9150611b2e9050600a83612227565b9150611b0f565b60008167ffffffffffffffff811115611b5057611b5061207d565b6040519080825280601f01601f191660200182016040528015611b7a576020820181803683370190505b5090505b84156112d757611b8f6001836123a9565b9150611b9c600a86612431565b611ba790603061228b565b60f81b818381518110611bbc57611bbc612445565b60200101906001600160f81b031916908160001a905350611bde600a86612227565b9450611b7e565b6000546001600160a01b038416611c485760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610733565b611c53816000541190565b15611ca05760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610733565b7f000000000000000000000000000000000000000000000000000000000000006f831115611d1b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610733565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611d7790879061237e565b6001600160801b03168152602001858360200151611d95919061237e565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611eb55760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611e7960008884886119e9565b611e955760405162461bcd60e51b8152600401610733906122a3565b81611e9f8161223b565b9250508080611ead9061223b565b915050611e2c565b5060008190556117c7565b6001600160e01b03198116811461137757600080fd5b600060208284031215611ee857600080fd5b8135611ef381611ec0565b9392505050565b60005b83811015611f15578181015183820152602001611efd565b8381111561112a5750506000910152565b60008151808452611f3e816020860160208601611efa565b601f01601f19169290920160200192915050565b602081526000611ef36020830184611f26565b600060208284031215611f7757600080fd5b5035919050565b6001600160a01b038116811461137757600080fd5b60008060408385031215611fa657600080fd5b8235611fb181611f7e565b946020939093013593505050565b600080600060608486031215611fd457600080fd5b8335611fdf81611f7e565b92506020840135611fef81611f7e565b929592945050506040919091013590565b6000806040838503121561201357600080fd5b50508035926020909101359150565b60006020828403121561203457600080fd5b8135611ef381611f7e565b6000806040838503121561205257600080fd5b823561205d81611f7e565b91506020830135801515811461207257600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600080600080608085870312156120a957600080fd5b84356120b481611f7e565b935060208501356120c481611f7e565b925060408501359150606085013567ffffffffffffffff808211156120e857600080fd5b818701915087601f8301126120fc57600080fd5b81358181111561210e5761210e61207d565b604051601f8201601f19908116603f011681019083821181831017156121365761213661207d565b816040528281528a602084870101111561214f57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561218657600080fd5b823561219181611f7e565b9150602083013561207281611f7e565b600181811c908216806121b557607f821691505b602082108114156121d657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561220c5761220c6121dc565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261223657612236612211565b500490565b600060001982141561224f5761224f6121dc565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561229e5761229e6121dc565b500190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008451612308818460208901611efa565b84519083019061231c818360208901611efa565b845191019061232f818360208801611efa565b0195945050505050565b60006020828403121561234b57600080fd5b8151611ef381611f7e565b60006001600160801b0383811690831681811015612376576123766121dc565b039392505050565b60006001600160801b038083168185168083038211156123a0576123a06121dc565b01949350505050565b6000828210156123bb576123bb6121dc565b500390565b6000816123cf576123cf6121dc565b506000190190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061240a90830184611f26565b9695505050505050565b60006020828403121561242657600080fd5b8151611ef381611ec0565b60008261244057612440612211565b500690565b634e487b7160e01b600052603260045260246000fdfe697066733a2f2f516d6453314c574a4776483377424c7647776655486a62687457717a4c6a5351526447706d47524a77576e3173352fa2646970667358221220c7401dff32530ce4d06f76f3f1cc6bc74d282b86cdcd244dda01e60cda7a9bce64736f6c634300080b0033

Deployed Bytecode Sourcemap

42273:5038:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45490:292;;;;;;;;;;-1:-1:-1;45490:292:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;45490:292:0;;;;;;;;29412:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;42945:54::-;;;;;;;;;;;;42989:10;42945:54;;;;;1489:25:1;;;1477:2;1462:18;42945:54:0;1343:177:1;30937:204:0;;;;;;;;;;-1:-1:-1;30937:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1874:32:1;;;1856:51;;1844:2;1829:18;30937:204:0;1710:203:1;30500:379:0;;;;;;;;;;-1:-1:-1;30500:379:0;;;;;:::i;:::-;;:::i;:::-;;26250:94;;;;;;;;;;-1:-1:-1;26303:7:0;26326:12;26250:94;;43048:37;;;;;;;;;;-1:-1:-1;43048:37:0;;;;;;;;31787:142;;;;;;;;;;-1:-1:-1;31787:142:0;;;;;:::i;:::-;;:::i;47003:305::-;;;;;;;;;;-1:-1:-1;47003:305:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3280:32:1;;;3262:51;;3344:2;3329:18;;3322:34;;;;3235:18;47003:305:0;3088:274:1;42847:52:0;;;;;;;;;;;;42897:2;42847:52;;26878:744;;;;;;;;;;-1:-1:-1;26878:744:0;;;;;:::i;:::-;;:::i;42791:49::-;;;;;;;;;;;;42839:1;42791:49;;31992:157;;;;;;;;;;-1:-1:-1;31992:157:0;;;;;:::i;:::-;;:::i;26413:177::-;;;;;;;;;;-1:-1:-1;26413:177:0;;;;;:::i;:::-;;:::i;45218:209::-;;;;;;;;;;-1:-1:-1;45218:209:0;;;;;:::i;:::-;;:::i;29235:118::-;;;;;;;;;;-1:-1:-1;29235:118:0;;;;;:::i;:::-;;:::i;42377:89::-;;;;;;;;;;;;;:::i;28112:211::-;;;;;;;;;;-1:-1:-1;28112:211:0;;;;;:::i;:::-;;:::i;41545:94::-;;;;;;;;;;;;;:::i;44912:298::-;;;;;;;;;;-1:-1:-1;44912:298:0;;;;;:::i;:::-;;:::i;40894:87::-;;;;;;;;;;-1:-1:-1;40967:6:0;;-1:-1:-1;;;;;40967:6:0;40894:87;;29567:98;;;;;;;;;;;;;:::i;43006:35::-;;;;;;;;;;;;;;;;44384:344;;;;;;:::i;:::-;;:::i;31205:274::-;;;;;;;;;;-1:-1:-1;31205:274:0;;;;;:::i;:::-;;:::i;32212:311::-;;;;;;;;;;-1:-1:-1;32212:311:0;;;;;:::i;:::-;;:::i;42519:46::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;42519:46:0;;;;;46523:413;;;;;;;;;;-1:-1:-1;46523:413:0;;;;;:::i;:::-;;:::i;42906:30::-;;;;;;;;;;;;;;;;36543:43;;;;;;;;;;;;;;;;42473:39;;;;;;;;;;;;;;;;;;;;;;;;;;45919:532;;;;;;;;;;-1:-1:-1;45919:532:0;;;;;:::i;:::-;;:::i;41794:229::-;;;;;;;;;;-1:-1:-1;41794:229:0;;;;;:::i;:::-;;:::i;45490:292::-;45638:4;-1:-1:-1;;;;;;45680:41:0;;-1:-1:-1;;;45680:41:0;;:94;;;45738:36;45762:11;45738:23;:36::i;:::-;45660:114;45490:292;-1:-1:-1;;45490:292:0:o;29412:94::-;29466:13;29495:5;29488:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29412:94;:::o;30937:204::-;31005:7;31029:16;31037:7;32819:4;32849:12;-1:-1:-1;32839:22:0;32762:105;31029:16;31021:74;;;;-1:-1:-1;;;31021:74:0;;6423:2:1;31021:74:0;;;6405:21:1;6462:2;6442:18;;;6435:30;6501:34;6481:18;;;6474:62;-1:-1:-1;;;6552:18:1;;;6545:43;6605:19;;31021:74:0;;;;;;;;;-1:-1:-1;31111:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31111:24:0;;30937:204::o;30500:379::-;30569:13;30585:24;30601:7;30585:15;:24::i;:::-;30569:40;;30630:5;-1:-1:-1;;;;;30624:11:0;:2;-1:-1:-1;;;;;30624:11:0;;;30616:58;;;;-1:-1:-1;;;30616:58:0;;6837:2:1;30616:58:0;;;6819:21:1;6876:2;6856:18;;;6849:30;6915:34;6895:18;;;6888:62;-1:-1:-1;;;6966:18:1;;;6959:32;7008:19;;30616:58:0;6635:398:1;30616:58:0;24158:10;-1:-1:-1;;;;;30699:21:0;;;;:62;;-1:-1:-1;30724:37:0;30741:5;24158:10;45919:532;:::i;30724:37::-;30683:153;;;;-1:-1:-1;;;30683:153:0;;7240:2:1;30683:153:0;;;7222:21:1;7279:2;7259:18;;;7252:30;7318:34;7298:18;;;7291:62;7389:27;7369:18;;;7362:55;7434:19;;30683:153:0;7038:421:1;30683:153:0;30845:28;30854:2;30858:7;30867:5;30845:8;:28::i;:::-;30562:317;30500:379;;:::o;31787:142::-;31895:28;31905:4;31911:2;31915:7;31895:9;:28::i;47003:305::-;47132:16;47150:21;47199:16;47207:7;32819:4;32849:12;-1:-1:-1;32839:22:0;32762:105;47199:16;47191:46;;;;-1:-1:-1;;;47191:46:0;;7666:2:1;47191:46:0;;;7648:21:1;7705:2;7685:18;;;7678:30;-1:-1:-1;;;7724:18:1;;;7717:47;7781:18;;47191:46:0;7464:341:1;47191:46:0;47265:4;47293:5;47273:16;:9;47285:4;47273:16;:::i;:::-;47272:26;;;;:::i;:::-;47249:50;;;;47003:305;;;;;:::o;26878:744::-;26987:7;27022:16;27032:5;27022:9;:16::i;:::-;27014:5;:24;27006:71;;;;-1:-1:-1;;;27006:71:0;;8574:2:1;27006:71:0;;;8556:21:1;8613:2;8593:18;;;8586:30;8652:34;8632:18;;;8625:62;-1:-1:-1;;;8703:18:1;;;8696:32;8745:19;;27006:71:0;8372:398:1;27006:71:0;27084:22;26326:12;;;27084:22;;27204:350;27228:14;27224:1;:18;27204:350;;;27258:31;27292:14;;;:11;:14;;;;;;;;;27258:48;;;;;;;;;-1:-1:-1;;;;;27258:48:0;;;;;-1:-1:-1;;;27258:48:0;;;;;;;;;;;;27319:28;27315:89;;27380:14;;;-1:-1:-1;27315:89:0;27437:5;-1:-1:-1;;;;;27416:26:0;:17;-1:-1:-1;;;;;27416:26:0;;27412:135;;;27474:5;27459:11;:20;27455:59;;;-1:-1:-1;27501:1:0;-1:-1:-1;27494:8:0;;-1:-1:-1;;;27494:8:0;27455:59;27524:13;;;;:::i;:::-;;;;27412:135;-1:-1:-1;27244:3:0;;;;:::i;:::-;;;;27204:350;;;-1:-1:-1;27560:56:0;;-1:-1:-1;;;27560:56:0;;9117:2:1;27560:56:0;;;9099:21:1;9156:2;9136:18;;;9129:30;9195:34;9175:18;;;9168:62;-1:-1:-1;;;9246:18:1;;;9239:44;9300:19;;27560:56:0;8915:410:1;31992:157:0;32104:39;32121:4;32127:2;32131:7;32104:39;;;;;;;;;;;;:16;:39::i;26413:177::-;26480:7;26326:12;;26504:5;:21;26496:69;;;;-1:-1:-1;;;26496:69:0;;9532:2:1;26496:69:0;;;9514:21:1;9571:2;9551:18;;;9544:30;9610:34;9590:18;;;9583:62;-1:-1:-1;;;9661:18:1;;;9654:33;9704:19;;26496:69:0;9330:399:1;26496:69:0;-1:-1:-1;26579:5:0;26413:177::o;45218:209::-;40967:6;;-1:-1:-1;;;;;40967:6:0;24158:10;41114:23;41106:68;;;;-1:-1:-1;;;41106:68:0;;;;;;;:::i;:::-;45346:28:::1;::::0;45295:21:::1;::::0;45277:15:::1;::::0;-1:-1:-1;;;;;45346:8:0;::::1;::::0;45295:21;;45277:15;45346:28;45277:15;45346:28;45295:21;45346:8;:28:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45327:47;;;45393:7;45385:34;;;::::0;-1:-1:-1;;;45385:34:0;;10507:2:1;45385:34:0::1;::::0;::::1;10489:21:1::0;10546:2;10526:18;;;10519:30;-1:-1:-1;;;10565:18:1;;;10558:44;10619:18;;45385:34:0::1;10305:338:1::0;29235:118:0;29299:7;29322:20;29334:7;29322:11;:20::i;:::-;:25;;29235:118;-1:-1:-1;;29235:118:0:o;42377:89::-;;;;;;;;;;;;;;;;;;;:::o;28112:211::-;28176:7;-1:-1:-1;;;;;28200:19:0;;28192:75;;;;-1:-1:-1;;;28192:75:0;;10850:2:1;28192:75:0;;;10832:21:1;10889:2;10869:18;;;10862:30;10928:34;10908:18;;;10901:62;-1:-1:-1;;;10979:18:1;;;10972:41;11030:19;;28192:75:0;10648:407:1;28192:75:0;-1:-1:-1;;;;;;28289:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;28289:27:0;;28112:211::o;41545:94::-;40967:6;;-1:-1:-1;;;;;40967:6:0;24158:10;41114:23;41106:68;;;;-1:-1:-1;;;41106:68:0;;;;;;;:::i;:::-;41610:21:::1;41628:1;41610:9;:21::i;:::-;41545:94::o:0;44912:298::-;11271:1;11869:7;;:19;;11861:63;;;;-1:-1:-1;;;11861:63:0;;11262:2:1;11861:63:0;;;11244:21:1;11301:2;11281:18;;;11274:30;11340:33;11320:18;;;11313:61;11391:18;;11861:63:0;11060:355:1;11861:63:0;11271:1;12002:7;:18;43209::::1;::::0;::::1;;43201:54;;;::::0;-1:-1:-1;;;43201:54:0;;11622:2:1;43201:54:0::1;::::0;::::1;11604:21:1::0;11661:2;11641:18;;;11634:30;-1:-1:-1;;;11680:18:1;;;11673:53;11743:18;;43201:54:0::1;11420:347:1::0;43201:54:0::1;45041:14:::2;43617:9;;43599:14;43583:13;26303:7:::0;26326:12;;26250:94;43583:13:::2;:30;;;;:::i;:::-;:43;;43561:116;;;::::0;-1:-1:-1;;;43561:116:0;;12107:2:1;43561:116:0::2;::::0;::::2;12089:21:1::0;12146:2;12126:18;;;12119:30;-1:-1:-1;;;12165:18:1;;;12158:53;12228:18;;43561:116:0::2;11905:347:1::0;43561:116:0::2;45080:14:::3;42839:1;43407:16;43389:14;:34;;43367:110;;;::::0;-1:-1:-1;;;43367:110:0;;12459:2:1;43367:110:0::3;::::0;::::3;12441:21:1::0;12498:2;12478:18;;;12471:30;12537:28;12517:18;;;12510:56;12583:18;;43367:110:0::3;12257:350:1::0;43367:110:0::3;43785:14:::4;::::0;26303:7;26326:12;43768:31:::4;;43746:109;;;::::0;-1:-1:-1;;;43746:109:0;;12814:2:1;43746:109:0::4;::::0;::::4;12796:21:1::0;12853:2;12833:18;;;12826:30;12892;12872:18;;;12865:58;12940:18;;43746:109:0::4;12612:352:1::0;43746:109:0::4;45165:37:::5;45175:10;45187:14;45165:9;:37::i;:::-;-1:-1:-1::0;;11227:1:0;12181:7;:22;-1:-1:-1;;44912:298:0:o;29567:98::-;29623:13;29652:7;29645:14;;;;;:::i;44384:344::-;11271:1;11869:7;;:19;;11861:63;;;;-1:-1:-1;;;11861:63:0;;11262:2:1;11861:63:0;;;11244:21:1;11301:2;11281:18;;;11274:30;11340:33;11320:18;;;11313:61;11391:18;;11861:63:0;11060:355:1;11861:63:0;11271:1;12002:7;:18;43978:14:::1;::::0;26303:7;26326:12;42989:10:::1;::::0;44524:14;;43962:30:::1;43959:182;;;44062:9;44035:22;44043:14:::0;44035:5;:22:::1;:::i;:::-;44034:37;;44008:121;;;::::0;-1:-1:-1;;;44008:121:0;;13171:2:1;44008:121:0::1;::::0;::::1;13153:21:1::0;13210:2;13190:18;;;13183:30;-1:-1:-1;;;13229:18:1;;;13222:52;13291:18;;44008:121:0::1;12969:346:1::0;44008:121:0::1;43209:18:::2;::::0;::::2;;43201:54;;;::::0;-1:-1:-1;;;43201:54:0;;11622:2:1;43201:54:0::2;::::0;::::2;11604:21:1::0;11661:2;11641:18;;;11634:30;-1:-1:-1;;;11680:18:1;;;11673:53;11743:18;;43201:54:0::2;11420:347:1::0;43201:54:0::2;44587:14:::3;43617:9;;43599:14;43583:13;26303:7:::0;26326:12;;26250:94;43583:13:::3;:30;;;;:::i;:::-;:43;;43561:116;;;::::0;-1:-1:-1;;;43561:116:0;;12107:2:1;43561:116:0::3;::::0;::::3;12089:21:1::0;12146:2;12126:18;;;12119:30;-1:-1:-1;;;12165:18:1;;;12158:53;12228:18;;43561:116:0::3;11905:347:1::0;43561:116:0::3;44626:14:::4;42897:2;43407:16;43389:14;:34;;43367:110;;;::::0;-1:-1:-1;;;43367:110:0;;12459:2:1;43367:110:0::4;::::0;::::4;12441:21:1::0;12498:2;12478:18;;;12471:30;12537:28;12517:18;;;12510:56;12583:18;;43367:110:0::4;12257:350:1::0;43367:110:0::4;44683:37:::5;44693:10;44705:14;44683:9;:37::i;:::-;-1:-1:-1::0;;11227:1:0;12181:7;:22;-1:-1:-1;;;;44384:344:0:o;31205:274::-;-1:-1:-1;;;;;31296:24:0;;24158:10;31296:24;;31288:63;;;;-1:-1:-1;;;31288:63:0;;13522:2:1;31288:63:0;;;13504:21:1;13561:2;13541:18;;;13534:30;13600:28;13580:18;;;13573:56;13646:18;;31288:63:0;13320:350:1;31288:63:0;24158:10;31360:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31360:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31360:53:0;;;;;;;;;;31425:48;;540:41:1;;;31360:42:0;;24158:10;31425:48;;513:18:1;31425:48:0;;;;;;;31205:274;;:::o;32212:311::-;32349:28;32359:4;32365:2;32369:7;32349:9;:28::i;:::-;32400:48;32423:4;32429:2;32433:7;32442:5;32400:22;:48::i;:::-;32384:133;;;;-1:-1:-1;;;32384:133:0;;;;;;;:::i;:::-;32212:311;;;;:::o;46523:413::-;46625:13;46666:17;46674:8;32819:4;32849:12;-1:-1:-1;32839:22:0;32762:105;46666:17;46658:51;;;;-1:-1:-1;;;46658:51:0;;14297:2:1;46658:51:0;;;14279:21:1;14336:2;14316:18;;;14309:30;-1:-1:-1;;;14355:18:1;;;14348:51;14416:18;;46658:51:0;14095:345:1;46658:51:0;46752:1;46734:7;;;;;;;;;;;;;;;;;46728:21;:25;:199;;;;;;;;;;;;;;;;;46812:7;;;;;;;;;;;;;;;;;46837:26;46854:8;46837:16;:26::i;:::-;46881:13;;;;;;;;;;;;;-1:-1:-1;;;46881:13:0;;;46778:132;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46721:206;46523:413;-1:-1:-1;;46523:413:0:o;45919:532::-;46253:27;;46304:28;;-1:-1:-1;;;46304:28:0;;-1:-1:-1;;;;;1874:32:1;;;46304:28:0;;;1856:51:1;46044:4:0;;46253:27;;;46296:49;;;;46253:27;;46304:21;;1829:18:1;;46304:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;46296:49:0;;46292:93;;;46369:4;46362:11;;;;;46292:93;-1:-1:-1;;;;;31687:25:0;;;31664:4;31687:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;46404:39;46397:46;45919:532;-1:-1:-1;;;;45919:532:0:o;41794:229::-;40967:6;;-1:-1:-1;;;;;40967:6:0;24158:10;41114:23;41106:68;;;;-1:-1:-1;;;41106:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41897:22:0;::::1;41875:110;;;::::0;-1:-1:-1;;;41875:110:0;;15601:2:1;41875:110:0::1;::::0;::::1;15583:21:1::0;15640:2;15620:18;;;15613:30;15679:34;15659:18;;;15652:62;-1:-1:-1;;;15730:18:1;;;15723:36;15776:19;;41875:110:0::1;15399:402:1::0;41875:110:0::1;41996:19;42006:8;41996:9;:19::i;:::-;41794:229:::0;:::o;769:387::-;1092:20;1140:8;;;769:387::o;27686:370::-;27813:4;-1:-1:-1;;;;;;27843:40:0;;-1:-1:-1;;;27843:40:0;;:99;;-1:-1:-1;;;;;;;27894:48:0;;-1:-1:-1;;;27894:48:0;27843:99;:160;;;-1:-1:-1;;;;;;;27953:50:0;;-1:-1:-1;;;27953:50:0;27843:160;:207;;;-1:-1:-1;;;;;;;;;;13934:40:0;;;28014:36;13775:207;36365:172;36462:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;36462:29:0;-1:-1:-1;;;;;36462:29:0;;;;;;;;;36503:28;;36462:24;;36503:28;;;;;;;36365:172;;;:::o;34730:1529::-;34827:35;34865:20;34877:7;34865:11;:20::i;:::-;34936:18;;34827:58;;-1:-1:-1;34894:22:0;;-1:-1:-1;;;;;34920:34:0;24158:10;-1:-1:-1;;;;;34920:34:0;;:81;;;-1:-1:-1;24158:10:0;34965:20;34977:7;34965:11;:20::i;:::-;-1:-1:-1;;;;;34965:36:0;;34920:81;:142;;;-1:-1:-1;35029:18:0;;35012:50;;24158:10;45919:532;:::i;35012:50::-;34894:169;;35088:17;35072:101;;;;-1:-1:-1;;;35072:101:0;;16008:2:1;35072:101:0;;;15990:21:1;16047:2;16027:18;;;16020:30;16086:34;16066:18;;;16059:62;-1:-1:-1;;;16137:18:1;;;16130:48;16195:19;;35072:101:0;15806:414:1;35072:101:0;35220:4;-1:-1:-1;;;;;35198:26:0;:13;:18;;;-1:-1:-1;;;;;35198:26:0;;35182:98;;;;-1:-1:-1;;;35182:98:0;;16427:2:1;35182:98:0;;;16409:21:1;16466:2;16446:18;;;16439:30;16505:34;16485:18;;;16478:62;-1:-1:-1;;;16556:18:1;;;16549:36;16602:19;;35182:98:0;16225:402:1;35182:98:0;-1:-1:-1;;;;;35295:16:0;;35287:66;;;;-1:-1:-1;;;35287:66:0;;16834:2:1;35287:66:0;;;16816:21:1;16873:2;16853:18;;;16846:30;16912:34;16892:18;;;16885:62;-1:-1:-1;;;16963:18:1;;;16956:35;17008:19;;35287:66:0;16632:401:1;35287:66:0;35462:49;35479:1;35483:7;35492:13;:18;;;35462:8;:49::i;:::-;-1:-1:-1;;;;;35520:18:0;;;;;;:12;:18;;;;;:31;;35550:1;;35520:18;:31;;35550:1;;-1:-1:-1;;;;;35520:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;35520:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;35558:16:0;;-1:-1:-1;35558:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;35558:16:0;;:29;;-1:-1:-1;;35558:29:0;;:::i;:::-;;;-1:-1:-1;;;;;35558:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35617:43:0;;;;;;;;-1:-1:-1;;;;;35617:43:0;;;;;;35643:15;35617:43;;;;;;;;;-1:-1:-1;35594:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;35594:66:0;-1:-1:-1;;;;;;35594:66:0;;;;;;;;;;;35910:11;35606:7;-1:-1:-1;35910:11:0;:::i;:::-;35973:1;35932:24;;;:11;:24;;;;;:29;35888:33;;-1:-1:-1;;;;;;35932:29:0;35928:236;;35990:20;35998:11;32819:4;32849:12;-1:-1:-1;32839:22:0;32762:105;35990:20;35986:171;;;36050:97;;;;;;;;36077:18;;-1:-1:-1;;;;;36050:97:0;;;;;;36108:28;;;;36050:97;;;;;;;;;;-1:-1:-1;36023:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;36023:124:0;-1:-1:-1;;;;;;36023:124:0;;;;;;;;;;;;35986:171;36196:7;36192:2;-1:-1:-1;;;;;36177:27:0;36186:4;-1:-1:-1;;;;;36177:27:0;;;;;;;;;;;36211:42;34820:1439;;;34730:1529;;;:::o;28575:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;28692:16:0;28700:7;32819:4;32849:12;-1:-1:-1;32839:22:0;32762:105;28692:16;28684:71;;;;-1:-1:-1;;;28684:71:0;;17749:2:1;28684:71:0;;;17731:21:1;17788:2;17768:18;;;17761:30;17827:34;17807:18;;;17800:62;-1:-1:-1;;;17878:18:1;;;17871:40;17928:19;;28684:71:0;17547:406:1;28684:71:0;28764:26;28812:12;28801:7;:23;28797:93;;28856:22;28866:12;28856:7;:22;:::i;:::-;:26;;28881:1;28856:26;:::i;:::-;28835:47;;28797:93;28918:7;28898:212;28935:18;28927:4;:26;28898:212;;28972:31;29006:17;;;:11;:17;;;;;;;;;28972:51;;;;;;;;;-1:-1:-1;;;;;28972:51:0;;;;;-1:-1:-1;;;28972:51:0;;;;;;;;;;;;29036:28;29032:71;;29084:9;28575:606;-1:-1:-1;;;;28575:606:0:o;29032:71::-;-1:-1:-1;28955:6:0;;;;:::i;:::-;;;;28898:212;;;-1:-1:-1;29118:57:0;;-1:-1:-1;;;29118:57:0;;18431:2:1;29118:57:0;;;18413:21:1;18470:2;18450:18;;;18443:30;18509:34;18489:18;;;18482:62;-1:-1:-1;;;18560:18:1;;;18553:45;18615:19;;29118:57:0;18229:411:1;42031:173:0;42106:6;;;-1:-1:-1;;;;;42123:17:0;;;-1:-1:-1;;;;;;42123:17:0;;;;;;;42156:40;;42106:6;;;42123:17;42106:6;;42156:40;;42087:16;;42156:40;42076:128;42031:173;:::o;32873:98::-;32938:27;32948:2;32952:8;32938:27;;;;;;;;;;;;:9;:27::i;:::-;32873:98;;:::o;38076:690::-;38213:4;-1:-1:-1;;;;;38230:13:0;;1092:20;1140:8;38226:535;;38269:72;;-1:-1:-1;;;38269:72:0;;-1:-1:-1;;;;;38269:36:0;;;;;:72;;24158:10;;38320:4;;38326:7;;38335:5;;38269:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38269:72:0;;;;;;;;-1:-1:-1;;38269:72:0;;;;;;;;;;;;:::i;:::-;;;38256:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38500:13:0;;38496:215;;38533:61;;-1:-1:-1;;;38533:61:0;;;;;;;:::i;38496:215::-;38679:6;38673:13;38664:6;38660:2;38656:15;38649:38;38256:464;-1:-1:-1;;;;;;38391:55:0;-1:-1:-1;;;38391:55:0;;-1:-1:-1;38384:62:0;;38226:535;-1:-1:-1;38749:4:0;38076:690;;;;;;:::o;21692:723::-;21748:13;21969:10;21965:53;;-1:-1:-1;;21996:10:0;;;;;;;;;;;;-1:-1:-1;;;21996:10:0;;;;;21692:723::o;21965:53::-;22043:5;22028:12;22084:78;22091:9;;22084:78;;22117:8;;;;:::i;:::-;;-1:-1:-1;22140:10:0;;-1:-1:-1;22148:2:0;22140:10;;:::i;:::-;;;22084:78;;;22172:19;22204:6;22194:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22194:17:0;;22172:39;;22222:154;22229:10;;22222:154;;22256:11;22266:1;22256:11;;:::i;:::-;;-1:-1:-1;22325:10:0;22333:2;22325:5;:10;:::i;:::-;22312:24;;:2;:24;:::i;:::-;22299:39;;22282:6;22289;22282:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;22282:56:0;;;;;;;;-1:-1:-1;22353:11:0;22362:2;22353:11;;:::i;:::-;;;22222:154;;33226:1272;33331:20;33354:12;-1:-1:-1;;;;;33381:16:0;;33373:62;;;;-1:-1:-1;;;33373:62:0;;19844:2:1;33373:62:0;;;19826:21:1;19883:2;19863:18;;;19856:30;19922:34;19902:18;;;19895:62;-1:-1:-1;;;19973:18:1;;;19966:31;20014:19;;33373:62:0;19642:397:1;33373:62:0;33572:21;33580:12;32819:4;32849:12;-1:-1:-1;32839:22:0;32762:105;33572:21;33571:22;33563:64;;;;-1:-1:-1;;;33563:64:0;;20246:2:1;33563:64:0;;;20228:21:1;20285:2;20265:18;;;20258:30;20324:31;20304:18;;;20297:59;20373:18;;33563:64:0;20044:353:1;33563:64:0;33654:12;33642:8;:24;;33634:71;;;;-1:-1:-1;;;33634:71:0;;20604:2:1;33634:71:0;;;20586:21:1;20643:2;20623:18;;;20616:30;20682:34;20662:18;;;20655:62;-1:-1:-1;;;20733:18:1;;;20726:32;20775:19;;33634:71:0;20402:398:1;33634:71:0;-1:-1:-1;;;;;33817:16:0;;33784:30;33817:16;;;:12;:16;;;;;;;;;33784:49;;;;;;;;;-1:-1:-1;;;;;33784:49:0;;;;;-1:-1:-1;;;33784:49:0;;;;;;;;;;;33859:119;;;;;;;;33879:19;;33784:49;;33859:119;;;33879:39;;33909:8;;33879:39;:::i;:::-;-1:-1:-1;;;;;33859:119:0;;;;;33962:8;33927:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;33859:119:0;;;;;;-1:-1:-1;;;;;33840:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;33840:138:0;;;;;;;;;;;;34013:43;;;;;;;;;;;34039:15;34013:43;;;;;;;;33985:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;33985:71:0;-1:-1:-1;;;;;;33985:71:0;;;;;;;;;;;;;;;;;;33997:12;;34109:281;34133:8;34129:1;:12;34109:281;;;34162:38;;34187:12;;-1:-1:-1;;;;;34162:38:0;;;34179:1;;34162:38;;34179:1;;34162:38;34227:59;34258:1;34262:2;34266:12;34280:5;34227:22;:59::i;:::-;34209:150;;;;-1:-1:-1;;;34209:150:0;;;;;;;:::i;:::-;34368:14;;;;:::i;:::-;;;;34143:3;;;;;:::i;:::-;;;;34109:281;;;-1:-1:-1;34398:12:0;:27;;;34432:60;32212:311;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1525:180::-;1584:6;1637:2;1625:9;1616:7;1612:23;1608:32;1605:52;;;1653:1;1650;1643:12;1605:52;-1:-1:-1;1676:23:1;;1525:180;-1:-1:-1;1525:180:1:o;1918:131::-;-1:-1:-1;;;;;1993:31:1;;1983:42;;1973:70;;2039:1;2036;2029:12;2054:315;2122:6;2130;2183:2;2171:9;2162:7;2158:23;2154:32;2151:52;;;2199:1;2196;2189:12;2151:52;2238:9;2225:23;2257:31;2282:5;2257:31;:::i;:::-;2307:5;2359:2;2344:18;;;;2331:32;;-1:-1:-1;;;2054:315:1:o;2374:456::-;2451:6;2459;2467;2520:2;2508:9;2499:7;2495:23;2491:32;2488:52;;;2536:1;2533;2526:12;2488:52;2575:9;2562:23;2594:31;2619:5;2594:31;:::i;:::-;2644:5;-1:-1:-1;2701:2:1;2686:18;;2673:32;2714:33;2673:32;2714:33;:::i;:::-;2374:456;;2766:7;;-1:-1:-1;;;2820:2:1;2805:18;;;;2792:32;;2374:456::o;2835:248::-;2903:6;2911;2964:2;2952:9;2943:7;2939:23;2935:32;2932:52;;;2980:1;2977;2970:12;2932:52;-1:-1:-1;;3003:23:1;;;3073:2;3058:18;;;3045:32;;-1:-1:-1;2835:248:1:o;3367:247::-;3426:6;3479:2;3467:9;3458:7;3454:23;3450:32;3447:52;;;3495:1;3492;3485:12;3447:52;3534:9;3521:23;3553:31;3578:5;3553:31;:::i;3619:416::-;3684:6;3692;3745:2;3733:9;3724:7;3720:23;3716:32;3713:52;;;3761:1;3758;3751:12;3713:52;3800:9;3787:23;3819:31;3844:5;3819:31;:::i;:::-;3869:5;-1:-1:-1;3926:2:1;3911:18;;3898:32;3968:15;;3961:23;3949:36;;3939:64;;3999:1;3996;3989:12;3939:64;4022:7;4012:17;;;3619:416;;;;;:::o;4040:127::-;4101:10;4096:3;4092:20;4089:1;4082:31;4132:4;4129:1;4122:15;4156:4;4153:1;4146:15;4172:1266;4267:6;4275;4283;4291;4344:3;4332:9;4323:7;4319:23;4315:33;4312:53;;;4361:1;4358;4351:12;4312:53;4400:9;4387:23;4419:31;4444:5;4419:31;:::i;:::-;4469:5;-1:-1:-1;4526:2:1;4511:18;;4498:32;4539:33;4498:32;4539:33;:::i;:::-;4591:7;-1:-1:-1;4645:2:1;4630:18;;4617:32;;-1:-1:-1;4700:2:1;4685:18;;4672:32;4723:18;4753:14;;;4750:34;;;4780:1;4777;4770:12;4750:34;4818:6;4807:9;4803:22;4793:32;;4863:7;4856:4;4852:2;4848:13;4844:27;4834:55;;4885:1;4882;4875:12;4834:55;4921:2;4908:16;4943:2;4939;4936:10;4933:36;;;4949:18;;:::i;:::-;5024:2;5018:9;4992:2;5078:13;;-1:-1:-1;;5074:22:1;;;5098:2;5070:31;5066:40;5054:53;;;5122:18;;;5142:22;;;5119:46;5116:72;;;5168:18;;:::i;:::-;5208:10;5204:2;5197:22;5243:2;5235:6;5228:18;5283:7;5278:2;5273;5269;5265:11;5261:20;5258:33;5255:53;;;5304:1;5301;5294:12;5255:53;5360:2;5355;5351;5347:11;5342:2;5334:6;5330:15;5317:46;5405:1;5400:2;5395;5387:6;5383:15;5379:24;5372:35;5426:6;5416:16;;;;;;;4172:1266;;;;;;;:::o;5443:388::-;5511:6;5519;5572:2;5560:9;5551:7;5547:23;5543:32;5540:52;;;5588:1;5585;5578:12;5540:52;5627:9;5614:23;5646:31;5671:5;5646:31;:::i;:::-;5696:5;-1:-1:-1;5753:2:1;5738:18;;5725:32;5766:33;5725:32;5766:33;:::i;5836:380::-;5915:1;5911:12;;;;5958;;;5979:61;;6033:4;6025:6;6021:17;6011:27;;5979:61;6086:2;6078:6;6075:14;6055:18;6052:38;6049:161;;;6132:10;6127:3;6123:20;6120:1;6113:31;6167:4;6164:1;6157:15;6195:4;6192:1;6185:15;6049:161;;5836:380;;;:::o;7810:127::-;7871:10;7866:3;7862:20;7859:1;7852:31;7902:4;7899:1;7892:15;7926:4;7923:1;7916:15;7942:168;7982:7;8048:1;8044;8040:6;8036:14;8033:1;8030:21;8025:1;8018:9;8011:17;8007:45;8004:71;;;8055:18;;:::i;:::-;-1:-1:-1;8095:9:1;;7942:168::o;8115:127::-;8176:10;8171:3;8167:20;8164:1;8157:31;8207:4;8204:1;8197:15;8231:4;8228:1;8221:15;8247:120;8287:1;8313;8303:35;;8318:18;;:::i;:::-;-1:-1:-1;8352:9:1;;8247:120::o;8775:135::-;8814:3;-1:-1:-1;;8835:17:1;;8832:43;;;8855:18;;:::i;:::-;-1:-1:-1;8902:1:1;8891:13;;8775:135::o;9734:356::-;9936:2;9918:21;;;9955:18;;;9948:30;10014:34;10009:2;9994:18;;9987:62;10081:2;10066:18;;9734:356::o;11772:128::-;11812:3;11843:1;11839:6;11836:1;11833:13;11830:39;;;11849:18;;:::i;:::-;-1:-1:-1;11885:9:1;;11772:128::o;13675:415::-;13877:2;13859:21;;;13916:2;13896:18;;;13889:30;13955:34;13950:2;13935:18;;13928:62;-1:-1:-1;;;14021:2:1;14006:18;;13999:49;14080:3;14065:19;;13675:415::o;14445:664::-;14672:3;14710:6;14704:13;14726:53;14772:6;14767:3;14760:4;14752:6;14748:17;14726:53;:::i;:::-;14842:13;;14801:16;;;;14864:57;14842:13;14801:16;14898:4;14886:17;;14864:57;:::i;:::-;14988:13;;14943:20;;;15010:57;14988:13;14943:20;15044:4;15032:17;;15010:57;:::i;:::-;15083:20;;14445:664;-1:-1:-1;;;;;14445:664:1:o;15114:280::-;15213:6;15266:2;15254:9;15245:7;15241:23;15237:32;15234:52;;;15282:1;15279;15272:12;15234:52;15314:9;15308:16;15333:31;15358:5;15333:31;:::i;17038:246::-;17078:4;-1:-1:-1;;;;;17191:10:1;;;;17161;;17213:12;;;17210:38;;;17228:18;;:::i;:::-;17265:13;;17038:246;-1:-1:-1;;;17038:246:1:o;17289:253::-;17329:3;-1:-1:-1;;;;;17418:2:1;17415:1;17411:10;17448:2;17445:1;17441:10;17479:3;17475:2;17471:12;17466:3;17463:21;17460:47;;;17487:18;;:::i;:::-;17523:13;;17289:253;-1:-1:-1;;;;17289:253:1:o;17958:125::-;17998:4;18026:1;18023;18020:8;18017:34;;;18031:18;;:::i;:::-;-1:-1:-1;18068:9:1;;17958:125::o;18088:136::-;18127:3;18155:5;18145:39;;18164:18;;:::i;:::-;-1:-1:-1;;;18200:18:1;;18088:136::o;18645:489::-;-1:-1:-1;;;;;18914:15:1;;;18896:34;;18966:15;;18961:2;18946:18;;18939:43;19013:2;18998:18;;18991:34;;;19061:3;19056:2;19041:18;;19034:31;;;18839:4;;19082:46;;19108:19;;19100:6;19082:46;:::i;:::-;19074:54;18645:489;-1:-1:-1;;;;;;18645:489:1:o;19139:249::-;19208:6;19261:2;19249:9;19240:7;19236:23;19232:32;19229:52;;;19277:1;19274;19267:12;19229:52;19309:9;19303:16;19328:30;19352:5;19328:30;:::i;19393:112::-;19425:1;19451;19441:35;;19456:18;;:::i;:::-;-1:-1:-1;19490:9:1;;19393:112::o;19510:127::-;19571:10;19566:3;19562:20;19559:1;19552:31;19602:4;19599:1;19592:15;19626:4;19623:1;19616:15

Swarm Source

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