ETH Price: $3,448.32 (-0.84%)
Gas: 2 Gwei

Token

ApeOnly (APES)
 

Overview

Max Total Supply

0 APES

Holders

379

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 APES
0xB4c37b1bf6d93C8EDdF3E39628E96E6Ff45fE6B2
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:
ApeOnly

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-04-08
*/

// File: contracts/utils/Context.sol


// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: contracts/interfaces/IERC165.sol



pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: contracts/interfaces/IERC721.sol



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/interfaces/IERC721Receiver.sol



pragma solidity ^0.8.0;

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

// File: contracts/interfaces/IERC721Metadata.sol



pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: contracts/interfaces/IERC721Enumerable.sol



pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

// File: contracts/utils/Address.sol



pragma solidity ^0.8.0;

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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: contracts/utils/Strings.sol



pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

// File: contracts/ERC165.sol



pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
abstract contract ERC165 is IERC165 {
    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor ()  {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external override view returns (bool) {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}

// File: contracts/ERC721.sol



pragma solidity ^0.8.0;









/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping (uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping (address => uint256) private _balances;

    // 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 Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */

     /*
     *     bytes4(keccak256('balanceOf(address)')) == 0x70a08231
     *     bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e
     *     bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3
     *     bytes4(keccak256('getApproved(uint256)')) == 0x081812fc
     *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
     *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5
     *     bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde
     *
     *     => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^
     *        0xa22cb465 ^ 0xe985e9c5 ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd
     */
    bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd;

    /*
     *     bytes4(keccak256('name()')) == 0x06fdde03
     *     bytes4(keccak256('symbol()')) == 0x95d89b41
     *
     *     => 0x06fdde03 ^ 0x95d89b41 == 0x93254542
     */
    bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x93254542;

    /*
     *     bytes4(keccak256('totalSupply()')) == 0x18160ddd
     *     bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59
     *     bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7
     *
     *     => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63
     */
    bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63;


    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;

        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(_INTERFACE_ID_ERC721);
        _registerInterface(_INTERFACE_ID_ERC721_METADATA);
        _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE);
    }

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "https://ipfs.apeonly.com/apes/";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: 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 virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: 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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || ERC721.isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual {
        _mint(to, tokenId);
        require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @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("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { }
}

// File: contracts/ApeOnly.sol



pragma solidity ^0.8.0;



/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * 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.
 */
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 ()  {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

    /**
     * @dev Returns true if the caller is the current owner.
     */
    function isOwner() public view returns (bool) {
        return _msgSender() == _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 onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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 onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}


contract ApeOnly is Ownable, ERC721 {
    
  
    address payable public apesWallet;
    
    uint256 public apesLength;
    
    uint256 public constant MAX_APES = 999;
    
    uint256 public constant SALE_DAYS = 14 days;
    
    uint256 public immutable SALE_END_DAY ;
    
    uint256 _ethAmount = 0.3 ether;
    

    constructor(address _apesWallet) ERC721("ApeOnly","APES")  {
        apesWallet = payable(_apesWallet);
        SALE_END_DAY = block.timestamp+SALE_DAYS;
    }

    function changeApesWallet(address payable wallet) external onlyOwner() returns(bool){
        apesWallet = wallet;
        return true;
    }

    function setEthAmount(uint256 amount)  external onlyOwner() returns(bool){
        _ethAmount = amount;
        return true;
    }

    
    function _getCurrentEthAmount() internal view returns(uint256 ethAmount){
        return _ethAmount;
    }
    

    function getCurrentEthAmount() external view returns(uint256){
        return _getCurrentEthAmount();
    }
    
    function _genrateApesToken() internal returns(bool){
        apesLength+=1;
        require(MAX_APES >= apesLength,"max limit reach");
        if(block.timestamp < SALE_END_DAY){
            require(msg.value >= _getCurrentEthAmount(),"eth amount error");
            apesWallet.transfer(msg.value);
        }
        _mint(msg.sender,apesLength);
        return true;
    } 
    
    
    function genrateApesTokenToOwner(uint256 _numberOfApes) external onlyOwner returns(bool){
        require(block.timestamp > SALE_END_DAY,"sale not ended");
        for(uint i=0;i < _numberOfApes;i++){
            _genrateApesToken(); 
        }
        return true;
    }


    function genrateApesToken() external payable returns(bool){
        require(block.timestamp < SALE_END_DAY,"sale ended");
        return _genrateApesToken();
    }
    
    fallback() external payable{
        require(block.timestamp < SALE_END_DAY,"sale ended");
        _genrateApesToken();
    }
    
    receive() external payable{
        require(block.timestamp < SALE_END_DAY,"sale ended");
        _genrateApesToken();
    }
    
    function burnApes(uint256 tokenId) external returns(bool){
        require(ERC721.ownerOf(tokenId) == msg.sender, "ERC721: transfer of token that is not own");
        _burn(tokenId);
        return true;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_apesWallet","type":"address"}],"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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"MAX_APES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_DAYS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_END_DAY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"apesLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"apesWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burnApes","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"wallet","type":"address"}],"name":"changeApesWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"genrateApesToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numberOfApes","type":"uint256"}],"name":"genrateApesTokenToOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentEthAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setEthAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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"},{"stateMutability":"payable","type":"receive"}]

60a0604052670429d069189e0000600a553480156200001d57600080fd5b50604051620021343803806200213483398101604081905262000040916200028b565b604051806040016040528060078152602001664170654f6e6c7960c81b815250604051806040016040528060048152602001634150455360e01b81525060006200008f6200018360201b60201c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620000eb6301ffc9a760e01b62000187565b815162000100906002906020850190620001e5565b50805162000116906003906020840190620001e5565b50620001296380ac58cd60e01b62000187565b6200013b634992a2a160e11b62000187565b6200014d63780e9d6360e01b62000187565b5050600880546001600160a01b0319166001600160a01b038316179055620001796212750042620002f2565b6080525062000354565b3390565b6001600160e01b03198082161415620001bd5760405162461bcd60e51b8152600401620001b490620002bb565b60405180910390fd5b6001600160e01b0319166000908152600160208190526040909120805460ff19169091179055565b828054620001f39062000317565b90600052602060002090601f01602090048101928262000217576000855562000262565b82601f106200023257805160ff191683800117855562000262565b8280016001018555821562000262579182015b828111156200026257825182559160200191906001019062000245565b506200027092915062000274565b5090565b5b8082111562000270576000815560010162000275565b6000602082840312156200029d578081fd5b81516001600160a01b0381168114620002b4578182fd5b9392505050565b6020808252601c908201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604082015260600190565b600082198211156200031257634e487b7160e01b81526011600452602481fd5b500190565b6002810460018216806200032c57607f821691505b602082108114156200034e57634e487b7160e01b600052602260045260246000fd5b50919050565b608051611da162000393600039600081816101c201528181610215015281816105c00152818161088b015281816108d70152610be70152611da16000f3fe6080604052600436106101bb5760003560e01c8063715018a6116100ec578063b88d4fde1161008a578063bb8a16bd11610064578063bb8a16bd1461050b578063c87b56dd14610520578063e985e9c514610540578063f2fde38b1461056057610213565b8063b88d4fde146104b6578063b8d69d56146104d6578063b9ceedb9146104f657610213565b806390612b30116100c657806390612b301461044157806395d89b4114610461578063a22cb46514610476578063b87c7d431461049657610213565b8063715018a6146104025780638da5cb5b146104175780638f32d59b1461042c57610213565b806342842e0e11610159578063624936c711610133578063624936c7146103985780636352211e146103ad5780636a07786d146103cd57806370a08231146103e257610213565b806342842e0e1461035b5780634744a2551461037b5780635b55374f1461038357610213565b8063095ea7b311610195578063095ea7b3146102d75780630a7834fc146102f957806310307abe1461031957806323b872dd1461033b57610213565b806301ffc9a71461025257806306fdde0314610288578063081812fc146102aa57610213565b36610213577f000000000000000000000000000000000000000000000000000000000000000042106102085760405162461bcd60e51b81526004016101ff906117e6565b60405180910390fd5b610210610580565b50005b7f000000000000000000000000000000000000000000000000000000000000000042106102085760405162461bcd60e51b81526004016101ff906117e6565b34801561025e57600080fd5b5061027261026d3660046115fd565b61065a565b60405161027f91906116f9565b60405180910390f35b34801561029457600080fd5b5061029d61067d565b60405161027f9190611704565b3480156102b657600080fd5b506102ca6102c5366004611635565b61070f565b60405161027f91906116a8565b3480156102e357600080fd5b506102f76102f23660046115d2565b610752565b005b34801561030557600080fd5b50610272610314366004611635565b6107ea565b34801561032557600080fd5b5061032e61082d565b60405161027f9190611c1c565b34801561034757600080fd5b506102f7610356366004611491565b610834565b34801561036757600080fd5b506102f7610376366004611491565b61086c565b610272610887565b34801561038f57600080fd5b5061032e6108d5565b3480156103a457600080fd5b5061032e6108f9565b3480156103b957600080fd5b506102ca6103c8366004611635565b6108ff565b3480156103d957600080fd5b5061032e61093a565b3480156103ee57600080fd5b5061032e6103fd36600461143d565b610944565b34801561040e57600080fd5b506102f7610988565b34801561042357600080fd5b506102ca6109f6565b34801561043857600080fd5b50610272610a05565b34801561044d57600080fd5b5061027261045c36600461143d565b610a29565b34801561046d57600080fd5b5061029d610a74565b34801561048257600080fd5b506102f76104913660046115a1565b610a83565b3480156104a257600080fd5b506102726104b1366004611635565b610b51565b3480156104c257600080fd5b506102f76104d13660046114d1565b610b80565b3480156104e257600080fd5b506102726104f1366004611635565b610bbf565b34801561050257600080fd5b506102ca610c53565b34801561051757600080fd5b5061032e610c62565b34801561052c57600080fd5b5061029d61053b366004611635565b610c68565b34801561054c57600080fd5b5061027261055b366004611459565b610ceb565b34801561056c57600080fd5b506102f761057b36600461143d565b610d19565b60006001600960008282546105959190611c25565b90915550506009546103e710156105be5760405162461bcd60e51b81526004016101ff90611ba2565b7f0000000000000000000000000000000000000000000000000000000000000000421015610648576105ee610d49565b34101561060d5760405162461bcd60e51b81526004016101ff90611a77565b6008546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015610646573d6000803e3d6000fd5b505b61065433600954610d4f565b50600190565b6001600160e01b0319811660009081526001602052604090205460ff165b919050565b60606002805461068c90611c94565b80601f01602080910402602001604051908101604052809291908181526020018280546106b890611c94565b80156107055780601f106106da57610100808354040283529160200191610705565b820191906000526020600020905b8154815290600101906020018083116106e857829003601f168201915b5050505050905090565b600061071a82610e2e565b6107365760405162461bcd60e51b81526004016101ff906119f6565b506000908152600660205260409020546001600160a01b031690565b600061075d826108ff565b9050806001600160a01b0316836001600160a01b031614156107915760405162461bcd60e51b81526004016101ff90611b61565b806001600160a01b03166107a3610e4b565b6001600160a01b031614806107bf57506107bf8161055b610e4b565b6107db5760405162461bcd60e51b81526004016101ff906118d1565b6107e58383610e4f565b505050565b6000336107f6836108ff565b6001600160a01b03161461081c5760405162461bcd60e51b81526004016101ff90611aa1565b61082582610ebd565b506001919050565b6212750081565b61084561083f610e4b565b82610f64565b6108615760405162461bcd60e51b81526004016101ff90611bcb565b6107e5838383610fe9565b6107e583838360405180602001604052806000815250610b80565b60007f000000000000000000000000000000000000000000000000000000000000000042106108c85760405162461bcd60e51b81526004016101ff906117e6565b6108d0610580565b905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b60095481565b6000818152600460205260408120546001600160a01b0316806109345760405162461bcd60e51b81526004016101ff90611978565b92915050565b60006108d0610d49565b60006001600160a01b03821661096c5760405162461bcd60e51b81526004016101ff9061192e565b506001600160a01b031660009081526005602052604090205490565b610990610a05565b6109ac5760405162461bcd60e51b81526004016101ff90611a42565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b600080546001600160a01b0316610a1a610e4b565b6001600160a01b031614905090565b6000610a33610a05565b610a4f5760405162461bcd60e51b81526004016101ff90611a42565b50600880546001600160a01b0383166001600160a01b03199091161790556001919050565b60606003805461068c90611c94565b610a8b610e4b565b6001600160a01b0316826001600160a01b03161415610abc5760405162461bcd60e51b81526004016101ff9061184e565b8060076000610ac9610e4b565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610b0d610e4b565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610b4591906116f9565b60405180910390a35050565b6000610b5b610a05565b610b775760405162461bcd60e51b81526004016101ff90611a42565b50600a55600190565b610b91610b8b610e4b565b83610f64565b610bad5760405162461bcd60e51b81526004016101ff90611bcb565b610bb984848484611116565b50505050565b6000610bc9610a05565b610be55760405162461bcd60e51b81526004016101ff90611a42565b7f00000000000000000000000000000000000000000000000000000000000000004211610c245760405162461bcd60e51b81526004016101ff90611b39565b60005b82811015610c4a57610c37610580565b5080610c4281611ccf565b915050610c27565b50600192915050565b6008546001600160a01b031681565b6103e781565b6060610c7382610e2e565b610c8f5760405162461bcd60e51b81526004016101ff90611aea565b6000610c99611149565b90506000815111610cb95760405180602001604052806000815250610ce4565b80610cc384611180565b604051602001610cd4929190611679565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b610d21610a05565b610d3d5760405162461bcd60e51b81526004016101ff90611a42565b610d468161129b565b50565b600a5490565b6001600160a01b038216610d755760405162461bcd60e51b81526004016101ff906119c1565b610d7e81610e2e565b15610d9b5760405162461bcd60e51b81526004016101ff906117af565b610da7600083836107e5565b6001600160a01b0382166000908152600560205260408120805460019290610dd0908490611c25565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000908152600460205260409020546001600160a01b0316151590565b3390565b600081815260066020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610e84826108ff565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610ec8826108ff565b9050610ed6816000846107e5565b610ee1600083610e4f565b6001600160a01b0381166000908152600560205260408120805460019290610f0a908490611c51565b909155505060008281526004602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6000610f6f82610e2e565b610f8b5760405162461bcd60e51b81526004016101ff90611885565b6000610f96836108ff565b9050806001600160a01b0316846001600160a01b03161480610fd15750836001600160a01b0316610fc68461070f565b6001600160a01b0316145b80610fe15750610fe18185610ceb565b949350505050565b826001600160a01b0316610ffc826108ff565b6001600160a01b0316146110225760405162461bcd60e51b81526004016101ff90611aa1565b6001600160a01b0382166110485760405162461bcd60e51b81526004016101ff9061180a565b6110538383836107e5565b61105e600082610e4f565b6001600160a01b0383166000908152600560205260408120805460019290611087908490611c51565b90915550506001600160a01b03821660009081526005602052604081208054600192906110b5908490611c25565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611121848484610fe9565b61112d8484848461131c565b610bb95760405162461bcd60e51b81526004016101ff90611717565b60408051808201909152601e81527f68747470733a2f2f697066732e6170656f6e6c792e636f6d2f617065732f0000602082015290565b6060816111a557506040805180820190915260018152600360fc1b6020820152610678565b8160005b81156111cf57806111b981611ccf565b91506111c89050600a83611c3d565b91506111a9565b60008167ffffffffffffffff8111156111f857634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611222576020820181803683370190505b5090505b8415610fe157611237600183611c51565b9150611244600a86611cea565b61124f906030611c25565b60f81b81838151811061127257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611294600a86611c3d565b9450611226565b6001600160a01b0381166112c15760405162461bcd60e51b81526004016101ff90611769565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000611330846001600160a01b0316611437565b1561142c57836001600160a01b031663150b7a0261134c610e4b565b8786866040518563ffffffff1660e01b815260040161136e94939291906116bc565b602060405180830381600087803b15801561138857600080fd5b505af19250505080156113b8575060408051601f3d908101601f191682019092526113b591810190611619565b60015b611412573d8080156113e6576040519150601f19603f3d011682016040523d82523d6000602084013e6113eb565b606091505b50805161140a5760405162461bcd60e51b81526004016101ff90611717565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610fe1565b506001949350505050565b3b151590565b60006020828403121561144e578081fd5b8135610ce481611d40565b6000806040838503121561146b578081fd5b823561147681611d40565b9150602083013561148681611d40565b809150509250929050565b6000806000606084860312156114a5578081fd5b83356114b081611d40565b925060208401356114c081611d40565b929592945050506040919091013590565b600080600080608085870312156114e6578081fd5b84356114f181611d40565b935060208581013561150281611d40565b935060408601359250606086013567ffffffffffffffff80821115611525578384fd5b818801915088601f830112611538578384fd5b81358181111561154a5761154a611d2a565b604051601f8201601f191681018501838111828210171561156d5761156d611d2a565b60405281815283820185018b1015611583578586fd5b81858501868301379081019093019390935250939692955090935050565b600080604083850312156115b3578182fd5b82356115be81611d40565b915060208301358015158114611486578182fd5b600080604083850312156115e4578182fd5b82356115ef81611d40565b946020939093013593505050565b60006020828403121561160e578081fd5b8135610ce481611d55565b60006020828403121561162a578081fd5b8151610ce481611d55565b600060208284031215611646578081fd5b5035919050565b60008151808452611665816020860160208601611c68565b601f01601f19169290920160200192915050565b6000835161168b818460208801611c68565b83519083019061169f818360208801611c68565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906116ef9083018461164d565b9695505050505050565b901515815260200190565b600060208252610ce4602083018461164d565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252600a90820152691cd85b1948195b99195960b21b604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526010908201526f32ba341030b6b7bab73a1032b93937b960811b604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252600e908201526d1cd85b19481b9bdd08195b99195960921b604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252600f908201526e0dac2f040d8d2dad2e840e4cac2c6d608b1b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b90815260200190565b60008219821115611c3857611c38611cfe565b500190565b600082611c4c57611c4c611d14565b500490565b600082821015611c6357611c63611cfe565b500390565b60005b83811015611c83578181015183820152602001611c6b565b83811115610bb95750506000910152565b600281046001821680611ca857607f821691505b60208210811415611cc957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611ce357611ce3611cfe565b5060010190565b600082611cf957611cf9611d14565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610d4657600080fd5b6001600160e01b031981168114610d4657600080fdfea2646970667358221220c67cf1c83c52b571ac342fc35f984ada4a3aaf58dbf7ce9858d978dac2791fee64736f6c63430008000033000000000000000000000000be1b545a845dd143c28f0974d16a6c55c25f17ad

Deployed Bytecode

0x6080604052600436106101bb5760003560e01c8063715018a6116100ec578063b88d4fde1161008a578063bb8a16bd11610064578063bb8a16bd1461050b578063c87b56dd14610520578063e985e9c514610540578063f2fde38b1461056057610213565b8063b88d4fde146104b6578063b8d69d56146104d6578063b9ceedb9146104f657610213565b806390612b30116100c657806390612b301461044157806395d89b4114610461578063a22cb46514610476578063b87c7d431461049657610213565b8063715018a6146104025780638da5cb5b146104175780638f32d59b1461042c57610213565b806342842e0e11610159578063624936c711610133578063624936c7146103985780636352211e146103ad5780636a07786d146103cd57806370a08231146103e257610213565b806342842e0e1461035b5780634744a2551461037b5780635b55374f1461038357610213565b8063095ea7b311610195578063095ea7b3146102d75780630a7834fc146102f957806310307abe1461031957806323b872dd1461033b57610213565b806301ffc9a71461025257806306fdde0314610288578063081812fc146102aa57610213565b36610213577f0000000000000000000000000000000000000000000000000000000060816e5542106102085760405162461bcd60e51b81526004016101ff906117e6565b60405180910390fd5b610210610580565b50005b7f0000000000000000000000000000000000000000000000000000000060816e5542106102085760405162461bcd60e51b81526004016101ff906117e6565b34801561025e57600080fd5b5061027261026d3660046115fd565b61065a565b60405161027f91906116f9565b60405180910390f35b34801561029457600080fd5b5061029d61067d565b60405161027f9190611704565b3480156102b657600080fd5b506102ca6102c5366004611635565b61070f565b60405161027f91906116a8565b3480156102e357600080fd5b506102f76102f23660046115d2565b610752565b005b34801561030557600080fd5b50610272610314366004611635565b6107ea565b34801561032557600080fd5b5061032e61082d565b60405161027f9190611c1c565b34801561034757600080fd5b506102f7610356366004611491565b610834565b34801561036757600080fd5b506102f7610376366004611491565b61086c565b610272610887565b34801561038f57600080fd5b5061032e6108d5565b3480156103a457600080fd5b5061032e6108f9565b3480156103b957600080fd5b506102ca6103c8366004611635565b6108ff565b3480156103d957600080fd5b5061032e61093a565b3480156103ee57600080fd5b5061032e6103fd36600461143d565b610944565b34801561040e57600080fd5b506102f7610988565b34801561042357600080fd5b506102ca6109f6565b34801561043857600080fd5b50610272610a05565b34801561044d57600080fd5b5061027261045c36600461143d565b610a29565b34801561046d57600080fd5b5061029d610a74565b34801561048257600080fd5b506102f76104913660046115a1565b610a83565b3480156104a257600080fd5b506102726104b1366004611635565b610b51565b3480156104c257600080fd5b506102f76104d13660046114d1565b610b80565b3480156104e257600080fd5b506102726104f1366004611635565b610bbf565b34801561050257600080fd5b506102ca610c53565b34801561051757600080fd5b5061032e610c62565b34801561052c57600080fd5b5061029d61053b366004611635565b610c68565b34801561054c57600080fd5b5061027261055b366004611459565b610ceb565b34801561056c57600080fd5b506102f761057b36600461143d565b610d19565b60006001600960008282546105959190611c25565b90915550506009546103e710156105be5760405162461bcd60e51b81526004016101ff90611ba2565b7f0000000000000000000000000000000000000000000000000000000060816e55421015610648576105ee610d49565b34101561060d5760405162461bcd60e51b81526004016101ff90611a77565b6008546040516001600160a01b03909116903480156108fc02916000818181858888f19350505050158015610646573d6000803e3d6000fd5b505b61065433600954610d4f565b50600190565b6001600160e01b0319811660009081526001602052604090205460ff165b919050565b60606002805461068c90611c94565b80601f01602080910402602001604051908101604052809291908181526020018280546106b890611c94565b80156107055780601f106106da57610100808354040283529160200191610705565b820191906000526020600020905b8154815290600101906020018083116106e857829003601f168201915b5050505050905090565b600061071a82610e2e565b6107365760405162461bcd60e51b81526004016101ff906119f6565b506000908152600660205260409020546001600160a01b031690565b600061075d826108ff565b9050806001600160a01b0316836001600160a01b031614156107915760405162461bcd60e51b81526004016101ff90611b61565b806001600160a01b03166107a3610e4b565b6001600160a01b031614806107bf57506107bf8161055b610e4b565b6107db5760405162461bcd60e51b81526004016101ff906118d1565b6107e58383610e4f565b505050565b6000336107f6836108ff565b6001600160a01b03161461081c5760405162461bcd60e51b81526004016101ff90611aa1565b61082582610ebd565b506001919050565b6212750081565b61084561083f610e4b565b82610f64565b6108615760405162461bcd60e51b81526004016101ff90611bcb565b6107e5838383610fe9565b6107e583838360405180602001604052806000815250610b80565b60007f0000000000000000000000000000000000000000000000000000000060816e5542106108c85760405162461bcd60e51b81526004016101ff906117e6565b6108d0610580565b905090565b7f0000000000000000000000000000000000000000000000000000000060816e5581565b60095481565b6000818152600460205260408120546001600160a01b0316806109345760405162461bcd60e51b81526004016101ff90611978565b92915050565b60006108d0610d49565b60006001600160a01b03821661096c5760405162461bcd60e51b81526004016101ff9061192e565b506001600160a01b031660009081526005602052604090205490565b610990610a05565b6109ac5760405162461bcd60e51b81526004016101ff90611a42565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b600080546001600160a01b0316610a1a610e4b565b6001600160a01b031614905090565b6000610a33610a05565b610a4f5760405162461bcd60e51b81526004016101ff90611a42565b50600880546001600160a01b0383166001600160a01b03199091161790556001919050565b60606003805461068c90611c94565b610a8b610e4b565b6001600160a01b0316826001600160a01b03161415610abc5760405162461bcd60e51b81526004016101ff9061184e565b8060076000610ac9610e4b565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610b0d610e4b565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610b4591906116f9565b60405180910390a35050565b6000610b5b610a05565b610b775760405162461bcd60e51b81526004016101ff90611a42565b50600a55600190565b610b91610b8b610e4b565b83610f64565b610bad5760405162461bcd60e51b81526004016101ff90611bcb565b610bb984848484611116565b50505050565b6000610bc9610a05565b610be55760405162461bcd60e51b81526004016101ff90611a42565b7f0000000000000000000000000000000000000000000000000000000060816e554211610c245760405162461bcd60e51b81526004016101ff90611b39565b60005b82811015610c4a57610c37610580565b5080610c4281611ccf565b915050610c27565b50600192915050565b6008546001600160a01b031681565b6103e781565b6060610c7382610e2e565b610c8f5760405162461bcd60e51b81526004016101ff90611aea565b6000610c99611149565b90506000815111610cb95760405180602001604052806000815250610ce4565b80610cc384611180565b604051602001610cd4929190611679565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b610d21610a05565b610d3d5760405162461bcd60e51b81526004016101ff90611a42565b610d468161129b565b50565b600a5490565b6001600160a01b038216610d755760405162461bcd60e51b81526004016101ff906119c1565b610d7e81610e2e565b15610d9b5760405162461bcd60e51b81526004016101ff906117af565b610da7600083836107e5565b6001600160a01b0382166000908152600560205260408120805460019290610dd0908490611c25565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000908152600460205260409020546001600160a01b0316151590565b3390565b600081815260066020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610e84826108ff565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610ec8826108ff565b9050610ed6816000846107e5565b610ee1600083610e4f565b6001600160a01b0381166000908152600560205260408120805460019290610f0a908490611c51565b909155505060008281526004602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6000610f6f82610e2e565b610f8b5760405162461bcd60e51b81526004016101ff90611885565b6000610f96836108ff565b9050806001600160a01b0316846001600160a01b03161480610fd15750836001600160a01b0316610fc68461070f565b6001600160a01b0316145b80610fe15750610fe18185610ceb565b949350505050565b826001600160a01b0316610ffc826108ff565b6001600160a01b0316146110225760405162461bcd60e51b81526004016101ff90611aa1565b6001600160a01b0382166110485760405162461bcd60e51b81526004016101ff9061180a565b6110538383836107e5565b61105e600082610e4f565b6001600160a01b0383166000908152600560205260408120805460019290611087908490611c51565b90915550506001600160a01b03821660009081526005602052604081208054600192906110b5908490611c25565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611121848484610fe9565b61112d8484848461131c565b610bb95760405162461bcd60e51b81526004016101ff90611717565b60408051808201909152601e81527f68747470733a2f2f697066732e6170656f6e6c792e636f6d2f617065732f0000602082015290565b6060816111a557506040805180820190915260018152600360fc1b6020820152610678565b8160005b81156111cf57806111b981611ccf565b91506111c89050600a83611c3d565b91506111a9565b60008167ffffffffffffffff8111156111f857634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611222576020820181803683370190505b5090505b8415610fe157611237600183611c51565b9150611244600a86611cea565b61124f906030611c25565b60f81b81838151811061127257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611294600a86611c3d565b9450611226565b6001600160a01b0381166112c15760405162461bcd60e51b81526004016101ff90611769565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000611330846001600160a01b0316611437565b1561142c57836001600160a01b031663150b7a0261134c610e4b565b8786866040518563ffffffff1660e01b815260040161136e94939291906116bc565b602060405180830381600087803b15801561138857600080fd5b505af19250505080156113b8575060408051601f3d908101601f191682019092526113b591810190611619565b60015b611412573d8080156113e6576040519150601f19603f3d011682016040523d82523d6000602084013e6113eb565b606091505b50805161140a5760405162461bcd60e51b81526004016101ff90611717565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610fe1565b506001949350505050565b3b151590565b60006020828403121561144e578081fd5b8135610ce481611d40565b6000806040838503121561146b578081fd5b823561147681611d40565b9150602083013561148681611d40565b809150509250929050565b6000806000606084860312156114a5578081fd5b83356114b081611d40565b925060208401356114c081611d40565b929592945050506040919091013590565b600080600080608085870312156114e6578081fd5b84356114f181611d40565b935060208581013561150281611d40565b935060408601359250606086013567ffffffffffffffff80821115611525578384fd5b818801915088601f830112611538578384fd5b81358181111561154a5761154a611d2a565b604051601f8201601f191681018501838111828210171561156d5761156d611d2a565b60405281815283820185018b1015611583578586fd5b81858501868301379081019093019390935250939692955090935050565b600080604083850312156115b3578182fd5b82356115be81611d40565b915060208301358015158114611486578182fd5b600080604083850312156115e4578182fd5b82356115ef81611d40565b946020939093013593505050565b60006020828403121561160e578081fd5b8135610ce481611d55565b60006020828403121561162a578081fd5b8151610ce481611d55565b600060208284031215611646578081fd5b5035919050565b60008151808452611665816020860160208601611c68565b601f01601f19169290920160200192915050565b6000835161168b818460208801611c68565b83519083019061169f818360208801611c68565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906116ef9083018461164d565b9695505050505050565b901515815260200190565b600060208252610ce4602083018461164d565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252600a90820152691cd85b1948195b99195960b21b604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526010908201526f32ba341030b6b7bab73a1032b93937b960811b604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252600e908201526d1cd85b19481b9bdd08195b99195960921b604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252600f908201526e0dac2f040d8d2dad2e840e4cac2c6d608b1b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b90815260200190565b60008219821115611c3857611c38611cfe565b500190565b600082611c4c57611c4c611d14565b500490565b600082821015611c6357611c63611cfe565b500390565b60005b83811015611c83578181015183820152602001611c6b565b83811115610bb95750506000910152565b600281046001821680611ca857607f821691505b60208210811415611cc957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611ce357611ce3611cfe565b5060010190565b600082611cf957611cf9611d14565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610d4657600080fd5b6001600160e01b031981168114610d4657600080fdfea2646970667358221220c67cf1c83c52b571ac342fc35f984ada4a3aaf58dbf7ce9858d978dac2791fee64736f6c63430008000033

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

000000000000000000000000be1b545a845dd143c28f0974d16a6c55c25f17ad

-----Decoded View---------------
Arg [0] : _apesWallet (address): 0xBe1B545a845dD143C28F0974D16A6c55C25f17Ad

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000be1b545a845dd143c28f0974d16a6c55c25f17ad


Deployed Bytecode Sourcemap

38587:2417:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40709:12;40691:15;:30;40683:52;;;;-1:-1:-1;;;40683:52:0;;;;;;;:::i;:::-;;;;;;;;;40746:19;:17;:19::i;:::-;;38587:2417;;40570:12;40552:15;:30;40544:52;;;;-1:-1:-1;;;40544:52:0;;;;;;;:::i;20690:144::-;;;;;;;;;;-1:-1:-1;20690:144:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25180:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26677:221::-;;;;;;;;;;-1:-1:-1;26677:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;26207:404::-;;;;;;;;;;-1:-1:-1;26207:404:0;;;;;:::i;:::-;;:::i;:::-;;40785:214;;;;;;;;;;-1:-1:-1;40785:214:0;;;;;:::i;:::-;;:::i;38775:43::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27567:305::-;;;;;;;;;;-1:-1:-1;27567:305:0;;;;;:::i;:::-;;:::i;27943:151::-;;;;;;;;;;-1:-1:-1;27943:151:0;;;;;:::i;:::-;;:::i;40328:166::-;;;:::i;38831:37::-;;;;;;;;;;;;;:::i;38686:25::-;;;;;;;;;;;;;:::i;24874:239::-;;;;;;;;;;-1:-1:-1;24874:239:0;;;;;:::i;:::-;;:::i;39518:109::-;;;;;;;;;;;;;:::i;24604:208::-;;;;;;;;;;-1:-1:-1;24604:208:0;;;;;:::i;:::-;;:::i;37839:140::-;;;;;;;;;;;;;:::i;37028:79::-;;;;;;;;;;;;;:::i;37394:94::-;;;;;;;;;;;;;:::i;39097:144::-;;;;;;;;;;-1:-1:-1;39097:144:0;;;;;:::i;:::-;;:::i;25349:104::-;;;;;;;;;;;;;:::i;26970:295::-;;;;;;;;;;-1:-1:-1;26970:295:0;;;;;:::i;:::-;;:::i;39249:133::-;;;;;;;;;;-1:-1:-1;39249:133:0;;;;;:::i;:::-;;:::i;28165:285::-;;;;;;;;;;-1:-1:-1;28165:285:0;;;;;:::i;:::-;;:::i;40041:277::-;;;;;;;;;;-1:-1:-1;40041:277:0;;;;;:::i;:::-;;:::i;38640:33::-;;;;;;;;;;;;;:::i;38724:38::-;;;;;;;;;;;;;:::i;25524:360::-;;;;;;;;;;-1:-1:-1;25524:360:0;;;;;:::i;:::-;;:::i;27336:164::-;;;;;;;;;;-1:-1:-1;27336:164:0;;;;;:::i;:::-;;:::i;38134:109::-;;;;;;;;;;-1:-1:-1;38134:109:0;;;;;:::i;:::-;;:::i;39639:383::-;39685:4;39713:1;39701:10;;:13;;;;;;;:::i;:::-;;;;-1:-1:-1;;39745:10:0;;38759:3;39733:22;;39725:49;;;;-1:-1:-1;;;39725:49:0;;;;;;;:::i;:::-;39806:12;39788:15;:30;39785:169;;;39855:22;:20;:22::i;:::-;39842:9;:35;;39834:63;;;;-1:-1:-1;;;39834:63:0;;;;;;;:::i;:::-;39912:10;;:30;;-1:-1:-1;;;;;39912:10:0;;;;39932:9;39912:30;;;;;:10;:30;:10;:30;39932:9;39912:10;:30;;;;;;;;;;;;;;;;;;;;;39785:169;39964:28;39970:10;39981;;39964:5;:28::i;:::-;-1:-1:-1;40010:4:0;39639:383;:::o;20690:144::-;-1:-1:-1;;;;;;20793:33:0;;20769:4;20793:33;;;:20;:33;;;;;;;;20690:144;;;;:::o;25180:100::-;25234:13;25267:5;25260:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25180:100;:::o;26677:221::-;26753:7;26781:16;26789:7;26781;:16::i;:::-;26773:73;;;;-1:-1:-1;;;26773:73:0;;;;;;;:::i;:::-;-1:-1:-1;26866:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26866:24:0;;26677:221::o;26207:404::-;26288:13;26304:23;26319:7;26304:14;:23::i;:::-;26288:39;;26352:5;-1:-1:-1;;;;;26346:11:0;:2;-1:-1:-1;;;;;26346:11:0;;;26338:57;;;;-1:-1:-1;;;26338:57:0;;;;;;;:::i;:::-;26432:5;-1:-1:-1;;;;;26416:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;26416:21:0;;:69;;;;26441:44;26465:5;26472:12;:10;:12::i;26441:44::-;26408:161;;;;-1:-1:-1;;;26408:161:0;;;;;;;:::i;:::-;26582:21;26591:2;26595:7;26582:8;:21::i;:::-;26207:404;;;:::o;40785:214::-;40837:4;40888:10;40861:23;40876:7;40861:14;:23::i;:::-;-1:-1:-1;;;;;40861:37:0;;40853:91;;;;-1:-1:-1;;;40853:91:0;;;;;;;:::i;:::-;40955:14;40961:7;40955:5;:14::i;:::-;-1:-1:-1;40987:4:0;40785:214;;;:::o;38775:43::-;38811:7;38775:43;:::o;27567:305::-;27728:41;27747:12;:10;:12::i;:::-;27761:7;27728:18;:41::i;:::-;27720:103;;;;-1:-1:-1;;;27720:103:0;;;;;;;:::i;:::-;27836:28;27846:4;27852:2;27856:7;27836:9;:28::i;27943:151::-;28047:39;28064:4;28070:2;28074:7;28047:39;;;;;;;;;;;;:16;:39::i;40328:166::-;40381:4;40423:12;40405:15;:30;40397:52;;;;-1:-1:-1;;;40397:52:0;;;;;;;:::i;:::-;40467:19;:17;:19::i;:::-;40460:26;;40328:166;:::o;38831:37::-;;;:::o;38686:25::-;;;;:::o;24874:239::-;24946:7;24982:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24982:16:0;25017:19;25009:73;;;;-1:-1:-1;;;25009:73:0;;;;;;;:::i;:::-;25100:5;24874:239;-1:-1:-1;;24874:239:0:o;39518:109::-;39571:7;39597:22;:20;:22::i;24604:208::-;24676:7;-1:-1:-1;;;;;24704:19:0;;24696:74;;;;-1:-1:-1;;;24696:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;24788:16:0;;;;;:9;:16;;;;;;;24604:208::o;37839:140::-;37240:9;:7;:9::i;:::-;37232:54;;;;-1:-1:-1;;;37232:54:0;;;;;;;:::i;:::-;37938:1:::1;37922:6:::0;;37901:40:::1;::::0;-1:-1:-1;;;;;37922:6:0;;::::1;::::0;37901:40:::1;::::0;37938:1;;37901:40:::1;37969:1;37952:19:::0;;-1:-1:-1;;;;;;37952:19:0::1;::::0;;37839:140::o;37028:79::-;37066:7;37093:6;-1:-1:-1;;;;;37093:6:0;37028:79;:::o;37394:94::-;37434:4;37474:6;;-1:-1:-1;;;;;37474:6:0;37458:12;:10;:12::i;:::-;-1:-1:-1;;;;;37458:22:0;;37451:29;;37394:94;:::o;39097:144::-;39176:4;37240:9;:7;:9::i;:::-;37232:54;;;;-1:-1:-1;;;37232:54:0;;;;;;;:::i;:::-;-1:-1:-1;39192:10:0::1;:19:::0;;-1:-1:-1;;;;;39192:19:0;::::1;-1:-1:-1::0;;;;;;39192:19:0;;::::1;;::::0;;;39097:144;;;:::o;25349:104::-;25405:13;25438:7;25431:14;;;;;:::i;26970:295::-;27085:12;:10;:12::i;:::-;-1:-1:-1;;;;;27073:24:0;:8;-1:-1:-1;;;;;27073:24:0;;;27065:62;;;;-1:-1:-1;;;27065:62:0;;;;;;;:::i;:::-;27185:8;27140:18;:32;27159:12;:10;:12::i;:::-;-1:-1:-1;;;;;27140:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;27140:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;27140:53:0;;;;;;;;;;;27224:12;:10;:12::i;:::-;-1:-1:-1;;;;;27209:48:0;;27248:8;27209:48;;;;;;:::i;:::-;;;;;;;;26970:295;;:::o;39249:133::-;39317:4;37240:9;:7;:9::i;:::-;37232:54;;;;-1:-1:-1;;;37232:54:0;;;;;;;:::i;:::-;-1:-1:-1;39333:10:0::1;:19:::0;39370:4:::1;::::0;39249:133::o;28165:285::-;28297:41;28316:12;:10;:12::i;:::-;28330:7;28297:18;:41::i;:::-;28289:103;;;;-1:-1:-1;;;28289:103:0;;;;;;;:::i;:::-;28403:39;28417:4;28423:2;28427:7;28436:5;28403:13;:39::i;:::-;28165:285;;;;:::o;40041:277::-;40124:4;37240:9;:7;:9::i;:::-;37232:54;;;;-1:-1:-1;;;37232:54:0;;;;;;;:::i;:::-;40166:12:::1;40148:15;:30;40140:56;;;;-1:-1:-1::0;;;40140:56:0::1;;;;;;;:::i;:::-;40211:6;40207:82;40224:13;40220:1;:17;40207:82;;;40257:19;:17;:19::i;:::-;-1:-1:-1::0;40238:3:0;::::1;::::0;::::1;:::i;:::-;;;;40207:82;;;-1:-1:-1::0;40306:4:0::1;::::0;40041:277;-1:-1:-1;;40041:277:0:o;38640:33::-;;;-1:-1:-1;;;;;38640:33:0;;:::o;38724:38::-;38759:3;38724:38;:::o;25524:360::-;25597:13;25631:16;25639:7;25631;:16::i;:::-;25623:76;;;;-1:-1:-1;;;25623:76:0;;;;;;;:::i;:::-;25712:21;25736:10;:8;:10::i;:::-;25712:34;;25788:1;25770:7;25764:21;:25;:112;;;;;;;;;;;;;;;;;25829:7;25838:18;:7;:16;:18::i;:::-;25812:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25764:112;25757:119;25524:360;-1:-1:-1;;;25524:360:0:o;27336:164::-;-1:-1:-1;;;;;27457:25:0;;;27433:4;27457:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27336:164::o;38134:109::-;37240:9;:7;:9::i;:::-;37232:54;;;;-1:-1:-1;;;37232:54:0;;;;;;;:::i;:::-;38207:28:::1;38226:8;38207:18;:28::i;:::-;38134:109:::0;:::o;39396:108::-;39486:10;;39396:108;:::o;31831:382::-;-1:-1:-1;;;;;31911:16:0;;31903:61;;;;-1:-1:-1;;;31903:61:0;;;;;;;:::i;:::-;31984:16;31992:7;31984;:16::i;:::-;31983:17;31975:58;;;;-1:-1:-1;;;31975:58:0;;;;;;;:::i;:::-;32046:45;32075:1;32079:2;32083:7;32046:20;:45::i;:::-;-1:-1:-1;;;;;32104:13:0;;;;;;:9;:13;;;;;:18;;32121:1;;32104:13;:18;;32121:1;;32104:18;:::i;:::-;;;;-1:-1:-1;;32133:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32133:21:0;-1:-1:-1;;;;;32133:21:0;;;;;;;;32172:33;;32133:16;;;32172:33;;32133:16;;32172:33;31831:382;;:::o;29917:127::-;29982:4;30006:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30006:16:0;:30;;;29917:127::o;641:98::-;721:10;641:98;:::o;33801:174::-;33876:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33876:29:0;-1:-1:-1;;;;;33876:29:0;;;;;;;;:24;;33930:23;33876:24;33930:14;:23::i;:::-;-1:-1:-1;;;;;33921:46:0;;;;;;;;;;;33801:174;;:::o;32442:360::-;32502:13;32518:23;32533:7;32518:14;:23::i;:::-;32502:39;;32554:48;32575:5;32590:1;32594:7;32554:20;:48::i;:::-;32643:29;32660:1;32664:7;32643:8;:29::i;:::-;-1:-1:-1;;;;;32685:16:0;;;;;;:9;:16;;;;;:21;;32705:1;;32685:16;:21;;32705:1;;32685:21;:::i;:::-;;;;-1:-1:-1;;32724:16:0;;;;:7;:16;;;;;;32717:23;;-1:-1:-1;;;;;;32717:23:0;;;32758:36;32732:7;;32724:16;-1:-1:-1;;;;;32758:36:0;;;;;32724:16;;32758:36;32442:360;;:::o;30211:355::-;30304:4;30329:16;30337:7;30329;:16::i;:::-;30321:73;;;;-1:-1:-1;;;30321:73:0;;;;;;;:::i;:::-;30405:13;30421:23;30436:7;30421:14;:23::i;:::-;30405:39;;30474:5;-1:-1:-1;;;;;30463:16:0;:7;-1:-1:-1;;;;;30463:16:0;;:51;;;;30507:7;-1:-1:-1;;;;;30483:31:0;:20;30495:7;30483:11;:20::i;:::-;-1:-1:-1;;;;;30483:31:0;;30463:51;:94;;;;30518:39;30542:5;30549:7;30518:23;:39::i;:::-;30455:103;30211:355;-1:-1:-1;;;;30211:355:0:o;33139:544::-;33264:4;-1:-1:-1;;;;;33237:31:0;:23;33252:7;33237:14;:23::i;:::-;-1:-1:-1;;;;;33237:31:0;;33229:85;;;;-1:-1:-1;;;33229:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33333:16:0;;33325:65;;;;-1:-1:-1;;;33325:65:0;;;;;;;:::i;:::-;33403:39;33424:4;33430:2;33434:7;33403:20;:39::i;:::-;33507:29;33524:1;33528:7;33507:8;:29::i;:::-;-1:-1:-1;;;;;33549:15:0;;;;;;:9;:15;;;;;:20;;33568:1;;33549:15;:20;;33568:1;;33549:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33580:13:0;;;;;;:9;:13;;;;;:18;;33597:1;;33580:13;:18;;33597:1;;33580:18;:::i;:::-;;;;-1:-1:-1;;33609:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33609:21:0;-1:-1:-1;;;;;33609:21:0;;;;;;;;;33648:27;;33609:16;;33648:27;;;;;;;33139:544;;;:::o;29332:272::-;29446:28;29456:4;29462:2;29466:7;29446:9;:28::i;:::-;29493:48;29516:4;29522:2;29526:7;29535:5;29493:22;:48::i;:::-;29485:111;;;;-1:-1:-1;;;29485:111:0;;;;;;;:::i;26021:124::-;26098:39;;;;;;;;;;;;;;;;;26021:124;:::o;17382:723::-;17438:13;17659:10;17655:53;;-1:-1:-1;17686:10:0;;;;;;;;;;;;-1:-1:-1;;;17686:10:0;;;;;;17655:53;17733:5;17718:12;17774:78;17781:9;;17774:78;;17807:8;;;;:::i;:::-;;-1:-1:-1;17830:10:0;;-1:-1:-1;17838:2:0;17830:10;;:::i;:::-;;;17774:78;;;17862:19;17894:6;17884:17;;;;;;-1:-1:-1;;;17884:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17884:17:0;;17862:39;;17912:154;17919:10;;17912:154;;17946:11;17956:1;17946:11;;:::i;:::-;;-1:-1:-1;18015:10:0;18023:2;18015:5;:10;:::i;:::-;18002:24;;:2;:24;:::i;:::-;17989:39;;17972:6;17979;17972:14;;;;;;-1:-1:-1;;;17972:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;17972:56:0;;;;;;;;-1:-1:-1;18043:11:0;18052:2;18043:11;;:::i;:::-;;;17912:154;;38349:229;-1:-1:-1;;;;;38423:22:0;;38415:73;;;;-1:-1:-1;;;38415:73:0;;;;;;;:::i;:::-;38525:6;;;38504:38;;-1:-1:-1;;;;;38504:38:0;;;;38525:6;;;38504:38;;;38553:6;:17;;-1:-1:-1;;;;;;38553:17:0;-1:-1:-1;;;;;38553:17:0;;;;;;;;;;38349:229::o;34540:843::-;34661:4;34687:15;:2;-1:-1:-1;;;;;34687:13:0;;:15::i;:::-;34683:693;;;34739:2;-1:-1:-1;;;;;34723:36:0;;34760:12;:10;:12::i;:::-;34774:4;34780:7;34789:5;34723:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34723:72:0;;;;;;;;-1:-1:-1;;34723:72:0;;;;;;;;;;;;:::i;:::-;;;34719:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34969:13:0;;34965:341;;35012:60;;-1:-1:-1;;;35012:60:0;;;;;;;:::i;34965:341::-;35256:6;35250:13;35241:6;35237:2;35233:15;35226:38;34719:602;-1:-1:-1;;;;;;34846:55:0;-1:-1:-1;;;34846:55:0;;-1:-1:-1;34839:62:0;;34683:693;-1:-1:-1;35360:4:0;34540:843;;;;;;:::o;9830:422::-;10197:20;10236:8;;;9830:422::o;14:259:1:-;;126:2;114:9;105:7;101:23;97:32;94:2;;;147:6;139;132:22;94:2;191:9;178:23;210:33;237:5;210:33;:::i;550:402::-;;;679:2;667:9;658:7;654:23;650:32;647:2;;;700:6;692;685:22;647:2;744:9;731:23;763:33;790:5;763:33;:::i;:::-;815:5;-1:-1:-1;872:2:1;857:18;;844:32;885:35;844:32;885:35;:::i;:::-;939:7;929:17;;;637:315;;;;;:::o;957:470::-;;;;1103:2;1091:9;1082:7;1078:23;1074:32;1071:2;;;1124:6;1116;1109:22;1071:2;1168:9;1155:23;1187:33;1214:5;1187:33;:::i;:::-;1239:5;-1:-1:-1;1296:2:1;1281:18;;1268:32;1309:35;1268:32;1309:35;:::i;:::-;1061:366;;1363:7;;-1:-1:-1;;;1417:2:1;1402:18;;;;1389:32;;1061:366::o;1432:1306::-;;;;;1604:3;1592:9;1583:7;1579:23;1575:33;1572:2;;;1626:6;1618;1611:22;1572:2;1670:9;1657:23;1689:33;1716:5;1689:33;:::i;:::-;1741:5;-1:-1:-1;1765:2:1;1804:18;;;1791:32;1832:35;1791:32;1832:35;:::i;:::-;1886:7;-1:-1:-1;1940:2:1;1925:18;;1912:32;;-1:-1:-1;1995:2:1;1980:18;;1967:32;2018:18;2048:14;;;2045:2;;;2080:6;2072;2065:22;2045:2;2123:6;2112:9;2108:22;2098:32;;2168:7;2161:4;2157:2;2153:13;2149:27;2139:2;;2195:6;2187;2180:22;2139:2;2236;2223:16;2258:2;2254;2251:10;2248:2;;;2264:18;;:::i;:::-;2313:2;2307:9;2382:2;2363:13;;-1:-1:-1;;2359:27:1;2347:40;;2343:49;;2407:18;;;2427:22;;;2404:46;2401:2;;;2453:18;;:::i;:::-;2489:2;2482:22;2513:18;;;2550:11;;;2546:20;;2543:33;-1:-1:-1;2540:2:1;;;2594:6;2586;2579:22;2540:2;2655;2650;2646;2642:11;2637:2;2629:6;2625:15;2612:46;2678:15;;;2674:24;;;2667:40;;;;-1:-1:-1;1562:1176:1;;;;-1:-1:-1;1562:1176:1;;-1:-1:-1;;1562:1176:1:o;2743:438::-;;;2869:2;2857:9;2848:7;2844:23;2840:32;2837:2;;;2890:6;2882;2875:22;2837:2;2934:9;2921:23;2953:33;2980:5;2953:33;:::i;:::-;3005:5;-1:-1:-1;3062:2:1;3047:18;;3034:32;3104:15;;3097:23;3085:36;;3075:2;;3140:6;3132;3125:22;3186:327;;;3315:2;3303:9;3294:7;3290:23;3286:32;3283:2;;;3336:6;3328;3321:22;3283:2;3380:9;3367:23;3399:33;3426:5;3399:33;:::i;:::-;3451:5;3503:2;3488:18;;;;3475:32;;-1:-1:-1;;;3273:240:1:o;3518:257::-;;3629:2;3617:9;3608:7;3604:23;3600:32;3597:2;;;3650:6;3642;3635:22;3597:2;3694:9;3681:23;3713:32;3739:5;3713:32;:::i;3780:261::-;;3902:2;3890:9;3881:7;3877:23;3873:32;3870:2;;;3923:6;3915;3908:22;3870:2;3960:9;3954:16;3979:32;4005:5;3979:32;:::i;4046:190::-;;4158:2;4146:9;4137:7;4133:23;4129:32;4126:2;;;4179:6;4171;4164:22;4126:2;-1:-1:-1;4207:23:1;;4116:120;-1:-1:-1;4116:120:1:o;4241:259::-;;4322:5;4316:12;4349:6;4344:3;4337:19;4365:63;4421:6;4414:4;4409:3;4405:14;4398:4;4391:5;4387:16;4365:63;:::i;:::-;4482:2;4461:15;-1:-1:-1;;4457:29:1;4448:39;;;;4489:4;4444:50;;4292:208;-1:-1:-1;;4292:208:1:o;4505:470::-;;4722:6;4716:13;4738:53;4784:6;4779:3;4772:4;4764:6;4760:17;4738:53;:::i;:::-;4854:13;;4813:16;;;;4876:57;4854:13;4813:16;4910:4;4898:17;;4876:57;:::i;:::-;4949:20;;4692:283;-1:-1:-1;;;;4692:283:1:o;4980:203::-;-1:-1:-1;;;;;5144:32:1;;;;5126:51;;5114:2;5099:18;;5081:102::o;5412:490::-;-1:-1:-1;;;;;5681:15:1;;;5663:34;;5733:15;;5728:2;5713:18;;5706:43;5780:2;5765:18;;5758:34;;;5828:3;5823:2;5808:18;;5801:31;;;5412:490;;5849:47;;5876:19;;5868:6;5849:47;:::i;:::-;5841:55;5615:287;-1:-1:-1;;;;;;5615:287:1:o;5907:187::-;6072:14;;6065:22;6047:41;;6035:2;6020:18;;6002:92::o;6099:221::-;;6248:2;6237:9;6230:21;6268:46;6310:2;6299:9;6295:18;6287:6;6268:46;:::i;6325:414::-;6527:2;6509:21;;;6566:2;6546:18;;;6539:30;6605:34;6600:2;6585:18;;6578:62;-1:-1:-1;;;6671:2:1;6656:18;;6649:48;6729:3;6714:19;;6499:240::o;6744:402::-;6946:2;6928:21;;;6985:2;6965:18;;;6958:30;7024:34;7019:2;7004:18;;6997:62;-1:-1:-1;;;7090:2:1;7075:18;;7068:36;7136:3;7121:19;;6918:228::o;7151:352::-;7353:2;7335:21;;;7392:2;7372:18;;;7365:30;7431;7426:2;7411:18;;7404:58;7494:2;7479:18;;7325:178::o;7508:334::-;7710:2;7692:21;;;7749:2;7729:18;;;7722:30;-1:-1:-1;;;7783:2:1;7768:18;;7761:40;7833:2;7818:18;;7682:160::o;7847:400::-;8049:2;8031:21;;;8088:2;8068:18;;;8061:30;8127:34;8122:2;8107:18;;8100:62;-1:-1:-1;;;8193:2:1;8178:18;;8171:34;8237:3;8222:19;;8021:226::o;8252:349::-;8454:2;8436:21;;;8493:2;8473:18;;;8466:30;8532:27;8527:2;8512:18;;8505:55;8592:2;8577:18;;8426:175::o;8606:408::-;8808:2;8790:21;;;8847:2;8827:18;;;8820:30;8886:34;8881:2;8866:18;;8859:62;-1:-1:-1;;;8952:2:1;8937:18;;8930:42;9004:3;8989:19;;8780:234::o;9019:420::-;9221:2;9203:21;;;9260:2;9240:18;;;9233:30;9299:34;9294:2;9279:18;;9272:62;9370:26;9365:2;9350:18;;9343:54;9429:3;9414:19;;9193:246::o;9444:406::-;9646:2;9628:21;;;9685:2;9665:18;;;9658:30;9724:34;9719:2;9704:18;;9697:62;-1:-1:-1;;;9790:2:1;9775:18;;9768:40;9840:3;9825:19;;9618:232::o;9855:405::-;10057:2;10039:21;;;10096:2;10076:18;;;10069:30;10135:34;10130:2;10115:18;;10108:62;-1:-1:-1;;;10201:2:1;10186:18;;10179:39;10250:3;10235:19;;10029:231::o;10265:356::-;10467:2;10449:21;;;10486:18;;;10479:30;10545:34;10540:2;10525:18;;10518:62;10612:2;10597:18;;10439:182::o;10626:408::-;10828:2;10810:21;;;10867:2;10847:18;;;10840:30;10906:34;10901:2;10886:18;;10879:62;-1:-1:-1;;;10972:2:1;10957:18;;10950:42;11024:3;11009:19;;10800:234::o;11039:356::-;11241:2;11223:21;;;11260:18;;;11253:30;11319:34;11314:2;11299:18;;11292:62;11386:2;11371:18;;11213:182::o;11400:340::-;11602:2;11584:21;;;11641:2;11621:18;;;11614:30;-1:-1:-1;;;11675:2:1;11660:18;;11653:46;11731:2;11716:18;;11574:166::o;11745:405::-;11947:2;11929:21;;;11986:2;11966:18;;;11959:30;12025:34;12020:2;12005:18;;11998:62;-1:-1:-1;;;12091:2:1;12076:18;;12069:39;12140:3;12125:19;;11919:231::o;12155:411::-;12357:2;12339:21;;;12396:2;12376:18;;;12369:30;12435:34;12430:2;12415:18;;12408:62;-1:-1:-1;;;12501:2:1;12486:18;;12479:45;12556:3;12541:19;;12329:237::o;12571:338::-;12773:2;12755:21;;;12812:2;12792:18;;;12785:30;-1:-1:-1;;;12846:2:1;12831:18;;12824:44;12900:2;12885:18;;12745:164::o;12914:397::-;13116:2;13098:21;;;13155:2;13135:18;;;13128:30;13194:34;13189:2;13174:18;;13167:62;-1:-1:-1;;;13260:2:1;13245:18;;13238:31;13301:3;13286:19;;13088:223::o;13316:339::-;13518:2;13500:21;;;13557:2;13537:18;;;13530:30;-1:-1:-1;;;13591:2:1;13576:18;;13569:45;13646:2;13631:18;;13490:165::o;13660:413::-;13862:2;13844:21;;;13901:2;13881:18;;;13874:30;13940:34;13935:2;13920:18;;13913:62;-1:-1:-1;;;14006:2:1;13991:18;;13984:47;14063:3;14048:19;;13834:239::o;14078:177::-;14224:25;;;14212:2;14197:18;;14179:76::o;14260:128::-;;14331:1;14327:6;14324:1;14321:13;14318:2;;;14337:18;;:::i;:::-;-1:-1:-1;14373:9:1;;14308:80::o;14393:120::-;;14459:1;14449:2;;14464:18;;:::i;:::-;-1:-1:-1;14498:9:1;;14439:74::o;14518:125::-;;14586:1;14583;14580:8;14577:2;;;14591:18;;:::i;:::-;-1:-1:-1;14628:9:1;;14567:76::o;14648:258::-;14720:1;14730:113;14744:6;14741:1;14738:13;14730:113;;;14820:11;;;14814:18;14801:11;;;14794:39;14766:2;14759:10;14730:113;;;14861:6;14858:1;14855:13;14852:2;;;-1:-1:-1;;14896:1:1;14878:16;;14871:27;14701:205::o;14911:380::-;14996:1;14986:12;;15043:1;15033:12;;;15054:2;;15108:4;15100:6;15096:17;15086:27;;15054:2;15161;15153:6;15150:14;15130:18;15127:38;15124:2;;;15207:10;15202:3;15198:20;15195:1;15188:31;15242:4;15239:1;15232:15;15270:4;15267:1;15260:15;15124:2;;14966:325;;;:::o;15296:135::-;;-1:-1:-1;;15356:17:1;;15353:2;;;15376:18;;:::i;:::-;-1:-1:-1;15423:1:1;15412:13;;15343:88::o;15436:112::-;;15494:1;15484:2;;15499:18;;:::i;:::-;-1:-1:-1;15533:9:1;;15474:74::o;15553:127::-;15614:10;15609:3;15605:20;15602:1;15595:31;15645:4;15642:1;15635:15;15669:4;15666:1;15659:15;15685:127;15746:10;15741:3;15737:20;15734:1;15727:31;15777:4;15774:1;15767:15;15801:4;15798:1;15791:15;15817:127;15878:10;15873:3;15869:20;15866:1;15859:31;15909:4;15906:1;15899:15;15933:4;15930:1;15923:15;15949:133;-1:-1:-1;;;;;16026:31:1;;16016:42;;16006:2;;16072:1;16069;16062:12;16087:133;-1:-1:-1;;;;;;16163:32:1;;16153:43;;16143:2;;16210:1;16207;16200:12

Swarm Source

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