ETH Price: $3,252.61 (+3.54%)
Gas: 3 Gwei

Token

Space Pals (PALS)
 

Overview

Max Total Supply

1,491 PALS

Holders

688

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
tr33climber.eth
Balance
2 PALS
0xefd97f824a0b4658e31ecbfdd9b4d5d78c7a84f2
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:
SpacePals

Compiler Version
v0.8.7+commit.e28d00a7

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

// File: ERC721A.sol



pragma solidity ^0.8.0;









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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

// File: SpacePals.sol



pragma solidity ^0.8.0;






// 1FF16B3BACDB1B066433946DF5E8A49F
contract SpacePals is Ownable, ERC721A, ReentrancyGuard {
    uint256 public constant PRICE = 0.055 ether;
    uint256 public constant MAX_PALS_PURCHASE = 10;
    uint256 public constant MAX_PALS = 6896;
    uint256 public constant MAX_BATCH_SIZE = 10;
    address private constant PALS_TEAM = 0x9A4d2B0AA37FF77dBCf8281bcE1Ba2518f5386E1;

    bool public isPresaleLive = false;
    bool public isPublicLive = false;

    bytes32 public merkleRoot;
    mapping(address => uint256) public presaleAddressMintCount;

    string private _baseTokenURI;

    constructor() ERC721A("Space Pals", "PALS", MAX_BATCH_SIZE, MAX_PALS) {
    }

    modifier mintGuard(uint256 tokenCount) {
        require(msg.sender == tx.origin, "No cheating");
        require(PRICE * tokenCount <= msg.value, "Wrong ether value");
        require(totalSupply() + tokenCount <= MAX_PALS, "Not enough supply");
        require(tokenCount <= MAX_PALS_PURCHASE, "Exceeds token txn limit ");
        _;
    }

    function reservePALS(uint256 amount) external onlyOwner {
        require(totalSupply() + amount <= MAX_PALS, "Not enough supply");
        require(amount % MAX_BATCH_SIZE == 0);

        uint256 chunks = amount / MAX_BATCH_SIZE;
        for (uint256 i = 0; i < chunks; i++) {
            _safeMint(msg.sender, MAX_BATCH_SIZE);
        }
    }

    function mint(uint256 amount) external payable mintGuard(amount) {
        require(isPublicLive, "Sale not live");

        _safeMint(msg.sender, amount);
    }

    function mintPresale(bytes32[] calldata proof, uint256 amount) external payable mintGuard(amount) {
        require(isPresaleLive, "Presale not live");
        require(MerkleProof.verify(proof, merkleRoot, keccak256(abi.encodePacked(msg.sender))), "Not eligible");
        require(presaleAddressMintCount[msg.sender] + amount <= MAX_PALS_PURCHASE, "Address already minted allocation");
        
        presaleAddressMintCount[msg.sender] += amount;
        _safeMint(msg.sender, amount);
    }

    function setMerkleRoot(bytes32 root) external onlyOwner {
        merkleRoot = root;
    }

    function flipPublicState() external onlyOwner {
        isPublicLive = !isPublicLive;
    }

    function flipPresaleState() external onlyOwner {
        isPresaleLive = !isPresaleLive;
    }

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

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

    function withdraw() external onlyOwner {
        payable(PALS_TEAM).transfer(address(this).balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_BATCH_SIZE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PALS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PALS_PURCHASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipPresaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPublicState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresaleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintPresale","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":[{"internalType":"address","name":"","type":"address"}],"name":"presaleAddressMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"reservePALS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c060405260006001819055600855600a805461ffff191690553480156200002657600080fd5b506040518060400160405280600a81526020016953706163652050616c7360b01b8152506040518060400160405280600481526020016350414c5360e01b815250600a611af062000086620000806200019760201b60201c565b6200019b565b60008111620000f35760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001555760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b6064820152608401620000ea565b83516200016a906002906020870190620001eb565b50825162000180906003906020860190620001eb565b5060a09190915260805250506001600955620002ce565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001f99062000291565b90600052602060002090601f0160209004810192826200021d576000855562000268565b82601f106200023857805160ff191683800117855562000268565b8280016001018555821562000268579182015b82811115620002685782518255916020019190600101906200024b565b50620002769291506200027a565b5090565b5b808211156200027657600081556001016200027b565b600181811c90821680620002a657607f821691505b60208210811415620002c857634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051612726620002ff600039600081816118c9015281816118f30152611d490152600050506127266000f3fe60806040526004361061020f5760003560e01c8063715018a611610118578063a22cb465116100a0578063cfdbf2541161006f578063cfdbf2541461036a578063d7224ba0146105be578063e985e9c5146105d4578063f2fde38b1461061d578063f81227d41461063d57600080fd5b8063a22cb4651461054b578063ad7f1ea11461056b578063b88d4fde1461057e578063c87b56dd1461059e57600080fd5b80638d4d959b116100e75780638d4d959b146104ca5780638d859f3e146104ea5780638da5cb5b1461050557806395d89b4114610523578063a0712d681461053857600080fd5b8063715018a6146104535780637cb64759146104685780637db5a63614610488578063882b1808146104b557600080fd5b80632f745c591161019b5780634f6ccce71161016a5780634f6ccce7146103b457806355f804b3146103d45780635e5f3ce4146103f45780636352211e1461041357806370a082311461043357600080fd5b80632f745c591461034a578063366e91911461036a5780633ccfd60b1461037f57806342842e0e1461039457600080fd5b806318160ddd116101e257806318160ddd146102c557806318675d0e146102e457806323b872dd146102fa5780632c9ad1fb1461031a5780632eb4a7ab1461033457600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f36600461231f565b610652565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106bf565b6040516102409190612463565b34801561027757600080fd5b5061028b610286366004612306565b610751565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004612261565b6107e1565b005b3480156102d157600080fd5b506001545b604051908152602001610240565b3480156102f057600080fd5b506102d6611af081565b34801561030657600080fd5b506102c361031536600461210d565b6108f9565b34801561032657600080fd5b50600a546102349060ff1681565b34801561034057600080fd5b506102d6600b5481565b34801561035657600080fd5b506102d6610365366004612261565b610904565b34801561037657600080fd5b506102d6600a81565b34801561038b57600080fd5b506102c3610a7d565b3480156103a057600080fd5b506102c36103af36600461210d565b610aea565b3480156103c057600080fd5b506102d66103cf366004612306565b610b05565b3480156103e057600080fd5b506102c36103ef366004612359565b610b6e565b34801561040057600080fd5b50600a5461023490610100900460ff1681565b34801561041f57600080fd5b5061028b61042e366004612306565b610ba4565b34801561043f57600080fd5b506102d661044e3660046120bf565b610bb6565b34801561045f57600080fd5b506102c3610c47565b34801561047457600080fd5b506102c3610483366004612306565b610c7d565b34801561049457600080fd5b506102d66104a33660046120bf565b600c6020526000908152604090205481565b3480156104c157600080fd5b506102c3610cac565b3480156104d657600080fd5b506102c36104e5366004612306565b610cf3565b3480156104f657600080fd5b506102d666c3663566a5800081565b34801561051157600080fd5b506000546001600160a01b031661028b565b34801561052f57600080fd5b5061025e610d9e565b6102c3610546366004612306565b610dad565b34801561055757600080fd5b506102c3610566366004612225565b610f15565b6102c361057936600461228b565b610fda565b34801561058a57600080fd5b506102c3610599366004612149565b61128d565b3480156105aa57600080fd5b5061025e6105b9366004612306565b6112c0565b3480156105ca57600080fd5b506102d660085481565b3480156105e057600080fd5b506102346105ef3660046120da565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561062957600080fd5b506102c36106383660046120bf565b61138d565b34801561064957600080fd5b506102c3611425565b60006001600160e01b031982166380ac58cd60e01b148061068357506001600160e01b03198216635b5e139f60e01b145b8061069e57506001600160e01b0319821663780e9d6360e01b145b806106b957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546106ce90612618565b80601f01602080910402602001604051908101604052809291908181526020018280546106fa90612618565b80156107475780601f1061071c57610100808354040283529160200191610747565b820191906000526020600020905b81548152906001019060200180831161072a57829003601f168201915b5050505050905090565b600061075e826001541190565b6107c55760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107ec82610ba4565b9050806001600160a01b0316836001600160a01b0316141561085b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016107bc565b336001600160a01b0382161480610877575061087781336105ef565b6108e95760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016107bc565b6108f4838383611463565b505050565b6108f48383836114bf565b600061090f83610bb6565b82106109685760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016107bc565b600061097360015490565b905060008060005b83811015610a1d576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156109ce57805192505b876001600160a01b0316836001600160a01b03161415610a0a57868414156109fc575093506106b992505050565b83610a0681612653565b9450505b5080610a1581612653565b91505061097b565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016107bc565b6000546001600160a01b03163314610aa75760405162461bcd60e51b81526004016107bc906124a1565b604051739a4d2b0aa37ff77dbcf8281bce1ba2518f5386e1904780156108fc02916000818181858888f19350505050158015610ae7573d6000803e3d6000fd5b50565b6108f48383836040518060200160405280600081525061128d565b6000610b1060015490565b8210610b6a5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016107bc565b5090565b6000546001600160a01b03163314610b985760405162461bcd60e51b81526004016107bc906124a1565b6108f4600d8383612013565b6000610baf82611847565b5192915050565b60006001600160a01b038216610c225760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016107bc565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610c715760405162461bcd60e51b81526004016107bc906124a1565b610c7b60006119f1565b565b6000546001600160a01b03163314610ca75760405162461bcd60e51b81526004016107bc906124a1565b600b55565b6000546001600160a01b03163314610cd65760405162461bcd60e51b81526004016107bc906124a1565b600a805461ff001981166101009182900460ff1615909102179055565b6000546001600160a01b03163314610d1d5760405162461bcd60e51b81526004016107bc906124a1565b611af081610d2a60015490565b610d34919061254b565b1115610d525760405162461bcd60e51b81526004016107bc90612476565b610d5d600a8261266e565b15610d6757600080fd5b6000610d74600a83612563565b905060005b818110156108f457610d8c33600a611a41565b80610d9681612653565b915050610d79565b6060600380546106ce90612618565b80333214610deb5760405162461bcd60e51b815260206004820152600b60248201526a4e6f206368656174696e6760a81b60448201526064016107bc565b34610dfd8266c3663566a58000612577565b1115610e3f5760405162461bcd60e51b815260206004820152601160248201527057726f6e672065746865722076616c756560781b60448201526064016107bc565b611af081610e4c60015490565b610e56919061254b565b1115610e745760405162461bcd60e51b81526004016107bc90612476565b600a811115610ec05760405162461bcd60e51b8152602060048201526018602482015277022bc31b2b2b239903a37b5b2b7103a3c37103634b6b4ba160451b60448201526064016107bc565b600a54610100900460ff16610f075760405162461bcd60e51b815260206004820152600d60248201526c53616c65206e6f74206c69766560981b60448201526064016107bc565b610f113383611a41565b5050565b6001600160a01b038216331415610f6e5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016107bc565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b803332146110185760405162461bcd60e51b815260206004820152600b60248201526a4e6f206368656174696e6760a81b60448201526064016107bc565b3461102a8266c3663566a58000612577565b111561106c5760405162461bcd60e51b815260206004820152601160248201527057726f6e672065746865722076616c756560781b60448201526064016107bc565b611af08161107960015490565b611083919061254b565b11156110a15760405162461bcd60e51b81526004016107bc90612476565b600a8111156110ed5760405162461bcd60e51b8152602060048201526018602482015277022bc31b2b2b239903a37b5b2b7103a3c37103634b6b4ba160451b60448201526064016107bc565b600a5460ff166111325760405162461bcd60e51b815260206004820152601060248201526f50726573616c65206e6f74206c69766560801b60448201526064016107bc565b6111a784848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600b546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120611a5b565b6111e25760405162461bcd60e51b815260206004820152600c60248201526b4e6f7420656c696769626c6560a01b60448201526064016107bc565b336000908152600c6020526040902054600a9061120090849061254b565b11156112585760405162461bcd60e51b815260206004820152602160248201527f4164647265737320616c7265616479206d696e74656420616c6c6f636174696f6044820152603760f91b60648201526084016107bc565b336000908152600c60205260408120805484929061127790849061254b565b9091555061128790503383611a41565b50505050565b6112988484846114bf565b6112a484848484611a71565b6112875760405162461bcd60e51b81526004016107bc906124d6565b60606112cd826001541190565b6113315760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107bc565b600061133b611b7f565b9050600081511161135b5760405180602001604052806000815250611386565b8061136584611b8e565b6040516020016113769291906123f7565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146113b75760405162461bcd60e51b81526004016107bc906124a1565b6001600160a01b03811661141c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107bc565b610ae7816119f1565b6000546001600160a01b0316331461144f5760405162461bcd60e51b81526004016107bc906124a1565b600a805460ff19811660ff90911615179055565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006114ca82611847565b80519091506000906001600160a01b0316336001600160a01b031614806115015750336114f684610751565b6001600160a01b0316145b806115135750815161151390336105ef565b90508061157d5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016107bc565b846001600160a01b031682600001516001600160a01b0316146115f15760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016107bc565b6001600160a01b0384166116555760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016107bc565b6116656000848460000151611463565b6001600160a01b03851660009081526005602052604081208054600192906116979084906001600160801b0316612596565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260056020526040812080546001945090926116e391859116612529565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561176b84600161254b565b6000818152600460205260409020549091506001600160a01b03166117fd57611795816001541190565b156117fd5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611866826001541190565b6118c55760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016107bc565b60007f00000000000000000000000000000000000000000000000000000000000000008310611926576119187f0000000000000000000000000000000000000000000000000000000000000000846125be565b61192390600161254b565b90505b825b818110611990576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561197d57949350505050565b508061198881612601565b915050611928565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016107bc565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610f11828260405180602001604052806000815250611c8c565b600082611a688584611f67565b14949350505050565b60006001600160a01b0384163b15611b7357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ab5903390899088908890600401612426565b602060405180830381600087803b158015611acf57600080fd5b505af1925050508015611aff575060408051601f3d908101601f19168201909252611afc9181019061233c565b60015b611b59573d808015611b2d576040519150601f19603f3d011682016040523d82523d6000602084013e611b32565b606091505b508051611b515760405162461bcd60e51b81526004016107bc906124d6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b77565b5060015b949350505050565b6060600d80546106ce90612618565b606081611bb25750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611bdc5780611bc681612653565b9150611bd59050600a83612563565b9150611bb6565b60008167ffffffffffffffff811115611bf757611bf76126c4565b6040519080825280601f01601f191660200182016040528015611c21576020820181803683370190505b5090505b8415611b7757611c366001836125be565b9150611c43600a8661266e565b611c4e90603061254b565b60f81b818381518110611c6357611c636126ae565b60200101906001600160f81b031916908160001a905350611c85600a86612563565b9450611c25565b6001546001600160a01b038416611cef5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016107bc565b611cfa816001541190565b15611d475760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016107bc565b7f0000000000000000000000000000000000000000000000000000000000000000831115611dc25760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016107bc565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611e1e908790612529565b6001600160801b03168152602001858360200151611e3c9190612529565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611f5c5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611f206000888488611a71565b611f3c5760405162461bcd60e51b81526004016107bc906124d6565b81611f4681612653565b9250508080611f5490612653565b915050611ed3565b50600181905561183f565b600081815b845181101561200b576000858281518110611f8957611f896126ae565b60200260200101519050808311611fcb576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611ff8565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061200381612653565b915050611f6c565b509392505050565b82805461201f90612618565b90600052602060002090601f0160209004810192826120415760008555612087565b82601f1061205a5782800160ff19823516178555612087565b82800160010185558215612087579182015b8281111561208757823582559160200191906001019061206c565b50610b6a9291505b80821115610b6a576000815560010161208f565b80356001600160a01b03811681146120ba57600080fd5b919050565b6000602082840312156120d157600080fd5b611386826120a3565b600080604083850312156120ed57600080fd5b6120f6836120a3565b9150612104602084016120a3565b90509250929050565b60008060006060848603121561212257600080fd5b61212b846120a3565b9250612139602085016120a3565b9150604084013590509250925092565b6000806000806080858703121561215f57600080fd5b612168856120a3565b9350612176602086016120a3565b925060408501359150606085013567ffffffffffffffff8082111561219a57600080fd5b818701915087601f8301126121ae57600080fd5b8135818111156121c0576121c06126c4565b604051601f8201601f19908116603f011681019083821181831017156121e8576121e86126c4565b816040528281528a602084870101111561220157600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561223857600080fd5b612241836120a3565b91506020830135801515811461225657600080fd5b809150509250929050565b6000806040838503121561227457600080fd5b61227d836120a3565b946020939093013593505050565b6000806000604084860312156122a057600080fd5b833567ffffffffffffffff808211156122b857600080fd5b818601915086601f8301126122cc57600080fd5b8135818111156122db57600080fd5b8760208260051b85010111156122f057600080fd5b6020928301989097509590910135949350505050565b60006020828403121561231857600080fd5b5035919050565b60006020828403121561233157600080fd5b8135611386816126da565b60006020828403121561234e57600080fd5b8151611386816126da565b6000806020838503121561236c57600080fd5b823567ffffffffffffffff8082111561238457600080fd5b818501915085601f83011261239857600080fd5b8135818111156123a757600080fd5b8660208285010111156123b957600080fd5b60209290920196919550909350505050565b600081518084526123e38160208601602086016125d5565b601f01601f19169290920160200192915050565b600083516124098184602088016125d5565b83519083019061241d8183602088016125d5565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612459908301846123cb565b9695505050505050565b60208152600061138660208301846123cb565b6020808252601190820152704e6f7420656e6f75676820737570706c7960781b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b0380831681851680830382111561241d5761241d612682565b6000821982111561255e5761255e612682565b500190565b60008261257257612572612698565b500490565b600081600019048311821515161561259157612591612682565b500290565b60006001600160801b03838116908316818110156125b6576125b6612682565b039392505050565b6000828210156125d0576125d0612682565b500390565b60005b838110156125f05781810151838201526020016125d8565b838111156112875750506000910152565b60008161261057612610612682565b506000190190565b600181811c9082168061262c57607f821691505b6020821081141561264d57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561266757612667612682565b5060010190565b60008261267d5761267d612698565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ae757600080fdfea2646970667358221220acdab88fcc04bee2114f6148f6986b2cdfb03b6317a29ca8f4faa291503fc1e164736f6c63430008070033

Deployed Bytecode

0x60806040526004361061020f5760003560e01c8063715018a611610118578063a22cb465116100a0578063cfdbf2541161006f578063cfdbf2541461036a578063d7224ba0146105be578063e985e9c5146105d4578063f2fde38b1461061d578063f81227d41461063d57600080fd5b8063a22cb4651461054b578063ad7f1ea11461056b578063b88d4fde1461057e578063c87b56dd1461059e57600080fd5b80638d4d959b116100e75780638d4d959b146104ca5780638d859f3e146104ea5780638da5cb5b1461050557806395d89b4114610523578063a0712d681461053857600080fd5b8063715018a6146104535780637cb64759146104685780637db5a63614610488578063882b1808146104b557600080fd5b80632f745c591161019b5780634f6ccce71161016a5780634f6ccce7146103b457806355f804b3146103d45780635e5f3ce4146103f45780636352211e1461041357806370a082311461043357600080fd5b80632f745c591461034a578063366e91911461036a5780633ccfd60b1461037f57806342842e0e1461039457600080fd5b806318160ddd116101e257806318160ddd146102c557806318675d0e146102e457806323b872dd146102fa5780632c9ad1fb1461031a5780632eb4a7ab1461033457600080fd5b806301ffc9a71461021457806306fdde0314610249578063081812fc1461026b578063095ea7b3146102a3575b600080fd5b34801561022057600080fd5b5061023461022f36600461231f565b610652565b60405190151581526020015b60405180910390f35b34801561025557600080fd5b5061025e6106bf565b6040516102409190612463565b34801561027757600080fd5b5061028b610286366004612306565b610751565b6040516001600160a01b039091168152602001610240565b3480156102af57600080fd5b506102c36102be366004612261565b6107e1565b005b3480156102d157600080fd5b506001545b604051908152602001610240565b3480156102f057600080fd5b506102d6611af081565b34801561030657600080fd5b506102c361031536600461210d565b6108f9565b34801561032657600080fd5b50600a546102349060ff1681565b34801561034057600080fd5b506102d6600b5481565b34801561035657600080fd5b506102d6610365366004612261565b610904565b34801561037657600080fd5b506102d6600a81565b34801561038b57600080fd5b506102c3610a7d565b3480156103a057600080fd5b506102c36103af36600461210d565b610aea565b3480156103c057600080fd5b506102d66103cf366004612306565b610b05565b3480156103e057600080fd5b506102c36103ef366004612359565b610b6e565b34801561040057600080fd5b50600a5461023490610100900460ff1681565b34801561041f57600080fd5b5061028b61042e366004612306565b610ba4565b34801561043f57600080fd5b506102d661044e3660046120bf565b610bb6565b34801561045f57600080fd5b506102c3610c47565b34801561047457600080fd5b506102c3610483366004612306565b610c7d565b34801561049457600080fd5b506102d66104a33660046120bf565b600c6020526000908152604090205481565b3480156104c157600080fd5b506102c3610cac565b3480156104d657600080fd5b506102c36104e5366004612306565b610cf3565b3480156104f657600080fd5b506102d666c3663566a5800081565b34801561051157600080fd5b506000546001600160a01b031661028b565b34801561052f57600080fd5b5061025e610d9e565b6102c3610546366004612306565b610dad565b34801561055757600080fd5b506102c3610566366004612225565b610f15565b6102c361057936600461228b565b610fda565b34801561058a57600080fd5b506102c3610599366004612149565b61128d565b3480156105aa57600080fd5b5061025e6105b9366004612306565b6112c0565b3480156105ca57600080fd5b506102d660085481565b3480156105e057600080fd5b506102346105ef3660046120da565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561062957600080fd5b506102c36106383660046120bf565b61138d565b34801561064957600080fd5b506102c3611425565b60006001600160e01b031982166380ac58cd60e01b148061068357506001600160e01b03198216635b5e139f60e01b145b8061069e57506001600160e01b0319821663780e9d6360e01b145b806106b957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546106ce90612618565b80601f01602080910402602001604051908101604052809291908181526020018280546106fa90612618565b80156107475780601f1061071c57610100808354040283529160200191610747565b820191906000526020600020905b81548152906001019060200180831161072a57829003601f168201915b5050505050905090565b600061075e826001541190565b6107c55760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107ec82610ba4565b9050806001600160a01b0316836001600160a01b0316141561085b5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016107bc565b336001600160a01b0382161480610877575061087781336105ef565b6108e95760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016107bc565b6108f4838383611463565b505050565b6108f48383836114bf565b600061090f83610bb6565b82106109685760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016107bc565b600061097360015490565b905060008060005b83811015610a1d576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156109ce57805192505b876001600160a01b0316836001600160a01b03161415610a0a57868414156109fc575093506106b992505050565b83610a0681612653565b9450505b5080610a1581612653565b91505061097b565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016107bc565b6000546001600160a01b03163314610aa75760405162461bcd60e51b81526004016107bc906124a1565b604051739a4d2b0aa37ff77dbcf8281bce1ba2518f5386e1904780156108fc02916000818181858888f19350505050158015610ae7573d6000803e3d6000fd5b50565b6108f48383836040518060200160405280600081525061128d565b6000610b1060015490565b8210610b6a5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016107bc565b5090565b6000546001600160a01b03163314610b985760405162461bcd60e51b81526004016107bc906124a1565b6108f4600d8383612013565b6000610baf82611847565b5192915050565b60006001600160a01b038216610c225760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016107bc565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610c715760405162461bcd60e51b81526004016107bc906124a1565b610c7b60006119f1565b565b6000546001600160a01b03163314610ca75760405162461bcd60e51b81526004016107bc906124a1565b600b55565b6000546001600160a01b03163314610cd65760405162461bcd60e51b81526004016107bc906124a1565b600a805461ff001981166101009182900460ff1615909102179055565b6000546001600160a01b03163314610d1d5760405162461bcd60e51b81526004016107bc906124a1565b611af081610d2a60015490565b610d34919061254b565b1115610d525760405162461bcd60e51b81526004016107bc90612476565b610d5d600a8261266e565b15610d6757600080fd5b6000610d74600a83612563565b905060005b818110156108f457610d8c33600a611a41565b80610d9681612653565b915050610d79565b6060600380546106ce90612618565b80333214610deb5760405162461bcd60e51b815260206004820152600b60248201526a4e6f206368656174696e6760a81b60448201526064016107bc565b34610dfd8266c3663566a58000612577565b1115610e3f5760405162461bcd60e51b815260206004820152601160248201527057726f6e672065746865722076616c756560781b60448201526064016107bc565b611af081610e4c60015490565b610e56919061254b565b1115610e745760405162461bcd60e51b81526004016107bc90612476565b600a811115610ec05760405162461bcd60e51b8152602060048201526018602482015277022bc31b2b2b239903a37b5b2b7103a3c37103634b6b4ba160451b60448201526064016107bc565b600a54610100900460ff16610f075760405162461bcd60e51b815260206004820152600d60248201526c53616c65206e6f74206c69766560981b60448201526064016107bc565b610f113383611a41565b5050565b6001600160a01b038216331415610f6e5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016107bc565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b803332146110185760405162461bcd60e51b815260206004820152600b60248201526a4e6f206368656174696e6760a81b60448201526064016107bc565b3461102a8266c3663566a58000612577565b111561106c5760405162461bcd60e51b815260206004820152601160248201527057726f6e672065746865722076616c756560781b60448201526064016107bc565b611af08161107960015490565b611083919061254b565b11156110a15760405162461bcd60e51b81526004016107bc90612476565b600a8111156110ed5760405162461bcd60e51b8152602060048201526018602482015277022bc31b2b2b239903a37b5b2b7103a3c37103634b6b4ba160451b60448201526064016107bc565b600a5460ff166111325760405162461bcd60e51b815260206004820152601060248201526f50726573616c65206e6f74206c69766560801b60448201526064016107bc565b6111a784848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600b546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120611a5b565b6111e25760405162461bcd60e51b815260206004820152600c60248201526b4e6f7420656c696769626c6560a01b60448201526064016107bc565b336000908152600c6020526040902054600a9061120090849061254b565b11156112585760405162461bcd60e51b815260206004820152602160248201527f4164647265737320616c7265616479206d696e74656420616c6c6f636174696f6044820152603760f91b60648201526084016107bc565b336000908152600c60205260408120805484929061127790849061254b565b9091555061128790503383611a41565b50505050565b6112988484846114bf565b6112a484848484611a71565b6112875760405162461bcd60e51b81526004016107bc906124d6565b60606112cd826001541190565b6113315760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107bc565b600061133b611b7f565b9050600081511161135b5760405180602001604052806000815250611386565b8061136584611b8e565b6040516020016113769291906123f7565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146113b75760405162461bcd60e51b81526004016107bc906124a1565b6001600160a01b03811661141c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107bc565b610ae7816119f1565b6000546001600160a01b0316331461144f5760405162461bcd60e51b81526004016107bc906124a1565b600a805460ff19811660ff90911615179055565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006114ca82611847565b80519091506000906001600160a01b0316336001600160a01b031614806115015750336114f684610751565b6001600160a01b0316145b806115135750815161151390336105ef565b90508061157d5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016107bc565b846001600160a01b031682600001516001600160a01b0316146115f15760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016107bc565b6001600160a01b0384166116555760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016107bc565b6116656000848460000151611463565b6001600160a01b03851660009081526005602052604081208054600192906116979084906001600160801b0316612596565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260056020526040812080546001945090926116e391859116612529565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b0319909116919092161717905561176b84600161254b565b6000818152600460205260409020549091506001600160a01b03166117fd57611795816001541190565b156117fd5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152611866826001541190565b6118c55760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016107bc565b60007f000000000000000000000000000000000000000000000000000000000000000a8310611926576119187f000000000000000000000000000000000000000000000000000000000000000a846125be565b61192390600161254b565b90505b825b818110611990576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561197d57949350505050565b508061198881612601565b915050611928565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016107bc565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610f11828260405180602001604052806000815250611c8c565b600082611a688584611f67565b14949350505050565b60006001600160a01b0384163b15611b7357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ab5903390899088908890600401612426565b602060405180830381600087803b158015611acf57600080fd5b505af1925050508015611aff575060408051601f3d908101601f19168201909252611afc9181019061233c565b60015b611b59573d808015611b2d576040519150601f19603f3d011682016040523d82523d6000602084013e611b32565b606091505b508051611b515760405162461bcd60e51b81526004016107bc906124d6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b77565b5060015b949350505050565b6060600d80546106ce90612618565b606081611bb25750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611bdc5780611bc681612653565b9150611bd59050600a83612563565b9150611bb6565b60008167ffffffffffffffff811115611bf757611bf76126c4565b6040519080825280601f01601f191660200182016040528015611c21576020820181803683370190505b5090505b8415611b7757611c366001836125be565b9150611c43600a8661266e565b611c4e90603061254b565b60f81b818381518110611c6357611c636126ae565b60200101906001600160f81b031916908160001a905350611c85600a86612563565b9450611c25565b6001546001600160a01b038416611cef5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016107bc565b611cfa816001541190565b15611d475760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016107bc565b7f000000000000000000000000000000000000000000000000000000000000000a831115611dc25760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016107bc565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611e1e908790612529565b6001600160801b03168152602001858360200151611e3c9190612529565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611f5c5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611f206000888488611a71565b611f3c5760405162461bcd60e51b81526004016107bc906124d6565b81611f4681612653565b9250508080611f5490612653565b915050611ed3565b50600181905561183f565b600081815b845181101561200b576000858281518110611f8957611f896126ae565b60200260200101519050808311611fcb576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611ff8565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061200381612653565b915050611f6c565b509392505050565b82805461201f90612618565b90600052602060002090601f0160209004810192826120415760008555612087565b82601f1061205a5782800160ff19823516178555612087565b82800160010185558215612087579182015b8281111561208757823582559160200191906001019061206c565b50610b6a9291505b80821115610b6a576000815560010161208f565b80356001600160a01b03811681146120ba57600080fd5b919050565b6000602082840312156120d157600080fd5b611386826120a3565b600080604083850312156120ed57600080fd5b6120f6836120a3565b9150612104602084016120a3565b90509250929050565b60008060006060848603121561212257600080fd5b61212b846120a3565b9250612139602085016120a3565b9150604084013590509250925092565b6000806000806080858703121561215f57600080fd5b612168856120a3565b9350612176602086016120a3565b925060408501359150606085013567ffffffffffffffff8082111561219a57600080fd5b818701915087601f8301126121ae57600080fd5b8135818111156121c0576121c06126c4565b604051601f8201601f19908116603f011681019083821181831017156121e8576121e86126c4565b816040528281528a602084870101111561220157600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561223857600080fd5b612241836120a3565b91506020830135801515811461225657600080fd5b809150509250929050565b6000806040838503121561227457600080fd5b61227d836120a3565b946020939093013593505050565b6000806000604084860312156122a057600080fd5b833567ffffffffffffffff808211156122b857600080fd5b818601915086601f8301126122cc57600080fd5b8135818111156122db57600080fd5b8760208260051b85010111156122f057600080fd5b6020928301989097509590910135949350505050565b60006020828403121561231857600080fd5b5035919050565b60006020828403121561233157600080fd5b8135611386816126da565b60006020828403121561234e57600080fd5b8151611386816126da565b6000806020838503121561236c57600080fd5b823567ffffffffffffffff8082111561238457600080fd5b818501915085601f83011261239857600080fd5b8135818111156123a757600080fd5b8660208285010111156123b957600080fd5b60209290920196919550909350505050565b600081518084526123e38160208601602086016125d5565b601f01601f19169290920160200192915050565b600083516124098184602088016125d5565b83519083019061241d8183602088016125d5565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612459908301846123cb565b9695505050505050565b60208152600061138660208301846123cb565b6020808252601190820152704e6f7420656e6f75676820737570706c7960781b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b0380831681851680830382111561241d5761241d612682565b6000821982111561255e5761255e612682565b500190565b60008261257257612572612698565b500490565b600081600019048311821515161561259157612591612682565b500290565b60006001600160801b03838116908316818110156125b6576125b6612682565b039392505050565b6000828210156125d0576125d0612682565b500390565b60005b838110156125f05781810151838201526020016125d8565b838111156112875750506000910152565b60008161261057612610612682565b506000190190565b600181811c9082168061262c57607f821691505b6020821081141561264d57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561266757612667612682565b5060010190565b60008261267d5761267d612698565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ae757600080fdfea2646970667358221220acdab88fcc04bee2114f6148f6986b2cdfb03b6317a29ca8f4faa291503fc1e164736f6c63430008070033

Deployed Bytecode Sourcemap

44501:2700:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27397:370;;;;;;;;;;-1:-1:-1;27397:370:0;;;;;:::i;:::-;;:::i;:::-;;;6989:14:1;;6982:22;6964:41;;6952:2;6937:18;27397:370:0;;;;;;;;29123:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30648:204::-;;;;;;;;;;-1:-1:-1;30648:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6287:32:1;;;6269:51;;6257:2;6242:18;30648:204:0;6123:203:1;30211:379:0;;;;;;;;;;-1:-1:-1;30211:379:0;;;;;:::i;:::-;;:::i;:::-;;25958:94;;;;;;;;;;-1:-1:-1;26034:12:0;;25958:94;;;7162:25:1;;;7150:2;7135:18;25958:94:0;7016:177:1;44667:39:0;;;;;;;;;;;;44702:4;44667:39;;31498:142;;;;;;;;;;-1:-1:-1;31498:142:0;;;;;:::i;:::-;;:::i;44851:33::-;;;;;;;;;;-1:-1:-1;44851:33:0;;;;;;;;44932:25;;;;;;;;;;;;;;;;26589:744;;;;;;;;;;-1:-1:-1;26589:744:0;;;;;:::i;:::-;;:::i;44614:46::-;;;;;;;;;;;;44658:2;44614:46;;47090:108;;;;;;;;;;;;;:::i;31703:157::-;;;;;;;;;;-1:-1:-1;31703:157:0;;;;;:::i;:::-;;:::i;26121:177::-;;;;;;;;;;-1:-1:-1;26121:177:0;;;;;:::i;:::-;;:::i;46854:106::-;;;;;;;;;;-1:-1:-1;46854:106:0;;;;;:::i;:::-;;:::i;44891:32::-;;;;;;;;;;-1:-1:-1;44891:32:0;;;;;;;;;;;28946:118;;;;;;;;;;-1:-1:-1;28946:118:0;;;;;:::i;:::-;;:::i;27823:211::-;;;;;;;;;;-1:-1:-1;27823:211:0;;;;;:::i;:::-;;:::i;41412:103::-;;;;;;;;;;;;;:::i;46549:92::-;;;;;;;;;;-1:-1:-1;46549:92:0;;;;;:::i;:::-;;:::i;44964:58::-;;;;;;;;;;-1:-1:-1;44964:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;46649:93;;;;;;;;;;;;;:::i;45509:351::-;;;;;;;;;;-1:-1:-1;45509:351:0;;;;;:::i;:::-;;:::i;44564:43::-;;;;;;;;;;;;44596:11;44564:43;;40761:87;;;;;;;;;;-1:-1:-1;40807:7:0;40834:6;-1:-1:-1;;;;;40834:6:0;40761:87;;29278:98;;;;;;;;;;;;;:::i;45868:164::-;;;;;;:::i;:::-;;:::i;30916:274::-;;;;;;;;;;-1:-1:-1;30916:274:0;;;;;:::i;:::-;;:::i;46040:501::-;;;;;;:::i;:::-;;:::i;31923:311::-;;;;;;;;;;-1:-1:-1;31923:311:0;;;;;:::i;:::-;;:::i;29439:394::-;;;;;;;;;;-1:-1:-1;29439:394:0;;;;;:::i;:::-;;:::i;36338:43::-;;;;;;;;;;;;;;;;31253:186;;;;;;;;;;-1:-1:-1;31253:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;31398:25:0;;;31375:4;31398:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31253:186;41670:201;;;;;;;;;;-1:-1:-1;41670:201:0;;;;;:::i;:::-;;:::i;46750:96::-;;;;;;;;;;;;;:::i;27397:370::-;27524:4;-1:-1:-1;;;;;;27554:40:0;;-1:-1:-1;;;27554:40:0;;:99;;-1:-1:-1;;;;;;;27605:48:0;;-1:-1:-1;;;27605:48:0;27554:99;:160;;;-1:-1:-1;;;;;;;27664:50:0;;-1:-1:-1;;;27664:50:0;27554:160;:207;;;-1:-1:-1;;;;;;;;;;11073:40:0;;;27725:36;27540:221;27397:370;-1:-1:-1;;27397:370:0:o;29123:94::-;29177:13;29206:5;29199:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29123:94;:::o;30648:204::-;30716:7;30740:16;30748:7;32560:12;;-1:-1:-1;32550:22:0;32473:105;30740:16;30732:74;;;;-1:-1:-1;;;30732:74:0;;17680:2:1;30732:74:0;;;17662:21:1;17719:2;17699:18;;;17692:30;17758:34;17738:18;;;17731:62;-1:-1:-1;;;17809:18:1;;;17802:43;17862:19;;30732:74:0;;;;;;;;;-1:-1:-1;30822:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30822:24:0;;30648:204::o;30211:379::-;30280:13;30296:24;30312:7;30296:15;:24::i;:::-;30280:40;;30341:5;-1:-1:-1;;;;;30335:11:0;:2;-1:-1:-1;;;;;30335:11:0;;;30327:58;;;;-1:-1:-1;;;30327:58:0;;15266:2:1;30327:58:0;;;15248:21:1;15305:2;15285:18;;;15278:30;15344:34;15324:18;;;15317:62;-1:-1:-1;;;15395:18:1;;;15388:32;15437:19;;30327:58:0;15064:398:1;30327:58:0;23518:10;-1:-1:-1;;;;;30410:21:0;;;;:62;;-1:-1:-1;30435:37:0;30452:5;23518:10;31253:186;:::i;30435:37::-;30394:153;;;;-1:-1:-1;;;30394:153:0;;11035:2:1;30394:153:0;;;11017:21:1;11074:2;11054:18;;;11047:30;11113:34;11093:18;;;11086:62;11184:27;11164:18;;;11157:55;11229:19;;30394:153:0;10833:421:1;30394:153:0;30556:28;30565:2;30569:7;30578:5;30556:8;:28::i;:::-;30273:317;30211:379;;:::o;31498:142::-;31606:28;31616:4;31622:2;31626:7;31606:9;:28::i;26589:744::-;26698:7;26733:16;26743:5;26733:9;:16::i;:::-;26725:5;:24;26717:71;;;;-1:-1:-1;;;26717:71:0;;7624:2:1;26717:71:0;;;7606:21:1;7663:2;7643:18;;;7636:30;7702:34;7682:18;;;7675:62;-1:-1:-1;;;7753:18:1;;;7746:32;7795:19;;26717:71:0;7422:398:1;26717:71:0;26795:22;26820:13;26034:12;;;25958:94;26820:13;26795:38;;26840:19;26870:25;26920:9;26915:350;26939:14;26935:1;:18;26915:350;;;26969:31;27003:14;;;:11;:14;;;;;;;;;26969:48;;;;;;;;;-1:-1:-1;;;;;26969:48:0;;;;;-1:-1:-1;;;26969:48:0;;;;;;;;;;;;27030:28;27026:89;;27091:14;;;-1:-1:-1;27026:89:0;27148:5;-1:-1:-1;;;;;27127:26:0;:17;-1:-1:-1;;;;;27127:26:0;;27123:135;;;27185:5;27170:11;:20;27166:59;;;-1:-1:-1;27212:1:0;-1:-1:-1;27205:8:0;;-1:-1:-1;;;27205:8:0;27166:59;27235:13;;;;:::i;:::-;;;;27123:135;-1:-1:-1;26955:3:0;;;;:::i;:::-;;;;26915:350;;;-1:-1:-1;27271:56:0;;-1:-1:-1;;;27271:56:0;;16849:2:1;27271:56:0;;;16831:21:1;16888:2;16868:18;;;16861:30;16927:34;16907:18;;;16900:62;-1:-1:-1;;;16978:18:1;;;16971:44;17032:19;;27271:56:0;16647:410:1;47090:108:0;40807:7;40834:6;-1:-1:-1;;;;;40834:6:0;23518:10;40981:23;40973:68;;;;-1:-1:-1;;;40973:68:0;;;;;;;:::i;:::-;47140:50:::1;::::0;44800:42:::1;::::0;47168:21:::1;47140:50:::0;::::1;;;::::0;::::1;::::0;;;47168:21;44800:42;47140:50;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;47090:108::o:0;31703:157::-;31815:39;31832:4;31838:2;31842:7;31815:39;;;;;;;;;;;;:16;:39::i;26121:177::-;26188:7;26220:13;26034:12;;;25958:94;26220:13;26212:5;:21;26204:69;;;;-1:-1:-1;;;26204:69:0;;9531:2:1;26204:69:0;;;9513:21:1;9570:2;9550:18;;;9543:30;9609:34;9589:18;;;9582:62;-1:-1:-1;;;9660:18:1;;;9653:33;9703:19;;26204:69:0;9329:399:1;26204:69:0;-1:-1:-1;26287:5:0;26121:177::o;46854:106::-;40807:7;40834:6;-1:-1:-1;;;;;40834:6:0;23518:10;40981:23;40973:68;;;;-1:-1:-1;;;40973:68:0;;;;;;;:::i;:::-;46929:23:::1;:13;46945:7:::0;;46929:23:::1;:::i;28946:118::-:0;29010:7;29033:20;29045:7;29033:11;:20::i;:::-;:25;;28946:118;-1:-1:-1;;28946:118:0:o;27823:211::-;27887:7;-1:-1:-1;;;;;27911:19:0;;27903:75;;;;-1:-1:-1;;;27903:75:0;;11461:2:1;27903:75:0;;;11443:21:1;11500:2;11480:18;;;11473:30;11539:34;11519:18;;;11512:62;-1:-1:-1;;;11590:18:1;;;11583:41;11641:19;;27903:75:0;11259:407:1;27903:75:0;-1:-1:-1;;;;;;28000:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;28000:27:0;;27823:211::o;41412:103::-;40807:7;40834:6;-1:-1:-1;;;;;40834:6:0;23518:10;40981:23;40973:68;;;;-1:-1:-1;;;40973:68:0;;;;;;;:::i;:::-;41477:30:::1;41504:1;41477:18;:30::i;:::-;41412:103::o:0;46549:92::-;40807:7;40834:6;-1:-1:-1;;;;;40834:6:0;23518:10;40981:23;40973:68;;;;-1:-1:-1;;;40973:68:0;;;;;;;:::i;:::-;46616:10:::1;:17:::0;46549:92::o;46649:93::-;40807:7;40834:6;-1:-1:-1;;;;;40834:6:0;23518:10;40981:23;40973:68;;;;-1:-1:-1;;;40973:68:0;;;;;;;:::i;:::-;46722:12:::1;::::0;;-1:-1:-1;;46706:28:0;::::1;46722:12;::::0;;;::::1;;;46721:13;46706:28:::0;;::::1;;::::0;;46649:93::o;45509:351::-;40807:7;40834:6;-1:-1:-1;;;;;40834:6:0;23518:10;40981:23;40973:68;;;;-1:-1:-1;;;40973:68:0;;;;;;;:::i;:::-;44702:4:::1;45600:6;45584:13;26034:12:::0;;;25958:94;45584:13:::1;:22;;;;:::i;:::-;:34;;45576:64;;;;-1:-1:-1::0;;;45576:64:0::1;;;;;;;:::i;:::-;45659:23;44754:2;45659:6:::0;:23:::1;:::i;:::-;:28:::0;45651:37:::1;;;::::0;::::1;;45701:14;45718:23;44754:2;45718:6:::0;:23:::1;:::i;:::-;45701:40;;45757:9;45752:101;45776:6;45772:1;:10;45752:101;;;45804:37;45814:10;44754:2;45804:9;:37::i;:::-;45784:3:::0;::::1;::::0;::::1;:::i;:::-;;;;45752:101;;29278:98:::0;29334:13;29363:7;29356:14;;;;;:::i;45868:164::-;45925:6;45212:10;45226:9;45212:23;45204:47;;;;-1:-1:-1;;;45204:47:0;;8373:2:1;45204:47:0;;;8355:21:1;8412:2;8392:18;;;8385:30;-1:-1:-1;;;8431:18:1;;;8424:41;8482:18;;45204:47:0;8171:335:1;45204:47:0;45292:9;45270:18;45278:10;44596:11;45270:18;:::i;:::-;:31;;45262:61;;;;-1:-1:-1;;;45262:61:0;;14173:2:1;45262:61:0;;;14155:21:1;14212:2;14192:18;;;14185:30;-1:-1:-1;;;14231:18:1;;;14224:47;14288:18;;45262:61:0;13971:341:1;45262:61:0;44702:4;45358:10;45342:13;26034:12;;;25958:94;45342:13;:26;;;;:::i;:::-;:38;;45334:68;;;;-1:-1:-1;;;45334:68:0;;;;;;;:::i;:::-;44658:2;45421:10;:31;;45413:68;;;;-1:-1:-1;;;45413:68:0;;9935:2:1;45413:68:0;;;9917:21:1;9974:2;9954:18;;;9947:30;-1:-1:-1;;;9993:18:1;;;9986:54;10057:18;;45413:68:0;9733:348:1;45413:68:0;45952:12:::1;::::0;::::1;::::0;::::1;;;45944:38;;;::::0;-1:-1:-1;;;45944:38:0;;11873:2:1;45944:38:0::1;::::0;::::1;11855:21:1::0;11912:2;11892:18;;;11885:30;-1:-1:-1;;;11931:18:1;;;11924:43;11984:18;;45944:38:0::1;11671:337:1::0;45944:38:0::1;45995:29;46005:10;46017:6;45995:9;:29::i;:::-;45868:164:::0;;:::o;30916:274::-;-1:-1:-1;;;;;31007:24:0;;23518:10;31007:24;;30999:63;;;;-1:-1:-1;;;30999:63:0;;13399:2:1;30999:63:0;;;13381:21:1;13438:2;13418:18;;;13411:30;13477:28;13457:18;;;13450:56;13523:18;;30999:63:0;13197:350:1;30999:63:0;23518:10;31071:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31071:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31071:53:0;;;;;;;;;;31136:48;;6964:41:1;;;31071:42:0;;23518:10;31136:48;;6937:18:1;31136:48:0;;;;;;;30916:274;;:::o;46040:501::-;46130:6;45212:10;45226:9;45212:23;45204:47;;;;-1:-1:-1;;;45204:47:0;;8373:2:1;45204:47:0;;;8355:21:1;8412:2;8392:18;;;8385:30;-1:-1:-1;;;8431:18:1;;;8424:41;8482:18;;45204:47:0;8171:335:1;45204:47:0;45292:9;45270:18;45278:10;44596:11;45270:18;:::i;:::-;:31;;45262:61;;;;-1:-1:-1;;;45262:61:0;;14173:2:1;45262:61:0;;;14155:21:1;14212:2;14192:18;;;14185:30;-1:-1:-1;;;14231:18:1;;;14224:47;14288:18;;45262:61:0;13971:341:1;45262:61:0;44702:4;45358:10;45342:13;26034:12;;;25958:94;45342:13;:26;;;;:::i;:::-;:38;;45334:68;;;;-1:-1:-1;;;45334:68:0;;;;;;;:::i;:::-;44658:2;45421:10;:31;;45413:68;;;;-1:-1:-1;;;45413:68:0;;9935:2:1;45413:68:0;;;9917:21:1;9974:2;9954:18;;;9947:30;-1:-1:-1;;;9993:18:1;;;9986:54;10057:18;;45413:68:0;9733:348:1;45413:68:0;46157:13:::1;::::0;::::1;;46149:42;;;::::0;-1:-1:-1;;;46149:42:0;;14921:2:1;46149:42:0::1;::::0;::::1;14903:21:1::0;14960:2;14940:18;;;14933:30;-1:-1:-1;;;14979:18:1;;;14972:46;15035:18;;46149:42:0::1;14719:340:1::0;46149:42:0::1;46210:78;46229:5;;46210:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;46236:10:0::1;::::0;46258:28:::1;::::0;-1:-1:-1;;46275:10:0::1;5311:2:1::0;5307:15;5303:53;46258:28:0::1;::::0;::::1;5291:66:1::0;46236:10:0;;-1:-1:-1;5373:12:1;;;-1:-1:-1;46258:28:0::1;;;;;;;;;;;;46248:39;;;;;;46210:18;:78::i;:::-;46202:103;;;::::0;-1:-1:-1;;;46202:103:0;;10694:2:1;46202:103:0::1;::::0;::::1;10676:21:1::0;10733:2;10713:18;;;10706:30;-1:-1:-1;;;10752:18:1;;;10745:42;10804:18;;46202:103:0::1;10492:336:1::0;46202:103:0::1;46348:10;46324:35;::::0;;;:23:::1;:35;::::0;;;;;44658:2:::1;::::0;46324:44:::1;::::0;46362:6;;46324:44:::1;:::i;:::-;:65;;46316:111;;;::::0;-1:-1:-1;;;46316:111:0;;14519:2:1;46316:111:0::1;::::0;::::1;14501:21:1::0;14558:2;14538:18;;;14531:30;14597:34;14577:18;;;14570:62;-1:-1:-1;;;14648:18:1;;;14641:31;14689:19;;46316:111:0::1;14317:397:1::0;46316:111:0::1;46472:10;46448:35;::::0;;;:23:::1;:35;::::0;;;;:45;;46487:6;;46448:35;:45:::1;::::0;46487:6;;46448:45:::1;:::i;:::-;::::0;;;-1:-1:-1;46504:29:0::1;::::0;-1:-1:-1;46514:10:0::1;46526:6:::0;46504:9:::1;:29::i;:::-;46040:501:::0;;;;:::o;31923:311::-;32060:28;32070:4;32076:2;32080:7;32060:9;:28::i;:::-;32111:48;32134:4;32140:2;32144:7;32153:5;32111:22;:48::i;:::-;32095:133;;;;-1:-1:-1;;;32095:133:0;;;;;;;:::i;29439:394::-;29537:13;29578:16;29586:7;32560:12;;-1:-1:-1;32550:22:0;32473:105;29578:16;29562:97;;;;-1:-1:-1;;;29562:97:0;;12983:2:1;29562:97:0;;;12965:21:1;13022:2;13002:18;;;12995:30;13061:34;13041:18;;;13034:62;-1:-1:-1;;;13112:18:1;;;13105:45;13167:19;;29562:97:0;12781:411:1;29562:97:0;29668:21;29692:10;:8;:10::i;:::-;29668:34;;29747:1;29729:7;29723:21;:25;:104;;;;;;;;;;;;;;;;;29784:7;29793:18;:7;:16;:18::i;:::-;29767:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;29723:104;29709:118;29439:394;-1:-1:-1;;;29439:394:0:o;41670:201::-;40807:7;40834:6;-1:-1:-1;;;;;40834:6:0;23518:10;40981:23;40973:68;;;;-1:-1:-1;;;40973:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41759:22:0;::::1;41751:73;;;::::0;-1:-1:-1;;;41751:73:0;;8713:2:1;41751:73:0::1;::::0;::::1;8695:21:1::0;8752:2;8732:18;;;8725:30;8791:34;8771:18;;;8764:62;-1:-1:-1;;;8842:18:1;;;8835:36;8888:19;;41751:73:0::1;8511:402:1::0;41751:73:0::1;41835:28;41854:8;41835:18;:28::i;46750:96::-:0;40807:7;40834:6;-1:-1:-1;;;;;40834:6:0;23518:10;40981:23;40973:68;;;;-1:-1:-1;;;40973:68:0;;;;;;;:::i;:::-;46825:13:::1;::::0;;-1:-1:-1;;46808:30:0;::::1;46825:13;::::0;;::::1;46824:14;46808:30;::::0;;46750:96::o;36160:172::-;36257:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;36257:29:0;-1:-1:-1;;;;;36257:29:0;;;;;;;;;36298:28;;36257:24;;36298:28;;;;;;;36160:172;;;:::o;34525:1529::-;34622:35;34660:20;34672:7;34660:11;:20::i;:::-;34731:18;;34622:58;;-1:-1:-1;34689:22:0;;-1:-1:-1;;;;;34715:34:0;23518:10;-1:-1:-1;;;;;34715:34:0;;:81;;;-1:-1:-1;23518:10:0;34760:20;34772:7;34760:11;:20::i;:::-;-1:-1:-1;;;;;34760:36:0;;34715:81;:142;;;-1:-1:-1;34824:18:0;;34807:50;;23518:10;31253:186;:::i;34807:50::-;34689:169;;34883:17;34867:101;;;;-1:-1:-1;;;34867:101:0;;13754:2:1;34867:101:0;;;13736:21:1;13793:2;13773:18;;;13766:30;13832:34;13812:18;;;13805:62;-1:-1:-1;;;13883:18:1;;;13876:48;13941:19;;34867:101:0;13552:414:1;34867:101:0;35015:4;-1:-1:-1;;;;;34993:26:0;:13;:18;;;-1:-1:-1;;;;;34993:26:0;;34977:98;;;;-1:-1:-1;;;34977:98:0;;12215:2:1;34977:98:0;;;12197:21:1;12254:2;12234:18;;;12227:30;12293:34;12273:18;;;12266:62;-1:-1:-1;;;12344:18:1;;;12337:36;12390:19;;34977:98:0;12013:402:1;34977:98:0;-1:-1:-1;;;;;35090:16:0;;35082:66;;;;-1:-1:-1;;;35082:66:0;;10288:2:1;35082:66:0;;;10270:21:1;10327:2;10307:18;;;10300:30;10366:34;10346:18;;;10339:62;-1:-1:-1;;;10417:18:1;;;10410:35;10462:19;;35082:66:0;10086:401:1;35082:66:0;35257:49;35274:1;35278:7;35287:13;:18;;;35257:8;:49::i;:::-;-1:-1:-1;;;;;35315:18:0;;;;;;:12;:18;;;;;:31;;35345:1;;35315:18;:31;;35345:1;;-1:-1:-1;;;;;35315:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;35315:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;35353:16:0;;-1:-1:-1;35353:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;35353:16:0;;:29;;-1:-1:-1;;35353:29:0;;:::i;:::-;;;-1:-1:-1;;;;;35353:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35412:43:0;;;;;;;;-1:-1:-1;;;;;35412:43:0;;;;;;35438:15;35412:43;;;;;;;;;-1:-1:-1;35389:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;35389:66:0;-1:-1:-1;;;;;;35389:66:0;;;;;;;;;;;35705:11;35401:7;-1:-1:-1;35705:11:0;:::i;:::-;35768:1;35727:24;;;:11;:24;;;;;:29;35683:33;;-1:-1:-1;;;;;;35727:29:0;35723:236;;35785:20;35793:11;32560:12;;-1:-1:-1;32550:22:0;32473:105;35785:20;35781:171;;;35845:97;;;;;;;;35872:18;;-1:-1:-1;;;;;35845:97:0;;;;;;35903:28;;;;35845:97;;;;;;;;;;-1:-1:-1;35818:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;35818:124:0;-1:-1:-1;;;;;;35818:124:0;;;;;;;;;;;;35781:171;35991:7;35987:2;-1:-1:-1;;;;;35972:27:0;35981:4;-1:-1:-1;;;;;35972:27:0;;;;;;;;;;;36006:42;34615:1439;;;34525:1529;;;:::o;28286:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;28403:16:0;28411:7;32560:12;;-1:-1:-1;32550:22:0;32473:105;28403:16;28395:71;;;;-1:-1:-1;;;28395:71:0;;9120:2:1;28395:71:0;;;9102:21:1;9159:2;9139:18;;;9132:30;9198:34;9178:18;;;9171:62;-1:-1:-1;;;9249:18:1;;;9242:40;9299:19;;28395:71:0;8918:406:1;28395:71:0;28475:26;28523:12;28512:7;:23;28508:93;;28567:22;28577:12;28567:7;:22;:::i;:::-;:26;;28592:1;28567:26;:::i;:::-;28546:47;;28508:93;28629:7;28609:212;28646:18;28638:4;:26;28609:212;;28683:31;28717:17;;;:11;:17;;;;;;;;;28683:51;;;;;;;;;-1:-1:-1;;;;;28683:51:0;;;;;-1:-1:-1;;;28683:51:0;;;;;;;;;;;;28747:28;28743:71;;28795:9;28286:606;-1:-1:-1;;;;28286:606:0:o;28743:71::-;-1:-1:-1;28666:6:0;;;;:::i;:::-;;;;28609:212;;;-1:-1:-1;28829:57:0;;-1:-1:-1;;;28829:57:0;;17264:2:1;28829:57:0;;;17246:21:1;17303:2;17283:18;;;17276:30;17342:34;17322:18;;;17315:62;-1:-1:-1;;;17393:18:1;;;17386:45;17448:19;;28829:57:0;17062:411:1;42031:191:0;42105:16;42124:6;;-1:-1:-1;;;;;42141:17:0;;;-1:-1:-1;;;;;;42141:17:0;;;;;;42174:40;;42124:6;;;;;;;42174:40;;42105:16;42174:40;42094:128;42031:191;:::o;32584:98::-;32649:27;32659:2;32663:8;32649:27;;;;;;;;;;;;:9;:27::i;43137:190::-;43262:4;43315;43286:25;43299:5;43306:4;43286:12;:25::i;:::-;:33;;43137:190;-1:-1:-1;;;;43137:190:0:o;37875:690::-;38012:4;-1:-1:-1;;;;;38029:13:0;;1143:20;1191:8;38025:535;;38068:72;;-1:-1:-1;;;38068:72:0;;-1:-1:-1;;;;;38068:36:0;;;;;:72;;23518:10;;38119:4;;38125:7;;38134:5;;38068:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38068:72:0;;;;;;;;-1:-1:-1;;38068:72:0;;;;;;;;;;;;:::i;:::-;;;38055:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38299:13:0;;38295:215;;38332:61;;-1:-1:-1;;;38332:61:0;;;;;;;:::i;38295:215::-;38478:6;38472:13;38463:6;38459:2;38455:15;38448:38;38055:464;-1:-1:-1;;;;;;38190:55:0;-1:-1:-1;;;38190:55:0;;-1:-1:-1;38183:62:0;;38025:535;-1:-1:-1;38548:4:0;38025:535;37875:690;;;;;;:::o;46968:114::-;47028:13;47061;47054:20;;;;;:::i;18241:723::-;18297:13;18518:10;18514:53;;-1:-1:-1;;18545:10:0;;;;;;;;;;;;-1:-1:-1;;;18545:10:0;;;;;18241:723::o;18514:53::-;18592:5;18577:12;18633:78;18640:9;;18633:78;;18666:8;;;;:::i;:::-;;-1:-1:-1;18689:10:0;;-1:-1:-1;18697:2:0;18689:10;;:::i;:::-;;;18633:78;;;18721:19;18753:6;18743:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18743:17:0;;18721:39;;18771:154;18778:10;;18771:154;;18805:11;18815:1;18805:11;;:::i;:::-;;-1:-1:-1;18874:10:0;18882:2;18874:5;:10;:::i;:::-;18861:24;;:2;:24;:::i;:::-;18848:39;;18831:6;18838;18831:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;18831:56:0;;;;;;;;-1:-1:-1;18902:11:0;18911:2;18902:11;;:::i;:::-;;;18771:154;;33021:1272;33149:12;;-1:-1:-1;;;;;33176:16:0;;33168:62;;;;-1:-1:-1;;;33168:62:0;;16447:2:1;33168:62:0;;;16429:21:1;16486:2;16466:18;;;16459:30;16525:34;16505:18;;;16498:62;-1:-1:-1;;;16576:18:1;;;16569:31;16617:19;;33168:62:0;16245:397:1;33168:62:0;33367:21;33375:12;32560;;-1:-1:-1;32550:22:0;32473:105;33367:21;33366:22;33358:64;;;;-1:-1:-1;;;33358:64:0;;16089:2:1;33358:64:0;;;16071:21:1;16128:2;16108:18;;;16101:30;16167:31;16147:18;;;16140:59;16216:18;;33358:64:0;15887:353:1;33358:64:0;33449:12;33437:8;:24;;33429:71;;;;-1:-1:-1;;;33429:71:0;;18094:2:1;33429:71:0;;;18076:21:1;18133:2;18113:18;;;18106:30;18172:34;18152:18;;;18145:62;-1:-1:-1;;;18223:18:1;;;18216:32;18265:19;;33429:71:0;17892:398:1;33429:71:0;-1:-1:-1;;;;;33612:16:0;;33579:30;33612:16;;;:12;:16;;;;;;;;;33579:49;;;;;;;;;-1:-1:-1;;;;;33579:49:0;;;;;-1:-1:-1;;;33579:49:0;;;;;;;;;;;33654:119;;;;;;;;33674:19;;33579:49;;33654:119;;;33674:39;;33704:8;;33674:39;:::i;:::-;-1:-1:-1;;;;;33654:119:0;;;;;33757:8;33722:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;33654:119:0;;;;;;-1:-1:-1;;;;;33635:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;33635:138:0;;;;;;;;;;;;33808:43;;;;;;;;;;;33834:15;33808:43;;;;;;;;33780:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;33780:71:0;-1:-1:-1;;;;;;33780:71:0;;;;;;;;;;;;;;;;;;33792:12;;33904:281;33928:8;33924:1;:12;33904:281;;;33957:38;;33982:12;;-1:-1:-1;;;;;33957:38:0;;;33974:1;;33957:38;;33974:1;;33957:38;34022:59;34053:1;34057:2;34061:12;34075:5;34022:22;:59::i;:::-;34004:150;;;;-1:-1:-1;;;34004:150:0;;;;;;;:::i;:::-;34163:14;;;;:::i;:::-;;;;33938:3;;;;;:::i;:::-;;;;33904:281;;;-1:-1:-1;34193:12:0;:27;;;34227:60;46040:501;43689:701;43772:7;43815:4;43772:7;43830:523;43854:5;:12;43850:1;:16;43830:523;;;43888:20;43911:5;43917:1;43911:8;;;;;;;;:::i;:::-;;;;;;;43888:31;;43954:12;43938;:28;43934:408;;44091:44;;;;;;5553:19:1;;;5588:12;;;5581:28;;;5625:12;;44091:44:0;;;;;;;;;;;;44081:55;;;;;;44066:70;;43934:408;;;44281:44;;;;;;5553:19:1;;;5588:12;;;5581:28;;;5625:12;;44281:44:0;;;;;;;;;;;;44271:55;;;;;;44256:70;;43934:408;-1:-1:-1;43868:3:0;;;;:::i;:::-;;;;43830:523;;;-1:-1:-1;44370:12:0;43689:701;-1:-1:-1;;;43689:701:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:1138::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:53;;;1170:1;1167;1160:12;1121:53;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:38;1275:2;1264:9;1260:18;1241:38;:::i;:::-;1231:48;;1326:2;1315:9;1311:18;1298:32;1288:42;;1381:2;1370:9;1366:18;1353:32;1404:18;1445:2;1437:6;1434:14;1431:34;;;1461:1;1458;1451:12;1431:34;1499:6;1488:9;1484:22;1474:32;;1544:7;1537:4;1533:2;1529:13;1525:27;1515:55;;1566:1;1563;1556:12;1515:55;1602:2;1589:16;1624:2;1620;1617:10;1614:36;;;1630:18;;:::i;:::-;1705:2;1699:9;1673:2;1759:13;;-1:-1:-1;;1755:22:1;;;1779:2;1751:31;1747:40;1735:53;;;1803:18;;;1823:22;;;1800:46;1797:72;;;1849:18;;:::i;:::-;1889:10;1885:2;1878:22;1924:2;1916:6;1909:18;1964:7;1959:2;1954;1950;1946:11;1942:20;1939:33;1936:53;;;1985:1;1982;1975:12;1936:53;2041:2;2036;2032;2028:11;2023:2;2015:6;2011:15;1998:46;2086:1;2081:2;2076;2068:6;2064:15;2060:24;2053:35;2107:6;2097:16;;;;;;;981:1138;;;;;;;:::o;2124:347::-;2189:6;2197;2250:2;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2289:29;2308:9;2289:29;:::i;:::-;2279:39;;2368:2;2357:9;2353:18;2340:32;2415:5;2408:13;2401:21;2394:5;2391:32;2381:60;;2437:1;2434;2427:12;2381:60;2460:5;2450:15;;;2124:347;;;;;:::o;2476:254::-;2544:6;2552;2605:2;2593:9;2584:7;2580:23;2576:32;2573:52;;;2621:1;2618;2611:12;2573:52;2644:29;2663:9;2644:29;:::i;:::-;2634:39;2720:2;2705:18;;;;2692:32;;-1:-1:-1;;;2476:254:1:o;2735:689::-;2830:6;2838;2846;2899:2;2887:9;2878:7;2874:23;2870:32;2867:52;;;2915:1;2912;2905:12;2867:52;2955:9;2942:23;2984:18;3025:2;3017:6;3014:14;3011:34;;;3041:1;3038;3031:12;3011:34;3079:6;3068:9;3064:22;3054:32;;3124:7;3117:4;3113:2;3109:13;3105:27;3095:55;;3146:1;3143;3136:12;3095:55;3186:2;3173:16;3212:2;3204:6;3201:14;3198:34;;;3228:1;3225;3218:12;3198:34;3283:7;3276:4;3266:6;3263:1;3259:14;3255:2;3251:23;3247:34;3244:47;3241:67;;;3304:1;3301;3294:12;3241:67;3335:4;3327:13;;;;3359:6;;-1:-1:-1;3397:20:1;;;;3384:34;;2735:689;-1:-1:-1;;;;2735:689:1:o;3429:180::-;3488:6;3541:2;3529:9;3520:7;3516:23;3512:32;3509:52;;;3557:1;3554;3547:12;3509:52;-1:-1:-1;3580:23:1;;3429:180;-1:-1:-1;3429:180:1:o;3614:245::-;3672:6;3725:2;3713:9;3704:7;3700:23;3696:32;3693:52;;;3741:1;3738;3731:12;3693:52;3780:9;3767:23;3799:30;3823:5;3799:30;:::i;3864:249::-;3933:6;3986:2;3974:9;3965:7;3961:23;3957:32;3954:52;;;4002:1;3999;3992:12;3954:52;4034:9;4028:16;4053:30;4077:5;4053:30;:::i;4118:592::-;4189:6;4197;4250:2;4238:9;4229:7;4225:23;4221:32;4218:52;;;4266:1;4263;4256:12;4218:52;4306:9;4293:23;4335:18;4376:2;4368:6;4365:14;4362:34;;;4392:1;4389;4382:12;4362:34;4430:6;4419:9;4415:22;4405:32;;4475:7;4468:4;4464:2;4460:13;4456:27;4446:55;;4497:1;4494;4487:12;4446:55;4537:2;4524:16;4563:2;4555:6;4552:14;4549:34;;;4579:1;4576;4569:12;4549:34;4624:7;4619:2;4610:6;4606:2;4602:15;4598:24;4595:37;4592:57;;;4645:1;4642;4635:12;4592:57;4676:2;4668:11;;;;;4698:6;;-1:-1:-1;4118:592:1;;-1:-1:-1;;;;4118:592:1:o;4900:257::-;4941:3;4979:5;4973:12;5006:6;5001:3;4994:19;5022:63;5078:6;5071:4;5066:3;5062:14;5055:4;5048:5;5044:16;5022:63;:::i;:::-;5139:2;5118:15;-1:-1:-1;;5114:29:1;5105:39;;;;5146:4;5101:50;;4900:257;-1:-1:-1;;4900:257:1:o;5648:470::-;5827:3;5865:6;5859:13;5881:53;5927:6;5922:3;5915:4;5907:6;5903:17;5881:53;:::i;:::-;5997:13;;5956:16;;;;6019:57;5997:13;5956:16;6053:4;6041:17;;6019:57;:::i;:::-;6092:20;;5648:470;-1:-1:-1;;;;5648:470:1:o;6331:488::-;-1:-1:-1;;;;;6600:15:1;;;6582:34;;6652:15;;6647:2;6632:18;;6625:43;6699:2;6684:18;;6677:34;;;6747:3;6742:2;6727:18;;6720:31;;;6525:4;;6768:45;;6793:19;;6785:6;6768:45;:::i;:::-;6760:53;6331:488;-1:-1:-1;;;;;;6331:488:1:o;7198:219::-;7347:2;7336:9;7329:21;7310:4;7367:44;7407:2;7396:9;7392:18;7384:6;7367:44;:::i;7825:341::-;8027:2;8009:21;;;8066:2;8046:18;;;8039:30;-1:-1:-1;;;8100:2:1;8085:18;;8078:47;8157:2;8142:18;;7825:341::o;12420:356::-;12622:2;12604:21;;;12641:18;;;12634:30;12700:34;12695:2;12680:18;;12673:62;12767:2;12752:18;;12420:356::o;15467:415::-;15669:2;15651:21;;;15708:2;15688:18;;;15681:30;15747:34;15742:2;15727:18;;15720:62;-1:-1:-1;;;15813:2:1;15798:18;;15791:49;15872:3;15857:19;;15467:415::o;18477:253::-;18517:3;-1:-1:-1;;;;;18606:2:1;18603:1;18599:10;18636:2;18633:1;18629:10;18667:3;18663:2;18659:12;18654:3;18651:21;18648:47;;;18675:18;;:::i;18735:128::-;18775:3;18806:1;18802:6;18799:1;18796:13;18793:39;;;18812:18;;:::i;:::-;-1:-1:-1;18848:9:1;;18735:128::o;18868:120::-;18908:1;18934;18924:35;;18939:18;;:::i;:::-;-1:-1:-1;18973:9:1;;18868:120::o;18993:168::-;19033:7;19099:1;19095;19091:6;19087:14;19084:1;19081:21;19076:1;19069:9;19062:17;19058:45;19055:71;;;19106:18;;:::i;:::-;-1:-1:-1;19146:9:1;;18993:168::o;19166:246::-;19206:4;-1:-1:-1;;;;;19319:10:1;;;;19289;;19341:12;;;19338:38;;;19356:18;;:::i;:::-;19393:13;;19166:246;-1:-1:-1;;;19166:246:1:o;19417:125::-;19457:4;19485:1;19482;19479:8;19476:34;;;19490:18;;:::i;:::-;-1:-1:-1;19527:9:1;;19417:125::o;19547:258::-;19619:1;19629:113;19643:6;19640:1;19637:13;19629:113;;;19719:11;;;19713:18;19700:11;;;19693:39;19665:2;19658:10;19629:113;;;19760:6;19757:1;19754:13;19751:48;;;-1:-1:-1;;19795:1:1;19777:16;;19770:27;19547:258::o;19810:136::-;19849:3;19877:5;19867:39;;19886:18;;:::i;:::-;-1:-1:-1;;;19922:18:1;;19810:136::o;19951:380::-;20030:1;20026:12;;;;20073;;;20094:61;;20148:4;20140:6;20136:17;20126:27;;20094:61;20201:2;20193:6;20190:14;20170:18;20167:38;20164:161;;;20247:10;20242:3;20238:20;20235:1;20228:31;20282:4;20279:1;20272:15;20310:4;20307:1;20300:15;20164:161;;19951:380;;;:::o;20336:135::-;20375:3;-1:-1:-1;;20396:17:1;;20393:43;;;20416:18;;:::i;:::-;-1:-1:-1;20463:1:1;20452:13;;20336:135::o;20476:112::-;20508:1;20534;20524:35;;20539:18;;:::i;:::-;-1:-1:-1;20573:9:1;;20476:112::o;20593:127::-;20654:10;20649:3;20645:20;20642:1;20635:31;20685:4;20682:1;20675:15;20709:4;20706:1;20699:15;20725:127;20786:10;20781:3;20777:20;20774:1;20767:31;20817:4;20814:1;20807:15;20841:4;20838:1;20831:15;20857:127;20918:10;20913:3;20909:20;20906:1;20899:31;20949:4;20946:1;20939:15;20973:4;20970:1;20963:15;20989:127;21050:10;21045:3;21041:20;21038:1;21031:31;21081:4;21078:1;21071:15;21105:4;21102:1;21095:15;21121:131;-1:-1:-1;;;;;;21195:32:1;;21185:43;;21175:71;;21242:1;21239;21232:12

Swarm Source

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