ETH Price: $2,527.29 (+0.16%)

Token

DippiesPepe (DPEPE)
 

Overview

Max Total Supply

500 DPEPE

Holders

77

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
bitsnake.eth
Balance
1 DPEPE
0xf440231d0f3d9e539d8189f6cb63c0c5df621779
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:
DippiesPepe

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT


// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev 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 {
        _transferOwnership(address(0));
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, 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/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

// File: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**128 - 1 (max value of uint128).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
    }

    // Compiler will pack the following 
    // _currentIndex and _burnCounter into a single 256bit word.
    
    // The tokenId of the next token to be minted.
    uint128 internal _currentIndex;

    // The number of tokens burned.
    uint128 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;    
        }
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (!ownership.burned) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }
        revert TokenIndexOutOfBounds();
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        revert();
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant: 
                    // There will always be an ownership that has an address and is not burned 
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _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 {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (!_checkOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

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

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if _currentIndex + quantity > 3.4e38 (2**128) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

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

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

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

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**128.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @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 {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**128.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked { 
            _burnCounter++;
        }
    }

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

    /**
     * @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 TransferToNonERC721ReceiverImplementer();
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

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

// File: contracts/PepeUniverse.sol



pragma solidity ^0.8.12;




contract DippiesPepe is ERC721A, Ownable {
    using Strings for uint256;

    uint256 public tokenPricePresale = 1000 ether;
    uint256 public tokenPricePublicSale = 1000 ether;

    uint256 public maxTokensPerWalletPresale = 3;
    uint256 public maxTokensPerWalletPublicSale = 3;

    string public tokenBaseURI = "ipfs://QmXHhPDNCcQkRMb8Xa9JrW98CsyMk5iTwodczGPMTpg5HG/";

    bool public hasPresaleStarted = false;
    bool public hasPublicSaleStarted = false;

    address public BUGSAddress = 0x770FD3044eF83a91F14830a9fCbB8B92c61549b6;

    uint256 public tokensToBuyAmount = 500;
    
    bytes32 public whitelistRoot;
    mapping(address => uint256) public presalePurchased;
    mapping(address => uint256) public publicSalePurchased;

    constructor() ERC721A("DippiesPepe", "DPEPE") {
        
    }

    function setMaxTokensPerWalletPresale(uint256 val) external onlyOwner {
        maxTokensPerWalletPresale = val;
    }

    function setMaxTokensPerWalletPublicSale(uint256 val) external onlyOwner {
        maxTokensPerWalletPublicSale = val;
    }

    function startSale() external onlyOwner{
      hasPresaleStarted = true;
      hasPublicSaleStarted = true;
    }

    function pauseSale() external onlyOwner{
      hasPresaleStarted = false;
      hasPublicSaleStarted = false;
    }
    
    function tokenPrice() public view returns (uint256) {
      if (hasPublicSaleStarted) {
        return tokenPricePublicSale;
      }
      return tokenPricePresale;
    }

    function setTokenPricePresale(uint256 val) external onlyOwner {
      tokenPricePresale = val;
    }

    function setTokenPricePublicSale(uint256 val) external onlyOwner {
      tokenPricePublicSale = val;
    }

    function setWhitelistRoot(bytes32 _whitelistRoot) public onlyOwner {
        whitelistRoot = _whitelistRoot;
    }

    function setBUGSAddress(address _BUGSAddress) public onlyOwner {
        BUGSAddress = _BUGSAddress;
    }

    function verify(address account, bytes32[] memory proof) public
        view
        returns (bool)
    {
        bytes32 leaf = keccak256(abi.encodePacked(account));
        return MerkleProof.verify(proof, whitelistRoot, leaf);
    }

    function mint(uint256 amount, bytes32[] memory proof) external {
        uint256 priceToPay = tokenPrice() * amount;
        require(IERC20(BUGSAddress).transferFrom(msg.sender, address(this), priceToPay), "Could not transfer BUGS");        

        require(hasPresaleStarted, "Cannot mint before presale");
        require(hasPublicSaleStarted || verify(msg.sender, proof), "Buyer not whitelisted for presale");
        require(amount <= tokensToBuyAmount, "No tokens left for minting in your MetaMask");
        if (hasPublicSaleStarted) {
            require(publicSalePurchased[msg.sender] + amount <= maxTokensPerWalletPublicSale,
                "Cannot mint more than the max tokens per address");
        } else {
            require(presalePurchased[msg.sender] + amount <= maxTokensPerWalletPresale,
                "Cannot mint more than the max tokens per address");
        }
        
        _safeMint(msg.sender, amount);

        if (hasPublicSaleStarted) {
            publicSalePurchased[msg.sender] += amount;
        } else {
            presalePurchased[msg.sender] += amount;
        }

        tokensToBuyAmount -= amount;
    }

    function gift(uint256 amount, address to) external onlyOwner {
        require(amount <= tokensToBuyAmount, "No tokens left");
        _safeMint(to, amount);
        tokensToBuyAmount -= amount;
    }

    function giftToMultiple(uint256 amount, address[] calldata toAddresses) external onlyOwner {
        uint256 totalAmount = amount * toAddresses.length;
        require(totalAmount <= tokensToBuyAmount, "No tokens left");

        for (uint256 i = 0; i < toAddresses.length; i++) {
            _safeMint(toAddresses[i], amount);
        }

        tokensToBuyAmount -= totalAmount;
    }

    function _baseURI() internal view override(ERC721A) returns (string memory) {
        return tokenBaseURI;
    }
   
    function setBaseURI(string calldata URI) external onlyOwner {
        tokenBaseURI = URI;
    }

    function withdraw() external onlyOwner {
        require(IERC20(BUGSAddress).transfer(msg.sender, IERC20(BUGSAddress).balanceOf(address(this))), "Could not transfer WETH");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":"BUGSAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address[]","name":"toAddresses","type":"address[]"}],"name":"giftToMultiple","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"hasPresaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hasPublicSaleStarted","outputs":[{"internalType":"bool","name":"","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":"maxTokensPerWalletPresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokensPerWalletPublicSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","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":"pauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presalePurchased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicSalePurchased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_BUGSAddress","type":"address"}],"name":"setBUGSAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setMaxTokensPerWalletPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setMaxTokensPerWalletPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setTokenPricePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setTokenPricePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_whitelistRoot","type":"bytes32"}],"name":"setWhitelistRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","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":[],"name":"tokenBaseURI","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":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPricePresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPricePublicSale","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":"tokensToBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"address","name":"account","type":"address"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"verify","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

683635c9adc5dea0000060088190556009556003600a819055600b5560e06040526036608081815290620027d360a03980516200004591600c9160209091019062000161565b50600d80546001600160b01b03191675770fd3044ef83a91f14830a9fcbb8b92c61549b600001790556101f4600e553480156200008157600080fd5b50604080518082018252600b81526a446970706965735065706560a81b602080830191825283518085019094526005845264445045504560d81b908401528151919291620000d29160019162000161565b508051620000e890600290602084019062000161565b50505062000105620000ff6200010b60201b60201c565b6200010f565b62000244565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200016f9062000207565b90600052602060002090601f016020900481019282620001935760008555620001de565b82601f10620001ae57805160ff1916838001178555620001de565b82800160010185558215620001de579182015b82811115620001de578251825591602001919060010190620001c1565b50620001ec929150620001f0565b5090565b5b80821115620001ec5760008155600101620001f1565b600181811c908216806200021c57607f821691505b602082108114156200023e57634e487b7160e01b600052602260045260246000fd5b50919050565b61257f80620002546000396000f3fe608060405234801561001057600080fd5b506004361061028a5760003560e01c806370a082311161015c578063b5aaa494116100ce578063e985e9c511610087578063e985e9c514610561578063f2fde38b1461059d578063f5aa406d146105b0578063fc01fea5146105c3578063fdd4b0f0146105e3578063ff45cb95146105f557600080fd5b8063b5aaa49414610504578063b66a0e5d1461050d578063b76a0df414610515578063b88d4fde14610528578063ba41b0c61461053b578063c87b56dd1461054e57600080fd5b806383a076be1161012057806383a076be146104af5780638da5cb5b146104c257806395d89b41146104d357806399c5a581146104db578063a22cb465146104e4578063b0220015146104f757600080fd5b806370a082311461046a578063715018a61461047d57806378c5fe37146104855780637ff9b5961461048e578063813519531461049657600080fd5b8063311df29a1161020057806346c4dc27116101b957806346c4dc271461040e5780634e99b800146104215780634f6ccce71461042957806355367ba91461043c57806355f804b3146104445780636352211e1461045757600080fd5b8063311df29a146103a457806335d54639146103b7578063386bfc98146103d757806339c42224146103e05780633ccfd60b146103f357806342842e0e146103fb57600080fd5b8063095ea7b311610252578063095ea7b31461031f57806318160ddd146103325780631ad7634a1461036257806323b872dd146103755780632b038411146103885780632f745c591461039157600080fd5b806301ffc9a71461028f57806302cf138b146102b757806304d44109146102cc57806306fdde03146102df578063081812fc146102f4575b600080fd5b6102a261029d366004611e2e565b6105fe565b60405190151581526020015b60405180910390f35b6102ca6102c5366004611e4b565b61066b565b005b6102ca6102da366004611e4b565b6106a3565b6102e76106d2565b6040516102ae9190611ebc565b610307610302366004611e4b565b610764565b6040516001600160a01b0390911681526020016102ae565b6102ca61032d366004611eeb565b6107a8565b6103546000546001600160801b03600160801b82048116918116919091031690565b6040519081526020016102ae565b6102ca610370366004611f15565b610836565b6102ca610383366004611f30565b61088a565b61035460085481565b61035461039f366004611eeb565b610895565b6102ca6103b2366004611e4b565b610991565b6103546103c5366004611f15565b60106020526000908152604090205481565b610354600f5481565b6102ca6103ee366004611f6c565b6109c0565b6102ca610aa6565b6102ca610409366004611f30565b610c08565b6102ca61041c366004611e4b565b610c23565b6102e7610c52565b610354610437366004611e4b565b610ce0565b6102ca610d8a565b6102ca610452366004611fea565b610dc1565b610307610465366004611e4b565b610df7565b610354610478366004611f15565b610e09565b6102ca610e57565b61035460095481565b610354610e8b565b600d54610307906201000090046001600160a01b031681565b6102ca6104bd36600461205b565b610eac565b6007546001600160a01b0316610307565b6102e7610f3e565b610354600b5481565b6102ca6104f2366004612095565b610f4d565b600d546102a29060ff1681565b610354600a5481565b6102ca610fe3565b6102a2610523366004612191565b61101e565b6102ca6105363660046121de565b61106f565b6102ca61054936600461229d565b6110a9565b6102e761055c366004611e4b565b6113c7565b6102a261056f3660046122cd565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6102ca6105ab366004611f15565b61144c565b6102ca6105be366004611e4b565b6114e7565b6103546105d1366004611f15565b60116020526000908152604090205481565b600d546102a290610100900460ff1681565b610354600e5481565b60006001600160e01b031982166380ac58cd60e01b148061062f57506001600160e01b03198216635b5e139f60e01b145b8061064a57506001600160e01b0319821663780e9d6360e01b145b8061066557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b0316331461069e5760405162461bcd60e51b8152600401610695906122f7565b60405180910390fd5b600a55565b6007546001600160a01b031633146106cd5760405162461bcd60e51b8152600401610695906122f7565b600b55565b6060600180546106e19061232c565b80601f016020809104026020016040519081016040528092919081815260200182805461070d9061232c565b801561075a5780601f1061072f5761010080835404028352916020019161075a565b820191906000526020600020905b81548152906001019060200180831161073d57829003601f168201915b5050505050905090565b600061076f82611516565b61078c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006107b382610df7565b9050806001600160a01b0316836001600160a01b031614156107e85760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108085750610806813361056f565b155b15610826576040516367d9dca160e11b815260040160405180910390fd5b61083183838361154a565b505050565b6007546001600160a01b031633146108605760405162461bcd60e51b8152600401610695906122f7565b600d80546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b6108318383836115a6565b60006108a083610e09565b82106108bf576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b8381101561098b57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615801592820192909252906109375750610983565b80516001600160a01b03161561094c57805192505b876001600160a01b0316836001600160a01b03161415610981578684141561097a5750935061066592505050565b6001909301925b505b6001016108d0565b50600080fd5b6007546001600160a01b031633146109bb5760405162461bcd60e51b8152600401610695906122f7565b600855565b6007546001600160a01b031633146109ea5760405162461bcd60e51b8152600401610695906122f7565b60006109f6828561237d565b9050600e54811115610a3b5760405162461bcd60e51b815260206004820152600e60248201526d139bc81d1bdad95b9cc81b19599d60921b6044820152606401610695565b60005b82811015610a8857610a76848483818110610a5b57610a5b61239c565b9050602002016020810190610a709190611f15565b866117c3565b80610a80816123b2565b915050610a3e565b5080600e6000828254610a9b91906123cd565b909155505050505050565b6007546001600160a01b03163314610ad05760405162461bcd60e51b8152600401610695906122f7565b600d546040516370a0823160e01b8152306004820152620100009091046001600160a01b03169063a9059cbb90339083906370a0823190602401602060405180830381865afa158015610b27573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b4b91906123e4565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610b96573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bba91906123fd565b610c065760405162461bcd60e51b815260206004820152601760248201527f436f756c64206e6f74207472616e7366657220574554480000000000000000006044820152606401610695565b565b6108318383836040518060200160405280600081525061106f565b6007546001600160a01b03163314610c4d5760405162461bcd60e51b8152600401610695906122f7565b600955565b600c8054610c5f9061232c565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8b9061232c565b8015610cd85780601f10610cad57610100808354040283529160200191610cd8565b820191906000526020600020905b815481529060010190602001808311610cbb57829003601f168201915b505050505081565b600080546001600160801b031681805b82811015610d7057600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290610d675785831415610d605750949350505050565b6001909201915b50600101610cf0565b506040516329c8c00760e21b815260040160405180910390fd5b6007546001600160a01b03163314610db45760405162461bcd60e51b8152600401610695906122f7565b600d805461ffff19169055565b6007546001600160a01b03163314610deb5760405162461bcd60e51b8152600401610695906122f7565b610831600c8383611d7f565b6000610e02826117e1565b5192915050565b60006001600160a01b038216610e32576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160401b031690565b6007546001600160a01b03163314610e815760405162461bcd60e51b8152600401610695906122f7565b610c066000611903565b600d54600090610100900460ff1615610ea5575060095490565b5060085490565b6007546001600160a01b03163314610ed65760405162461bcd60e51b8152600401610695906122f7565b600e54821115610f195760405162461bcd60e51b815260206004820152600e60248201526d139bc81d1bdad95b9cc81b19599d60921b6044820152606401610695565b610f2381836117c3565b81600e6000828254610f3591906123cd565b90915550505050565b6060600280546106e19061232c565b6001600160a01b038216331415610f775760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b0316331461100d5760405162461bcd60e51b8152600401610695906122f7565b600d805461ffff1916610101179055565b6040516bffffffffffffffffffffffff19606084901b166020820152600090819060340160405160208183030381529060405280519060200120905061106783600f5483611955565b949350505050565b61107a8484846115a6565b6110868484848461196b565b6110a3576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000826110b4610e8b565b6110be919061237d565b600d546040516323b872dd60e01b8152336004820152306024820152604481018390529192506201000090046001600160a01b0316906323b872dd906064016020604051808303816000875af115801561111c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061114091906123fd565b61118c5760405162461bcd60e51b815260206004820152601760248201527f436f756c64206e6f74207472616e7366657220425547530000000000000000006044820152606401610695565b600d5460ff166111de5760405162461bcd60e51b815260206004820152601a60248201527f43616e6e6f74206d696e74206265666f72652070726573616c650000000000006044820152606401610695565b600d54610100900460ff16806111f957506111f9338361101e565b61124f5760405162461bcd60e51b815260206004820152602160248201527f4275796572206e6f742077686974656c697374656420666f722070726573616c6044820152606560f81b6064820152608401610695565b600e548311156112b55760405162461bcd60e51b815260206004820152602b60248201527f4e6f20746f6b656e73206c65667420666f72206d696e74696e6720696e20796f60448201526a7572204d6574614d61736b60a81b6064820152608401610695565b600d54610100900460ff161561130657600b54336000908152601160205260409020546112e390859061241a565b11156113015760405162461bcd60e51b815260040161069590612432565b611342565b600a543360009081526010602052604090205461132490859061241a565b11156113425760405162461bcd60e51b815260040161069590612432565b61134c33846117c3565b600d54610100900460ff161561138657336000908152601160205260408120805485929061137b90849061241a565b909155506113ab9050565b33600090815260106020526040812080548592906113a590849061241a565b90915550505b82600e60008282546113bd91906123cd565b9091555050505050565b60606113d282611516565b6113ef57604051630a14c4b560e41b815260040160405180910390fd5b60006113f9611a6a565b905080516000141561141a5760405180602001604052806000815250611445565b8061142484611a79565b604051602001611435929190612482565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146114765760405162461bcd60e51b8152600401610695906122f7565b6001600160a01b0381166114db5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610695565b6114e481611903565b50565b6007546001600160a01b031633146115115760405162461bcd60e51b8152600401610695906122f7565b600f55565b600080546001600160801b031682108015610665575050600090815260036020526040902054600160e01b900460ff161590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006115b1826117e1565b80519091506000906001600160a01b0316336001600160a01b031614806115df575081516115df903361056f565b806115fa5750336115ef84610764565b6001600160a01b0316145b90508061161a57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b03161461164f5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661167657604051633a954ecd60e21b815260040160405180910390fd5b611686600084846000015161154a565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611779576000546001600160801b031681101561177957825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6117dd828260405180602001604052806000815250611b76565b5050565b60408051606081018252600080825260208201819052918101829052905482906001600160801b03168110156118ea57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906118e85780516001600160a01b03161561187f579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156118e3579392505050565b61187f565b505b604051636f96cda160e11b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826119628584611b83565b14949350505050565b60006001600160a01b0384163b15611a5f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119af9033908990889088906004016124b1565b6020604051808303816000875af19250505080156119ea575060408051601f3d908101601f191682019092526119e7918101906124ee565b60015b611a45573d808015611a18576040519150601f19603f3d011682016040523d82523d6000602084013e611a1d565b606091505b508051611a3d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611067565b506001949350505050565b6060600c80546106e19061232c565b606081611a9d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ac75780611ab1816123b2565b9150611ac09050600a83612521565b9150611aa1565b6000816001600160401b03811115611ae157611ae16120cc565b6040519080825280601f01601f191660200182016040528015611b0b576020820181803683370190505b5090505b841561106757611b206001836123cd565b9150611b2d600a86612535565b611b3890603061241a565b60f81b818381518110611b4d57611b4d61239c565b60200101906001600160f81b031916908160001a905350611b6f600a86612521565b9450611b0f565b6108318383836001611bf7565b600081815b8451811015611bef576000858281518110611ba557611ba561239c565b60200260200101519050808311611bcb5760008381526020829052604090209250611bdc565b600081815260208490526040902092505b5080611be7816123b2565b915050611b88565b509392505050565b6000546001600160801b03166001600160a01b038516611c2957604051622e076360e81b815260040160405180910390fd5b83611c475760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b85811015611d595760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611d2f5750611d2d600088848861196b565b155b15611d4d576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611cd8565b50600080546001600160801b0319166001600160801b03929092169190911790556117bc565b828054611d8b9061232c565b90600052602060002090601f016020900481019282611dad5760008555611df3565b82601f10611dc65782800160ff19823516178555611df3565b82800160010185558215611df3579182015b82811115611df3578235825591602001919060010190611dd8565b50611dff929150611e03565b5090565b5b80821115611dff5760008155600101611e04565b6001600160e01b0319811681146114e457600080fd5b600060208284031215611e4057600080fd5b813561144581611e18565b600060208284031215611e5d57600080fd5b5035919050565b60005b83811015611e7f578181015183820152602001611e67565b838111156110a35750506000910152565b60008151808452611ea8816020860160208601611e64565b601f01601f19169290920160200192915050565b6020815260006114456020830184611e90565b80356001600160a01b0381168114611ee657600080fd5b919050565b60008060408385031215611efe57600080fd5b611f0783611ecf565b946020939093013593505050565b600060208284031215611f2757600080fd5b61144582611ecf565b600080600060608486031215611f4557600080fd5b611f4e84611ecf565b9250611f5c60208501611ecf565b9150604084013590509250925092565b600080600060408486031215611f8157600080fd5b8335925060208401356001600160401b0380821115611f9f57600080fd5b818601915086601f830112611fb357600080fd5b813581811115611fc257600080fd5b8760208260051b8501011115611fd757600080fd5b6020830194508093505050509250925092565b60008060208385031215611ffd57600080fd5b82356001600160401b038082111561201457600080fd5b818501915085601f83011261202857600080fd5b81358181111561203757600080fd5b86602082850101111561204957600080fd5b60209290920196919550909350505050565b6000806040838503121561206e57600080fd5b8235915061207e60208401611ecf565b90509250929050565b80151581146114e457600080fd5b600080604083850312156120a857600080fd5b6120b183611ecf565b915060208301356120c181612087565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561210a5761210a6120cc565b604052919050565b600082601f83011261212357600080fd5b813560206001600160401b0382111561213e5761213e6120cc565b8160051b61214d8282016120e2565b928352848101820192828101908785111561216757600080fd5b83870192505b848310156121865782358252918301919083019061216d565b979650505050505050565b600080604083850312156121a457600080fd5b6121ad83611ecf565b915060208301356001600160401b038111156121c857600080fd5b6121d485828601612112565b9150509250929050565b600080600080608085870312156121f457600080fd5b6121fd85611ecf565b9350602061220c818701611ecf565b93506040860135925060608601356001600160401b038082111561222f57600080fd5b818801915088601f83011261224357600080fd5b813581811115612255576122556120cc565b612267601f8201601f191685016120e2565b9150808252898482850101111561227d57600080fd5b808484018584013760008482840101525080935050505092959194509250565b600080604083850312156122b057600080fd5b8235915060208301356001600160401b038111156121c857600080fd5b600080604083850312156122e057600080fd5b6122e983611ecf565b915061207e60208401611ecf565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061234057607f821691505b6020821081141561236157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561239757612397612367565b500290565b634e487b7160e01b600052603260045260246000fd5b60006000198214156123c6576123c6612367565b5060010190565b6000828210156123df576123df612367565b500390565b6000602082840312156123f657600080fd5b5051919050565b60006020828403121561240f57600080fd5b815161144581612087565b6000821982111561242d5761242d612367565b500190565b60208082526030908201527f43616e6e6f74206d696e74206d6f7265207468616e20746865206d617820746f60408201526f6b656e7320706572206164647265737360801b606082015260800190565b60008351612494818460208801611e64565b8351908301906124a8818360208801611e64565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124e490830184611e90565b9695505050505050565b60006020828403121561250057600080fd5b815161144581611e18565b634e487b7160e01b600052601260045260246000fd5b6000826125305761253061250b565b500490565b6000826125445761254461250b565b50069056fea2646970667358221220b28f5edd2ba05446591fb0bff2b9b8acb3f4c1af2b1cdeb22fe2c2051ec210a664736f6c634300080c0033697066733a2f2f516d58486850444e4363516b524d62385861394a725739384373794d6b356954776f64637a47504d5470673548472f

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061028a5760003560e01c806370a082311161015c578063b5aaa494116100ce578063e985e9c511610087578063e985e9c514610561578063f2fde38b1461059d578063f5aa406d146105b0578063fc01fea5146105c3578063fdd4b0f0146105e3578063ff45cb95146105f557600080fd5b8063b5aaa49414610504578063b66a0e5d1461050d578063b76a0df414610515578063b88d4fde14610528578063ba41b0c61461053b578063c87b56dd1461054e57600080fd5b806383a076be1161012057806383a076be146104af5780638da5cb5b146104c257806395d89b41146104d357806399c5a581146104db578063a22cb465146104e4578063b0220015146104f757600080fd5b806370a082311461046a578063715018a61461047d57806378c5fe37146104855780637ff9b5961461048e578063813519531461049657600080fd5b8063311df29a1161020057806346c4dc27116101b957806346c4dc271461040e5780634e99b800146104215780634f6ccce71461042957806355367ba91461043c57806355f804b3146104445780636352211e1461045757600080fd5b8063311df29a146103a457806335d54639146103b7578063386bfc98146103d757806339c42224146103e05780633ccfd60b146103f357806342842e0e146103fb57600080fd5b8063095ea7b311610252578063095ea7b31461031f57806318160ddd146103325780631ad7634a1461036257806323b872dd146103755780632b038411146103885780632f745c591461039157600080fd5b806301ffc9a71461028f57806302cf138b146102b757806304d44109146102cc57806306fdde03146102df578063081812fc146102f4575b600080fd5b6102a261029d366004611e2e565b6105fe565b60405190151581526020015b60405180910390f35b6102ca6102c5366004611e4b565b61066b565b005b6102ca6102da366004611e4b565b6106a3565b6102e76106d2565b6040516102ae9190611ebc565b610307610302366004611e4b565b610764565b6040516001600160a01b0390911681526020016102ae565b6102ca61032d366004611eeb565b6107a8565b6103546000546001600160801b03600160801b82048116918116919091031690565b6040519081526020016102ae565b6102ca610370366004611f15565b610836565b6102ca610383366004611f30565b61088a565b61035460085481565b61035461039f366004611eeb565b610895565b6102ca6103b2366004611e4b565b610991565b6103546103c5366004611f15565b60106020526000908152604090205481565b610354600f5481565b6102ca6103ee366004611f6c565b6109c0565b6102ca610aa6565b6102ca610409366004611f30565b610c08565b6102ca61041c366004611e4b565b610c23565b6102e7610c52565b610354610437366004611e4b565b610ce0565b6102ca610d8a565b6102ca610452366004611fea565b610dc1565b610307610465366004611e4b565b610df7565b610354610478366004611f15565b610e09565b6102ca610e57565b61035460095481565b610354610e8b565b600d54610307906201000090046001600160a01b031681565b6102ca6104bd36600461205b565b610eac565b6007546001600160a01b0316610307565b6102e7610f3e565b610354600b5481565b6102ca6104f2366004612095565b610f4d565b600d546102a29060ff1681565b610354600a5481565b6102ca610fe3565b6102a2610523366004612191565b61101e565b6102ca6105363660046121de565b61106f565b6102ca61054936600461229d565b6110a9565b6102e761055c366004611e4b565b6113c7565b6102a261056f3660046122cd565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6102ca6105ab366004611f15565b61144c565b6102ca6105be366004611e4b565b6114e7565b6103546105d1366004611f15565b60116020526000908152604090205481565b600d546102a290610100900460ff1681565b610354600e5481565b60006001600160e01b031982166380ac58cd60e01b148061062f57506001600160e01b03198216635b5e139f60e01b145b8061064a57506001600160e01b0319821663780e9d6360e01b145b8061066557506301ffc9a760e01b6001600160e01b03198316145b92915050565b6007546001600160a01b0316331461069e5760405162461bcd60e51b8152600401610695906122f7565b60405180910390fd5b600a55565b6007546001600160a01b031633146106cd5760405162461bcd60e51b8152600401610695906122f7565b600b55565b6060600180546106e19061232c565b80601f016020809104026020016040519081016040528092919081815260200182805461070d9061232c565b801561075a5780601f1061072f5761010080835404028352916020019161075a565b820191906000526020600020905b81548152906001019060200180831161073d57829003601f168201915b5050505050905090565b600061076f82611516565b61078c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006107b382610df7565b9050806001600160a01b0316836001600160a01b031614156107e85760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108085750610806813361056f565b155b15610826576040516367d9dca160e11b815260040160405180910390fd5b61083183838361154a565b505050565b6007546001600160a01b031633146108605760405162461bcd60e51b8152600401610695906122f7565b600d80546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b6108318383836115a6565b60006108a083610e09565b82106108bf576040516306ed618760e11b815260040160405180910390fd5b600080546001600160801b03169080805b8381101561098b57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615801592820192909252906109375750610983565b80516001600160a01b03161561094c57805192505b876001600160a01b0316836001600160a01b03161415610981578684141561097a5750935061066592505050565b6001909301925b505b6001016108d0565b50600080fd5b6007546001600160a01b031633146109bb5760405162461bcd60e51b8152600401610695906122f7565b600855565b6007546001600160a01b031633146109ea5760405162461bcd60e51b8152600401610695906122f7565b60006109f6828561237d565b9050600e54811115610a3b5760405162461bcd60e51b815260206004820152600e60248201526d139bc81d1bdad95b9cc81b19599d60921b6044820152606401610695565b60005b82811015610a8857610a76848483818110610a5b57610a5b61239c565b9050602002016020810190610a709190611f15565b866117c3565b80610a80816123b2565b915050610a3e565b5080600e6000828254610a9b91906123cd565b909155505050505050565b6007546001600160a01b03163314610ad05760405162461bcd60e51b8152600401610695906122f7565b600d546040516370a0823160e01b8152306004820152620100009091046001600160a01b03169063a9059cbb90339083906370a0823190602401602060405180830381865afa158015610b27573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b4b91906123e4565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015610b96573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bba91906123fd565b610c065760405162461bcd60e51b815260206004820152601760248201527f436f756c64206e6f74207472616e7366657220574554480000000000000000006044820152606401610695565b565b6108318383836040518060200160405280600081525061106f565b6007546001600160a01b03163314610c4d5760405162461bcd60e51b8152600401610695906122f7565b600955565b600c8054610c5f9061232c565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8b9061232c565b8015610cd85780601f10610cad57610100808354040283529160200191610cd8565b820191906000526020600020905b815481529060010190602001808311610cbb57829003601f168201915b505050505081565b600080546001600160801b031681805b82811015610d7057600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290610d675785831415610d605750949350505050565b6001909201915b50600101610cf0565b506040516329c8c00760e21b815260040160405180910390fd5b6007546001600160a01b03163314610db45760405162461bcd60e51b8152600401610695906122f7565b600d805461ffff19169055565b6007546001600160a01b03163314610deb5760405162461bcd60e51b8152600401610695906122f7565b610831600c8383611d7f565b6000610e02826117e1565b5192915050565b60006001600160a01b038216610e32576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600460205260409020546001600160401b031690565b6007546001600160a01b03163314610e815760405162461bcd60e51b8152600401610695906122f7565b610c066000611903565b600d54600090610100900460ff1615610ea5575060095490565b5060085490565b6007546001600160a01b03163314610ed65760405162461bcd60e51b8152600401610695906122f7565b600e54821115610f195760405162461bcd60e51b815260206004820152600e60248201526d139bc81d1bdad95b9cc81b19599d60921b6044820152606401610695565b610f2381836117c3565b81600e6000828254610f3591906123cd565b90915550505050565b6060600280546106e19061232c565b6001600160a01b038216331415610f775760405163b06307db60e01b815260040160405180910390fd5b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b0316331461100d5760405162461bcd60e51b8152600401610695906122f7565b600d805461ffff1916610101179055565b6040516bffffffffffffffffffffffff19606084901b166020820152600090819060340160405160208183030381529060405280519060200120905061106783600f5483611955565b949350505050565b61107a8484846115a6565b6110868484848461196b565b6110a3576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6000826110b4610e8b565b6110be919061237d565b600d546040516323b872dd60e01b8152336004820152306024820152604481018390529192506201000090046001600160a01b0316906323b872dd906064016020604051808303816000875af115801561111c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061114091906123fd565b61118c5760405162461bcd60e51b815260206004820152601760248201527f436f756c64206e6f74207472616e7366657220425547530000000000000000006044820152606401610695565b600d5460ff166111de5760405162461bcd60e51b815260206004820152601a60248201527f43616e6e6f74206d696e74206265666f72652070726573616c650000000000006044820152606401610695565b600d54610100900460ff16806111f957506111f9338361101e565b61124f5760405162461bcd60e51b815260206004820152602160248201527f4275796572206e6f742077686974656c697374656420666f722070726573616c6044820152606560f81b6064820152608401610695565b600e548311156112b55760405162461bcd60e51b815260206004820152602b60248201527f4e6f20746f6b656e73206c65667420666f72206d696e74696e6720696e20796f60448201526a7572204d6574614d61736b60a81b6064820152608401610695565b600d54610100900460ff161561130657600b54336000908152601160205260409020546112e390859061241a565b11156113015760405162461bcd60e51b815260040161069590612432565b611342565b600a543360009081526010602052604090205461132490859061241a565b11156113425760405162461bcd60e51b815260040161069590612432565b61134c33846117c3565b600d54610100900460ff161561138657336000908152601160205260408120805485929061137b90849061241a565b909155506113ab9050565b33600090815260106020526040812080548592906113a590849061241a565b90915550505b82600e60008282546113bd91906123cd565b9091555050505050565b60606113d282611516565b6113ef57604051630a14c4b560e41b815260040160405180910390fd5b60006113f9611a6a565b905080516000141561141a5760405180602001604052806000815250611445565b8061142484611a79565b604051602001611435929190612482565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146114765760405162461bcd60e51b8152600401610695906122f7565b6001600160a01b0381166114db5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610695565b6114e481611903565b50565b6007546001600160a01b031633146115115760405162461bcd60e51b8152600401610695906122f7565b600f55565b600080546001600160801b031682108015610665575050600090815260036020526040902054600160e01b900460ff161590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006115b1826117e1565b80519091506000906001600160a01b0316336001600160a01b031614806115df575081516115df903361056f565b806115fa5750336115ef84610764565b6001600160a01b0316145b90508061161a57604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b03161461164f5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661167657604051633a954ecd60e21b815260040160405180910390fd5b611686600084846000015161154a565b6001600160a01b038581166000908152600460209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600390945282852080546001600160e01b031916909417600160a01b429092169190910217909255908601808352912054909116611779576000546001600160801b031681101561177957825160008281526003602090815260409091208054918601516001600160401b0316600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6117dd828260405180602001604052806000815250611b76565b5050565b60408051606081018252600080825260208201819052918101829052905482906001600160801b03168110156118ea57600081815260036020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906118e85780516001600160a01b03161561187f579392505050565b5060001901600081815260036020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff16151592810192909252156118e3579392505050565b61187f565b505b604051636f96cda160e11b815260040160405180910390fd5b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826119628584611b83565b14949350505050565b60006001600160a01b0384163b15611a5f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119af9033908990889088906004016124b1565b6020604051808303816000875af19250505080156119ea575060408051601f3d908101601f191682019092526119e7918101906124ee565b60015b611a45573d808015611a18576040519150601f19603f3d011682016040523d82523d6000602084013e611a1d565b606091505b508051611a3d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611067565b506001949350505050565b6060600c80546106e19061232c565b606081611a9d5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ac75780611ab1816123b2565b9150611ac09050600a83612521565b9150611aa1565b6000816001600160401b03811115611ae157611ae16120cc565b6040519080825280601f01601f191660200182016040528015611b0b576020820181803683370190505b5090505b841561106757611b206001836123cd565b9150611b2d600a86612535565b611b3890603061241a565b60f81b818381518110611b4d57611b4d61239c565b60200101906001600160f81b031916908160001a905350611b6f600a86612521565b9450611b0f565b6108318383836001611bf7565b600081815b8451811015611bef576000858281518110611ba557611ba561239c565b60200260200101519050808311611bcb5760008381526020829052604090209250611bdc565b600081815260208490526040902092505b5080611be7816123b2565b915050611b88565b509392505050565b6000546001600160801b03166001600160a01b038516611c2957604051622e076360e81b815260040160405180910390fd5b83611c475760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c018116909202179091558584526003909252822080546001600160e01b031916909317600160a01b42909216919091021790915581905b85811015611d595760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4838015611d2f5750611d2d600088848861196b565b155b15611d4d576040516368d2bf6b60e11b815260040160405180910390fd5b60019182019101611cd8565b50600080546001600160801b0319166001600160801b03929092169190911790556117bc565b828054611d8b9061232c565b90600052602060002090601f016020900481019282611dad5760008555611df3565b82601f10611dc65782800160ff19823516178555611df3565b82800160010185558215611df3579182015b82811115611df3578235825591602001919060010190611dd8565b50611dff929150611e03565b5090565b5b80821115611dff5760008155600101611e04565b6001600160e01b0319811681146114e457600080fd5b600060208284031215611e4057600080fd5b813561144581611e18565b600060208284031215611e5d57600080fd5b5035919050565b60005b83811015611e7f578181015183820152602001611e67565b838111156110a35750506000910152565b60008151808452611ea8816020860160208601611e64565b601f01601f19169290920160200192915050565b6020815260006114456020830184611e90565b80356001600160a01b0381168114611ee657600080fd5b919050565b60008060408385031215611efe57600080fd5b611f0783611ecf565b946020939093013593505050565b600060208284031215611f2757600080fd5b61144582611ecf565b600080600060608486031215611f4557600080fd5b611f4e84611ecf565b9250611f5c60208501611ecf565b9150604084013590509250925092565b600080600060408486031215611f8157600080fd5b8335925060208401356001600160401b0380821115611f9f57600080fd5b818601915086601f830112611fb357600080fd5b813581811115611fc257600080fd5b8760208260051b8501011115611fd757600080fd5b6020830194508093505050509250925092565b60008060208385031215611ffd57600080fd5b82356001600160401b038082111561201457600080fd5b818501915085601f83011261202857600080fd5b81358181111561203757600080fd5b86602082850101111561204957600080fd5b60209290920196919550909350505050565b6000806040838503121561206e57600080fd5b8235915061207e60208401611ecf565b90509250929050565b80151581146114e457600080fd5b600080604083850312156120a857600080fd5b6120b183611ecf565b915060208301356120c181612087565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561210a5761210a6120cc565b604052919050565b600082601f83011261212357600080fd5b813560206001600160401b0382111561213e5761213e6120cc565b8160051b61214d8282016120e2565b928352848101820192828101908785111561216757600080fd5b83870192505b848310156121865782358252918301919083019061216d565b979650505050505050565b600080604083850312156121a457600080fd5b6121ad83611ecf565b915060208301356001600160401b038111156121c857600080fd5b6121d485828601612112565b9150509250929050565b600080600080608085870312156121f457600080fd5b6121fd85611ecf565b9350602061220c818701611ecf565b93506040860135925060608601356001600160401b038082111561222f57600080fd5b818801915088601f83011261224357600080fd5b813581811115612255576122556120cc565b612267601f8201601f191685016120e2565b9150808252898482850101111561227d57600080fd5b808484018584013760008482840101525080935050505092959194509250565b600080604083850312156122b057600080fd5b8235915060208301356001600160401b038111156121c857600080fd5b600080604083850312156122e057600080fd5b6122e983611ecf565b915061207e60208401611ecf565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061234057607f821691505b6020821081141561236157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561239757612397612367565b500290565b634e487b7160e01b600052603260045260246000fd5b60006000198214156123c6576123c6612367565b5060010190565b6000828210156123df576123df612367565b500390565b6000602082840312156123f657600080fd5b5051919050565b60006020828403121561240f57600080fd5b815161144581612087565b6000821982111561242d5761242d612367565b500190565b60208082526030908201527f43616e6e6f74206d696e74206d6f7265207468616e20746865206d617820746f60408201526f6b656e7320706572206164647265737360801b606082015260800190565b60008351612494818460208801611e64565b8351908301906124a8818360208801611e64565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124e490830184611e90565b9695505050505050565b60006020828403121561250057600080fd5b815161144581611e18565b634e487b7160e01b600052601260045260246000fd5b6000826125305761253061250b565b500490565b6000826125445761254461250b565b50069056fea2646970667358221220b28f5edd2ba05446591fb0bff2b9b8acb3f4c1af2b1cdeb22fe2c2051ec210a664736f6c634300080c0033

Deployed Bytecode Sourcemap

51670:4470:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35131:372;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;35131:372:0;;;;;;;;52514:120;;;;;;:::i;:::-;;:::i;:::-;;52642:126;;;;;;:::i;:::-;;:::i;37741:100::-;;;:::i;:::-;;;;;;;:::i;39244:204::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;39244:204:0;1528:203:1;38807:371:0;;;;;;:::i;:::-;;:::i;32368:280::-;;32421:7;32613:12;-1:-1:-1;;;;;;;;32613:12:0;;;;32597:13;;;:28;;;;32590:35;;32368:280;;;;2319:25:1;;;2307:2;2292:18;32368:280:0;2173:177:1;53563:108:0;;;;;;:::i;:::-;;:::i;40101:170::-;;;;;;:::i;:::-;;:::i;51752:45::-;;;;;;33954:1105;;;;;;:::i;:::-;;:::i;53213:102::-;;;;;;:::i;:::-;;:::i;52321:51::-;;;;;;:::i;:::-;;;;;;;;;;;;;;52286:28;;;;;;55324:395;;;;;;:::i;:::-;;:::i;55957:180::-;;;:::i;40342:185::-;;;;;;:::i;:::-;;:::i;53323:108::-;;;;;;:::i;:::-;;:::i;51968:85::-;;;:::i;32941:713::-;;;;;;:::i;:::-;;:::i;52900:118::-;;;:::i;55852:97::-;;;;;;:::i;:::-;;:::i;37550:124::-;;;;;;:::i;:::-;;:::i;35567:206::-;;;;;;:::i;:::-;;:::i;10052:103::-;;;:::i;51804:48::-;;;;;;53030:175;;;:::i;52155:71::-;;;;;;;;-1:-1:-1;;;;;52155:71:0;;;55112:204;;;;;;:::i;:::-;;:::i;9401:87::-;9474:6;;-1:-1:-1;;;;;9474:6:0;9401:87;;37910:104;;;:::i;51912:47::-;;;;;;39520:279;;;;;;:::i;:::-;;:::i;52062:37::-;;;;;;;;;51861:44;;;;;;52776:116;;;:::i;53679:241::-;;;;;;:::i;:::-;;:::i;40598:342::-;;;;;;:::i;:::-;;:::i;53928:1176::-;;;;;;:::i;:::-;;:::i;38085:318::-;;;;;;:::i;:::-;;:::i;39870:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;39991:25:0;;;39967:4;39991:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;39870:164;10310:201;;;;;;:::i;:::-;;:::i;53439:116::-;;;;;;:::i;:::-;;:::i;52379:54::-;;;;;;:::i;:::-;;;;;;;;;;;;;;52106:40;;;;;;;;;;;;52235:38;;;;;;35131:372;35233:4;-1:-1:-1;;;;;;35270:40:0;;-1:-1:-1;;;35270:40:0;;:105;;-1:-1:-1;;;;;;;35327:48:0;;-1:-1:-1;;;35327:48:0;35270:105;:172;;;-1:-1:-1;;;;;;;35392:50:0;;-1:-1:-1;;;35392:50:0;35270:172;:225;;;-1:-1:-1;;;;;;;;;;22294:40:0;;;35459:36;35250:245;35131:372;-1:-1:-1;;35131:372:0:o;52514:120::-;9474:6;;-1:-1:-1;;;;;9474:6:0;8205:10;9621:23;9613:68;;;;-1:-1:-1;;;9613:68:0;;;;;;;:::i;:::-;;;;;;;;;52595:25:::1;:31:::0;52514:120::o;52642:126::-;9474:6;;-1:-1:-1;;;;;9474:6:0;8205:10;9621:23;9613:68;;;;-1:-1:-1;;;9613:68:0;;;;;;;:::i;:::-;52726:28:::1;:34:::0;52642:126::o;37741:100::-;37795:13;37828:5;37821:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37741:100;:::o;39244:204::-;39312:7;39337:16;39345:7;39337;:16::i;:::-;39332:64;;39362:34;;-1:-1:-1;;;39362:34:0;;;;;;;;;;;39332:64;-1:-1:-1;39416:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;39416:24:0;;39244:204::o;38807:371::-;38880:13;38896:24;38912:7;38896:15;:24::i;:::-;38880:40;;38941:5;-1:-1:-1;;;;;38935:11:0;:2;-1:-1:-1;;;;;38935:11:0;;38931:48;;;38955:24;;-1:-1:-1;;;38955:24:0;;;;;;;;;;;38931:48;8205:10;-1:-1:-1;;;;;38996:21:0;;;;;;:63;;-1:-1:-1;39022:37:0;39039:5;8205:10;39870:164;:::i;39022:37::-;39021:38;38996:63;38992:138;;;39083:35;;-1:-1:-1;;;39083:35:0;;;;;;;;;;;38992:138;39142:28;39151:2;39155:7;39164:5;39142:8;:28::i;:::-;38869:309;38807:371;;:::o;53563:108::-;9474:6;;-1:-1:-1;;;;;9474:6:0;8205:10;9621:23;9613:68;;;;-1:-1:-1;;;9613:68:0;;;;;;;:::i;:::-;53637:11:::1;:26:::0;;-1:-1:-1;;;;;53637:26:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;53637:26:0;;::::1;::::0;;;::::1;::::0;;53563:108::o;40101:170::-;40235:28;40245:4;40251:2;40255:7;40235:9;:28::i;33954:1105::-;34043:7;34076:16;34086:5;34076:9;:16::i;:::-;34067:5;:25;34063:61;;34101:23;;-1:-1:-1;;;34101:23:0;;;;;;;;;;;34063:61;34135:22;34160:13;;-1:-1:-1;;;;;34160:13:0;;34135:22;;34410:557;34430:14;34426:1;:18;34410:557;;;34470:31;34504:14;;;:11;:14;;;;;;;;;34470:48;;;;;;;;;-1:-1:-1;;;;;34470:48:0;;;;-1:-1:-1;;;34470:48:0;;-1:-1:-1;;;;;34470:48:0;;;;;;;;-1:-1:-1;;;34470:48:0;;;;;;;;;;;;;;;;34537:73;;34582:8;;;34537:73;34632:14;;-1:-1:-1;;;;;34632:28:0;;34628:111;;34705:14;;;-1:-1:-1;34628:111:0;34782:5;-1:-1:-1;;;;;34761:26:0;:17;-1:-1:-1;;;;;34761:26:0;;34757:195;;;34831:5;34816:11;:20;34812:85;;;-1:-1:-1;34872:1:0;-1:-1:-1;34865:8:0;;-1:-1:-1;;;34865:8:0;34812:85;34919:13;;;;;34757:195;34451:516;34410:557;34446:3;;34410:557;;;;35043:8;;;53213:102;9474:6;;-1:-1:-1;;;;;9474:6:0;8205:10;9621:23;9613:68;;;;-1:-1:-1;;;9613:68:0;;;;;;;:::i;:::-;53284:17:::1;:23:::0;53213:102::o;55324:395::-;9474:6;;-1:-1:-1;;;;;9474:6:0;8205:10;9621:23;9613:68;;;;-1:-1:-1;;;9613:68:0;;;;;;;:::i;:::-;55426:19:::1;55448:27;55457:11:::0;55448:6;:27:::1;:::i;:::-;55426:49;;55509:17;;55494:11;:32;;55486:59;;;::::0;-1:-1:-1;;;55486:59:0;;9713:2:1;55486:59:0::1;::::0;::::1;9695:21:1::0;9752:2;9732:18;;;9725:30;-1:-1:-1;;;9771:18:1;;;9764:44;9825:18;;55486:59:0::1;9511:338:1::0;55486:59:0::1;55563:9;55558:109;55578:22:::0;;::::1;55558:109;;;55622:33;55632:11;;55644:1;55632:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;55648:6;55622:9;:33::i;:::-;55602:3:::0;::::1;::::0;::::1;:::i;:::-;;;;55558:109;;;;55700:11;55679:17;;:32;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;;;55324:395:0:o;55957:180::-;9474:6;;-1:-1:-1;;;;;9474:6:0;8205:10;9621:23;9613:68;;;;-1:-1:-1;;;9613:68:0;;;;;;;:::i;:::-;56022:11:::1;::::0;56056:44:::1;::::0;-1:-1:-1;;;56056:44:0;;56094:4:::1;56056:44;::::0;::::1;1674:51:1::0;56022:11:0;;;::::1;-1:-1:-1::0;;;;;56022:11:0::1;::::0;56015:28:::1;::::0;56044:10:::1;::::0;56022:11;;56056:29:::1;::::0;1647:18:1;;56056:44:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56015:86;::::0;-1:-1:-1;;;;;;56015:86:0::1;::::0;;;;;;-1:-1:-1;;;;;10637:32:1;;;56015:86:0::1;::::0;::::1;10619:51:1::0;10686:18;;;10679:34;10592:18;;56015:86:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56007:122;;;::::0;-1:-1:-1;;;56007:122:0;;11176:2:1;56007:122:0::1;::::0;::::1;11158:21:1::0;11215:2;11195:18;;;11188:30;11254:25;11234:18;;;11227:53;11297:18;;56007:122:0::1;10974:347:1::0;56007:122:0::1;55957:180::o:0;40342:185::-;40480:39;40497:4;40503:2;40507:7;40480:39;;;;;;;;;;;;:16;:39::i;53323:108::-;9474:6;;-1:-1:-1;;;;;9474:6:0;8205:10;9621:23;9613:68;;;;-1:-1:-1;;;9613:68:0;;;;;;;:::i;:::-;53397:20:::1;:26:::0;53323:108::o;51968:85::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32941:713::-;33008:7;33053:13;;-1:-1:-1;;;;;33053:13:0;33008:7;;33267:328;33287:14;33283:1;:18;33267:328;;;33327:31;33361:14;;;:11;:14;;;;;;;;;33327:48;;;;;;;;;-1:-1:-1;;;;;33327:48:0;;;;-1:-1:-1;;;33327:48:0;;-1:-1:-1;;;;;33327:48:0;;;;;;;;-1:-1:-1;;;33327:48:0;;;;;;;;;;;;;;33394:186;;33459:5;33444:11;:20;33440:85;;;-1:-1:-1;33500:1:0;32941:713;-1:-1:-1;;;;32941:713:0:o;33440:85::-;33547:13;;;;;33394:186;-1:-1:-1;33303:3:0;;33267:328;;;;33623:23;;-1:-1:-1;;;33623:23:0;;;;;;;;;;;52900:118;9474:6;;-1:-1:-1;;;;;9474:6:0;8205:10;9621:23;9613:68;;;;-1:-1:-1;;;9613:68:0;;;;;;;:::i;:::-;52948:17:::1;:25:::0;;-1:-1:-1;;52982:28:0;;;52900:118::o;55852:97::-;9474:6;;-1:-1:-1;;;;;9474:6:0;8205:10;9621:23;9613:68;;;;-1:-1:-1;;;9613:68:0;;;;;;;:::i;:::-;55923:18:::1;:12;55938:3:::0;;55923:18:::1;:::i;37550:124::-:0;37614:7;37641:20;37653:7;37641:11;:20::i;:::-;:25;;37550:124;-1:-1:-1;;37550:124:0:o;35567:206::-;35631:7;-1:-1:-1;;;;;35655:19:0;;35651:60;;35683:28;;-1:-1:-1;;;35683:28:0;;;;;;;;;;;35651:60;-1:-1:-1;;;;;;35737:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;35737:27:0;;35567:206::o;10052:103::-;9474:6;;-1:-1:-1;;;;;9474:6:0;8205:10;9621:23;9613:68;;;;-1:-1:-1;;;9613:68:0;;;;;;;:::i;:::-;10117:30:::1;10144:1;10117:18;:30::i;53030:175::-:0;53095:20;;53073:7;;53095:20;;;;;53091:74;;;-1:-1:-1;53135:20:0;;;53030:175::o;53091:74::-;-1:-1:-1;53180:17:0;;;53030:175::o;55112:204::-;9474:6;;-1:-1:-1;;;;;9474:6:0;8205:10;9621:23;9613:68;;;;-1:-1:-1;;;9613:68:0;;;;;;;:::i;:::-;55202:17:::1;;55192:6;:27;;55184:54;;;::::0;-1:-1:-1;;;55184:54:0;;9713:2:1;55184:54:0::1;::::0;::::1;9695:21:1::0;9752:2;9732:18;;;9725:30;-1:-1:-1;;;9771:18:1;;;9764:44;9825:18;;55184:54:0::1;9511:338:1::0;55184:54:0::1;55249:21;55259:2;55263:6;55249:9;:21::i;:::-;55302:6;55281:17;;:27;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;55112:204:0:o;37910:104::-;37966:13;37999:7;37992:14;;;;;:::i;39520:279::-;-1:-1:-1;;;;;39611:24:0;;8205:10;39611:24;39607:54;;;39644:17;;-1:-1:-1;;;39644:17:0;;;;;;;;;;;39607:54;8205:10;39674:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;39674:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;39674:53:0;;;;;;;;;;39743:48;;540:41:1;;;39674:42:0;;8205:10;39743:48;;513:18:1;39743:48:0;;;;;;;39520:279;;:::o;52776:116::-;9474:6;;-1:-1:-1;;;;;9474:6:0;8205:10;9621:23;9613:68;;;;-1:-1:-1;;;9613:68:0;;;;;;;:::i;:::-;52824:17:::1;:24:::0;;-1:-1:-1;;52857:27:0;;;;;52776:116::o;53679:241::-;53822:25;;-1:-1:-1;;11475:2:1;11471:15;;;11467:53;53822:25:0;;;11455:66:1;53775:4:0;;;;11537:12:1;;53822:25:0;;;;;;;;;;;;53812:36;;;;;;53797:51;;53866:46;53885:5;53892:13;;53907:4;53866:18;:46::i;:::-;53859:53;53679:241;-1:-1:-1;;;;53679:241:0:o;40598:342::-;40765:28;40775:4;40781:2;40785:7;40765:9;:28::i;:::-;40809:48;40832:4;40838:2;40842:7;40851:5;40809:22;:48::i;:::-;40804:129;;40881:40;;-1:-1:-1;;;40881:40:0;;;;;;;;;;;40804:129;40598:342;;;;:::o;53928:1176::-;54002:18;54038:6;54023:12;:10;:12::i;:::-;:21;;;;:::i;:::-;54070:11;;54063:71;;-1:-1:-1;;;54063:71:0;;54096:10;54063:71;;;11800:34:1;54116:4:0;11850:18:1;;;11843:43;11902:18;;;11895:34;;;54002:42:0;;-1:-1:-1;54070:11:0;;;-1:-1:-1;;;;;54070:11:0;;54063:32;;11735:18:1;;54063:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;54055:107;;;;-1:-1:-1;;;54055:107:0;;12142:2:1;54055:107:0;;;12124:21:1;12181:2;12161:18;;;12154:30;12220:25;12200:18;;;12193:53;12263:18;;54055:107:0;11940:347:1;54055:107:0;54191:17;;;;54183:56;;;;-1:-1:-1;;;54183:56:0;;12494:2:1;54183:56:0;;;12476:21:1;12533:2;12513:18;;;12506:30;12572:28;12552:18;;;12545:56;12618:18;;54183:56:0;12292:350:1;54183:56:0;54258:20;;;;;;;;:49;;;54282:25;54289:10;54301:5;54282:6;:25::i;:::-;54250:95;;;;-1:-1:-1;;;54250:95:0;;12849:2:1;54250:95:0;;;12831:21:1;12888:2;12868:18;;;12861:30;12927:34;12907:18;;;12900:62;-1:-1:-1;;;12978:18:1;;;12971:31;13019:19;;54250:95:0;12647:397:1;54250:95:0;54374:17;;54364:6;:27;;54356:83;;;;-1:-1:-1;;;54356:83:0;;13251:2:1;54356:83:0;;;13233:21:1;13290:2;13270:18;;;13263:30;13329:34;13309:18;;;13302:62;-1:-1:-1;;;13380:18:1;;;13373:41;13431:19;;54356:83:0;13049:407:1;54356:83:0;54454:20;;;;;;;54450:380;;;54543:28;;54519:10;54499:31;;;;:19;:31;;;;;;:40;;54533:6;;54499:40;:::i;:::-;:72;;54491:150;;;;-1:-1:-1;;;54491:150:0;;;;;;;:::i;:::-;54450:380;;;54723:25;;54699:10;54682:28;;;;:16;:28;;;;;;:37;;54713:6;;54682:37;:::i;:::-;:66;;54674:144;;;;-1:-1:-1;;;54674:144:0;;;;;;;:::i;:::-;54850:29;54860:10;54872:6;54850:9;:29::i;:::-;54896:20;;;;;;;54892:165;;;54953:10;54933:31;;;;:19;:31;;;;;:41;;54968:6;;54933:31;:41;;54968:6;;54933:41;:::i;:::-;;;;-1:-1:-1;54892:165:0;;-1:-1:-1;54892:165:0;;55024:10;55007:28;;;;:16;:28;;;;;:38;;55039:6;;55007:28;:38;;55039:6;;55007:38;:::i;:::-;;;;-1:-1:-1;;54892:165:0;55090:6;55069:17;;:27;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;53928:1176:0:o;38085:318::-;38158:13;38189:16;38197:7;38189;:16::i;:::-;38184:59;;38214:29;;-1:-1:-1;;;38214:29:0;;;;;;;;;;;38184:59;38256:21;38280:10;:8;:10::i;:::-;38256:34;;38314:7;38308:21;38333:1;38308:26;;:87;;;;;;;;;;;;;;;;;38361:7;38370:18;:7;:16;:18::i;:::-;38344:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;38308:87;38301:94;38085:318;-1:-1:-1;;;38085:318:0:o;10310:201::-;9474:6;;-1:-1:-1;;;;;9474:6:0;8205:10;9621:23;9613:68;;;;-1:-1:-1;;;9613:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10399:22:0;::::1;10391:73;;;::::0;-1:-1:-1;;;10391:73:0;;14688:2:1;10391:73:0::1;::::0;::::1;14670:21:1::0;14727:2;14707:18;;;14700:30;14766:34;14746:18;;;14739:62;-1:-1:-1;;;14817:18:1;;;14810:36;14863:19;;10391:73:0::1;14486:402:1::0;10391:73:0::1;10475:28;10494:8;10475:18;:28::i;:::-;10310:201:::0;:::o;53439:116::-;9474:6;;-1:-1:-1;;;;;9474:6:0;8205:10;9621:23;9613:68;;;;-1:-1:-1;;;9613:68:0;;;;;;;:::i;:::-;53517:13:::1;:30:::0;53439:116::o;41195:144::-;41252:4;41286:13;;-1:-1:-1;;;;;41286:13:0;41276:23;;:55;;;;-1:-1:-1;;41304:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;41304:27:0;;;;41303:28;;41195:144::o;48411:196::-;48526:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;48526:29:0;-1:-1:-1;;;;;48526:29:0;;;;;;;;;48571:28;;48526:24;;48571:28;;;;;;;48411:196;;;:::o;43912:2112::-;44027:35;44065:20;44077:7;44065:11;:20::i;:::-;44140:18;;44027:58;;-1:-1:-1;44098:22:0;;-1:-1:-1;;;;;44124:34:0;8205:10;-1:-1:-1;;;;;44124:34:0;;:101;;;-1:-1:-1;44192:18:0;;44175:50;;8205:10;39870:164;:::i;44175:50::-;44124:154;;;-1:-1:-1;8205:10:0;44242:20;44254:7;44242:11;:20::i;:::-;-1:-1:-1;;;;;44242:36:0;;44124:154;44098:181;;44297:17;44292:66;;44323:35;;-1:-1:-1;;;44323:35:0;;;;;;;;;;;44292:66;44395:4;-1:-1:-1;;;;;44373:26:0;:13;:18;;;-1:-1:-1;;;;;44373:26:0;;44369:67;;44408:28;;-1:-1:-1;;;44408:28:0;;;;;;;;;;;44369:67;-1:-1:-1;;;;;44451:16:0;;44447:52;;44476:23;;-1:-1:-1;;;44476:23:0;;;;;;;;;;;44447:52;44620:49;44637:1;44641:7;44650:13;:18;;;44620:8;:49::i;:::-;-1:-1:-1;;;;;44965:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;44965:31:0;;;-1:-1:-1;;;;;44965:31:0;;;-1:-1:-1;;44965:31:0;;;;;;;45011:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;45011:29:0;;;;;;;;;;;45057:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;45102:61:0;;;;-1:-1:-1;;;45147:15:0;45102:61;;;;;;;;;;;45437:11;;;45467:24;;;;;:29;45437:11;;45467:29;45463:445;;45692:13;;-1:-1:-1;;;;;45692:13:0;45678:27;;45674:219;;;45762:18;;;45730:24;;;:11;:24;;;;;;;;:50;;45845:28;;;;-1:-1:-1;;;;;45803:70:0;-1:-1:-1;;;45803:70:0;-1:-1:-1;;;;;;45803:70:0;;;-1:-1:-1;;;;;45730:50:0;;;45803:70;;;;;;;45674:219;44940:979;45955:7;45951:2;-1:-1:-1;;;;;45936:27:0;45945:4;-1:-1:-1;;;;;45936:27:0;;;;;;;;;;;45974:42;44016:2008;;43912:2112;;;:::o;41347:104::-;41416:27;41426:2;41430:8;41416:27;;;;;;;;;;;;:9;:27::i;:::-;41347:104;;:::o;36405:1083::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;36571:13:0;;36515:7;;-1:-1:-1;;;;;36571:13:0;36564:20;;36560:861;;;36605:31;36639:17;;;:11;:17;;;;;;;;;36605:51;;;;;;;;;-1:-1:-1;;;;;36605:51:0;;;;-1:-1:-1;;;36605:51:0;;-1:-1:-1;;;;;36605:51:0;;;;;;;;-1:-1:-1;;;36605:51:0;;;;;;;;;;;;;;36675:731;;36725:14;;-1:-1:-1;;;;;36725:28:0;;36721:101;;36789:9;36405:1083;-1:-1:-1;;;36405:1083:0:o;36721:101::-;-1:-1:-1;;;37166:6:0;37211:17;;;;:11;:17;;;;;;;;;37199:29;;;;;;;;;-1:-1:-1;;;;;37199:29:0;;;;;-1:-1:-1;;;37199:29:0;;-1:-1:-1;;;;;37199:29:0;;;;;;;;-1:-1:-1;;;37199:29:0;;;;;;;;;;;;;37259:28;37255:109;;37327:9;36405:1083;-1:-1:-1;;;36405:1083:0:o;37255:109::-;37126:261;;;36586:835;36560:861;37449:31;;-1:-1:-1;;;37449:31:0;;;;;;;;;;;10671:191;10764:6;;;-1:-1:-1;;;;;10781:17:0;;;-1:-1:-1;;;;;;10781:17:0;;;;;;;10814:40;;10764:6;;;10781:17;10764:6;;10814:40;;10745:16;;10814:40;10734:128;10671:191;:::o;3856:190::-;3981:4;4034;4005:25;4018:5;4025:4;4005:12;:25::i;:::-;:33;;3856:190;-1:-1:-1;;;;3856:190:0:o;49172:790::-;49327:4;-1:-1:-1;;;;;49348:13:0;;12397:19;:23;49344:611;;49384:72;;-1:-1:-1;;;49384:72:0;;-1:-1:-1;;;;;49384:36:0;;;;;:72;;8205:10;;49435:4;;49441:7;;49450:5;;49384:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49384:72:0;;;;;;;;-1:-1:-1;;49384:72:0;;;;;;;;;;;;:::i;:::-;;;49380:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49630:13:0;;49626:259;;49680:40;;-1:-1:-1;;;49680:40:0;;;;;;;;;;;49626:259;49835:6;49829:13;49820:6;49816:2;49812:15;49805:38;49380:520;-1:-1:-1;;;;;;49507:55:0;-1:-1:-1;;;49507:55:0;;-1:-1:-1;49500:62:0;;49344:611;-1:-1:-1;49939:4:0;49172:790;;;;;;:::o;55727:114::-;55788:13;55821:12;55814:19;;;;;:::i;5687:723::-;5743:13;5964:10;5960:53;;-1:-1:-1;;5991:10:0;;;;;;;;;;;;-1:-1:-1;;;5991:10:0;;;;;5687:723::o;5960:53::-;6038:5;6023:12;6079:78;6086:9;;6079:78;;6112:8;;;;:::i;:::-;;-1:-1:-1;6135:10:0;;-1:-1:-1;6143:2:0;6135:10;;:::i;:::-;;;6079:78;;;6167:19;6199:6;-1:-1:-1;;;;;6189:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6189:17:0;;6167:39;;6217:154;6224:10;;6217:154;;6251:11;6261:1;6251:11;;:::i;:::-;;-1:-1:-1;6320:10:0;6328:2;6320:5;:10;:::i;:::-;6307:24;;:2;:24;:::i;:::-;6294:39;;6277:6;6284;6277:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;6277:56:0;;;;;;;;-1:-1:-1;6348:11:0;6357:2;6348:11;;:::i;:::-;;;6217:154;;41814:163;41937:32;41943:2;41947:8;41957:5;41964:4;41937:5;:32::i;4408:675::-;4491:7;4534:4;4491:7;4549:497;4573:5;:12;4569:1;:16;4549:497;;;4607:20;4630:5;4636:1;4630:8;;;;;;;;:::i;:::-;;;;;;;4607:31;;4673:12;4657;:28;4653:382;;5159:13;5209:15;;;5245:4;5238:15;;;5292:4;5276:21;;4785:57;;4653:382;;;5159:13;5209:15;;;5245:4;5238:15;;;5292:4;5276:21;;4962:57;;4653:382;-1:-1:-1;4587:3:0;;;;:::i;:::-;;;;4549:497;;;-1:-1:-1;5063:12:0;4408:675;-1:-1:-1;;;4408:675:0:o;42236:1422::-;42375:20;42398:13;-1:-1:-1;;;;;42398:13:0;-1:-1:-1;;;;;42426:16:0;;42422:48;;42451:19;;-1:-1:-1;;;42451:19:0;;;;;;;;;;;42422:48;42485:13;42481:44;;42507:18;;-1:-1:-1;;;42507:18:0;;;;;;;;;;;42481:44;-1:-1:-1;;;;;42877:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;;;;;42936:49:0;;-1:-1:-1;;;;;42877:44:0;;;;;;;42936:49;;;;-1:-1:-1;;42877:44:0;;;;;;42936:49;;;;;;;;;;;;;;;;43002:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;43052:66:0;;;;-1:-1:-1;;;43102:15:0;43052:66;;;;;;;;;;;43002:25;;43187:328;43207:8;43203:1;:12;43187:328;;;43246:38;;43271:12;;-1:-1:-1;;;;;43246:38:0;;;43263:1;;43246:38;;43263:1;;43246:38;43307:4;:68;;;;;43316:59;43347:1;43351:2;43355:12;43369:5;43316:22;:59::i;:::-;43315:60;43307:68;43303:164;;;43407:40;;-1:-1:-1;;;43407:40:0;;;;;;;;;;;43303:164;43485:14;;;;;43217:3;43187:328;;;-1:-1:-1;43531:13:0;:37;;-1:-1:-1;;;;;;43531:37:0;-1:-1:-1;;;;;43531:37:0;;;;;;;;;;43590:60;40598:342;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:180::-;651:6;704:2;692:9;683:7;679:23;675:32;672:52;;;720:1;717;710:12;672:52;-1:-1:-1;743:23:1;;592:180;-1:-1:-1;592:180:1:o;777:258::-;849:1;859:113;873:6;870:1;867:13;859:113;;;949:11;;;943:18;930:11;;;923:39;895:2;888:10;859:113;;;990:6;987:1;984:13;981:48;;;-1:-1:-1;;1025:1:1;1007:16;;1000:27;777:258::o;1040:::-;1082:3;1120:5;1114:12;1147:6;1142:3;1135:19;1163:63;1219:6;1212:4;1207:3;1203:14;1196:4;1189:5;1185:16;1163:63;:::i;:::-;1280:2;1259:15;-1:-1:-1;;1255:29:1;1246:39;;;;1287:4;1242:50;;1040:258;-1:-1:-1;;1040:258:1:o;1303:220::-;1452:2;1441:9;1434:21;1415:4;1472:45;1513:2;1502:9;1498:18;1490:6;1472:45;:::i;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:186::-;2414:6;2467:2;2455:9;2446:7;2442:23;2438:32;2435:52;;;2483:1;2480;2473:12;2435:52;2506:29;2525:9;2506:29;:::i;2546:328::-;2623:6;2631;2639;2692:2;2680:9;2671:7;2667:23;2663:32;2660:52;;;2708:1;2705;2698:12;2660:52;2731:29;2750:9;2731:29;:::i;:::-;2721:39;;2779:38;2813:2;2802:9;2798:18;2779:38;:::i;:::-;2769:48;;2864:2;2853:9;2849:18;2836:32;2826:42;;2546:328;;;;;:::o;3061:683::-;3156:6;3164;3172;3225:2;3213:9;3204:7;3200:23;3196:32;3193:52;;;3241:1;3238;3231:12;3193:52;3277:9;3264:23;3254:33;;3338:2;3327:9;3323:18;3310:32;-1:-1:-1;;;;;3402:2:1;3394:6;3391:14;3388:34;;;3418:1;3415;3408:12;3388:34;3456:6;3445:9;3441:22;3431:32;;3501:7;3494:4;3490:2;3486:13;3482:27;3472:55;;3523:1;3520;3513:12;3472:55;3563:2;3550:16;3589:2;3581:6;3578:14;3575:34;;;3605:1;3602;3595:12;3575:34;3658:7;3653:2;3643:6;3640:1;3636:14;3632:2;3628:23;3624:32;3621:45;3618:65;;;3679:1;3676;3669:12;3618:65;3710:2;3706;3702:11;3692:21;;3732:6;3722:16;;;;;3061:683;;;;;:::o;3749:592::-;3820:6;3828;3881:2;3869:9;3860:7;3856:23;3852:32;3849:52;;;3897:1;3894;3887:12;3849:52;3937:9;3924:23;-1:-1:-1;;;;;4007:2:1;3999:6;3996:14;3993:34;;;4023:1;4020;4013:12;3993:34;4061:6;4050:9;4046:22;4036:32;;4106:7;4099:4;4095:2;4091:13;4087:27;4077:55;;4128:1;4125;4118:12;4077:55;4168:2;4155:16;4194:2;4186:6;4183:14;4180:34;;;4210:1;4207;4200:12;4180:34;4255:7;4250:2;4241:6;4237:2;4233:15;4229:24;4226:37;4223:57;;;4276:1;4273;4266:12;4223:57;4307:2;4299:11;;;;;4329:6;;-1:-1:-1;3749:592:1;;-1:-1:-1;;;;3749:592:1:o;4346:254::-;4414:6;4422;4475:2;4463:9;4454:7;4450:23;4446:32;4443:52;;;4491:1;4488;4481:12;4443:52;4527:9;4514:23;4504:33;;4556:38;4590:2;4579:9;4575:18;4556:38;:::i;:::-;4546:48;;4346:254;;;;;:::o;4605:118::-;4691:5;4684:13;4677:21;4670:5;4667:32;4657:60;;4713:1;4710;4703:12;4728:315;4793:6;4801;4854:2;4842:9;4833:7;4829:23;4825:32;4822:52;;;4870:1;4867;4860:12;4822:52;4893:29;4912:9;4893:29;:::i;:::-;4883:39;;4972:2;4961:9;4957:18;4944:32;4985:28;5007:5;4985:28;:::i;:::-;5032:5;5022:15;;;4728:315;;;;;:::o;5048:127::-;5109:10;5104:3;5100:20;5097:1;5090:31;5140:4;5137:1;5130:15;5164:4;5161:1;5154:15;5180:275;5251:2;5245:9;5316:2;5297:13;;-1:-1:-1;;5293:27:1;5281:40;;-1:-1:-1;;;;;5336:34:1;;5372:22;;;5333:62;5330:88;;;5398:18;;:::i;:::-;5434:2;5427:22;5180:275;;-1:-1:-1;5180:275:1:o;5460:712::-;5514:5;5567:3;5560:4;5552:6;5548:17;5544:27;5534:55;;5585:1;5582;5575:12;5534:55;5621:6;5608:20;5647:4;-1:-1:-1;;;;;5666:2:1;5663:26;5660:52;;;5692:18;;:::i;:::-;5738:2;5735:1;5731:10;5761:28;5785:2;5781;5777:11;5761:28;:::i;:::-;5823:15;;;5893;;;5889:24;;;5854:12;;;;5925:15;;;5922:35;;;5953:1;5950;5943:12;5922:35;5989:2;5981:6;5977:15;5966:26;;6001:142;6017:6;6012:3;6009:15;6001:142;;;6083:17;;6071:30;;6034:12;;;;6121;;;;6001:142;;;6161:5;5460:712;-1:-1:-1;;;;;;;5460:712:1:o;6177:422::-;6270:6;6278;6331:2;6319:9;6310:7;6306:23;6302:32;6299:52;;;6347:1;6344;6337:12;6299:52;6370:29;6389:9;6370:29;:::i;:::-;6360:39;;6450:2;6439:9;6435:18;6422:32;-1:-1:-1;;;;;6469:6:1;6466:30;6463:50;;;6509:1;6506;6499:12;6463:50;6532:61;6585:7;6576:6;6565:9;6561:22;6532:61;:::i;:::-;6522:71;;;6177:422;;;;;:::o;6604:980::-;6699:6;6707;6715;6723;6776:3;6764:9;6755:7;6751:23;6747:33;6744:53;;;6793:1;6790;6783:12;6744:53;6816:29;6835:9;6816:29;:::i;:::-;6806:39;;6864:2;6885:38;6919:2;6908:9;6904:18;6885:38;:::i;:::-;6875:48;;6970:2;6959:9;6955:18;6942:32;6932:42;;7025:2;7014:9;7010:18;6997:32;-1:-1:-1;;;;;7089:2:1;7081:6;7078:14;7075:34;;;7105:1;7102;7095:12;7075:34;7143:6;7132:9;7128:22;7118:32;;7188:7;7181:4;7177:2;7173:13;7169:27;7159:55;;7210:1;7207;7200:12;7159:55;7246:2;7233:16;7268:2;7264;7261:10;7258:36;;;7274:18;;:::i;:::-;7316:53;7359:2;7340:13;;-1:-1:-1;;7336:27:1;7332:36;;7316:53;:::i;:::-;7303:66;;7392:2;7385:5;7378:17;7432:7;7427:2;7422;7418;7414:11;7410:20;7407:33;7404:53;;;7453:1;7450;7443:12;7404:53;7508:2;7503;7499;7495:11;7490:2;7483:5;7479:14;7466:45;7552:1;7547:2;7542;7535:5;7531:14;7527:23;7520:34;;7573:5;7563:15;;;;;6604:980;;;;;;;:::o;7589:416::-;7682:6;7690;7743:2;7731:9;7722:7;7718:23;7714:32;7711:52;;;7759:1;7756;7749:12;7711:52;7795:9;7782:23;7772:33;;7856:2;7845:9;7841:18;7828:32;-1:-1:-1;;;;;7875:6:1;7872:30;7869:50;;;7915:1;7912;7905:12;8010:260;8078:6;8086;8139:2;8127:9;8118:7;8114:23;8110:32;8107:52;;;8155:1;8152;8145:12;8107:52;8178:29;8197:9;8178:29;:::i;:::-;8168:39;;8226:38;8260:2;8249:9;8245:18;8226:38;:::i;8460:356::-;8662:2;8644:21;;;8681:18;;;8674:30;8740:34;8735:2;8720:18;;8713:62;8807:2;8792:18;;8460:356::o;8821:380::-;8900:1;8896:12;;;;8943;;;8964:61;;9018:4;9010:6;9006:17;8996:27;;8964:61;9071:2;9063:6;9060:14;9040:18;9037:38;9034:161;;;9117:10;9112:3;9108:20;9105:1;9098:31;9152:4;9149:1;9142:15;9180:4;9177:1;9170:15;9034:161;;8821:380;;;:::o;9206:127::-;9267:10;9262:3;9258:20;9255:1;9248:31;9298:4;9295:1;9288:15;9322:4;9319:1;9312:15;9338:168;9378:7;9444:1;9440;9436:6;9432:14;9429:1;9426:21;9421:1;9414:9;9407:17;9403:45;9400:71;;;9451:18;;:::i;:::-;-1:-1:-1;9491:9:1;;9338:168::o;9854:127::-;9915:10;9910:3;9906:20;9903:1;9896:31;9946:4;9943:1;9936:15;9970:4;9967:1;9960:15;9986:135;10025:3;-1:-1:-1;;10046:17:1;;10043:43;;;10066:18;;:::i;:::-;-1:-1:-1;10113:1:1;10102:13;;9986:135::o;10126:125::-;10166:4;10194:1;10191;10188:8;10185:34;;;10199:18;;:::i;:::-;-1:-1:-1;10236:9:1;;10126:125::o;10256:184::-;10326:6;10379:2;10367:9;10358:7;10354:23;10350:32;10347:52;;;10395:1;10392;10385:12;10347:52;-1:-1:-1;10418:16:1;;10256:184;-1:-1:-1;10256:184:1:o;10724:245::-;10791:6;10844:2;10832:9;10823:7;10819:23;10815:32;10812:52;;;10860:1;10857;10850:12;10812:52;10892:9;10886:16;10911:28;10933:5;10911:28;:::i;13461:128::-;13501:3;13532:1;13528:6;13525:1;13522:13;13519:39;;;13538:18;;:::i;:::-;-1:-1:-1;13574:9:1;;13461:128::o;13594:412::-;13796:2;13778:21;;;13835:2;13815:18;;;13808:30;13874:34;13869:2;13854:18;;13847:62;-1:-1:-1;;;13940:2:1;13925:18;;13918:46;13996:3;13981:19;;13594:412::o;14011:470::-;14190:3;14228:6;14222:13;14244:53;14290:6;14285:3;14278:4;14270:6;14266:17;14244:53;:::i;:::-;14360:13;;14319:16;;;;14382:57;14360:13;14319:16;14416:4;14404:17;;14382:57;:::i;:::-;14455:20;;14011:470;-1:-1:-1;;;;14011:470:1:o;14893:489::-;-1:-1:-1;;;;;15162:15:1;;;15144:34;;15214:15;;15209:2;15194:18;;15187:43;15261:2;15246:18;;15239:34;;;15309:3;15304:2;15289:18;;15282:31;;;15087:4;;15330:46;;15356:19;;15348:6;15330:46;:::i;:::-;15322:54;14893:489;-1:-1:-1;;;;;;14893:489:1:o;15387:249::-;15456:6;15509:2;15497:9;15488:7;15484:23;15480:32;15477:52;;;15525:1;15522;15515:12;15477:52;15557:9;15551:16;15576:30;15600:5;15576:30;:::i;15641:127::-;15702:10;15697:3;15693:20;15690:1;15683:31;15733:4;15730:1;15723:15;15757:4;15754:1;15747:15;15773:120;15813:1;15839;15829:35;;15844:18;;:::i;:::-;-1:-1:-1;15878:9:1;;15773:120::o;15898:112::-;15930:1;15956;15946:35;;15961:18;;:::i;:::-;-1:-1:-1;15995:9:1;;15898:112::o

Swarm Source

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