ETH Price: $3,089.36 (+0.03%)
Gas: 5 Gwei

Token

Space Pals (PALS)
 

Overview

Max Total Supply

3,104 PALS

Holders

1,624

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 PALS
0xbaee3e7368223d1ae47c179bf7da2529b67b84fb
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-07
*/

// 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.1 ether;
    uint256 public constant MAX_PALS_PURCHASE = 2;
    uint256 public constant MAX_PALS = 10000;
    uint256 public constant MAX_BATCH_SIZE = 5;
    address private constant PALS_TEAM = 0x9A4d2B0AA37FF77dBCf8281bcE1Ba2518f5386E1;

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

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

    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");
        require(publicAddressMintCount[msg.sender] + amount <= MAX_PALS_PURCHASE, "Address already minted allocation");
        
        publicAddressMintCount[msg.sender] += amount;
        _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":[{"internalType":"address","name":"","type":"address"}],"name":"publicAddressMintCount","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"}]

60c060405260006001819055600855600a805461ffff191690553480156200002657600080fd5b506040518060400160405280600a81526020016953706163652050616c7360b01b8152506040518060400160405280600481526020016350414c5360e01b815250600561271062000086620000806200019760201b60201c565b6200019b565b60008111620000f35760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001555760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b6064820152608401620000ea565b83516200016a906002906020870190620001eb565b50825162000180906003906020860190620001eb565b5060a09190915260805250506001600955620002ce565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001f99062000291565b90600052602060002090601f0160209004810192826200021d576000855562000268565b82601f106200023857805160ff191683800117855562000268565b8280016001018555821562000268579182015b82811115620002685782518255916020019190600101906200024b565b50620002769291506200027a565b5090565b5b808211156200027657600081556001016200027b565b600181811c90821680620002a657607f821691505b60208210811415620002c857634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a0516127e2620002ff600039600081816119440152818161196e0152611dc40152600050506127e26000f3fe60806040526004361061021a5760003560e01c806370a0823111610123578063a0712d68116100ab578063cfdbf2541161006f578063cfdbf254146105fb578063d7224ba014610610578063e985e9c514610626578063f2fde38b1461066f578063f81227d41461068f57600080fd5b8063a0712d6814610575578063a22cb46514610588578063ad7f1ea1146105a8578063b88d4fde146105bb578063c87b56dd146105db57600080fd5b8063882b1808116100f2578063882b1808146104f15780638d4d959b146105065780638d859f3e146105265780638da5cb5b1461054257806395d89b411461056057600080fd5b806370a082311461046f578063715018a61461048f5780637cb64759146104a45780637db5a636146104c457600080fd5b80632eb4a7ab116101a657806342842e0e1161017557806342842e0e146103d05780634f6ccce7146103f057806355f804b3146104105780635e5f3ce4146104305780636352211e1461044f57600080fd5b80632eb4a7ab146103705780632f745c5914610386578063366e9191146103a65780633ccfd60b146103bb57600080fd5b8063095ea7b3116101ed578063095ea7b3146102e957806318160ddd1461030b57806318675d0e1461032057806323b872dd146103365780632c9ad1fb1461035657600080fd5b806301ffc9a71461021f57806306fdde031461025457806307e4d48014610276578063081812fc146102b1575b600080fd5b34801561022b57600080fd5b5061023f61023a36600461239a565b6106a4565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b50610269610711565b60405161024b91906124de565b34801561028257600080fd5b506102a361029136600461213a565b600d6020526000908152604090205481565b60405190815260200161024b565b3480156102bd57600080fd5b506102d16102cc366004612381565b6107a3565b6040516001600160a01b03909116815260200161024b565b3480156102f557600080fd5b506103096103043660046122dc565b610833565b005b34801561031757600080fd5b506001546102a3565b34801561032c57600080fd5b506102a361271081565b34801561034257600080fd5b50610309610351366004612188565b61094b565b34801561036257600080fd5b50600a5461023f9060ff1681565b34801561037c57600080fd5b506102a3600b5481565b34801561039257600080fd5b506102a36103a13660046122dc565b610956565b3480156103b257600080fd5b506102a3600281565b3480156103c757600080fd5b50610309610acf565b3480156103dc57600080fd5b506103096103eb366004612188565b610b3c565b3480156103fc57600080fd5b506102a361040b366004612381565b610b57565b34801561041c57600080fd5b5061030961042b3660046123d4565b610bc0565b34801561043c57600080fd5b50600a5461023f90610100900460ff1681565b34801561045b57600080fd5b506102d161046a366004612381565b610bf6565b34801561047b57600080fd5b506102a361048a36600461213a565b610c08565b34801561049b57600080fd5b50610309610c99565b3480156104b057600080fd5b506103096104bf366004612381565b610ccf565b3480156104d057600080fd5b506102a36104df36600461213a565b600c6020526000908152604090205481565b3480156104fd57600080fd5b50610309610cfe565b34801561051257600080fd5b50610309610521366004612381565b610d45565b34801561053257600080fd5b506102a367016345785d8a000081565b34801561054e57600080fd5b506000546001600160a01b03166102d1565b34801561056c57600080fd5b50610269610df0565b610309610583366004612381565b610dff565b34801561059457600080fd5b506103096105a33660046122a0565b610fc9565b6103096105b6366004612306565b61108e565b3480156105c757600080fd5b506103096105d63660046121c4565b611308565b3480156105e757600080fd5b506102696105f6366004612381565b61133b565b34801561060757600080fd5b506102a3600581565b34801561061c57600080fd5b506102a360085481565b34801561063257600080fd5b5061023f610641366004612155565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561067b57600080fd5b5061030961068a36600461213a565b611408565b34801561069b57600080fd5b506103096114a0565b60006001600160e01b031982166380ac58cd60e01b14806106d557506001600160e01b03198216635b5e139f60e01b145b806106f057506001600160e01b0319821663780e9d6360e01b145b8061070b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610720906126d4565b80601f016020809104026020016040519081016040528092919081815260200182805461074c906126d4565b80156107995780601f1061076e57610100808354040283529160200191610799565b820191906000526020600020905b81548152906001019060200180831161077c57829003601f168201915b5050505050905090565b60006107b0826001541190565b6108175760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061083e82610bf6565b9050806001600160a01b0316836001600160a01b031614156108ad5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161080e565b336001600160a01b03821614806108c957506108c98133610641565b61093b5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161080e565b6109468383836114de565b505050565b61094683838361153a565b600061096183610c08565b82106109ba5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161080e565b60006109c560015490565b905060008060005b83811015610a6f576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610a2057805192505b876001600160a01b0316836001600160a01b03161415610a5c5786841415610a4e5750935061070b92505050565b83610a588161270f565b9450505b5080610a678161270f565b9150506109cd565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161080e565b6000546001600160a01b03163314610af95760405162461bcd60e51b815260040161080e9061251c565b604051739a4d2b0aa37ff77dbcf8281bce1ba2518f5386e1904780156108fc02916000818181858888f19350505050158015610b39573d6000803e3d6000fd5b50565b61094683838360405180602001604052806000815250611308565b6000610b6260015490565b8210610bbc5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161080e565b5090565b6000546001600160a01b03163314610bea5760405162461bcd60e51b815260040161080e9061251c565b610946600e838361208e565b6000610c01826118c2565b5192915050565b60006001600160a01b038216610c745760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161080e565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610cc35760405162461bcd60e51b815260040161080e9061251c565b610ccd6000611a6c565b565b6000546001600160a01b03163314610cf95760405162461bcd60e51b815260040161080e9061251c565b600b55565b6000546001600160a01b03163314610d285760405162461bcd60e51b815260040161080e9061251c565b600a805461ff001981166101009182900460ff1615909102179055565b6000546001600160a01b03163314610d6f5760405162461bcd60e51b815260040161080e9061251c565b61271081610d7c60015490565b610d869190612607565b1115610da45760405162461bcd60e51b815260040161080e906124f1565b610daf60058261272a565b15610db957600080fd5b6000610dc660058361261f565b905060005b8181101561094657610dde336005611abc565b80610de88161270f565b915050610dcb565b606060038054610720906126d4565b80333214610e3d5760405162461bcd60e51b815260206004820152600b60248201526a4e6f206368656174696e6760a81b604482015260640161080e565b34610e508267016345785d8a0000612633565b1115610e925760405162461bcd60e51b815260206004820152601160248201527057726f6e672065746865722076616c756560781b604482015260640161080e565b61271081610e9f60015490565b610ea99190612607565b1115610ec75760405162461bcd60e51b815260040161080e906124f1565b6002811115610f135760405162461bcd60e51b8152602060048201526018602482015277022bc31b2b2b239903a37b5b2b7103a3c37103634b6b4ba160451b604482015260640161080e565b600a54610100900460ff16610f5a5760405162461bcd60e51b815260206004820152600d60248201526c53616c65206e6f74206c69766560981b604482015260640161080e565b336000908152600d6020526040902054600290610f78908490612607565b1115610f965760405162461bcd60e51b815260040161080e90612551565b336000908152600d602052604081208054849290610fb5908490612607565b90915550610fc590503383611abc565b5050565b6001600160a01b0382163314156110225760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161080e565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b803332146110cc5760405162461bcd60e51b815260206004820152600b60248201526a4e6f206368656174696e6760a81b604482015260640161080e565b346110df8267016345785d8a0000612633565b11156111215760405162461bcd60e51b815260206004820152601160248201527057726f6e672065746865722076616c756560781b604482015260640161080e565b6127108161112e60015490565b6111389190612607565b11156111565760405162461bcd60e51b815260040161080e906124f1565b60028111156111a25760405162461bcd60e51b8152602060048201526018602482015277022bc31b2b2b239903a37b5b2b7103a3c37103634b6b4ba160451b604482015260640161080e565b600a5460ff166111e75760405162461bcd60e51b815260206004820152601060248201526f50726573616c65206e6f74206c69766560801b604482015260640161080e565b61125c84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600b546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120611ad6565b6112975760405162461bcd60e51b815260206004820152600c60248201526b4e6f7420656c696769626c6560a01b604482015260640161080e565b336000908152600c60205260409020546002906112b5908490612607565b11156112d35760405162461bcd60e51b815260040161080e90612551565b336000908152600c6020526040812080548492906112f2908490612607565b9091555061130290503383611abc565b50505050565b61131384848461153a565b61131f84848484611aec565b6113025760405162461bcd60e51b815260040161080e90612592565b6060611348826001541190565b6113ac5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161080e565b60006113b6611bfa565b905060008151116113d65760405180602001604052806000815250611401565b806113e084611c09565b6040516020016113f1929190612472565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146114325760405162461bcd60e51b815260040161080e9061251c565b6001600160a01b0381166114975760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161080e565b610b3981611a6c565b6000546001600160a01b031633146114ca5760405162461bcd60e51b815260040161080e9061251c565b600a805460ff19811660ff90911615179055565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611545826118c2565b80519091506000906001600160a01b0316336001600160a01b0316148061157c575033611571846107a3565b6001600160a01b0316145b8061158e5750815161158e9033610641565b9050806115f85760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161080e565b846001600160a01b031682600001516001600160a01b03161461166c5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161080e565b6001600160a01b0384166116d05760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161080e565b6116e060008484600001516114de565b6001600160a01b03851660009081526005602052604081208054600192906117129084906001600160801b0316612652565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261175e918591166125e5565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556117e6846001612607565b6000818152600460205260409020549091506001600160a01b031661187857611810816001541190565b156118785760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60408051808201909152600080825260208201526118e1826001541190565b6119405760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161080e565b60007f000000000000000000000000000000000000000000000000000000000000000083106119a1576119937f00000000000000000000000000000000000000000000000000000000000000008461267a565b61199e906001612607565b90505b825b818110611a0b576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156119f857949350505050565b5080611a03816126bd565b9150506119a3565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b606482015260840161080e565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610fc5828260405180602001604052806000815250611d07565b600082611ae38584611fe2565b14949350505050565b60006001600160a01b0384163b15611bee57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b309033908990889088906004016124a1565b602060405180830381600087803b158015611b4a57600080fd5b505af1925050508015611b7a575060408051601f3d908101601f19168201909252611b77918101906123b7565b60015b611bd4573d808015611ba8576040519150601f19603f3d011682016040523d82523d6000602084013e611bad565b606091505b508051611bcc5760405162461bcd60e51b815260040161080e90612592565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611bf2565b5060015b949350505050565b6060600e8054610720906126d4565b606081611c2d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c575780611c418161270f565b9150611c509050600a8361261f565b9150611c31565b60008167ffffffffffffffff811115611c7257611c72612780565b6040519080825280601f01601f191660200182016040528015611c9c576020820181803683370190505b5090505b8415611bf257611cb160018361267a565b9150611cbe600a8661272a565b611cc9906030612607565b60f81b818381518110611cde57611cde61276a565b60200101906001600160f81b031916908160001a905350611d00600a8661261f565b9450611ca0565b6001546001600160a01b038416611d6a5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161080e565b611d75816001541190565b15611dc25760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161080e565b7f0000000000000000000000000000000000000000000000000000000000000000831115611e3d5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b606482015260840161080e565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611e999087906125e5565b6001600160801b03168152602001858360200151611eb791906125e5565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611fd75760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611f9b6000888488611aec565b611fb75760405162461bcd60e51b815260040161080e90612592565b81611fc18161270f565b9250508080611fcf9061270f565b915050611f4e565b5060018190556118ba565b600081815b84518110156120865760008582815181106120045761200461276a565b60200260200101519050808311612046576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612073565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061207e8161270f565b915050611fe7565b509392505050565b82805461209a906126d4565b90600052602060002090601f0160209004810192826120bc5760008555612102565b82601f106120d55782800160ff19823516178555612102565b82800160010185558215612102579182015b828111156121025782358255916020019190600101906120e7565b50610bbc9291505b80821115610bbc576000815560010161210a565b80356001600160a01b038116811461213557600080fd5b919050565b60006020828403121561214c57600080fd5b6114018261211e565b6000806040838503121561216857600080fd5b6121718361211e565b915061217f6020840161211e565b90509250929050565b60008060006060848603121561219d57600080fd5b6121a68461211e565b92506121b46020850161211e565b9150604084013590509250925092565b600080600080608085870312156121da57600080fd5b6121e38561211e565b93506121f16020860161211e565b925060408501359150606085013567ffffffffffffffff8082111561221557600080fd5b818701915087601f83011261222957600080fd5b81358181111561223b5761223b612780565b604051601f8201601f19908116603f0116810190838211818310171561226357612263612780565b816040528281528a602084870101111561227c57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156122b357600080fd5b6122bc8361211e565b9150602083013580151581146122d157600080fd5b809150509250929050565b600080604083850312156122ef57600080fd5b6122f88361211e565b946020939093013593505050565b60008060006040848603121561231b57600080fd5b833567ffffffffffffffff8082111561233357600080fd5b818601915086601f83011261234757600080fd5b81358181111561235657600080fd5b8760208260051b850101111561236b57600080fd5b6020928301989097509590910135949350505050565b60006020828403121561239357600080fd5b5035919050565b6000602082840312156123ac57600080fd5b813561140181612796565b6000602082840312156123c957600080fd5b815161140181612796565b600080602083850312156123e757600080fd5b823567ffffffffffffffff808211156123ff57600080fd5b818501915085601f83011261241357600080fd5b81358181111561242257600080fd5b86602082850101111561243457600080fd5b60209290920196919550909350505050565b6000815180845261245e816020860160208601612691565b601f01601f19169290920160200192915050565b60008351612484818460208801612691565b835190830190612498818360208801612691565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124d490830184612446565b9695505050505050565b6020815260006114016020830184612446565b6020808252601190820152704e6f7420656e6f75676820737570706c7960781b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f4164647265737320616c7265616479206d696e74656420616c6c6f636174696f6040820152603760f91b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156124985761249861273e565b6000821982111561261a5761261a61273e565b500190565b60008261262e5761262e612754565b500490565b600081600019048311821515161561264d5761264d61273e565b500290565b60006001600160801b03838116908316818110156126725761267261273e565b039392505050565b60008282101561268c5761268c61273e565b500390565b60005b838110156126ac578181015183820152602001612694565b838111156113025750506000910152565b6000816126cc576126cc61273e565b506000190190565b600181811c908216806126e857607f821691505b6020821081141561270957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127235761272361273e565b5060010190565b60008261273957612739612754565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b3957600080fdfea2646970667358221220040b8bad5bc699c66db5f70fb49e369e144b771f00958040f71411c9856d834264736f6c63430008070033

Deployed Bytecode

0x60806040526004361061021a5760003560e01c806370a0823111610123578063a0712d68116100ab578063cfdbf2541161006f578063cfdbf254146105fb578063d7224ba014610610578063e985e9c514610626578063f2fde38b1461066f578063f81227d41461068f57600080fd5b8063a0712d6814610575578063a22cb46514610588578063ad7f1ea1146105a8578063b88d4fde146105bb578063c87b56dd146105db57600080fd5b8063882b1808116100f2578063882b1808146104f15780638d4d959b146105065780638d859f3e146105265780638da5cb5b1461054257806395d89b411461056057600080fd5b806370a082311461046f578063715018a61461048f5780637cb64759146104a45780637db5a636146104c457600080fd5b80632eb4a7ab116101a657806342842e0e1161017557806342842e0e146103d05780634f6ccce7146103f057806355f804b3146104105780635e5f3ce4146104305780636352211e1461044f57600080fd5b80632eb4a7ab146103705780632f745c5914610386578063366e9191146103a65780633ccfd60b146103bb57600080fd5b8063095ea7b3116101ed578063095ea7b3146102e957806318160ddd1461030b57806318675d0e1461032057806323b872dd146103365780632c9ad1fb1461035657600080fd5b806301ffc9a71461021f57806306fdde031461025457806307e4d48014610276578063081812fc146102b1575b600080fd5b34801561022b57600080fd5b5061023f61023a36600461239a565b6106a4565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b50610269610711565b60405161024b91906124de565b34801561028257600080fd5b506102a361029136600461213a565b600d6020526000908152604090205481565b60405190815260200161024b565b3480156102bd57600080fd5b506102d16102cc366004612381565b6107a3565b6040516001600160a01b03909116815260200161024b565b3480156102f557600080fd5b506103096103043660046122dc565b610833565b005b34801561031757600080fd5b506001546102a3565b34801561032c57600080fd5b506102a361271081565b34801561034257600080fd5b50610309610351366004612188565b61094b565b34801561036257600080fd5b50600a5461023f9060ff1681565b34801561037c57600080fd5b506102a3600b5481565b34801561039257600080fd5b506102a36103a13660046122dc565b610956565b3480156103b257600080fd5b506102a3600281565b3480156103c757600080fd5b50610309610acf565b3480156103dc57600080fd5b506103096103eb366004612188565b610b3c565b3480156103fc57600080fd5b506102a361040b366004612381565b610b57565b34801561041c57600080fd5b5061030961042b3660046123d4565b610bc0565b34801561043c57600080fd5b50600a5461023f90610100900460ff1681565b34801561045b57600080fd5b506102d161046a366004612381565b610bf6565b34801561047b57600080fd5b506102a361048a36600461213a565b610c08565b34801561049b57600080fd5b50610309610c99565b3480156104b057600080fd5b506103096104bf366004612381565b610ccf565b3480156104d057600080fd5b506102a36104df36600461213a565b600c6020526000908152604090205481565b3480156104fd57600080fd5b50610309610cfe565b34801561051257600080fd5b50610309610521366004612381565b610d45565b34801561053257600080fd5b506102a367016345785d8a000081565b34801561054e57600080fd5b506000546001600160a01b03166102d1565b34801561056c57600080fd5b50610269610df0565b610309610583366004612381565b610dff565b34801561059457600080fd5b506103096105a33660046122a0565b610fc9565b6103096105b6366004612306565b61108e565b3480156105c757600080fd5b506103096105d63660046121c4565b611308565b3480156105e757600080fd5b506102696105f6366004612381565b61133b565b34801561060757600080fd5b506102a3600581565b34801561061c57600080fd5b506102a360085481565b34801561063257600080fd5b5061023f610641366004612155565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561067b57600080fd5b5061030961068a36600461213a565b611408565b34801561069b57600080fd5b506103096114a0565b60006001600160e01b031982166380ac58cd60e01b14806106d557506001600160e01b03198216635b5e139f60e01b145b806106f057506001600160e01b0319821663780e9d6360e01b145b8061070b57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610720906126d4565b80601f016020809104026020016040519081016040528092919081815260200182805461074c906126d4565b80156107995780601f1061076e57610100808354040283529160200191610799565b820191906000526020600020905b81548152906001019060200180831161077c57829003601f168201915b5050505050905090565b60006107b0826001541190565b6108175760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061083e82610bf6565b9050806001600160a01b0316836001600160a01b031614156108ad5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161080e565b336001600160a01b03821614806108c957506108c98133610641565b61093b5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161080e565b6109468383836114de565b505050565b61094683838361153a565b600061096183610c08565b82106109ba5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161080e565b60006109c560015490565b905060008060005b83811015610a6f576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610a2057805192505b876001600160a01b0316836001600160a01b03161415610a5c5786841415610a4e5750935061070b92505050565b83610a588161270f565b9450505b5080610a678161270f565b9150506109cd565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161080e565b6000546001600160a01b03163314610af95760405162461bcd60e51b815260040161080e9061251c565b604051739a4d2b0aa37ff77dbcf8281bce1ba2518f5386e1904780156108fc02916000818181858888f19350505050158015610b39573d6000803e3d6000fd5b50565b61094683838360405180602001604052806000815250611308565b6000610b6260015490565b8210610bbc5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161080e565b5090565b6000546001600160a01b03163314610bea5760405162461bcd60e51b815260040161080e9061251c565b610946600e838361208e565b6000610c01826118c2565b5192915050565b60006001600160a01b038216610c745760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161080e565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610cc35760405162461bcd60e51b815260040161080e9061251c565b610ccd6000611a6c565b565b6000546001600160a01b03163314610cf95760405162461bcd60e51b815260040161080e9061251c565b600b55565b6000546001600160a01b03163314610d285760405162461bcd60e51b815260040161080e9061251c565b600a805461ff001981166101009182900460ff1615909102179055565b6000546001600160a01b03163314610d6f5760405162461bcd60e51b815260040161080e9061251c565b61271081610d7c60015490565b610d869190612607565b1115610da45760405162461bcd60e51b815260040161080e906124f1565b610daf60058261272a565b15610db957600080fd5b6000610dc660058361261f565b905060005b8181101561094657610dde336005611abc565b80610de88161270f565b915050610dcb565b606060038054610720906126d4565b80333214610e3d5760405162461bcd60e51b815260206004820152600b60248201526a4e6f206368656174696e6760a81b604482015260640161080e565b34610e508267016345785d8a0000612633565b1115610e925760405162461bcd60e51b815260206004820152601160248201527057726f6e672065746865722076616c756560781b604482015260640161080e565b61271081610e9f60015490565b610ea99190612607565b1115610ec75760405162461bcd60e51b815260040161080e906124f1565b6002811115610f135760405162461bcd60e51b8152602060048201526018602482015277022bc31b2b2b239903a37b5b2b7103a3c37103634b6b4ba160451b604482015260640161080e565b600a54610100900460ff16610f5a5760405162461bcd60e51b815260206004820152600d60248201526c53616c65206e6f74206c69766560981b604482015260640161080e565b336000908152600d6020526040902054600290610f78908490612607565b1115610f965760405162461bcd60e51b815260040161080e90612551565b336000908152600d602052604081208054849290610fb5908490612607565b90915550610fc590503383611abc565b5050565b6001600160a01b0382163314156110225760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161080e565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b803332146110cc5760405162461bcd60e51b815260206004820152600b60248201526a4e6f206368656174696e6760a81b604482015260640161080e565b346110df8267016345785d8a0000612633565b11156111215760405162461bcd60e51b815260206004820152601160248201527057726f6e672065746865722076616c756560781b604482015260640161080e565b6127108161112e60015490565b6111389190612607565b11156111565760405162461bcd60e51b815260040161080e906124f1565b60028111156111a25760405162461bcd60e51b8152602060048201526018602482015277022bc31b2b2b239903a37b5b2b7103a3c37103634b6b4ba160451b604482015260640161080e565b600a5460ff166111e75760405162461bcd60e51b815260206004820152601060248201526f50726573616c65206e6f74206c69766560801b604482015260640161080e565b61125c84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600b546040516bffffffffffffffffffffffff193360601b166020820152909250603401905060405160208183030381529060405280519060200120611ad6565b6112975760405162461bcd60e51b815260206004820152600c60248201526b4e6f7420656c696769626c6560a01b604482015260640161080e565b336000908152600c60205260409020546002906112b5908490612607565b11156112d35760405162461bcd60e51b815260040161080e90612551565b336000908152600c6020526040812080548492906112f2908490612607565b9091555061130290503383611abc565b50505050565b61131384848461153a565b61131f84848484611aec565b6113025760405162461bcd60e51b815260040161080e90612592565b6060611348826001541190565b6113ac5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161080e565b60006113b6611bfa565b905060008151116113d65760405180602001604052806000815250611401565b806113e084611c09565b6040516020016113f1929190612472565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146114325760405162461bcd60e51b815260040161080e9061251c565b6001600160a01b0381166114975760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161080e565b610b3981611a6c565b6000546001600160a01b031633146114ca5760405162461bcd60e51b815260040161080e9061251c565b600a805460ff19811660ff90911615179055565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611545826118c2565b80519091506000906001600160a01b0316336001600160a01b0316148061157c575033611571846107a3565b6001600160a01b0316145b8061158e5750815161158e9033610641565b9050806115f85760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161080e565b846001600160a01b031682600001516001600160a01b03161461166c5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161080e565b6001600160a01b0384166116d05760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161080e565b6116e060008484600001516114de565b6001600160a01b03851660009081526005602052604081208054600192906117129084906001600160801b0316612652565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261175e918591166125e5565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556117e6846001612607565b6000818152600460205260409020549091506001600160a01b031661187857611810816001541190565b156118785760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b60408051808201909152600080825260208201526118e1826001541190565b6119405760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161080e565b60007f000000000000000000000000000000000000000000000000000000000000000583106119a1576119937f00000000000000000000000000000000000000000000000000000000000000058461267a565b61199e906001612607565b90505b825b818110611a0b576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156119f857949350505050565b5080611a03816126bd565b9150506119a3565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b606482015260840161080e565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610fc5828260405180602001604052806000815250611d07565b600082611ae38584611fe2565b14949350505050565b60006001600160a01b0384163b15611bee57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611b309033908990889088906004016124a1565b602060405180830381600087803b158015611b4a57600080fd5b505af1925050508015611b7a575060408051601f3d908101601f19168201909252611b77918101906123b7565b60015b611bd4573d808015611ba8576040519150601f19603f3d011682016040523d82523d6000602084013e611bad565b606091505b508051611bcc5760405162461bcd60e51b815260040161080e90612592565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611bf2565b5060015b949350505050565b6060600e8054610720906126d4565b606081611c2d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c575780611c418161270f565b9150611c509050600a8361261f565b9150611c31565b60008167ffffffffffffffff811115611c7257611c72612780565b6040519080825280601f01601f191660200182016040528015611c9c576020820181803683370190505b5090505b8415611bf257611cb160018361267a565b9150611cbe600a8661272a565b611cc9906030612607565b60f81b818381518110611cde57611cde61276a565b60200101906001600160f81b031916908160001a905350611d00600a8661261f565b9450611ca0565b6001546001600160a01b038416611d6a5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161080e565b611d75816001541190565b15611dc25760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161080e565b7f0000000000000000000000000000000000000000000000000000000000000005831115611e3d5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b606482015260840161080e565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611e999087906125e5565b6001600160801b03168152602001858360200151611eb791906125e5565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611fd75760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611f9b6000888488611aec565b611fb75760405162461bcd60e51b815260040161080e90612592565b81611fc18161270f565b9250508080611fcf9061270f565b915050611f4e565b5060018190556118ba565b600081815b84518110156120865760008582815181106120045761200461276a565b60200260200101519050808311612046576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612073565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061207e8161270f565b915050611fe7565b509392505050565b82805461209a906126d4565b90600052602060002090601f0160209004810192826120bc5760008555612102565b82601f106120d55782800160ff19823516178555612102565b82800160010185558215612102579182015b828111156121025782358255916020019190600101906120e7565b50610bbc9291505b80821115610bbc576000815560010161210a565b80356001600160a01b038116811461213557600080fd5b919050565b60006020828403121561214c57600080fd5b6114018261211e565b6000806040838503121561216857600080fd5b6121718361211e565b915061217f6020840161211e565b90509250929050565b60008060006060848603121561219d57600080fd5b6121a68461211e565b92506121b46020850161211e565b9150604084013590509250925092565b600080600080608085870312156121da57600080fd5b6121e38561211e565b93506121f16020860161211e565b925060408501359150606085013567ffffffffffffffff8082111561221557600080fd5b818701915087601f83011261222957600080fd5b81358181111561223b5761223b612780565b604051601f8201601f19908116603f0116810190838211818310171561226357612263612780565b816040528281528a602084870101111561227c57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156122b357600080fd5b6122bc8361211e565b9150602083013580151581146122d157600080fd5b809150509250929050565b600080604083850312156122ef57600080fd5b6122f88361211e565b946020939093013593505050565b60008060006040848603121561231b57600080fd5b833567ffffffffffffffff8082111561233357600080fd5b818601915086601f83011261234757600080fd5b81358181111561235657600080fd5b8760208260051b850101111561236b57600080fd5b6020928301989097509590910135949350505050565b60006020828403121561239357600080fd5b5035919050565b6000602082840312156123ac57600080fd5b813561140181612796565b6000602082840312156123c957600080fd5b815161140181612796565b600080602083850312156123e757600080fd5b823567ffffffffffffffff808211156123ff57600080fd5b818501915085601f83011261241357600080fd5b81358181111561242257600080fd5b86602082850101111561243457600080fd5b60209290920196919550909350505050565b6000815180845261245e816020860160208601612691565b601f01601f19169290920160200192915050565b60008351612484818460208801612691565b835190830190612498818360208801612691565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124d490830184612446565b9695505050505050565b6020815260006114016020830184612446565b6020808252601190820152704e6f7420656e6f75676820737570706c7960781b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526021908201527f4164647265737320616c7265616479206d696e74656420616c6c6f636174696f6040820152603760f91b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156124985761249861273e565b6000821982111561261a5761261a61273e565b500190565b60008261262e5761262e612754565b500490565b600081600019048311821515161561264d5761264d61273e565b500290565b60006001600160801b03838116908316818110156126725761267261273e565b039392505050565b60008282101561268c5761268c61273e565b500390565b60005b838110156126ac578181015183820152602001612694565b838111156113025750506000910152565b6000816126cc576126cc61273e565b506000190190565b600181811c908216806126e857607f821691505b6020821081141561270957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127235761272361273e565b5060010190565b60008261273957612739612754565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b3957600080fdfea2646970667358221220040b8bad5bc699c66db5f70fb49e369e144b771f00958040f71411c9856d834264736f6c63430008070033

Deployed Bytecode Sourcemap

44501:2945: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;45026:57::-;;;;;;;;;;-1:-1:-1;45026:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;7162:25:1;;;7150:2;7135:18;45026:57:0;7016:177:1;30648:204:0;;;;;;;;;;-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;;44664:40;;;;;;;;;;;;44699:5;44664:40;;31498:142;;;;;;;;;;-1:-1:-1;31498:142:0;;;;;:::i;:::-;;:::i;44848:33::-;;;;;;;;;;-1:-1:-1;44848:33:0;;;;;;;;44929:25;;;;;;;;;;;;;;;;26589:744;;;;;;;;;;-1:-1:-1;26589:744:0;;;;;:::i;:::-;;:::i;44612:45::-;;;;;;;;;;;;44656:1;44612:45;;47335:108;;;;;;;;;;;;;:::i;31703:157::-;;;;;;;;;;-1:-1:-1;31703:157:0;;;;;:::i;:::-;;:::i;26121:177::-;;;;;;;;;;-1:-1:-1;26121:177:0;;;;;:::i;:::-;;:::i;47099:106::-;;;;;;;;;;-1:-1:-1;47099:106:0;;;;;:::i;:::-;;:::i;44888:32::-;;;;;;;;;;-1:-1:-1;44888: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;46794:92::-;;;;;;;;;;-1:-1:-1;46794:92:0;;;;;:::i;:::-;;:::i;44961:58::-;;;;;;;;;;-1:-1:-1;44961:58:0;;;;;:::i;:::-;;;;;;;;;;;;;;46894:93;;;;;;;;;;;;;:::i;45570:351::-;;;;;;;;;;-1:-1:-1;45570:351:0;;;;;:::i;:::-;;:::i;44564:41::-;;;;;;;;;;;;44596:9;44564:41;;40761:87;;;;;;;;;;-1:-1:-1;40807:7:0;40834:6;-1:-1:-1;;;;;40834:6:0;40761:87;;29278:98;;;;;;;;;;;;;:::i;45929:348::-;;;;;;:::i;:::-;;:::i;30916:274::-;;;;;;;;;;-1:-1:-1;30916:274:0;;;;;:::i;:::-;;:::i;46285:501::-;;;;;;:::i;:::-;;:::i;31923:311::-;;;;;;;;;;-1:-1:-1;31923:311:0;;;;;:::i;:::-;;:::i;29439:394::-;;;;;;;;;;-1:-1:-1;29439:394:0;;;;;:::i;:::-;;:::i;44711:42::-;;;;;;;;;;;;44752:1;44711:42;;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;46995: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;47335: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;:::-;47385:50:::1;::::0;44797:42:::1;::::0;47413:21:::1;47385:50:::0;::::1;;;::::0;::::1;::::0;;;47413:21;44797:42;47385:50;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;47335: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;47099:106::-;40807:7;40834:6;-1:-1:-1;;;;;40834:6:0;23518:10;40981:23;40973:68;;;;-1:-1:-1;;;40973:68:0;;;;;;;:::i;:::-;47174:23:::1;:13;47190:7:::0;;47174: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;46794:92::-;40807:7;40834:6;-1:-1:-1;;;;;40834:6:0;23518:10;40981:23;40973:68;;;;-1:-1:-1;;;40973:68:0;;;;;;;:::i;:::-;46861:10:::1;:17:::0;46794:92::o;46894:93::-;40807:7;40834:6;-1:-1:-1;;;;;40834:6:0;23518:10;40981:23;40973:68;;;;-1:-1:-1;;;40973:68:0;;;;;;;:::i;:::-;46967:12:::1;::::0;;-1:-1:-1;;46951:28:0;::::1;46967:12;::::0;;;::::1;;;46966:13;46951:28:::0;;::::1;;::::0;;46894:93::o;45570:351::-;40807:7;40834:6;-1:-1:-1;;;;;40834:6:0;23518:10;40981:23;40973:68;;;;-1:-1:-1;;;40973:68:0;;;;;;;:::i;:::-;44699:5:::1;45661:6;45645:13;26034:12:::0;;;25958:94;45645:13:::1;:22;;;;:::i;:::-;:34;;45637:64;;;;-1:-1:-1::0;;;45637:64:0::1;;;;;;;:::i;:::-;45720:23;44752:1;45720:6:::0;:23:::1;:::i;:::-;:28:::0;45712:37:::1;;;::::0;::::1;;45762:14;45779:23;44752:1;45779:6:::0;:23:::1;:::i;:::-;45762:40;;45818:9;45813:101;45837:6;45833:1;:10;45813:101;;;45865:37;45875:10;44752:1;45865:9;:37::i;:::-;45845:3:::0;::::1;::::0;::::1;:::i;:::-;;;;45813:101;;29278:98:::0;29334:13;29363:7;29356:14;;;;;:::i;45929:348::-;45986:6;45273:10;45287:9;45273:23;45265:47;;;;-1:-1:-1;;;45265:47:0;;8373:2:1;45265:47:0;;;8355:21:1;8412:2;8392:18;;;8385:30;-1:-1:-1;;;8431:18:1;;;8424:41;8482:18;;45265:47:0;8171:335:1;45265:47:0;45353:9;45331:18;45339:10;44596:9;45331:18;:::i;:::-;:31;;45323:61;;;;-1:-1:-1;;;45323:61:0;;14173:2:1;45323:61:0;;;14155:21:1;14212:2;14192:18;;;14185:30;-1:-1:-1;;;14231:18:1;;;14224:47;14288:18;;45323:61:0;13971:341:1;45323:61:0;44699:5;45419:10;45403:13;26034:12;;;25958:94;45403:13;:26;;;;:::i;:::-;:38;;45395:68;;;;-1:-1:-1;;;45395:68:0;;;;;;;:::i;:::-;44656:1;45482:10;:31;;45474:68;;;;-1:-1:-1;;;45474:68:0;;9935:2:1;45474:68:0;;;9917:21:1;9974:2;9954:18;;;9947:30;-1:-1:-1;;;9993:18:1;;;9986:54;10057:18;;45474:68:0;9733:348:1;45474:68:0;46013:12:::1;::::0;::::1;::::0;::::1;;;46005:38;;;::::0;-1:-1:-1;;;46005:38:0;;11873:2:1;46005: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;;46005:38:0::1;11671:337:1::0;46005:38:0::1;46085:10;46062:34;::::0;;;:22:::1;:34;::::0;;;;;44656:1:::1;::::0;46062:43:::1;::::0;46099:6;;46062:43:::1;:::i;:::-;:64;;46054:110;;;;-1:-1:-1::0;;;46054:110:0::1;;;;;;;:::i;:::-;46208:10;46185:34;::::0;;;:22:::1;:34;::::0;;;;:44;;46223:6;;46185:34;:44:::1;::::0;46223:6;;46185:44:::1;:::i;:::-;::::0;;;-1:-1:-1;46240:29:0::1;::::0;-1:-1:-1;46250:10:0::1;46262:6:::0;46240:9:::1;:29::i;:::-;45929:348:::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;46285:501::-;46375:6;45273:10;45287:9;45273:23;45265:47;;;;-1:-1:-1;;;45265:47:0;;8373:2:1;45265:47:0;;;8355:21:1;8412:2;8392:18;;;8385:30;-1:-1:-1;;;8431:18:1;;;8424:41;8482:18;;45265:47:0;8171:335:1;45265:47:0;45353:9;45331:18;45339:10;44596:9;45331:18;:::i;:::-;:31;;45323:61;;;;-1:-1:-1;;;45323:61:0;;14173:2:1;45323:61:0;;;14155:21:1;14212:2;14192:18;;;14185:30;-1:-1:-1;;;14231:18:1;;;14224:47;14288:18;;45323:61:0;13971:341:1;45323:61:0;44699:5;45419:10;45403:13;26034:12;;;25958:94;45403:13;:26;;;;:::i;:::-;:38;;45395:68;;;;-1:-1:-1;;;45395:68:0;;;;;;;:::i;:::-;44656:1;45482:10;:31;;45474:68;;;;-1:-1:-1;;;45474:68:0;;9935:2:1;45474:68:0;;;9917:21:1;9974:2;9954:18;;;9947:30;-1:-1:-1;;;9993:18:1;;;9986:54;10057:18;;45474:68:0;9733:348:1;45474:68:0;46402:13:::1;::::0;::::1;;46394:42;;;::::0;-1:-1:-1;;;46394:42:0;;14921:2:1;46394: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;;46394:42:0::1;14719:340:1::0;46394:42:0::1;46455:78;46474:5;;46455:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;;46481:10:0::1;::::0;46503:28:::1;::::0;-1:-1:-1;;46520:10:0::1;5311:2:1::0;5307:15;5303:53;46503:28:0::1;::::0;::::1;5291:66:1::0;46481:10:0;;-1:-1:-1;5373:12:1;;;-1:-1:-1;46503:28:0::1;;;;;;;;;;;;46493:39;;;;;;46455:18;:78::i;:::-;46447:103;;;::::0;-1:-1:-1;;;46447:103:0;;10694:2:1;46447: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;;46447:103:0::1;10492:336:1::0;46447:103:0::1;46593:10;46569:35;::::0;;;:23:::1;:35;::::0;;;;;44656:1:::1;::::0;46569:44:::1;::::0;46607:6;;46569:44:::1;:::i;:::-;:65;;46561:111;;;;-1:-1:-1::0;;;46561:111:0::1;;;;;;;:::i;:::-;46717:10;46693:35;::::0;;;:23:::1;:35;::::0;;;;:45;;46732:6;;46693:35;:45:::1;::::0;46732:6;;46693:45:::1;:::i;:::-;::::0;;;-1:-1:-1;46749:29:0::1;::::0;-1:-1:-1;46759:10:0::1;46771:6:::0;46749:9:::1;:29::i;:::-;46285: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;46995: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;:::-;47070:13:::1;::::0;;-1:-1:-1;;47053:30:0;::::1;47070:13;::::0;;::::1;47069:14;47053:30;::::0;;46995: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;47213:114::-;47273:13;47306;47299: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;46285: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;14317:397::-;14519:2;14501:21;;;14558:2;14538:18;;;14531:30;14597:34;14592:2;14577:18;;14570:62;-1:-1:-1;;;14663:2:1;14648:18;;14641:31;14704:3;14689:19;;14317:397::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://040b8bad5bc699c66db5f70fb49e369e144b771f00958040f71411c9856d8342
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.