ETH Price: $3,362.09 (-0.64%)
Gas: 1 Gwei

Token

APE LANDERS (APE LANDERS)
 

Overview

Max Total Supply

3,050 APE LANDERS

Holders

879

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 APE LANDERS
0xb561ED6975423CAb5d7A6B6617d8E08419c82289
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:
Apelanders

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 99999 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

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);
            }
        }
    }
}

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

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

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

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

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


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


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


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

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


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

/**
 * @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 collectionSize;
  uint256 internal 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 {}
}

interface IERC20 {

    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

contract Apelanders is ERC721A, Ownable, ReentrancyGuard{
    using Strings for uint256;
    uint256 public mintPrice = .02 ether;
    uint256 public mintPriceApe = 0.15 ether;
    uint256 public maxTokens = 6969;
    uint256 public maxPerMint = 100;
    uint256 public minted;
    uint256 public reserved;
    uint256 public reserveMinted;
    
    bool public mintEnabled;
    bool public claimEnabled;
    bool public revealed;
    string private unrevealed = 'https://ipfs.io/ipfs/bafybeihs3mjd3eyniy2v42alhuvh7f5aw3ngq3cgg5jhk7nzx5rhgxqtd4/images/Placeholder.gif';
    string private baseURI;
    struct mintData{
        uint256 amount;
        }
    IERC20 public APE = IERC20(0x40E0a6eF9DbADfc83C5e0d15262FEB4638588D77);
    struct claimData{
        uint256 amount;
        bool sent;
        }

    mapping(address => claimData) public claimers;



    constructor() ERC721A("APE LANDERS", "APE LANDERS", maxPerMint, maxTokens){
      
    }

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

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

    function revealNFT(string memory _baseURI) external onlyOwner{
      baseURI = _baseURI;
      revealed = true;
    }

    function mintRemainingToDao(address _dao, uint256 amount) external onlyOwner{
      uint256 remaining = reserved - reserveMinted;
      require(amount <= remaining);
      uint256 numtimes = amount/maxPerMint;
      uint256 extra = amount%maxPerMint;
      for(uint256 i = 0; i < numtimes;i++){
        minted += maxPerMint;
        _safeMint(_dao,maxPerMint);
      }
      if(extra >0){
        minted +=extra;
         _safeMint(_dao,extra);
      }
  }

    function mint(uint256 amount) external payable humanOnly{
	    require(mintEnabled);
	    require(minted + amount  <= (maxTokens - reserved));
	    require(amount <= maxPerMint);
	    require(msg.value >= mintPrice * amount);
	    minted += amount;
	    _safeMint(msg.sender,amount);
    }

    function mintWithApe(uint256 amount) external humanOnly{
	    require(mintEnabled);
	    require(minted + amount  <= (maxTokens - reserved));
	    require(amount <= maxPerMint);
	    require(APE.balanceOf(msg.sender) >= mintPriceApe * amount);
      APE.transferFrom(msg.sender,address(this),mintPriceApe * amount);
	    minted += amount;
	    _safeMint(msg.sender,amount);
    }

    function claimApelander() external {
	    require((reserveMinted + claimers[msg.sender].amount <= reserved) &&  (minted + claimers[msg.sender].amount <=maxTokens));
	    require(!claimers[msg.sender].sent);
      require(claimEnabled);
	    claimers[msg.sender].sent = true;
	    minted += claimers[msg.sender].amount;
      reserveMinted +=claimers[msg.sender].amount;
	    _safeMint(msg.sender,claimers[msg.sender].amount);

    }

    function addClaimers(address[] calldata _claim, uint256[] calldata _amount) external onlyOwner {
        for (uint256 i = 0; i < _claim.length; i++) {
            claimers[_claim[i]].amount = _amount[i];
            reserved += _amount[i];
        }
    }

    function unclaimed() external view returns(uint256){
      return reserved - reserveMinted;
    }

    function withdraw() external onlyOwner {
        payable(owner()).transfer(address(this).balance);
        APE.transfer(owner(), APE.balanceOf(address(this)));
    }

    function setmintStatus(bool _claimEnabled, bool _mintEnabled) external onlyOwner {
        claimEnabled = _claimEnabled;
	      mintEnabled = _mintEnabled;
    }

    function setMintPrice(uint256 _mintPrice, uint256 _mintPriceApe) external onlyOwner{
        mintPrice = _mintPrice;
        mintPriceApe = _mintPriceApe;
    }

    function setUpdateCollectionSize(uint256 _maxTokens) external onlyOwner{
        maxTokens = _maxTokens;
        collectionSize = _maxTokens;
    }
    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

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

   function tokenURI(uint256 tokenId) public view override returns (string memory) {
	    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");
      if(!revealed){
	    string memory metadata = string(abi.encodePacked('{"name": "Ape Lander #',
	    tokenId.toString(),
	    '", "description": "6969 Ape Landers living on the Ethereum Block Chain", "image": "',
	    unrevealed,'",',
	    '"attributes": [{"trait_type":"unrevealed","value": "Apelander"}]}'));

        return string(abi.encodePacked("data:application/json;base64,",base64(bytes(metadata))));
      } else{
            string memory baseURI = _baseURI();
            return
      bytes(baseURI).length > 0
        ? string(abi.encodePacked(baseURI, tokenId.toString()))
        : "";
      }
    }

  /** BASE 64 - Written by Brech Devos */
  
    string internal constant TABLE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';

    function base64(bytes memory data) internal pure returns (string memory) {
        if (data.length == 0) return '';

        // load the table into memory
        string memory table = TABLE;

        // multiply by 4/3 rounded up
        uint256 encodedLen = 4 * ((data.length + 2) / 3);

        // add some extra buffer at the end required for the writing
        string memory result = new string(encodedLen + 32);

        assembly {
            // set the actual output length
            mstore(result, encodedLen)
            
            // prepare the lookup table
            let tablePtr := add(table, 1)
            
            // input ptr
            let dataPtr := data
            let endPtr := add(dataPtr, mload(data))
            
            // result ptr, jump over length
            let resultPtr := add(result, 32)
            
            // run over the input, 3 bytes at a time
            for {} lt(dataPtr, endPtr) {}
            {
                dataPtr := add(dataPtr, 3)
                
                // read 3 bytes
                let input := mload(dataPtr)
                
                // write 4 characters
                mstore(resultPtr, shl(248, mload(add(tablePtr, and(shr(18, input), 0x3F)))))
                resultPtr := add(resultPtr, 1)
                mstore(resultPtr, shl(248, mload(add(tablePtr, and(shr(12, input), 0x3F)))))
                resultPtr := add(resultPtr, 1)
                mstore(resultPtr, shl(248, mload(add(tablePtr, and(shr( 6, input), 0x3F)))))
                resultPtr := add(resultPtr, 1)
                mstore(resultPtr, shl(248, mload(add(tablePtr, and(        input,  0x3F)))))
                resultPtr := add(resultPtr, 1)
            }
            
            // padding with '='
            switch mod(mload(data), 3)
            case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) }
            case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) }
        }

        return result;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"APE","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_claim","type":"address[]"},{"internalType":"uint256[]","name":"_amount","type":"uint256[]"}],"name":"addClaimers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimApelander","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimers","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bool","name":"sent","type":"bool"}],"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":"maxPerMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPriceApe","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_dao","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintRemainingToDao","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintWithApe","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"reserveMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reserved","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"revealNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"uint256","name":"_mintPrice","type":"uint256"},{"internalType":"uint256","name":"_mintPriceApe","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTokens","type":"uint256"}],"name":"setUpdateCollectionSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_claimEnabled","type":"bool"},{"internalType":"bool","name":"_mintEnabled","type":"bool"}],"name":"setmintStatus","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":"unclaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

600080805560095566470de4df820000600c55670214e8348c4f0000600d55611b39600e556064600f5561012060405260676080818152906200422a60a0398051620000549160149160209091019062000246565b50601680546001600160a01b0319167340e0a6ef9dbadfc83c5e0d15262feb4638588d771790553480156200008857600080fd5b506040518060400160405280600b81526020016a415045204c414e4445525360a81b8152506040518060400160405280600b81526020016a415045204c414e4445525360a81b815250600f54600e5460008111620001445760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001a65760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b60648201526084016200013b565b8351620001bb90600390602087019062000246565b508251620001d190600490602086019062000246565b5060029190915560015550620001e9905033620001f4565b6001600b5562000328565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200025490620002ec565b90600052602060002090601f016020900481019282620002785760008555620002c3565b82601f106200029357805160ff1916838001178555620002c3565b82800160010185558215620002c3579182015b82811115620002c3578251825591602001919060010190620002a6565b50620002d1929150620002d5565b5090565b5b80821115620002d15760008155600101620002d6565b600181811c908216806200030157607f821691505b6020821081036200032257634e487b7160e01b600052602260045260246000fd5b50919050565b613ef280620003386000396000f3fe6080604052600436106102f25760003560e01c8063669416b81161018f578063a22cb465116100e1578063da62fba91161008a578063e985e9c511610064578063e985e9c514610862578063f2fde38b146108b8578063fe60d12c146108d857600080fd5b8063da62fba9146107e0578063dc33e6811461082c578063e83157421461084c57600080fd5b8063d1239730116100bb578063d123973014610790578063d3a65857146107aa578063d7224ba0146107ca57600080fd5b8063a22cb46514610730578063b88d4fde14610750578063c87b56dd1461077057600080fd5b806387c8d4301161014357806395d89b411161011d57806395d89b41146106e85780639a835206146106fd578063a0712d681461071d57600080fd5b806387c8d4301461064d5780638da5cb5b146106625780639231ab2a1461068d57600080fd5b806370a082311161017457806370a08231146105f8578063715018a614610618578063827f4f781461062d57600080fd5b8063669416b8146105cd5780636817c76c146105e257600080fd5b80632f745c59116102485780634f6ccce7116101fc57806351830227116101d6578063518302271461056d5780635555a77e1461058d5780636352211e146105ad57600080fd5b80634f6ccce714610521578063507e094f1461054157806350f4de891461055757600080fd5b806342842e0e1161022d57806342842e0e146104d55780634c81433f146104f55780634f02c4201461050b57600080fd5b80632f745c59146104a05780633ccfd60b146104c057600080fd5b80630ddff05b116102aa5780631b5d145d116102845780631b5d145d1461043457806323b872dd146104615780632866ed211461048157600080fd5b80630ddff05b146103d557806314f0252c146103f557806318160ddd1461041557600080fd5b806306fdde03116102db57806306fdde031461034e578063081812fc14610370578063095ea7b3146103b557600080fd5b806301ffc9a7146102f75780630442bfa81461032c575b600080fd5b34801561030357600080fd5b506103176103123660046134a3565b6108ee565b60405190151581526020015b60405180910390f35b34801561033857600080fd5b5061034c6103473660046134c0565b610a1f565b005b34801561035a57600080fd5b50610363610ab0565b6040516103239190613558565b34801561037c57600080fd5b5061039061038b36600461356b565b610b42565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610323565b3480156103c157600080fd5b5061034c6103d03660046135a8565b610c04565b3480156103e157600080fd5b5061034c6103f0366004613695565b610d91565b34801561040157600080fd5b5061034c61041036600461356b565b610e56565b34801561042157600080fd5b506000545b604051908152602001610323565b34801561044057600080fd5b506016546103909073ffffffffffffffffffffffffffffffffffffffff1681565b34801561046d57600080fd5b5061034c61047c3660046136de565b6110a8565b34801561048d57600080fd5b5060135461031790610100900460ff1681565b3480156104ac57600080fd5b506104266104bb3660046135a8565b6110b3565b3480156104cc57600080fd5b5061034c6112b5565b3480156104e157600080fd5b5061034c6104f03660046136de565b6114e0565b34801561050157600080fd5b5061042660125481565b34801561051757600080fd5b5061042660105481565b34801561052d57600080fd5b5061042661053c36600461356b565b6114fb565b34801561054d57600080fd5b50610426600f5481565b34801561056357600080fd5b50610426600d5481565b34801561057957600080fd5b506013546103179062010000900460ff1681565b34801561059957600080fd5b5061034c6105a836600461356b565b611591565b3480156105b957600080fd5b506103906105c836600461356b565b61161c565b3480156105d957600080fd5b5061042661162e565b3480156105ee57600080fd5b50610426600c5481565b34801561060457600080fd5b5061042661061336600461371a565b611645565b34801561062457600080fd5b5061034c611725565b34801561063957600080fd5b5061034c6106483660046135a8565b6117b2565b34801561065957600080fd5b5061034c6118ec565b34801561066e57600080fd5b50600a5473ffffffffffffffffffffffffffffffffffffffff16610390565b34801561069957600080fd5b506106ad6106a836600461356b565b611a0d565b60408051825173ffffffffffffffffffffffffffffffffffffffff16815260209283015167ffffffffffffffff169281019290925201610323565b3480156106f457600080fd5b50610363611a2a565b34801561070957600080fd5b5061034c610718366004613743565b611a39565b61034c61072b36600461356b565b611b18565b34801561073c57600080fd5b5061034c61074b36600461377c565b611bf4565b34801561075c57600080fd5b5061034c61076b366004613798565b611d0a565b34801561077c57600080fd5b5061036361078b36600461356b565b611db3565b34801561079c57600080fd5b506013546103179060ff1681565b3480156107b657600080fd5b5061034c6107c5366004613860565b611f0c565b3480156107d657600080fd5b5061042660095481565b3480156107ec57600080fd5b506108176107fb36600461371a565b6017602052600090815260409020805460019091015460ff1682565b60408051928352901515602083015201610323565b34801561083857600080fd5b5061042661084736600461371a565b612045565b34801561085857600080fd5b50610426600e5481565b34801561086e57600080fd5b5061031761087d3660046138cc565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156108c457600080fd5b5061034c6108d336600461371a565b612050565b3480156108e457600080fd5b5061042660115481565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061098157507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806109cd57507fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d6300000000000000000000000000000000000000000000000000000000145b80610a1957507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b600a5473ffffffffffffffffffffffffffffffffffffffff163314610aa5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600c91909155600d55565b606060038054610abf906138ff565b80601f0160208091040260200160405190810160405280929190818152602001828054610aeb906138ff565b8015610b385780601f10610b0d57610100808354040283529160200191610b38565b820191906000526020600020905b815481529060010190602001808311610b1b57829003601f168201915b5050505050905090565b6000610b4f826000541190565b610bdb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201527f78697374656e7420746f6b656e000000000000000000000000000000000000006064820152608401610a9c565b5060009081526007602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610c0f8261161c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ccc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201527f65720000000000000000000000000000000000000000000000000000000000006064820152608401610a9c565b3373ffffffffffffffffffffffffffffffffffffffff82161480610cf55750610cf5813361087d565b610d81576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610a9c565b610d8c83838361217d565b505050565b600a5473ffffffffffffffffffffffffffffffffffffffff163314610e12576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9c565b8051610e259060159060208401906133e5565b5050601380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff1662010000179055565b323314610ebf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610a9c565b60135460ff16610ece57600080fd5b601154600e54610ede9190613981565b81601054610eec9190613998565b1115610ef757600080fd5b600f54811115610f0657600080fd5b80600d54610f1491906139b0565b6016546040517f70a0823100000000000000000000000000000000000000000000000000000000815233600482015273ffffffffffffffffffffffffffffffffffffffff909116906370a0823190602401602060405180830381865afa158015610f82573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fa691906139ed565b1015610fb157600080fd5b601654600d5473ffffffffffffffffffffffffffffffffffffffff909116906323b872dd9033903090610fe59086906139b0565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff938416600482015292909116602483015260448201526064016020604051808303816000875af115801561105e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110829190613a06565b5080601060008282546110959190613998565b909155506110a5905033826121fe565b50565b610d8c83838361221c565b60006110be83611645565b821061114c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60448201527f64730000000000000000000000000000000000000000000000000000000000006064820152608401610a9c565b600080549080805b8381101561122c5760008181526005602090815260409182902082518084019093525473ffffffffffffffffffffffffffffffffffffffff81168084527401000000000000000000000000000000000000000090910467ffffffffffffffff1691830191909152156111c557805192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112195786840361120b57509350610a1992505050565b8361121581613a23565b9450505b508061122481613a23565b915050611154565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e6465780000000000000000000000000000000000006064820152608401610a9c565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9c565b600a5460405173ffffffffffffffffffffffffffffffffffffffff909116904780156108fc02916000818181858888f1935050505015801561137c573d6000803e3d6000fd5b5060165473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6113ba600a5473ffffffffffffffffffffffffffffffffffffffff1690565b6016546040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff909116906370a0823190602401602060405180830381865afa158015611428573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061144c91906139ed565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff909216600483015260248201526044016020604051808303816000875af11580156114bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110a59190613a06565b610d8c83838360405180602001604052806000815250611d0a565b60008054821061158d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560448201527f6e647300000000000000000000000000000000000000000000000000000000006064820152608401610a9c565b5090565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611612576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9c565b600e819055600155565b600061162782612742565b5192915050565b60006012546011546116409190613981565b905090565b600073ffffffffffffffffffffffffffffffffffffffff82166116ea576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201527f65726f20616464726573730000000000000000000000000000000000000000006064820152608401610a9c565b5073ffffffffffffffffffffffffffffffffffffffff166000908152600660205260409020546fffffffffffffffffffffffffffffffff1690565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146117a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9c565b6117b06000612924565b565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611833576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9c565b60006012546011546118459190613981565b90508082111561185457600080fd5b6000600f54836118649190613a8a565b90506000600f54846118769190613a9e565b905060005b828110156118bc57600f54601060008282546118979190613998565b925050819055506118aa86600f546121fe565b806118b481613a23565b91505061187b565b5080156118e55780601060008282546118d59190613998565b909155506118e5905085826121fe565b5050505050565b6011543360009081526017602052604090205460125461190c9190613998565b111580156119385750600e54336000908152601760205260409020546010546119359190613998565b11155b61194157600080fd5b3360009081526017602052604090206001015460ff161561196157600080fd5b601354610100900460ff1661197557600080fd5b336000908152601760205260408120600181810180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690911790555460108054919290916119c6908490613998565b90915550503360009081526017602052604081205460128054919290916119ee908490613998565b9091555050336000818152601760205260409020546117b091906121fe565b6040805180820190915260008082526020820152610a1982612742565b606060048054610abf906138ff565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611aba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9c565b601380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000016610100931515939093027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001692909217901515179055565b323314611b81576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610a9c565b60135460ff16611b9057600080fd5b601154600e54611ba09190613981565b81601054611bae9190613998565b1115611bb957600080fd5b600f54811115611bc857600080fd5b80600c54611bd691906139b0565b341015611be257600080fd5b80601060008282546110959190613998565b3373ffffffffffffffffffffffffffffffffffffffff831603611c73576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610a9c565b33600081815260086020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611d1584848461221c565b611d218484848461299b565b611dad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610a9c565b50505050565b6060611dc0826000541190565b611e4c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360448201527f74656e7420746f6b656e000000000000000000000000000000000000000000006064820152608401610a9c565b60135462010000900460ff16611ebb576000611e6783612b8f565b6014604051602001611e7a929190613ab2565b6040516020818303038152906040529050611e9481612cc4565b604051602001611ea49190613ce2565b604051602081830303815290604052915050919050565b6000611ec5612e9e565b90506000815111611ee55760405180602001604052806000815250611f00565b80611eef84612b8f565b604051602001611ea4929190613d27565b9392505050565b919050565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611f8d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9c565b60005b838110156118e557828282818110611faa57611faa613d56565b9050602002013560176000878785818110611fc757611fc7613d56565b9050602002016020810190611fdc919061371a565b73ffffffffffffffffffffffffffffffffffffffff16815260208101919091526040016000205582828281811061201557612015613d56565b905060200201356011600082825461202d9190613998565b9091555081905061203d81613a23565b915050611f90565b6000610a1982612ead565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146120d1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9c565b73ffffffffffffffffffffffffffffffffffffffff8116612174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a9c565b6110a581612924565b60008281526007602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff87811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b612218828260405180602001604052806000815250612fa1565b5050565b600061222782612742565b805190915060009073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061228557503361226d84610b42565b73ffffffffffffffffffffffffffffffffffffffff16145b8061229757508151612297903361087d565b905080612326576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610a9c565b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146123e5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f727265637460448201527f206f776e657200000000000000000000000000000000000000000000000000006064820152608401610a9c565b73ffffffffffffffffffffffffffffffffffffffff8416612488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610a9c565b612498600084846000015161217d565b73ffffffffffffffffffffffffffffffffffffffff851660009081526006602052604081208054600192906124e09084906fffffffffffffffffffffffffffffffff16613d85565b82546101009290920a6fffffffffffffffffffffffffffffffff81810219909316918316021790915573ffffffffffffffffffffffffffffffffffffffff86166000908152600660205260408120805460019450909261254291859116613db6565b82546fffffffffffffffffffffffffffffffff9182166101009390930a92830291909202199091161790555060408051808201825273ffffffffffffffffffffffffffffffffffffffff808716825267ffffffffffffffff42811660208085019182526000898152600590915294852093518454915190921674010000000000000000000000000000000000000000027fffffffff000000000000000000000000000000000000000000000000000000009091169190921617179055612609846001613998565b60008181526005602052604090205490915073ffffffffffffffffffffffffffffffffffffffff166126de57612640816000541190565b156126de57604080518082018252845173ffffffffffffffffffffffffffffffffffffffff908116825260208087015167ffffffffffffffff908116828501908152600087815260059093529490912092518354945190911674010000000000000000000000000000000000000000027fffffffff000000000000000000000000000000000000000000000000000000009094169116179190911790555b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152612761826000541190565b6127ed576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360448201527f74656e7420746f6b656e000000000000000000000000000000000000000000006064820152608401610a9c565b60006002548310612813576002546128059084613981565b612810906001613998565b90505b825b81811061289b5760008181526005602090815260409182902082518084019093525473ffffffffffffffffffffffffffffffffffffffff81168084527401000000000000000000000000000000000000000090910467ffffffffffffffff16918301919091521561288857949350505050565b508061289381613de1565b915050612815565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006064820152608401610a9c565b600a805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600073ffffffffffffffffffffffffffffffffffffffff84163b15612b83576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290612a12903390899088908890600401613e16565b6020604051808303816000875af1925050508015612a6b575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252612a6891810190613e5f565b60015b612b38573d808015612a99576040519150601f19603f3d011682016040523d82523d6000602084013e612a9e565b606091505b508051600003612b30576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610a9c565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050612b87565b5060015b949350505050565b606081600003612bd257505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612bfc5780612be681613a23565b9150612bf59050600a83613a8a565b9150612bd6565b60008167ffffffffffffffff811115612c1757612c176135d2565b6040519080825280601f01601f191660200182016040528015612c41576020820181803683370190505b5090505b8415612b8757612c56600183613981565b9150612c63600a86613a9e565b612c6e906030613998565b60f81b818381518110612c8357612c83613d56565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612cbd600a86613a8a565b9450612c45565b60608151600003612ce357505060408051602081019091526000815290565b6000604051806060016040528060408152602001613e7d6040913990506000600384516002612d129190613998565b612d1c9190613a8a565b612d279060046139b0565b90506000612d36826020613998565b67ffffffffffffffff811115612d4e57612d4e6135d2565b6040519080825280601f01601f191660200182016040528015612d78576020820181803683370190505b509050818152600183018586518101602084015b81831015612de65760039283018051603f601282901c811687015160f890811b8552600c83901c8216880151811b6001860152600683901c8216880151811b60028601529116860151901b93820193909352600401612d8c565b600389510660018114612e005760028114612e4a57612e90565b7f3d3d0000000000000000000000000000000000000000000000000000000000007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe830152612e90565b7f3d000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8301525b509398975050505050505050565b606060158054610abf906138ff565b600073ffffffffffffffffffffffffffffffffffffffff8216612f52576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527f20746865207a65726f20616464726573730000000000000000000000000000006064820152608401610a9c565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526006602052604090205470010000000000000000000000000000000090046fffffffffffffffffffffffffffffffff1690565b60005473ffffffffffffffffffffffffffffffffffffffff8416613047576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610a9c565b613052816000541190565b156130b9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610a9c565b60025483111561314b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960448201527f67680000000000000000000000000000000000000000000000000000000000006064820152608401610a9c565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600660209081526040918290208251808401845290546fffffffffffffffffffffffffffffffff808216835270010000000000000000000000000000000090910416918101919091528151808301909252805190919081906131ca908790613db6565b6fffffffffffffffffffffffffffffffff1681526020018583602001516131f19190613db6565b6fffffffffffffffffffffffffffffffff90811690915273ffffffffffffffffffffffffffffffffffffffff808816600081815260066020908152604080832087519783015187167001000000000000000000000000000000000297909616969096179094558451808601865291825267ffffffffffffffff428116838601908152888352600590955294812091518254945190951674010000000000000000000000000000000000000000027fffffffff0000000000000000000000000000000000000000000000000000000090941694909216939093179190911790915582905b858110156133da57604051829073ffffffffffffffffffffffffffffffffffffffff8916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461332e600088848861299b565b6133ba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610a9c565b816133c481613a23565b92505080806133d290613a23565b9150506132d4565b50600081905561273a565b8280546133f1906138ff565b90600052602060002090601f0160209004810192826134135760008555613459565b82601f1061342c57805160ff1916838001178555613459565b82800160010185558215613459579182015b8281111561345957825182559160200191906001019061343e565b5061158d9291505b8082111561158d5760008155600101613461565b7fffffffff00000000000000000000000000000000000000000000000000000000811681146110a557600080fd5b6000602082840312156134b557600080fd5b8135611f0081613475565b600080604083850312156134d357600080fd5b50508035926020909101359150565b60005b838110156134fd5781810151838201526020016134e5565b83811115611dad5750506000910152565b600081518084526135268160208601602086016134e2565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000611f00602083018461350e565b60006020828403121561357d57600080fd5b5035919050565b803573ffffffffffffffffffffffffffffffffffffffff81168114611f0757600080fd5b600080604083850312156135bb57600080fd5b6135c483613584565b946020939093013593505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff8084111561361c5761361c6135d2565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715613662576136626135d2565b8160405280935085815286868601111561367b57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156136a757600080fd5b813567ffffffffffffffff8111156136be57600080fd5b8201601f810184136136cf57600080fd5b612b8784823560208401613601565b6000806000606084860312156136f357600080fd5b6136fc84613584565b925061370a60208501613584565b9150604084013590509250925092565b60006020828403121561372c57600080fd5b611f0082613584565b80151581146110a557600080fd5b6000806040838503121561375657600080fd5b823561376181613735565b9150602083013561377181613735565b809150509250929050565b6000806040838503121561378f57600080fd5b61376183613584565b600080600080608085870312156137ae57600080fd5b6137b785613584565b93506137c560208601613584565b925060408501359150606085013567ffffffffffffffff8111156137e857600080fd5b8501601f810187136137f957600080fd5b61380887823560208401613601565b91505092959194509250565b60008083601f84011261382657600080fd5b50813567ffffffffffffffff81111561383e57600080fd5b6020830191508360208260051b850101111561385957600080fd5b9250929050565b6000806000806040858703121561387657600080fd5b843567ffffffffffffffff8082111561388e57600080fd5b61389a88838901613814565b909650945060208701359150808211156138b357600080fd5b506138c087828801613814565b95989497509550505050565b600080604083850312156138df57600080fd5b6138e883613584565b91506138f660208401613584565b90509250929050565b600181811c9082168061391357607f821691505b60208210810361394c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008282101561399357613993613952565b500390565b600082198211156139ab576139ab613952565b500190565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139e8576139e8613952565b500290565b6000602082840312156139ff57600080fd5b5051919050565b600060208284031215613a1857600080fd5b8151611f0081613735565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613a5457613a54613952565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082613a9957613a99613a5b565b500490565b600082613aad57613aad613a5b565b500690565b7f7b226e616d65223a2022417065204c616e6465722023000000000000000000008152600083516020613aeb82601686018389016134e2565b7f222c20226465736372697074696f6e223a20223639363920417065204c616e646016928501928301527f657273206c6976696e67206f6e2074686520457468657265756d20426c6f636b60368301527f20436861696e222c2022696d616765223a20220000000000000000000000000060568301528454606990600090600181811c9080831680613b7e57607f831692505b8683108103613bb4577f4e487b710000000000000000000000000000000000000000000000000000000085526022600452602485fd5b808015613bc85760018114613bfb57613c2c565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008516878a015286848a01019550613c2c565b60008c81526020902060005b85811015613c225781548b82018a0152908401908901613c07565b505086848a010195505b5050505050613cd6613c61827f222c000000000000000000000000000000000000000000000000000000000000815260020190565b7f2261747472696275746573223a205b7b2274726169745f74797065223a22756e81527f72657665616c6564222c2276616c7565223a20224170656c616e646572227d5d60208201527f7d00000000000000000000000000000000000000000000000000000000000000604082015260410190565b98975050505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251613d1a81601d8501602087016134e2565b91909101601d0192915050565b60008351613d398184602088016134e2565b835190830190613d4d8183602088016134e2565b01949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006fffffffffffffffffffffffffffffffff83811690831681811015613dae57613dae613952565b039392505050565b60006fffffffffffffffffffffffffffffffff808316818516808303821115613d4d57613d4d613952565b600081613df057613df0613952565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190565b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152613e55608083018461350e565b9695505050505050565b600060208284031215613e7157600080fd5b8151611f008161347556fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220c0e26196a860c40eb6a0c68ee629522445555bad3b494ebe1f1610237666320764736f6c634300080d003368747470733a2f2f697066732e696f2f697066732f626166796265696873336d6a643365796e697932763432616c687576683766356177336e677133636767356a686b376e7a783572686778717464342f696d616765732f506c616365686f6c6465722e676966

Deployed Bytecode

0x6080604052600436106102f25760003560e01c8063669416b81161018f578063a22cb465116100e1578063da62fba91161008a578063e985e9c511610064578063e985e9c514610862578063f2fde38b146108b8578063fe60d12c146108d857600080fd5b8063da62fba9146107e0578063dc33e6811461082c578063e83157421461084c57600080fd5b8063d1239730116100bb578063d123973014610790578063d3a65857146107aa578063d7224ba0146107ca57600080fd5b8063a22cb46514610730578063b88d4fde14610750578063c87b56dd1461077057600080fd5b806387c8d4301161014357806395d89b411161011d57806395d89b41146106e85780639a835206146106fd578063a0712d681461071d57600080fd5b806387c8d4301461064d5780638da5cb5b146106625780639231ab2a1461068d57600080fd5b806370a082311161017457806370a08231146105f8578063715018a614610618578063827f4f781461062d57600080fd5b8063669416b8146105cd5780636817c76c146105e257600080fd5b80632f745c59116102485780634f6ccce7116101fc57806351830227116101d6578063518302271461056d5780635555a77e1461058d5780636352211e146105ad57600080fd5b80634f6ccce714610521578063507e094f1461054157806350f4de891461055757600080fd5b806342842e0e1161022d57806342842e0e146104d55780634c81433f146104f55780634f02c4201461050b57600080fd5b80632f745c59146104a05780633ccfd60b146104c057600080fd5b80630ddff05b116102aa5780631b5d145d116102845780631b5d145d1461043457806323b872dd146104615780632866ed211461048157600080fd5b80630ddff05b146103d557806314f0252c146103f557806318160ddd1461041557600080fd5b806306fdde03116102db57806306fdde031461034e578063081812fc14610370578063095ea7b3146103b557600080fd5b806301ffc9a7146102f75780630442bfa81461032c575b600080fd5b34801561030357600080fd5b506103176103123660046134a3565b6108ee565b60405190151581526020015b60405180910390f35b34801561033857600080fd5b5061034c6103473660046134c0565b610a1f565b005b34801561035a57600080fd5b50610363610ab0565b6040516103239190613558565b34801561037c57600080fd5b5061039061038b36600461356b565b610b42565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610323565b3480156103c157600080fd5b5061034c6103d03660046135a8565b610c04565b3480156103e157600080fd5b5061034c6103f0366004613695565b610d91565b34801561040157600080fd5b5061034c61041036600461356b565b610e56565b34801561042157600080fd5b506000545b604051908152602001610323565b34801561044057600080fd5b506016546103909073ffffffffffffffffffffffffffffffffffffffff1681565b34801561046d57600080fd5b5061034c61047c3660046136de565b6110a8565b34801561048d57600080fd5b5060135461031790610100900460ff1681565b3480156104ac57600080fd5b506104266104bb3660046135a8565b6110b3565b3480156104cc57600080fd5b5061034c6112b5565b3480156104e157600080fd5b5061034c6104f03660046136de565b6114e0565b34801561050157600080fd5b5061042660125481565b34801561051757600080fd5b5061042660105481565b34801561052d57600080fd5b5061042661053c36600461356b565b6114fb565b34801561054d57600080fd5b50610426600f5481565b34801561056357600080fd5b50610426600d5481565b34801561057957600080fd5b506013546103179062010000900460ff1681565b34801561059957600080fd5b5061034c6105a836600461356b565b611591565b3480156105b957600080fd5b506103906105c836600461356b565b61161c565b3480156105d957600080fd5b5061042661162e565b3480156105ee57600080fd5b50610426600c5481565b34801561060457600080fd5b5061042661061336600461371a565b611645565b34801561062457600080fd5b5061034c611725565b34801561063957600080fd5b5061034c6106483660046135a8565b6117b2565b34801561065957600080fd5b5061034c6118ec565b34801561066e57600080fd5b50600a5473ffffffffffffffffffffffffffffffffffffffff16610390565b34801561069957600080fd5b506106ad6106a836600461356b565b611a0d565b60408051825173ffffffffffffffffffffffffffffffffffffffff16815260209283015167ffffffffffffffff169281019290925201610323565b3480156106f457600080fd5b50610363611a2a565b34801561070957600080fd5b5061034c610718366004613743565b611a39565b61034c61072b36600461356b565b611b18565b34801561073c57600080fd5b5061034c61074b36600461377c565b611bf4565b34801561075c57600080fd5b5061034c61076b366004613798565b611d0a565b34801561077c57600080fd5b5061036361078b36600461356b565b611db3565b34801561079c57600080fd5b506013546103179060ff1681565b3480156107b657600080fd5b5061034c6107c5366004613860565b611f0c565b3480156107d657600080fd5b5061042660095481565b3480156107ec57600080fd5b506108176107fb36600461371a565b6017602052600090815260409020805460019091015460ff1682565b60408051928352901515602083015201610323565b34801561083857600080fd5b5061042661084736600461371a565b612045565b34801561085857600080fd5b50610426600e5481565b34801561086e57600080fd5b5061031761087d3660046138cc565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260086020908152604080832093909416825291909152205460ff1690565b3480156108c457600080fd5b5061034c6108d336600461371a565b612050565b3480156108e457600080fd5b5061042660115481565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061098157507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806109cd57507fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d6300000000000000000000000000000000000000000000000000000000145b80610a1957507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b600a5473ffffffffffffffffffffffffffffffffffffffff163314610aa5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600c91909155600d55565b606060038054610abf906138ff565b80601f0160208091040260200160405190810160405280929190818152602001828054610aeb906138ff565b8015610b385780601f10610b0d57610100808354040283529160200191610b38565b820191906000526020600020905b815481529060010190602001808311610b1b57829003601f168201915b5050505050905090565b6000610b4f826000541190565b610bdb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201527f78697374656e7420746f6b656e000000000000000000000000000000000000006064820152608401610a9c565b5060009081526007602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b6000610c0f8261161c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ccc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201527f65720000000000000000000000000000000000000000000000000000000000006064820152608401610a9c565b3373ffffffffffffffffffffffffffffffffffffffff82161480610cf55750610cf5813361087d565b610d81576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610a9c565b610d8c83838361217d565b505050565b600a5473ffffffffffffffffffffffffffffffffffffffff163314610e12576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9c565b8051610e259060159060208401906133e5565b5050601380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ffff1662010000179055565b323314610ebf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610a9c565b60135460ff16610ece57600080fd5b601154600e54610ede9190613981565b81601054610eec9190613998565b1115610ef757600080fd5b600f54811115610f0657600080fd5b80600d54610f1491906139b0565b6016546040517f70a0823100000000000000000000000000000000000000000000000000000000815233600482015273ffffffffffffffffffffffffffffffffffffffff909116906370a0823190602401602060405180830381865afa158015610f82573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fa691906139ed565b1015610fb157600080fd5b601654600d5473ffffffffffffffffffffffffffffffffffffffff909116906323b872dd9033903090610fe59086906139b0565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b16815273ffffffffffffffffffffffffffffffffffffffff938416600482015292909116602483015260448201526064016020604051808303816000875af115801561105e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110829190613a06565b5080601060008282546110959190613998565b909155506110a5905033826121fe565b50565b610d8c83838361221c565b60006110be83611645565b821061114c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60448201527f64730000000000000000000000000000000000000000000000000000000000006064820152608401610a9c565b600080549080805b8381101561122c5760008181526005602090815260409182902082518084019093525473ffffffffffffffffffffffffffffffffffffffff81168084527401000000000000000000000000000000000000000090910467ffffffffffffffff1691830191909152156111c557805192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036112195786840361120b57509350610a1992505050565b8361121581613a23565b9450505b508061122481613a23565b915050611154565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e6465780000000000000000000000000000000000006064820152608401610a9c565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9c565b600a5460405173ffffffffffffffffffffffffffffffffffffffff909116904780156108fc02916000818181858888f1935050505015801561137c573d6000803e3d6000fd5b5060165473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6113ba600a5473ffffffffffffffffffffffffffffffffffffffff1690565b6016546040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015273ffffffffffffffffffffffffffffffffffffffff909116906370a0823190602401602060405180830381865afa158015611428573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061144c91906139ed565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff909216600483015260248201526044016020604051808303816000875af11580156114bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110a59190613a06565b610d8c83838360405180602001604052806000815250611d0a565b60008054821061158d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560448201527f6e647300000000000000000000000000000000000000000000000000000000006064820152608401610a9c565b5090565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611612576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9c565b600e819055600155565b600061162782612742565b5192915050565b60006012546011546116409190613981565b905090565b600073ffffffffffffffffffffffffffffffffffffffff82166116ea576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201527f65726f20616464726573730000000000000000000000000000000000000000006064820152608401610a9c565b5073ffffffffffffffffffffffffffffffffffffffff166000908152600660205260409020546fffffffffffffffffffffffffffffffff1690565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146117a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9c565b6117b06000612924565b565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611833576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9c565b60006012546011546118459190613981565b90508082111561185457600080fd5b6000600f54836118649190613a8a565b90506000600f54846118769190613a9e565b905060005b828110156118bc57600f54601060008282546118979190613998565b925050819055506118aa86600f546121fe565b806118b481613a23565b91505061187b565b5080156118e55780601060008282546118d59190613998565b909155506118e5905085826121fe565b5050505050565b6011543360009081526017602052604090205460125461190c9190613998565b111580156119385750600e54336000908152601760205260409020546010546119359190613998565b11155b61194157600080fd5b3360009081526017602052604090206001015460ff161561196157600080fd5b601354610100900460ff1661197557600080fd5b336000908152601760205260408120600181810180547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690911790555460108054919290916119c6908490613998565b90915550503360009081526017602052604081205460128054919290916119ee908490613998565b9091555050336000818152601760205260409020546117b091906121fe565b6040805180820190915260008082526020820152610a1982612742565b606060048054610abf906138ff565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611aba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9c565b601380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff000016610100931515939093027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001692909217901515179055565b323314611b81576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e747261637400006044820152606401610a9c565b60135460ff16611b9057600080fd5b601154600e54611ba09190613981565b81601054611bae9190613998565b1115611bb957600080fd5b600f54811115611bc857600080fd5b80600c54611bd691906139b0565b341015611be257600080fd5b80601060008282546110959190613998565b3373ffffffffffffffffffffffffffffffffffffffff831603611c73576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610a9c565b33600081815260086020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611d1584848461221c565b611d218484848461299b565b611dad576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610a9c565b50505050565b6060611dc0826000541190565b611e4c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360448201527f74656e7420746f6b656e000000000000000000000000000000000000000000006064820152608401610a9c565b60135462010000900460ff16611ebb576000611e6783612b8f565b6014604051602001611e7a929190613ab2565b6040516020818303038152906040529050611e9481612cc4565b604051602001611ea49190613ce2565b604051602081830303815290604052915050919050565b6000611ec5612e9e565b90506000815111611ee55760405180602001604052806000815250611f00565b80611eef84612b8f565b604051602001611ea4929190613d27565b9392505050565b919050565b600a5473ffffffffffffffffffffffffffffffffffffffff163314611f8d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9c565b60005b838110156118e557828282818110611faa57611faa613d56565b9050602002013560176000878785818110611fc757611fc7613d56565b9050602002016020810190611fdc919061371a565b73ffffffffffffffffffffffffffffffffffffffff16815260208101919091526040016000205582828281811061201557612015613d56565b905060200201356011600082825461202d9190613998565b9091555081905061203d81613a23565b915050611f90565b6000610a1982612ead565b600a5473ffffffffffffffffffffffffffffffffffffffff1633146120d1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9c565b73ffffffffffffffffffffffffffffffffffffffff8116612174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a9c565b6110a581612924565b60008281526007602052604080822080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff87811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b612218828260405180602001604052806000815250612fa1565b5050565b600061222782612742565b805190915060009073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061228557503361226d84610b42565b73ffffffffffffffffffffffffffffffffffffffff16145b8061229757508151612297903361087d565b905080612326576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610a9c565b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff16146123e5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f727265637460448201527f206f776e657200000000000000000000000000000000000000000000000000006064820152608401610a9c565b73ffffffffffffffffffffffffffffffffffffffff8416612488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610a9c565b612498600084846000015161217d565b73ffffffffffffffffffffffffffffffffffffffff851660009081526006602052604081208054600192906124e09084906fffffffffffffffffffffffffffffffff16613d85565b82546101009290920a6fffffffffffffffffffffffffffffffff81810219909316918316021790915573ffffffffffffffffffffffffffffffffffffffff86166000908152600660205260408120805460019450909261254291859116613db6565b82546fffffffffffffffffffffffffffffffff9182166101009390930a92830291909202199091161790555060408051808201825273ffffffffffffffffffffffffffffffffffffffff808716825267ffffffffffffffff42811660208085019182526000898152600590915294852093518454915190921674010000000000000000000000000000000000000000027fffffffff000000000000000000000000000000000000000000000000000000009091169190921617179055612609846001613998565b60008181526005602052604090205490915073ffffffffffffffffffffffffffffffffffffffff166126de57612640816000541190565b156126de57604080518082018252845173ffffffffffffffffffffffffffffffffffffffff908116825260208087015167ffffffffffffffff908116828501908152600087815260059093529490912092518354945190911674010000000000000000000000000000000000000000027fffffffff000000000000000000000000000000000000000000000000000000009094169116179190911790555b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6040805180820190915260008082526020820152612761826000541190565b6127ed576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360448201527f74656e7420746f6b656e000000000000000000000000000000000000000000006064820152608401610a9c565b60006002548310612813576002546128059084613981565b612810906001613998565b90505b825b81811061289b5760008181526005602090815260409182902082518084019093525473ffffffffffffffffffffffffffffffffffffffff81168084527401000000000000000000000000000000000000000090910467ffffffffffffffff16918301919091521561288857949350505050565b508061289381613de1565b915050612815565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201527f206f776e6572206f6620746f6b656e00000000000000000000000000000000006064820152608401610a9c565b600a805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600073ffffffffffffffffffffffffffffffffffffffff84163b15612b83576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a0290612a12903390899088908890600401613e16565b6020604051808303816000875af1925050508015612a6b575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0168201909252612a6891810190613e5f565b60015b612b38573d808015612a99576040519150601f19603f3d011682016040523d82523d6000602084013e612a9e565b606091505b508051600003612b30576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610a9c565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050612b87565b5060015b949350505050565b606081600003612bd257505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612bfc5780612be681613a23565b9150612bf59050600a83613a8a565b9150612bd6565b60008167ffffffffffffffff811115612c1757612c176135d2565b6040519080825280601f01601f191660200182016040528015612c41576020820181803683370190505b5090505b8415612b8757612c56600183613981565b9150612c63600a86613a9e565b612c6e906030613998565b60f81b818381518110612c8357612c83613d56565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612cbd600a86613a8a565b9450612c45565b60608151600003612ce357505060408051602081019091526000815290565b6000604051806060016040528060408152602001613e7d6040913990506000600384516002612d129190613998565b612d1c9190613a8a565b612d279060046139b0565b90506000612d36826020613998565b67ffffffffffffffff811115612d4e57612d4e6135d2565b6040519080825280601f01601f191660200182016040528015612d78576020820181803683370190505b509050818152600183018586518101602084015b81831015612de65760039283018051603f601282901c811687015160f890811b8552600c83901c8216880151811b6001860152600683901c8216880151811b60028601529116860151901b93820193909352600401612d8c565b600389510660018114612e005760028114612e4a57612e90565b7f3d3d0000000000000000000000000000000000000000000000000000000000007ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe830152612e90565b7f3d000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8301525b509398975050505050505050565b606060158054610abf906138ff565b600073ffffffffffffffffffffffffffffffffffffffff8216612f52576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527f20746865207a65726f20616464726573730000000000000000000000000000006064820152608401610a9c565b5073ffffffffffffffffffffffffffffffffffffffff1660009081526006602052604090205470010000000000000000000000000000000090046fffffffffffffffffffffffffffffffff1690565b60005473ffffffffffffffffffffffffffffffffffffffff8416613047576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610a9c565b613052816000541190565b156130b9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610a9c565b60025483111561314b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960448201527f67680000000000000000000000000000000000000000000000000000000000006064820152608401610a9c565b73ffffffffffffffffffffffffffffffffffffffff84166000908152600660209081526040918290208251808401845290546fffffffffffffffffffffffffffffffff808216835270010000000000000000000000000000000090910416918101919091528151808301909252805190919081906131ca908790613db6565b6fffffffffffffffffffffffffffffffff1681526020018583602001516131f19190613db6565b6fffffffffffffffffffffffffffffffff90811690915273ffffffffffffffffffffffffffffffffffffffff808816600081815260066020908152604080832087519783015187167001000000000000000000000000000000000297909616969096179094558451808601865291825267ffffffffffffffff428116838601908152888352600590955294812091518254945190951674010000000000000000000000000000000000000000027fffffffff0000000000000000000000000000000000000000000000000000000090941694909216939093179190911790915582905b858110156133da57604051829073ffffffffffffffffffffffffffffffffffffffff8916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461332e600088848861299b565b6133ba576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527f6563656976657220696d706c656d656e746572000000000000000000000000006064820152608401610a9c565b816133c481613a23565b92505080806133d290613a23565b9150506132d4565b50600081905561273a565b8280546133f1906138ff565b90600052602060002090601f0160209004810192826134135760008555613459565b82601f1061342c57805160ff1916838001178555613459565b82800160010185558215613459579182015b8281111561345957825182559160200191906001019061343e565b5061158d9291505b8082111561158d5760008155600101613461565b7fffffffff00000000000000000000000000000000000000000000000000000000811681146110a557600080fd5b6000602082840312156134b557600080fd5b8135611f0081613475565b600080604083850312156134d357600080fd5b50508035926020909101359150565b60005b838110156134fd5781810151838201526020016134e5565b83811115611dad5750506000910152565b600081518084526135268160208601602086016134e2565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000611f00602083018461350e565b60006020828403121561357d57600080fd5b5035919050565b803573ffffffffffffffffffffffffffffffffffffffff81168114611f0757600080fd5b600080604083850312156135bb57600080fd5b6135c483613584565b946020939093013593505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff8084111561361c5761361c6135d2565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715613662576136626135d2565b8160405280935085815286868601111561367b57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156136a757600080fd5b813567ffffffffffffffff8111156136be57600080fd5b8201601f810184136136cf57600080fd5b612b8784823560208401613601565b6000806000606084860312156136f357600080fd5b6136fc84613584565b925061370a60208501613584565b9150604084013590509250925092565b60006020828403121561372c57600080fd5b611f0082613584565b80151581146110a557600080fd5b6000806040838503121561375657600080fd5b823561376181613735565b9150602083013561377181613735565b809150509250929050565b6000806040838503121561378f57600080fd5b61376183613584565b600080600080608085870312156137ae57600080fd5b6137b785613584565b93506137c560208601613584565b925060408501359150606085013567ffffffffffffffff8111156137e857600080fd5b8501601f810187136137f957600080fd5b61380887823560208401613601565b91505092959194509250565b60008083601f84011261382657600080fd5b50813567ffffffffffffffff81111561383e57600080fd5b6020830191508360208260051b850101111561385957600080fd5b9250929050565b6000806000806040858703121561387657600080fd5b843567ffffffffffffffff8082111561388e57600080fd5b61389a88838901613814565b909650945060208701359150808211156138b357600080fd5b506138c087828801613814565b95989497509550505050565b600080604083850312156138df57600080fd5b6138e883613584565b91506138f660208401613584565b90509250929050565b600181811c9082168061391357607f821691505b60208210810361394c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008282101561399357613993613952565b500390565b600082198211156139ab576139ab613952565b500190565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139e8576139e8613952565b500290565b6000602082840312156139ff57600080fd5b5051919050565b600060208284031215613a1857600080fd5b8151611f0081613735565b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613a5457613a54613952565b5060010190565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600082613a9957613a99613a5b565b500490565b600082613aad57613aad613a5b565b500690565b7f7b226e616d65223a2022417065204c616e6465722023000000000000000000008152600083516020613aeb82601686018389016134e2565b7f222c20226465736372697074696f6e223a20223639363920417065204c616e646016928501928301527f657273206c6976696e67206f6e2074686520457468657265756d20426c6f636b60368301527f20436861696e222c2022696d616765223a20220000000000000000000000000060568301528454606990600090600181811c9080831680613b7e57607f831692505b8683108103613bb4577f4e487b710000000000000000000000000000000000000000000000000000000085526022600452602485fd5b808015613bc85760018114613bfb57613c2c565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008516878a015286848a01019550613c2c565b60008c81526020902060005b85811015613c225781548b82018a0152908401908901613c07565b505086848a010195505b5050505050613cd6613c61827f222c000000000000000000000000000000000000000000000000000000000000815260020190565b7f2261747472696275746573223a205b7b2274726169745f74797065223a22756e81527f72657665616c6564222c2276616c7565223a20224170656c616e646572227d5d60208201527f7d00000000000000000000000000000000000000000000000000000000000000604082015260410190565b98975050505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251613d1a81601d8501602087016134e2565b91909101601d0192915050565b60008351613d398184602088016134e2565b835190830190613d4d8183602088016134e2565b01949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006fffffffffffffffffffffffffffffffff83811690831681811015613dae57613dae613952565b039392505050565b60006fffffffffffffffffffffffffffffffff808316818516808303821115613d4d57613d4d613952565b600081613df057613df0613952565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0190565b600073ffffffffffffffffffffffffffffffffffffffff808716835280861660208401525083604083015260806060830152613e55608083018461350e565b9695505050505050565b600060208284031215613e7157600080fd5b8151611f008161347556fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220c0e26196a860c40eb6a0c68ee629522445555bad3b494ebe1f1610237666320764736f6c634300080d0033

Deployed Bytecode Sourcemap

42591:7290:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27720:370;;;;;;;;;;-1:-1:-1;27720:370:0;;;;;:::i;:::-;;:::i;:::-;;;611:14:1;;604:22;586:41;;574:2;559:18;27720:370:0;;;;;;;;46294:163;;;;;;;;;;-1:-1:-1;46294:163:0;;;;;:::i;:::-;;:::i;:::-;;29446:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30971:204::-;;;;;;;;;;-1:-1:-1;30971:204:0;;;;;:::i;:::-;;:::i;:::-;;;2062:42:1;2050:55;;;2032:74;;2020:2;2005:18;30971:204:0;1886:226:1;30534:379:0;;;;;;;;;;-1:-1:-1;30534:379:0;;;;;:::i;:::-;;:::i;43818:120::-;;;;;;;;;;-1:-1:-1;43818:120:0;;;;;:::i;:::-;;:::i;44727:387::-;;;;;;;;;;-1:-1:-1;44727:387:0;;;;;:::i;:::-;;:::i;26281:94::-;;;;;;;;;;-1:-1:-1;26334:7:0;26357:12;26281:94;;;4064:25:1;;;4052:2;4037:18;26281:94:0;3918:177:1;43266:70:0;;;;;;;;;;-1:-1:-1;43266:70:0;;;;;;;;31821:142;;;;;;;;;;-1:-1:-1;31821:142:0;;;;;:::i;:::-;;:::i;42981:24::-;;;;;;;;;;-1:-1:-1;42981:24:0;;;;;;;;;;;26912:744;;;;;;;;;;-1:-1:-1;26912:744:0;;;;;:::i;:::-;;:::i;45946:168::-;;;;;;;;;;;;;:::i;32026:157::-;;;;;;;;;;-1:-1:-1;32026:157:0;;;;;:::i;:::-;;:::i;42910:28::-;;;;;;;;;;;;;;;;42852:21;;;;;;;;;;;;;;;;26444:177;;;;;;;;;;-1:-1:-1;26444:177:0;;;;;:::i;:::-;;:::i;42814:31::-;;;;;;;;;;;;;;;;42729:40;;;;;;;;;;;;;;;;43012:20;;;;;;;;;;-1:-1:-1;43012:20:0;;;;;;;;;;;46465:150;;;;;;;;;;-1:-1:-1;46465:150:0;;;;;:::i;:::-;;:::i;29269:118::-;;;;;;;;;;-1:-1:-1;29269:118:0;;;;;:::i;:::-;;:::i;45839:99::-;;;;;;;;;;;;;:::i;42686:36::-;;;;;;;;;;;;;;;;28146:211;;;;;;;;;;-1:-1:-1;28146:211:0;;;;;:::i;:::-;;:::i;11783:94::-;;;;;;;;;;;;;:::i;43946:469::-;;;;;;;;;;-1:-1:-1;43946:469:0;;;;;:::i;:::-;;:::i;45122:441::-;;;;;;;;;;;;;:::i;11132:87::-;;;;;;;;;;-1:-1:-1;11205:6:0;;;;11132:87;;46742:135;;;;;;;;;;-1:-1:-1;46742:135:0;;;;;:::i;:::-;;:::i;:::-;;;;5100:13:1;;5115:42;5096:62;5078:81;;5219:4;5207:17;;;5201:24;5227:18;5197:49;5175:20;;;5168:79;;;;5051:18;46742:135:0;4870:383:1;29601:98:0;;;;;;;;;;;;;:::i;46122:164::-;;;;;;;;;;-1:-1:-1;46122:164:0;;;;;:::i;:::-;;:::i;44423:296::-;;;;;;:::i;:::-;;:::i;31239:274::-;;;;;;;;;;-1:-1:-1;31239:274:0;;;;;:::i;:::-;;:::i;32246:311::-;;;;;;;;;;-1:-1:-1;32246:311:0;;;;;:::i;:::-;;:::i;46884:796::-;;;;;;;;;;-1:-1:-1;46884:796:0;;;;;:::i;:::-;;:::i;42951:23::-;;;;;;;;;;-1:-1:-1;42951:23:0;;;;;;;;45571:260;;;;;;;;;;-1:-1:-1;45571:260:0;;;;;:::i;:::-;;:::i;36661:43::-;;;;;;;;;;;;;;;;43424:45;;;;;;;;;;-1:-1:-1;43424:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;8072:25:1;;;8140:14;;8133:22;8128:2;8113:18;;8106:50;8045:18;43424:45:0;7904:258:1;46621:113:0;;;;;;;;;;-1:-1:-1;46621:113:0;;;;;:::i;:::-;;:::i;42776:31::-;;;;;;;;;;;;;;;;31576:186;;;;;;;;;;-1:-1:-1;31576:186:0;;;;;:::i;:::-;31721:25;;;;31698:4;31721:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31576:186;12032:192;;;;;;;;;;-1:-1:-1;12032:192:0;;;;;:::i;:::-;;:::i;42880:23::-;;;;;;;;;;;;;;;;27720:370;27847:4;27877:40;;;27892:25;27877:40;;:99;;-1:-1:-1;27928:48:0;;;27943:33;27928:48;27877:99;:160;;;-1:-1:-1;27987:50:0;;;28002:35;27987:50;27877:160;:207;;;-1:-1:-1;9429:25:0;9414:40;;;;28048:36;27863:221;27720:370;-1:-1:-1;;27720:370:0:o;46294:163::-;11205:6;;11352:23;11205:6;10088:10;11352:23;11344:68;;;;;;;8634:2:1;11344:68:0;;;8616:21:1;;;8653:18;;;8646:30;8712:34;8692:18;;;8685:62;8764:18;;11344:68:0;;;;;;;;;46388:9:::1;:22:::0;;;;46421:12:::1;:28:::0;46294:163::o;29446:94::-;29500:13;29529:5;29522:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29446:94;:::o;30971:204::-;31039:7;31063:16;31071:7;32853:4;32883:12;-1:-1:-1;32873:22:0;32796:105;31063:16;31055:74;;;;;;;9437:2:1;31055:74:0;;;9419:21:1;9476:2;9456:18;;;9449:30;9515:34;9495:18;;;9488:62;9586:15;9566:18;;;9559:43;9619:19;;31055:74:0;9235:409:1;31055:74:0;-1:-1:-1;31145:24:0;;;;:15;:24;;;;;;;;;30971:204::o;30534:379::-;30603:13;30619:24;30635:7;30619:15;:24::i;:::-;30603:40;;30664:5;30658:11;;:2;:11;;;30650:58;;;;;;;9851:2:1;30650:58:0;;;9833:21:1;9890:2;9870:18;;;9863:30;9929:34;9909:18;;;9902:62;10000:4;9980:18;;;9973:32;10022:19;;30650:58:0;9649:398:1;30650:58:0;10088:10;30733:21;;;;;:62;;-1:-1:-1;30758:37:0;30775:5;10088:10;31576:186;:::i;30758:37::-;30717:153;;;;;;;10254:2:1;30717:153:0;;;10236:21:1;10293:2;10273:18;;;10266:30;10332:34;10312:18;;;10305:62;10403:27;10383:18;;;10376:55;10448:19;;30717:153:0;10052:421:1;30717:153:0;30879:28;30888:2;30892:7;30901:5;30879:8;:28::i;:::-;30596:317;30534:379;;:::o;43818:120::-;11205:6;;11352:23;11205:6;10088:10;11352:23;11344:68;;;;;;;8634:2:1;11344:68:0;;;8616:21:1;;;8653:18;;;8646:30;8712:34;8692:18;;;8685:62;8764:18;;11344:68:0;8432:356:1;11344:68:0;43888:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;;43915:8:0::1;:15:::0;;;::::1;::::0;::::1;::::0;;43818:120::o;44727:387::-;43618:9;43631:10;43618:23;43610:66;;;;;;;10680:2:1;43610:66:0;;;10662:21:1;10719:2;10699:18;;;10692:30;10758:32;10738:18;;;10731:60;10808:18;;43610:66:0;10478:354:1;43610:66:0;44798:11:::1;::::0;::::1;;44790:20;;;::::0;::::1;;44859:8;;44847:9;;:20;;;;:::i;:::-;44835:6;44826;;:15;;;;:::i;:::-;:42;;44818:51;;;::::0;::::1;;44895:10;;44885:6;:20;;44877:29;;;::::0;::::1;;44966:6;44951:12;;:21;;;;:::i;:::-;44922:3;::::0;:25:::1;::::0;;;;44936:10:::1;44922:25;::::0;::::1;2032:74:1::0;44922:3:0::1;::::0;;::::1;::::0;:13:::1;::::0;2005:18:1;;44922:25:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:50;;44914:59;;;::::0;::::1;;44982:3;::::0;45024:12:::1;::::0;44982:3:::1;::::0;;::::1;::::0;:16:::1;::::0;44999:10:::1;::::0;45018:4:::1;::::0;45024:21:::1;::::0;45039:6;;45024:21:::1;:::i;:::-;44982:64;::::0;;::::1;::::0;;;;;;11923:42:1;11992:15;;;44982:64:0::1;::::0;::::1;11974:34:1::0;12044:15;;;;12024:18;;;12017:43;12076:18;;;12069:34;11886:18;;44982:64:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;45064:6;45054;;:16;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;45078:28:0::1;::::0;-1:-1:-1;45088:10:0::1;45099:6:::0;45078:9:::1;:28::i;:::-;44727:387:::0;:::o;31821:142::-;31929:28;31939:4;31945:2;31949:7;31929:9;:28::i;26912:744::-;27021:7;27056:16;27066:5;27056:9;:16::i;:::-;27048:5;:24;27040:71;;;;;;;12566:2:1;27040:71:0;;;12548:21:1;12605:2;12585:18;;;12578:30;12644:34;12624:18;;;12617:62;12715:4;12695:18;;;12688:32;12737:19;;27040:71:0;12364:398:1;27040:71:0;27118:22;26357:12;;;27118:22;;27238:350;27262:14;27258:1;:18;27238:350;;;27292:31;27326:14;;;:11;:14;;;;;;;;;27292:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;27353:28;27349:89;;27414:14;;;-1:-1:-1;27349:89:0;27471:5;27450:26;;:17;:26;;;27446:135;;27508:5;27493:11;:20;27489:59;;-1:-1:-1;27535:1:0;-1:-1:-1;27528:8:0;;-1:-1:-1;;;27528:8:0;27489:59;27558:13;;;;:::i;:::-;;;;27446:135;-1:-1:-1;27278:3:0;;;;:::i;:::-;;;;27238:350;;;-1:-1:-1;27594:56:0;;;;;13169:2:1;27594:56:0;;;13151:21:1;13208:2;13188:18;;;13181:30;13247:34;13227:18;;;13220:62;13318:16;13298:18;;;13291:44;13352:19;;27594:56:0;12967:410:1;45946:168:0;11205:6;;11352:23;11205:6;10088:10;11352:23;11344:68;;;;;;;8634:2:1;11344:68:0;;;8616:21:1;;;8653:18;;;8646:30;8712:34;8692:18;;;8685:62;8764:18;;11344:68:0;8432:356:1;11344:68:0;11205:6;;45996:48:::1;::::0;11205:6;;;;;46022:21:::1;45996:48:::0;::::1;;;::::0;::::1;::::0;;;46022:21;11205:6;45996:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;46055:3:0::1;::::0;::::1;;:12;46068:7;11205:6:::0;;;;;11132:87;46068:7:::1;46077:3;::::0;:28:::1;::::0;;;;46099:4:::1;46077:28;::::0;::::1;2032:74:1::0;46077:3:0::1;::::0;;::::1;::::0;:13:::1;::::0;2005:18:1;;46077:28:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46055:51;::::0;;::::1;::::0;;;;;;13586:42:1;13574:55;;;46055:51:0::1;::::0;::::1;13556:74:1::0;13646:18;;;13639:34;13529:18;;46055:51:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;32026:157::-:0;32138:39;32155:4;32161:2;32165:7;32138:39;;;;;;;;;;;;:16;:39::i;26444:177::-;26511:7;26357:12;;26535:5;:21;26527:69;;;;;;;13886:2:1;26527:69:0;;;13868:21:1;13925:2;13905:18;;;13898:30;13964:34;13944:18;;;13937:62;14035:5;14015:18;;;14008:33;14058:19;;26527:69:0;13684:399:1;26527:69:0;-1:-1:-1;26610:5:0;26444:177::o;46465:150::-;11205:6;;11352:23;11205:6;10088:10;11352:23;11344:68;;;;;;;8634:2:1;11344:68:0;;;8616:21:1;;;8653:18;;;8646:30;8712:34;8692:18;;;8685:62;8764:18;;11344:68:0;8432:356:1;11344:68:0;46547:9:::1;:22:::0;;;46580:14:::1;:27:::0;46465:150::o;29269:118::-;29333:7;29356:20;29368:7;29356:11;:20::i;:::-;:25;;29269:118;-1:-1:-1;;29269:118:0:o;45839:99::-;45882:7;45917:13;;45906:8;;:24;;;;:::i;:::-;45899:31;;45839:99;:::o;28146:211::-;28210:7;28234:19;;;28226:75;;;;;;;14290:2:1;28226:75:0;;;14272:21:1;14329:2;14309:18;;;14302:30;14368:34;14348:18;;;14341:62;14439:13;14419:18;;;14412:41;14470:19;;28226:75:0;14088:407:1;28226:75:0;-1:-1:-1;28323:19:0;;;;;;:12;:19;;;;;:27;;;;28146:211::o;11783:94::-;11205:6;;11352:23;11205:6;10088:10;11352:23;11344:68;;;;;;;8634:2:1;11344:68:0;;;8616:21:1;;;8653:18;;;8646:30;8712:34;8692:18;;;8685:62;8764:18;;11344:68:0;8432:356:1;11344:68:0;11848:21:::1;11866:1;11848:9;:21::i;:::-;11783:94::o:0;43946:469::-;11205:6;;11352:23;11205:6;10088:10;11352:23;11344:68;;;;;;;8634:2:1;11344:68:0;;;8616:21:1;;;8653:18;;;8646:30;8712:34;8692:18;;;8685:62;8764:18;;11344:68:0;8432:356:1;11344:68:0;44031:17:::1;44062:13;;44051:8;;:24;;;;:::i;:::-;44031:44;;44102:9;44092:6;:19;;44084:28;;;::::0;::::1;;44121:16;44147:10;;44140:6;:17;;;;:::i;:::-;44121:36;;44166:13;44189:10;;44182:6;:17;;;;:::i;:::-;44166:33;;44212:9;44208:114;44231:8;44227:1;:12;44208:114;;;44265:10;;44255:6;;:20;;;;;;;:::i;:::-;;;;;;;;44286:26;44296:4;44301:10;;44286:9;:26::i;:::-;44240:3:::0;::::1;::::0;::::1;:::i;:::-;;;;44208:114;;;-1:-1:-1::0;44333:8:0;;44330:80:::1;;44362:5;44353:6;;:14;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;44379:21:0::1;::::0;-1:-1:-1;44389:4:0;44394:5;44379:9:::1;:21::i;:::-;44022:393;;;43946:469:::0;;:::o;45122:441::-;45221:8;;45199:10;45190:20;;;;:8;:20;;;;;:27;45174:13;;:43;;45190:27;45174:43;:::i;:::-;:55;;45173:112;;;;-1:-1:-1;45275:9:0;;45254:10;45245:20;;;;:8;:20;;;;;:27;45236:6;;:36;;45245:27;45236:36;:::i;:::-;:48;;45173:112;45165:121;;;;;;45312:10;45303:20;;;;:8;:20;;;;;:25;;;;;45302:26;45294:35;;;;;;45346:12;;;;;;;45338:21;;;;;;45376:10;45367:20;;;;:8;:20;;;;;45395:4;45367:25;;;:32;;;;;;;;;45417:27;45407:6;:37;;45417:27;;45407:6;;:37;;45417:27;;45407:37;:::i;:::-;;;;-1:-1:-1;;45478:10:0;45469:20;;;;:8;:20;;;;;:27;45453:13;:43;;45469:27;;45453:13;;:43;;45469:27;;45453:43;:::i;:::-;;;;-1:-1:-1;;45514:10:0;45525:20;;;;:8;:20;;;;;:27;45504:49;;45514:10;45504:9;:49::i;46742:135::-;-1:-1:-1;;;;;;;;;;;;;;;;;46849:20:0;46861:7;46849:11;:20::i;29601:98::-;29657:13;29686:7;29679:14;;;;;:::i;46122:164::-;11205:6;;11352:23;11205:6;10088:10;11352:23;11344:68;;;;;;;8634:2:1;11344:68:0;;;8616:21:1;;;8653:18;;;8646:30;8712:34;8692:18;;;8685:62;8764:18;;11344:68:0;8432:356:1;11344:68:0;46214:12:::1;:28:::0;;46252:26;;46214:28:::1;::::0;::::1;;::::0;;;::::1;46252:26:::0;;;;;;;::::1;;;::::0;;46122:164::o;44423:296::-;43618:9;43631:10;43618:23;43610:66;;;;;;;10680:2:1;43610:66:0;;;10662:21:1;10719:2;10699:18;;;10692:30;10758:32;10738:18;;;10731:60;10808:18;;43610:66:0;10478:354:1;43610:66:0;44495:11:::1;::::0;::::1;;44487:20;;;::::0;::::1;;44556:8;;44544:9;;:20;;;;:::i;:::-;44532:6;44523;;:15;;;;:::i;:::-;:42;;44515:51;;;::::0;::::1;;44592:10;;44582:6;:20;;44574:29;;;::::0;::::1;;44644:6;44632:9;;:18;;;;:::i;:::-;44619:9;:31;;44611:40;;;::::0;::::1;;44669:6;44659;;:16;;;;;;;:::i;31239:274::-:0;10088:10;31330:24;;;;31322:63;;;;;;;15133:2:1;31322:63:0;;;15115:21:1;15172:2;15152:18;;;15145:30;15211:28;15191:18;;;15184:56;15257:18;;31322:63:0;14931:350:1;31322:63:0;10088:10;31394:32;;;;:18;:32;;;;;;;;;:42;;;;;;;;;;;;:53;;;;;;;;;;;;;31459:48;;586:41:1;;;31394:42:0;;10088:10;31459:48;;559:18:1;31459:48:0;;;;;;;31239:274;;:::o;32246:311::-;32383:28;32393:4;32399:2;32403:7;32383:9;:28::i;:::-;32434:48;32457:4;32463:2;32467:7;32476:5;32434:22;:48::i;:::-;32418:133;;;;;;;15488:2:1;32418:133:0;;;15470:21:1;15527:2;15507:18;;;15500:30;15566:34;15546:18;;;15539:62;15637:21;15617:18;;;15610:49;15676:19;;32418:133:0;15286:415:1;32418:133:0;32246:311;;;;:::o;46884:796::-;46949:13;46980:16;46988:7;32853:4;32883:12;-1:-1:-1;32873:22:0;32796:105;46980:16;46972:71;;;;;;;15908:2:1;46972:71:0;;;15890:21:1;15947:2;15927:18;;;15920:30;15986:34;15966:18;;;15959:62;16057:12;16037:18;;;16030:40;16087:19;;46972:71:0;15706:406:1;46972:71:0;47056:8;;;;;;;47052:621;;47073:22;47154:18;:7;:16;:18::i;:::-;47273:10;47105:259;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47073:292;;47441:23;47454:8;47441:6;:23::i;:::-;47392:73;;;;;;;;:::i;:::-;;;;;;;;;;;;;47378:88;;;46884:796;;;:::o;47052:621::-;47496:21;47520:10;:8;:10::i;:::-;47496:34;;47583:1;47565:7;47559:21;:25;:104;;;;;;;;;;;;;;;;;47620:7;47629:18;:7;:16;:18::i;:::-;47603:45;;;;;;;;;:::i;47559:104::-;47545:118;46884:796;-1:-1:-1;;;46884:796:0:o;47052:621::-;46884:796;;;:::o;45571:260::-;11205:6;;11352:23;11205:6;10088:10;11352:23;11344:68;;;;;;;8634:2:1;11344:68:0;;;8616:21:1;;;8653:18;;;8646:30;8712:34;8692:18;;;8685:62;8764:18;;11344:68:0;8432:356:1;11344:68:0;45682:9:::1;45677:147;45697:17:::0;;::::1;45677:147;;;45765:7;;45773:1;45765:10;;;;;;;:::i;:::-;;;;;;;45736:8;:19;45745:6;;45752:1;45745:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;45736:19;;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;45736:19:0;:39;45802:7;;45810:1;45802:10;;::::1;;;;;:::i;:::-;;;;;;;45790:8;;:22;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;45716:3:0;;-1:-1:-1;45716:3:0::1;::::0;::::1;:::i;:::-;;;;45677:147;;46621:113:::0;46679:7;46706:20;46720:5;46706:13;:20::i;12032:192::-;11205:6;;11352:23;11205:6;10088:10;11352:23;11344:68;;;;;;;8634:2:1;11344:68:0;;;8616:21:1;;;8653:18;;;8646:30;8712:34;8692:18;;;8685:62;8764:18;;11344:68:0;8432:356:1;11344:68:0;12121:22:::1;::::0;::::1;12113:73;;;::::0;::::1;::::0;;20365:2:1;12113:73:0::1;::::0;::::1;20347:21:1::0;20404:2;20384:18;;;20377:30;20443:34;20423:18;;;20416:62;20514:8;20494:18;;;20487:36;20540:19;;12113:73:0::1;20163:402:1::0;12113:73:0::1;12197:19;12207:8;12197:9;:19::i;36483:172::-:0;36580:24;;;;:15;:24;;;;;;:29;;;;;;;;;;;;;;36621:28;;36580:24;;36621:28;;;;;;;36483:172;;;:::o;32907:98::-;32972:27;32982:2;32986:8;32972:27;;;;;;;;;;;;:9;:27::i;:::-;32907:98;;:::o;34848:1529::-;34945:35;34983:20;34995:7;34983:11;:20::i;:::-;35054:18;;34945:58;;-1:-1:-1;35012:22:0;;35038:34;;10088:10;35038:34;;;:81;;;-1:-1:-1;10088:10:0;35083:20;35095:7;35083:11;:20::i;:::-;:36;;;35038:81;:142;;;-1:-1:-1;35147:18:0;;35130:50;;10088:10;31576:186;:::i;35130:50::-;35012:169;;35206:17;35190:101;;;;;;;20772:2:1;35190:101:0;;;20754:21:1;20811:2;20791:18;;;20784:30;20850:34;20830:18;;;20823:62;20921:20;20901:18;;;20894:48;20959:19;;35190:101:0;20570:414:1;35190:101:0;35338:4;35316:26;;:13;:18;;;:26;;;35300:98;;;;;;;21191:2:1;35300:98:0;;;21173:21:1;21230:2;21210:18;;;21203:30;21269:34;21249:18;;;21242:62;21340:8;21320:18;;;21313:36;21366:19;;35300:98:0;20989:402:1;35300:98:0;35413:16;;;35405:66;;;;;;;21598:2:1;35405:66:0;;;21580:21:1;21637:2;21617:18;;;21610:30;21676:34;21656:18;;;21649:62;21747:7;21727:18;;;21720:35;21772:19;;35405:66:0;21396:401:1;35405:66:0;35580:49;35597:1;35601:7;35610:13;:18;;;35580:8;:49::i;:::-;35638:18;;;;;;;:12;:18;;;;;:31;;35668:1;;35638:18;:31;;35668:1;;35638:31;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;35676:16;;;-1:-1:-1;35676:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;35676:16:0;;:29;;-1:-1:-1;;35676:29:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35735:43:0;;;;;;;;;;;;;;;35761:15;35735:43;;;;;;;;;-1:-1:-1;35712:20:0;;;:11;:20;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;36028:11;35724:7;-1:-1:-1;36028:11:0;:::i;:::-;36091:1;36050:24;;;:11;:24;;;;;:29;36006:33;;-1:-1:-1;36050:43:0;:29;36046:236;;36108:20;36116:11;32853:4;32883:12;-1:-1:-1;32873:22:0;32796:105;36108:20;36104:171;;;36168:97;;;;;;;;36195:18;;36168:97;;;;;;;36226:28;;;;36168:97;;;;;;;;;;-1:-1:-1;36141:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;;;;;;;;;;;;;;;;36104:171;36314:7;36310:2;36295:27;;36304:4;36295:27;;;;;;;;;;;;36329:42;34938:1439;;;34848:1529;;;:::o;28609:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;28726:16:0;28734:7;32853:4;32883:12;-1:-1:-1;32873:22:0;32796:105;28726:16;28718:71;;;;;;;15908:2:1;28718:71:0;;;15890:21:1;15947:2;15927:18;;;15920:30;15986:34;15966:18;;;15959:62;16057:12;16037:18;;;16030:40;16087:19;;28718:71:0;15706:406:1;28718:71:0;28798:26;28846:12;;28835:7;:23;28831:93;;28900:12;;28890:22;;:7;:22;:::i;:::-;:26;;28915:1;28890:26;:::i;:::-;28869:47;;28831:93;28952:7;28932:212;28969:18;28961:4;:26;28932:212;;29006:31;29040:17;;;:11;:17;;;;;;;;;29006:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;29070:28;29066:71;;29118:9;28609:606;-1:-1:-1;;;;28609:606:0:o;29066:71::-;-1:-1:-1;28989:6:0;;;;:::i;:::-;;;;28932:212;;;-1:-1:-1;29152:57:0;;;;;22714:2:1;29152:57:0;;;22696:21:1;22753:2;22733:18;;;22726:30;22792:34;22772:18;;;22765:62;22863:17;22843:18;;;22836:45;22898:19;;29152:57:0;22512:411:1;12232:173:0;12307:6;;;;12324:17;;;;;;;;;;;12357:40;;12307:6;;;12324:17;12307:6;;12357:40;;12288:16;;12357:40;12277:128;12232:173;:::o;38198:690::-;38335:4;38352:13;;;1066:20;1114:8;38348:535;;38391:72;;;;;:36;;;;;;:72;;10088:10;;38442:4;;38448:7;;38457:5;;38391:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38391:72:0;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38378:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38622:6;:13;38639:1;38622:18;38618:215;;38655:61;;;;;15488:2:1;38655:61:0;;;15470:21:1;15527:2;15507:18;;;15500:30;15566:34;15546:18;;;15539:62;15637:21;15617:18;;;15610:49;15676:19;;38655:61:0;15286:415:1;38618:215:0;38801:6;38795:13;38786:6;38782:2;38778:15;38771:38;38378:464;38513:55;;38523:45;38513:55;;-1:-1:-1;38506:62:0;;38348:535;-1:-1:-1;38871:4:0;38348:535;38198:690;;;;;;:::o;15236:723::-;15292:13;15513:5;15522:1;15513:10;15509:53;;-1:-1:-1;;15540:10:0;;;;;;;;;;;;;;;;;;15236:723::o;15509:53::-;15587:5;15572:12;15628:78;15635:9;;15628:78;;15661:8;;;;:::i;:::-;;-1:-1:-1;15684:10:0;;-1:-1:-1;15692:2:0;15684:10;;:::i;:::-;;;15628:78;;;15716:19;15748:6;15738:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15738:17:0;;15716:39;;15766:154;15773:10;;15766:154;;15800:11;15810:1;15800:11;;:::i;:::-;;-1:-1:-1;15869:10:0;15877:2;15869:5;:10;:::i;:::-;15856:24;;:2;:24;:::i;:::-;15843:39;;15826:6;15833;15826:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;15897:11:0;15906:2;15897:11;;:::i;:::-;;;15766:154;;47843:2035;47901:13;47931:4;:11;47946:1;47931:16;47927:31;;-1:-1:-1;;47949:9:0;;;;;;;;;-1:-1:-1;47949:9:0;;;47843:2035::o;47927:31::-;48010:19;48032:5;;;;;;;;;;;;;;;;;48010:27;;48089:18;48135:1;48116:4;:11;48130:1;48116:15;;;;:::i;:::-;48115:21;;;;:::i;:::-;48110:27;;:1;:27;:::i;:::-;48089:48;-1:-1:-1;48220:20:0;48254:15;48089:48;48267:2;48254:15;:::i;:::-;48243:27;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48243:27:0;;48220:50;;48367:10;48359:6;48352:26;48474:1;48467:5;48463:13;48545:4;48596;48590:11;48581:7;48577:25;48704:2;48696:6;48692:15;48789:824;48808:6;48799:7;48796:19;48789:824;;;48875:1;48862:15;;;48959:14;;49115:4;49103:2;49099:14;;;49095:25;;49081:40;;49075:47;49070:3;49066:57;;;49048:76;;49245:2;49241:14;;;49237:25;;49223:40;;49217:47;49208:57;;49170:1;49155:17;;49190:76;49388:1;49383:14;;;49379:25;;49365:40;;49359:47;49350:57;;49297:17;;;49332:76;49521:25;;49507:40;;49501:47;49492:57;;49439:17;;;49474:76;;;;49581:17;;48789:824;;;49698:1;49691:4;49685:11;49681:19;49719:1;49714:54;;;;49787:1;49782:52;;;;49674:160;;49714:54;49749:16;49730:17;;;49723:43;49714:54;;49782:52;49817:14;49798:17;;;49791:41;49674:160;-1:-1:-1;49864:6:0;;47843:2035;-1:-1:-1;;;;;;;;47843:2035:0:o;43702:108::-;43762:13;43795:7;43788:14;;;;;:::i;28363:240::-;28424:7;28456:19;;;28440:102;;;;;;;23901:2:1;28440:102:0;;;23883:21:1;23940:2;23920:18;;;23913:30;23979:34;23959:18;;;23952:62;24050:19;24030:18;;;24023:47;24087:19;;28440:102:0;23699:413:1;28440:102:0;-1:-1:-1;28564:19:0;;;;;;:12;:19;;;;;:32;;;;;;;28363:240::o;33344:1272::-;33449:20;33472:12;33499:16;;;33491:62;;;;;;;24319:2:1;33491:62:0;;;24301:21:1;24358:2;24338:18;;;24331:30;24397:34;24377:18;;;24370:62;24468:3;24448:18;;;24441:31;24489:19;;33491:62:0;24117:397:1;33491:62:0;33690:21;33698:12;32853:4;32883:12;-1:-1:-1;32873:22:0;32796:105;33690:21;33689:22;33681:64;;;;;;;24721:2:1;33681:64:0;;;24703:21:1;24760:2;24740:18;;;24733:30;24799:31;24779:18;;;24772:59;24848:18;;33681:64:0;24519:353:1;33681:64:0;33772:12;;33760:8;:24;;33752:71;;;;;;;25079:2:1;33752:71:0;;;25061:21:1;25118:2;25098:18;;;25091:30;25157:34;25137:18;;;25130:62;25228:4;25208:18;;;25201:32;25250:19;;33752:71:0;24877:398:1;33752:71:0;33935:16;;;33902:30;33935:16;;;:12;:16;;;;;;;;;33902:49;;;;;;;;;;;;;;;;;;;;;;;;;;;33977:119;;;;;;;;33997:19;;33902:49;;33977:119;;;33997:39;;34027:8;;33997:39;:::i;:::-;33977:119;;;;;;34080:8;34045:11;:24;;;:44;;;;:::i;:::-;33977:119;;;;;;;33958:16;;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;;;;;;;;;;;;;;34131:43;;;;;;;;;;;34157:15;34131:43;;;;;;;;34103:25;;;:11;:25;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34115:12;;34227:281;34251:8;34247:1;:12;34227:281;;;34280:38;;34305:12;;34280:38;;;;34297:1;;34280:38;;34297:1;;34280:38;34345:59;34376:1;34380:2;34384:12;34398:5;34345:22;:59::i;:::-;34327:150;;;;;;;15488:2:1;34327:150:0;;;15470:21:1;15527:2;15507:18;;;15500:30;15566:34;15546:18;;;15539:62;15637:21;15617:18;;;15610:49;15676:19;;34327:150:0;15286:415:1;34327:150:0;34486:14;;;;:::i;:::-;;;;34261:3;;;;;:::i;:::-;;;;34227:281;;;-1:-1:-1;34516:12:0;:27;;;34550:60;32246:311;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:177:1;99:66;92:5;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;638:248::-;706:6;714;767:2;755:9;746:7;742:23;738:32;735:52;;;783:1;780;773:12;735:52;-1:-1:-1;;806:23:1;;;876:2;861:18;;;848:32;;-1:-1:-1;638:248:1:o;891:258::-;963:1;973:113;987:6;984:1;981:13;973:113;;;1063:11;;;1057:18;1044:11;;;1037:39;1009:2;1002:10;973:113;;;1104:6;1101:1;1098:13;1095:48;;;-1:-1:-1;;1139:1:1;1121:16;;1114:27;891:258::o;1154:317::-;1196:3;1234:5;1228:12;1261:6;1256:3;1249:19;1277:63;1333:6;1326:4;1321:3;1317:14;1310:4;1303:5;1299:16;1277:63;:::i;:::-;1385:2;1373:15;1390:66;1369:88;1360:98;;;;1460:4;1356:109;;1154:317;-1:-1:-1;;1154:317:1:o;1476:220::-;1625:2;1614:9;1607:21;1588:4;1645:45;1686:2;1675:9;1671:18;1663:6;1645:45;:::i;1701:180::-;1760:6;1813:2;1801:9;1792:7;1788:23;1784:32;1781:52;;;1829:1;1826;1819:12;1781:52;-1:-1:-1;1852:23:1;;1701:180;-1:-1:-1;1701:180:1:o;2117:196::-;2185:20;;2245:42;2234:54;;2224:65;;2214:93;;2303:1;2300;2293:12;2318:254;2386:6;2394;2447:2;2435:9;2426:7;2422:23;2418:32;2415:52;;;2463:1;2460;2453:12;2415:52;2486:29;2505:9;2486:29;:::i;:::-;2476:39;2562:2;2547:18;;;;2534:32;;-1:-1:-1;;;2318:254:1:o;2577:184::-;2629:77;2626:1;2619:88;2726:4;2723:1;2716:15;2750:4;2747:1;2740:15;2766:691;2831:5;2861:18;2902:2;2894:6;2891:14;2888:40;;;2908:18;;:::i;:::-;3042:2;3036:9;3108:2;3096:15;;2947:66;3092:24;;;3118:2;3088:33;3084:42;3072:55;;;3142:18;;;3162:22;;;3139:46;3136:72;;;3188:18;;:::i;:::-;3228:10;3224:2;3217:22;3257:6;3248:15;;3287:6;3279;3272:22;3327:3;3318:6;3313:3;3309:16;3306:25;3303:45;;;3344:1;3341;3334:12;3303:45;3394:6;3389:3;3382:4;3374:6;3370:17;3357:44;3449:1;3442:4;3433:6;3425;3421:19;3417:30;3410:41;;;;2766:691;;;;;:::o;3462:451::-;3531:6;3584:2;3572:9;3563:7;3559:23;3555:32;3552:52;;;3600:1;3597;3590:12;3552:52;3640:9;3627:23;3673:18;3665:6;3662:30;3659:50;;;3705:1;3702;3695:12;3659:50;3728:22;;3781:4;3773:13;;3769:27;-1:-1:-1;3759:55:1;;3810:1;3807;3800:12;3759:55;3833:74;3899:7;3894:2;3881:16;3876:2;3872;3868:11;3833:74;:::i;4346:328::-;4423:6;4431;4439;4492:2;4480:9;4471:7;4467:23;4463:32;4460:52;;;4508:1;4505;4498:12;4460:52;4531:29;4550:9;4531:29;:::i;:::-;4521:39;;4579:38;4613:2;4602:9;4598:18;4579:38;:::i;:::-;4569:48;;4664:2;4653:9;4649:18;4636:32;4626:42;;4346:328;;;;;:::o;4679:186::-;4738:6;4791:2;4779:9;4770:7;4766:23;4762:32;4759:52;;;4807:1;4804;4797:12;4759:52;4830:29;4849:9;4830:29;:::i;5258:118::-;5344:5;5337:13;5330:21;5323:5;5320:32;5310:60;;5366:1;5363;5356:12;5381:376;5443:6;5451;5504:2;5492:9;5483:7;5479:23;5475:32;5472:52;;;5520:1;5517;5510:12;5472:52;5559:9;5546:23;5578:28;5600:5;5578:28;:::i;:::-;5625:5;-1:-1:-1;5682:2:1;5667:18;;5654:32;5695:30;5654:32;5695:30;:::i;:::-;5744:7;5734:17;;;5381:376;;;;;:::o;5762:315::-;5827:6;5835;5888:2;5876:9;5867:7;5863:23;5859:32;5856:52;;;5904:1;5901;5894:12;5856:52;5927:29;5946:9;5927:29;:::i;6082:667::-;6177:6;6185;6193;6201;6254:3;6242:9;6233:7;6229:23;6225:33;6222:53;;;6271:1;6268;6261:12;6222:53;6294:29;6313:9;6294:29;:::i;:::-;6284:39;;6342:38;6376:2;6365:9;6361:18;6342:38;:::i;:::-;6332:48;;6427:2;6416:9;6412:18;6399:32;6389:42;;6482:2;6471:9;6467:18;6454:32;6509:18;6501:6;6498:30;6495:50;;;6541:1;6538;6531:12;6495:50;6564:22;;6617:4;6609:13;;6605:27;-1:-1:-1;6595:55:1;;6646:1;6643;6636:12;6595:55;6669:74;6735:7;6730:2;6717:16;6712:2;6708;6704:11;6669:74;:::i;:::-;6659:84;;;6082:667;;;;;;;:::o;6754:367::-;6817:8;6827:6;6881:3;6874:4;6866:6;6862:17;6858:27;6848:55;;6899:1;6896;6889:12;6848:55;-1:-1:-1;6922:20:1;;6965:18;6954:30;;6951:50;;;6997:1;6994;6987:12;6951:50;7034:4;7026:6;7022:17;7010:29;;7094:3;7087:4;7077:6;7074:1;7070:14;7062:6;7058:27;7054:38;7051:47;7048:67;;;7111:1;7108;7101:12;7048:67;6754:367;;;;;:::o;7126:773::-;7248:6;7256;7264;7272;7325:2;7313:9;7304:7;7300:23;7296:32;7293:52;;;7341:1;7338;7331:12;7293:52;7381:9;7368:23;7410:18;7451:2;7443:6;7440:14;7437:34;;;7467:1;7464;7457:12;7437:34;7506:70;7568:7;7559:6;7548:9;7544:22;7506:70;:::i;:::-;7595:8;;-1:-1:-1;7480:96:1;-1:-1:-1;7683:2:1;7668:18;;7655:32;;-1:-1:-1;7699:16:1;;;7696:36;;;7728:1;7725;7718:12;7696:36;;7767:72;7831:7;7820:8;7809:9;7805:24;7767:72;:::i;:::-;7126:773;;;;-1:-1:-1;7858:8:1;-1:-1:-1;;;;7126:773:1:o;8167:260::-;8235:6;8243;8296:2;8284:9;8275:7;8271:23;8267:32;8264:52;;;8312:1;8309;8302:12;8264:52;8335:29;8354:9;8335:29;:::i;:::-;8325:39;;8383:38;8417:2;8406:9;8402:18;8383:38;:::i;:::-;8373:48;;8167:260;;;;;:::o;8793:437::-;8872:1;8868:12;;;;8915;;;8936:61;;8990:4;8982:6;8978:17;8968:27;;8936:61;9043:2;9035:6;9032:14;9012:18;9009:38;9006:218;;9080:77;9077:1;9070:88;9181:4;9178:1;9171:15;9209:4;9206:1;9199:15;9006:218;;8793:437;;;:::o;10837:184::-;10889:77;10886:1;10879:88;10986:4;10983:1;10976:15;11010:4;11007:1;11000:15;11026:125;11066:4;11094:1;11091;11088:8;11085:34;;;11099:18;;:::i;:::-;-1:-1:-1;11136:9:1;;11026:125::o;11156:128::-;11196:3;11227:1;11223:6;11220:1;11217:13;11214:39;;;11233:18;;:::i;:::-;-1:-1:-1;11269:9:1;;11156:128::o;11289:228::-;11329:7;11455:1;11387:66;11383:74;11380:1;11377:81;11372:1;11365:9;11358:17;11354:105;11351:131;;;11462:18;;:::i;:::-;-1:-1:-1;11502:9:1;;11289:228::o;11522:184::-;11592:6;11645:2;11633:9;11624:7;11620:23;11616:32;11613:52;;;11661:1;11658;11651:12;11613:52;-1:-1:-1;11684:16:1;;11522:184;-1:-1:-1;11522:184:1:o;12114:245::-;12181:6;12234:2;12222:9;12213:7;12209:23;12205:32;12202:52;;;12250:1;12247;12240:12;12202:52;12282:9;12276:16;12301:28;12323:5;12301:28;:::i;12767:195::-;12806:3;12837:66;12830:5;12827:77;12824:103;;12907:18;;:::i;:::-;-1:-1:-1;12954:1:1;12943:13;;12767:195::o;14500:184::-;14552:77;14549:1;14542:88;14649:4;14646:1;14639:15;14673:4;14670:1;14663:15;14689:120;14729:1;14755;14745:35;;14760:18;;:::i;:::-;-1:-1:-1;14794:9:1;;14689:120::o;14814:112::-;14846:1;14872;14862:35;;14877:18;;:::i;:::-;-1:-1:-1;14911:9:1;;14814:112::o;16734:2307::-;17344:66;17339:3;17332:79;17314:3;17440:6;17434:13;17466:4;17479:60;17532:6;17527:2;17522:3;17518:12;17513:2;17505:6;17501:15;17479:60;:::i;:::-;17603:66;17598:2;17558:16;;;17590:11;;;17583:87;17699:34;17694:2;17686:11;;17679:55;17763:66;17758:2;17750:11;;17743:87;17899:13;;17849:3;;-1:-1:-1;;17959:1:1;17981:18;;;;18034;;;;18061:93;;18139:4;18129:8;18125:19;18113:31;;18061:93;18202:2;18192:8;18189:16;18169:18;18166:40;18163:224;;18241:77;18236:3;18229:90;18342:4;18339:1;18332:15;18372:4;18367:3;18360:17;18163:224;18403:18;18430:180;;;;18624:1;18619:340;;;;18396:563;;18430:180;18486:66;18475:9;18471:82;18466:2;18462;18458:11;18451:103;18597:2;18586:8;18582:2;18578:17;18574:26;18567:33;;18430:180;;18619:340;16190:1;16183:14;;;16227:4;16214:18;;18714:1;18728:175;18742:8;18739:1;18736:15;18728:175;;;18830:14;;18813:10;;;18809:19;;18802:43;18873:16;;;;18759:10;;18728:175;;;18732:3;;18946:2;18935:8;18931:2;18927:17;18923:26;18916:33;;18396:563;;;;;;18975:60;19005:29;19030:3;16315:66;16303:79;;16407:1;16398:11;;16243:172;19005:29;16497:66;16485:79;;16594:66;16589:2;16580:12;;16573:88;16691:3;16686:2;16677:12;;16670:25;16720:2;16711:12;;16420:309;18975:60;18968:67;16734:2307;-1:-1:-1;;;;;;;;16734:2307:1:o;19046:448::-;19308:31;19303:3;19296:44;19278:3;19369:6;19363:13;19385:62;19440:6;19435:2;19430:3;19426:12;19419:4;19411:6;19407:17;19385:62;:::i;:::-;19467:16;;;;19485:2;19463:25;;19046:448;-1:-1:-1;;19046:448:1:o;19499:470::-;19678:3;19716:6;19710:13;19732:53;19778:6;19773:3;19766:4;19758:6;19754:17;19732:53;:::i;:::-;19848:13;;19807:16;;;;19870:57;19848:13;19807:16;19904:4;19892:17;;19870:57;:::i;:::-;19943:20;;19499:470;-1:-1:-1;;;;19499:470:1:o;19974:184::-;20026:77;20023:1;20016:88;20123:4;20120:1;20113:15;20147:4;20144:1;20137:15;21802:246;21842:4;21871:34;21955:10;;;;21925;;21977:12;;;21974:38;;;21992:18;;:::i;:::-;22029:13;;21802:246;-1:-1:-1;;;21802:246:1:o;22053:253::-;22093:3;22121:34;22182:2;22179:1;22175:10;22212:2;22209:1;22205:10;22243:3;22239:2;22235:12;22230:3;22227:21;22224:47;;;22251:18;;:::i;22311:196::-;22350:3;22378:5;22368:39;;22387:18;;:::i;:::-;-1:-1:-1;22434:66:1;22423:78;;22311:196::o;22928:512::-;23122:4;23151:42;23232:2;23224:6;23220:15;23209:9;23202:34;23284:2;23276:6;23272:15;23267:2;23256:9;23252:18;23245:43;;23324:6;23319:2;23308:9;23304:18;23297:34;23367:3;23362:2;23351:9;23347:18;23340:31;23388:46;23429:3;23418:9;23414:19;23406:6;23388:46;:::i;:::-;23380:54;22928:512;-1:-1:-1;;;;;;22928:512:1:o;23445:249::-;23514:6;23567:2;23555:9;23546:7;23542:23;23538:32;23535:52;;;23583:1;23580;23573:12;23535:52;23615:9;23609:16;23634:30;23658:5;23634:30;:::i

Swarm Source

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