ETH Price: $3,160.38 (+2.92%)
Gas: 2 Gwei

Token

Pixel Apes (Apes)
 

Overview

Max Total Supply

1,218 Apes

Holders

261

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
5cheel.eth
Balance
1 Apes
0x2a077095971c14e03ff05f4d70f8c53ed45242d8
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:
Apes

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File @openzeppelin/contracts/utils/introspection/[email protected]

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

// File @openzeppelin/contracts/token/ERC721/[email protected]



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/[email protected]



pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]



pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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


// File @openzeppelin/contracts/utils/[email protected]



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]



pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/utils/[email protected]



pragma solidity ^0.8.0;

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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]



pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/[email protected]



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.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @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}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

        require(
            _msgSender() == owner || 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 {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        
        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 || 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 {
                    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` and `to` are never both zero.
     *
     * 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 @openzeppelin/contracts/token/ERC721/extensions/[email protected]



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 @openzeppelin/contracts/token/ERC721/extensions/[email protected]



pragma solidity ^0.8.0;


/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

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

    /**
     * @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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}


// File @openzeppelin/contracts/access/[email protected]



pragma solidity ^0.8.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;
    
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }
    
    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

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

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

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


// File @openzeppelin/contracts/utils/math/[email protected]



pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

pragma solidity ^0.8.0;

contract Apes is ERC721Enumerable, Ownable {
    using Strings for uint256;
    
    struct Investor {
        uint256 amountLeft;
        bool locked;
    }

    uint256 public MAX_APES = 4313;

    string internal _baseTokenURI;
    
    mapping(address => bool) public whitelisted;
    mapping(address => Investor) public investorDetails;

    
    constructor(string memory baseURI) ERC721("Pixel Apes", "Apes")  {
        updateBaseURI(baseURI);
    }
    
    function whitelist(address[] memory _investorAddresses, uint256[] memory _tokenAmount) external onlyOwner {
        require(_investorAddresses.length == _tokenAmount.length,"Input array's length mismatch");
        for (uint i = 0; i < _investorAddresses.length; i++) {
            whitelisted[_investorAddresses[i]] = true;
            investorDetails[_investorAddresses[i]] = Investor(_tokenAmount[i],false);
        }
    }
    
    function reclaim() external {
        require(totalSupply() < MAX_APES, "All Apes have not been reclaimed.");
        require(whitelisted[msg.sender]);
        require(!investorDetails[msg.sender].locked);
        uint256 _amount = investorDetails[msg.sender].amountLeft;
        investorDetails[msg.sender] = Investor(0, true);
        for(uint256 i = 0; i < _amount; i++) {
            _safeMint(msg.sender, totalSupply());
        
        }
    }
    
    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }

    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(), ".json")) : "";
    }
    
    function getBaseURI() public onlyOwner view returns (string memory) {
        return _baseURI();
    }
    
    function updateMax(uint256 maxape) external onlyOwner {
        require(maxape < 4313, "Cannot increase max apes.");
        MAX_APES = maxape;
    }
    
    function updateBaseURI(string memory baseURI) public onlyOwner {
        _baseTokenURI = baseURI;
    }
    
    function withdrawAll() public payable onlyOwner {
        require(payable(_msgSender()).send(address(this).balance));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_APES","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"investorDetails","outputs":[{"internalType":"uint256","name":"amountLeft","type":"uint256"},{"internalType":"bool","name":"locked","type":"bool"}],"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":"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":"reclaim","outputs":[],"stateMutability":"nonpayable","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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"updateBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxape","type":"uint256"}],"name":"updateMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_investorAddresses","type":"address[]"},{"internalType":"uint256[]","name":"_tokenAmount","type":"uint256[]"}],"name":"whitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526110d9600b553480156200001757600080fd5b506040516200285f3803806200285f8339810160408190526200003a9162000240565b604080518082018252600a815269506978656c204170657360b01b6020808301918252835180850190945260048452634170657360e01b90840152815191929162000088916000916200019a565b5080516200009e9060019060208401906200019a565b505050620000bb620000b5620000cd60201b60201c565b620000d1565b620000c68162000123565b5062000397565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200012d620000cd565b6001600160a01b0316620001406200018b565b6001600160a01b031614620001725760405162461bcd60e51b815260040162000169906200030f565b60405180910390fd5b80516200018790600c9060208401906200019a565b5050565b600a546001600160a01b031690565b828054620001a89062000344565b90600052602060002090601f016020900481019282620001cc576000855562000217565b82601f10620001e757805160ff191683800117855562000217565b8280016001018555821562000217579182015b8281111562000217578251825591602001919060010190620001fa565b506200022592915062000229565b5090565b5b808211156200022557600081556001016200022a565b6000602080838503121562000253578182fd5b82516001600160401b03808211156200026a578384fd5b818501915085601f8301126200027e578384fd5b81518181111562000293576200029362000381565b604051601f8201601f1916810185018381118282101715620002b957620002b962000381565b6040528181528382018501881015620002d0578586fd5b8592505b81831015620002f35783830185015181840186015291840191620002d4565b818311156200030457858583830101525b979650505050505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6002810460018216806200035957607f821691505b602082108114156200037b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6124b880620003a76000396000f3fe6080604052600436106101b75760003560e01c806380e9071b116100ec578063b88d4fde1161008a578063cf23574311610064578063cf23574314610499578063d936547e146104b9578063e985e9c5146104d9578063f2fde38b146104f9576101b7565b8063b88d4fde14610444578063bb8a16bd14610464578063c87b56dd14610479576101b7565b8063931688cb116100c6578063931688cb146103c157806395d89b41146103e157806399cfdfb3146103f6578063a22cb46514610424576101b7565b806380e9071b1461038f578063853828b6146103a45780638da5cb5b146103ac576101b7565b806342842e0e116101595780636352211e116101335780636352211e1461032557806370a0823114610345578063714c539814610365578063715018a61461037a576101b7565b806342842e0e146102c5578063444a1cec146102e55780634f6ccce714610305576101b7565b8063095ea7b311610195578063095ea7b31461024157806318160ddd1461026357806323b872dd146102855780632f745c59146102a5576101b7565b806301ffc9a7146101bc57806306fdde03146101f2578063081812fc14610214575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611bbf565b610519565b6040516101e99190611d20565b60405180910390f35b3480156101fe57600080fd5b50610207610546565b6040516101e99190611d2b565b34801561022057600080fd5b5061023461022f366004611c3d565b6105d8565b6040516101e99190611ccf565b34801561024d57600080fd5b5061026161025c366004611ad8565b610624565b005b34801561026f57600080fd5b506102786106bc565b6040516101e991906122ea565b34801561029157600080fd5b506102616102a03660046119ea565b6106c2565b3480156102b157600080fd5b506102786102c0366004611ad8565b6106fa565b3480156102d157600080fd5b506102616102e03660046119ea565b61074c565b3480156102f157600080fd5b50610261610300366004611c3d565b61078e565b34801561031157600080fd5b50610278610320366004611c3d565b6107f3565b34801561033157600080fd5b50610234610340366004611c3d565b61084e565b34801561035157600080fd5b5061027861036036600461199e565b610883565b34801561037157600080fd5b506102076108c7565b34801561038657600080fd5b50610261610915565b34801561039b57600080fd5b50610261610960565b610261610a3b565b3480156103b857600080fd5b50610234610ab2565b3480156103cd57600080fd5b506102616103dc366004611bf7565b610ac1565b3480156103ed57600080fd5b50610207610b13565b34801561040257600080fd5b5061041661041136600461199e565b610b22565b6040516101e99291906122f3565b34801561043057600080fd5b5061026161043f366004611a9e565b610b3e565b34801561045057600080fd5b5061026161045f366004611a25565b610c0c565b34801561047057600080fd5b50610278610c4b565b34801561048557600080fd5b50610207610494366004611c3d565b610c51565b3480156104a557600080fd5b506102616104b4366004611b01565b610cd4565b3480156104c557600080fd5b506101dc6104d436600461199e565b610e59565b3480156104e557600080fd5b506101dc6104f43660046119b8565b610e6e565b34801561050557600080fd5b5061026161051436600461199e565b610e9c565b60006001600160e01b0319821663780e9d6360e01b148061053e575061053e82610f0d565b90505b919050565b606060008054610555906123c0565b80601f0160208091040260200160405190810160405280929190818152602001828054610581906123c0565b80156105ce5780601f106105a3576101008083540402835291602001916105ce565b820191906000526020600020905b8154815290600101906020018083116105b157829003601f168201915b5050505050905090565b60006105e382610f4d565b6106085760405162461bcd60e51b81526004016105ff906120f3565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061062f8261084e565b9050806001600160a01b0316836001600160a01b031614156106635760405162461bcd60e51b81526004016105ff9061220c565b806001600160a01b0316610675610f6a565b6001600160a01b031614806106915750610691816104f4610f6a565b6106ad5760405162461bcd60e51b81526004016105ff90611f56565b6106b78383610f6e565b505050565b60085490565b6106d36106cd610f6a565b82610fdc565b6106ef5760405162461bcd60e51b81526004016105ff9061224d565b6106b7838383611061565b600061070583610883565b82106107235760405162461bcd60e51b81526004016105ff90611d3e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6107576106cd610f6a565b6107735760405162461bcd60e51b81526004016105ff9061224d565b6106b783838360405180602001604052806000815250610c0c565b610796610f6a565b6001600160a01b03166107a7610ab2565b6001600160a01b0316146107cd5760405162461bcd60e51b81526004016105ff9061213f565b6110d981106107ee5760405162461bcd60e51b81526004016105ff90612087565b600b55565b60006107fd6106bc565b821061081b5760405162461bcd60e51b81526004016105ff9061229e565b6008828154811061083c57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b03168061053e5760405162461bcd60e51b81526004016105ff9061203e565b60006001600160a01b0382166108ab5760405162461bcd60e51b81526004016105ff90611ff4565b506001600160a01b031660009081526003602052604090205490565b60606108d1610f6a565b6001600160a01b03166108e2610ab2565b6001600160a01b0316146109085760405162461bcd60e51b81526004016105ff9061213f565b61091061118e565b905090565b61091d610f6a565b6001600160a01b031661092e610ab2565b6001600160a01b0316146109545760405162461bcd60e51b81526004016105ff9061213f565b61095e600061119d565b565b600b5461096b6106bc565b106109885760405162461bcd60e51b81526004016105ff90611fb3565b336000908152600d602052604090205460ff166109a457600080fd5b336000908152600e602052604090206001015460ff16156109c457600080fd5b336000818152600e602081815260408084208054825180840190935285835260018385018181529787529490935290518155935191909301805460ff19169115159190911790555b81811015610a3757610a2533610a206106bc565b6111ef565b80610a2f816123fb565b915050610a0c565b5050565b610a43610f6a565b6001600160a01b0316610a54610ab2565b6001600160a01b031614610a7a5760405162461bcd60e51b81526004016105ff9061213f565b610a82610f6a565b6001600160a01b03166108fc479081150290604051600060405180830381858888f1935050505061095e57600080fd5b600a546001600160a01b031690565b610ac9610f6a565b6001600160a01b0316610ada610ab2565b6001600160a01b031614610b005760405162461bcd60e51b81526004016105ff9061213f565b8051610a3790600c90602084019061182a565b606060018054610555906123c0565b600e602052600090815260409020805460019091015460ff1682565b610b46610f6a565b6001600160a01b0316826001600160a01b03161415610b775760405162461bcd60e51b81526004016105ff90611e9c565b8060056000610b84610f6a565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610bc8610f6a565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610c009190611d20565b60405180910390a35050565b610c1d610c17610f6a565b83610fdc565b610c395760405162461bcd60e51b81526004016105ff9061224d565b610c4584848484611209565b50505050565b600b5481565b6060610c5c82610f4d565b610c785760405162461bcd60e51b81526004016105ff906121bd565b6000610c8261118e565b90506000815111610ca25760405180602001604052806000815250610ccd565b80610cac8461123c565b604051602001610cbd929190611c81565b6040516020818303038152906040525b9392505050565b610cdc610f6a565b6001600160a01b0316610ced610ab2565b6001600160a01b031614610d135760405162461bcd60e51b81526004016105ff9061213f565b8051825114610d345760405162461bcd60e51b81526004016105ff90611ed3565b60005b82518110156106b7576001600d6000858481518110610d6657634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055506040518060400160405280838381518110610dd057634e487b7160e01b600052603260045260246000fd5b6020026020010151815260200160001515815250600e6000858481518110610e0857634e487b7160e01b600052603260045260246000fd5b6020908102919091018101516001600160a01b0316825281810192909252604001600020825181559101516001909101805460ff191691151591909117905580610e51816123fb565b915050610d37565b600d6020526000908152604090205460ff1681565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610ea4610f6a565b6001600160a01b0316610eb5610ab2565b6001600160a01b031614610edb5760405162461bcd60e51b81526004016105ff9061213f565b6001600160a01b038116610f015760405162461bcd60e51b81526004016105ff90611ddb565b610f0a8161119d565b50565b60006001600160e01b031982166380ac58cd60e01b1480610f3e57506001600160e01b03198216635b5e139f60e01b145b8061053e575061053e82611357565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610fa38261084e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610fe782610f4d565b6110035760405162461bcd60e51b81526004016105ff90611f0a565b600061100e8361084e565b9050806001600160a01b0316846001600160a01b031614806110495750836001600160a01b031661103e846105d8565b6001600160a01b0316145b8061105957506110598185610e6e565b949350505050565b826001600160a01b03166110748261084e565b6001600160a01b03161461109a5760405162461bcd60e51b81526004016105ff90612174565b6001600160a01b0382166110c05760405162461bcd60e51b81526004016105ff90611e58565b6110cb838383611370565b6110d6600082610f6e565b6001600160a01b03831660009081526003602052604081208054600192906110ff90849061237d565b90915550506001600160a01b038216600090815260036020526040812080546001929061112d908490612351565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6060600c8054610555906123c0565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610a378282604051806020016040528060008152506113f9565b611214848484611061565b6112208484848461142c565b610c455760405162461bcd60e51b81526004016105ff90611d89565b60608161126157506040805180820190915260018152600360fc1b6020820152610541565b8160005b811561128b5780611275816123fb565b91506112849050600a83612369565b9150611265565b60008167ffffffffffffffff8111156112b457634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156112de576020820181803683370190505b5090505b8415611059576112f360018361237d565b9150611300600a86612416565b61130b906030612351565b60f81b81838151811061132e57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611350600a86612369565b94506112e2565b6001600160e01b031981166301ffc9a760e01b14919050565b61137b8383836106b7565b6001600160a01b0383166113975761139281611547565b6113ba565b816001600160a01b0316836001600160a01b0316146113ba576113ba838261158b565b6001600160a01b0382166113d6576113d181611628565b6106b7565b826001600160a01b0316826001600160a01b0316146106b7576106b78282611701565b6114038383611745565b611410600084848461142c565b6106b75760405162461bcd60e51b81526004016105ff90611d89565b6000611440846001600160a01b0316611824565b1561153c57836001600160a01b031663150b7a0261145c610f6a565b8786866040518563ffffffff1660e01b815260040161147e9493929190611ce3565b602060405180830381600087803b15801561149857600080fd5b505af19250505080156114c8575060408051601f3d908101601f191682019092526114c591810190611bdb565b60015b611522573d8080156114f6576040519150601f19603f3d011682016040523d82523d6000602084013e6114fb565b606091505b50805161151a5760405162461bcd60e51b81526004016105ff90611d89565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611059565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6000600161159884610883565b6115a2919061237d565b6000838152600760205260409020549091508082146115f5576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061163a9060019061237d565b6000838152600960205260408120546008805493945090928490811061167057634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061169f57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806116e557634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061170c83610883565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661176b5760405162461bcd60e51b81526004016105ff906120be565b61177481610f4d565b156117915760405162461bcd60e51b81526004016105ff90611e21565b61179d60008383611370565b6001600160a01b03821660009081526003602052604081208054600192906117c6908490612351565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b828054611836906123c0565b90600052602060002090601f016020900481019282611858576000855561189e565b82601f1061187157805160ff191683800117855561189e565b8280016001018555821561189e579182015b8281111561189e578251825591602001919060010190611883565b506118aa9291506118ae565b5090565b5b808211156118aa57600081556001016118af565b600067ffffffffffffffff8311156118dd576118dd612456565b6118f0601f8401601f1916602001612303565b905082815283838301111561190457600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461054157600080fd5b600082601f830112611942578081fd5b813560206119576119528361232d565b612303565b8281528181019085830183850287018401881015611973578586fd5b855b8581101561199157813584529284019290840190600101611975565b5090979650505050505050565b6000602082840312156119af578081fd5b610ccd8261191b565b600080604083850312156119ca578081fd5b6119d38361191b565b91506119e16020840161191b565b90509250929050565b6000806000606084860312156119fe578081fd5b611a078461191b565b9250611a156020850161191b565b9150604084013590509250925092565b60008060008060808587031215611a3a578081fd5b611a438561191b565b9350611a516020860161191b565b925060408501359150606085013567ffffffffffffffff811115611a73578182fd5b8501601f81018713611a83578182fd5b611a92878235602084016118c3565b91505092959194509250565b60008060408385031215611ab0578182fd5b611ab98361191b565b915060208301358015158114611acd578182fd5b809150509250929050565b60008060408385031215611aea578182fd5b611af38361191b565b946020939093013593505050565b60008060408385031215611b13578182fd5b823567ffffffffffffffff80821115611b2a578384fd5b818501915085601f830112611b3d578384fd5b81356020611b4d6119528361232d565b82815281810190858301838502870184018b1015611b69578889fd5b8896505b84871015611b9257611b7e8161191b565b835260019690960195918301918301611b6d565b5096505086013592505080821115611ba8578283fd5b50611bb585828601611932565b9150509250929050565b600060208284031215611bd0578081fd5b8135610ccd8161246c565b600060208284031215611bec578081fd5b8151610ccd8161246c565b600060208284031215611c08578081fd5b813567ffffffffffffffff811115611c1e578182fd5b8201601f81018413611c2e578182fd5b611059848235602084016118c3565b600060208284031215611c4e578081fd5b5035919050565b60008151808452611c6d816020860160208601612394565b601f01601f19169290920160200192915050565b60008351611c93818460208801612394565b602f60f81b9083019081528351611cb1816001840160208801612394565b64173539b7b760d91b60019290910191820152600601949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d1690830184611c55565b9695505050505050565b901515815260200190565b600060208252610ccd6020830184611c55565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601d908201527f496e7075742061727261792773206c656e677468206d69736d61746368000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b60208082526021908201527f416c6c20417065732068617665206e6f74206265656e207265636c61696d65646040820152601760f91b606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b60208082526019908201527f43616e6e6f7420696e637265617365206d617820617065732e00000000000000604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b90815260200190565b9182521515602082015260400190565b60405181810167ffffffffffffffff8111828210171561232557612325612456565b604052919050565b600067ffffffffffffffff82111561234757612347612456565b5060209081020190565b600082198211156123645761236461242a565b500190565b60008261237857612378612440565b500490565b60008282101561238f5761238f61242a565b500390565b60005b838110156123af578181015183820152602001612397565b83811115610c455750506000910152565b6002810460018216806123d457607f821691505b602082108114156123f557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561240f5761240f61242a565b5060010190565b60008261242557612425612440565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610f0a57600080fdfea2646970667358221220c5f0df2c866614bb2d951c37e32b955921a3590e2c31bdad0811c946e87361e864736f6c6343000800003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101b75760003560e01c806380e9071b116100ec578063b88d4fde1161008a578063cf23574311610064578063cf23574314610499578063d936547e146104b9578063e985e9c5146104d9578063f2fde38b146104f9576101b7565b8063b88d4fde14610444578063bb8a16bd14610464578063c87b56dd14610479576101b7565b8063931688cb116100c6578063931688cb146103c157806395d89b41146103e157806399cfdfb3146103f6578063a22cb46514610424576101b7565b806380e9071b1461038f578063853828b6146103a45780638da5cb5b146103ac576101b7565b806342842e0e116101595780636352211e116101335780636352211e1461032557806370a0823114610345578063714c539814610365578063715018a61461037a576101b7565b806342842e0e146102c5578063444a1cec146102e55780634f6ccce714610305576101b7565b8063095ea7b311610195578063095ea7b31461024157806318160ddd1461026357806323b872dd146102855780632f745c59146102a5576101b7565b806301ffc9a7146101bc57806306fdde03146101f2578063081812fc14610214575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611bbf565b610519565b6040516101e99190611d20565b60405180910390f35b3480156101fe57600080fd5b50610207610546565b6040516101e99190611d2b565b34801561022057600080fd5b5061023461022f366004611c3d565b6105d8565b6040516101e99190611ccf565b34801561024d57600080fd5b5061026161025c366004611ad8565b610624565b005b34801561026f57600080fd5b506102786106bc565b6040516101e991906122ea565b34801561029157600080fd5b506102616102a03660046119ea565b6106c2565b3480156102b157600080fd5b506102786102c0366004611ad8565b6106fa565b3480156102d157600080fd5b506102616102e03660046119ea565b61074c565b3480156102f157600080fd5b50610261610300366004611c3d565b61078e565b34801561031157600080fd5b50610278610320366004611c3d565b6107f3565b34801561033157600080fd5b50610234610340366004611c3d565b61084e565b34801561035157600080fd5b5061027861036036600461199e565b610883565b34801561037157600080fd5b506102076108c7565b34801561038657600080fd5b50610261610915565b34801561039b57600080fd5b50610261610960565b610261610a3b565b3480156103b857600080fd5b50610234610ab2565b3480156103cd57600080fd5b506102616103dc366004611bf7565b610ac1565b3480156103ed57600080fd5b50610207610b13565b34801561040257600080fd5b5061041661041136600461199e565b610b22565b6040516101e99291906122f3565b34801561043057600080fd5b5061026161043f366004611a9e565b610b3e565b34801561045057600080fd5b5061026161045f366004611a25565b610c0c565b34801561047057600080fd5b50610278610c4b565b34801561048557600080fd5b50610207610494366004611c3d565b610c51565b3480156104a557600080fd5b506102616104b4366004611b01565b610cd4565b3480156104c557600080fd5b506101dc6104d436600461199e565b610e59565b3480156104e557600080fd5b506101dc6104f43660046119b8565b610e6e565b34801561050557600080fd5b5061026161051436600461199e565b610e9c565b60006001600160e01b0319821663780e9d6360e01b148061053e575061053e82610f0d565b90505b919050565b606060008054610555906123c0565b80601f0160208091040260200160405190810160405280929190818152602001828054610581906123c0565b80156105ce5780601f106105a3576101008083540402835291602001916105ce565b820191906000526020600020905b8154815290600101906020018083116105b157829003601f168201915b5050505050905090565b60006105e382610f4d565b6106085760405162461bcd60e51b81526004016105ff906120f3565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061062f8261084e565b9050806001600160a01b0316836001600160a01b031614156106635760405162461bcd60e51b81526004016105ff9061220c565b806001600160a01b0316610675610f6a565b6001600160a01b031614806106915750610691816104f4610f6a565b6106ad5760405162461bcd60e51b81526004016105ff90611f56565b6106b78383610f6e565b505050565b60085490565b6106d36106cd610f6a565b82610fdc565b6106ef5760405162461bcd60e51b81526004016105ff9061224d565b6106b7838383611061565b600061070583610883565b82106107235760405162461bcd60e51b81526004016105ff90611d3e565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6107576106cd610f6a565b6107735760405162461bcd60e51b81526004016105ff9061224d565b6106b783838360405180602001604052806000815250610c0c565b610796610f6a565b6001600160a01b03166107a7610ab2565b6001600160a01b0316146107cd5760405162461bcd60e51b81526004016105ff9061213f565b6110d981106107ee5760405162461bcd60e51b81526004016105ff90612087565b600b55565b60006107fd6106bc565b821061081b5760405162461bcd60e51b81526004016105ff9061229e565b6008828154811061083c57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b03168061053e5760405162461bcd60e51b81526004016105ff9061203e565b60006001600160a01b0382166108ab5760405162461bcd60e51b81526004016105ff90611ff4565b506001600160a01b031660009081526003602052604090205490565b60606108d1610f6a565b6001600160a01b03166108e2610ab2565b6001600160a01b0316146109085760405162461bcd60e51b81526004016105ff9061213f565b61091061118e565b905090565b61091d610f6a565b6001600160a01b031661092e610ab2565b6001600160a01b0316146109545760405162461bcd60e51b81526004016105ff9061213f565b61095e600061119d565b565b600b5461096b6106bc565b106109885760405162461bcd60e51b81526004016105ff90611fb3565b336000908152600d602052604090205460ff166109a457600080fd5b336000908152600e602052604090206001015460ff16156109c457600080fd5b336000818152600e602081815260408084208054825180840190935285835260018385018181529787529490935290518155935191909301805460ff19169115159190911790555b81811015610a3757610a2533610a206106bc565b6111ef565b80610a2f816123fb565b915050610a0c565b5050565b610a43610f6a565b6001600160a01b0316610a54610ab2565b6001600160a01b031614610a7a5760405162461bcd60e51b81526004016105ff9061213f565b610a82610f6a565b6001600160a01b03166108fc479081150290604051600060405180830381858888f1935050505061095e57600080fd5b600a546001600160a01b031690565b610ac9610f6a565b6001600160a01b0316610ada610ab2565b6001600160a01b031614610b005760405162461bcd60e51b81526004016105ff9061213f565b8051610a3790600c90602084019061182a565b606060018054610555906123c0565b600e602052600090815260409020805460019091015460ff1682565b610b46610f6a565b6001600160a01b0316826001600160a01b03161415610b775760405162461bcd60e51b81526004016105ff90611e9c565b8060056000610b84610f6a565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610bc8610f6a565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610c009190611d20565b60405180910390a35050565b610c1d610c17610f6a565b83610fdc565b610c395760405162461bcd60e51b81526004016105ff9061224d565b610c4584848484611209565b50505050565b600b5481565b6060610c5c82610f4d565b610c785760405162461bcd60e51b81526004016105ff906121bd565b6000610c8261118e565b90506000815111610ca25760405180602001604052806000815250610ccd565b80610cac8461123c565b604051602001610cbd929190611c81565b6040516020818303038152906040525b9392505050565b610cdc610f6a565b6001600160a01b0316610ced610ab2565b6001600160a01b031614610d135760405162461bcd60e51b81526004016105ff9061213f565b8051825114610d345760405162461bcd60e51b81526004016105ff90611ed3565b60005b82518110156106b7576001600d6000858481518110610d6657634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055506040518060400160405280838381518110610dd057634e487b7160e01b600052603260045260246000fd5b6020026020010151815260200160001515815250600e6000858481518110610e0857634e487b7160e01b600052603260045260246000fd5b6020908102919091018101516001600160a01b0316825281810192909252604001600020825181559101516001909101805460ff191691151591909117905580610e51816123fb565b915050610d37565b600d6020526000908152604090205460ff1681565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610ea4610f6a565b6001600160a01b0316610eb5610ab2565b6001600160a01b031614610edb5760405162461bcd60e51b81526004016105ff9061213f565b6001600160a01b038116610f015760405162461bcd60e51b81526004016105ff90611ddb565b610f0a8161119d565b50565b60006001600160e01b031982166380ac58cd60e01b1480610f3e57506001600160e01b03198216635b5e139f60e01b145b8061053e575061053e82611357565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610fa38261084e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610fe782610f4d565b6110035760405162461bcd60e51b81526004016105ff90611f0a565b600061100e8361084e565b9050806001600160a01b0316846001600160a01b031614806110495750836001600160a01b031661103e846105d8565b6001600160a01b0316145b8061105957506110598185610e6e565b949350505050565b826001600160a01b03166110748261084e565b6001600160a01b03161461109a5760405162461bcd60e51b81526004016105ff90612174565b6001600160a01b0382166110c05760405162461bcd60e51b81526004016105ff90611e58565b6110cb838383611370565b6110d6600082610f6e565b6001600160a01b03831660009081526003602052604081208054600192906110ff90849061237d565b90915550506001600160a01b038216600090815260036020526040812080546001929061112d908490612351565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6060600c8054610555906123c0565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610a378282604051806020016040528060008152506113f9565b611214848484611061565b6112208484848461142c565b610c455760405162461bcd60e51b81526004016105ff90611d89565b60608161126157506040805180820190915260018152600360fc1b6020820152610541565b8160005b811561128b5780611275816123fb565b91506112849050600a83612369565b9150611265565b60008167ffffffffffffffff8111156112b457634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156112de576020820181803683370190505b5090505b8415611059576112f360018361237d565b9150611300600a86612416565b61130b906030612351565b60f81b81838151811061132e57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611350600a86612369565b94506112e2565b6001600160e01b031981166301ffc9a760e01b14919050565b61137b8383836106b7565b6001600160a01b0383166113975761139281611547565b6113ba565b816001600160a01b0316836001600160a01b0316146113ba576113ba838261158b565b6001600160a01b0382166113d6576113d181611628565b6106b7565b826001600160a01b0316826001600160a01b0316146106b7576106b78282611701565b6114038383611745565b611410600084848461142c565b6106b75760405162461bcd60e51b81526004016105ff90611d89565b6000611440846001600160a01b0316611824565b1561153c57836001600160a01b031663150b7a0261145c610f6a565b8786866040518563ffffffff1660e01b815260040161147e9493929190611ce3565b602060405180830381600087803b15801561149857600080fd5b505af19250505080156114c8575060408051601f3d908101601f191682019092526114c591810190611bdb565b60015b611522573d8080156114f6576040519150601f19603f3d011682016040523d82523d6000602084013e6114fb565b606091505b50805161151a5760405162461bcd60e51b81526004016105ff90611d89565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611059565b506001949350505050565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6000600161159884610883565b6115a2919061237d565b6000838152600760205260409020549091508082146115f5576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061163a9060019061237d565b6000838152600960205260408120546008805493945090928490811061167057634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061169f57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806116e557634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061170c83610883565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661176b5760405162461bcd60e51b81526004016105ff906120be565b61177481610f4d565b156117915760405162461bcd60e51b81526004016105ff90611e21565b61179d60008383611370565b6001600160a01b03821660009081526003602052604081208054600192906117c6908490612351565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b828054611836906123c0565b90600052602060002090601f016020900481019282611858576000855561189e565b82601f1061187157805160ff191683800117855561189e565b8280016001018555821561189e579182015b8281111561189e578251825591602001919060010190611883565b506118aa9291506118ae565b5090565b5b808211156118aa57600081556001016118af565b600067ffffffffffffffff8311156118dd576118dd612456565b6118f0601f8401601f1916602001612303565b905082815283838301111561190457600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461054157600080fd5b600082601f830112611942578081fd5b813560206119576119528361232d565b612303565b8281528181019085830183850287018401881015611973578586fd5b855b8581101561199157813584529284019290840190600101611975565b5090979650505050505050565b6000602082840312156119af578081fd5b610ccd8261191b565b600080604083850312156119ca578081fd5b6119d38361191b565b91506119e16020840161191b565b90509250929050565b6000806000606084860312156119fe578081fd5b611a078461191b565b9250611a156020850161191b565b9150604084013590509250925092565b60008060008060808587031215611a3a578081fd5b611a438561191b565b9350611a516020860161191b565b925060408501359150606085013567ffffffffffffffff811115611a73578182fd5b8501601f81018713611a83578182fd5b611a92878235602084016118c3565b91505092959194509250565b60008060408385031215611ab0578182fd5b611ab98361191b565b915060208301358015158114611acd578182fd5b809150509250929050565b60008060408385031215611aea578182fd5b611af38361191b565b946020939093013593505050565b60008060408385031215611b13578182fd5b823567ffffffffffffffff80821115611b2a578384fd5b818501915085601f830112611b3d578384fd5b81356020611b4d6119528361232d565b82815281810190858301838502870184018b1015611b69578889fd5b8896505b84871015611b9257611b7e8161191b565b835260019690960195918301918301611b6d565b5096505086013592505080821115611ba8578283fd5b50611bb585828601611932565b9150509250929050565b600060208284031215611bd0578081fd5b8135610ccd8161246c565b600060208284031215611bec578081fd5b8151610ccd8161246c565b600060208284031215611c08578081fd5b813567ffffffffffffffff811115611c1e578182fd5b8201601f81018413611c2e578182fd5b611059848235602084016118c3565b600060208284031215611c4e578081fd5b5035919050565b60008151808452611c6d816020860160208601612394565b601f01601f19169290920160200192915050565b60008351611c93818460208801612394565b602f60f81b9083019081528351611cb1816001840160208801612394565b64173539b7b760d91b60019290910191820152600601949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611d1690830184611c55565b9695505050505050565b901515815260200190565b600060208252610ccd6020830184611c55565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601d908201527f496e7075742061727261792773206c656e677468206d69736d61746368000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b60208082526021908201527f416c6c20417065732068617665206e6f74206265656e207265636c61696d65646040820152601760f91b606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b60208082526019908201527f43616e6e6f7420696e637265617365206d617820617065732e00000000000000604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b90815260200190565b9182521515602082015260400190565b60405181810167ffffffffffffffff8111828210171561232557612325612456565b604052919050565b600067ffffffffffffffff82111561234757612347612456565b5060209081020190565b600082198211156123645761236461242a565b500190565b60008261237857612378612440565b500490565b60008282101561238f5761238f61242a565b500390565b60005b838110156123af578181015183820152602001612397565b83811115610c455750506000910152565b6002810460018216806123d457607f821691505b602082108114156123f557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561240f5761240f61242a565b5060010190565b60008261242557612425612440565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610f0a57600080fdfea2646970667358221220c5f0df2c866614bb2d951c37e32b955921a3590e2c31bdad0811c946e87361e864736f6c63430008000033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string):

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

49831:2407:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34395:224;;;;;;;;;;-1:-1:-1;34395:224:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21336:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22895:221::-;;;;;;;;;;-1:-1:-1;22895:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;22418:411::-;;;;;;;;;;-1:-1:-1;22418:411:0;;;;;:::i;:::-;;:::i;:::-;;35035:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23785:313::-;;;;;;;;;;-1:-1:-1;23785:313:0;;;;;:::i;:::-;;:::i;34703:256::-;;;;;;;;;;-1:-1:-1;34703:256:0;;;;;:::i;:::-;;:::i;24169:275::-;;;;;;;;;;-1:-1:-1;24169:275:0;;;;;:::i;:::-;;:::i;51829:152::-;;;;;;;;;;-1:-1:-1;51829:152:0;;;;;:::i;:::-;;:::i;35225:233::-;;;;;;;;;;-1:-1:-1;35225:233:0;;;;;:::i;:::-;;:::i;21026:239::-;;;;;;;;;;-1:-1:-1;21026:239:0;;;;;:::i;:::-;;:::i;20756:208::-;;;;;;;;;;-1:-1:-1;20756:208:0;;;;;:::i;:::-;;:::i;51713:104::-;;;;;;;;;;;;;:::i;42204:94::-;;;;;;;;;;;;;:::i;50761:460::-;;;;;;;;;;;;;:::i;52110:125::-;;;:::i;41553:87::-;;;;;;;;;;;;;:::i;51993:105::-;;;;;;;;;;-1:-1:-1;51993:105:0;;;;;:::i;:::-;;:::i;21505:104::-;;;;;;;;;;;;;:::i;50133:51::-;;;;;;;;;;-1:-1:-1;50133:51:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;23188:295::-;;;;;;;;;;-1:-1:-1;23188:295:0;;;;;:::i;:::-;;:::i;24515:::-;;;;;;;;;;-1:-1:-1;24515:295:0;;;;;:::i;:::-;;:::i;50002:30::-;;;;;;;;;;;;;:::i;51355:346::-;;;;;;;;;;-1:-1:-1;51355:346:0;;;;;:::i;:::-;;:::i;50317:432::-;;;;;;;;;;-1:-1:-1;50317:432:0;;;;;:::i;:::-;;:::i;50083:43::-;;;;;;;;;;-1:-1:-1;50083:43:0;;;;;:::i;:::-;;:::i;23554:164::-;;;;;;;;;;-1:-1:-1;23554:164:0;;;;;:::i;:::-;;:::i;42453:192::-;;;;;;;;;;-1:-1:-1;42453:192:0;;;;;:::i;:::-;;:::i;34395:224::-;34497:4;-1:-1:-1;;;;;;34521:50:0;;-1:-1:-1;;;34521:50:0;;:90;;;34575:36;34599:11;34575:23;:36::i;:::-;34514:97;;34395:224;;;;:::o;21336:100::-;21390:13;21423:5;21416:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21336:100;:::o;22895:221::-;22971:7;22999:16;23007:7;22999;:16::i;:::-;22991:73;;;;-1:-1:-1;;;22991:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;23084:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23084:24:0;;22895:221::o;22418:411::-;22499:13;22515:23;22530:7;22515:14;:23::i;:::-;22499:39;;22563:5;-1:-1:-1;;;;;22557:11:0;:2;-1:-1:-1;;;;;22557:11:0;;;22549:57;;;;-1:-1:-1;;;22549:57:0;;;;;;;:::i;:::-;22657:5;-1:-1:-1;;;;;22641:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;22641:21:0;;:62;;;;22666:37;22683:5;22690:12;:10;:12::i;22666:37::-;22619:168;;;;-1:-1:-1;;;22619:168:0;;;;;;;:::i;:::-;22800:21;22809:2;22813:7;22800:8;:21::i;:::-;22418:411;;;:::o;35035:113::-;35123:10;:17;35035:113;:::o;23785:313::-;23946:41;23965:12;:10;:12::i;:::-;23979:7;23946:18;:41::i;:::-;23938:103;;;;-1:-1:-1;;;23938:103:0;;;;;;;:::i;:::-;24062:28;24072:4;24078:2;24082:7;24062:9;:28::i;34703:256::-;34800:7;34836:23;34853:5;34836:16;:23::i;:::-;34828:5;:31;34820:87;;;;-1:-1:-1;;;34820:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;34925:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;34703:256::o;24169:275::-;24281:41;24300:12;:10;:12::i;24281:41::-;24273:103;;;;-1:-1:-1;;;24273:103:0;;;;;;;:::i;:::-;24397:39;24414:4;24420:2;24424:7;24397:39;;;;;;;;;;;;:16;:39::i;51829:152::-;41784:12;:10;:12::i;:::-;-1:-1:-1;;;;;41773:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41773:23:0;;41765:68;;;;-1:-1:-1;;;41765:68:0;;;;;;;:::i;:::-;51911:4:::1;51902:6;:13;51894:51;;;;-1:-1:-1::0;;;51894:51:0::1;;;;;;;:::i;:::-;51956:8;:17:::0;51829:152::o;35225:233::-;35300:7;35336:30;:28;:30::i;:::-;35328:5;:38;35320:95;;;;-1:-1:-1;;;35320:95:0;;;;;;;:::i;:::-;35433:10;35444:5;35433:17;;;;;;-1:-1:-1;;;35433:17:0;;;;;;;;;;;;;;;;;35426:24;;35225:233;;;:::o;21026:239::-;21098:7;21134:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21134:16:0;21169:19;21161:73;;;;-1:-1:-1;;;21161:73:0;;;;;;;:::i;20756:208::-;20828:7;-1:-1:-1;;;;;20856:19:0;;20848:74;;;;-1:-1:-1;;;20848:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;20940:16:0;;;;;:9;:16;;;;;;;20756:208::o;51713:104::-;51766:13;41784:12;:10;:12::i;:::-;-1:-1:-1;;;;;41773:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41773:23:0;;41765:68;;;;-1:-1:-1;;;41765:68:0;;;;;;;:::i;:::-;51799:10:::1;:8;:10::i;:::-;51792:17;;51713:104:::0;:::o;42204:94::-;41784:12;:10;:12::i;:::-;-1:-1:-1;;;;;41773:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41773:23:0;;41765:68;;;;-1:-1:-1;;;41765:68:0;;;;;;;:::i;:::-;42269:21:::1;42287:1;42269:9;:21::i;:::-;42204:94::o:0;50761:460::-;50824:8;;50808:13;:11;:13::i;:::-;:24;50800:70;;;;-1:-1:-1;;;50800:70:0;;;;;;;:::i;:::-;50901:10;50889:23;;;;:11;:23;;;;;;;;50881:32;;;;;;50949:10;50933:27;;;;:15;:27;;;;;:34;;;;;50932:35;50924:44;;;;;;51013:10;50979:15;50997:27;;;:15;:27;;;;;;;;:38;;51076:17;;;;;;;;;;;51088:4;51076:17;;;;;;51046:27;;;;;;;:47;;;;;;;;;;;;-1:-1:-1;;51046:47:0;;;;;;;;;;51104:110;51127:7;51123:1;:11;51104:110;;;51156:36;51166:10;51178:13;:11;:13::i;:::-;51156:9;:36::i;:::-;51136:3;;;;:::i;:::-;;;;51104:110;;;;50761:460;:::o;52110:125::-;41784:12;:10;:12::i;:::-;-1:-1:-1;;;;;41773:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41773:23:0;;41765:68;;;;-1:-1:-1;;;41765:68:0;;;;;;;:::i;:::-;52185:12:::1;:10;:12::i;:::-;-1:-1:-1::0;;;;;52177:26:0::1;:49;52204:21;52177:49;;;;;;;;;;;;;;;;;;;;;;;52169:58;;;::::0;::::1;41553:87:::0;41626:6;;-1:-1:-1;;;;;41626:6:0;41553:87;:::o;51993:105::-;41784:12;:10;:12::i;:::-;-1:-1:-1;;;;;41773:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41773:23:0;;41765:68;;;;-1:-1:-1;;;41765:68:0;;;;;;;:::i;:::-;52067:23;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;21505:104::-:0;21561:13;21594:7;21587:14;;;;;:::i;50133:51::-;;;;;;;;;;;;;;;;;;;;;:::o;23188:295::-;23303:12;:10;:12::i;:::-;-1:-1:-1;;;;;23291:24:0;:8;-1:-1:-1;;;;;23291:24:0;;;23283:62;;;;-1:-1:-1;;;23283:62:0;;;;;;;:::i;:::-;23403:8;23358:18;:32;23377:12;:10;:12::i;:::-;-1:-1:-1;;;;;23358:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;23358:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;23358:53:0;;;;;;;;;;;23442:12;:10;:12::i;:::-;-1:-1:-1;;;;;23427:48:0;;23466:8;23427:48;;;;;;:::i;:::-;;;;;;;;23188:295;;:::o;24515:::-;24647:41;24666:12;:10;:12::i;:::-;24680:7;24647:18;:41::i;:::-;24639:103;;;;-1:-1:-1;;;24639:103:0;;;;;;;:::i;:::-;24763:39;24777:4;24783:2;24787:7;24796:5;24763:13;:39::i;:::-;24515:295;;;;:::o;50002:30::-;;;;:::o;51355:346::-;51428:13;51462:16;51470:7;51462;:16::i;:::-;51454:76;;;;-1:-1:-1;;;51454:76:0;;;;;;;:::i;:::-;51541:21;51565:10;:8;:10::i;:::-;51541:34;;51617:1;51599:7;51593:21;:25;:100;;;;;;;;;;;;;;;;;51645:7;51659:18;:7;:16;:18::i;:::-;51628:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51593:100;51586:107;51355:346;-1:-1:-1;;;51355:346:0:o;50317:432::-;41784:12;:10;:12::i;:::-;-1:-1:-1;;;;;41773:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41773:23:0;;41765:68;;;;-1:-1:-1;;;41765:68:0;;;;;;;:::i;:::-;50471:12:::1;:19;50442:18;:25;:48;50434:89;;;;-1:-1:-1::0;;;50434:89:0::1;;;;;;;:::i;:::-;50539:6;50534:208;50555:18;:25;50551:1;:29;50534:208;;;50639:4;50602:11;:34;50614:18;50633:1;50614:21;;;;;;-1:-1:-1::0;;;50614:21:0::1;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;50602:34:0::1;-1:-1:-1::0;;;;;50602:34:0::1;;;;;;;;;;;;;:41;;;;;;;;;;;;;;;;;;50699:31;;;;;;;;50708:12;50721:1;50708:15;;;;;;-1:-1:-1::0;;;50708:15:0::1;;;;;;;;;;;;;;;50699:31;;;;50724:5;50699:31;;;;::::0;50658:15:::1;:38;50674:18;50693:1;50674:21;;;;;;-1:-1:-1::0;;;50674:21:0::1;;;;;;;;;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;50658:38:0::1;::::0;;;;::::1;::::0;;;;;;-1:-1:-1;50658:38:0;:72;;;;;::::1;::::0;::::1;::::0;;::::1;::::0;;-1:-1:-1;;50658:72:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50582:3;::::1;::::0;::::1;:::i;:::-;;;;50534:208;;50083:43:::0;;;;;;;;;;;;;;;:::o;23554:164::-;-1:-1:-1;;;;;23675:25:0;;;23651:4;23675:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23554:164::o;42453:192::-;41784:12;:10;:12::i;:::-;-1:-1:-1;;;;;41773:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;41773:23:0;;41765:68;;;;-1:-1:-1;;;41765:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42542:22:0;::::1;42534:73;;;;-1:-1:-1::0;;;42534:73:0::1;;;;;;;:::i;:::-;42618:19;42628:8;42618:9;:19::i;:::-;42453:192:::0;:::o;20387:305::-;20489:4;-1:-1:-1;;;;;;20526:40:0;;-1:-1:-1;;;20526:40:0;;:105;;-1:-1:-1;;;;;;;20583:48:0;;-1:-1:-1;;;20583:48:0;20526:105;:158;;;;20648:36;20672:11;20648:23;:36::i;26277:127::-;26342:4;26366:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26366:16:0;:30;;;26277:127::o;15774:98::-;15854:10;15774:98;:::o;30215:174::-;30290:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30290:29:0;-1:-1:-1;;;;;30290:29:0;;;;;;;;:24;;30344:23;30290:24;30344:14;:23::i;:::-;-1:-1:-1;;;;;30335:46:0;;;;;;;;;;;30215:174;;:::o;26575:348::-;26668:4;26693:16;26701:7;26693;:16::i;:::-;26685:73;;;;-1:-1:-1;;;26685:73:0;;;;;;;:::i;:::-;26769:13;26785:23;26800:7;26785:14;:23::i;:::-;26769:39;;26838:5;-1:-1:-1;;;;;26827:16:0;:7;-1:-1:-1;;;;;26827:16:0;;:51;;;;26871:7;-1:-1:-1;;;;;26847:31:0;:20;26859:7;26847:11;:20::i;:::-;-1:-1:-1;;;;;26847:31:0;;26827:51;:87;;;;26882:32;26899:5;26906:7;26882:16;:32::i;:::-;26819:96;26575:348;-1:-1:-1;;;;26575:348:0:o;29553:544::-;29678:4;-1:-1:-1;;;;;29651:31:0;:23;29666:7;29651:14;:23::i;:::-;-1:-1:-1;;;;;29651:31:0;;29643:85;;;;-1:-1:-1;;;29643:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29747:16:0;;29739:65;;;;-1:-1:-1;;;29739:65:0;;;;;;;:::i;:::-;29817:39;29838:4;29844:2;29848:7;29817:20;:39::i;:::-;29921:29;29938:1;29942:7;29921:8;:29::i;:::-;-1:-1:-1;;;;;29963:15:0;;;;;;:9;:15;;;;;:20;;29982:1;;29963:15;:20;;29982:1;;29963:20;:::i;:::-;;;;-1:-1:-1;;;;;;;29994:13:0;;;;;;:9;:13;;;;;:18;;30011:1;;29994:13;:18;;30011:1;;29994:18;:::i;:::-;;;;-1:-1:-1;;30023:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30023:21:0;-1:-1:-1;;;;;30023:21:0;;;;;;;;;30062:27;;30023:16;;30062:27;;;;;;;29553:544;;;:::o;51233:114::-;51293:13;51326;51319:20;;;;;:::i;42653:173::-;42728:6;;;-1:-1:-1;;;;;42745:17:0;;;-1:-1:-1;;;;;;42745:17:0;;;;;;;42778:40;;42728:6;;;42745:17;42728:6;;42778:40;;42709:16;;42778:40;42653:173;;:::o;27271:120::-;27347:26;27357:2;27361:7;27347:26;;;;;;;;;;;;:9;:26::i;25692:272::-;25806:28;25816:4;25822:2;25826:7;25806:9;:28::i;:::-;25853:48;25876:4;25882:2;25886:7;25895:5;25853:22;:48::i;:::-;25845:111;;;;-1:-1:-1;;;25845:111:0;;;;;;;:::i;16307:723::-;16363:13;16584:10;16580:53;;-1:-1:-1;16611:10:0;;;;;;;;;;;;-1:-1:-1;;;16611:10:0;;;;;;16580:53;16658:5;16643:12;16699:78;16706:9;;16699:78;;16732:8;;;;:::i;:::-;;-1:-1:-1;16755:10:0;;-1:-1:-1;16763:2:0;16755:10;;:::i;:::-;;;16699:78;;;16787:19;16819:6;16809:17;;;;;;-1:-1:-1;;;16809:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16809:17:0;;16787:39;;16837:154;16844:10;;16837:154;;16871:11;16881:1;16871:11;;:::i;:::-;;-1:-1:-1;16940:10:0;16948:2;16940:5;:10;:::i;:::-;16927:24;;:2;:24;:::i;:::-;16914:39;;16897:6;16904;16897:14;;;;;;-1:-1:-1;;;16897:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;16897:56:0;;;;;;;;-1:-1:-1;16968:11:0;16977:2;16968:11;;:::i;:::-;;;16837:154;;18870:157;-1:-1:-1;;;;;;18979:40:0;;-1:-1:-1;;;18979:40:0;18870:157;;;:::o;36071:589::-;36215:45;36242:4;36248:2;36252:7;36215:26;:45::i;:::-;-1:-1:-1;;;;;36277:18:0;;36273:187;;36312:40;36344:7;36312:31;:40::i;:::-;36273:187;;;36382:2;-1:-1:-1;;;;;36374:10:0;:4;-1:-1:-1;;;;;36374:10:0;;36370:90;;36401:47;36434:4;36440:7;36401:32;:47::i;:::-;-1:-1:-1;;;;;36474:16:0;;36470:183;;36507:45;36544:7;36507:36;:45::i;:::-;36470:183;;;36580:4;-1:-1:-1;;;;;36574:10:0;:2;-1:-1:-1;;;;;36574:10:0;;36570:83;;36601:40;36629:2;36633:7;36601:27;:40::i;27618:287::-;27714:18;27720:2;27724:7;27714:5;:18::i;:::-;27765:54;27796:1;27800:2;27804:7;27813:5;27765:22;:54::i;:::-;27743:154;;;;-1:-1:-1;;;27743:154:0;;;;;;;:::i;30954:803::-;31109:4;31130:15;:2;-1:-1:-1;;;;;31130:13:0;;:15::i;:::-;31126:624;;;31182:2;-1:-1:-1;;;;;31166:36:0;;31203:12;:10;:12::i;:::-;31217:4;31223:7;31232:5;31166:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31166:72:0;;;;;;;;-1:-1:-1;;31166:72:0;;;;;;;;;;;;:::i;:::-;;;31162:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31412:13:0;;31408:272;;31455:60;;-1:-1:-1;;;31455:60:0;;;;;;;:::i;31408:272::-;31630:6;31624:13;31615:6;31611:2;31607:15;31600:38;31162:533;-1:-1:-1;;;;;;31289:55:0;-1:-1:-1;;;31289:55:0;;-1:-1:-1;31282:62:0;;31126:624;-1:-1:-1;31734:4:0;30954:803;;;;;;:::o;37383:164::-;37487:10;:17;;37460:24;;;;:15;:24;;;;;:44;;;37515:24;;;;;;;;;;;;37383:164::o;38174:988::-;38440:22;38490:1;38465:22;38482:4;38465:16;:22::i;:::-;:26;;;;:::i;:::-;38502:18;38523:26;;;:17;:26;;;;;;38440:51;;-1:-1:-1;38656:28:0;;;38652:328;;-1:-1:-1;;;;;38723:18:0;;38701:19;38723:18;;;:12;:18;;;;;;;;:34;;;;;;;;;38774:30;;;;;;:44;;;38891:30;;:17;:30;;;;;:43;;;38652:328;-1:-1:-1;39076:26:0;;;;:17;:26;;;;;;;;39069:33;;;-1:-1:-1;;;;;39120:18:0;;;;;:12;:18;;;;;:34;;;;;;;39113:41;38174:988::o;39457:1079::-;39735:10;:17;39710:22;;39735:21;;39755:1;;39735:21;:::i;:::-;39767:18;39788:24;;;:15;:24;;;;;;40161:10;:26;;39710:46;;-1:-1:-1;39788:24:0;;39710:46;;40161:26;;;;-1:-1:-1;;;40161:26:0;;;;;;;;;;;;;;;;;40139:48;;40225:11;40200:10;40211;40200:22;;;;;;-1:-1:-1;;;40200:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;40305:28;;;:15;:28;;;;;;;:41;;;40477:24;;;;;40470:31;40512:10;:16;;;;;-1:-1:-1;;;40512:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;39457:1079;;;;:::o;36961:221::-;37046:14;37063:20;37080:2;37063:16;:20::i;:::-;-1:-1:-1;;;;;37094:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37139:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;36961:221:0:o;28241:382::-;-1:-1:-1;;;;;28321:16:0;;28313:61;;;;-1:-1:-1;;;28313:61:0;;;;;;;:::i;:::-;28394:16;28402:7;28394;:16::i;:::-;28393:17;28385:58;;;;-1:-1:-1;;;28385:58:0;;;;;;;:::i;:::-;28456:45;28485:1;28489:2;28493:7;28456:20;:45::i;:::-;-1:-1:-1;;;;;28514:13:0;;;;;;:9;:13;;;;;:18;;28531:1;;28514:13;:18;;28531:1;;28514:18;:::i;:::-;;;;-1:-1:-1;;28543:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28543:21:0;-1:-1:-1;;;;;28543:21:0;;;;;;;;28582:33;;28543:16;;;28582:33;;28543:16;;28582:33;28241:382;;:::o;8028:387::-;8351:20;8399:8;;;8028:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:409:1;;114:18;106:6;103:30;100:2;;;136:18;;:::i;:::-;174:58;220:2;197:17;;-1:-1:-1;;193:31:1;226:4;189:42;174:58;:::i;:::-;165:67;;255:6;248:5;241:21;295:3;286:6;281:3;277:16;274:25;271:2;;;312:1;309;302:12;271:2;361:6;356:3;349:4;342:5;338:16;325:43;415:1;408:4;399:6;392:5;388:18;384:29;377:40;90:333;;;;;:::o;428:175::-;498:20;;-1:-1:-1;;;;;547:31:1;;537:42;;527:2;;593:1;590;583:12;608:705;;721:3;714:4;706:6;702:17;698:27;688:2;;743:5;736;729:20;688:2;783:6;770:20;809:4;833:65;848:49;894:2;848:49;:::i;:::-;833:65;:::i;:::-;932:15;;;963:12;;;;995:15;;;1041:11;;;1029:24;;1025:33;;1022:42;-1:-1:-1;1019:2:1;;;1081:5;1074;1067:20;1019:2;1107:5;1121:163;1135:2;1132:1;1129:9;1121:163;;;1192:17;;1180:30;;1230:12;;;;1262;;;;1153:1;1146:9;1121:163;;;-1:-1:-1;1302:5:1;;678:635;-1:-1:-1;;;;;;;678:635:1:o;1318:198::-;;1430:2;1418:9;1409:7;1405:23;1401:32;1398:2;;;1451:6;1443;1436:22;1398:2;1479:31;1500:9;1479:31;:::i;1521:274::-;;;1650:2;1638:9;1629:7;1625:23;1621:32;1618:2;;;1671:6;1663;1656:22;1618:2;1699:31;1720:9;1699:31;:::i;:::-;1689:41;;1749:40;1785:2;1774:9;1770:18;1749:40;:::i;:::-;1739:50;;1608:187;;;;;:::o;1800:342::-;;;;1946:2;1934:9;1925:7;1921:23;1917:32;1914:2;;;1967:6;1959;1952:22;1914:2;1995:31;2016:9;1995:31;:::i;:::-;1985:41;;2045:40;2081:2;2070:9;2066:18;2045:40;:::i;:::-;2035:50;;2132:2;2121:9;2117:18;2104:32;2094:42;;1904:238;;;;;:::o;2147:702::-;;;;;2319:3;2307:9;2298:7;2294:23;2290:33;2287:2;;;2341:6;2333;2326:22;2287:2;2369:31;2390:9;2369:31;:::i;:::-;2359:41;;2419:40;2455:2;2444:9;2440:18;2419:40;:::i;:::-;2409:50;;2506:2;2495:9;2491:18;2478:32;2468:42;;2561:2;2550:9;2546:18;2533:32;2588:18;2580:6;2577:30;2574:2;;;2625:6;2617;2610:22;2574:2;2653:22;;2706:4;2698:13;;2694:27;-1:-1:-1;2684:2:1;;2740:6;2732;2725:22;2684:2;2768:75;2835:7;2830:2;2817:16;2812:2;2808;2804:11;2768:75;:::i;:::-;2758:85;;;2277:572;;;;;;;:::o;2854:369::-;;;2980:2;2968:9;2959:7;2955:23;2951:32;2948:2;;;3001:6;2993;2986:22;2948:2;3029:31;3050:9;3029:31;:::i;:::-;3019:41;;3110:2;3099:9;3095:18;3082:32;3157:5;3150:13;3143:21;3136:5;3133:32;3123:2;;3184:6;3176;3169:22;3123:2;3212:5;3202:15;;;2938:285;;;;;:::o;3228:266::-;;;3357:2;3345:9;3336:7;3332:23;3328:32;3325:2;;;3378:6;3370;3363:22;3325:2;3406:31;3427:9;3406:31;:::i;:::-;3396:41;3484:2;3469:18;;;;3456:32;;-1:-1:-1;;;3315:179:1:o;3499:1226::-;;;3678:2;3666:9;3657:7;3653:23;3649:32;3646:2;;;3699:6;3691;3684:22;3646:2;3744:9;3731:23;3773:18;3814:2;3806:6;3803:14;3800:2;;;3835:6;3827;3820:22;3800:2;3878:6;3867:9;3863:22;3853:32;;3923:7;3916:4;3912:2;3908:13;3904:27;3894:2;;3950:6;3942;3935:22;3894:2;3991;3978:16;4013:4;4037:65;4052:49;4098:2;4052:49;:::i;4037:65::-;4136:15;;;4167:12;;;;4199:11;;;4237;;;4229:20;;4225:29;;4222:42;-1:-1:-1;4219:2:1;;;4282:6;4274;4267:22;4219:2;4309:6;4300:15;;4324:171;4338:2;4335:1;4332:9;4324:171;;;4395:25;4416:3;4395:25;:::i;:::-;4383:38;;4356:1;4349:9;;;;;4441:12;;;;4473;;4324:171;;;-1:-1:-1;4514:5:1;-1:-1:-1;;4557:18:1;;4544:32;;-1:-1:-1;;4588:16:1;;;4585:2;;;4622:6;4614;4607:22;4585:2;;4650:69;4711:7;4700:8;4689:9;4685:24;4650:69;:::i;:::-;4640:79;;;3636:1089;;;;;:::o;4730:257::-;;4841:2;4829:9;4820:7;4816:23;4812:32;4809:2;;;4862:6;4854;4847:22;4809:2;4906:9;4893:23;4925:32;4951:5;4925:32;:::i;4992:261::-;;5114:2;5102:9;5093:7;5089:23;5085:32;5082:2;;;5135:6;5127;5120:22;5082:2;5172:9;5166:16;5191:32;5217:5;5191:32;:::i;5258:482::-;;5380:2;5368:9;5359:7;5355:23;5351:32;5348:2;;;5401:6;5393;5386:22;5348:2;5446:9;5433:23;5479:18;5471:6;5468:30;5465:2;;;5516:6;5508;5501:22;5465:2;5544:22;;5597:4;5589:13;;5585:27;-1:-1:-1;5575:2:1;;5631:6;5623;5616:22;5575:2;5659:75;5726:7;5721:2;5708:16;5703:2;5699;5695:11;5659:75;:::i;5745:190::-;;5857:2;5845:9;5836:7;5832:23;5828:32;5825:2;;;5878:6;5870;5863:22;5825:2;-1:-1:-1;5906:23:1;;5815:120;-1:-1:-1;5815:120:1:o;5940:259::-;;6021:5;6015:12;6048:6;6043:3;6036:19;6064:63;6120:6;6113:4;6108:3;6104:14;6097:4;6090:5;6086:16;6064:63;:::i;:::-;6181:2;6160:15;-1:-1:-1;;6156:29:1;6147:39;;;;6188:4;6143:50;;5991:208;-1:-1:-1;;5991:208:1:o;6204:772::-;;6623:6;6617:13;6639:53;6685:6;6680:3;6673:4;6665:6;6661:17;6639:53;:::i;:::-;-1:-1:-1;;;6714:16:1;;;6739:18;;;6782:13;;6804:65;6782:13;6856:1;6845:13;;6838:4;6826:17;;6804:65;:::i;:::-;-1:-1:-1;;;6932:1:1;6888:20;;;;6924:10;;;6917:27;6968:1;6960:10;;6593:383;-1:-1:-1;;;;6593:383:1:o;6981:203::-;-1:-1:-1;;;;;7145:32:1;;;;7127:51;;7115:2;7100:18;;7082:102::o;7189:490::-;-1:-1:-1;;;;;7458:15:1;;;7440:34;;7510:15;;7505:2;7490:18;;7483:43;7557:2;7542:18;;7535:34;;;7605:3;7600:2;7585:18;;7578:31;;;7189:490;;7626:47;;7653:19;;7645:6;7626:47;:::i;:::-;7618:55;7392:287;-1:-1:-1;;;;;;7392:287:1:o;7684:187::-;7849:14;;7842:22;7824:41;;7812:2;7797:18;;7779:92::o;7876:221::-;;8025:2;8014:9;8007:21;8045:46;8087:2;8076:9;8072:18;8064:6;8045:46;:::i;8102:407::-;8304:2;8286:21;;;8343:2;8323:18;;;8316:30;8382:34;8377:2;8362:18;;8355:62;-1:-1:-1;;;8448:2:1;8433:18;;8426:41;8499:3;8484:19;;8276:233::o;8514:414::-;8716:2;8698:21;;;8755:2;8735:18;;;8728:30;8794:34;8789:2;8774:18;;8767:62;-1:-1:-1;;;8860:2:1;8845:18;;8838:48;8918:3;8903:19;;8688:240::o;8933:402::-;9135:2;9117:21;;;9174:2;9154:18;;;9147:30;9213:34;9208:2;9193:18;;9186:62;-1:-1:-1;;;9279:2:1;9264:18;;9257:36;9325:3;9310:19;;9107:228::o;9340:352::-;9542:2;9524:21;;;9581:2;9561:18;;;9554:30;9620;9615:2;9600:18;;9593:58;9683:2;9668:18;;9514:178::o;9697:400::-;9899:2;9881:21;;;9938:2;9918:18;;;9911:30;9977:34;9972:2;9957:18;;9950:62;-1:-1:-1;;;10043:2:1;10028:18;;10021:34;10087:3;10072:19;;9871:226::o;10102:349::-;10304:2;10286:21;;;10343:2;10323:18;;;10316:30;10382:27;10377:2;10362:18;;10355:55;10442:2;10427:18;;10276:175::o;10456:353::-;10658:2;10640:21;;;10697:2;10677:18;;;10670:30;10736:31;10731:2;10716:18;;10709:59;10800:2;10785:18;;10630:179::o;10814:408::-;11016:2;10998:21;;;11055:2;11035:18;;;11028:30;11094:34;11089:2;11074:18;;11067:62;-1:-1:-1;;;11160:2:1;11145:18;;11138:42;11212:3;11197:19;;10988:234::o;11227:420::-;11429:2;11411:21;;;11468:2;11448:18;;;11441:30;11507:34;11502:2;11487:18;;11480:62;11578:26;11573:2;11558:18;;11551:54;11637:3;11622:19;;11401:246::o;11652:397::-;11854:2;11836:21;;;11893:2;11873:18;;;11866:30;11932:34;11927:2;11912:18;;11905:62;-1:-1:-1;;;11998:2:1;11983:18;;11976:31;12039:3;12024:19;;11826:223::o;12054:406::-;12256:2;12238:21;;;12295:2;12275:18;;;12268:30;12334:34;12329:2;12314:18;;12307:62;-1:-1:-1;;;12400:2:1;12385:18;;12378:40;12450:3;12435:19;;12228:232::o;12465:405::-;12667:2;12649:21;;;12706:2;12686:18;;;12679:30;12745:34;12740:2;12725:18;;12718:62;-1:-1:-1;;;12811:2:1;12796:18;;12789:39;12860:3;12845:19;;12639:231::o;12875:349::-;13077:2;13059:21;;;13116:2;13096:18;;;13089:30;13155:27;13150:2;13135:18;;13128:55;13215:2;13200:18;;13049:175::o;13229:356::-;13431:2;13413:21;;;13450:18;;;13443:30;13509:34;13504:2;13489:18;;13482:62;13576:2;13561:18;;13403:182::o;13590:408::-;13792:2;13774:21;;;13831:2;13811:18;;;13804:30;13870:34;13865:2;13850:18;;13843:62;-1:-1:-1;;;13936:2:1;13921:18;;13914:42;13988:3;13973:19;;13764:234::o;14003:356::-;14205:2;14187:21;;;14224:18;;;14217:30;14283:34;14278:2;14263:18;;14256:62;14350:2;14335:18;;14177:182::o;14364:405::-;14566:2;14548:21;;;14605:2;14585:18;;;14578:30;14644:34;14639:2;14624:18;;14617:62;-1:-1:-1;;;14710:2:1;14695:18;;14688:39;14759:3;14744:19;;14538:231::o;14774:411::-;14976:2;14958:21;;;15015:2;14995:18;;;14988:30;15054:34;15049:2;15034:18;;15027:62;-1:-1:-1;;;15120:2:1;15105:18;;15098:45;15175:3;15160:19;;14948:237::o;15190:397::-;15392:2;15374:21;;;15431:2;15411:18;;;15404:30;15470:34;15465:2;15450:18;;15443:62;-1:-1:-1;;;15536:2:1;15521:18;;15514:31;15577:3;15562:19;;15364:223::o;15592:413::-;15794:2;15776:21;;;15833:2;15813:18;;;15806:30;15872:34;15867:2;15852:18;;15845:62;-1:-1:-1;;;15938:2:1;15923:18;;15916:47;15995:3;15980:19;;15766:239::o;16010:408::-;16212:2;16194:21;;;16251:2;16231:18;;;16224:30;16290:34;16285:2;16270:18;;16263:62;-1:-1:-1;;;16356:2:1;16341:18;;16334:42;16408:3;16393:19;;16184:234::o;16423:177::-;16569:25;;;16557:2;16542:18;;16524:76::o;16605:258::-;16773:25;;;16841:14;16834:22;16829:2;16814:18;;16807:50;16761:2;16746:18;;16728:135::o;16868:251::-;16938:2;16932:9;16968:17;;;17015:18;17000:34;;17036:22;;;16997:62;16994:2;;;17062:18;;:::i;:::-;17098:2;17091:22;16912:207;;-1:-1:-1;16912:207:1:o;17124:192::-;;17223:18;17215:6;17212:30;17209:2;;;17245:18;;:::i;:::-;-1:-1:-1;17305:4:1;17286:17;;;17282:28;;17199:117::o;17321:128::-;;17392:1;17388:6;17385:1;17382:13;17379:2;;;17398:18;;:::i;:::-;-1:-1:-1;17434:9:1;;17369:80::o;17454:120::-;;17520:1;17510:2;;17525:18;;:::i;:::-;-1:-1:-1;17559:9:1;;17500:74::o;17579:125::-;;17647:1;17644;17641:8;17638:2;;;17652:18;;:::i;:::-;-1:-1:-1;17689:9:1;;17628:76::o;17709:258::-;17781:1;17791:113;17805:6;17802:1;17799:13;17791:113;;;17881:11;;;17875:18;17862:11;;;17855:39;17827:2;17820:10;17791:113;;;17922:6;17919:1;17916:13;17913:2;;;-1:-1:-1;;17957:1:1;17939:16;;17932:27;17762:205::o;17972:380::-;18057:1;18047:12;;18104:1;18094:12;;;18115:2;;18169:4;18161:6;18157:17;18147:27;;18115:2;18222;18214:6;18211:14;18191:18;18188:38;18185:2;;;18268:10;18263:3;18259:20;18256:1;18249:31;18303:4;18300:1;18293:15;18331:4;18328:1;18321:15;18185:2;;18027:325;;;:::o;18357:135::-;;-1:-1:-1;;18417:17:1;;18414:2;;;18437:18;;:::i;:::-;-1:-1:-1;18484:1:1;18473:13;;18404:88::o;18497:112::-;;18555:1;18545:2;;18560:18;;:::i;:::-;-1:-1:-1;18594:9:1;;18535:74::o;18614:127::-;18675:10;18670:3;18666:20;18663:1;18656:31;18706:4;18703:1;18696:15;18730:4;18727:1;18720:15;18746:127;18807:10;18802:3;18798:20;18795:1;18788:31;18838:4;18835:1;18828:15;18862:4;18859:1;18852:15;18878:127;18939:10;18934:3;18930:20;18927:1;18920:31;18970:4;18967:1;18960:15;18994:4;18991:1;18984:15;19010:133;-1:-1:-1;;;;;;19086:32:1;;19076:43;;19066:2;;19133:1;19130;19123:12

Swarm Source

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