ETH Price: $2,346.92 (-0.44%)

Token

Asuki (Asuki)
 

Overview

Max Total Supply

3,803 Asuki

Holders

104

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
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:
Asuki

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-08
*/

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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


// OpenZeppelin Contracts (last updated v4.7.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
                /// @solidity memory-safe-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 (last updated v4.6.0) (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 `IERC721Receiver.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 (last updated v4.7.0) (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`.
     *
     * 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;

    /**
     * @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 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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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


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

pragma solidity ^0.8.0;

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

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

// File: ERC721A.sol


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

pragma solidity ^0.8.0;









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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        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: Asuki.sol




 
 /*

============================================== Asuki ==============================================
*/                                                                                                         



pragma solidity ^0.8.0;


/**
 * @title Asuki
 */
                                                                                                     
                                                                                            
contract Asuki is ERC721A, Ownable {
        
    bool public saleIsActive = true;
    uint256 public Price = 0.045 ether;
    
    string private _baseURIextended = "https://weasuki.s3.us-west-1.amazonaws.com/metadata/";	     
    address private proxyRegistryAddress;
    
	
    constructor() ERC721A("Asuki", "Asuki",500) {       
    }

    function setBaseURI(string memory baseURI_) external onlyOwner() {
        _baseURIextended = baseURI_;
    }

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

    function setPrice(uint256 newPrice) public onlyOwner {
        Price = newPrice;
    }

    function mint(uint256 numberOfTokens) external payable {    
        uint256 totalNum = 10000;
        require(totalSupply() + numberOfTokens <= totalNum, "already mint out");      
        require((Price * numberOfTokens) <= msg.value, "Don't send under (in ETH).");
        _safeMint(msg.sender, numberOfTokens);       	                
    }

    function mintBatch(address to, uint256 quantity) external onlyOwner {
        uint256 totalNum = 10000;
        uint256 maxBatchSize = 500;
        require(totalSupply() + quantity <= totalNum, "already mint out");
        require(quantity % maxBatchSize == 0, "can only mint a multiple of the maxBatchSize");

        uint256 numChunks = quantity / maxBatchSize;
        for (uint256 i = 0; i < numChunks; i++) {
            _safeMint(to, maxBatchSize);
        }
    }

    function gift(address _to,uint256 numberOfTokens) external onlyOwner {    
        uint256 totalNum = 10000; 
        require(totalSupply() + numberOfTokens <= totalNum, "already mint out");            
        _safeMint(_to, numberOfTokens);
    }

    function withdraw() public onlyOwner {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"Price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"gift","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":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60008080556007556008805460ff60a01b1916600160a01b179055669fdf42f6e48000600955610100604052603460a0818152906200243e60c039600a90620000499082620001b6565b503480156200005757600080fd5b506040805180820182526005808252644173756b6960d81b6020808401829052845180860190955291845290830152906101f46001620000988482620001b6565b506002620000a78382620001b6565b5060805250620000b9905033620000bf565b62000282565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200013c57607f821691505b6020821081036200015d57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001b157600081815260208120601f850160051c810160208610156200018c5750805b601f850160051c820191505b81811015620001ad5782815560010162000198565b5050505b505050565b81516001600160401b03811115620001d257620001d262000111565b620001ea81620001e3845462000127565b8462000163565b602080601f831160018114620002225760008415620002095750858301515b600019600386901b1c1916600185901b178555620001ad565b600085815260208120601f198616915b82811015620002535788860151825594840194600190910190840162000232565b5085821015620002725787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b608051612192620002ac60003960008181611485015281816114af01526118ce01526121926000f3fe6080604052600436106101b75760003560e01c8063715018a6116100ec578063b88d4fde1161008a578063d7224ba011610064578063d7224ba0146104b2578063e985e9c5146104c8578063eb8d244414610511578063f2fde38b1461053257600080fd5b8063b88d4fde14610452578063c87b56dd14610472578063cbce4c971461049257600080fd5b806395d89b41116100c657806395d89b41146103f45780639dfde20114610409578063a0712d681461041f578063a22cb4651461043257600080fd5b8063715018a6146103a15780638da5cb5b146103b657806391b7f5ed146103d457600080fd5b80632f745c59116101595780634f6ccce7116101335780634f6ccce71461032157806355f804b3146103415780636352211e1461036157806370a082311461038157600080fd5b80632f745c59146102cc5780633ccfd60b146102ec57806342842e0e1461030157600080fd5b8063095ea7b311610195578063095ea7b31461024b57806318160ddd1461026d57806323b872dd1461028c578063248b71fc146102ac57600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611b02565b610552565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b506102066105bf565b6040516101e89190611b6f565b34801561021f57600080fd5b5061023361022e366004611b82565b610651565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b610266366004611bb7565b6106e1565b005b34801561027957600080fd5b506000545b6040519081526020016101e8565b34801561029857600080fd5b5061026b6102a7366004611be1565b6107f8565b3480156102b857600080fd5b5061026b6102c7366004611bb7565b610803565b3480156102d857600080fd5b5061027e6102e7366004611bb7565b6108ed565b3480156102f857600080fd5b5061026b610a59565b34801561030d57600080fd5b5061026b61031c366004611be1565b610b22565b34801561032d57600080fd5b5061027e61033c366004611b82565b610b3d565b34801561034d57600080fd5b5061026b61035c366004611ca9565b610b9f565b34801561036d57600080fd5b5061023361037c366004611b82565b610bb7565b34801561038d57600080fd5b5061027e61039c366004611cf2565b610bc9565b3480156103ad57600080fd5b5061026b610c5a565b3480156103c257600080fd5b506008546001600160a01b0316610233565b3480156103e057600080fd5b5061026b6103ef366004611b82565b610c6e565b34801561040057600080fd5b50610206610c7b565b34801561041557600080fd5b5061027e60095481565b61026b61042d366004611b82565b610c8a565b34801561043e57600080fd5b5061026b61044d366004611d0d565b610d27565b34801561045e57600080fd5b5061026b61046d366004611d49565b610deb565b34801561047e57600080fd5b5061020661048d366004611b82565b610e24565b34801561049e57600080fd5b5061026b6104ad366004611bb7565b610ef1565b3480156104be57600080fd5b5061027e60075481565b3480156104d457600080fd5b506101dc6104e3366004611dc5565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561051d57600080fd5b506008546101dc90600160a01b900460ff1681565b34801561053e57600080fd5b5061026b61054d366004611cf2565b610f39565b60006001600160e01b031982166380ac58cd60e01b148061058357506001600160e01b03198216635b5e139f60e01b145b8061059e57506001600160e01b0319821663780e9d6360e01b145b806105b957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105ce90611df8565b80601f01602080910402602001604051908101604052809291908181526020018280546105fa90611df8565b80156106475780601f1061061c57610100808354040283529160200191610647565b820191906000526020600020905b81548152906001019060200180831161062a57829003601f168201915b5050505050905090565b600061065e826000541190565b6106c55760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106ec82610bb7565b9050806001600160a01b0316836001600160a01b03160361075a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016106bc565b336001600160a01b0382161480610776575061077681336104e3565b6107e85760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016106bc565b6107f3838383610faf565b505050565b6107f383838361100b565b61080b61138f565b6127106101f4818361081c60005490565b6108269190611e48565b11156108445760405162461bcd60e51b81526004016106bc90611e5b565b61084e8184611e9b565b156108b05760405162461bcd60e51b815260206004820152602c60248201527f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060448201526b6d6178426174636853697a6560a01b60648201526084016106bc565b60006108bc8285611eaf565b905060005b818110156108e5576108d386846113e9565b806108dd81611ec3565b9150506108c1565b505050505050565b60006108f883610bc9565b82106109515760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016106bc565b600080549080805b838110156109f9576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156109ac57805192505b876001600160a01b0316836001600160a01b0316036109e6578684036109d8575093506105b992505050565b836109e281611ec3565b9450505b50806109f181611ec3565b915050610959565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016106bc565b610a6161138f565b604051600090339047908381818185875af1925050503d8060008114610aa3576040519150601f19603f3d011682016040523d82523d6000602084013e610aa8565b606091505b5050905080610b1f5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016106bc565b50565b6107f383838360405180602001604052806000815250610deb565b600080548210610b9b5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016106bc565b5090565b610ba761138f565b600a610bb38282611f22565b5050565b6000610bc282611403565b5192915050565b60006001600160a01b038216610c355760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016106bc565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b610c6261138f565b610c6c60006115ad565b565b610c7661138f565b600955565b6060600280546105ce90611df8565b6127108082610c9860005490565b610ca29190611e48565b1115610cc05760405162461bcd60e51b81526004016106bc90611e5b565b3482600954610ccf9190611fe2565b1115610d1d5760405162461bcd60e51b815260206004820152601a60248201527f446f6e27742073656e6420756e6465722028696e20455448292e00000000000060448201526064016106bc565b610bb333836113e9565b336001600160a01b03831603610d7f5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016106bc565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610df684848461100b565b610e02848484846115ff565b610e1e5760405162461bcd60e51b81526004016106bc90611ff9565b50505050565b6060610e31826000541190565b610e955760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106bc565b6000610e9f611701565b90506000815111610ebf5760405180602001604052806000815250610eea565b80610ec984611710565b604051602001610eda92919061204c565b6040516020818303038152906040525b9392505050565b610ef961138f565b6127108082610f0760005490565b610f119190611e48565b1115610f2f5760405162461bcd60e51b81526004016106bc90611e5b565b6107f383836113e9565b610f4161138f565b6001600160a01b038116610fa65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106bc565b610b1f816115ad565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061101682611403565b80519091506000906001600160a01b0316336001600160a01b0316148061104d57503361104284610651565b6001600160a01b0316145b8061105f5750815161105f90336104e3565b9050806110c95760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016106bc565b846001600160a01b031682600001516001600160a01b03161461113d5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016106bc565b6001600160a01b0384166111a15760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016106bc565b6111b16000848460000151610faf565b6001600160a01b03851660009081526004602052604081208054600192906111e39084906001600160801b031661207b565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600460205260408120805460019450909261122f918591166120a2565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556112b7846001611e48565b6000818152600360205260409020549091506001600160a01b0316611349576112e1816000541190565b156113495760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46108e5565b6008546001600160a01b03163314610c6c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106bc565b610bb3828260405180602001604052806000815250611811565b6040805180820190915260008082526020820152611422826000541190565b6114815760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016106bc565b60007f000000000000000000000000000000000000000000000000000000000000000083106114e2576114d47f0000000000000000000000000000000000000000000000000000000000000000846120c2565b6114df906001611e48565b90505b825b81811061154c576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561153957949350505050565b5080611544816120d5565b9150506114e4565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016106bc565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b156116f557604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906116439033908990889088906004016120ec565b6020604051808303816000875af192505050801561167e575060408051601f3d908101601f1916820190925261167b91810190612129565b60015b6116db573d8080156116ac576040519150601f19603f3d011682016040523d82523d6000602084013e6116b1565b606091505b5080516000036116d35760405162461bcd60e51b81526004016106bc90611ff9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116f9565b5060015b949350505050565b6060600a80546105ce90611df8565b6060816000036117375750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611761578061174b81611ec3565b915061175a9050600a83611eaf565b915061173b565b60008167ffffffffffffffff81111561177c5761177c611c1d565b6040519080825280601f01601f1916602001820160405280156117a6576020820181803683370190505b5090505b84156116f9576117bb6001836120c2565b91506117c8600a86611e9b565b6117d3906030611e48565b60f81b8183815181106117e8576117e8612146565b60200101906001600160f81b031916908160001a90535061180a600a86611eaf565b94506117aa565b6000546001600160a01b0384166118745760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106bc565b61187f816000541190565b156118cc5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016106bc565b7f00000000000000000000000000000000000000000000000000000000000000008311156119475760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016106bc565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906119a39087906120a2565b6001600160801b031681526020018583602001516119c191906120a2565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611ae15760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611aa560008884886115ff565b611ac15760405162461bcd60e51b81526004016106bc90611ff9565b81611acb81611ec3565b9250508080611ad990611ec3565b915050611a58565b5060008190556108e5565b6001600160e01b031981168114610b1f57600080fd5b600060208284031215611b1457600080fd5b8135610eea81611aec565b60005b83811015611b3a578181015183820152602001611b22565b50506000910152565b60008151808452611b5b816020860160208601611b1f565b601f01601f19169290920160200192915050565b602081526000610eea6020830184611b43565b600060208284031215611b9457600080fd5b5035919050565b80356001600160a01b0381168114611bb257600080fd5b919050565b60008060408385031215611bca57600080fd5b611bd383611b9b565b946020939093013593505050565b600080600060608486031215611bf657600080fd5b611bff84611b9b565b9250611c0d60208501611b9b565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611c4e57611c4e611c1d565b604051601f8501601f19908116603f01168101908282118183101715611c7657611c76611c1d565b81604052809350858152868686011115611c8f57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611cbb57600080fd5b813567ffffffffffffffff811115611cd257600080fd5b8201601f81018413611ce357600080fd5b6116f984823560208401611c33565b600060208284031215611d0457600080fd5b610eea82611b9b565b60008060408385031215611d2057600080fd5b611d2983611b9b565b915060208301358015158114611d3e57600080fd5b809150509250929050565b60008060008060808587031215611d5f57600080fd5b611d6885611b9b565b9350611d7660208601611b9b565b925060408501359150606085013567ffffffffffffffff811115611d9957600080fd5b8501601f81018713611daa57600080fd5b611db987823560208401611c33565b91505092959194509250565b60008060408385031215611dd857600080fd5b611de183611b9b565b9150611def60208401611b9b565b90509250929050565b600181811c90821680611e0c57607f821691505b602082108103611e2c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156105b9576105b9611e32565b60208082526010908201526f185b1c9958591e481b5a5b9d081bdd5d60821b604082015260600190565b634e487b7160e01b600052601260045260246000fd5b600082611eaa57611eaa611e85565b500690565b600082611ebe57611ebe611e85565b500490565b600060018201611ed557611ed5611e32565b5060010190565b601f8211156107f357600081815260208120601f850160051c81016020861015611f035750805b601f850160051c820191505b818110156108e557828155600101611f0f565b815167ffffffffffffffff811115611f3c57611f3c611c1d565b611f5081611f4a8454611df8565b84611edc565b602080601f831160018114611f855760008415611f6d5750858301515b600019600386901b1c1916600185901b1785556108e5565b600085815260208120601f198616915b82811015611fb457888601518255948401946001909101908401611f95565b5085821015611fd25787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820281158282048414176105b9576105b9611e32565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6000835161205e818460208801611b1f565b835190830190612072818360208801611b1f565b01949350505050565b6001600160801b0382811682821603908082111561209b5761209b611e32565b5092915050565b6001600160801b0381811683821601908082111561209b5761209b611e32565b818103818111156105b9576105b9611e32565b6000816120e4576120e4611e32565b506000190190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061211f90830184611b43565b9695505050505050565b60006020828403121561213b57600080fd5b8151610eea81611aec565b634e487b7160e01b600052603260045260246000fdfea264697066735822122084594c2aa029f1c762d76b14ecd9df600a7d6c68d17308fe405d3e056c697fe164736f6c6343000811003368747470733a2f2f77656173756b692e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f6d657461646174612f

Deployed Bytecode

0x6080604052600436106101b75760003560e01c8063715018a6116100ec578063b88d4fde1161008a578063d7224ba011610064578063d7224ba0146104b2578063e985e9c5146104c8578063eb8d244414610511578063f2fde38b1461053257600080fd5b8063b88d4fde14610452578063c87b56dd14610472578063cbce4c971461049257600080fd5b806395d89b41116100c657806395d89b41146103f45780639dfde20114610409578063a0712d681461041f578063a22cb4651461043257600080fd5b8063715018a6146103a15780638da5cb5b146103b657806391b7f5ed146103d457600080fd5b80632f745c59116101595780634f6ccce7116101335780634f6ccce71461032157806355f804b3146103415780636352211e1461036157806370a082311461038157600080fd5b80632f745c59146102cc5780633ccfd60b146102ec57806342842e0e1461030157600080fd5b8063095ea7b311610195578063095ea7b31461024b57806318160ddd1461026d57806323b872dd1461028c578063248b71fc146102ac57600080fd5b806301ffc9a7146101bc57806306fdde03146101f1578063081812fc14610213575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611b02565b610552565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b506102066105bf565b6040516101e89190611b6f565b34801561021f57600080fd5b5061023361022e366004611b82565b610651565b6040516001600160a01b0390911681526020016101e8565b34801561025757600080fd5b5061026b610266366004611bb7565b6106e1565b005b34801561027957600080fd5b506000545b6040519081526020016101e8565b34801561029857600080fd5b5061026b6102a7366004611be1565b6107f8565b3480156102b857600080fd5b5061026b6102c7366004611bb7565b610803565b3480156102d857600080fd5b5061027e6102e7366004611bb7565b6108ed565b3480156102f857600080fd5b5061026b610a59565b34801561030d57600080fd5b5061026b61031c366004611be1565b610b22565b34801561032d57600080fd5b5061027e61033c366004611b82565b610b3d565b34801561034d57600080fd5b5061026b61035c366004611ca9565b610b9f565b34801561036d57600080fd5b5061023361037c366004611b82565b610bb7565b34801561038d57600080fd5b5061027e61039c366004611cf2565b610bc9565b3480156103ad57600080fd5b5061026b610c5a565b3480156103c257600080fd5b506008546001600160a01b0316610233565b3480156103e057600080fd5b5061026b6103ef366004611b82565b610c6e565b34801561040057600080fd5b50610206610c7b565b34801561041557600080fd5b5061027e60095481565b61026b61042d366004611b82565b610c8a565b34801561043e57600080fd5b5061026b61044d366004611d0d565b610d27565b34801561045e57600080fd5b5061026b61046d366004611d49565b610deb565b34801561047e57600080fd5b5061020661048d366004611b82565b610e24565b34801561049e57600080fd5b5061026b6104ad366004611bb7565b610ef1565b3480156104be57600080fd5b5061027e60075481565b3480156104d457600080fd5b506101dc6104e3366004611dc5565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561051d57600080fd5b506008546101dc90600160a01b900460ff1681565b34801561053e57600080fd5b5061026b61054d366004611cf2565b610f39565b60006001600160e01b031982166380ac58cd60e01b148061058357506001600160e01b03198216635b5e139f60e01b145b8061059e57506001600160e01b0319821663780e9d6360e01b145b806105b957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105ce90611df8565b80601f01602080910402602001604051908101604052809291908181526020018280546105fa90611df8565b80156106475780601f1061061c57610100808354040283529160200191610647565b820191906000526020600020905b81548152906001019060200180831161062a57829003601f168201915b5050505050905090565b600061065e826000541190565b6106c55760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006106ec82610bb7565b9050806001600160a01b0316836001600160a01b03160361075a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016106bc565b336001600160a01b0382161480610776575061077681336104e3565b6107e85760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016106bc565b6107f3838383610faf565b505050565b6107f383838361100b565b61080b61138f565b6127106101f4818361081c60005490565b6108269190611e48565b11156108445760405162461bcd60e51b81526004016106bc90611e5b565b61084e8184611e9b565b156108b05760405162461bcd60e51b815260206004820152602c60248201527f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060448201526b6d6178426174636853697a6560a01b60648201526084016106bc565b60006108bc8285611eaf565b905060005b818110156108e5576108d386846113e9565b806108dd81611ec3565b9150506108c1565b505050505050565b60006108f883610bc9565b82106109515760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016106bc565b600080549080805b838110156109f9576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156109ac57805192505b876001600160a01b0316836001600160a01b0316036109e6578684036109d8575093506105b992505050565b836109e281611ec3565b9450505b50806109f181611ec3565b915050610959565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016106bc565b610a6161138f565b604051600090339047908381818185875af1925050503d8060008114610aa3576040519150601f19603f3d011682016040523d82523d6000602084013e610aa8565b606091505b5050905080610b1f5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016106bc565b50565b6107f383838360405180602001604052806000815250610deb565b600080548210610b9b5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016106bc565b5090565b610ba761138f565b600a610bb38282611f22565b5050565b6000610bc282611403565b5192915050565b60006001600160a01b038216610c355760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016106bc565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b610c6261138f565b610c6c60006115ad565b565b610c7661138f565b600955565b6060600280546105ce90611df8565b6127108082610c9860005490565b610ca29190611e48565b1115610cc05760405162461bcd60e51b81526004016106bc90611e5b565b3482600954610ccf9190611fe2565b1115610d1d5760405162461bcd60e51b815260206004820152601a60248201527f446f6e27742073656e6420756e6465722028696e20455448292e00000000000060448201526064016106bc565b610bb333836113e9565b336001600160a01b03831603610d7f5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016106bc565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610df684848461100b565b610e02848484846115ff565b610e1e5760405162461bcd60e51b81526004016106bc90611ff9565b50505050565b6060610e31826000541190565b610e955760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106bc565b6000610e9f611701565b90506000815111610ebf5760405180602001604052806000815250610eea565b80610ec984611710565b604051602001610eda92919061204c565b6040516020818303038152906040525b9392505050565b610ef961138f565b6127108082610f0760005490565b610f119190611e48565b1115610f2f5760405162461bcd60e51b81526004016106bc90611e5b565b6107f383836113e9565b610f4161138f565b6001600160a01b038116610fa65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106bc565b610b1f816115ad565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061101682611403565b80519091506000906001600160a01b0316336001600160a01b0316148061104d57503361104284610651565b6001600160a01b0316145b8061105f5750815161105f90336104e3565b9050806110c95760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016106bc565b846001600160a01b031682600001516001600160a01b03161461113d5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016106bc565b6001600160a01b0384166111a15760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016106bc565b6111b16000848460000151610faf565b6001600160a01b03851660009081526004602052604081208054600192906111e39084906001600160801b031661207b565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600460205260408120805460019450909261122f918591166120a2565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556112b7846001611e48565b6000818152600360205260409020549091506001600160a01b0316611349576112e1816000541190565b156113495760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46108e5565b6008546001600160a01b03163314610c6c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106bc565b610bb3828260405180602001604052806000815250611811565b6040805180820190915260008082526020820152611422826000541190565b6114815760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016106bc565b60007f00000000000000000000000000000000000000000000000000000000000001f483106114e2576114d47f00000000000000000000000000000000000000000000000000000000000001f4846120c2565b6114df906001611e48565b90505b825b81811061154c576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561153957949350505050565b5080611544816120d5565b9150506114e4565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b60648201526084016106bc565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b156116f557604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906116439033908990889088906004016120ec565b6020604051808303816000875af192505050801561167e575060408051601f3d908101601f1916820190925261167b91810190612129565b60015b6116db573d8080156116ac576040519150601f19603f3d011682016040523d82523d6000602084013e6116b1565b606091505b5080516000036116d35760405162461bcd60e51b81526004016106bc90611ff9565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506116f9565b5060015b949350505050565b6060600a80546105ce90611df8565b6060816000036117375750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611761578061174b81611ec3565b915061175a9050600a83611eaf565b915061173b565b60008167ffffffffffffffff81111561177c5761177c611c1d565b6040519080825280601f01601f1916602001820160405280156117a6576020820181803683370190505b5090505b84156116f9576117bb6001836120c2565b91506117c8600a86611e9b565b6117d3906030611e48565b60f81b8183815181106117e8576117e8612146565b60200101906001600160f81b031916908160001a90535061180a600a86611eaf565b94506117aa565b6000546001600160a01b0384166118745760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106bc565b61187f816000541190565b156118cc5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016106bc565b7f00000000000000000000000000000000000000000000000000000000000001f48311156119475760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b60648201526084016106bc565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906119a39087906120a2565b6001600160801b031681526020018583602001516119c191906120a2565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611ae15760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611aa560008884886115ff565b611ac15760405162461bcd60e51b81526004016106bc90611ff9565b81611acb81611ec3565b9250508080611ad990611ec3565b915050611a58565b5060008190556108e5565b6001600160e01b031981168114610b1f57600080fd5b600060208284031215611b1457600080fd5b8135610eea81611aec565b60005b83811015611b3a578181015183820152602001611b22565b50506000910152565b60008151808452611b5b816020860160208601611b1f565b601f01601f19169290920160200192915050565b602081526000610eea6020830184611b43565b600060208284031215611b9457600080fd5b5035919050565b80356001600160a01b0381168114611bb257600080fd5b919050565b60008060408385031215611bca57600080fd5b611bd383611b9b565b946020939093013593505050565b600080600060608486031215611bf657600080fd5b611bff84611b9b565b9250611c0d60208501611b9b565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611c4e57611c4e611c1d565b604051601f8501601f19908116603f01168101908282118183101715611c7657611c76611c1d565b81604052809350858152868686011115611c8f57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611cbb57600080fd5b813567ffffffffffffffff811115611cd257600080fd5b8201601f81018413611ce357600080fd5b6116f984823560208401611c33565b600060208284031215611d0457600080fd5b610eea82611b9b565b60008060408385031215611d2057600080fd5b611d2983611b9b565b915060208301358015158114611d3e57600080fd5b809150509250929050565b60008060008060808587031215611d5f57600080fd5b611d6885611b9b565b9350611d7660208601611b9b565b925060408501359150606085013567ffffffffffffffff811115611d9957600080fd5b8501601f81018713611daa57600080fd5b611db987823560208401611c33565b91505092959194509250565b60008060408385031215611dd857600080fd5b611de183611b9b565b9150611def60208401611b9b565b90509250929050565b600181811c90821680611e0c57607f821691505b602082108103611e2c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156105b9576105b9611e32565b60208082526010908201526f185b1c9958591e481b5a5b9d081bdd5d60821b604082015260600190565b634e487b7160e01b600052601260045260246000fd5b600082611eaa57611eaa611e85565b500690565b600082611ebe57611ebe611e85565b500490565b600060018201611ed557611ed5611e32565b5060010190565b601f8211156107f357600081815260208120601f850160051c81016020861015611f035750805b601f850160051c820191505b818110156108e557828155600101611f0f565b815167ffffffffffffffff811115611f3c57611f3c611c1d565b611f5081611f4a8454611df8565b84611edc565b602080601f831160018114611f855760008415611f6d5750858301515b600019600386901b1c1916600185901b1785556108e5565b600085815260208120601f198616915b82811015611fb457888601518255948401946001909101908401611f95565b5085821015611fd25787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b80820281158282048414176105b9576105b9611e32565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6000835161205e818460208801611b1f565b835190830190612072818360208801611b1f565b01949350505050565b6001600160801b0382811682821603908082111561209b5761209b611e32565b5092915050565b6001600160801b0381811683821601908082111561209b5761209b611e32565b818103818111156105b9576105b9611e32565b6000816120e4576120e4611e32565b506000190190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061211f90830184611b43565b9695505050505050565b60006020828403121561213b57600080fd5b8151610eea81611aec565b634e487b7160e01b600052603260045260246000fdfea264697066735822122084594c2aa029f1c762d76b14ecd9df600a7d6c68d17308fe405d3e056c697fe164736f6c63430008110033

Deployed Bytecode Sourcemap

40525:2057:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25104:370;;;;;;;;;;-1:-1:-1;25104:370:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;25104:370:0;;;;;;;;26830:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28355:204::-;;;;;;;;;;-1:-1:-1;28355:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;28355:204:0;1533:203:1;27918:379:0;;;;;;;;;;-1:-1:-1;27918:379:0;;;;;:::i;:::-;;:::i;:::-;;23668:94;;;;;;;;;;-1:-1:-1;23721:7:0;23744:12;23668:94;;;2324:25:1;;;2312:2;2297:18;23668:94:0;2178:177:1;29205:142:0;;;;;;;;;;-1:-1:-1;29205:142:0;;;;;:::i;:::-;;:::i;41579:480::-;;;;;;;;;;-1:-1:-1;41579:480:0;;;;;:::i;:::-;;:::i;24296:744::-;;;;;;;;;;-1:-1:-1;24296:744:0;;;;;:::i;:::-;;:::i;42327:250::-;;;;;;;;;;;;;:::i;29410:157::-;;;;;;;;;;-1:-1:-1;29410:157:0;;;;;:::i;:::-;;:::i;23831:177::-;;;;;;;;;;-1:-1:-1;23831:177:0;;;;;:::i;:::-;;:::i;40882:111::-;;;;;;;;;;-1:-1:-1;40882:111:0;;;;;:::i;:::-;;:::i;26653:118::-;;;;;;;;;;-1:-1:-1;26653:118:0;;;;;:::i;:::-;;:::i;25530:211::-;;;;;;;;;;-1:-1:-1;25530:211:0;;;;;:::i;:::-;;:::i;39201:103::-;;;;;;;;;;;;;:::i;38553:87::-;;;;;;;;;;-1:-1:-1;38626:6:0;;-1:-1:-1;;;;;38626:6:0;38553:87;;41126:88;;;;;;;;;;-1:-1:-1;41126:88:0;;;;;:::i;:::-;;:::i;26985:98::-;;;;;;;;;;;;;:::i;40615:34::-;;;;;;;;;;;;;;;;41222:349;;;;;;:::i;:::-;;:::i;28623:274::-;;;;;;;;;;-1:-1:-1;28623:274:0;;;;;:::i;:::-;;:::i;29630:311::-;;;;;;;;;;-1:-1:-1;29630:311:0;;;;;:::i;:::-;;:::i;27146:394::-;;;;;;;;;;-1:-1:-1;27146:394:0;;;;;:::i;:::-;;:::i;42067:252::-;;;;;;;;;;-1:-1:-1;42067:252:0;;;;;:::i;:::-;;:::i;33961:43::-;;;;;;;;;;;;;;;;28960:186;;;;;;;;;;-1:-1:-1;28960:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;29105:25:0;;;29082:4;29105:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28960:186;40577:31;;;;;;;;;;-1:-1:-1;40577:31:0;;;;-1:-1:-1;;;40577:31:0;;;;;;39459:201;;;;;;;;;;-1:-1:-1;39459:201:0;;;;;:::i;:::-;;:::i;25104:370::-;25231:4;-1:-1:-1;;;;;;25261:40:0;;-1:-1:-1;;;25261:40:0;;:99;;-1:-1:-1;;;;;;;25312:48:0;;-1:-1:-1;;;25312:48:0;25261:99;:160;;;-1:-1:-1;;;;;;;25371:50:0;;-1:-1:-1;;;25371:50:0;25261:160;:207;;;-1:-1:-1;;;;;;;;;;13995:40:0;;;25432:36;25247:221;25104:370;-1:-1:-1;;25104:370:0:o;26830:94::-;26884:13;26913:5;26906:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26830:94;:::o;28355:204::-;28423:7;28447:16;28455:7;30237:4;30267:12;-1:-1:-1;30257:22:0;30180:105;28447:16;28439:74;;;;-1:-1:-1;;;28439:74:0;;5985:2:1;28439:74:0;;;5967:21:1;6024:2;6004:18;;;5997:30;6063:34;6043:18;;;6036:62;-1:-1:-1;;;6114:18:1;;;6107:43;6167:19;;28439:74:0;;;;;;;;;-1:-1:-1;28529:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28529:24:0;;28355:204::o;27918:379::-;27987:13;28003:24;28019:7;28003:15;:24::i;:::-;27987:40;;28048:5;-1:-1:-1;;;;;28042:11:0;:2;-1:-1:-1;;;;;28042:11:0;;28034:58;;;;-1:-1:-1;;;28034:58:0;;6399:2:1;28034:58:0;;;6381:21:1;6438:2;6418:18;;;6411:30;6477:34;6457:18;;;6450:62;-1:-1:-1;;;6528:18:1;;;6521:32;6570:19;;28034:58:0;6197:398:1;28034:58:0;21576:10;-1:-1:-1;;;;;28117:21:0;;;;:62;;-1:-1:-1;28142:37:0;28159:5;21576:10;28960:186;:::i;28142:37::-;28101:153;;;;-1:-1:-1;;;28101:153:0;;6802:2:1;28101:153:0;;;6784:21:1;6841:2;6821:18;;;6814:30;6880:34;6860:18;;;6853:62;6951:27;6931:18;;;6924:55;6996:19;;28101:153:0;6600:421:1;28101:153:0;28263:28;28272:2;28276:7;28285:5;28263:8;:28::i;:::-;27980:317;27918:379;;:::o;29205:142::-;29313:28;29323:4;29329:2;29333:7;29313:9;:28::i;41579:480::-;38439:13;:11;:13::i;:::-;41677:5:::1;41716:3;41677:5:::0;41754:8;41738:13:::1;23721:7:::0;23744:12;;23668:94;41738:13:::1;:24;;;;:::i;:::-;:36;;41730:65;;;;-1:-1:-1::0;;;41730:65:0::1;;;;;;;:::i;:::-;41814:23;41825:12:::0;41814:8;:23:::1;:::i;:::-;:28:::0;41806:85:::1;;;::::0;-1:-1:-1;;;41806:85:0;;8084:2:1;41806:85:0::1;::::0;::::1;8066:21:1::0;8123:2;8103:18;;;8096:30;8162:34;8142:18;;;8135:62;-1:-1:-1;;;8213:18:1;;;8206:42;8265:19;;41806:85:0::1;7882:408:1::0;41806:85:0::1;41904:17;41924:23;41935:12:::0;41924:8;:23:::1;:::i;:::-;41904:43;;41963:9;41958:94;41982:9;41978:1;:13;41958:94;;;42013:27;42023:2;42027:12;42013:9;:27::i;:::-;41993:3:::0;::::1;::::0;::::1;:::i;:::-;;;;41958:94;;;;41647:412;;;41579:480:::0;;:::o;24296:744::-;24405:7;24440:16;24450:5;24440:9;:16::i;:::-;24432:5;:24;24424:71;;;;-1:-1:-1;;;24424:71:0;;8762:2:1;24424:71:0;;;8744:21:1;8801:2;8781:18;;;8774:30;8840:34;8820:18;;;8813:62;-1:-1:-1;;;8891:18:1;;;8884:32;8933:19;;24424:71:0;8560:398:1;24424:71:0;24502:22;23744:12;;;24502:22;;24622:350;24646:14;24642:1;:18;24622:350;;;24676:31;24710:14;;;:11;:14;;;;;;;;;24676:48;;;;;;;;;-1:-1:-1;;;;;24676:48:0;;;;;-1:-1:-1;;;24676:48:0;;;;;;;;;;;;24737:28;24733:89;;24798:14;;;-1:-1:-1;24733:89:0;24855:5;-1:-1:-1;;;;;24834:26:0;:17;-1:-1:-1;;;;;24834:26:0;;24830:135;;24892:5;24877:11;:20;24873:59;;-1:-1:-1;24919:1:0;-1:-1:-1;24912:8:0;;-1:-1:-1;;;24912:8:0;24873:59;24942:13;;;;:::i;:::-;;;;24830:135;-1:-1:-1;24662:3:0;;;;:::i;:::-;;;;24622:350;;;-1:-1:-1;24978:56:0;;-1:-1:-1;;;24978:56:0;;9165:2:1;24978:56:0;;;9147:21:1;9204:2;9184:18;;;9177:30;9243:34;9223:18;;;9216:62;-1:-1:-1;;;9294:18:1;;;9287:44;9348:19;;24978:56:0;8963:410:1;42327:250:0;38439:13;:11;:13::i;:::-;42394:49:::1;::::0;42376:12:::1;::::0;42394:10:::1;::::0;42417:21:::1;::::0;42376:12;42394:49;42376:12;42394:49;42417:21;42394:10;:49:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42375:68;;;42476:7;42454:115;;;::::0;-1:-1:-1;;;42454:115:0;;9790:2:1;42454:115:0::1;::::0;::::1;9772:21:1::0;9829:2;9809:18;;;9802:30;9868:34;9848:18;;;9841:62;9939:28;9919:18;;;9912:56;9985:19;;42454:115:0::1;9588:422:1::0;42454:115:0::1;42364:213;42327:250::o:0;29410:157::-;29522:39;29539:4;29545:2;29549:7;29522:39;;;;;;;;;;;;:16;:39::i;23831:177::-;23898:7;23744:12;;23922:5;:21;23914:69;;;;-1:-1:-1;;;23914:69:0;;10217:2:1;23914:69:0;;;10199:21:1;10256:2;10236:18;;;10229:30;10295:34;10275:18;;;10268:62;-1:-1:-1;;;10346:18:1;;;10339:33;10389:19;;23914:69:0;10015:399:1;23914:69:0;-1:-1:-1;23997:5:0;23831:177::o;40882:111::-;38439:13;:11;:13::i;:::-;40958:16:::1;:27;40977:8:::0;40958:16;:27:::1;:::i;:::-;;40882:111:::0;:::o;26653:118::-;26717:7;26740:20;26752:7;26740:11;:20::i;:::-;:25;;26653:118;-1:-1:-1;;26653:118:0:o;25530:211::-;25594:7;-1:-1:-1;;;;;25618:19:0;;25610:75;;;;-1:-1:-1;;;25610:75:0;;12825:2:1;25610:75:0;;;12807:21:1;12864:2;12844:18;;;12837:30;12903:34;12883:18;;;12876:62;-1:-1:-1;;;12954:18:1;;;12947:41;13005:19;;25610:75:0;12623:407:1;25610:75:0;-1:-1:-1;;;;;;25707:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;25707:27:0;;25530:211::o;39201:103::-;38439:13;:11;:13::i;:::-;39266:30:::1;39293:1;39266:18;:30::i;:::-;39201:103::o:0;41126:88::-;38439:13;:11;:13::i;:::-;41190:5:::1;:16:::0;41126:88::o;26985:98::-;27041:13;27070:7;27063:14;;;;;:::i;41222:349::-;41311:5;;41351:14;41335:13;23721:7;23744:12;;23668:94;41335:13;:30;;;;:::i;:::-;:42;;41327:71;;;;-1:-1:-1;;;41327:71:0;;;;;;;:::i;:::-;41451:9;41432:14;41424:5;;:22;;;;:::i;:::-;41423:37;;41415:76;;;;-1:-1:-1;;;41415:76:0;;13410:2:1;41415:76:0;;;13392:21:1;13449:2;13429:18;;;13422:30;13488:28;13468:18;;;13461:56;13534:18;;41415:76:0;13208:350:1;41415:76:0;41502:37;41512:10;41524:14;41502:9;:37::i;28623:274::-;21576:10;-1:-1:-1;;;;;28714:24:0;;;28706:63;;;;-1:-1:-1;;;28706:63:0;;13765:2:1;28706:63:0;;;13747:21:1;13804:2;13784:18;;;13777:30;13843:28;13823:18;;;13816:56;13889:18;;28706:63:0;13563:350:1;28706:63:0;21576:10;28778:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;28778:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;28778:53:0;;;;;;;;;;28843:48;;540:41:1;;;28778:42:0;;21576:10;28843:48;;513:18:1;28843:48:0;;;;;;;28623:274;;:::o;29630:311::-;29767:28;29777:4;29783:2;29787:7;29767:9;:28::i;:::-;29818:48;29841:4;29847:2;29851:7;29860:5;29818:22;:48::i;:::-;29802:133;;;;-1:-1:-1;;;29802:133:0;;;;;;;:::i;:::-;29630:311;;;;:::o;27146:394::-;27244:13;27285:16;27293:7;30237:4;30267:12;-1:-1:-1;30257:22:0;30180:105;27285:16;27269:97;;;;-1:-1:-1;;;27269:97:0;;14540:2:1;27269:97:0;;;14522:21:1;14579:2;14559:18;;;14552:30;14618:34;14598:18;;;14591:62;-1:-1:-1;;;14669:18:1;;;14662:45;14724:19;;27269:97:0;14338:411:1;27269:97:0;27375:21;27399:10;:8;:10::i;:::-;27375:34;;27454:1;27436:7;27430:21;:25;:104;;;;;;;;;;;;;;;;;27491:7;27500:18;:7;:16;:18::i;:::-;27474:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27430:104;27416:118;27146:394;-1:-1:-1;;;27146:394:0:o;42067:252::-;38439:13;:11;:13::i;:::-;42170:5:::1;::::0;42211:14;42195:13:::1;23721:7:::0;23744:12;;23668:94;42195:13:::1;:30;;;;:::i;:::-;:42;;42187:71;;;;-1:-1:-1::0;;;42187:71:0::1;;;;;;;:::i;:::-;42281:30;42291:3;42296:14;42281:9;:30::i;39459:201::-:0;38439:13;:11;:13::i;:::-;-1:-1:-1;;;;;39548:22:0;::::1;39540:73;;;::::0;-1:-1:-1;;;39540:73:0;;15457:2:1;39540:73:0::1;::::0;::::1;15439:21:1::0;15496:2;15476:18;;;15469:30;15535:34;15515:18;;;15508:62;-1:-1:-1;;;15586:18:1;;;15579:36;15632:19;;39540:73:0::1;15255:402:1::0;39540:73:0::1;39624:28;39643:8;39624:18;:28::i;33783:172::-:0;33880:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;33880:29:0;-1:-1:-1;;;;;33880:29:0;;;;;;;;;33921:28;;33880:24;;33921:28;;;;;;;33783:172;;;:::o;32148:1529::-;32245:35;32283:20;32295:7;32283:11;:20::i;:::-;32354:18;;32245:58;;-1:-1:-1;32312:22:0;;-1:-1:-1;;;;;32338:34:0;21576:10;-1:-1:-1;;;;;32338:34:0;;:81;;;-1:-1:-1;21576:10:0;32383:20;32395:7;32383:11;:20::i;:::-;-1:-1:-1;;;;;32383:36:0;;32338:81;:142;;;-1:-1:-1;32447:18:0;;32430:50;;21576:10;28960:186;:::i;32430:50::-;32312:169;;32506:17;32490:101;;;;-1:-1:-1;;;32490:101:0;;15864:2:1;32490:101:0;;;15846:21:1;15903:2;15883:18;;;15876:30;15942:34;15922:18;;;15915:62;-1:-1:-1;;;15993:18:1;;;15986:48;16051:19;;32490:101:0;15662:414:1;32490:101:0;32638:4;-1:-1:-1;;;;;32616:26:0;:13;:18;;;-1:-1:-1;;;;;32616:26:0;;32600:98;;;;-1:-1:-1;;;32600:98:0;;16283:2:1;32600:98:0;;;16265:21:1;16322:2;16302:18;;;16295:30;16361:34;16341:18;;;16334:62;-1:-1:-1;;;16412:18:1;;;16405:36;16458:19;;32600:98:0;16081:402:1;32600:98:0;-1:-1:-1;;;;;32713:16:0;;32705:66;;;;-1:-1:-1;;;32705:66:0;;16690:2:1;32705:66:0;;;16672:21:1;16729:2;16709:18;;;16702:30;16768:34;16748:18;;;16741:62;-1:-1:-1;;;16819:18:1;;;16812:35;16864:19;;32705:66:0;16488:401:1;32705:66:0;32880:49;32897:1;32901:7;32910:13;:18;;;32880:8;:49::i;:::-;-1:-1:-1;;;;;32938:18:0;;;;;;:12;:18;;;;;:31;;32968:1;;32938:18;:31;;32968:1;;-1:-1:-1;;;;;32938:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;32938:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32976:16:0;;-1:-1:-1;32976:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;32976:16:0;;:29;;-1:-1:-1;;32976:29:0;;:::i;:::-;;;-1:-1:-1;;;;;32976:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33035:43:0;;;;;;;;-1:-1:-1;;;;;33035:43:0;;;;;;33061:15;33035:43;;;;;;;;;-1:-1:-1;33012:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;33012:66:0;-1:-1:-1;;;;;;33012:66:0;;;;;;;;;;;33328:11;33024:7;-1:-1:-1;33328:11:0;:::i;:::-;33391:1;33350:24;;;:11;:24;;;;;:29;33306:33;;-1:-1:-1;;;;;;33350:29:0;33346:236;;33408:20;33416:11;30237:4;30267:12;-1:-1:-1;30257:22:0;30180:105;33408:20;33404:171;;;33468:97;;;;;;;;33495:18;;-1:-1:-1;;;;;33468:97:0;;;;;;33526:28;;;;33468:97;;;;;;;;;;-1:-1:-1;33441:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;33441:124:0;-1:-1:-1;;;;;;33441:124:0;;;;;;;;;;;;33404:171;33614:7;33610:2;-1:-1:-1;;;;;33595:27:0;33604:4;-1:-1:-1;;;;;33595:27:0;;;;;;;;;;;33629:42;29630:311;38718:132;38626:6;;-1:-1:-1;;;;;38626:6:0;21576:10;38782:23;38774:68;;;;-1:-1:-1;;;38774:68:0;;17503:2:1;38774:68:0;;;17485:21:1;;;17522:18;;;17515:30;17581:34;17561:18;;;17554:62;17633:18;;38774:68:0;17301:356:1;30291:98:0;30356:27;30366:2;30370:8;30356:27;;;;;;;;;;;;:9;:27::i;25993:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;26110:16:0;26118:7;30237:4;30267:12;-1:-1:-1;30257:22:0;30180:105;26110:16;26102:71;;;;-1:-1:-1;;;26102:71:0;;17864:2:1;26102:71:0;;;17846:21:1;17903:2;17883:18;;;17876:30;17942:34;17922:18;;;17915:62;-1:-1:-1;;;17993:18:1;;;17986:40;18043:19;;26102:71:0;17662:406:1;26102:71:0;26182:26;26230:12;26219:7;:23;26215:93;;26274:22;26284:12;26274:7;:22;:::i;:::-;:26;;26299:1;26274:26;:::i;:::-;26253:47;;26215:93;26336:7;26316:212;26353:18;26345:4;:26;26316:212;;26390:31;26424:17;;;:11;:17;;;;;;;;;26390:51;;;;;;;;;-1:-1:-1;;;;;26390:51:0;;;;;-1:-1:-1;;;26390:51:0;;;;;;;;;;;;26454:28;26450:71;;26502:9;25993:606;-1:-1:-1;;;;25993:606:0:o;26450:71::-;-1:-1:-1;26373:6:0;;;;:::i;:::-;;;;26316:212;;;-1:-1:-1;26536:57:0;;-1:-1:-1;;;26536:57:0;;18549:2:1;26536:57:0;;;18531:21:1;18588:2;18568:18;;;18561:30;18627:34;18607:18;;;18600:62;-1:-1:-1;;;18678:18:1;;;18671:45;18733:19;;26536:57:0;18347:411:1;39820:191:0;39913:6;;;-1:-1:-1;;;;;39930:17:0;;;-1:-1:-1;;;;;;39930:17:0;;;;;;;39963:40;;39913:6;;;39930:17;39913:6;;39963:40;;39894:16;;39963:40;39883:128;39820:191;:::o;35494:690::-;35631:4;-1:-1:-1;;;;;35648:13:0;;4025:19;:23;35644:535;;35687:72;;-1:-1:-1;;;35687:72:0;;-1:-1:-1;;;;;35687:36:0;;;;;:72;;21576:10;;35738:4;;35744:7;;35753:5;;35687:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35687:72:0;;;;;;;;-1:-1:-1;;35687:72:0;;;;;;;;;;;;:::i;:::-;;;35674:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35918:6;:13;35935:1;35918:18;35914:215;;35951:61;;-1:-1:-1;;;35951:61:0;;;;;;;:::i;35914:215::-;36097:6;36091:13;36082:6;36078:2;36074:15;36067:38;35674:464;-1:-1:-1;;;;;;35809:55:0;-1:-1:-1;;;35809:55:0;;-1:-1:-1;35802:62:0;;35644:535;-1:-1:-1;36167:4:0;35644:535;35494:690;;;;;;:::o;41001:117::-;41061:13;41094:16;41087:23;;;;;:::i;430:723::-;486:13;707:5;716:1;707:10;703:53;;-1:-1:-1;;734:10:0;;;;;;;;;;;;-1:-1:-1;;;734:10:0;;;;;430:723::o;703:53::-;781:5;766:12;822:78;829:9;;822:78;;855:8;;;;:::i;:::-;;-1:-1:-1;878:10:0;;-1:-1:-1;886:2:0;878:10;;:::i;:::-;;;822:78;;;910:19;942:6;932:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;932:17:0;;910:39;;960:154;967:10;;960:154;;994:11;1004:1;994:11;;:::i;:::-;;-1:-1:-1;1063:10:0;1071:2;1063:5;:10;:::i;:::-;1050:24;;:2;:24;:::i;:::-;1037:39;;1020:6;1027;1020:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1020:56:0;;;;;;;;-1:-1:-1;1091:11:0;1100:2;1091:11;;:::i;:::-;;;960:154;;30644:1272;30749:20;30772:12;-1:-1:-1;;;;;30799:16:0;;30791:62;;;;-1:-1:-1;;;30791:62:0;;19845:2:1;30791:62:0;;;19827:21:1;19884:2;19864:18;;;19857:30;19923:34;19903:18;;;19896:62;-1:-1:-1;;;19974:18:1;;;19967:31;20015:19;;30791:62:0;19643:397:1;30791:62:0;30990:21;30998:12;30237:4;30267:12;-1:-1:-1;30257:22:0;30180:105;30990:21;30989:22;30981:64;;;;-1:-1:-1;;;30981:64:0;;20247:2:1;30981:64:0;;;20229:21:1;20286:2;20266:18;;;20259:30;20325:31;20305:18;;;20298:59;20374:18;;30981:64:0;20045:353:1;30981:64:0;31072:12;31060:8;:24;;31052:71;;;;-1:-1:-1;;;31052:71:0;;20605:2:1;31052:71:0;;;20587:21:1;20644:2;20624:18;;;20617:30;20683:34;20663:18;;;20656:62;-1:-1:-1;;;20734:18:1;;;20727:32;20776:19;;31052:71:0;20403:398:1;31052:71:0;-1:-1:-1;;;;;31235:16:0;;31202:30;31235:16;;;:12;:16;;;;;;;;;31202:49;;;;;;;;;-1:-1:-1;;;;;31202:49:0;;;;;-1:-1:-1;;;31202:49:0;;;;;;;;;;;31277:119;;;;;;;;31297:19;;31202:49;;31277:119;;;31297:39;;31327:8;;31297:39;:::i;:::-;-1:-1:-1;;;;;31277:119:0;;;;;31380:8;31345:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;31277:119:0;;;;;;-1:-1:-1;;;;;31258:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;31258:138:0;;;;;;;;;;;;31431:43;;;;;;;;;;;31457:15;31431:43;;;;;;;;31403:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;31403:71:0;-1:-1:-1;;;;;;31403:71:0;;;;;;;;;;;;;;;;;;31415:12;;31527:281;31551:8;31547:1;:12;31527:281;;;31580:38;;31605:12;;-1:-1:-1;;;;;31580:38:0;;;31597:1;;31580:38;;31597:1;;31580:38;31645:59;31676:1;31680:2;31684:12;31698:5;31645:22;:59::i;:::-;31627:150;;;;-1:-1:-1;;;31627:150:0;;;;;;;:::i;:::-;31786:14;;;;:::i;:::-;;;;31561:3;;;;;:::i;:::-;;;;31527:281;;;-1:-1:-1;31816:12:0;:27;;;31850:60;29630:311;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:328::-;2437:6;2445;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2545:29;2564:9;2545:29;:::i;:::-;2535:39;;2593:38;2627:2;2616:9;2612:18;2593:38;:::i;:::-;2583:48;;2678:2;2667:9;2663:18;2650:32;2640:42;;2360:328;;;;;:::o;2693:127::-;2754:10;2749:3;2745:20;2742:1;2735:31;2785:4;2782:1;2775:15;2809:4;2806:1;2799:15;2825:632;2890:5;2920:18;2961:2;2953:6;2950:14;2947:40;;;2967:18;;:::i;:::-;3042:2;3036:9;3010:2;3096:15;;-1:-1:-1;;3092:24:1;;;3118:2;3088:33;3084:42;3072:55;;;3142:18;;;3162:22;;;3139:46;3136:72;;;3188:18;;:::i;:::-;3228:10;3224:2;3217:22;3257:6;3248:15;;3287:6;3279;3272:22;3327:3;3318:6;3313:3;3309:16;3306:25;3303:45;;;3344:1;3341;3334:12;3303:45;3394:6;3389:3;3382:4;3374:6;3370:17;3357:44;3449:1;3442:4;3433:6;3425;3421:19;3417:30;3410:41;;;;2825:632;;;;;:::o;3462:451::-;3531:6;3584:2;3572:9;3563:7;3559:23;3555:32;3552:52;;;3600:1;3597;3590:12;3552:52;3640:9;3627:23;3673:18;3665:6;3662:30;3659:50;;;3705:1;3702;3695:12;3659:50;3728:22;;3781:4;3773:13;;3769:27;-1:-1:-1;3759:55:1;;3810:1;3807;3800:12;3759:55;3833:74;3899:7;3894:2;3881:16;3876:2;3872;3868:11;3833:74;:::i;3918:186::-;3977:6;4030:2;4018:9;4009:7;4005:23;4001:32;3998:52;;;4046:1;4043;4036:12;3998:52;4069:29;4088:9;4069:29;:::i;4109:347::-;4174:6;4182;4235:2;4223:9;4214:7;4210:23;4206:32;4203:52;;;4251:1;4248;4241:12;4203:52;4274:29;4293:9;4274:29;:::i;:::-;4264:39;;4353:2;4342:9;4338:18;4325:32;4400:5;4393:13;4386:21;4379:5;4376:32;4366:60;;4422:1;4419;4412:12;4366:60;4445:5;4435:15;;;4109:347;;;;;:::o;4461:667::-;4556:6;4564;4572;4580;4633:3;4621:9;4612:7;4608:23;4604:33;4601:53;;;4650:1;4647;4640:12;4601:53;4673:29;4692:9;4673:29;:::i;:::-;4663:39;;4721:38;4755:2;4744:9;4740:18;4721:38;:::i;:::-;4711:48;;4806:2;4795:9;4791:18;4778:32;4768:42;;4861:2;4850:9;4846:18;4833:32;4888:18;4880:6;4877:30;4874:50;;;4920:1;4917;4910:12;4874:50;4943:22;;4996:4;4988:13;;4984:27;-1:-1:-1;4974:55:1;;5025:1;5022;5015:12;4974:55;5048:74;5114:7;5109:2;5096:16;5091:2;5087;5083:11;5048:74;:::i;:::-;5038:84;;;4461:667;;;;;;;:::o;5133:260::-;5201:6;5209;5262:2;5250:9;5241:7;5237:23;5233:32;5230:52;;;5278:1;5275;5268:12;5230:52;5301:29;5320:9;5301:29;:::i;:::-;5291:39;;5349:38;5383:2;5372:9;5368:18;5349:38;:::i;:::-;5339:48;;5133:260;;;;;:::o;5398:380::-;5477:1;5473:12;;;;5520;;;5541:61;;5595:4;5587:6;5583:17;5573:27;;5541:61;5648:2;5640:6;5637:14;5617:18;5614:38;5611:161;;5694:10;5689:3;5685:20;5682:1;5675:31;5729:4;5726:1;5719:15;5757:4;5754:1;5747:15;5611:161;;5398:380;;;:::o;7026:127::-;7087:10;7082:3;7078:20;7075:1;7068:31;7118:4;7115:1;7108:15;7142:4;7139:1;7132:15;7158:125;7223:9;;;7244:10;;;7241:36;;;7257:18;;:::i;7288:340::-;7490:2;7472:21;;;7529:2;7509:18;;;7502:30;-1:-1:-1;;;7563:2:1;7548:18;;7541:46;7619:2;7604:18;;7288:340::o;7633:127::-;7694:10;7689:3;7685:20;7682:1;7675:31;7725:4;7722:1;7715:15;7749:4;7746:1;7739:15;7765:112;7797:1;7823;7813:35;;7828:18;;:::i;:::-;-1:-1:-1;7862:9:1;;7765:112::o;8295:120::-;8335:1;8361;8351:35;;8366:18;;:::i;:::-;-1:-1:-1;8400:9:1;;8295:120::o;8420:135::-;8459:3;8480:17;;;8477:43;;8500:18;;:::i;:::-;-1:-1:-1;8547:1:1;8536:13;;8420:135::o;10545:545::-;10647:2;10642:3;10639:11;10636:448;;;10683:1;10708:5;10704:2;10697:17;10753:4;10749:2;10739:19;10823:2;10811:10;10807:19;10804:1;10800:27;10794:4;10790:38;10859:4;10847:10;10844:20;10841:47;;;-1:-1:-1;10882:4:1;10841:47;10937:2;10932:3;10928:12;10925:1;10921:20;10915:4;10911:31;10901:41;;10992:82;11010:2;11003:5;11000:13;10992:82;;;11055:17;;;11036:1;11025:13;10992:82;;11266:1352;11392:3;11386:10;11419:18;11411:6;11408:30;11405:56;;;11441:18;;:::i;:::-;11470:97;11560:6;11520:38;11552:4;11546:11;11520:38;:::i;:::-;11514:4;11470:97;:::i;:::-;11622:4;;11686:2;11675:14;;11703:1;11698:663;;;;12405:1;12422:6;12419:89;;;-1:-1:-1;12474:19:1;;;12468:26;12419:89;-1:-1:-1;;11223:1:1;11219:11;;;11215:24;11211:29;11201:40;11247:1;11243:11;;;11198:57;12521:81;;11668:944;;11698:663;10492:1;10485:14;;;10529:4;10516:18;;-1:-1:-1;;11734:20:1;;;11852:236;11866:7;11863:1;11860:14;11852:236;;;11955:19;;;11949:26;11934:42;;12047:27;;;;12015:1;12003:14;;;;11882:19;;11852:236;;;11856:3;12116:6;12107:7;12104:19;12101:201;;;12177:19;;;12171:26;-1:-1:-1;;12260:1:1;12256:14;;;12272:3;12252:24;12248:37;12244:42;12229:58;12214:74;;12101:201;-1:-1:-1;;;;;12348:1:1;12332:14;;;12328:22;12315:36;;-1:-1:-1;11266:1352:1:o;13035:168::-;13108:9;;;13139;;13156:15;;;13150:22;;13136:37;13126:71;;13177:18;;:::i;13918:415::-;14120:2;14102:21;;;14159:2;14139:18;;;14132:30;14198:34;14193:2;14178:18;;14171:62;-1:-1:-1;;;14264:2:1;14249:18;;14242:49;14323:3;14308:19;;13918:415::o;14754:496::-;14933:3;14971:6;14965:13;14987:66;15046:6;15041:3;15034:4;15026:6;15022:17;14987:66;:::i;:::-;15116:13;;15075:16;;;;15138:70;15116:13;15075:16;15185:4;15173:17;;15138:70;:::i;:::-;15224:20;;14754:496;-1:-1:-1;;;;14754:496:1:o;16894:200::-;-1:-1:-1;;;;;17030:10:1;;;17018;;;17014:27;;17053:12;;;17050:38;;;17068:18;;:::i;:::-;17050:38;16894:200;;;;:::o;17099:197::-;-1:-1:-1;;;;;17221:10:1;;;17233;;;17217:27;;17256:11;;;17253:37;;;17270:18;;:::i;18073:128::-;18140:9;;;18161:11;;;18158:37;;;18175:18;;:::i;18206:136::-;18245:3;18273:5;18263:39;;18282:18;;:::i;:::-;-1:-1:-1;;;18318:18:1;;18206:136::o;18763:489::-;-1:-1:-1;;;;;19032:15:1;;;19014:34;;19084:15;;19079:2;19064:18;;19057:43;19131:2;19116:18;;19109:34;;;19179:3;19174:2;19159:18;;19152:31;;;18957:4;;19200:46;;19226:19;;19218:6;19200:46;:::i;:::-;19192:54;18763:489;-1:-1:-1;;;;;;18763:489:1:o;19257:249::-;19326:6;19379:2;19367:9;19358:7;19354:23;19350:32;19347:52;;;19395:1;19392;19385:12;19347:52;19427:9;19421:16;19446:30;19470:5;19446:30;:::i;19511:127::-;19572:10;19567:3;19563:20;19560:1;19553:31;19603:4;19600:1;19593:15;19627:4;19624:1;19617:15

Swarm Source

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