ETH Price: $3,408.54 (-1.57%)
Gas: 4 Gwei

Token

OPEPENAI (OPEPENAI)
 

Overview

Max Total Supply

9,868 OPEPENAI

Holders

2,539

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 OPEPENAI
0x663c759793c279dc6ac39d956ff041bd6732eada
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:
OPEPENAI

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-07-20
*/

/**
 *Submitted for verification at Etherscan.io on 07-20-2023
 https://frogdogcoin.com
 By Forgdog coin community
*/

// SPDX-License-Identifier: MIT
// File: contracts/Strings.sol
pragma solidity ^0.8.0;

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

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

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

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

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

// File: contracts/Address.sol



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

// File: contracts/IERC721Receiver.sol



pragma solidity ^0.8.0;

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

// File: contracts/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: contracts/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: contracts/IERC721.sol



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/IERC721Enumerable.sol



pragma solidity ^0.8.0;


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

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

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

// File: contracts/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: contracts/ReentrancyGuard.sol



pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: contracts/Context.sol



pragma solidity ^0.8.0;

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

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

// File: contracts/ERC721A.sol



pragma solidity ^0.8.0;









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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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

// File: contracts/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() {
        _setOwner(_msgSender());
    }

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

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: contracts/FROGDOGCOIN.sol



pragma solidity ^0.8.0;





contract OPEPENAI is Ownable, ERC721A, ReentrancyGuard {
  uint256 public immutable maxPerAddressDuringMint;


  constructor(
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) ERC721A("OPEPENAI", "OPEPENAI", maxBatchSize_, collectionSize_) {
    maxPerAddressDuringMint = maxBatchSize_;
  }

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

  function mint(uint256 quantity) external callerIsUser {

    require(totalSupply() + quantity <= collectionSize, "reached max supply");
    require(
      numberMinted(msg.sender) + quantity <= maxPerAddressDuringMint,
      "can not mint this many"
    );
    _safeMint(msg.sender, quantity);
  }


  // // metadata URI
  string private _baseTokenURI;

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

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

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

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

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

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

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e0604052600060015560006008553480156200001b57600080fd5b506040516200275f3803806200275f8339810160408190526200003e91620001f7565b604051806040016040528060088152602001674f504550454e414960c01b815250604051806040016040528060088152602001674f504550454e414960c01b81525083836200009c62000096620001a360201b60201c565b620001a7565b60008111620001095760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b600082116200016b5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840162000100565b6002620001798582620002c1565b506003620001888482620002c1565b5060a091909152608052505060016009555060c0526200038d565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600080604083850312156200020b57600080fd5b505080516020909101519092909150565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200024757607f821691505b6020821081036200026857634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002bc57600081815260208120601f850160051c81016020861015620002975750805b601f850160051c820191505b81811015620002b857828155600101620002a3565b5050505b505050565b81516001600160401b03811115620002dd57620002dd6200021c565b620002f581620002ee845462000232565b846200026e565b602080601f8311600181146200032d5760008415620003145750858301515b600019600386901b1c1916600185901b178555620002b8565b600085815260208120601f198616915b828110156200035e578886015182559484019460019091019084016200033d565b50858210156200037d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60805160a05160c05161237f620003e0600039600081816102e20152610b600152600081816115b0015281816115da0152611ab3015260008181610ae8015281816113b501526113e7015261237f6000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c8063715018a6116100f9578063ac44600211610097578063d7224ba011610071578063d7224ba0146103b2578063dc33e681146103bb578063e985e9c5146103ce578063f2fde38b1461040a57600080fd5b8063ac44600214610384578063b88d4fde1461038c578063c87b56dd1461039f57600080fd5b80639231ab2a116100d35780639231ab2a1461031557806395d89b4114610356578063a0712d681461035e578063a22cb4651461037157600080fd5b8063715018a6146102d55780638bc35c2f146102dd5780638da5cb5b1461030457600080fd5b80632d20fb60116101665780634f6ccce7116101405780634f6ccce71461028957806355f804b31461029c5780636352211e146102af57806370a08231146102c257600080fd5b80632d20fb60146102505780632f745c591461026357806342842e0e1461027657600080fd5b806301ffc9a7146101ae57806306fdde03146101d6578063081812fc146101eb578063095ea7b31461021657806318160ddd1461022b57806323b872dd1461023d575b600080fd5b6101c16101bc366004611ce7565b61041d565b60405190151581526020015b60405180910390f35b6101de61048a565b6040516101cd9190611d54565b6101fe6101f9366004611d67565b61051c565b6040516001600160a01b0390911681526020016101cd565b610229610224366004611d9c565b6105ac565b005b6001545b6040519081526020016101cd565b61022961024b366004611dc6565b6106c3565b61022961025e366004611d67565b6106ce565b61022f610271366004611d9c565b610760565b610229610284366004611dc6565b6108d7565b61022f610297366004611d67565b6108f2565b6102296102aa366004611e02565b61095b565b6101fe6102bd366004611d67565b610992565b61022f6102d0366004611e74565b6109a4565b610229610a35565b61022f7f000000000000000000000000000000000000000000000000000000000000000081565b6000546001600160a01b03166101fe565b610328610323366004611d67565b610a6b565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff1692810192909252016101cd565b6101de610a88565b61022961036c366004611d67565b610a97565b61022961037f366004611e8f565b610be7565b610229610cab565b61022961039a366004611ee1565b610db7565b6101de6103ad366004611d67565b610df0565b61022f60085481565b61022f6103c9366004611e74565b610ebd565b6101c16103dc366004611fbd565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b610229610418366004611e74565b610ec8565b60006001600160e01b031982166380ac58cd60e01b148061044e57506001600160e01b03198216635b5e139f60e01b145b8061046957506001600160e01b0319821663780e9d6360e01b145b8061048457506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461049990611ff0565b80601f01602080910402602001604051908101604052809291908181526020018280546104c590611ff0565b80156105125780601f106104e757610100808354040283529160200191610512565b820191906000526020600020905b8154815290600101906020018083116104f557829003601f168201915b5050505050905090565b6000610529826001541190565b6105905760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006105b782610992565b9050806001600160a01b0316836001600160a01b0316036106255760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610587565b336001600160a01b0382161480610641575061064181336103dc565b6106b35760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610587565b6106be838383610f60565b505050565b6106be838383610fbc565b6000546001600160a01b031633146106f85760405162461bcd60e51b81526004016105879061202a565b60026009540361074a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610587565b600260095561075881611344565b506001600955565b600061076b836109a4565b82106107c45760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610587565b60006107cf60015490565b905060008060005b83811015610877576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561082a57805192505b876001600160a01b0316836001600160a01b031603610864578684036108565750935061048492505050565b8361086081612075565b9450505b508061086f81612075565b9150506107d7565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610587565b6106be83838360405180602001604052806000815250610db7565b60006108fd60015490565b82106109575760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610587565b5090565b6000546001600160a01b031633146109855760405162461bcd60e51b81526004016105879061202a565b600a6106be8284836120d4565b600061099d8261152e565b5192915050565b60006001600160a01b038216610a105760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610587565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610a5f5760405162461bcd60e51b81526004016105879061202a565b610a6960006116d8565b565b60408051808201909152600080825260208201526104848261152e565b60606003805461049990611ff0565b323314610ae65760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610587565b7f000000000000000000000000000000000000000000000000000000000000000081610b1160015490565b610b1b9190612195565b1115610b5e5760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610587565b7f000000000000000000000000000000000000000000000000000000000000000081610b8933610ebd565b610b939190612195565b1115610bda5760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b6044820152606401610587565b610be43382611728565b50565b336001600160a01b03831603610c3f5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610587565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b03163314610cd55760405162461bcd60e51b81526004016105879061202a565b600260095403610d275760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610587565b6002600955604051600090339047908381818185875af1925050503d8060008114610d6e576040519150601f19603f3d011682016040523d82523d6000602084013e610d73565b606091505b50509050806107585760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610587565b610dc2848484610fbc565b610dce84848484611746565b610dea5760405162461bcd60e51b8152600401610587906121a8565b50505050565b6060610dfd826001541190565b610e615760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610587565b6000610e6b611848565b90506000815111610e8b5760405180602001604052806000815250610eb6565b80610e9584611857565b604051602001610ea69291906121fb565b6040516020818303038152906040525b9392505050565b600061048482611958565b6000546001600160a01b03163314610ef25760405162461bcd60e51b81526004016105879061202a565b6001600160a01b038116610f575760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610587565b610be4816116d8565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610fc78261152e565b80519091506000906001600160a01b0316336001600160a01b03161480610ffe575033610ff38461051c565b6001600160a01b0316145b806110105750815161101090336103dc565b90508061107a5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610587565b846001600160a01b031682600001516001600160a01b0316146110ee5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610587565b6001600160a01b0384166111525760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610587565b6111626000848460000151610f60565b6001600160a01b03851660009081526005602052604081208054600192906111949084906001600160801b031661222a565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260056020526040812080546001945090926111e091859116612251565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611268846001612195565b6000818152600460205260409020549091506001600160a01b03166112fa57611292816001541190565b156112fa5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600854816113945760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610587565b600060016113a28484612195565b6113ac9190612271565b90506113d960017f0000000000000000000000000000000000000000000000000000000000000000612271565b81111561140e5761140b60017f0000000000000000000000000000000000000000000000000000000000000000612271565b90505b611419816001541190565b6114745760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610587565b815b81811161151a576000818152600460205260409020546001600160a01b03166115085760006114a48261152e565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b8061151281612075565b915050611476565b50611526816001612195565b600855505050565b604080518082019091526000808252602082015261154d826001541190565b6115ac5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610587565b60007f0000000000000000000000000000000000000000000000000000000000000000831061160d576115ff7f000000000000000000000000000000000000000000000000000000000000000084612271565b61160a906001612195565b90505b825b818110611677576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561166457949350505050565b508061166f81612284565b91505061160f565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610587565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6117428282604051806020016040528060008152506119f6565b5050565b60006001600160a01b0384163b1561183c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061178a90339089908890889060040161229b565b6020604051808303816000875af19250505080156117c5575060408051601f3d908101601f191682019092526117c2918101906122d8565b60015b611822573d8080156117f3576040519150601f19603f3d011682016040523d82523d6000602084013e6117f8565b606091505b50805160000361181a5760405162461bcd60e51b8152600401610587906121a8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611840565b5060015b949350505050565b6060600a805461049990611ff0565b60608160000361187e5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118a8578061189281612075565b91506118a19050600a8361230b565b9150611882565b60008167ffffffffffffffff8111156118c3576118c3611ecb565b6040519080825280601f01601f1916602001820160405280156118ed576020820181803683370190505b5090505b841561184057611902600183612271565b915061190f600a8661231f565b61191a906030612195565b60f81b81838151811061192f5761192f612333565b60200101906001600160f81b031916908160001a905350611951600a8661230b565b94506118f1565b60006001600160a01b0382166119ca5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610587565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b038416611a595760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610587565b611a64816001541190565b15611ab15760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610587565b7f0000000000000000000000000000000000000000000000000000000000000000831115611b2c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610587565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611b88908790612251565b6001600160801b03168152602001858360200151611ba69190612251565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611cc65760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611c8a6000888488611746565b611ca65760405162461bcd60e51b8152600401610587906121a8565b81611cb081612075565b9250508080611cbe90612075565b915050611c3d565b50600181905561133c565b6001600160e01b031981168114610be457600080fd5b600060208284031215611cf957600080fd5b8135610eb681611cd1565b60005b83811015611d1f578181015183820152602001611d07565b50506000910152565b60008151808452611d40816020860160208601611d04565b601f01601f19169290920160200192915050565b602081526000610eb66020830184611d28565b600060208284031215611d7957600080fd5b5035919050565b80356001600160a01b0381168114611d9757600080fd5b919050565b60008060408385031215611daf57600080fd5b611db883611d80565b946020939093013593505050565b600080600060608486031215611ddb57600080fd5b611de484611d80565b9250611df260208501611d80565b9150604084013590509250925092565b60008060208385031215611e1557600080fd5b823567ffffffffffffffff80821115611e2d57600080fd5b818501915085601f830112611e4157600080fd5b813581811115611e5057600080fd5b866020828501011115611e6257600080fd5b60209290920196919550909350505050565b600060208284031215611e8657600080fd5b610eb682611d80565b60008060408385031215611ea257600080fd5b611eab83611d80565b915060208301358015158114611ec057600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611ef757600080fd5b611f0085611d80565b9350611f0e60208601611d80565b925060408501359150606085013567ffffffffffffffff80821115611f3257600080fd5b818701915087601f830112611f4657600080fd5b813581811115611f5857611f58611ecb565b604051601f8201601f19908116603f01168101908382118183101715611f8057611f80611ecb565b816040528281528a6020848701011115611f9957600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611fd057600080fd5b611fd983611d80565b9150611fe760208401611d80565b90509250929050565b600181811c9082168061200457607f821691505b60208210810361202457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000600182016120875761208761205f565b5060010190565b601f8211156106be57600081815260208120601f850160051c810160208610156120b55750805b601f850160051c820191505b8181101561133c578281556001016120c1565b67ffffffffffffffff8311156120ec576120ec611ecb565b612100836120fa8354611ff0565b8361208e565b6000601f841160018114612134576000851561211c5750838201355b600019600387901b1c1916600186901b17835561218e565b600083815260209020601f19861690835b828110156121655786850135825560209485019460019092019101612145565b50868210156121825760001960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b808201808211156104845761048461205f565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6000835161220d818460208801611d04565b835190830190612221818360208801611d04565b01949350505050565b6001600160801b0382811682821603908082111561224a5761224a61205f565b5092915050565b6001600160801b0381811683821601908082111561224a5761224a61205f565b818103818111156104845761048461205f565b6000816122935761229361205f565b506000190190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122ce90830184611d28565b9695505050505050565b6000602082840312156122ea57600080fd5b8151610eb681611cd1565b634e487b7160e01b600052601260045260246000fd5b60008261231a5761231a6122f5565b500490565b60008261232e5761232e6122f5565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220114d1e728b38942b745a2227773eab221b3f136d081ed9cda7d900b4c985333764736f6c634300081200330000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000c350

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101a95760003560e01c8063715018a6116100f9578063ac44600211610097578063d7224ba011610071578063d7224ba0146103b2578063dc33e681146103bb578063e985e9c5146103ce578063f2fde38b1461040a57600080fd5b8063ac44600214610384578063b88d4fde1461038c578063c87b56dd1461039f57600080fd5b80639231ab2a116100d35780639231ab2a1461031557806395d89b4114610356578063a0712d681461035e578063a22cb4651461037157600080fd5b8063715018a6146102d55780638bc35c2f146102dd5780638da5cb5b1461030457600080fd5b80632d20fb60116101665780634f6ccce7116101405780634f6ccce71461028957806355f804b31461029c5780636352211e146102af57806370a08231146102c257600080fd5b80632d20fb60146102505780632f745c591461026357806342842e0e1461027657600080fd5b806301ffc9a7146101ae57806306fdde03146101d6578063081812fc146101eb578063095ea7b31461021657806318160ddd1461022b57806323b872dd1461023d575b600080fd5b6101c16101bc366004611ce7565b61041d565b60405190151581526020015b60405180910390f35b6101de61048a565b6040516101cd9190611d54565b6101fe6101f9366004611d67565b61051c565b6040516001600160a01b0390911681526020016101cd565b610229610224366004611d9c565b6105ac565b005b6001545b6040519081526020016101cd565b61022961024b366004611dc6565b6106c3565b61022961025e366004611d67565b6106ce565b61022f610271366004611d9c565b610760565b610229610284366004611dc6565b6108d7565b61022f610297366004611d67565b6108f2565b6102296102aa366004611e02565b61095b565b6101fe6102bd366004611d67565b610992565b61022f6102d0366004611e74565b6109a4565b610229610a35565b61022f7f000000000000000000000000000000000000000000000000000000000000000581565b6000546001600160a01b03166101fe565b610328610323366004611d67565b610a6b565b6040805182516001600160a01b0316815260209283015167ffffffffffffffff1692810192909252016101cd565b6101de610a88565b61022961036c366004611d67565b610a97565b61022961037f366004611e8f565b610be7565b610229610cab565b61022961039a366004611ee1565b610db7565b6101de6103ad366004611d67565b610df0565b61022f60085481565b61022f6103c9366004611e74565b610ebd565b6101c16103dc366004611fbd565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b610229610418366004611e74565b610ec8565b60006001600160e01b031982166380ac58cd60e01b148061044e57506001600160e01b03198216635b5e139f60e01b145b8061046957506001600160e01b0319821663780e9d6360e01b145b8061048457506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461049990611ff0565b80601f01602080910402602001604051908101604052809291908181526020018280546104c590611ff0565b80156105125780601f106104e757610100808354040283529160200191610512565b820191906000526020600020905b8154815290600101906020018083116104f557829003601f168201915b5050505050905090565b6000610529826001541190565b6105905760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006105b782610992565b9050806001600160a01b0316836001600160a01b0316036106255760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610587565b336001600160a01b0382161480610641575061064181336103dc565b6106b35760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610587565b6106be838383610f60565b505050565b6106be838383610fbc565b6000546001600160a01b031633146106f85760405162461bcd60e51b81526004016105879061202a565b60026009540361074a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610587565b600260095561075881611344565b506001600955565b600061076b836109a4565b82106107c45760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610587565b60006107cf60015490565b905060008060005b83811015610877576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561082a57805192505b876001600160a01b0316836001600160a01b031603610864578684036108565750935061048492505050565b8361086081612075565b9450505b508061086f81612075565b9150506107d7565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610587565b6106be83838360405180602001604052806000815250610db7565b60006108fd60015490565b82106109575760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610587565b5090565b6000546001600160a01b031633146109855760405162461bcd60e51b81526004016105879061202a565b600a6106be8284836120d4565b600061099d8261152e565b5192915050565b60006001600160a01b038216610a105760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610587565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610a5f5760405162461bcd60e51b81526004016105879061202a565b610a6960006116d8565b565b60408051808201909152600080825260208201526104848261152e565b60606003805461049990611ff0565b323314610ae65760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610587565b7f000000000000000000000000000000000000000000000000000000000000c35081610b1160015490565b610b1b9190612195565b1115610b5e5760405162461bcd60e51b815260206004820152601260248201527172656163686564206d617820737570706c7960701b6044820152606401610587565b7f000000000000000000000000000000000000000000000000000000000000000581610b8933610ebd565b610b939190612195565b1115610bda5760405162461bcd60e51b815260206004820152601660248201527563616e206e6f74206d696e742074686973206d616e7960501b6044820152606401610587565b610be43382611728565b50565b336001600160a01b03831603610c3f5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610587565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b03163314610cd55760405162461bcd60e51b81526004016105879061202a565b600260095403610d275760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610587565b6002600955604051600090339047908381818185875af1925050503d8060008114610d6e576040519150601f19603f3d011682016040523d82523d6000602084013e610d73565b606091505b50509050806107585760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610587565b610dc2848484610fbc565b610dce84848484611746565b610dea5760405162461bcd60e51b8152600401610587906121a8565b50505050565b6060610dfd826001541190565b610e615760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610587565b6000610e6b611848565b90506000815111610e8b5760405180602001604052806000815250610eb6565b80610e9584611857565b604051602001610ea69291906121fb565b6040516020818303038152906040525b9392505050565b600061048482611958565b6000546001600160a01b03163314610ef25760405162461bcd60e51b81526004016105879061202a565b6001600160a01b038116610f575760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610587565b610be4816116d8565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610fc78261152e565b80519091506000906001600160a01b0316336001600160a01b03161480610ffe575033610ff38461051c565b6001600160a01b0316145b806110105750815161101090336103dc565b90508061107a5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610587565b846001600160a01b031682600001516001600160a01b0316146110ee5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610587565b6001600160a01b0384166111525760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610587565b6111626000848460000151610f60565b6001600160a01b03851660009081526005602052604081208054600192906111949084906001600160801b031661222a565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260056020526040812080546001945090926111e091859116612251565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611268846001612195565b6000818152600460205260409020549091506001600160a01b03166112fa57611292816001541190565b156112fa5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600854816113945760405162461bcd60e51b815260206004820152601860248201527f7175616e74697479206d757374206265206e6f6e7a65726f00000000000000006044820152606401610587565b600060016113a28484612195565b6113ac9190612271565b90506113d960017f000000000000000000000000000000000000000000000000000000000000c350612271565b81111561140e5761140b60017f000000000000000000000000000000000000000000000000000000000000c350612271565b90505b611419816001541190565b6114745760405162461bcd60e51b815260206004820152602660248201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360448201526506c65616e75760d41b6064820152608401610587565b815b81811161151a576000818152600460205260409020546001600160a01b03166115085760006114a48261152e565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff9081168584019081526000888152600490965293909420915182549351909416600160a01b026001600160e01b0319909316931692909217179055505b8061151281612075565b915050611476565b50611526816001612195565b600855505050565b604080518082019091526000808252602082015261154d826001541190565b6115ac5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610587565b60007f0000000000000000000000000000000000000000000000000000000000000005831061160d576115ff7f000000000000000000000000000000000000000000000000000000000000000584612271565b61160a906001612195565b90505b825b818110611677576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561166457949350505050565b508061166f81612284565b91505061160f565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610587565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6117428282604051806020016040528060008152506119f6565b5050565b60006001600160a01b0384163b1561183c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061178a90339089908890889060040161229b565b6020604051808303816000875af19250505080156117c5575060408051601f3d908101601f191682019092526117c2918101906122d8565b60015b611822573d8080156117f3576040519150601f19603f3d011682016040523d82523d6000602084013e6117f8565b606091505b50805160000361181a5760405162461bcd60e51b8152600401610587906121a8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611840565b5060015b949350505050565b6060600a805461049990611ff0565b60608160000361187e5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156118a8578061189281612075565b91506118a19050600a8361230b565b9150611882565b60008167ffffffffffffffff8111156118c3576118c3611ecb565b6040519080825280601f01601f1916602001820160405280156118ed576020820181803683370190505b5090505b841561184057611902600183612271565b915061190f600a8661231f565b61191a906030612195565b60f81b81838151811061192f5761192f612333565b60200101906001600160f81b031916908160001a905350611951600a8661230b565b94506118f1565b60006001600160a01b0382166119ca5760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610587565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b038416611a595760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610587565b611a64816001541190565b15611ab15760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610587565b7f0000000000000000000000000000000000000000000000000000000000000005831115611b2c5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610587565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611b88908790612251565b6001600160801b03168152602001858360200151611ba69190612251565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611cc65760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611c8a6000888488611746565b611ca65760405162461bcd60e51b8152600401610587906121a8565b81611cb081612075565b9250508080611cbe90612075565b915050611c3d565b50600181905561133c565b6001600160e01b031981168114610be457600080fd5b600060208284031215611cf957600080fd5b8135610eb681611cd1565b60005b83811015611d1f578181015183820152602001611d07565b50506000910152565b60008151808452611d40816020860160208601611d04565b601f01601f19169290920160200192915050565b602081526000610eb66020830184611d28565b600060208284031215611d7957600080fd5b5035919050565b80356001600160a01b0381168114611d9757600080fd5b919050565b60008060408385031215611daf57600080fd5b611db883611d80565b946020939093013593505050565b600080600060608486031215611ddb57600080fd5b611de484611d80565b9250611df260208501611d80565b9150604084013590509250925092565b60008060208385031215611e1557600080fd5b823567ffffffffffffffff80821115611e2d57600080fd5b818501915085601f830112611e4157600080fd5b813581811115611e5057600080fd5b866020828501011115611e6257600080fd5b60209290920196919550909350505050565b600060208284031215611e8657600080fd5b610eb682611d80565b60008060408385031215611ea257600080fd5b611eab83611d80565b915060208301358015158114611ec057600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611ef757600080fd5b611f0085611d80565b9350611f0e60208601611d80565b925060408501359150606085013567ffffffffffffffff80821115611f3257600080fd5b818701915087601f830112611f4657600080fd5b813581811115611f5857611f58611ecb565b604051601f8201601f19908116603f01168101908382118183101715611f8057611f80611ecb565b816040528281528a6020848701011115611f9957600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611fd057600080fd5b611fd983611d80565b9150611fe760208401611d80565b90509250929050565b600181811c9082168061200457607f821691505b60208210810361202457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000600182016120875761208761205f565b5060010190565b601f8211156106be57600081815260208120601f850160051c810160208610156120b55750805b601f850160051c820191505b8181101561133c578281556001016120c1565b67ffffffffffffffff8311156120ec576120ec611ecb565b612100836120fa8354611ff0565b8361208e565b6000601f841160018114612134576000851561211c5750838201355b600019600387901b1c1916600186901b17835561218e565b600083815260209020601f19861690835b828110156121655786850135825560209485019460019092019101612145565b50868210156121825760001960f88860031b161c19848701351681555b505060018560011b0183555b5050505050565b808201808211156104845761048461205f565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6000835161220d818460208801611d04565b835190830190612221818360208801611d04565b01949350505050565b6001600160801b0382811682821603908082111561224a5761224a61205f565b5092915050565b6001600160801b0381811683821601908082111561224a5761224a61205f565b818103818111156104845761048461205f565b6000816122935761229361205f565b506000190190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122ce90830184611d28565b9695505050505050565b6000602082840312156122ea57600080fd5b8151610eb681611cd1565b634e487b7160e01b600052601260045260246000fd5b60008261231a5761231a6122f5565b500490565b60008261232e5761232e6122f5565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220114d1e728b38942b745a2227773eab221b3f136d081ed9cda7d900b4c985333764736f6c63430008120033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000000000000000000000c350

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 5
Arg [1] : collectionSize_ (uint256): 50000

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [1] : 000000000000000000000000000000000000000000000000000000000000c350


Deployed Bytecode Sourcemap

41042:1597:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26404:370;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;26404:370:0;;;;;;;;28130:94;;;:::i;:::-;;;;;;;:::i;29655:204::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;29655:204:0;1533:203:1;29218:379:0;;;;;;:::i;:::-;;:::i;:::-;;24965:94;25041:12;;24965:94;;;2324:25:1;;;2312:2;2297:18;24965:94:0;2178:177:1;30505:142:0;;;;;;:::i;:::-;;:::i;42250:118::-;;;;;;:::i;:::-;;:::i;25596:744::-;;;;;;:::i;:::-;;:::i;30710:157::-;;;;;;:::i;:::-;;:::i;25128:177::-;;;;;;:::i;:::-;;:::i;41957:100::-;;;;;;:::i;:::-;;:::i;27953:118::-;;;;;;:::i;:::-;;:::i;26830:211::-;;;;;;:::i;:::-;;:::i;40336:94::-;;;:::i;41102:48::-;;;;;39685:87;39731:7;39758:6;-1:-1:-1;;;;;39758:6:0;39685:87;;42487:147;;;;;;:::i;:::-;;:::i;:::-;;;;3711:13:1;;-1:-1:-1;;;;;3707:39:1;3689:58;;3807:4;3795:17;;;3789:24;3815:18;3785:49;3763:20;;;3756:79;;;;3662:18;42487:147:0;3481:360:1;28285:98:0;;;:::i;41473:305::-;;;;;;:::i;:::-;;:::i;29923:274::-;;;;;;:::i;:::-;;:::i;42063:181::-;;;:::i;30930:311::-;;;;;;:::i;:::-;;:::i;28446:394::-;;;;;;:::i;:::-;;:::i;35345:43::-;;;;;;42374:107;;;;;;:::i;:::-;;:::i;30260:186::-;;;;;;:::i;:::-;-1:-1:-1;;;;;30405:25:0;;;30382:4;30405:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30260:186;40585:192;;;;;;:::i;:::-;;:::i;26404:370::-;26531:4;-1:-1:-1;;;;;;26561:40:0;;-1:-1:-1;;;26561:40:0;;:99;;-1:-1:-1;;;;;;;26612:48:0;;-1:-1:-1;;;26612:48:0;26561:99;:160;;;-1:-1:-1;;;;;;;26671:50:0;;-1:-1:-1;;;26671:50:0;26561:160;:207;;;-1:-1:-1;;;;;;;;;;12685:40:0;;;26732:36;26547:221;26404:370;-1:-1:-1;;26404:370:0:o;28130:94::-;28184:13;28213:5;28206:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28130:94;:::o;29655:204::-;29723:7;29747:16;29755:7;31567:12;;-1:-1:-1;31557:22:0;31480:105;29747:16;29739:74;;;;-1:-1:-1;;;29739:74:0;;6325:2:1;29739:74:0;;;6307:21:1;6364:2;6344:18;;;6337:30;6403:34;6383:18;;;6376:62;-1:-1:-1;;;6454:18:1;;;6447:43;6507:19;;29739:74:0;;;;;;;;;-1:-1:-1;29829:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29829:24:0;;29655:204::o;29218:379::-;29287:13;29303:24;29319:7;29303:15;:24::i;:::-;29287:40;;29348:5;-1:-1:-1;;;;;29342:11:0;:2;-1:-1:-1;;;;;29342:11:0;;29334:58;;;;-1:-1:-1;;;29334:58:0;;6739:2:1;29334:58:0;;;6721:21:1;6778:2;6758:18;;;6751:30;6817:34;6797:18;;;6790:62;-1:-1:-1;;;6868:18:1;;;6861:32;6910:19;;29334:58:0;6537:398:1;29334:58:0;22515:10;-1:-1:-1;;;;;29417:21:0;;;;:62;;-1:-1:-1;29442:37:0;29459:5;22515:10;30260:186;:::i;29442:37::-;29401:153;;;;-1:-1:-1;;;29401:153:0;;7142:2:1;29401:153:0;;;7124:21:1;7181:2;7161:18;;;7154:30;7220:34;7200:18;;;7193:62;7291:27;7271:18;;;7264:55;7336:19;;29401:153:0;6940:421:1;29401:153:0;29563:28;29572:2;29576:7;29585:5;29563:8;:28::i;:::-;29280:317;29218:379;;:::o;30505:142::-;30613:28;30623:4;30629:2;30633:7;30613:9;:28::i;42250:118::-;39731:7;39758:6;-1:-1:-1;;;;;39758:6:0;22515:10;39905:23;39897:68;;;;-1:-1:-1;;;39897:68:0;;;;;;;:::i;:::-;20886:1:::1;21482:7;;:19:::0;21474:63:::1;;;::::0;-1:-1:-1;;;21474:63:0;;7929:2:1;21474:63:0::1;::::0;::::1;7911:21:1::0;7968:2;7948:18;;;7941:30;8007:33;7987:18;;;7980:61;8058:18;;21474:63:0::1;7727:355:1::0;21474:63:0::1;20886:1;21615:7;:18:::0;42334:28:::2;42353:8:::0;42334:18:::2;:28::i;:::-;-1:-1:-1::0;20842:1:0::1;21794:7;:22:::0;42250:118::o;25596:744::-;25705:7;25740:16;25750:5;25740:9;:16::i;:::-;25732:5;:24;25724:71;;;;-1:-1:-1;;;25724:71:0;;8289:2:1;25724:71:0;;;8271:21:1;8328:2;8308:18;;;8301:30;8367:34;8347:18;;;8340:62;-1:-1:-1;;;8418:18:1;;;8411:32;8460:19;;25724:71:0;8087:398:1;25724:71:0;25802:22;25827:13;25041:12;;;24965:94;25827:13;25802:38;;25847:19;25877:25;25927:9;25922:350;25946:14;25942:1;:18;25922:350;;;25976:31;26010:14;;;:11;:14;;;;;;;;;25976:48;;;;;;;;;-1:-1:-1;;;;;25976:48:0;;;;;-1:-1:-1;;;25976:48:0;;;;;;;;;;;;26037:28;26033:89;;26098:14;;;-1:-1:-1;26033:89:0;26155:5;-1:-1:-1;;;;;26134:26:0;:17;-1:-1:-1;;;;;26134:26:0;;26130:135;;26192:5;26177:11;:20;26173:59;;-1:-1:-1;26219:1:0;-1:-1:-1;26212:8:0;;-1:-1:-1;;;26212:8:0;26173:59;26242:13;;;;:::i;:::-;;;;26130:135;-1:-1:-1;25962:3:0;;;;:::i;:::-;;;;25922:350;;;-1:-1:-1;26278:56:0;;-1:-1:-1;;;26278:56:0;;8964:2:1;26278:56:0;;;8946:21:1;9003:2;8983:18;;;8976:30;9042:34;9022:18;;;9015:62;-1:-1:-1;;;9093:18:1;;;9086:44;9147:19;;26278:56:0;8762:410:1;30710:157:0;30822:39;30839:4;30845:2;30849:7;30822:39;;;;;;;;;;;;:16;:39::i;25128:177::-;25195:7;25227:13;25041:12;;;24965:94;25227:13;25219:5;:21;25211:69;;;;-1:-1:-1;;;25211:69:0;;9379:2:1;25211:69:0;;;9361:21:1;9418:2;9398:18;;;9391:30;9457:34;9437:18;;;9430:62;-1:-1:-1;;;9508:18:1;;;9501:33;9551:19;;25211:69:0;9177:399:1;25211:69:0;-1:-1:-1;25294:5:0;25128:177::o;41957:100::-;39731:7;39758:6;-1:-1:-1;;;;;39758:6:0;22515:10;39905:23;39897:68;;;;-1:-1:-1;;;39897:68:0;;;;;;;:::i;:::-;42028:13:::1;:23;42044:7:::0;;42028:13;:23:::1;:::i;27953:118::-:0;28017:7;28040:20;28052:7;28040:11;:20::i;:::-;:25;;27953:118;-1:-1:-1;;27953:118:0:o;26830:211::-;26894:7;-1:-1:-1;;;;;26918:19:0;;26910:75;;;;-1:-1:-1;;;26910:75:0;;11841:2:1;26910:75:0;;;11823:21:1;11880:2;11860:18;;;11853:30;11919:34;11899:18;;;11892:62;-1:-1:-1;;;11970:18:1;;;11963:41;12021:19;;26910:75:0;11639:407:1;26910:75:0;-1:-1:-1;;;;;;27007:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;27007:27:0;;26830:211::o;40336:94::-;39731:7;39758:6;-1:-1:-1;;;;;39758:6:0;22515:10;39905:23;39897:68;;;;-1:-1:-1;;;39897:68:0;;;;;;;:::i;:::-;40401:21:::1;40419:1;40401:9;:21::i;:::-;40336:94::o:0;42487:147::-;-1:-1:-1;;;;;;;;;;;;;;;;;42608:20:0;42620:7;42608:11;:20::i;28285:98::-;28341:13;28370:7;28363:14;;;;;:::i;41473:305::-;41395:9;41408:10;41395:23;41387:66;;;;-1:-1:-1;;;41387:66:0;;12253:2:1;41387:66:0;;;12235:21:1;12292:2;12272:18;;;12265:30;12331:32;12311:18;;;12304:60;12381:18;;41387:66:0;12051:354:1;41387:66:0;41572:14:::1;41560:8;41544:13;25041:12:::0;;;24965:94;41544:13:::1;:24;;;;:::i;:::-;:42;;41536:73;;;::::0;-1:-1:-1;;;41536:73:0;;12742:2:1;41536:73:0::1;::::0;::::1;12724:21:1::0;12781:2;12761:18;;;12754:30;-1:-1:-1;;;12800:18:1;;;12793:48;12858:18;;41536:73:0::1;12540:342:1::0;41536:73:0::1;41671:23;41659:8;41632:24;41645:10;41632:12;:24::i;:::-;:35;;;;:::i;:::-;:62;;41616:118;;;::::0;-1:-1:-1;;;41616:118:0;;13089:2:1;41616:118:0::1;::::0;::::1;13071:21:1::0;13128:2;13108:18;;;13101:30;-1:-1:-1;;;13147:18:1;;;13140:52;13209:18;;41616:118:0::1;12887:346:1::0;41616:118:0::1;41741:31;41751:10;41763:8;41741:9;:31::i;:::-;41473:305:::0;:::o;29923:274::-;22515:10;-1:-1:-1;;;;;30014:24:0;;;30006:63;;;;-1:-1:-1;;;30006:63:0;;13440:2:1;30006:63:0;;;13422:21:1;13479:2;13459:18;;;13452:30;13518:28;13498:18;;;13491:56;13564:18;;30006:63:0;13238:350:1;30006:63:0;22515:10;30078:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;30078:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;30078:53:0;;;;;;;;;;30143:48;;540:41:1;;;30078:42:0;;22515:10;30143:48;;513:18:1;30143:48:0;;;;;;;29923:274;;:::o;42063:181::-;39731:7;39758:6;-1:-1:-1;;;;;39758:6:0;22515:10;39905:23;39897:68;;;;-1:-1:-1;;;39897:68:0;;;;;;;:::i;:::-;20886:1:::1;21482:7;;:19:::0;21474:63:::1;;;::::0;-1:-1:-1;;;21474:63:0;;7929:2:1;21474:63:0::1;::::0;::::1;7911:21:1::0;7968:2;7948:18;;;7941:30;8007:33;7987:18;;;7980:61;8058:18;;21474:63:0::1;7727:355:1::0;21474:63:0::1;20886:1;21615:7;:18:::0;42146:49:::2;::::0;42128:12:::2;::::0;42146:10:::2;::::0;42169:21:::2;::::0;42128:12;42146:49;42128:12;42146:49;42169:21;42146:10;:49:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42127:68;;;42210:7;42202:36;;;::::0;-1:-1:-1;;;42202:36:0;;14005:2:1;42202:36:0::2;::::0;::::2;13987:21:1::0;14044:2;14024:18;;;14017:30;-1:-1:-1;;;14063:18:1;;;14056:46;14119:18;;42202:36:0::2;13803:340:1::0;30930:311:0;31067:28;31077:4;31083:2;31087:7;31067:9;:28::i;:::-;31118:48;31141:4;31147:2;31151:7;31160:5;31118:22;:48::i;:::-;31102:133;;;;-1:-1:-1;;;31102:133:0;;;;;;;:::i;:::-;30930:311;;;;:::o;28446:394::-;28544:13;28585:16;28593:7;31567:12;;-1:-1:-1;31557:22:0;31480:105;28585:16;28569:97;;;;-1:-1:-1;;;28569:97:0;;14770:2:1;28569:97:0;;;14752:21:1;14809:2;14789:18;;;14782:30;14848:34;14828:18;;;14821:62;-1:-1:-1;;;14899:18:1;;;14892:45;14954:19;;28569:97:0;14568:411:1;28569:97:0;28675:21;28699:10;:8;:10::i;:::-;28675:34;;28754:1;28736:7;28730:21;:25;:104;;;;;;;;;;;;;;;;;28791:7;28800:18;:7;:16;:18::i;:::-;28774:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28730:104;28716:118;28446:394;-1:-1:-1;;;28446:394:0:o;42374:107::-;42432:7;42455:20;42469:5;42455:13;:20::i;40585:192::-;39731:7;39758:6;-1:-1:-1;;;;;39758:6:0;22515:10;39905:23;39897:68;;;;-1:-1:-1;;;39897:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40674:22:0;::::1;40666:73;;;::::0;-1:-1:-1;;;40666:73:0;;15687:2:1;40666:73:0::1;::::0;::::1;15669:21:1::0;15726:2;15706:18;;;15699:30;15765:34;15745:18;;;15738:62;-1:-1:-1;;;15816:18:1;;;15809:36;15862:19;;40666:73:0::1;15485:402:1::0;40666:73:0::1;40750:19;40760:8;40750:9;:19::i;35167:172::-:0;35264:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;35264:29:0;-1:-1:-1;;;;;35264:29:0;;;;;;;;;35305:28;;35264:24;;35305:28;;;;;;;35167:172;;;:::o;33532:1529::-;33629:35;33667:20;33679:7;33667:11;:20::i;:::-;33738:18;;33629:58;;-1:-1:-1;33696:22:0;;-1:-1:-1;;;;;33722:34:0;22515:10;-1:-1:-1;;;;;33722:34:0;;:81;;;-1:-1:-1;22515:10:0;33767:20;33779:7;33767:11;:20::i;:::-;-1:-1:-1;;;;;33767:36:0;;33722:81;:142;;;-1:-1:-1;33831:18:0;;33814:50;;22515:10;30260:186;:::i;33814:50::-;33696:169;;33890:17;33874:101;;;;-1:-1:-1;;;33874:101:0;;16094:2:1;33874:101:0;;;16076:21:1;16133:2;16113:18;;;16106:30;16172:34;16152:18;;;16145:62;-1:-1:-1;;;16223:18:1;;;16216:48;16281:19;;33874:101:0;15892:414:1;33874:101:0;34022:4;-1:-1:-1;;;;;34000:26:0;:13;:18;;;-1:-1:-1;;;;;34000:26:0;;33984:98;;;;-1:-1:-1;;;33984:98:0;;16513:2:1;33984:98:0;;;16495:21:1;16552:2;16532:18;;;16525:30;16591:34;16571:18;;;16564:62;-1:-1:-1;;;16642:18:1;;;16635:36;16688:19;;33984:98:0;16311:402:1;33984:98:0;-1:-1:-1;;;;;34097:16:0;;34089:66;;;;-1:-1:-1;;;34089:66:0;;16920:2:1;34089:66:0;;;16902:21:1;16959:2;16939:18;;;16932:30;16998:34;16978:18;;;16971:62;-1:-1:-1;;;17049:18:1;;;17042:35;17094:19;;34089:66:0;16718:401:1;34089:66:0;34264:49;34281:1;34285:7;34294:13;:18;;;34264:8;:49::i;:::-;-1:-1:-1;;;;;34322:18:0;;;;;;:12;:18;;;;;:31;;34352:1;;34322:18;:31;;34352:1;;-1:-1:-1;;;;;34322:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;34322:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;34360:16:0;;-1:-1:-1;34360:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;34360:16:0;;:29;;-1:-1:-1;;34360:29:0;;:::i;:::-;;;-1:-1:-1;;;;;34360:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34419:43:0;;;;;;;;-1:-1:-1;;;;;34419:43:0;;;;;;34445:15;34419:43;;;;;;;;;-1:-1:-1;34396:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;34396:66:0;-1:-1:-1;;;;;;34396:66:0;;;;;;;;;;;34712:11;34408:7;-1:-1:-1;34712:11:0;:::i;:::-;34775:1;34734:24;;;:11;:24;;;;;:29;34690:33;;-1:-1:-1;;;;;;34734:29:0;34730:236;;34792:20;34800:11;31567:12;;-1:-1:-1;31557:22:0;31480:105;34792:20;34788:171;;;34852:97;;;;;;;;34879:18;;-1:-1:-1;;;;;34852:97:0;;;;;;34910:28;;;;34852:97;;;;;;;;;;-1:-1:-1;34825:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;34825:124:0;-1:-1:-1;;;;;;34825:124:0;;;;;;;;;;;;34788:171;34998:7;34994:2;-1:-1:-1;;;;;34979:27:0;34988:4;-1:-1:-1;;;;;34979:27:0;;;;;;;;;;;35013:42;33622:1439;;;33532:1529;;;:::o;35493:846::-;35583:24;;35622:12;35614:49;;;;-1:-1:-1;;;35614:49:0;;17733:2:1;35614:49:0;;;17715:21:1;17772:2;17752:18;;;17745:30;17811:26;17791:18;;;17784:54;17855:18;;35614:49:0;17531:348:1;35614:49:0;35670:16;35720:1;35689:28;35709:8;35689:17;:28;:::i;:::-;:32;;;;:::i;:::-;35670:51;-1:-1:-1;35743:18:0;35760:1;35743:14;:18;:::i;:::-;35732:8;:29;35728:81;;;35783:18;35800:1;35783:14;:18;:::i;:::-;35772:29;;35728:81;35924:17;35932:8;31567:12;;-1:-1:-1;31557:22:0;31480:105;35924:17;35916:68;;;;-1:-1:-1;;;35916:68:0;;18219:2:1;35916:68:0;;;18201:21:1;18258:2;18238:18;;;18231:30;18297:34;18277:18;;;18270:62;-1:-1:-1;;;18348:18:1;;;18341:36;18394:19;;35916:68:0;18017:402:1;35916:68:0;36008:17;35991:297;36032:8;36027:1;:13;35991:297;;36091:1;36060:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;36060:19:0;36056:225;;36106:31;36140:14;36152:1;36140:11;:14::i;:::-;36182:89;;;;;;;;36209:14;;-1:-1:-1;;;;;36182:89:0;;;;;;36236:24;;;;36182:89;;;;;;;;;;-1:-1:-1;36165:14:0;;;:11;:14;;;;;;;:106;;;;;;;;;-1:-1:-1;;;36165:106:0;-1:-1:-1;;;;;;36165:106:0;;;;;;;;;;;;-1:-1:-1;36056:225:0;36042:3;;;;:::i;:::-;;;;35991:297;;;-1:-1:-1;36321:12:0;:8;36332:1;36321:12;:::i;:::-;36294:24;:39;-1:-1:-1;;;35493:846:0:o;27293:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;27410:16:0;27418:7;31567:12;;-1:-1:-1;31557:22:0;31480:105;27410:16;27402:71;;;;-1:-1:-1;;;27402:71:0;;18626:2:1;27402:71:0;;;18608:21:1;18665:2;18645:18;;;18638:30;18704:34;18684:18;;;18677:62;-1:-1:-1;;;18755:18:1;;;18748:40;18805:19;;27402:71:0;18424:406:1;27402:71:0;27482:26;27530:12;27519:7;:23;27515:93;;27574:22;27584:12;27574:7;:22;:::i;:::-;:26;;27599:1;27574:26;:::i;:::-;27553:47;;27515:93;27636:7;27616:212;27653:18;27645:4;:26;27616:212;;27690:31;27724:17;;;:11;:17;;;;;;;;;27690:51;;;;;;;;;-1:-1:-1;;;;;27690:51:0;;;;;-1:-1:-1;;;27690:51:0;;;;;;;;;;;;27754:28;27750:71;;27802:9;27293:606;-1:-1:-1;;;;27293:606:0:o;27750:71::-;-1:-1:-1;27673:6:0;;;;:::i;:::-;;;;27616:212;;;-1:-1:-1;27836:57:0;;-1:-1:-1;;;27836:57:0;;19178:2:1;27836:57:0;;;19160:21:1;19217:2;19197:18;;;19190:30;19256:34;19236:18;;;19229:62;-1:-1:-1;;;19307:18:1;;;19300:45;19362:19;;27836:57:0;18976:411:1;40785:173:0;40841:16;40860:6;;-1:-1:-1;;;;;40877:17:0;;;-1:-1:-1;;;;;;40877:17:0;;;;;;40910:40;;40860:6;;;;;;;40910:40;;40841:16;40910:40;40830:128;40785:173;:::o;31591:98::-;31656:27;31666:2;31670:8;31656:27;;;;;;;;;;;;:9;:27::i;:::-;31591:98;;:::o;36882:690::-;37019:4;-1:-1:-1;;;;;37036:13:0;;3271:20;3319:8;37032:535;;37075:72;;-1:-1:-1;;;37075:72:0;;-1:-1:-1;;;;;37075:36:0;;;;;:72;;22515:10;;37126:4;;37132:7;;37141:5;;37075:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37075:72:0;;;;;;;;-1:-1:-1;;37075:72:0;;;;;;;;;;;;:::i;:::-;;;37062:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37306:6;:13;37323:1;37306:18;37302:215;;37339:61;;-1:-1:-1;;;37339:61:0;;;;;;;:::i;37302:215::-;37485:6;37479:13;37470:6;37466:2;37462:15;37455:38;37062:464;-1:-1:-1;;;;;;37197:55:0;-1:-1:-1;;;37197:55:0;;-1:-1:-1;37190:62:0;;37032:535;-1:-1:-1;37555:4:0;37032:535;36882:690;;;;;;:::o;41843:108::-;41903:13;41932;41925:20;;;;;:::i;443:723::-;499:13;720:5;729:1;720:10;716:53;;-1:-1:-1;;747:10:0;;;;;;;;;;;;-1:-1:-1;;;747:10:0;;;;;443:723::o;716:53::-;794:5;779:12;835:78;842:9;;835:78;;868:8;;;;:::i;:::-;;-1:-1:-1;891:10:0;;-1:-1:-1;899:2:0;891:10;;:::i;:::-;;;835:78;;;923:19;955:6;945:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;945:17:0;;923:39;;973:154;980:10;;973:154;;1007:11;1017:1;1007:11;;:::i;:::-;;-1:-1:-1;1076:10:0;1084:2;1076:5;:10;:::i;:::-;1063:24;;:2;:24;:::i;:::-;1050:39;;1033:6;1040;1033:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1033:56:0;;;;;;;;-1:-1:-1;1104:11:0;1113:2;1104:11;;:::i;:::-;;;973:154;;27047:240;27108:7;-1:-1:-1;;;;;27140:19:0;;27124:102;;;;-1:-1:-1;;;27124:102:0;;20848:2:1;27124:102:0;;;20830:21:1;20887:2;20867:18;;;20860:30;20926:34;20906:18;;;20899:62;-1:-1:-1;;;20977:18:1;;;20970:47;21034:19;;27124:102:0;20646:413:1;27124:102:0;-1:-1:-1;;;;;;27248:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;27248:32:0;;-1:-1:-1;;;;;27248:32:0;;27047:240::o;32028:1272::-;32156:12;;-1:-1:-1;;;;;32183:16:0;;32175:62;;;;-1:-1:-1;;;32175:62:0;;21266:2:1;32175:62:0;;;21248:21:1;21305:2;21285:18;;;21278:30;21344:34;21324:18;;;21317:62;-1:-1:-1;;;21395:18:1;;;21388:31;21436:19;;32175:62:0;21064:397:1;32175:62:0;32374:21;32382:12;31567;;-1:-1:-1;31557:22:0;31480:105;32374:21;32373:22;32365:64;;;;-1:-1:-1;;;32365:64:0;;21668:2:1;32365:64:0;;;21650:21:1;21707:2;21687:18;;;21680:30;21746:31;21726:18;;;21719:59;21795:18;;32365:64:0;21466:353:1;32365:64:0;32456:12;32444:8;:24;;32436:71;;;;-1:-1:-1;;;32436:71:0;;22026:2:1;32436:71:0;;;22008:21:1;22065:2;22045:18;;;22038:30;22104:34;22084:18;;;22077:62;-1:-1:-1;;;22155:18:1;;;22148:32;22197:19;;32436:71:0;21824:398:1;32436:71:0;-1:-1:-1;;;;;32619:16:0;;32586:30;32619:16;;;:12;:16;;;;;;;;;32586:49;;;;;;;;;-1:-1:-1;;;;;32586:49:0;;;;;-1:-1:-1;;;32586:49:0;;;;;;;;;;;32661:119;;;;;;;;32681:19;;32586:49;;32661:119;;;32681:39;;32711:8;;32681:39;:::i;:::-;-1:-1:-1;;;;;32661:119:0;;;;;32764:8;32729:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;32661:119:0;;;;;;-1:-1:-1;;;;;32642:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;32642:138:0;;;;;;;;;;;;32815:43;;;;;;;;;;;32841:15;32815:43;;;;;;;;32787:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;32787:71:0;-1:-1:-1;;;;;;32787:71:0;;;;;;;;;;;;;;;;;;32799:12;;32911:281;32935:8;32931:1;:12;32911:281;;;32964:38;;32989:12;;-1:-1:-1;;;;;32964:38:0;;;32981:1;;32964:38;;32981:1;;32964:38;33029:59;33060:1;33064:2;33068:12;33082:5;33029:22;:59::i;:::-;33011:150;;;;-1:-1:-1;;;33011:150:0;;;;;;;:::i;:::-;33170:14;;;;:::i;:::-;;;;32945:3;;;;;:::i;:::-;;;;32911:281;;;-1:-1:-1;33200:12:0;:27;;;33234:60;30930: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:592::-;2764:6;2772;2825:2;2813:9;2804:7;2800:23;2796:32;2793:52;;;2841:1;2838;2831:12;2793:52;2881:9;2868:23;2910:18;2951:2;2943:6;2940:14;2937:34;;;2967:1;2964;2957:12;2937:34;3005:6;2994:9;2990:22;2980:32;;3050:7;3043:4;3039:2;3035:13;3031:27;3021:55;;3072:1;3069;3062:12;3021:55;3112:2;3099:16;3138:2;3130:6;3127:14;3124:34;;;3154:1;3151;3144:12;3124:34;3199:7;3194:2;3185:6;3181:2;3177:15;3173:24;3170:37;3167:57;;;3220:1;3217;3210:12;3167:57;3251:2;3243:11;;;;;3273:6;;-1:-1:-1;2693:592:1;;-1:-1:-1;;;;2693:592:1:o;3290:186::-;3349:6;3402:2;3390:9;3381:7;3377:23;3373:32;3370:52;;;3418:1;3415;3408:12;3370:52;3441:29;3460:9;3441:29;:::i;3846:347::-;3911:6;3919;3972:2;3960:9;3951:7;3947:23;3943:32;3940:52;;;3988:1;3985;3978:12;3940:52;4011:29;4030:9;4011:29;:::i;:::-;4001:39;;4090:2;4079:9;4075:18;4062:32;4137:5;4130:13;4123:21;4116:5;4113:32;4103:60;;4159:1;4156;4149:12;4103:60;4182:5;4172:15;;;3846:347;;;;;:::o;4198:127::-;4259:10;4254:3;4250:20;4247:1;4240:31;4290:4;4287:1;4280:15;4314:4;4311:1;4304:15;4330:1138;4425:6;4433;4441;4449;4502:3;4490:9;4481:7;4477:23;4473:33;4470:53;;;4519:1;4516;4509:12;4470:53;4542:29;4561:9;4542:29;:::i;:::-;4532:39;;4590:38;4624:2;4613:9;4609:18;4590:38;:::i;:::-;4580:48;;4675:2;4664:9;4660:18;4647:32;4637:42;;4730:2;4719:9;4715:18;4702:32;4753:18;4794:2;4786:6;4783:14;4780:34;;;4810:1;4807;4800:12;4780:34;4848:6;4837:9;4833:22;4823:32;;4893:7;4886:4;4882:2;4878:13;4874:27;4864:55;;4915:1;4912;4905:12;4864:55;4951:2;4938:16;4973:2;4969;4966:10;4963:36;;;4979:18;;:::i;:::-;5054:2;5048:9;5022:2;5108:13;;-1:-1:-1;;5104:22:1;;;5128:2;5100:31;5096:40;5084:53;;;5152:18;;;5172:22;;;5149:46;5146:72;;;5198:18;;:::i;:::-;5238:10;5234:2;5227:22;5273:2;5265:6;5258:18;5313:7;5308:2;5303;5299;5295:11;5291:20;5288:33;5285:53;;;5334:1;5331;5324:12;5285:53;5390:2;5385;5381;5377:11;5372:2;5364:6;5360:15;5347:46;5435:1;5430:2;5425;5417:6;5413:15;5409:24;5402:35;5456:6;5446:16;;;;;;;4330:1138;;;;;;;:::o;5473:260::-;5541:6;5549;5602:2;5590:9;5581:7;5577:23;5573:32;5570:52;;;5618:1;5615;5608:12;5570:52;5641:29;5660:9;5641:29;:::i;:::-;5631:39;;5689:38;5723:2;5712:9;5708:18;5689:38;:::i;:::-;5679:48;;5473:260;;;;;:::o;5738:380::-;5817:1;5813:12;;;;5860;;;5881:61;;5935:4;5927:6;5923:17;5913:27;;5881:61;5988:2;5980:6;5977:14;5957:18;5954:38;5951:161;;6034:10;6029:3;6025:20;6022:1;6015:31;6069:4;6066:1;6059:15;6097:4;6094:1;6087:15;5951:161;;5738:380;;;:::o;7366:356::-;7568:2;7550:21;;;7587:18;;;7580:30;7646:34;7641:2;7626:18;;7619:62;7713:2;7698:18;;7366:356::o;8490:127::-;8551:10;8546:3;8542:20;8539:1;8532:31;8582:4;8579:1;8572:15;8606:4;8603:1;8596:15;8622:135;8661:3;8682:17;;;8679:43;;8702:18;;:::i;:::-;-1:-1:-1;8749:1:1;8738:13;;8622:135::o;9707:545::-;9809:2;9804:3;9801:11;9798:448;;;9845:1;9870:5;9866:2;9859:17;9915:4;9911:2;9901:19;9985:2;9973:10;9969:19;9966:1;9962:27;9956:4;9952:38;10021:4;10009:10;10006:20;10003:47;;;-1:-1:-1;10044:4:1;10003:47;10099:2;10094:3;10090:12;10087:1;10083:20;10077:4;10073:31;10063:41;;10154:82;10172:2;10165:5;10162:13;10154:82;;;10217:17;;;10198:1;10187:13;10154:82;;10428:1206;10552:18;10547:3;10544:27;10541:53;;;10574:18;;:::i;:::-;10603:94;10693:3;10653:38;10685:4;10679:11;10653:38;:::i;:::-;10647:4;10603:94;:::i;:::-;10723:1;10748:2;10743:3;10740:11;10765:1;10760:616;;;;11420:1;11437:3;11434:93;;;-1:-1:-1;11493:19:1;;;11480:33;11434:93;-1:-1:-1;;10385:1:1;10381:11;;;10377:24;10373:29;10363:40;10409:1;10405:11;;;10360:57;11540:78;;10733:895;;10760:616;9654:1;9647:14;;;9691:4;9678:18;;-1:-1:-1;;10796:17:1;;;10897:9;10919:229;10933:7;10930:1;10927:14;10919:229;;;11022:19;;;11009:33;10994:49;;11129:4;11114:20;;;;11082:1;11070:14;;;;10949:12;10919:229;;;10923:3;11176;11167:7;11164:16;11161:159;;;11300:1;11296:6;11290:3;11284;11281:1;11277:11;11273:21;11269:34;11265:39;11252:9;11247:3;11243:19;11230:33;11226:79;11218:6;11211:95;11161:159;;;11363:1;11357:3;11354:1;11350:11;11346:19;11340:4;11333:33;10733:895;;;10428:1206;;;:::o;12410:125::-;12475:9;;;12496:10;;;12493:36;;;12509:18;;:::i;14148:415::-;14350:2;14332:21;;;14389:2;14369:18;;;14362:30;14428:34;14423:2;14408:18;;14401:62;-1:-1:-1;;;14494:2:1;14479:18;;14472:49;14553:3;14538:19;;14148:415::o;14984:496::-;15163:3;15201:6;15195:13;15217:66;15276:6;15271:3;15264:4;15256:6;15252:17;15217:66;:::i;:::-;15346:13;;15305:16;;;;15368:70;15346:13;15305:16;15415:4;15403:17;;15368:70;:::i;:::-;15454:20;;14984:496;-1:-1:-1;;;;14984:496:1:o;17124:200::-;-1:-1:-1;;;;;17260:10:1;;;17248;;;17244:27;;17283:12;;;17280:38;;;17298:18;;:::i;:::-;17280:38;17124:200;;;;:::o;17329:197::-;-1:-1:-1;;;;;17451:10:1;;;17463;;;17447:27;;17486:11;;;17483:37;;;17500:18;;:::i;17884:128::-;17951:9;;;17972:11;;;17969:37;;;17986:18;;:::i;18835:136::-;18874:3;18902:5;18892:39;;18911:18;;:::i;:::-;-1:-1:-1;;;18947:18:1;;18835:136::o;19392:489::-;-1:-1:-1;;;;;19661:15:1;;;19643:34;;19713:15;;19708:2;19693:18;;19686:43;19760:2;19745:18;;19738:34;;;19808:3;19803:2;19788:18;;19781:31;;;19586:4;;19829:46;;19855:19;;19847:6;19829:46;:::i;:::-;19821:54;19392:489;-1:-1:-1;;;;;;19392:489:1:o;19886:249::-;19955:6;20008:2;19996:9;19987:7;19983:23;19979:32;19976:52;;;20024:1;20021;20014:12;19976:52;20056:9;20050:16;20075:30;20099:5;20075:30;:::i;20140:127::-;20201:10;20196:3;20192:20;20189:1;20182:31;20232:4;20229:1;20222:15;20256:4;20253:1;20246:15;20272:120;20312:1;20338;20328:35;;20343:18;;:::i;:::-;-1:-1:-1;20377:9:1;;20272:120::o;20397:112::-;20429:1;20455;20445:35;;20460:18;;:::i;:::-;-1:-1:-1;20494:9:1;;20397:112::o;20514:127::-;20575:10;20570:3;20566:20;20563:1;20556:31;20606:4;20603:1;20596:15;20630:4;20627:1;20620:15

Swarm Source

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