ETH Price: $2,954.17 (-1.95%)
Gas: 4 Gwei

Token

Moon Stamps (MOON)
 

Overview

Max Total Supply

1,952 MOON

Holders

186

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
animala.eth
Balance
5 MOON
0x0298a2553479f38df0493c70d265964100c40fc4
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:
MoonStamps

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// 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/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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 (last updated v4.5.0) (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);

    /**
     * @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/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: contracts/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: contracts/Project.sol



pragma solidity ^0.8.0;
/**
*/





contract MoonStamps is Ownable, ERC721A, ReentrancyGuard {
    bool publicSale = true;
    uint256 nbFree = 169;
    uint256 public price = 0.0015 ether;

    constructor() ERC721A("Moon Stamps", "MOON", 10, 1969) {}

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    function setFree(uint256 nb) external onlyOwner {
        nbFree = nb;
    }

    function freeMint(uint256 quantity) external callerIsUser {
        require(publicSale, "Public sale has not begun yet");
        require(totalSupply() + quantity <= nbFree, "Reached max free supply");
        require(quantity <= 10, "can not mint this many free at a time");
        _safeMint(msg.sender, quantity);
    }

    function mint(uint256 quantity) external payable callerIsUser {
        require(publicSale, "Public sale has not begun yet");
        require(
            totalSupply() + quantity <= collectionSize,
            "Reached max supply"
        );
        require(quantity <= 10, "can not mint this many at a time");
        require(
            price * quantity <= msg.value,
            "Ether value sent is not correct"
        );

        _safeMint(msg.sender, quantity);
    }

	function setprice(uint256 _newprice) public onlyOwner {
	    price = _newprice;
	}

    // metadata URI
    string private _baseTokenURI =
        "ipfs://private/";

    function initMint() external onlyOwner {
        _safeMint(msg.sender, 1); // As the collection starts at 0, this first mint is for the deployer ...
    }

    
    function setSaleState(bool state) external onlyOwner {
        publicSale = state;
    }

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

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

    function withdrawMoney() external onlyOwner nonReentrant {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }

    function setOwnersExplicit(uint256 quantity)
        external
        onlyOwner
        nonReentrant
    {
        _setOwnersExplicit(quantity);
    }

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    function getOwnershipData(uint256 tokenId)
        external
        view
        returns (TokenOwnership memory)
    {
        return ownershipOf(tokenId);
    }
    
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"nb","type":"uint256"}],"name":"setFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"state","type":"bool"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newprice","type":"uint256"}],"name":"setprice","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":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60006001818155600891909155600a805460ff1916909117905560a9600b556605543df729c000600c55610100604052600f60c08190526e697066733a2f2f707269766174652f60881b60e09081526200005d91600d919062000231565b503480156200006b57600080fd5b506040518060400160405280600b81526020016a4d6f6f6e205374616d707360a81b8152506040518060400160405280600481526020016326a7a7a760e11b815250600a6107b1620000cc620000c6620001dd60201b60201c565b620001e1565b60008111620001395760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b600082116200019b5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000130565b8351620001b090600290602087019062000231565b508251620001c690600390602086019062000231565b5060a0919091526080525050600160095562000314565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200023f90620002d7565b90600052602060002090601f016020900481019282620002635760008555620002ae565b82601f106200027e57805160ff1916838001178555620002ae565b82800160010185558215620002ae579182015b82811115620002ae57825182559160200191906001019062000291565b50620002bc929150620002c0565b5090565b5b80821115620002bc5760008155600101620002c1565b600181811c90821680620002ec57607f821691505b602082108114156200030e57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a0516128216200035660003960008181611a7101528181611a9b0152611f7d015260008181610ee10152818161187601526118a801526128216000f3fe6080604052600436106101e35760003560e01c80638da5cb5b11610102578063c4e3709511610095578063dc33e68111610064578063dc33e68114610582578063e0737f7a146105a2578063e985e9c5146105b7578063f2fde38b1461060057600080fd5b8063c4e370951461050c578063c87b56dd1461052c578063d49f0fa51461054c578063d7224ba01461056c57600080fd5b8063a0712d68116100d1578063a0712d68146104a4578063a22cb465146104b7578063ac446002146104d7578063b88d4fde146104ec57600080fd5b80638da5cb5b1461040d5780639231ab2a1461042b57806395d89b4114610479578063a035b1fe1461048e57600080fd5b806342842e0e1161017a5780637040d73f116101495780637040d73f1461039857806370a08231146103b8578063715018a6146103d85780637c928fe9146103ed57600080fd5b806342842e0e146103185780634f6ccce71461033857806355f804b3146103585780636352211e1461037857600080fd5b806318160ddd116101b657806318160ddd1461029957806323b872dd146102b85780632d20fb60146102d85780632f745c59146102f857600080fd5b806301ffc9a7146101e857806306fdde031461021d578063081812fc1461023f578063095ea7b314610277575b600080fd5b3480156101f457600080fd5b5061020861020336600461242c565b610620565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b5061023261068d565b6040516102149190612589565b34801561024b57600080fd5b5061025f61025a3660046124d8565b61071f565b6040516001600160a01b039091168152602001610214565b34801561028357600080fd5b506102976102923660046123e7565b6107af565b005b3480156102a557600080fd5b506001545b604051908152602001610214565b3480156102c457600080fd5b506102976102d33660046122a5565b6108c7565b3480156102e457600080fd5b506102976102f33660046124d8565b6108d2565b34801561030457600080fd5b506102aa6103133660046123e7565b610965565b34801561032457600080fd5b506102976103333660046122a5565b610ade565b34801561034457600080fd5b506102aa6103533660046124d8565b610af9565b34801561036457600080fd5b50610297610373366004612466565b610b62565b34801561038457600080fd5b5061025f6103933660046124d8565b610b98565b3480156103a457600080fd5b506102976103b33660046124d8565b610baa565b3480156103c457600080fd5b506102aa6103d3366004612257565b610bd9565b3480156103e457600080fd5b50610297610c6a565b3480156103f957600080fd5b506102976104083660046124d8565b610ca0565b34801561041957600080fd5b506000546001600160a01b031661025f565b34801561043757600080fd5b5061044b6104463660046124d8565b610e12565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff169281019290925201610214565b34801561048557600080fd5b50610232610e2f565b34801561049a57600080fd5b506102aa600c5481565b6102976104b23660046124d8565b610e3e565b3480156104c357600080fd5b506102976104d23660046123bd565b611005565b3480156104e357600080fd5b506102976110ca565b3480156104f857600080fd5b506102976105073660046122e1565b6111d7565b34801561051857600080fd5b50610297610527366004612411565b611210565b34801561053857600080fd5b506102326105473660046124d8565b61124d565b34801561055857600080fd5b506102976105673660046124d8565b61131a565b34801561057857600080fd5b506102aa60085481565b34801561058e57600080fd5b506102aa61059d366004612257565b611349565b3480156105ae57600080fd5b50610297611354565b3480156105c357600080fd5b506102086105d2366004612272565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561060c57600080fd5b5061029761061b366004612257565b611389565b60006001600160e01b031982166380ac58cd60e01b148061065157506001600160e01b03198216635b5e139f60e01b145b8061066c57506001600160e01b0319821663780e9d6360e01b145b8061068757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461069c90612713565b80601f01602080910402602001604051908101604052809291908181526020018280546106c890612713565b80156107155780601f106106ea57610100808354040283529160200191610715565b820191906000526020600020905b8154815290600101906020018083116106f857829003601f168201915b5050505050905090565b600061072c826001541190565b6107935760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107ba82610b98565b9050806001600160a01b0316836001600160a01b031614156108295760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161078a565b336001600160a01b0382161480610845575061084581336105d2565b6108b75760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161078a565b6108c2838383611421565b505050565b6108c283838361147d565b6000546001600160a01b031633146108fc5760405162461bcd60e51b815260040161078a9061259c565b6002600954141561094f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161078a565b600260095561095d81611805565b506001600955565b600061097083610bd9565b82106109c95760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161078a565b60006109d460015490565b905060008060005b83811015610a7e576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610a2f57805192505b876001600160a01b0316836001600160a01b03161415610a6b5786841415610a5d5750935061068792505050565b83610a678161274e565b9450505b5080610a768161274e565b9150506109dc565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161078a565b6108c2838383604051806020016040528060008152506111d7565b6000610b0460015490565b8210610b5e5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161078a565b5090565b6000546001600160a01b03163314610b8c5760405162461bcd60e51b815260040161078a9061259c565b6108c2600d838361219b565b6000610ba3826119ef565b5192915050565b6000546001600160a01b03163314610bd45760405162461bcd60e51b815260040161078a9061259c565b600b55565b60006001600160a01b038216610c455760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161078a565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610c945760405162461bcd60e51b815260040161078a9061259c565b610c9e6000611b99565b565b323314610cef5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604482015260640161078a565b600a5460ff16610d415760405162461bcd60e51b815260206004820152601d60248201527f5075626c69632073616c6520686173206e6f7420626567756e20796574000000604482015260640161078a565b600b5481610d4e60015490565b610d589190612646565b1115610da65760405162461bcd60e51b815260206004820152601760248201527f52656163686564206d6178206672656520737570706c79000000000000000000604482015260640161078a565b600a811115610e055760405162461bcd60e51b815260206004820152602560248201527f63616e206e6f74206d696e742074686973206d616e79206672656520617420616044820152642074696d6560d81b606482015260840161078a565b610e0f3382611be9565b50565b6040805180820190915260008082526020820152610687826119ef565b60606003805461069c90612713565b323314610e8d5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604482015260640161078a565b600a5460ff16610edf5760405162461bcd60e51b815260206004820152601d60248201527f5075626c69632073616c6520686173206e6f7420626567756e20796574000000604482015260640161078a565b7f000000000000000000000000000000000000000000000000000000000000000081610f0a60015490565b610f149190612646565b1115610f575760405162461bcd60e51b815260206004820152601260248201527152656163686564206d617820737570706c7960701b604482015260640161078a565b600a811115610fa85760405162461bcd60e51b815260206004820181905260248201527f63616e206e6f74206d696e742074686973206d616e7920617420612074696d65604482015260640161078a565b3481600c54610fb79190612672565b1115610e055760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161078a565b6001600160a01b03821633141561105e5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161078a565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146110f45760405162461bcd60e51b815260040161078a9061259c565b600260095414156111475760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161078a565b6002600955604051600090339047908381818185875af1925050503d806000811461118e576040519150601f19603f3d011682016040523d82523d6000602084013e611193565b606091505b505090508061095d5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161078a565b6111e284848461147d565b6111ee84848484611c07565b61120a5760405162461bcd60e51b815260040161078a906125d1565b50505050565b6000546001600160a01b0316331461123a5760405162461bcd60e51b815260040161078a9061259c565b600a805460ff1916911515919091179055565b606061125a826001541190565b6112be5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161078a565b60006112c8611d15565b905060008151116112e85760405180602001604052806000815250611313565b806112f284611d24565b60405160200161130392919061251d565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146113445760405162461bcd60e51b815260040161078a9061259c565b600c55565b600061068782611e22565b6000546001600160a01b0316331461137e5760405162461bcd60e51b815260040161078a9061259c565b610c9e336001611be9565b6000546001600160a01b031633146113b35760405162461bcd60e51b815260040161078a9061259c565b6001600160a01b0381166114185760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161078a565b610e0f81611b99565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611488826119ef565b80519091506000906001600160a01b0316336001600160a01b031614806114bf5750336114b48461071f565b6001600160a01b0316145b806114d1575081516114d190336105d2565b90508061153b5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161078a565b846001600160a01b031682600001516001600160a01b0316146115af5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161078a565b6001600160a01b0384166116135760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161078a565b6116236000848460000151611421565b6001600160a01b03851660009081526005602052604081208054600192906116559084906001600160801b0316612691565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260056020526040812080546001945090926116a191859116612624565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611729846001612646565b6000818152600460205260409020549091506001600160a01b03166117bb57611753816001541190565b156117bb5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600854816118555760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000604482015260640161078a565b600060016118638484612646565b61186d91906126b9565b905061189a60017f00000000000000000000000000000000000000000000000000000000000000006126b9565b8111156118cf576118cc60017f00000000000000000000000000000000000000000000000000000000000000006126b9565b90505b6118da816001541190565b6119355760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b606482015260840161078a565b815b8181116119db576000818152600460205260409020546001600160a01b03166119c9576000611965826119ef565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b806119d38161274e565b915050611937565b506119e7816001612646565b600855505050565b6040805180820190915260008082526020820152611a0e826001541190565b611a6d5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161078a565b60007f00000000000000000000000000000000000000000000000000000000000000008310611ace57611ac07f0000000000000000000000000000000000000000000000000000000000000000846126b9565b611acb906001612646565b90505b825b818110611b38576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611b2557949350505050565b5080611b30816126fc565b915050611ad0565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b606482015260840161078a565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b611c03828260405180602001604052806000815250611ec0565b5050565b60006001600160a01b0384163b15611d0957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c4b90339089908890889060040161254c565b602060405180830381600087803b158015611c6557600080fd5b505af1925050508015611c95575060408051601f3d908101601f19168201909252611c9291810190612449565b60015b611cef573d808015611cc3576040519150601f19603f3d011682016040523d82523d6000602084013e611cc8565b606091505b508051611ce75760405162461bcd60e51b815260040161078a906125d1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d0d565b5060015b949350505050565b6060600d805461069c90612713565b606081611d485750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d725780611d5c8161274e565b9150611d6b9050600a8361265e565b9150611d4c565b60008167ffffffffffffffff811115611d8d57611d8d6127bf565b6040519080825280601f01601f191660200182016040528015611db7576020820181803683370190505b5090505b8415611d0d57611dcc6001836126b9565b9150611dd9600a86612769565b611de4906030612646565b60f81b818381518110611df957611df96127a9565b60200101906001600160f81b031916908160001a905350611e1b600a8661265e565b9450611dbb565b60006001600160a01b038216611e945760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b606482015260840161078a565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b038416611f235760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161078a565b611f2e816001541190565b15611f7b5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161078a565b7f0000000000000000000000000000000000000000000000000000000000000000831115611ff65760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b606482015260840161078a565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612052908790612624565b6001600160801b031681526020018583602001516120709190612624565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156121905760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46121546000888488611c07565b6121705760405162461bcd60e51b815260040161078a906125d1565b8161217a8161274e565b92505080806121889061274e565b915050612107565b5060018190556117fd565b8280546121a790612713565b90600052602060002090601f0160209004810192826121c9576000855561220f565b82601f106121e25782800160ff1982351617855561220f565b8280016001018555821561220f579182015b8281111561220f5782358255916020019190600101906121f4565b50610b5e9291505b80821115610b5e5760008155600101612217565b80356001600160a01b038116811461224257600080fd5b919050565b8035801515811461224257600080fd5b60006020828403121561226957600080fd5b6113138261222b565b6000806040838503121561228557600080fd5b61228e8361222b565b915061229c6020840161222b565b90509250929050565b6000806000606084860312156122ba57600080fd5b6122c38461222b565b92506122d16020850161222b565b9150604084013590509250925092565b600080600080608085870312156122f757600080fd5b6123008561222b565b935061230e6020860161222b565b925060408501359150606085013567ffffffffffffffff8082111561233257600080fd5b818701915087601f83011261234657600080fd5b813581811115612358576123586127bf565b604051601f8201601f19908116603f01168101908382118183101715612380576123806127bf565b816040528281528a602084870101111561239957600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156123d057600080fd5b6123d98361222b565b915061229c60208401612247565b600080604083850312156123fa57600080fd5b6124038361222b565b946020939093013593505050565b60006020828403121561242357600080fd5b61131382612247565b60006020828403121561243e57600080fd5b8135611313816127d5565b60006020828403121561245b57600080fd5b8151611313816127d5565b6000806020838503121561247957600080fd5b823567ffffffffffffffff8082111561249157600080fd5b818501915085601f8301126124a557600080fd5b8135818111156124b457600080fd5b8660208285010111156124c657600080fd5b60209290920196919550909350505050565b6000602082840312156124ea57600080fd5b5035919050565b600081518084526125098160208601602086016126d0565b601f01601f19169290920160200192915050565b6000835161252f8184602088016126d0565b8351908301906125438183602088016126d0565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061257f908301846124f1565b9695505050505050565b60208152600061131360208301846124f1565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156125435761254361277d565b600082198211156126595761265961277d565b500190565b60008261266d5761266d612793565b500490565b600081600019048311821515161561268c5761268c61277d565b500290565b60006001600160801b03838116908316818110156126b1576126b161277d565b039392505050565b6000828210156126cb576126cb61277d565b500390565b60005b838110156126eb5781810151838201526020016126d3565b8381111561120a5750506000910152565b60008161270b5761270b61277d565b506000190190565b600181811c9082168061272757607f821691505b6020821081141561274857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127625761276261277d565b5060010190565b60008261277857612778612793565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e0f57600080fdfea26469706673582212200228c44d2351b9c7084a4f673b373eb1467590b49eaf19b7a1db59ed9cc7ccbc64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101e35760003560e01c80638da5cb5b11610102578063c4e3709511610095578063dc33e68111610064578063dc33e68114610582578063e0737f7a146105a2578063e985e9c5146105b7578063f2fde38b1461060057600080fd5b8063c4e370951461050c578063c87b56dd1461052c578063d49f0fa51461054c578063d7224ba01461056c57600080fd5b8063a0712d68116100d1578063a0712d68146104a4578063a22cb465146104b7578063ac446002146104d7578063b88d4fde146104ec57600080fd5b80638da5cb5b1461040d5780639231ab2a1461042b57806395d89b4114610479578063a035b1fe1461048e57600080fd5b806342842e0e1161017a5780637040d73f116101495780637040d73f1461039857806370a08231146103b8578063715018a6146103d85780637c928fe9146103ed57600080fd5b806342842e0e146103185780634f6ccce71461033857806355f804b3146103585780636352211e1461037857600080fd5b806318160ddd116101b657806318160ddd1461029957806323b872dd146102b85780632d20fb60146102d85780632f745c59146102f857600080fd5b806301ffc9a7146101e857806306fdde031461021d578063081812fc1461023f578063095ea7b314610277575b600080fd5b3480156101f457600080fd5b5061020861020336600461242c565b610620565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b5061023261068d565b6040516102149190612589565b34801561024b57600080fd5b5061025f61025a3660046124d8565b61071f565b6040516001600160a01b039091168152602001610214565b34801561028357600080fd5b506102976102923660046123e7565b6107af565b005b3480156102a557600080fd5b506001545b604051908152602001610214565b3480156102c457600080fd5b506102976102d33660046122a5565b6108c7565b3480156102e457600080fd5b506102976102f33660046124d8565b6108d2565b34801561030457600080fd5b506102aa6103133660046123e7565b610965565b34801561032457600080fd5b506102976103333660046122a5565b610ade565b34801561034457600080fd5b506102aa6103533660046124d8565b610af9565b34801561036457600080fd5b50610297610373366004612466565b610b62565b34801561038457600080fd5b5061025f6103933660046124d8565b610b98565b3480156103a457600080fd5b506102976103b33660046124d8565b610baa565b3480156103c457600080fd5b506102aa6103d3366004612257565b610bd9565b3480156103e457600080fd5b50610297610c6a565b3480156103f957600080fd5b506102976104083660046124d8565b610ca0565b34801561041957600080fd5b506000546001600160a01b031661025f565b34801561043757600080fd5b5061044b6104463660046124d8565b610e12565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff169281019290925201610214565b34801561048557600080fd5b50610232610e2f565b34801561049a57600080fd5b506102aa600c5481565b6102976104b23660046124d8565b610e3e565b3480156104c357600080fd5b506102976104d23660046123bd565b611005565b3480156104e357600080fd5b506102976110ca565b3480156104f857600080fd5b506102976105073660046122e1565b6111d7565b34801561051857600080fd5b50610297610527366004612411565b611210565b34801561053857600080fd5b506102326105473660046124d8565b61124d565b34801561055857600080fd5b506102976105673660046124d8565b61131a565b34801561057857600080fd5b506102aa60085481565b34801561058e57600080fd5b506102aa61059d366004612257565b611349565b3480156105ae57600080fd5b50610297611354565b3480156105c357600080fd5b506102086105d2366004612272565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561060c57600080fd5b5061029761061b366004612257565b611389565b60006001600160e01b031982166380ac58cd60e01b148061065157506001600160e01b03198216635b5e139f60e01b145b8061066c57506001600160e01b0319821663780e9d6360e01b145b8061068757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461069c90612713565b80601f01602080910402602001604051908101604052809291908181526020018280546106c890612713565b80156107155780601f106106ea57610100808354040283529160200191610715565b820191906000526020600020905b8154815290600101906020018083116106f857829003601f168201915b5050505050905090565b600061072c826001541190565b6107935760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006107ba82610b98565b9050806001600160a01b0316836001600160a01b031614156108295760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161078a565b336001600160a01b0382161480610845575061084581336105d2565b6108b75760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161078a565b6108c2838383611421565b505050565b6108c283838361147d565b6000546001600160a01b031633146108fc5760405162461bcd60e51b815260040161078a9061259c565b6002600954141561094f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161078a565b600260095561095d81611805565b506001600955565b600061097083610bd9565b82106109c95760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161078a565b60006109d460015490565b905060008060005b83811015610a7e576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610a2f57805192505b876001600160a01b0316836001600160a01b03161415610a6b5786841415610a5d5750935061068792505050565b83610a678161274e565b9450505b5080610a768161274e565b9150506109dc565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161078a565b6108c2838383604051806020016040528060008152506111d7565b6000610b0460015490565b8210610b5e5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161078a565b5090565b6000546001600160a01b03163314610b8c5760405162461bcd60e51b815260040161078a9061259c565b6108c2600d838361219b565b6000610ba3826119ef565b5192915050565b6000546001600160a01b03163314610bd45760405162461bcd60e51b815260040161078a9061259c565b600b55565b60006001600160a01b038216610c455760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161078a565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610c945760405162461bcd60e51b815260040161078a9061259c565b610c9e6000611b99565b565b323314610cef5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604482015260640161078a565b600a5460ff16610d415760405162461bcd60e51b815260206004820152601d60248201527f5075626c69632073616c6520686173206e6f7420626567756e20796574000000604482015260640161078a565b600b5481610d4e60015490565b610d589190612646565b1115610da65760405162461bcd60e51b815260206004820152601760248201527f52656163686564206d6178206672656520737570706c79000000000000000000604482015260640161078a565b600a811115610e055760405162461bcd60e51b815260206004820152602560248201527f63616e206e6f74206d696e742074686973206d616e79206672656520617420616044820152642074696d6560d81b606482015260840161078a565b610e0f3382611be9565b50565b6040805180820190915260008082526020820152610687826119ef565b60606003805461069c90612713565b323314610e8d5760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604482015260640161078a565b600a5460ff16610edf5760405162461bcd60e51b815260206004820152601d60248201527f5075626c69632073616c6520686173206e6f7420626567756e20796574000000604482015260640161078a565b7f00000000000000000000000000000000000000000000000000000000000007b181610f0a60015490565b610f149190612646565b1115610f575760405162461bcd60e51b815260206004820152601260248201527152656163686564206d617820737570706c7960701b604482015260640161078a565b600a811115610fa85760405162461bcd60e51b815260206004820181905260248201527f63616e206e6f74206d696e742074686973206d616e7920617420612074696d65604482015260640161078a565b3481600c54610fb79190612672565b1115610e055760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604482015260640161078a565b6001600160a01b03821633141561105e5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161078a565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b031633146110f45760405162461bcd60e51b815260040161078a9061259c565b600260095414156111475760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161078a565b6002600955604051600090339047908381818185875af1925050503d806000811461118e576040519150601f19603f3d011682016040523d82523d6000602084013e611193565b606091505b505090508061095d5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b604482015260640161078a565b6111e284848461147d565b6111ee84848484611c07565b61120a5760405162461bcd60e51b815260040161078a906125d1565b50505050565b6000546001600160a01b0316331461123a5760405162461bcd60e51b815260040161078a9061259c565b600a805460ff1916911515919091179055565b606061125a826001541190565b6112be5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161078a565b60006112c8611d15565b905060008151116112e85760405180602001604052806000815250611313565b806112f284611d24565b60405160200161130392919061251d565b6040516020818303038152906040525b9392505050565b6000546001600160a01b031633146113445760405162461bcd60e51b815260040161078a9061259c565b600c55565b600061068782611e22565b6000546001600160a01b0316331461137e5760405162461bcd60e51b815260040161078a9061259c565b610c9e336001611be9565b6000546001600160a01b031633146113b35760405162461bcd60e51b815260040161078a9061259c565b6001600160a01b0381166114185760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161078a565b610e0f81611b99565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611488826119ef565b80519091506000906001600160a01b0316336001600160a01b031614806114bf5750336114b48461071f565b6001600160a01b0316145b806114d1575081516114d190336105d2565b90508061153b5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161078a565b846001600160a01b031682600001516001600160a01b0316146115af5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161078a565b6001600160a01b0384166116135760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161078a565b6116236000848460000151611421565b6001600160a01b03851660009081526005602052604081208054600192906116559084906001600160801b0316612691565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260056020526040812080546001945090926116a191859116612624565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611729846001612646565b6000818152600460205260409020549091506001600160a01b03166117bb57611753816001541190565b156117bb5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600854816118555760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000604482015260640161078a565b600060016118638484612646565b61186d91906126b9565b905061189a60017f00000000000000000000000000000000000000000000000000000000000007b16126b9565b8111156118cf576118cc60017f00000000000000000000000000000000000000000000000000000000000007b16126b9565b90505b6118da816001541190565b6119355760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b606482015260840161078a565b815b8181116119db576000818152600460205260409020546001600160a01b03166119c9576000611965826119ef565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b806119d38161274e565b915050611937565b506119e7816001612646565b600855505050565b6040805180820190915260008082526020820152611a0e826001541190565b611a6d5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161078a565b60007f000000000000000000000000000000000000000000000000000000000000000a8310611ace57611ac07f000000000000000000000000000000000000000000000000000000000000000a846126b9565b611acb906001612646565b90505b825b818110611b38576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611b2557949350505050565b5080611b30816126fc565b915050611ad0565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b606482015260840161078a565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b611c03828260405180602001604052806000815250611ec0565b5050565b60006001600160a01b0384163b15611d0957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611c4b90339089908890889060040161254c565b602060405180830381600087803b158015611c6557600080fd5b505af1925050508015611c95575060408051601f3d908101601f19168201909252611c9291810190612449565b60015b611cef573d808015611cc3576040519150601f19603f3d011682016040523d82523d6000602084013e611cc8565b606091505b508051611ce75760405162461bcd60e51b815260040161078a906125d1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d0d565b5060015b949350505050565b6060600d805461069c90612713565b606081611d485750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d725780611d5c8161274e565b9150611d6b9050600a8361265e565b9150611d4c565b60008167ffffffffffffffff811115611d8d57611d8d6127bf565b6040519080825280601f01601f191660200182016040528015611db7576020820181803683370190505b5090505b8415611d0d57611dcc6001836126b9565b9150611dd9600a86612769565b611de4906030612646565b60f81b818381518110611df957611df96127a9565b60200101906001600160f81b031916908160001a905350611e1b600a8661265e565b9450611dbb565b60006001600160a01b038216611e945760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b606482015260840161078a565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b038416611f235760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161078a565b611f2e816001541190565b15611f7b5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161078a565b7f000000000000000000000000000000000000000000000000000000000000000a831115611ff65760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b606482015260840161078a565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612052908790612624565b6001600160801b031681526020018583602001516120709190612624565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156121905760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46121546000888488611c07565b6121705760405162461bcd60e51b815260040161078a906125d1565b8161217a8161274e565b92505080806121889061274e565b915050612107565b5060018190556117fd565b8280546121a790612713565b90600052602060002090601f0160209004810192826121c9576000855561220f565b82601f106121e25782800160ff1982351617855561220f565b8280016001018555821561220f579182015b8281111561220f5782358255916020019190600101906121f4565b50610b5e9291505b80821115610b5e5760008155600101612217565b80356001600160a01b038116811461224257600080fd5b919050565b8035801515811461224257600080fd5b60006020828403121561226957600080fd5b6113138261222b565b6000806040838503121561228557600080fd5b61228e8361222b565b915061229c6020840161222b565b90509250929050565b6000806000606084860312156122ba57600080fd5b6122c38461222b565b92506122d16020850161222b565b9150604084013590509250925092565b600080600080608085870312156122f757600080fd5b6123008561222b565b935061230e6020860161222b565b925060408501359150606085013567ffffffffffffffff8082111561233257600080fd5b818701915087601f83011261234657600080fd5b813581811115612358576123586127bf565b604051601f8201601f19908116603f01168101908382118183101715612380576123806127bf565b816040528281528a602084870101111561239957600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156123d057600080fd5b6123d98361222b565b915061229c60208401612247565b600080604083850312156123fa57600080fd5b6124038361222b565b946020939093013593505050565b60006020828403121561242357600080fd5b61131382612247565b60006020828403121561243e57600080fd5b8135611313816127d5565b60006020828403121561245b57600080fd5b8151611313816127d5565b6000806020838503121561247957600080fd5b823567ffffffffffffffff8082111561249157600080fd5b818501915085601f8301126124a557600080fd5b8135818111156124b457600080fd5b8660208285010111156124c657600080fd5b60209290920196919550909350505050565b6000602082840312156124ea57600080fd5b5035919050565b600081518084526125098160208601602086016126d0565b601f01601f19169290920160200192915050565b6000835161252f8184602088016126d0565b8351908301906125438183602088016126d0565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061257f908301846124f1565b9695505050505050565b60208152600061131360208301846124f1565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156125435761254361277d565b600082198211156126595761265961277d565b500190565b60008261266d5761266d612793565b500490565b600081600019048311821515161561268c5761268c61277d565b500290565b60006001600160801b03838116908316818110156126b1576126b161277d565b039392505050565b6000828210156126cb576126cb61277d565b500390565b60005b838110156126eb5781810151838201526020016126d3565b8381111561120a5750506000910152565b60008161270b5761270b61277d565b506000190190565b600181811c9082168061272757607f821691505b6020821081141561274857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127625761276261277d565b5060010190565b60008261277857612778612793565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e0f57600080fdfea26469706673582212200228c44d2351b9c7084a4f673b373eb1467590b49eaf19b7a1db59ed9cc7ccbc64736f6c63430008070033

Deployed Bytecode Sourcemap

42680:2616:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27766:370;;;;;;;;;;-1:-1:-1;27766:370:0;;;;;:::i;:::-;;:::i;:::-;;;6091:14:1;;6084:22;6066:41;;6054:2;6039:18;27766:370:0;;;;;;;;29492:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;31017:204::-;;;;;;;;;;-1:-1:-1;31017:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5389:32:1;;;5371:51;;5359:2;5344:18;31017:204:0;5225:203:1;30580:379:0;;;;;;;;;;-1:-1:-1;30580:379:0;;;;;:::i;:::-;;:::i;:::-;;26327:94;;;;;;;;;;-1:-1:-1;26403:12:0;;26327:94;;;19337:25:1;;;19325:2;19310:18;26327:94:0;19191:177:1;31867:142:0;;;;;;;;;;-1:-1:-1;31867:142:0;;;;;:::i;:::-;;:::i;44835:156::-;;;;;;;;;;-1:-1:-1;44835:156:0;;;;;:::i;:::-;;:::i;26958:744::-;;;;;;;;;;-1:-1:-1;26958:744:0;;;;;:::i;:::-;;:::i;32072:157::-;;;;;;;;;;-1:-1:-1;32072:157:0;;;;;:::i;:::-;;:::i;26490:177::-;;;;;;;;;;-1:-1:-1;26490:177:0;;;;;:::i;:::-;;:::i;44522:106::-;;;;;;;;;;-1:-1:-1;44522:106:0;;;;;:::i;:::-;;:::i;29315:118::-;;;;;;;;;;-1:-1:-1;29315:118:0;;;;;:::i;:::-;;:::i;43038:78::-;;;;;;;;;;-1:-1:-1;43038:78:0;;;;;:::i;:::-;;:::i;28192:211::-;;;;;;;;;;-1:-1:-1;28192:211:0;;;;;:::i;:::-;;:::i;41781:103::-;;;;;;;;;;;;;:::i;43124:327::-;;;;;;;;;;-1:-1:-1;43124:327:0;;;;;:::i;:::-;;:::i;41130:87::-;;;;;;;;;;-1:-1:-1;41176:7:0;41203:6;-1:-1:-1;;;;;41203:6:0;41130:87;;45120:167;;;;;;;;;;-1:-1:-1;45120:167:0;;;;;:::i;:::-;;:::i;:::-;;;;19056:13:1;;-1:-1:-1;;;;;19052:39:1;19034:58;;19152:4;19140:17;;;19134:24;19160:18;19130:49;19108:20;;;19101:79;;;;19007:18;45120:167:0;18826:360:1;29647:98:0;;;;;;;;;;;;;:::i;42800:35::-;;;;;;;;;;;;;;;;43459:489;;;;;;:::i;:::-;;:::i;31285:274::-;;;;;;;;;;-1:-1:-1;31285:274:0;;;;;:::i;:::-;;:::i;44636:191::-;;;;;;;;;;;;;:::i;32292:311::-;;;;;;;;;;-1:-1:-1;32292:311:0;;;;;:::i;:::-;;:::i;44302:90::-;;;;;;;;;;-1:-1:-1;44302:90:0;;;;;:::i;:::-;;:::i;29808:394::-;;;;;;;;;;-1:-1:-1;29808:394:0;;;;;:::i;:::-;;:::i;43953:84::-;;;;;;;;;;-1:-1:-1;43953:84:0;;;;;:::i;:::-;;:::i;36707:43::-;;;;;;;;;;;;;;;;44999:113;;;;;;;;;;-1:-1:-1;44999:113:0;;;;;:::i;:::-;;:::i;44132:156::-;;;;;;;;;;;;;:::i;31622:186::-;;;;;;;;;;-1:-1:-1;31622:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;31767:25:0;;;31744:4;31767:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31622:186;42039:201;;;;;;;;;;-1:-1:-1;42039:201:0;;;;;:::i;:::-;;:::i;27766:370::-;27893:4;-1:-1:-1;;;;;;27923:40:0;;-1:-1:-1;;;27923:40:0;;:99;;-1:-1:-1;;;;;;;27974:48:0;;-1:-1:-1;;;27974:48:0;27923:99;:160;;;-1:-1:-1;;;;;;;28033:50:0;;-1:-1:-1;;;28033:50:0;27923:160;:207;;;-1:-1:-1;;;;;;;;;;13549:40:0;;;28094:36;27909:221;27766:370;-1:-1:-1;;27766:370:0:o;29492:94::-;29546:13;29575:5;29568:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29492:94;:::o;31017:204::-;31085:7;31109:16;31117:7;32929:12;;-1:-1:-1;32919:22:0;32842:105;31109:16;31101:74;;;;-1:-1:-1;;;31101:74:0;;17805:2:1;31101:74:0;;;17787:21:1;17844:2;17824:18;;;17817:30;17883:34;17863:18;;;17856:62;-1:-1:-1;;;17934:18:1;;;17927:43;17987:19;;31101:74:0;;;;;;;;;-1:-1:-1;31191:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31191:24:0;;31017:204::o;30580:379::-;30649:13;30665:24;30681:7;30665:15;:24::i;:::-;30649:40;;30710:5;-1:-1:-1;;;;;30704:11:0;:2;-1:-1:-1;;;;;30704:11:0;;;30696:58;;;;-1:-1:-1;;;30696:58:0;;14279:2:1;30696:58:0;;;14261:21:1;14318:2;14298:18;;;14291:30;14357:34;14337:18;;;14330:62;-1:-1:-1;;;14408:18:1;;;14401:32;14450:19;;30696:58:0;14077:398:1;30696:58:0;23877:10;-1:-1:-1;;;;;30779:21:0;;;;:62;;-1:-1:-1;30804:37:0;30821:5;23877:10;31622:186;:::i;30804:37::-;30763:153;;;;-1:-1:-1;;;30763:153:0;;10778:2:1;30763:153:0;;;10760:21:1;10817:2;10797:18;;;10790:30;10856:34;10836:18;;;10829:62;10927:27;10907:18;;;10900:55;10972:19;;30763:153:0;10576:421:1;30763:153:0;30925:28;30934:2;30938:7;30947:5;30925:8;:28::i;:::-;30642:317;30580:379;;:::o;31867:142::-;31975:28;31985:4;31991:2;31995:7;31975:9;:28::i;44835:156::-;41176:7;41203:6;-1:-1:-1;;;;;41203:6:0;23877:10;41350:23;41342:68;;;;-1:-1:-1;;;41342:68:0;;;;;;;:::i;:::-;22171:1:::1;22769:7;;:19;;22761:63;;;::::0;-1:-1:-1;;;22761:63:0;;17029:2:1;22761:63:0::1;::::0;::::1;17011:21:1::0;17068:2;17048:18;;;17041:30;17107:33;17087:18;;;17080:61;17158:18;;22761:63:0::1;16827:355:1::0;22761:63:0::1;22171:1;22902:7;:18:::0;44955:28:::2;44974:8:::0;44955:18:::2;:28::i;:::-;-1:-1:-1::0;22127:1:0::1;23081:7;:22:::0;44835:156::o;26958:744::-;27067:7;27102:16;27112:5;27102:9;:16::i;:::-;27094:5;:24;27086:71;;;;-1:-1:-1;;;27086:71:0;;6544:2:1;27086:71:0;;;6526:21:1;6583:2;6563:18;;;6556:30;6622:34;6602:18;;;6595:62;-1:-1:-1;;;6673:18:1;;;6666:32;6715:19;;27086:71:0;6342:398:1;27086:71:0;27164:22;27189:13;26403:12;;;26327:94;27189:13;27164:38;;27209:19;27239:25;27289:9;27284:350;27308:14;27304:1;:18;27284:350;;;27338:31;27372:14;;;:11;:14;;;;;;;;;27338:48;;;;;;;;;-1:-1:-1;;;;;27338:48:0;;;;;-1:-1:-1;;;27338:48:0;;;;;;;;;;;;27399:28;27395:89;;27460:14;;;-1:-1:-1;27395:89:0;27517:5;-1:-1:-1;;;;;27496:26:0;:17;-1:-1:-1;;;;;27496:26:0;;27492:135;;;27554:5;27539:11;:20;27535:59;;;-1:-1:-1;27581:1:0;-1:-1:-1;27574:8:0;;-1:-1:-1;;;27574:8:0;27535:59;27604:13;;;;:::i;:::-;;;;27492:135;-1:-1:-1;27324:3:0;;;;:::i;:::-;;;;27284:350;;;-1:-1:-1;27640:56:0;;-1:-1:-1;;;27640:56:0;;16207:2:1;27640:56:0;;;16189:21:1;16246:2;16226:18;;;16219:30;16285:34;16265:18;;;16258:62;-1:-1:-1;;;16336:18:1;;;16329:44;16390:19;;27640:56:0;16005:410:1;32072:157:0;32184:39;32201:4;32207:2;32211:7;32184:39;;;;;;;;;;;;:16;:39::i;26490:177::-;26557:7;26589:13;26403:12;;;26327:94;26589:13;26581:5;:21;26573:69;;;;-1:-1:-1;;;26573:69:0;;8123:2:1;26573:69:0;;;8105:21:1;8162:2;8142:18;;;8135:30;8201:34;8181:18;;;8174:62;-1:-1:-1;;;8252:18:1;;;8245:33;8295:19;;26573:69:0;7921:399:1;26573:69:0;-1:-1:-1;26656:5:0;26490:177::o;44522:106::-;41176:7;41203:6;-1:-1:-1;;;;;41203:6:0;23877:10;41350:23;41342:68;;;;-1:-1:-1;;;41342:68:0;;;;;;;:::i;:::-;44597:23:::1;:13;44613:7:::0;;44597:23:::1;:::i;29315:118::-:0;29379:7;29402:20;29414:7;29402:11;:20::i;:::-;:25;;29315:118;-1:-1:-1;;29315:118:0:o;43038:78::-;41176:7;41203:6;-1:-1:-1;;;;;41203:6:0;23877:10;41350:23;41342:68;;;;-1:-1:-1;;;41342:68:0;;;;;;;:::i;:::-;43097:6:::1;:11:::0;43038:78::o;28192:211::-;28256:7;-1:-1:-1;;;;;28280:19:0;;28272:75;;;;-1:-1:-1;;;28272:75:0;;11557:2:1;28272:75:0;;;11539:21:1;11596:2;11576:18;;;11569:30;11635:34;11615:18;;;11608:62;-1:-1:-1;;;11686:18:1;;;11679:41;11737:19;;28272:75:0;11355:407:1;28272:75:0;-1:-1:-1;;;;;;28369:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;28369:27:0;;28192:211::o;41781:103::-;41176:7;41203:6;-1:-1:-1;;;;;41203:6:0;23877:10;41350:23;41342:68;;;;-1:-1:-1;;;41342:68:0;;;;;;;:::i;:::-;41846:30:::1;41873:1;41846:18;:30::i;:::-;41781:103::o:0;43124:327::-;42952:9;42965:10;42952:23;42944:66;;;;-1:-1:-1;;;42944:66:0;;10058:2:1;42944:66:0;;;10040:21:1;10097:2;10077:18;;;10070:30;10136:32;10116:18;;;10109:60;10186:18;;42944:66:0;9856:354:1;42944:66:0;43201:10:::1;::::0;::::1;;43193:52;;;::::0;-1:-1:-1;;;43193:52:0;;6947:2:1;43193:52:0::1;::::0;::::1;6929:21:1::0;6986:2;6966:18;;;6959:30;7025:31;7005:18;;;6998:59;7074:18;;43193:52:0::1;6745:353:1::0;43193:52:0::1;43292:6;;43280:8;43264:13;26403:12:::0;;;26327:94;43264:13:::1;:24;;;;:::i;:::-;:34;;43256:70;;;::::0;-1:-1:-1;;;43256:70:0;;13927:2:1;43256:70:0::1;::::0;::::1;13909:21:1::0;13966:2;13946:18;;;13939:30;14005:25;13985:18;;;13978:53;14048:18;;43256:70:0::1;13725:347:1::0;43256:70:0::1;43357:2;43345:8;:14;;43337:64;;;::::0;-1:-1:-1;;;43337:64:0;;18622:2:1;43337:64:0::1;::::0;::::1;18604:21:1::0;18661:2;18641:18;;;18634:30;18700:34;18680:18;;;18673:62;-1:-1:-1;;;18751:18:1;;;18744:35;18796:19;;43337:64:0::1;18420:401:1::0;43337:64:0::1;43412:31;43422:10;43434:8;43412:9;:31::i;:::-;43124:327:::0;:::o;45120:167::-;-1:-1:-1;;;;;;;;;;;;;;;;;45259:20:0;45271:7;45259:11;:20::i;29647:98::-;29703:13;29732:7;29725:14;;;;;:::i;43459:489::-;42952:9;42965:10;42952:23;42944:66;;;;-1:-1:-1;;;42944:66:0;;10058:2:1;42944:66:0;;;10040:21:1;10097:2;10077:18;;;10070:30;10136:32;10116:18;;;10109:60;10186:18;;42944:66:0;9856:354:1;42944:66:0;43540:10:::1;::::0;::::1;;43532:52;;;::::0;-1:-1:-1;;;43532:52:0;;6947:2:1;43532:52:0::1;::::0;::::1;6929:21:1::0;6986:2;6966:18;;;6959:30;7025:31;7005:18;;;6998:59;7074:18;;43532:52:0::1;6745:353:1::0;43532:52:0::1;43645:14;43633:8;43617:13;26403:12:::0;;;26327:94;43617:13:::1;:24;;;;:::i;:::-;:42;;43595:110;;;::::0;-1:-1:-1;;;43595:110:0;;8527:2:1;43595:110:0::1;::::0;::::1;8509:21:1::0;8566:2;8546:18;;;8539:30;-1:-1:-1;;;8585:18:1;;;8578:48;8643:18;;43595:110:0::1;8325:342:1::0;43595:110:0::1;43736:2;43724:8;:14;;43716:59;;;::::0;-1:-1:-1;;;43716:59:0;;10417:2:1;43716:59:0::1;::::0;::::1;10399:21:1::0;;;10436:18;;;10429:30;10495:34;10475:18;;;10468:62;10547:18;;43716:59:0::1;10215:356:1::0;43716:59:0::1;43828:9;43816:8;43808:5;;:16;;;;:::i;:::-;:29;;43786:110;;;::::0;-1:-1:-1;;;43786:110:0;;9698:2:1;43786:110:0::1;::::0;::::1;9680:21:1::0;9737:2;9717:18;;;9710:30;9776:33;9756:18;;;9749:61;9827:18;;43786:110:0::1;9496:355:1::0;31285:274:0;-1:-1:-1;;;;;31376:24:0;;23877:10;31376:24;;31368:63;;;;-1:-1:-1;;;31368:63:0;;13153:2:1;31368:63:0;;;13135:21:1;13192:2;13172:18;;;13165:30;13231:28;13211:18;;;13204:56;13277:18;;31368:63:0;12951:350:1;31368:63:0;23877:10;31440:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31440:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31440:53:0;;;;;;;;;;31505:48;;6066:41:1;;;31440:42:0;;23877:10;31505:48;;6039:18:1;31505:48:0;;;;;;;31285:274;;:::o;44636:191::-;41176:7;41203:6;-1:-1:-1;;;;;41203:6:0;23877:10;41350:23;41342:68;;;;-1:-1:-1;;;41342:68:0;;;;;;;:::i;:::-;22171:1:::1;22769:7;;:19;;22761:63;;;::::0;-1:-1:-1;;;22761:63:0;;17029:2:1;22761:63:0::1;::::0;::::1;17011:21:1::0;17068:2;17048:18;;;17041:30;17107:33;17087:18;;;17080:61;17158:18;;22761:63:0::1;16827:355:1::0;22761:63:0::1;22171:1;22902:7;:18:::0;44723:49:::2;::::0;44705:12:::2;::::0;44723:10:::2;::::0;44746:21:::2;::::0;44705:12;44723:49;44705:12;44723:49;44746:21;44723:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44704:68;;;44791:7;44783:36;;;::::0;-1:-1:-1;;;44783:36:0;;14682:2:1;44783:36:0::2;::::0;::::2;14664:21:1::0;14721:2;14701:18;;;14694:30;-1:-1:-1;;;14740:18:1;;;14733:46;14796:18;;44783:36:0::2;14480:340:1::0;32292:311:0;32429:28;32439:4;32445:2;32449:7;32429:9;:28::i;:::-;32480:48;32503:4;32509:2;32513:7;32522:5;32480:22;:48::i;:::-;32464:133;;;;-1:-1:-1;;;32464:133:0;;;;;;;:::i;:::-;32292:311;;;;:::o;44302:90::-;41176:7;41203:6;-1:-1:-1;;;;;41203:6:0;23877:10;41350:23;41342:68;;;;-1:-1:-1;;;41342:68:0;;;;;;;:::i;:::-;44366:10:::1;:18:::0;;-1:-1:-1;;44366:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;44302:90::o;29808:394::-;29906:13;29947:16;29955:7;32929:12;;-1:-1:-1;32919:22:0;32842:105;29947:16;29931:97;;;;-1:-1:-1;;;29931:97:0;;12737:2:1;29931:97:0;;;12719:21:1;12776:2;12756:18;;;12749:30;12815:34;12795:18;;;12788:62;-1:-1:-1;;;12866:18:1;;;12859:45;12921:19;;29931:97:0;12535:411:1;29931:97:0;30037:21;30061:10;:8;:10::i;:::-;30037:34;;30116:1;30098:7;30092:21;:25;:104;;;;;;;;;;;;;;;;;30153:7;30162:18;:7;:16;:18::i;:::-;30136:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30092:104;30078:118;29808:394;-1:-1:-1;;;29808:394:0:o;43953:84::-;41176:7;41203:6;-1:-1:-1;;;;;41203:6:0;23877:10;41350:23;41342:68;;;;-1:-1:-1;;;41342:68:0;;;;;;;:::i;:::-;44015:5:::1;:17:::0;43953:84::o;44999:113::-;45057:7;45084:20;45098:5;45084:13;:20::i;44132:156::-;41176:7;41203:6;-1:-1:-1;;;;;41203:6:0;23877:10;41350:23;41342:68;;;;-1:-1:-1;;;41342:68:0;;;;;;;:::i;:::-;44182:24:::1;44192:10;44204:1;44182:9;:24::i;42039:201::-:0;41176:7;41203:6;-1:-1:-1;;;;;41203:6:0;23877:10;41350:23;41342:68;;;;-1:-1:-1;;;41342:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42128:22:0;::::1;42120:73;;;::::0;-1:-1:-1;;;42120:73:0;;7305:2:1;42120:73:0::1;::::0;::::1;7287:21:1::0;7344:2;7324:18;;;7317:30;7383:34;7363:18;;;7356:62;-1:-1:-1;;;7434:18:1;;;7427:36;7480:19;;42120:73:0::1;7103:402:1::0;42120:73:0::1;42204:28;42223:8;42204:18;:28::i;36529:172::-:0;36626:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;36626:29:0;-1:-1:-1;;;;;36626:29:0;;;;;;;;;36667:28;;36626:24;;36667:28;;;;;;;36529:172;;;:::o;34894:1529::-;34991:35;35029:20;35041:7;35029:11;:20::i;:::-;35100:18;;34991:58;;-1:-1:-1;35058:22:0;;-1:-1:-1;;;;;35084:34:0;23877:10;-1:-1:-1;;;;;35084:34:0;;:81;;;-1:-1:-1;23877:10:0;35129:20;35141:7;35129:11;:20::i;:::-;-1:-1:-1;;;;;35129:36:0;;35084:81;:142;;;-1:-1:-1;35193:18:0;;35176:50;;23877:10;31622:186;:::i;35176:50::-;35058:169;;35252:17;35236:101;;;;-1:-1:-1;;;35236:101:0;;13508:2:1;35236:101:0;;;13490:21:1;13547:2;13527:18;;;13520:30;13586:34;13566:18;;;13559:62;-1:-1:-1;;;13637:18:1;;;13630:48;13695:19;;35236:101:0;13306:414:1;35236:101:0;35384:4;-1:-1:-1;;;;;35362:26:0;:13;:18;;;-1:-1:-1;;;;;35362:26:0;;35346:98;;;;-1:-1:-1;;;35346:98:0;;11969:2:1;35346:98:0;;;11951:21:1;12008:2;11988:18;;;11981:30;12047:34;12027:18;;;12020:62;-1:-1:-1;;;12098:18:1;;;12091:36;12144:19;;35346:98:0;11767:402:1;35346:98:0;-1:-1:-1;;;;;35459:16:0;;35451:66;;;;-1:-1:-1;;;35451:66:0;;8874:2:1;35451:66:0;;;8856:21:1;8913:2;8893:18;;;8886:30;8952:34;8932:18;;;8925:62;-1:-1:-1;;;9003:18:1;;;8996:35;9048:19;;35451:66:0;8672:401:1;35451:66:0;35626:49;35643:1;35647:7;35656:13;:18;;;35626:8;:49::i;:::-;-1:-1:-1;;;;;35684:18:0;;;;;;:12;:18;;;;;:31;;35714:1;;35684:18;:31;;35714:1;;-1:-1:-1;;;;;35684:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;35684:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;35722:16:0;;-1:-1:-1;35722:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;35722:16:0;;:29;;-1:-1:-1;;35722:29:0;;:::i;:::-;;;-1:-1:-1;;;;;35722:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35781:43:0;;;;;;;;-1:-1:-1;;;;;35781:43:0;;;;;;35807:15;35781:43;;;;;;;;;-1:-1:-1;35758:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;35758:66:0;-1:-1:-1;;;;;;35758:66:0;;;;;;;;;;;36074:11;35770:7;-1:-1:-1;36074:11:0;:::i;:::-;36137:1;36096:24;;;:11;:24;;;;;:29;36052:33;;-1:-1:-1;;;;;;36096:29:0;36092:236;;36154:20;36162:11;32929:12;;-1:-1:-1;32919:22:0;32842:105;36154:20;36150:171;;;36214:97;;;;;;;;36241:18;;-1:-1:-1;;;;;36214:97:0;;;;;;36272:28;;;;36214:97;;;;;;;;;;-1:-1:-1;36187:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;36187:124:0;-1:-1:-1;;;;;;36187:124:0;;;;;;;;;;;;36150:171;36360:7;36356:2;-1:-1:-1;;;;;36341:27:0;36350:4;-1:-1:-1;;;;;36341:27:0;;;;;;;;;;;36375:42;34984:1439;;;34894:1529;;;:::o;36855:846::-;36945:24;;36984:12;36976:49;;;;-1:-1:-1;;;36976:49:0;;11204:2:1;36976:49:0;;;11186:21:1;11243:2;11223:18;;;11216:30;11282:26;11262:18;;;11255:54;11326:18;;36976:49:0;11002:348:1;36976:49:0;37032:16;37082:1;37051:28;37071:8;37051:17;:28;:::i;:::-;:32;;;;:::i;:::-;37032:51;-1:-1:-1;37105:18:0;37122:1;37105:14;:18;:::i;:::-;37094:8;:29;37090:81;;;37145:18;37162:1;37145:14;:18;:::i;:::-;37134:29;;37090:81;37286:17;37294:8;32929:12;;-1:-1:-1;32919:22:0;32842:105;37286:17;37278:68;;;;-1:-1:-1;;;37278:68:0;;16622:2:1;37278:68:0;;;16604:21:1;16661:2;16641:18;;;16634:30;16700:34;16680:18;;;16673:62;-1:-1:-1;;;16751:18:1;;;16744:36;16797:19;;37278:68:0;16420:402:1;37278:68:0;37370:17;37353:297;37394:8;37389:1;:13;37353:297;;37453:1;37422:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;37422:19:0;37418:225;;37468:31;37502:14;37514:1;37502:11;:14::i;:::-;37544:89;;;;;;;;37571:14;;-1:-1:-1;;;;;37544:89:0;;;;;;37598:24;;;;37544:89;;;;;;;;;;-1:-1:-1;37527:14:0;;;:11;:14;;;;;;;:106;;;;;;;;;-1:-1:-1;;;37527:106:0;-1:-1:-1;;;;;;37527:106:0;;;;;;;;;;;;-1:-1:-1;37418:225:0;37404:3;;;;:::i;:::-;;;;37353:297;;;-1:-1:-1;37683:12:0;:8;37694:1;37683:12;:::i;:::-;37656:24;:39;-1:-1:-1;;;36855:846:0:o;28655:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;28772:16:0;28780:7;32929:12;;-1:-1:-1;32919:22:0;32842:105;28772:16;28764:71;;;;-1:-1:-1;;;28764:71:0;;7712:2:1;28764:71:0;;;7694:21:1;7751:2;7731:18;;;7724:30;7790:34;7770:18;;;7763:62;-1:-1:-1;;;7841:18:1;;;7834:40;7891:19;;28764:71:0;7510:406:1;28764:71:0;28844:26;28892:12;28881:7;:23;28877:93;;28936:22;28946:12;28936:7;:22;:::i;:::-;:26;;28961:1;28936:26;:::i;:::-;28915:47;;28877:93;28998:7;28978:212;29015:18;29007:4;:26;28978:212;;29052:31;29086:17;;;:11;:17;;;;;;;;;29052:51;;;;;;;;;-1:-1:-1;;;;;29052:51:0;;;;;-1:-1:-1;;;29052:51:0;;;;;;;;;;;;29116:28;29112:71;;29164:9;28655:606;-1:-1:-1;;;;28655:606:0:o;29112:71::-;-1:-1:-1;29035:6:0;;;;:::i;:::-;;;;28978:212;;;-1:-1:-1;29198:57:0;;-1:-1:-1;;;29198:57:0;;17389:2:1;29198:57:0;;;17371:21:1;17428:2;17408:18;;;17401:30;17467:34;17447:18;;;17440:62;-1:-1:-1;;;17518:18:1;;;17511:45;17573:19;;29198:57:0;17187:411:1;42400:191:0;42474:16;42493:6;;-1:-1:-1;;;;;42510:17:0;;;-1:-1:-1;;;;;;42510:17:0;;;;;;42543:40;;42493:6;;;;;;;42543:40;;42474:16;42543:40;42463:128;42400:191;:::o;32953:98::-;33018:27;33028:2;33032:8;33018:27;;;;;;;;;;;;:9;:27::i;:::-;32953:98;;:::o;38244:690::-;38381:4;-1:-1:-1;;;;;38398:13:0;;3652:19;:23;38394:535;;38437:72;;-1:-1:-1;;;38437:72:0;;-1:-1:-1;;;;;38437:36:0;;;;;:72;;23877:10;;38488:4;;38494:7;;38503:5;;38437:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38437:72:0;;;;;;;;-1:-1:-1;;38437:72:0;;;;;;;;;;;;:::i;:::-;;;38424:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38668:13:0;;38664:215;;38701:61;;-1:-1:-1;;;38701:61:0;;;;;;;:::i;38664:215::-;38847:6;38841:13;38832:6;38828:2;38824:15;38817:38;38424:464;-1:-1:-1;;;;;;38559:55:0;-1:-1:-1;;;38559:55:0;;-1:-1:-1;38552:62:0;;38394:535;-1:-1:-1;38917:4:0;38394:535;38244:690;;;;;;:::o;44400:114::-;44460:13;44493;44486:20;;;;;:::i;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;28409:240;28470:7;-1:-1:-1;;;;;28502:19:0;;28486:102;;;;-1:-1:-1;;;28486:102:0;;9280:2:1;28486:102:0;;;9262:21:1;9319:2;9299:18;;;9292:30;9358:34;9338:18;;;9331:62;-1:-1:-1;;;9409:18:1;;;9402:47;9466:19;;28486:102:0;9078:413:1;28486:102:0;-1:-1:-1;;;;;;28610:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;28610:32:0;;-1:-1:-1;;;;;28610:32:0;;28409:240::o;33390:1272::-;33518:12;;-1:-1:-1;;;;;33545:16:0;;33537:62;;;;-1:-1:-1;;;33537:62:0;;15805:2:1;33537:62:0;;;15787:21:1;15844:2;15824:18;;;15817:30;15883:34;15863:18;;;15856:62;-1:-1:-1;;;15934:18:1;;;15927:31;15975:19;;33537:62:0;15603:397:1;33537:62:0;33736:21;33744:12;32929;;-1:-1:-1;32919:22:0;32842:105;33736:21;33735:22;33727:64;;;;-1:-1:-1;;;33727:64:0;;15447:2:1;33727:64:0;;;15429:21:1;15486:2;15466:18;;;15459:30;15525:31;15505:18;;;15498:59;15574:18;;33727:64:0;15245:353:1;33727:64:0;33818:12;33806:8;:24;;33798:71;;;;-1:-1:-1;;;33798:71:0;;18219:2:1;33798:71:0;;;18201:21:1;18258:2;18238:18;;;18231:30;18297:34;18277:18;;;18270:62;-1:-1:-1;;;18348:18:1;;;18341:32;18390:19;;33798:71:0;18017:398:1;33798:71:0;-1:-1:-1;;;;;33981:16:0;;33948:30;33981:16;;;:12;:16;;;;;;;;;33948:49;;;;;;;;;-1:-1:-1;;;;;33948:49:0;;;;;-1:-1:-1;;;33948:49:0;;;;;;;;;;;34023:119;;;;;;;;34043:19;;33948:49;;34023:119;;;34043:39;;34073:8;;34043:39;:::i;:::-;-1:-1:-1;;;;;34023:119:0;;;;;34126:8;34091:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;34023:119:0;;;;;;-1:-1:-1;;;;;34004:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;34004:138:0;;;;;;;;;;;;34177:43;;;;;;;;;;;34203:15;34177:43;;;;;;;;34149:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;34149:71:0;-1:-1:-1;;;;;;34149:71:0;;;;;;;;;;;;;;;;;;34161:12;;34273:281;34297:8;34293:1;:12;34273:281;;;34326:38;;34351:12;;-1:-1:-1;;;;;34326:38:0;;;34343:1;;34326:38;;34343:1;;34326:38;34391:59;34422:1;34426:2;34430:12;34444:5;34391:22;:59::i;:::-;34373:150;;;;-1:-1:-1;;;34373:150:0;;;;;;;:::i;:::-;34532:14;;;;:::i;:::-;;;;34307:3;;;;;:::i;:::-;;;;34273:281;;;-1:-1:-1;34562:12:0;:27;;;34596:60;32292:311;-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:160::-;257:20;;313:13;;306:21;296:32;;286:60;;342:1;339;332:12;357:186;416:6;469:2;457:9;448:7;444:23;440:32;437:52;;;485:1;482;475:12;437:52;508:29;527:9;508:29;:::i;548:260::-;616:6;624;677:2;665:9;656:7;652:23;648:32;645:52;;;693:1;690;683:12;645:52;716:29;735:9;716:29;:::i;:::-;706:39;;764:38;798:2;787:9;783:18;764:38;:::i;:::-;754:48;;548:260;;;;;:::o;813:328::-;890:6;898;906;959:2;947:9;938:7;934:23;930:32;927:52;;;975:1;972;965:12;927:52;998:29;1017:9;998:29;:::i;:::-;988:39;;1046:38;1080:2;1069:9;1065:18;1046:38;:::i;:::-;1036:48;;1131:2;1120:9;1116:18;1103:32;1093:42;;813:328;;;;;:::o;1146:1138::-;1241:6;1249;1257;1265;1318:3;1306:9;1297:7;1293:23;1289:33;1286:53;;;1335:1;1332;1325:12;1286:53;1358:29;1377:9;1358:29;:::i;:::-;1348:39;;1406:38;1440:2;1429:9;1425:18;1406:38;:::i;:::-;1396:48;;1491:2;1480:9;1476:18;1463:32;1453:42;;1546:2;1535:9;1531:18;1518:32;1569:18;1610:2;1602:6;1599:14;1596:34;;;1626:1;1623;1616:12;1596:34;1664:6;1653:9;1649:22;1639:32;;1709:7;1702:4;1698:2;1694:13;1690:27;1680:55;;1731:1;1728;1721:12;1680:55;1767:2;1754:16;1789:2;1785;1782:10;1779:36;;;1795:18;;:::i;:::-;1870:2;1864:9;1838:2;1924:13;;-1:-1:-1;;1920:22:1;;;1944:2;1916:31;1912:40;1900:53;;;1968:18;;;1988:22;;;1965:46;1962:72;;;2014:18;;:::i;:::-;2054:10;2050:2;2043:22;2089:2;2081:6;2074:18;2129:7;2124:2;2119;2115;2111:11;2107:20;2104:33;2101:53;;;2150:1;2147;2140:12;2101:53;2206:2;2201;2197;2193:11;2188:2;2180:6;2176:15;2163:46;2251:1;2246:2;2241;2233:6;2229:15;2225:24;2218:35;2272:6;2262:16;;;;;;;1146:1138;;;;;;;:::o;2289:254::-;2354:6;2362;2415:2;2403:9;2394:7;2390:23;2386:32;2383:52;;;2431:1;2428;2421:12;2383:52;2454:29;2473:9;2454:29;:::i;:::-;2444:39;;2502:35;2533:2;2522:9;2518:18;2502:35;:::i;2548:254::-;2616:6;2624;2677:2;2665:9;2656:7;2652:23;2648:32;2645:52;;;2693:1;2690;2683:12;2645:52;2716:29;2735:9;2716:29;:::i;:::-;2706:39;2792:2;2777:18;;;;2764:32;;-1:-1:-1;;;2548:254:1:o;2807:180::-;2863:6;2916:2;2904:9;2895:7;2891:23;2887:32;2884:52;;;2932:1;2929;2922:12;2884:52;2955:26;2971:9;2955:26;:::i;2992:245::-;3050:6;3103:2;3091:9;3082:7;3078:23;3074:32;3071:52;;;3119:1;3116;3109:12;3071:52;3158:9;3145:23;3177:30;3201:5;3177:30;:::i;3242:249::-;3311:6;3364:2;3352:9;3343:7;3339:23;3335:32;3332:52;;;3380:1;3377;3370:12;3332:52;3412:9;3406:16;3431:30;3455:5;3431:30;:::i;3496:592::-;3567:6;3575;3628:2;3616:9;3607:7;3603:23;3599:32;3596:52;;;3644:1;3641;3634:12;3596:52;3684:9;3671:23;3713:18;3754:2;3746:6;3743:14;3740:34;;;3770:1;3767;3760:12;3740:34;3808:6;3797:9;3793:22;3783:32;;3853:7;3846:4;3842:2;3838:13;3834:27;3824:55;;3875:1;3872;3865:12;3824:55;3915:2;3902:16;3941:2;3933:6;3930:14;3927:34;;;3957:1;3954;3947:12;3927:34;4002:7;3997:2;3988:6;3984:2;3980:15;3976:24;3973:37;3970:57;;;4023:1;4020;4013:12;3970:57;4054:2;4046:11;;;;;4076:6;;-1:-1:-1;3496:592:1;;-1:-1:-1;;;;3496:592:1:o;4093:180::-;4152:6;4205:2;4193:9;4184:7;4180:23;4176:32;4173:52;;;4221:1;4218;4211:12;4173:52;-1:-1:-1;4244:23:1;;4093:180;-1:-1:-1;4093:180:1:o;4278:257::-;4319:3;4357:5;4351:12;4384:6;4379:3;4372:19;4400:63;4456:6;4449:4;4444:3;4440:14;4433:4;4426:5;4422:16;4400:63;:::i;:::-;4517:2;4496:15;-1:-1:-1;;4492:29:1;4483:39;;;;4524:4;4479:50;;4278:257;-1:-1:-1;;4278:257:1:o;4540:470::-;4719:3;4757:6;4751:13;4773:53;4819:6;4814:3;4807:4;4799:6;4795:17;4773:53;:::i;:::-;4889:13;;4848:16;;;;4911:57;4889:13;4848:16;4945:4;4933:17;;4911:57;:::i;:::-;4984:20;;4540:470;-1:-1:-1;;;;4540:470:1:o;5433:488::-;-1:-1:-1;;;;;5702:15:1;;;5684:34;;5754:15;;5749:2;5734:18;;5727:43;5801:2;5786:18;;5779:34;;;5849:3;5844:2;5829:18;;5822:31;;;5627:4;;5870:45;;5895:19;;5887:6;5870:45;:::i;:::-;5862:53;5433:488;-1:-1:-1;;;;;;5433:488:1:o;6118:219::-;6267:2;6256:9;6249:21;6230:4;6287:44;6327:2;6316:9;6312:18;6304:6;6287:44;:::i;12174:356::-;12376:2;12358:21;;;12395:18;;;12388:30;12454:34;12449:2;12434:18;;12427:62;12521:2;12506:18;;12174:356::o;14825:415::-;15027:2;15009:21;;;15066:2;15046:18;;;15039:30;15105:34;15100:2;15085:18;;15078:62;-1:-1:-1;;;15171:2:1;15156:18;;15149:49;15230:3;15215:19;;14825:415::o;19373:253::-;19413:3;-1:-1:-1;;;;;19502:2:1;19499:1;19495:10;19532:2;19529:1;19525:10;19563:3;19559:2;19555:12;19550:3;19547:21;19544:47;;;19571:18;;:::i;19631:128::-;19671:3;19702:1;19698:6;19695:1;19692:13;19689:39;;;19708:18;;:::i;:::-;-1:-1:-1;19744:9:1;;19631:128::o;19764:120::-;19804:1;19830;19820:35;;19835:18;;:::i;:::-;-1:-1:-1;19869:9:1;;19764:120::o;19889:168::-;19929:7;19995:1;19991;19987:6;19983:14;19980:1;19977:21;19972:1;19965:9;19958:17;19954:45;19951:71;;;20002:18;;:::i;:::-;-1:-1:-1;20042:9:1;;19889:168::o;20062:246::-;20102:4;-1:-1:-1;;;;;20215:10:1;;;;20185;;20237:12;;;20234:38;;;20252:18;;:::i;:::-;20289:13;;20062:246;-1:-1:-1;;;20062:246:1:o;20313:125::-;20353:4;20381:1;20378;20375:8;20372:34;;;20386:18;;:::i;:::-;-1:-1:-1;20423:9:1;;20313:125::o;20443:258::-;20515:1;20525:113;20539:6;20536:1;20533:13;20525:113;;;20615:11;;;20609:18;20596:11;;;20589:39;20561:2;20554:10;20525:113;;;20656:6;20653:1;20650:13;20647:48;;;-1:-1:-1;;20691:1:1;20673:16;;20666:27;20443:258::o;20706:136::-;20745:3;20773:5;20763:39;;20782:18;;:::i;:::-;-1:-1:-1;;;20818:18:1;;20706:136::o;20847:380::-;20926:1;20922:12;;;;20969;;;20990:61;;21044:4;21036:6;21032:17;21022:27;;20990:61;21097:2;21089:6;21086:14;21066:18;21063:38;21060:161;;;21143:10;21138:3;21134:20;21131:1;21124:31;21178:4;21175:1;21168:15;21206:4;21203:1;21196:15;21060:161;;20847:380;;;:::o;21232:135::-;21271:3;-1:-1:-1;;21292:17:1;;21289:43;;;21312:18;;:::i;:::-;-1:-1:-1;21359:1:1;21348:13;;21232:135::o;21372:112::-;21404:1;21430;21420:35;;21435:18;;:::i;:::-;-1:-1:-1;21469:9:1;;21372:112::o;21489:127::-;21550:10;21545:3;21541:20;21538:1;21531:31;21581:4;21578:1;21571:15;21605:4;21602:1;21595:15;21621:127;21682:10;21677:3;21673:20;21670:1;21663:31;21713:4;21710:1;21703:15;21737:4;21734:1;21727:15;21753:127;21814:10;21809:3;21805:20;21802:1;21795:31;21845:4;21842:1;21835:15;21869:4;21866:1;21859:15;21885:127;21946:10;21941:3;21937:20;21934:1;21927:31;21977:4;21974:1;21967:15;22001:4;21998:1;21991:15;22017:131;-1:-1:-1;;;;;;22091:32:1;;22081:43;;22071:71;;22138:1;22135;22128:12

Swarm Source

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