ETH Price: $3,209.47 (-1.40%)
Gas: 1 Gwei

Token

Cloudies (CLOUDIES)
 

Overview

Max Total Supply

753 CLOUDIES

Holders

166

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
dook.eth
Balance
5 CLOUDIES
0xf85219B9bB810894020f2c19eA2952f3aaBf916e
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Cloudies

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// 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: 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: 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: 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: 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: 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: Cloudies.sol


pragma solidity ^0.8.10;







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

    string public BASE_URI = "ipfs://QmQ6pFjMioyNY3hvtBCtuuvs3GtuUJPSTytNC9Ab8tgXHD/";
    string public BASE_EXTENSION = ".json";
    uint256 public MAX_PER_TXN = 5;
    uint256 public constant MAX_SUPPLY = 2000;
    uint256 public SALE_PRICE = 0.025 ether;
    uint256 public MAX_FREE = 500;
    bool public SALE_ACTIVE = false;
    address public COLLAB = 0xB0AaDC7EB7461A0FFDCe35bb62044b376A802Afa;

    constructor() ERC721A("Cloudies", "CLOUDIES", 100) {
        _safeMint(msg.sender, 5);
    }

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

    /**
     * @dev Max 5 per txn, 0.025 eth ea.
     */
    function mint(uint256 quantity) external payable nonReentrant {
        require(SALE_ACTIVE, "sale not active");
        require(totalSupply() + quantity <= MAX_SUPPLY, "excceed max supply");
        require(quantity <= MAX_PER_TXN, "invalid quantity");
        if (totalSupply() >= MAX_FREE) {
            require((SALE_PRICE * quantity) <= msg.value, "insufficient eth");
        }
        require(tx.origin == msg.sender, "cannot use custom contract");
        _safeMint(msg.sender, quantity);
    }

    /**
     * @dev Max 5 per txn, free until 500
     */
    function freeMint(uint256 quantity) external nonReentrant {
        require(SALE_ACTIVE, "sale not active");
        require(totalSupply() <= MAX_FREE, "free mint is over");
        require(quantity <= MAX_PER_TXN, "invalid quantity");
        require(totalSupply() + quantity <= MAX_SUPPLY, "excceed max supply");
        _safeMint(msg.sender, quantity);
    }

    function setCollab(address collab) external onlyOwner {
        COLLAB = collab;
    }

    function setMaxFree(uint256 maxFree) external onlyOwner {
        MAX_FREE = maxFree;
    }

    function setMaxPerTxn(uint256 maxPerTxn) external onlyOwner {
        MAX_PER_TXN = maxPerTxn;
    }

    function setPrice(uint256 price) external onlyOwner {
        SALE_PRICE = price;
    }

    function setSale(bool saleActive) external onlyOwner {
        SALE_ACTIVE = saleActive;
    }

    function setBaseURI(string memory baseURI) external onlyOwner {
        BASE_URI = baseURI;
    }

    function setBaseExtension(string memory baseExtension) external onlyOwner {
        BASE_EXTENSION = baseExtension;
    }

    function withdrawAll() public onlyOwner {
        uint256 balance = address(this).balance;
        if (COLLAB == msg.sender) {
            _withdraw(msg.sender, address(this).balance);
        } else {
            _withdraw(COLLAB, (balance * 7000) / 10000); // 70%
            _withdraw(msg.sender, (balance * 3000) / 10000); // 30%
        }
    }

    function _withdraw(address _addr, uint256 _amt) private {
        (bool success, ) = _addr.call{value: _amt}("");
        require(success, "transfer failed");
    }

    function tokenURI(uint256 _tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(_exists(_tokenId), "nonexistent token");
        return
            bytes(BASE_URI).length > 0
                ? string(
                    abi.encodePacked(
                        BASE_URI,
                        Strings.toString(_tokenId),
                        BASE_EXTENSION
                    )
                )
                : "";
    }

    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        override
        returns (address receiver, uint256 royaltyAmount)
    {
        require(_exists(tokenId), "nonexistent token");
        return (address(this), (salePrice * 500) / 10000);
    }
}

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":"BASE_EXTENSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BASE_URI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"COLLAB","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TXN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"internalType":"uint256","name":"quantity","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":[{"internalType":"uint256","name":"quantity","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":"string","name":"baseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"collab","type":"address"}],"name":"setCollab","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxFree","type":"uint256"}],"name":"setMaxFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerTxn","type":"uint256"}],"name":"setMaxPerTxn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"saleActive","type":"bool"}],"name":"setSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6000808055600755610100604052603660a0818152906200311a60c03980516200003291600a9160209091019062000690565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200006191600b9162000690565b506005600c556658d15e17628000600d556101f4600e55600f80546001600160a81b03191674b0aadc7eb7461a0ffdce35bb62044b376a802afa00179055348015620000ac57600080fd5b5060405180604001604052806008815260200167436c6f756469657360c01b81525060405180604001604052806008815260200167434c4f554449455360c01b815250606460008111620001575760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b60648201526084015b60405180910390fd5b82516200016c90600190602086019062000690565b5081516200018290600290602085019062000690565b506080525062000194905033620001ac565b6001600955620001a6336005620001fe565b62000883565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620002208282604051806020016040528060008152506200022460201b60201c565b5050565b6000546001600160a01b038416620002895760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016200014e565b62000295816000541190565b15620002e45760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016200014e565b608051831115620003435760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016200014e565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190620003a19087906200074c565b6001600160801b03168152602001858360200151620003c191906200074c565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015620005255760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4620004a7600088848862000530565b620005005760405162461bcd60e51b815260206004820152603360248201526000805160206200315083398151915260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b60648201526084016200014e565b816200050c816200077a565b92505080806200051c906200077a565b91505062000457565b506000555050505050565b600062000551846001600160a01b03166200068a60201b620015521760201c565b156200067e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906200058b90339089908890889060040162000798565b6020604051808303816000875af1925050508015620005c9575060408051601f3d908101601f19168201909252620005c69181019062000813565b60015b62000663573d808015620005fa576040519150601f19603f3d011682016040523d82523d6000602084013e620005ff565b606091505b5080516200065b5760405162461bcd60e51b815260206004820152603360248201526000805160206200315083398151915260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b60648201526084016200014e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905062000682565b5060015b949350505050565b3b151590565b8280546200069e9062000846565b90600052602060002090601f016020900481019282620006c257600085556200070d565b82601f10620006dd57805160ff19168380011785556200070d565b828001600101855582156200070d579182015b828111156200070d578251825591602001919060010190620006f0565b506200071b9291506200071f565b5090565b5b808211156200071b576000815560010162000720565b634e487b7160e01b600052601160045260246000fd5b60006001600160801b0382811684821680830382111562000771576200077162000736565b01949350505050565b600060001982141562000791576200079162000736565b5060010190565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b82811015620007e75785810182015185820160a001528101620007c9565b82811115620007fa57600060a084870101525b5050601f01601f19169190910160a00195945050505050565b6000602082840312156200082657600080fd5b81516001600160e01b0319811681146200083f57600080fd5b9392505050565b600181811c908216806200085b57607f821691505b602082108114156200087d57634e487b7160e01b600052602260045260246000fd5b50919050565b60805161286d620008ad60003960008181611a2901528181611a530152611f0c015261286d6000f3fe6080604052600436106102305760003560e01c80637e40eaf91161012e578063c87b56dd116100ab578063df3fdf001161006f578063df3fdf0014610666578063e985e9c51461067b578063ed6661c2146106c4578063f216ddfd146106da578063f2fde38b146106f457600080fd5b8063c87b56dd146105db578063d7224ba0146105fb578063d755bf9914610611578063da3ef23f14610631578063dbddb26a1461065157600080fd5b806395d89b41116100f257806395d89b4114610553578063a0712d6814610568578063a22cb4651461057b578063b6f3ce001461059b578063b88d4fde146105bb57600080fd5b80637e40eaf9146104c55780637f205a74146104ea578063853828b6146105005780638da5cb5b1461051557806391b7f5ed1461053357600080fd5b806332cb6b0c116101bc57806355f804b31161018057806355f804b3146104305780636352211e1461045057806370a0823114610470578063715018a6146104905780637c928fe9146104a557600080fd5b806332cb6b0c146103a4578063369b012d146103ba57806342842e0e146103da5780634f6ccce7146103fa57806351b96d921461041a57600080fd5b806318160ddd1161020357806318160ddd146102e65780631d2e5a3a1461030557806323b872dd146103255780632a55205a146103455780632f745c591461038457600080fd5b806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c578063095ea7b3146102c4575b600080fd5b34801561024157600080fd5b506102556102503660046121d0565b610714565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f61073f565b604051610261919061224c565b34801561029857600080fd5b506102ac6102a736600461225f565b6107d1565b6040516001600160a01b039091168152602001610261565b3480156102d057600080fd5b506102e46102df366004612294565b610861565b005b3480156102f257600080fd5b506000545b604051908152602001610261565b34801561031157600080fd5b506102e46103203660046122ce565b610979565b34801561033157600080fd5b506102e46103403660046122e9565b6109b6565b34801561035157600080fd5b50610365610360366004612325565b6109c1565b604080516001600160a01b039093168352602083019190915201610261565b34801561039057600080fd5b506102f761039f366004612294565b610a34565b3480156103b057600080fd5b506102f76107d081565b3480156103c657600080fd5b506102e46103d5366004612347565b610ba2565b3480156103e657600080fd5b506102e46103f53660046122e9565b610bf4565b34801561040657600080fd5b506102f761041536600461225f565b610c0f565b34801561042657600080fd5b506102f7600c5481565b34801561043c57600080fd5b506102e461044b3660046123ee565b610c71565b34801561045c57600080fd5b506102ac61046b36600461225f565b610cb2565b34801561047c57600080fd5b506102f761048b366004612347565b610cc4565b34801561049c57600080fd5b506102e4610d55565b3480156104b157600080fd5b506102e46104c036600461225f565b610d8b565b3480156104d157600080fd5b50600f546102ac9061010090046001600160a01b031681565b3480156104f657600080fd5b506102f7600d5481565b34801561050c57600080fd5b506102e4610f20565b34801561052157600080fd5b506008546001600160a01b03166102ac565b34801561053f57600080fd5b506102e461054e36600461225f565b610fb7565b34801561055f57600080fd5b5061027f610fe6565b6102e461057636600461225f565b610ff5565b34801561058757600080fd5b506102e4610596366004612437565b6111da565b3480156105a757600080fd5b506102e46105b636600461225f565b61129f565b3480156105c757600080fd5b506102e46105d636600461246a565b6112ce565b3480156105e757600080fd5b5061027f6105f636600461225f565b611307565b34801561060757600080fd5b506102f760075481565b34801561061d57600080fd5b506102e461062c36600461225f565b6113b3565b34801561063d57600080fd5b506102e461064c3660046123ee565b6113e2565b34801561065d57600080fd5b5061027f61141f565b34801561067257600080fd5b5061027f6114ad565b34801561068757600080fd5b506102556106963660046124e6565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106d057600080fd5b506102f7600e5481565b3480156106e657600080fd5b50600f546102559060ff1681565b34801561070057600080fd5b506102e461070f366004612347565b6114ba565b60006001600160e01b0319821663152a902d60e11b1480610739575061073982611558565b92915050565b60606001805461074e90612510565b80601f016020809104026020016040519081016040528092919081815260200182805461077a90612510565b80156107c75780601f1061079c576101008083540402835291602001916107c7565b820191906000526020600020905b8154815290600101906020018083116107aa57829003601f168201915b5050505050905090565b60006107de826000541190565b6108455760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061086c82610cb2565b9050806001600160a01b0316836001600160a01b031614156108db5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161083c565b336001600160a01b03821614806108f757506108f78133610696565b6109695760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161083c565b6109748383836115c3565b505050565b6008546001600160a01b031633146109a35760405162461bcd60e51b815260040161083c9061254b565b600f805460ff1916911515919091179055565b61097483838361161f565b6000806109cf846000541190565b610a0f5760405162461bcd60e51b81526020600482015260116024820152703737b732bc34b9ba32b73a103a37b5b2b760791b604482015260640161083c565b30612710610a1f856101f4612596565b610a2991906125cb565b915091509250929050565b6000610a3f83610cc4565b8210610a985760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161083c565b600080549080805b83811015610b42576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610af357805192505b876001600160a01b0316836001600160a01b03161415610b2f5786841415610b215750935061073992505050565b83610b2b816125df565b9450505b5080610b3a816125df565b915050610aa0565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161083c565b6008546001600160a01b03163314610bcc5760405162461bcd60e51b815260040161083c9061254b565b600f80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b610974838383604051806020016040528060008152506112ce565b600080548210610c6d5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161083c565b5090565b6008546001600160a01b03163314610c9b5760405162461bcd60e51b815260040161083c9061254b565b8051610cae90600a90602084019061212a565b5050565b6000610cbd826119a7565b5192915050565b60006001600160a01b038216610d305760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161083c565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b03163314610d7f5760405162461bcd60e51b815260040161083c9061254b565b610d896000611b51565b565b60026009541415610dde5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161083c565b6002600955600f5460ff16610e275760405162461bcd60e51b815260206004820152600f60248201526e73616c65206e6f742061637469766560881b604482015260640161083c565b600e546000541115610e6f5760405162461bcd60e51b8152602060048201526011602482015270333932b29036b4b73a1034b99037bb32b960791b604482015260640161083c565b600c54811115610eb45760405162461bcd60e51b815260206004820152601060248201526f696e76616c6964207175616e7469747960801b604482015260640161083c565b6107d081610ec160005490565b610ecb91906125fa565b1115610f0e5760405162461bcd60e51b815260206004820152601260248201527165786363656564206d617820737570706c7960701b604482015260640161083c565b610f183382611ba3565b506001600955565b6008546001600160a01b03163314610f4a5760405162461bcd60e51b815260040161083c9061254b565b600f54479061010090046001600160a01b0316331415610f7157610f6e3347611bbd565b50565b600f54610fa49061010090046001600160a01b0316612710610f9584611b58612596565b610f9f91906125cb565b611bbd565b610f6e33612710610f9584610bb8612596565b6008546001600160a01b03163314610fe15760405162461bcd60e51b815260040161083c9061254b565b600d55565b60606002805461074e90612510565b600260095414156110485760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161083c565b6002600955600f5460ff166110915760405162461bcd60e51b815260206004820152600f60248201526e73616c65206e6f742061637469766560881b604482015260640161083c565b6107d08161109e60005490565b6110a891906125fa565b11156110eb5760405162461bcd60e51b815260206004820152601260248201527165786363656564206d617820737570706c7960701b604482015260640161083c565b600c548111156111305760405162461bcd60e51b815260206004820152601060248201526f696e76616c6964207175616e7469747960801b604482015260640161083c565b600e546000541061118b573481600d5461114a9190612596565b111561118b5760405162461bcd60e51b815260206004820152601060248201526f0d2dce6eaccccd2c6d2cadce840cae8d60831b604482015260640161083c565b323314610f0e5760405162461bcd60e51b815260206004820152601a60248201527f63616e6e6f742075736520637573746f6d20636f6e7472616374000000000000604482015260640161083c565b6001600160a01b0382163314156112335760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161083c565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146112c95760405162461bcd60e51b815260040161083c9061254b565b600c55565b6112d984848461161f565b6112e584848484611c52565b6113015760405162461bcd60e51b815260040161083c90612612565b50505050565b6060611314826000541190565b6113545760405162461bcd60e51b81526020600482015260116024820152703737b732bc34b9ba32b73a103a37b5b2b760791b604482015260640161083c565b6000600a805461136390612510565b90501161137f5760405180602001604052806000815250610739565b600a61138a83611d51565b600b60405160200161139e939291906126ff565b60405160208183030381529060405292915050565b6008546001600160a01b031633146113dd5760405162461bcd60e51b815260040161083c9061254b565b600e55565b6008546001600160a01b0316331461140c5760405162461bcd60e51b815260040161083c9061254b565b8051610cae90600b90602084019061212a565b600a805461142c90612510565b80601f016020809104026020016040519081016040528092919081815260200182805461145890612510565b80156114a55780601f1061147a576101008083540402835291602001916114a5565b820191906000526020600020905b81548152906001019060200180831161148857829003601f168201915b505050505081565b600b805461142c90612510565b6008546001600160a01b031633146114e45760405162461bcd60e51b815260040161083c9061254b565b6001600160a01b0381166115495760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161083c565b610f6e81611b51565b3b151590565b60006001600160e01b031982166380ac58cd60e01b148061158957506001600160e01b03198216635b5e139f60e01b145b806115a457506001600160e01b0319821663780e9d6360e01b145b8061073957506301ffc9a760e01b6001600160e01b0319831614610739565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061162a826119a7565b80519091506000906001600160a01b0316336001600160a01b03161480611661575033611656846107d1565b6001600160a01b0316145b80611673575081516116739033610696565b9050806116dd5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161083c565b846001600160a01b031682600001516001600160a01b0316146117515760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161083c565b6001600160a01b0384166117b55760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161083c565b6117c560008484600001516115c3565b6001600160a01b03851660009081526004602052604081208054600192906117f79084906001600160801b0316612732565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926118439185911661275a565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556118cb8460016125fa565b6000818152600360205260409020549091506001600160a01b031661195d576118f5816000541190565b1561195d5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60408051808201909152600080825260208201526119c6826000541190565b611a255760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161083c565b60007f00000000000000000000000000000000000000000000000000000000000000008310611a8657611a787f000000000000000000000000000000000000000000000000000000000000000084612785565b611a839060016125fa565b90505b825b818110611af0576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611add57949350505050565b5080611ae88161279c565b915050611a88565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b606482015260840161083c565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610cae828260405180602001604052806000815250611e4f565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611c0a576040519150601f19603f3d011682016040523d82523d6000602084013e611c0f565b606091505b50509050806109745760405162461bcd60e51b815260206004820152600f60248201526e1d1c985b9cd9995c8819985a5b1959608a1b604482015260640161083c565b60006001600160a01b0384163b15611d4557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c969033908990889088906004016127b3565b6020604051808303816000875af1925050508015611cd1575060408051601f3d908101601f19168201909252611cce918101906127f0565b60015b611d2b573d808015611cff576040519150601f19603f3d011682016040523d82523d6000602084013e611d04565b606091505b508051611d235760405162461bcd60e51b815260040161083c90612612565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d49565b5060015b949350505050565b606081611d755750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d9f5780611d89816125df565b9150611d989050600a836125cb565b9150611d79565b60008167ffffffffffffffff811115611dba57611dba612362565b6040519080825280601f01601f191660200182016040528015611de4576020820181803683370190505b5090505b8415611d4957611df9600183612785565b9150611e06600a8661280d565b611e119060306125fa565b60f81b818381518110611e2657611e26612821565b60200101906001600160f81b031916908160001a905350611e48600a866125cb565b9450611de8565b6000546001600160a01b038416611eb25760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161083c565b611ebd816000541190565b15611f0a5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161083c565b7f0000000000000000000000000000000000000000000000000000000000000000831115611f855760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b606482015260840161083c565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611fe190879061275a565b6001600160801b03168152602001858360200151611fff919061275a565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b8581101561211f5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46120e36000888488611c52565b6120ff5760405162461bcd60e51b815260040161083c90612612565b81612109816125df565b9250508080612117906125df565b915050612096565b50600081905561199f565b82805461213690612510565b90600052602060002090601f016020900481019282612158576000855561219e565b82601f1061217157805160ff191683800117855561219e565b8280016001018555821561219e579182015b8281111561219e578251825591602001919060010190612183565b50610c6d9291505b80821115610c6d57600081556001016121a6565b6001600160e01b031981168114610f6e57600080fd5b6000602082840312156121e257600080fd5b81356121ed816121ba565b9392505050565b60005b8381101561220f5781810151838201526020016121f7565b838111156113015750506000910152565b600081518084526122388160208601602086016121f4565b601f01601f19169290920160200192915050565b6020815260006121ed6020830184612220565b60006020828403121561227157600080fd5b5035919050565b80356001600160a01b038116811461228f57600080fd5b919050565b600080604083850312156122a757600080fd5b6122b083612278565b946020939093013593505050565b8035801515811461228f57600080fd5b6000602082840312156122e057600080fd5b6121ed826122be565b6000806000606084860312156122fe57600080fd5b61230784612278565b925061231560208501612278565b9150604084013590509250925092565b6000806040838503121561233857600080fd5b50508035926020909101359150565b60006020828403121561235957600080fd5b6121ed82612278565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561239357612393612362565b604051601f8501601f19908116603f011681019082821181831017156123bb576123bb612362565b816040528093508581528686860111156123d457600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561240057600080fd5b813567ffffffffffffffff81111561241757600080fd5b8201601f8101841361242857600080fd5b611d4984823560208401612378565b6000806040838503121561244a57600080fd5b61245383612278565b9150612461602084016122be565b90509250929050565b6000806000806080858703121561248057600080fd5b61248985612278565b935061249760208601612278565b925060408501359150606085013567ffffffffffffffff8111156124ba57600080fd5b8501601f810187136124cb57600080fd5b6124da87823560208401612378565b91505092959194509250565b600080604083850312156124f957600080fd5b61250283612278565b915061246160208401612278565b600181811c9082168061252457607f821691505b6020821081141561254557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156125b0576125b0612580565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826125da576125da6125b5565b500490565b60006000198214156125f3576125f3612580565b5060010190565b6000821982111561260d5761260d612580565b500190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b8054600090600181811c908083168061267f57607f831692505b60208084108214156126a157634e487b7160e01b600052602260045260246000fd5b8180156126b557600181146126c6576126f3565b60ff198616895284890196506126f3565b60008881526020902060005b868110156126eb5781548b8201529085019083016126d2565b505084890196505b50505050505092915050565b600061270b8286612665565b845161271b8183602089016121f4565b61272781830186612665565b979650505050505050565b60006001600160801b038381169083168181101561275257612752612580565b039392505050565b60006001600160801b0380831681851680830382111561277c5761277c612580565b01949350505050565b60008282101561279757612797612580565b500390565b6000816127ab576127ab612580565b506000190190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127e690830184612220565b9695505050505050565b60006020828403121561280257600080fd5b81516121ed816121ba565b60008261281c5761281c6125b5565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212204d98ed73a23eb6cffc956c4fa38f2a289c5404f55befe7f4d46c8a22067f7b9c64736f6c634300080a0033697066733a2f2f516d513670466a4d696f794e59336876744243747575767333477475554a50535479744e433941623874675848442f455243373231413a207472616e7366657220746f206e6f6e2045524337323152

Deployed Bytecode

0x6080604052600436106102305760003560e01c80637e40eaf91161012e578063c87b56dd116100ab578063df3fdf001161006f578063df3fdf0014610666578063e985e9c51461067b578063ed6661c2146106c4578063f216ddfd146106da578063f2fde38b146106f457600080fd5b8063c87b56dd146105db578063d7224ba0146105fb578063d755bf9914610611578063da3ef23f14610631578063dbddb26a1461065157600080fd5b806395d89b41116100f257806395d89b4114610553578063a0712d6814610568578063a22cb4651461057b578063b6f3ce001461059b578063b88d4fde146105bb57600080fd5b80637e40eaf9146104c55780637f205a74146104ea578063853828b6146105005780638da5cb5b1461051557806391b7f5ed1461053357600080fd5b806332cb6b0c116101bc57806355f804b31161018057806355f804b3146104305780636352211e1461045057806370a0823114610470578063715018a6146104905780637c928fe9146104a557600080fd5b806332cb6b0c146103a4578063369b012d146103ba57806342842e0e146103da5780634f6ccce7146103fa57806351b96d921461041a57600080fd5b806318160ddd1161020357806318160ddd146102e65780631d2e5a3a1461030557806323b872dd146103255780632a55205a146103455780632f745c591461038457600080fd5b806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c578063095ea7b3146102c4575b600080fd5b34801561024157600080fd5b506102556102503660046121d0565b610714565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f61073f565b604051610261919061224c565b34801561029857600080fd5b506102ac6102a736600461225f565b6107d1565b6040516001600160a01b039091168152602001610261565b3480156102d057600080fd5b506102e46102df366004612294565b610861565b005b3480156102f257600080fd5b506000545b604051908152602001610261565b34801561031157600080fd5b506102e46103203660046122ce565b610979565b34801561033157600080fd5b506102e46103403660046122e9565b6109b6565b34801561035157600080fd5b50610365610360366004612325565b6109c1565b604080516001600160a01b039093168352602083019190915201610261565b34801561039057600080fd5b506102f761039f366004612294565b610a34565b3480156103b057600080fd5b506102f76107d081565b3480156103c657600080fd5b506102e46103d5366004612347565b610ba2565b3480156103e657600080fd5b506102e46103f53660046122e9565b610bf4565b34801561040657600080fd5b506102f761041536600461225f565b610c0f565b34801561042657600080fd5b506102f7600c5481565b34801561043c57600080fd5b506102e461044b3660046123ee565b610c71565b34801561045c57600080fd5b506102ac61046b36600461225f565b610cb2565b34801561047c57600080fd5b506102f761048b366004612347565b610cc4565b34801561049c57600080fd5b506102e4610d55565b3480156104b157600080fd5b506102e46104c036600461225f565b610d8b565b3480156104d157600080fd5b50600f546102ac9061010090046001600160a01b031681565b3480156104f657600080fd5b506102f7600d5481565b34801561050c57600080fd5b506102e4610f20565b34801561052157600080fd5b506008546001600160a01b03166102ac565b34801561053f57600080fd5b506102e461054e36600461225f565b610fb7565b34801561055f57600080fd5b5061027f610fe6565b6102e461057636600461225f565b610ff5565b34801561058757600080fd5b506102e4610596366004612437565b6111da565b3480156105a757600080fd5b506102e46105b636600461225f565b61129f565b3480156105c757600080fd5b506102e46105d636600461246a565b6112ce565b3480156105e757600080fd5b5061027f6105f636600461225f565b611307565b34801561060757600080fd5b506102f760075481565b34801561061d57600080fd5b506102e461062c36600461225f565b6113b3565b34801561063d57600080fd5b506102e461064c3660046123ee565b6113e2565b34801561065d57600080fd5b5061027f61141f565b34801561067257600080fd5b5061027f6114ad565b34801561068757600080fd5b506102556106963660046124e6565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156106d057600080fd5b506102f7600e5481565b3480156106e657600080fd5b50600f546102559060ff1681565b34801561070057600080fd5b506102e461070f366004612347565b6114ba565b60006001600160e01b0319821663152a902d60e11b1480610739575061073982611558565b92915050565b60606001805461074e90612510565b80601f016020809104026020016040519081016040528092919081815260200182805461077a90612510565b80156107c75780601f1061079c576101008083540402835291602001916107c7565b820191906000526020600020905b8154815290600101906020018083116107aa57829003601f168201915b5050505050905090565b60006107de826000541190565b6108455760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061086c82610cb2565b9050806001600160a01b0316836001600160a01b031614156108db5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161083c565b336001600160a01b03821614806108f757506108f78133610696565b6109695760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161083c565b6109748383836115c3565b505050565b6008546001600160a01b031633146109a35760405162461bcd60e51b815260040161083c9061254b565b600f805460ff1916911515919091179055565b61097483838361161f565b6000806109cf846000541190565b610a0f5760405162461bcd60e51b81526020600482015260116024820152703737b732bc34b9ba32b73a103a37b5b2b760791b604482015260640161083c565b30612710610a1f856101f4612596565b610a2991906125cb565b915091509250929050565b6000610a3f83610cc4565b8210610a985760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161083c565b600080549080805b83811015610b42576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610af357805192505b876001600160a01b0316836001600160a01b03161415610b2f5786841415610b215750935061073992505050565b83610b2b816125df565b9450505b5080610b3a816125df565b915050610aa0565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161083c565b6008546001600160a01b03163314610bcc5760405162461bcd60e51b815260040161083c9061254b565b600f80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b610974838383604051806020016040528060008152506112ce565b600080548210610c6d5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161083c565b5090565b6008546001600160a01b03163314610c9b5760405162461bcd60e51b815260040161083c9061254b565b8051610cae90600a90602084019061212a565b5050565b6000610cbd826119a7565b5192915050565b60006001600160a01b038216610d305760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161083c565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b03163314610d7f5760405162461bcd60e51b815260040161083c9061254b565b610d896000611b51565b565b60026009541415610dde5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161083c565b6002600955600f5460ff16610e275760405162461bcd60e51b815260206004820152600f60248201526e73616c65206e6f742061637469766560881b604482015260640161083c565b600e546000541115610e6f5760405162461bcd60e51b8152602060048201526011602482015270333932b29036b4b73a1034b99037bb32b960791b604482015260640161083c565b600c54811115610eb45760405162461bcd60e51b815260206004820152601060248201526f696e76616c6964207175616e7469747960801b604482015260640161083c565b6107d081610ec160005490565b610ecb91906125fa565b1115610f0e5760405162461bcd60e51b815260206004820152601260248201527165786363656564206d617820737570706c7960701b604482015260640161083c565b610f183382611ba3565b506001600955565b6008546001600160a01b03163314610f4a5760405162461bcd60e51b815260040161083c9061254b565b600f54479061010090046001600160a01b0316331415610f7157610f6e3347611bbd565b50565b600f54610fa49061010090046001600160a01b0316612710610f9584611b58612596565b610f9f91906125cb565b611bbd565b610f6e33612710610f9584610bb8612596565b6008546001600160a01b03163314610fe15760405162461bcd60e51b815260040161083c9061254b565b600d55565b60606002805461074e90612510565b600260095414156110485760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161083c565b6002600955600f5460ff166110915760405162461bcd60e51b815260206004820152600f60248201526e73616c65206e6f742061637469766560881b604482015260640161083c565b6107d08161109e60005490565b6110a891906125fa565b11156110eb5760405162461bcd60e51b815260206004820152601260248201527165786363656564206d617820737570706c7960701b604482015260640161083c565b600c548111156111305760405162461bcd60e51b815260206004820152601060248201526f696e76616c6964207175616e7469747960801b604482015260640161083c565b600e546000541061118b573481600d5461114a9190612596565b111561118b5760405162461bcd60e51b815260206004820152601060248201526f0d2dce6eaccccd2c6d2cadce840cae8d60831b604482015260640161083c565b323314610f0e5760405162461bcd60e51b815260206004820152601a60248201527f63616e6e6f742075736520637573746f6d20636f6e7472616374000000000000604482015260640161083c565b6001600160a01b0382163314156112335760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161083c565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146112c95760405162461bcd60e51b815260040161083c9061254b565b600c55565b6112d984848461161f565b6112e584848484611c52565b6113015760405162461bcd60e51b815260040161083c90612612565b50505050565b6060611314826000541190565b6113545760405162461bcd60e51b81526020600482015260116024820152703737b732bc34b9ba32b73a103a37b5b2b760791b604482015260640161083c565b6000600a805461136390612510565b90501161137f5760405180602001604052806000815250610739565b600a61138a83611d51565b600b60405160200161139e939291906126ff565b60405160208183030381529060405292915050565b6008546001600160a01b031633146113dd5760405162461bcd60e51b815260040161083c9061254b565b600e55565b6008546001600160a01b0316331461140c5760405162461bcd60e51b815260040161083c9061254b565b8051610cae90600b90602084019061212a565b600a805461142c90612510565b80601f016020809104026020016040519081016040528092919081815260200182805461145890612510565b80156114a55780601f1061147a576101008083540402835291602001916114a5565b820191906000526020600020905b81548152906001019060200180831161148857829003601f168201915b505050505081565b600b805461142c90612510565b6008546001600160a01b031633146114e45760405162461bcd60e51b815260040161083c9061254b565b6001600160a01b0381166115495760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161083c565b610f6e81611b51565b3b151590565b60006001600160e01b031982166380ac58cd60e01b148061158957506001600160e01b03198216635b5e139f60e01b145b806115a457506001600160e01b0319821663780e9d6360e01b145b8061073957506301ffc9a760e01b6001600160e01b0319831614610739565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061162a826119a7565b80519091506000906001600160a01b0316336001600160a01b03161480611661575033611656846107d1565b6001600160a01b0316145b80611673575081516116739033610696565b9050806116dd5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161083c565b846001600160a01b031682600001516001600160a01b0316146117515760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161083c565b6001600160a01b0384166117b55760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161083c565b6117c560008484600001516115c3565b6001600160a01b03851660009081526004602052604081208054600192906117f79084906001600160801b0316612732565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926118439185911661275a565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556118cb8460016125fa565b6000818152600360205260409020549091506001600160a01b031661195d576118f5816000541190565b1561195d5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60408051808201909152600080825260208201526119c6826000541190565b611a255760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161083c565b60007f00000000000000000000000000000000000000000000000000000000000000648310611a8657611a787f000000000000000000000000000000000000000000000000000000000000006484612785565b611a839060016125fa565b90505b825b818110611af0576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611add57949350505050565b5080611ae88161279c565b915050611a88565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b606482015260840161083c565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610cae828260405180602001604052806000815250611e4f565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611c0a576040519150601f19603f3d011682016040523d82523d6000602084013e611c0f565b606091505b50509050806109745760405162461bcd60e51b815260206004820152600f60248201526e1d1c985b9cd9995c8819985a5b1959608a1b604482015260640161083c565b60006001600160a01b0384163b15611d4557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c969033908990889088906004016127b3565b6020604051808303816000875af1925050508015611cd1575060408051601f3d908101601f19168201909252611cce918101906127f0565b60015b611d2b573d808015611cff576040519150601f19603f3d011682016040523d82523d6000602084013e611d04565b606091505b508051611d235760405162461bcd60e51b815260040161083c90612612565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d49565b5060015b949350505050565b606081611d755750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d9f5780611d89816125df565b9150611d989050600a836125cb565b9150611d79565b60008167ffffffffffffffff811115611dba57611dba612362565b6040519080825280601f01601f191660200182016040528015611de4576020820181803683370190505b5090505b8415611d4957611df9600183612785565b9150611e06600a8661280d565b611e119060306125fa565b60f81b818381518110611e2657611e26612821565b60200101906001600160f81b031916908160001a905350611e48600a866125cb565b9450611de8565b6000546001600160a01b038416611eb25760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161083c565b611ebd816000541190565b15611f0a5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161083c565b7f0000000000000000000000000000000000000000000000000000000000000064831115611f855760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b606482015260840161083c565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611fe190879061275a565b6001600160801b03168152602001858360200151611fff919061275a565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b8581101561211f5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46120e36000888488611c52565b6120ff5760405162461bcd60e51b815260040161083c90612612565b81612109816125df565b9250508080612117906125df565b915050612096565b50600081905561199f565b82805461213690612510565b90600052602060002090601f016020900481019282612158576000855561219e565b82601f1061217157805160ff191683800117855561219e565b8280016001018555821561219e579182015b8281111561219e578251825591602001919060010190612183565b50610c6d9291505b80821115610c6d57600081556001016121a6565b6001600160e01b031981168114610f6e57600080fd5b6000602082840312156121e257600080fd5b81356121ed816121ba565b9392505050565b60005b8381101561220f5781810151838201526020016121f7565b838111156113015750506000910152565b600081518084526122388160208601602086016121f4565b601f01601f19169290920160200192915050565b6020815260006121ed6020830184612220565b60006020828403121561227157600080fd5b5035919050565b80356001600160a01b038116811461228f57600080fd5b919050565b600080604083850312156122a757600080fd5b6122b083612278565b946020939093013593505050565b8035801515811461228f57600080fd5b6000602082840312156122e057600080fd5b6121ed826122be565b6000806000606084860312156122fe57600080fd5b61230784612278565b925061231560208501612278565b9150604084013590509250925092565b6000806040838503121561233857600080fd5b50508035926020909101359150565b60006020828403121561235957600080fd5b6121ed82612278565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561239357612393612362565b604051601f8501601f19908116603f011681019082821181831017156123bb576123bb612362565b816040528093508581528686860111156123d457600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561240057600080fd5b813567ffffffffffffffff81111561241757600080fd5b8201601f8101841361242857600080fd5b611d4984823560208401612378565b6000806040838503121561244a57600080fd5b61245383612278565b9150612461602084016122be565b90509250929050565b6000806000806080858703121561248057600080fd5b61248985612278565b935061249760208601612278565b925060408501359150606085013567ffffffffffffffff8111156124ba57600080fd5b8501601f810187136124cb57600080fd5b6124da87823560208401612378565b91505092959194509250565b600080604083850312156124f957600080fd5b61250283612278565b915061246160208401612278565b600181811c9082168061252457607f821691505b6020821081141561254557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156125b0576125b0612580565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826125da576125da6125b5565b500490565b60006000198214156125f3576125f3612580565b5060010190565b6000821982111561260d5761260d612580565b500190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b8054600090600181811c908083168061267f57607f831692505b60208084108214156126a157634e487b7160e01b600052602260045260246000fd5b8180156126b557600181146126c6576126f3565b60ff198616895284890196506126f3565b60008881526020902060005b868110156126eb5781548b8201529085019083016126d2565b505084890196505b50505050505092915050565b600061270b8286612665565b845161271b8183602089016121f4565b61272781830186612665565b979650505050505050565b60006001600160801b038381169083168181101561275257612752612580565b039392505050565b60006001600160801b0380831681851680830382111561277c5761277c612580565b01949350505050565b60008282101561279757612797612580565b500390565b6000816127ab576127ab612580565b506000190190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127e690830184612220565b9695505050505050565b60006020828403121561280257600080fd5b81516121ed816121ba565b60008261281c5761281c6125b5565b500690565b634e487b7160e01b600052603260045260246000fdfea26469706673582212204d98ed73a23eb6cffc956c4fa38f2a289c5404f55befe7f4d46c8a22067f7b9c64736f6c634300080a0033

Deployed Bytecode Sourcemap

42278:4032:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42899:292;;;;;;;;;;-1:-1:-1;42899:292:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;42899:292:0;;;;;;;;29412:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30937:204::-;;;;;;;;;;-1:-1:-1;30937:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;30937:204:0;1528: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;;;2319:25:1;;;2307:2;2292:18;26250:94:0;2173:177:1;44618:96:0;;;;;;;;;;-1:-1:-1;44618:96:0;;;;;:::i;:::-;;:::i;31787:142::-;;;;;;;;;;-1:-1:-1;31787:142:0;;;;;:::i;:::-;;:::i;46011:296::-;;;;;;;;;;-1:-1:-1;46011:296:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3483:32:1;;;3465:51;;3547:2;3532:18;;3525:34;;;;3438:18;46011:296:0;3291:274:1;26878:744:0;;;;;;;;;;-1:-1:-1;26878:744:0;;;;;:::i;:::-;;:::i;42554:41::-;;;;;;;;;;;;42591:4;42554:41;;44214:88;;;;;;;;;;-1:-1:-1;44214:88:0;;;;;:::i;:::-;;:::i;31992:157::-;;;;;;;;;;-1:-1:-1;31992:157:0;;;;;:::i;:::-;;:::i;26413:177::-;;;;;;;;;;-1:-1:-1;26413:177:0;;;;;:::i;:::-;;:::i;42517:30::-;;;;;;;;;;;;;;;;44722:99;;;;;;;;;;-1:-1:-1;44722:99:0;;;;;:::i;:::-;;:::i;29235:118::-;;;;;;;;;;-1:-1:-1;29235:118:0;;;;;:::i;:::-;;:::i;28112:211::-;;;;;;;;;;-1:-1:-1;28112:211:0;;;;;:::i;:::-;;:::i;41545:94::-;;;;;;;;;;;;;:::i;43839:367::-;;;;;;;;;;-1:-1:-1;43839:367:0;;;;;:::i;:::-;;:::i;42722:66::-;;;;;;;;;;-1:-1:-1;42722:66:0;;;;;;;-1:-1:-1;;;;;42722:66:0;;;42602:39;;;;;;;;;;;;;;;;44960:357;;;;;;;;;;;;;:::i;40894:87::-;;;;;;;;;;-1:-1:-1;40967:6:0;;-1:-1:-1;;;;;40967:6:0;40894:87;;44521:89;;;;;;;;;;-1:-1:-1;44521:89:0;;;;;:::i;:::-;;:::i;29567:98::-;;;;;;;;;;;;;:::i;43259:511::-;;;;;;:::i;:::-;;:::i;31205:274::-;;;;;;;;;;-1:-1:-1;31205:274:0;;;;;:::i;:::-;;:::i;44411:102::-;;;;;;;;;;-1:-1:-1;44411:102:0;;;;;:::i;:::-;;:::i;32212:311::-;;;;;;;;;;-1:-1:-1;32212:311:0;;;;;:::i;:::-;;:::i;45500:503::-;;;;;;;;;;-1:-1:-1;45500:503:0;;;;;:::i;:::-;;:::i;36543:43::-;;;;;;;;;;;;;;;;44310:93;;;;;;;;;;-1:-1:-1;44310:93:0;;;;;:::i;:::-;;:::i;44829:123::-;;;;;;;;;;-1:-1:-1;44829:123:0;;;;;:::i;:::-;;:::i;42384:81::-;;;;;;;;;;;;;:::i;42472:38::-;;;;;;;;;;;;;:::i;31542:186::-;;;;;;;;;;-1:-1:-1;31542:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;31687:25:0;;;31664:4;31687:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31542:186;42648:29;;;;;;;;;;;;;;;;42684:31;;;;;;;;;;-1:-1:-1;42684:31:0;;;;;;;;41794:229;;;;;;;;;;-1:-1:-1;41794:229:0;;;;;:::i;:::-;;:::i;42899:292::-;43047:4;-1:-1:-1;;;;;;43089:41:0;;-1:-1:-1;;;43089:41:0;;:94;;;43147:36;43171:11;43147:23;:36::i;:::-;43069:114;42899:292;-1:-1:-1;;42899: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;;6769:2:1;31021:74:0;;;6751:21:1;6808:2;6788:18;;;6781:30;6847:34;6827:18;;;6820:62;-1:-1:-1;;;6898:18:1;;;6891:43;6951: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;;7183:2:1;30616:58:0;;;7165:21:1;7222:2;7202:18;;;7195:30;7261:34;7241:18;;;7234:62;-1:-1:-1;;;7312:18:1;;;7305:32;7354:19;;30616:58:0;6981:398:1;30616:58:0;24158:10;-1:-1:-1;;;;;30699:21:0;;;;:62;;-1:-1:-1;30724:37:0;30741:5;24158:10;31542:186;:::i;30724:37::-;30683:153;;;;-1:-1:-1;;;30683:153:0;;7586:2:1;30683:153:0;;;7568:21:1;7625:2;7605:18;;;7598:30;7664:34;7644:18;;;7637:62;7735:27;7715:18;;;7708:55;7780:19;;30683:153:0;7384:421:1;30683:153:0;30845:28;30854:2;30858:7;30867:5;30845:8;:28::i;:::-;30562:317;30500:379;;:::o;44618:96::-;40967:6;;-1:-1:-1;;;;;40967:6:0;24158:10;41114:23;41106:68;;;;-1:-1:-1;;;41106:68:0;;;;;;;:::i;:::-;44682:11:::1;:24:::0;;-1:-1:-1;;44682:24:0::1;::::0;::::1;;::::0;;;::::1;::::0;;44618:96::o;31787:142::-;31895:28;31905:4;31911:2;31915:7;31895:9;:28::i;46011:296::-;46136:16;46154:21;46201:16;46209:7;32819:4;32849:12;-1:-1:-1;32839:22:0;32762:105;46201:16;46193:46;;;;-1:-1:-1;;;46193:46:0;;8373:2:1;46193:46:0;;;8355:21:1;8412:2;8392:18;;;8385:30;-1:-1:-1;;;8431:18:1;;;8424:47;8488:18;;46193:46:0;8171:341:1;46193:46:0;46266:4;46293:5;46274:15;:9;46286:3;46274:15;:::i;:::-;46273:25;;;;:::i;:::-;46250:49;;;;46011:296;;;;;:::o;26878:744::-;26987:7;27022:16;27032:5;27022:9;:16::i;:::-;27014:5;:24;27006:71;;;;-1:-1:-1;;;27006:71:0;;9281:2:1;27006:71:0;;;9263:21:1;9320:2;9300:18;;;9293:30;9359:34;9339:18;;;9332:62;-1:-1:-1;;;9410:18:1;;;9403:32;9452:19;;27006:71:0;9079: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;;9824:2:1;27560:56:0;;;9806:21:1;9863:2;9843:18;;;9836:30;9902:34;9882:18;;;9875:62;-1:-1:-1;;;9953:18:1;;;9946:44;10007:19;;27560:56:0;9622:410:1;44214:88:0;40967:6;;-1:-1:-1;;;;;40967:6:0;24158:10;41114:23;41106:68;;;;-1:-1:-1;;;41106:68:0;;;;;;;:::i;:::-;44279:6:::1;:15:::0;;-1:-1:-1;;;;;44279:15:0;;::::1;;;-1:-1:-1::0;;;;;;44279:15:0;;::::1;::::0;;;::::1;::::0;;44214:88::o;31992:157::-;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;;10239:2:1;26496:69:0;;;10221:21:1;10278:2;10258:18;;;10251:30;10317:34;10297:18;;;10290:62;-1:-1:-1;;;10368:18:1;;;10361:33;10411:19;;26496:69:0;10037:399:1;26496:69:0;-1:-1:-1;26579:5:0;26413:177::o;44722:99::-;40967:6;;-1:-1:-1;;;;;40967:6:0;24158:10;41114:23;41106:68;;;;-1:-1:-1;;;41106:68:0;;;;;;;:::i;:::-;44795:18;;::::1;::::0;:8:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;44722:99:::0;:::o;29235:118::-;29299:7;29322:20;29334:7;29322:11;:20::i;:::-;:25;;29235:118;-1:-1:-1;;29235:118:0:o;28112:211::-;28176:7;-1:-1:-1;;;;;28200:19:0;;28192:75;;;;-1:-1:-1;;;28192:75:0;;10643:2:1;28192:75:0;;;10625:21:1;10682:2;10662:18;;;10655:30;10721:34;10701:18;;;10694:62;-1:-1:-1;;;10772:18:1;;;10765:41;10823:19;;28192:75:0;10441: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;43839:367::-;1812:1;2410:7;;:19;;2402:63;;;;-1:-1:-1;;;2402:63:0;;11055:2:1;2402:63:0;;;11037:21:1;11094:2;11074:18;;;11067:30;11133:33;11113:18;;;11106:61;11184:18;;2402:63:0;10853:355:1;2402:63:0;1812:1;2543:7;:18;43916:11:::1;::::0;::::1;;43908:39;;;::::0;-1:-1:-1;;;43908:39:0;;11415:2:1;43908:39:0::1;::::0;::::1;11397:21:1::0;11454:2;11434:18;;;11427:30;-1:-1:-1;;;11473:18:1;;;11466:45;11528:18;;43908:39:0::1;11213:339:1::0;43908:39:0::1;43983:8;::::0;26303:7;26326:12;43966:25:::1;;43958:55;;;::::0;-1:-1:-1;;;43958:55:0;;11759:2:1;43958:55:0::1;::::0;::::1;11741:21:1::0;11798:2;11778:18;;;11771:30;-1:-1:-1;;;11817:18:1;;;11810:47;11874:18;;43958:55:0::1;11557:341:1::0;43958:55:0::1;44044:11;;44032:8;:23;;44024:52;;;::::0;-1:-1:-1;;;44024:52:0;;12105:2:1;44024:52:0::1;::::0;::::1;12087:21:1::0;12144:2;12124:18;;;12117:30;-1:-1:-1;;;12163:18:1;;;12156:46;12219:18;;44024:52:0::1;11903:340:1::0;44024:52:0::1;42591:4;44111:8;44095:13;26303:7:::0;26326:12;;26250:94;44095:13:::1;:24;;;;:::i;:::-;:38;;44087:69;;;::::0;-1:-1:-1;;;44087:69:0;;12583:2:1;44087:69:0::1;::::0;::::1;12565:21:1::0;12622:2;12602:18;;;12595:30;-1:-1:-1;;;12641:18:1;;;12634:48;12699:18;;44087:69:0::1;12381:342:1::0;44087:69:0::1;44167:31;44177:10;44189:8;44167:9;:31::i;:::-;-1:-1:-1::0;1768:1:0;2722:7;:22;43839:367::o;44960:357::-;40967:6;;-1:-1:-1;;;;;40967:6:0;24158:10;41114:23;41106:68;;;;-1:-1:-1;;;41106:68:0;;;;;;;:::i;:::-;45065:6:::1;::::0;45029:21:::1;::::0;45065:6:::1;::::0;::::1;-1:-1:-1::0;;;;;45065:6:0::1;45075:10;45065:20;45061:249;;;45102:44;45112:10;45124:21;45102:9;:44::i;:::-;45000:317;44960:357::o:0;45061:249::-:1;45189:6;::::0;45179:43:::1;::::0;45189:6:::1;::::0;::::1;-1:-1:-1::0;;;;;45189:6:0::1;45216:5;45198:14;:7:::0;45208:4:::1;45198:14;:::i;:::-;45197:24;;;;:::i;:::-;45179:9;:43::i;:::-;45244:47;45254:10;45285:5;45267:14;:7:::0;45277:4:::1;45267:14;:::i;44521:89::-:0;40967:6;;-1:-1:-1;;;;;40967:6:0;24158:10;41114:23;41106:68;;;;-1:-1:-1;;;41106:68:0;;;;;;;:::i;:::-;44584:10:::1;:18:::0;44521:89::o;29567:98::-;29623:13;29652:7;29645:14;;;;;:::i;43259:511::-;1812:1;2410:7;;:19;;2402:63;;;;-1:-1:-1;;;2402:63:0;;11055:2:1;2402:63:0;;;11037:21:1;11094:2;11074:18;;;11067:30;11133:33;11113:18;;;11106:61;11184:18;;2402:63:0;10853:355:1;2402:63:0;1812:1;2543:7;:18;43340:11:::1;::::0;::::1;;43332:39;;;::::0;-1:-1:-1;;;43332:39:0;;11415:2:1;43332:39:0::1;::::0;::::1;11397:21:1::0;11454:2;11434:18;;;11427:30;-1:-1:-1;;;11473:18:1;;;11466:45;11528:18;;43332:39:0::1;11213:339:1::0;43332:39:0::1;42591:4;43406:8;43390:13;26303:7:::0;26326:12;;26250:94;43390:13:::1;:24;;;;:::i;:::-;:38;;43382:69;;;::::0;-1:-1:-1;;;43382:69:0;;12583:2:1;43382:69:0::1;::::0;::::1;12565:21:1::0;12622:2;12602:18;;;12595:30;-1:-1:-1;;;12641:18:1;;;12634:48;12699:18;;43382:69:0::1;12381:342:1::0;43382:69:0::1;43482:11;;43470:8;:23;;43462:52;;;::::0;-1:-1:-1;;;43462:52:0;;12105:2:1;43462:52:0::1;::::0;::::1;12087:21:1::0;12144:2;12124:18;;;12117:30;-1:-1:-1;;;12163:18:1;;;12156:46;12219:18;;43462:52:0::1;11903:340:1::0;43462:52:0::1;43546:8;::::0;26303:7;26326:12;43529:25:::1;43525:123;;43606:9;43593:8;43580:10;;:21;;;;:::i;:::-;43579:36;;43571:65;;;::::0;-1:-1:-1;;;43571:65:0;;12930:2:1;43571:65:0::1;::::0;::::1;12912:21:1::0;12969:2;12949:18;;;12942:30;-1:-1:-1;;;12988:18:1;;;12981:46;13044:18;;43571:65:0::1;12728:340:1::0;43571:65:0::1;43666:9;43679:10;43666:23;43658:62;;;::::0;-1:-1:-1;;;43658:62:0;;13275:2:1;43658:62:0::1;::::0;::::1;13257:21:1::0;13314:2;13294:18;;;13287:30;13353:28;13333:18;;;13326:56;13399:18;;43658:62:0::1;13073:350:1::0;31205:274:0;-1:-1:-1;;;;;31296:24:0;;24158:10;31296:24;;31288:63;;;;-1:-1:-1;;;31288:63:0;;13630:2:1;31288:63:0;;;13612:21:1;13669:2;13649:18;;;13642:30;13708:28;13688:18;;;13681:56;13754:18;;31288:63:0;13428: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;44411:102::-;40967:6;;-1:-1:-1;;;;;40967:6:0;24158:10;41114:23;41106:68;;;;-1:-1:-1;;;41106:68:0;;;;;;;:::i;:::-;44482:11:::1;:23:::0;44411:102::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;45500:503::-;45602:13;45641:17;45649:8;32819:4;32849:12;-1:-1:-1;32839:22:0;32762:105;45641:17;45633:47;;;;-1:-1:-1;;;45633:47:0;;8373:2:1;45633:47:0;;;8355:21:1;8412:2;8392:18;;;8385:30;-1:-1:-1;;;8431:18:1;;;8424:47;8488:18;;45633:47:0;8171:341:1;45633:47:0;45736:1;45717:8;45711:22;;;;;:::i;:::-;;;:26;:284;;;;;;;;;;;;;;;;;45829:8;45864:26;45881:8;45864:16;:26::i;:::-;45917:14;45786:168;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45691:304;45500:503;-1:-1:-1;;45500:503:0:o;44310:93::-;40967:6;;-1:-1:-1;;;;;40967:6:0;24158:10;41114:23;41106:68;;;;-1:-1:-1;;;41106:68:0;;;;;;;:::i;:::-;44377:8:::1;:18:::0;44310:93::o;44829:123::-;40967:6;;-1:-1:-1;;;;;40967:6:0;24158:10;41114:23;41106:68;;;;-1:-1:-1;;;41106:68:0;;;;;;;:::i;:::-;44914:30;;::::1;::::0;:14:::1;::::0;:30:::1;::::0;::::1;::::0;::::1;:::i;42384:81::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42472:38::-;;;;;;;:::i;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;;15970:2:1;41875:110:0::1;::::0;::::1;15952:21:1::0;16009:2;15989:18;;;15982:30;16048:34;16028:18;;;16021:62;-1:-1:-1;;;16099:18:1;;;16092:36;16145:19;;41875:110:0::1;15768:402:1::0;41875:110:0::1;41996:19;42006:8;41996:9;:19::i;3493:387::-:0;3816:20;3864:8;;;3493: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;;;;;;;;;;14781:40:0;;;28014:36;14622: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;31542:186;:::i;35012:50::-;34894:169;;35088:17;35072:101;;;;-1:-1:-1;;;35072:101:0;;16377:2:1;35072:101:0;;;16359:21:1;16416:2;16396:18;;;16389:30;16455:34;16435:18;;;16428:62;-1:-1:-1;;;16506:18:1;;;16499:48;16564:19;;35072:101:0;16175: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;;16796:2:1;35182:98:0;;;16778:21:1;16835:2;16815:18;;;16808:30;16874:34;16854:18;;;16847:62;-1:-1:-1;;;16925:18:1;;;16918:36;16971:19;;35182:98:0;16594:402:1;35182:98:0;-1:-1:-1;;;;;35295:16:0;;35287:66;;;;-1:-1:-1;;;35287:66:0;;17203:2:1;35287:66:0;;;17185:21:1;17242:2;17222:18;;;17215:30;17281:34;17261:18;;;17254:62;-1:-1:-1;;;17332:18:1;;;17325:35;17377:19;;35287:66:0;17001: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;;18118:2:1;28684:71:0;;;18100:21:1;18157:2;18137:18;;;18130:30;18196:34;18176:18;;;18169:62;-1:-1:-1;;;18247:18:1;;;18240:40;18297:19;;28684:71:0;17916: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;;18800:2:1;29118:57:0;;;18782:21:1;18839:2;18819:18;;;18812:30;18878:34;18858:18;;;18851:62;-1:-1:-1;;;18929:18:1;;;18922:45;18984:19;;29118:57:0;18598: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;45325:167::-;45393:12;45411:5;-1:-1:-1;;;;;45411:10:0;45429:4;45411:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45392:46;;;45457:7;45449:35;;;;-1:-1:-1;;;45449:35:0;;19426:2:1;45449:35:0;;;19408:21:1;19465:2;19445:18;;;19438:30;-1:-1:-1;;;19484:18:1;;;19477:45;19539:18;;45449:35:0;19224:339:1;38076:690:0;38213:4;-1:-1:-1;;;;;38230:13:0;;3816:20;3864: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;38226:535;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;;20767:2:1;33373:62:0;;;20749:21:1;20806:2;20786:18;;;20779:30;20845:34;20825:18;;;20818:62;-1:-1:-1;;;20896:18:1;;;20889:31;20937:19;;33373:62:0;20565: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;;21169:2:1;33563:64:0;;;21151:21:1;21208:2;21188:18;;;21181:30;21247:31;21227:18;;;21220:59;21296:18;;33563:64:0;20967:353:1;33563:64:0;33654:12;33642:8;:24;;33634:71;;;;-1:-1:-1;;;33634:71:0;;21527:2:1;33634:71:0;;;21509:21:1;21566:2;21546:18;;;21539:30;21605:34;21585:18;;;21578:62;-1:-1:-1;;;21656:18:1;;;21649:32;21698:19;;33634:71:0;21325: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;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:160::-;2420:20;;2476:13;;2469:21;2459:32;;2449:60;;2505:1;2502;2495:12;2520:180;2576:6;2629:2;2617:9;2608:7;2604:23;2600:32;2597:52;;;2645:1;2642;2635:12;2597:52;2668:26;2684:9;2668:26;:::i;2705:328::-;2782:6;2790;2798;2851:2;2839:9;2830:7;2826:23;2822:32;2819:52;;;2867:1;2864;2857:12;2819:52;2890:29;2909:9;2890:29;:::i;:::-;2880:39;;2938:38;2972:2;2961:9;2957:18;2938:38;:::i;:::-;2928:48;;3023:2;3012:9;3008:18;2995:32;2985:42;;2705:328;;;;;:::o;3038:248::-;3106:6;3114;3167:2;3155:9;3146:7;3142:23;3138:32;3135:52;;;3183:1;3180;3173:12;3135:52;-1:-1:-1;;3206:23:1;;;3276:2;3261:18;;;3248:32;;-1:-1:-1;3038:248:1:o;3570:186::-;3629:6;3682:2;3670:9;3661:7;3657:23;3653:32;3650:52;;;3698:1;3695;3688:12;3650:52;3721:29;3740:9;3721:29;:::i;3761:127::-;3822:10;3817:3;3813:20;3810:1;3803:31;3853:4;3850:1;3843:15;3877:4;3874:1;3867:15;3893:632;3958:5;3988:18;4029:2;4021:6;4018:14;4015:40;;;4035:18;;:::i;:::-;4110:2;4104:9;4078:2;4164:15;;-1:-1:-1;;4160:24:1;;;4186:2;4156:33;4152:42;4140:55;;;4210:18;;;4230:22;;;4207:46;4204:72;;;4256:18;;:::i;:::-;4296:10;4292:2;4285:22;4325:6;4316:15;;4355:6;4347;4340:22;4395:3;4386:6;4381:3;4377:16;4374:25;4371:45;;;4412:1;4409;4402:12;4371:45;4462:6;4457:3;4450:4;4442:6;4438:17;4425:44;4517:1;4510:4;4501:6;4493;4489:19;4485:30;4478:41;;;;3893:632;;;;;:::o;4530:451::-;4599:6;4652:2;4640:9;4631:7;4627:23;4623:32;4620:52;;;4668:1;4665;4658:12;4620:52;4708:9;4695:23;4741:18;4733:6;4730:30;4727:50;;;4773:1;4770;4763:12;4727:50;4796:22;;4849:4;4841:13;;4837:27;-1:-1:-1;4827:55:1;;4878:1;4875;4868:12;4827:55;4901:74;4967:7;4962:2;4949:16;4944:2;4940;4936:11;4901:74;:::i;4986:254::-;5051:6;5059;5112:2;5100:9;5091:7;5087:23;5083:32;5080:52;;;5128:1;5125;5118:12;5080:52;5151:29;5170:9;5151:29;:::i;:::-;5141:39;;5199:35;5230:2;5219:9;5215:18;5199:35;:::i;:::-;5189:45;;4986:254;;;;;:::o;5245:667::-;5340:6;5348;5356;5364;5417:3;5405:9;5396:7;5392:23;5388:33;5385:53;;;5434:1;5431;5424:12;5385:53;5457:29;5476:9;5457:29;:::i;:::-;5447:39;;5505:38;5539:2;5528:9;5524:18;5505:38;:::i;:::-;5495:48;;5590:2;5579:9;5575:18;5562:32;5552:42;;5645:2;5634:9;5630:18;5617:32;5672:18;5664:6;5661:30;5658:50;;;5704:1;5701;5694:12;5658:50;5727:22;;5780:4;5772:13;;5768:27;-1:-1:-1;5758:55:1;;5809:1;5806;5799:12;5758:55;5832:74;5898:7;5893:2;5880:16;5875:2;5871;5867:11;5832:74;:::i;:::-;5822:84;;;5245:667;;;;;;;:::o;5917:260::-;5985:6;5993;6046:2;6034:9;6025:7;6021:23;6017:32;6014:52;;;6062:1;6059;6052:12;6014:52;6085:29;6104:9;6085:29;:::i;:::-;6075:39;;6133:38;6167:2;6156:9;6152:18;6133:38;:::i;6182:380::-;6261:1;6257:12;;;;6304;;;6325:61;;6379:4;6371:6;6367:17;6357:27;;6325:61;6432:2;6424:6;6421:14;6401:18;6398:38;6395:161;;;6478:10;6473:3;6469:20;6466:1;6459:31;6513:4;6510:1;6503:15;6541:4;6538:1;6531:15;6395:161;;6182:380;;;:::o;7810:356::-;8012:2;7994:21;;;8031:18;;;8024:30;8090:34;8085:2;8070:18;;8063:62;8157:2;8142:18;;7810:356::o;8517:127::-;8578:10;8573:3;8569:20;8566:1;8559:31;8609:4;8606:1;8599:15;8633:4;8630:1;8623:15;8649:168;8689:7;8755:1;8751;8747:6;8743:14;8740:1;8737:21;8732:1;8725:9;8718:17;8714:45;8711:71;;;8762:18;;:::i;:::-;-1:-1:-1;8802:9:1;;8649:168::o;8822:127::-;8883:10;8878:3;8874:20;8871:1;8864:31;8914:4;8911:1;8904:15;8938:4;8935:1;8928:15;8954:120;8994:1;9020;9010:35;;9025:18;;:::i;:::-;-1:-1:-1;9059:9:1;;8954:120::o;9482:135::-;9521:3;-1:-1:-1;;9542:17:1;;9539:43;;;9562:18;;:::i;:::-;-1:-1:-1;9609:1:1;9598:13;;9482:135::o;12248:128::-;12288:3;12319:1;12315:6;12312:1;12309:13;12306:39;;;12325:18;;:::i;:::-;-1:-1:-1;12361:9:1;;12248:128::o;13783:415::-;13985:2;13967:21;;;14024:2;14004:18;;;13997:30;14063:34;14058:2;14043:18;;14036:62;-1:-1:-1;;;14129:2:1;14114:18;;14107:49;14188:3;14173:19;;13783:415::o;14329:973::-;14414:12;;14379:3;;14469:1;14489:18;;;;14542;;;;14569:61;;14623:4;14615:6;14611:17;14601:27;;14569:61;14649:2;14697;14689:6;14686:14;14666:18;14663:38;14660:161;;;14743:10;14738:3;14734:20;14731:1;14724:31;14778:4;14775:1;14768:15;14806:4;14803:1;14796:15;14660:161;14837:18;14864:104;;;;14982:1;14977:319;;;;14830:466;;14864:104;-1:-1:-1;;14897:24:1;;14885:37;;14942:16;;;;-1:-1:-1;14864:104:1;;14977:319;14276:1;14269:14;;;14313:4;14300:18;;15071:1;15085:165;15099:6;15096:1;15093:13;15085:165;;;15177:14;;15164:11;;;15157:35;15220:16;;;;15114:10;;15085:165;;;15089:3;;15279:6;15274:3;15270:16;15263:23;;14830:466;;;;;;;14329:973;;;;:::o;15307:456::-;15528:3;15556:38;15590:3;15582:6;15556:38;:::i;:::-;15623:6;15617:13;15639:52;15684:6;15680:2;15673:4;15665:6;15661:17;15639:52;:::i;:::-;15707:50;15749:6;15745:2;15741:15;15733:6;15707:50;:::i;:::-;15700:57;15307:456;-1:-1:-1;;;;;;;15307:456:1:o;17407:246::-;17447:4;-1:-1:-1;;;;;17560:10:1;;;;17530;;17582:12;;;17579:38;;;17597:18;;:::i;:::-;17634:13;;17407:246;-1:-1:-1;;;17407:246:1:o;17658:253::-;17698:3;-1:-1:-1;;;;;17787:2:1;17784:1;17780:10;17817:2;17814:1;17810:10;17848:3;17844:2;17840:12;17835:3;17832:21;17829:47;;;17856:18;;:::i;:::-;17892:13;;17658:253;-1:-1:-1;;;;17658:253:1:o;18327:125::-;18367:4;18395:1;18392;18389:8;18386:34;;;18400:18;;:::i;:::-;-1:-1:-1;18437:9:1;;18327:125::o;18457:136::-;18496:3;18524:5;18514:39;;18533:18;;:::i;:::-;-1:-1:-1;;;18569:18:1;;18457:136::o;19568:489::-;-1:-1:-1;;;;;19837:15:1;;;19819:34;;19889:15;;19884:2;19869:18;;19862:43;19936:2;19921:18;;19914:34;;;19984:3;19979:2;19964:18;;19957:31;;;19762:4;;20005:46;;20031:19;;20023:6;20005:46;:::i;:::-;19997:54;19568:489;-1:-1:-1;;;;;;19568:489:1:o;20062:249::-;20131:6;20184:2;20172:9;20163:7;20159:23;20155:32;20152:52;;;20200:1;20197;20190:12;20152:52;20232:9;20226:16;20251:30;20275:5;20251:30;:::i;20316:112::-;20348:1;20374;20364:35;;20379:18;;:::i;:::-;-1:-1:-1;20413:9:1;;20316:112::o;20433:127::-;20494:10;20489:3;20485:20;20482:1;20475:31;20525:4;20522:1;20515:15;20549:4;20546:1;20539:15

Swarm Source

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